
/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html {
    background: #006191; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}

body {
    background: #006191;
}

body {
    font-family: Roboto;
    background: transparent;
}

/*form styles*/
#msform {
    text-align: center;
    position: relative;
    /*margin-top: 145px;*/
}

    #msform fieldset {
        background: white;
        border: 0 none;
        border-radius: 0px;
        box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
        padding: 20px 30px;
        box-sizing: border-box;
        width: 90%;
        margin: 0 5%;
        /*stacking fieldsets above each other*/
        position: relative;
    }

        /*Hide all except first fieldset*/


        #msform fieldset:not(:first-of-type) {
            display: none;
        }

    /*inputs*/
    #msform input, #msform textarea {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 0px;
        margin-bottom: 10px;
        width: 100%;
        box-sizing: border-box;
        font-family: 'Oswald', sans-serif !important;
        color: #2C3E50;
        font-size: 13px;
        height: 35px;
        font-weight: 400;
    }

        #msform input:focus, #msform textarea:focus {
            -moz-box-shadow: none !important;
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            border: 1px solid #ee0979;
            outline-width: 0;
            transition: All 0.5s ease-in;
            -webkit-transition: All 0.5s ease-in;
            -moz-transition: All 0.5s ease-in;
            -o-transition: All 0.5s ease-in;
        }

    /*buttons*/
    #msform .action-button {
        width: 100px;
        background: #ee0979;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 0px 5px;
        margin: 10px 5px;
    }

        #msform .action-button:hover, #msform .action-button:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
        }

    #msform .action-button-previous {
        width: 100px;
        background: #C5C5F1;
        font-weight: bold;
        color: white;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 0px 5px;
        margin: 10px 5px;
    }

        #msform .action-button-previous:hover, #msform .action-button-previous:focus {
            box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
        }

    #msform textarea {
        height: 100px;
    }

.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    padding-top: 25px;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: #000;
        text-transform: uppercase;
        font-size: 12px;
        width: 14% !important;
        float: left;
        position: relative;
        letter-spacing: 1px;
        cursor:initial !important;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 35px;
            height: 35px;
            line-height: 35px;
            display: block;
            font-size: 14px;
            font-weight: bold;
            color: #333;
            background: white;
            border-radius: 25px;
            margin: -8px auto 10px auto;
            box-shadow: 0 0 0 2px #85b840;
        }

        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: #000000;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1; /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }

        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before, #progressbar li.active:after {
            background: #85b840;
            color: white;
            box-shadow: 0 0 0 2px #85b840;
            border: 1px solid #fff;
        }


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}

    .dme_link a {
        background: #FFF;
        font-weight: bold;
        color: #ee0979;
        border: 0 none;
        border-radius: 25px;
        cursor: pointer;
        padding: 5px 25px;
        font-size: 12px;
    }

        .dme_link a:hover, .dme_link a:focus {
            background: #C5C5F1;
            text-decoration: none;
        }

.list_icon {
    list-style: none;
    padding: 0px;
    text-align: left;
}

ol, ul {
    margin-bottom: 10px;
    margin-top: 0;
    padding: 0 0 0 16px;
}

.list_icon li {
    padding: 4px 0;
}

    .list_icon li span {
        margin-left: 2px;
        color: #009ee3;
        font-size: 14px;
        margin-right: 5px;
    }

.custom-checkbox input {
    width: 4% !important;
}

.required {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979 !important;
    outline-width: 0 !important;
    transition: All 0.3s ease-in !important;
    -webkit-transition: All 0.3s ease-in !important;
    -moz-transition: All 0.3s ease-in !important;
    -o-transition: All 0.3s ease-in !important;
}

#regForm {
    border: 0px;
    background: rgba(255, 255, 255, 0.75) none repeat scroll 0 0;
    display: block;
    padding: 30px;
    margin: 15px 0;
    position: relative;
    transition: all 500ms ease;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15);
}

added for all section .mt-3, .my-3 {
    margin-top: 1rem !important;
}

.heading_login {
    color: #e63e02;
    font-size: 22px;
    padding: 10px 5px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    font-family: Roboto;
    line-height: 38px;
}

.form-check-inline input[type=checkbox] {
    width: auto !important;
    height: 20px !important;
    margin-bottom: 5px !important;
}

.form-check-inline label {
    margin-bottom: 6px;
    font-weight: normal;
}

#dvTypeOfOrgOther {
    margin-top: 12px;
    width: 60%;
}

.error {
    margin-top: -5px !important;
    margin-bottom: 10px !important;
}

.custom-control-label:hover {
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}

.fnt14 {
    font-size: 13px;
}

.popup-box {
    width: 800px;
    position: absolute; /*it can be fixed too*/
    left: 0;
    right: 0;
    top: 30%;
    margin: auto;
    background-color: #FFFFFF;
    z-index: 100000000;
    border: 2px solid #2196F3;
    border-radius: 15px;
}

.popup-header {
    border-bottom: 2px solid #2196F3;
    background: #2196F3;
    text-align: center;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    padding: 10px;
}

.popup-header-text {
    font-weight: bold;
    color: #fff;
}

.popup-body {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #FFFFFF;
    text-align: center;
}

.error-overlay {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, .8);
    overflow: hidden;
}

.error-li .glyphicon {
    color: #dc3545 !important;
}

.error-close {
    text-align: center;
}

.error-button-close {

    background: #2196F3;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 15px 20px;
    margin: 10px 5px;
}

    .error-button-close:hover {
        box-shadow: 0 0 0 2px white, 0 0 0 3px #2196F3;
    }

body.applaunch {
    overflow: scroll !important;
}

/** Added by ColoredCow */
.international-delegations {
    display: none;
}
.GuestOfHonour-inner {
    height: 350px !important;
}
@media only screen and (min-width: 1400px) {
    .GuestOfHonour {
        width: 20%;
    }
}