@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

body {
    width: 100%;
    max-width: 1920px;
    min-width: 360px;
    font-family: 'Roboto', sans-serif;
    background: #f3f3f3;
    font-size: 16px;
    line-height: 24px;
    color: #012046;
    font-weight: 400;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

body.form-1 {
    background-image: url(../images/bg.png);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wrapper {
    padding: 60px 0 80px;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-gray {
    color: #999;
}

.text-red {
    color: #cc0000;
}

.mb-30 {
    margin-bottom: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 17px;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.alert-danger {
    color: #823040;
    background-color: #fedee5;
    border-color: #fed1da;
}

.alert-success {
    color: #056c4f;
    background-color: #cef5ea;
    border-color: #baf2e2;
}

#icds-form .form-group {
    margin: 0;
}

.form-group .form-control {
    padding: 0 20px 0 45px;
    width: 100%;
    height: 52px;
    color: #757575;
    font-size: 16px;
    border: 1px solid #cccccc;
    outline: none;
    border-radius: 8px;
}

.form-group::after {
    content: '\f06a';
    position: absolute;
    top: 14px;
    right: 20px;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: #cc0000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-group .error-text {
    position: absolute;
    top: -24px;
    right: 0;
    color: #cc0000;
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

.form-group.error .error-text, .form-group.error::after {
    opacity: 1;
    visibility: visible;
}

.form-group.error .form-control {
    border-color: #cc0000;
}

.form-group textarea.form-control {
    font-family: 'Roboto', sans-serif;
    resize: none;
    min-height: 52px;
    height: inherit;
    padding: 16px 20px 16px 45px;
}

.form-group i {
    position: absolute;
    font-size: 14px;
    left: 20px;
    top: 19px;
    color: #757575;
    z-index: 2;
}

.form-group .or-text {
    position: absolute;
    top: 15px;
    right: -110px;
    font-size: 16px;
    color: #757575;
}

.form-field .form-label {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 34px;
}

.form-field .form-field-description {
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 32px;
}

#icds-form .form-field.radio-buttons .form-group.input-field {
    margin-top: 14px;
}

.form-group.error-no-control::after {
    display: none;
}
.form-radio {
    display: none;
}

.radio-field label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-style: italic;
}

.custom-radio-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 1px solid #cdcdcd; 
    border-radius: 50%;
    background: #fff;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: transparent;
    text-align: center;
    line-height: 24px;
    transition: all 0.3s;
}

.form-radio:checked + label .custom-radio-icon {
    background-color: #ffc400; 
    border-color: #cfa80d;    
    color: #fff;              
    content: "\f00c";   
}

.form-radio:checked + label .custom-radio-icon::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-style: normal;
}

.form-group .radio-field {
    margin-bottom: 14px;
}

.form-group .radio-field:last-child {
    margin-bottom: 0;
}

.btn {
    position: relative;
}

.btn.loading span {
    display: none;
}

.btn {
    display: inline-block;
    height: 58px;
    line-height: 58px;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all .3s;
    width: 330px;
    color: #001843;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
}

.btn.btn-warning {
    background: #ffc400;
}

.btn.btn-blue {
    background: #001843;
    color: #fff;
}

.btn.btn-blue:hover {
    background: #0a285e;
}

.btn.btn-warning:hover {
    background: #f9cd3c;
}

.form-inner.loading {
    opacity: 0.8;
    pointer-events: none;
}

.header-wrapper .header {
    position: relative;
    width: 100%;
    height: 105px;
    margin-bottom: 30px;
}

.new-year .header-wrapper .header .logo-wrapper {
    padding: 15px 0 15px 30px;
}

.new-year .header-wrapper .header .logo-wrapper .logo {
    width: 206px;
    height: 75px;
    background: url(/assets/images/logo-new-year-dark.svg) no-repeat;
}

.header-wrapper .header .logo-wrapper {
    padding: 18.5px 0 18.5px 30px;
}

.header-wrapper .header .logo-wrapper .logo {
    display: block;
    width: 253px;
    height: 68px;
    background: url(/assets/images/logo.svg) no-repeat;
    background-size: cover;
}

.header-wrapper .header .title {
    position: absolute;
    top: 0;
    right: 15px;
    padding: 26.5px 46px 26.5px 0;
    text-align: center;
}

.header-wrapper .header .title h1 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
}

.header-wrapper .header .title span {
    display: block;
    color: #666;
    font-size: 22px;
    font-weight: 300;
}

.section {
    background: #fff;
    border-radius: 20px;
    box-shadow: 3px 0 24px rgba(0, 0, 0, 0.07);
}

.section .section-inner {
    padding: 52px 80px;
}

.section .section-bottom {
    border-top: 1px solid #ededed;
    text-align: center;
    padding: 22px 30px;
}

.form-description-wrapper .section-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 50px;
}

.form-description-wrapper .form-alert {
    margin-top: 30px;
}

.g-recaptcha {
    margin: 15px auto 0;
    display: inline-block;
}

.sk-three-bounce {
    width: 4em;
    margin: auto;
    text-align: center;
}

.sk-three-bounce .sk-child {
    width: 1em;
    height: 1em;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce-1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce-2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-three-bounce {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.answer-buttons {
    text-align: center;
    margin: 36px 0 0;
}

.answer-buttons .answer-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    line-height: 32px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ccc;
    margin: 0 5px;
    color: #001d44;
    background: none;
    transition: all 0.3s;
    cursor: pointer;
    outline: none;
}

.answer-buttons .answer-btn.active {
    background: #f0c32e;
    color: #fff;
    border-color: #cfa80d;
}

.answer-buttons .btns-title {
    display: inline-block;
    margin: 0 9px;
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.submit-button-wrapper {
    margin-top: 60px;
    text-align: center;
}

@media screen and (max-width:991px) {
    .answer-buttons {
        margin: 26px 0 0;
        white-space: nowrap;
    }

    .answer-buttons .btns-title {
        margin: 0px 5px;
        font-size: 12px;
    }

    .answer-buttons .answer-btn {
        width: 33px;
        height: 32px;
        line-height: 30px;
        font-size: 15px;
        margin: 0 3.5px;
    }

    .section .section-inner {
        padding: 40px;
    }

    .form-field .or-text {
        position: relative;
        top: 0;
        left: 0;
        margin: 15px 0;
        text-align: center;
    }

    .header-wrapper .header .logo-wrapper {
        padding: 26.5px 0 26.5px 30px;
    }

    .header-wrapper .header .logo-wrapper .logo {
        width: 193px;
        height: 52px;
    }

    .header-wrapper .header .title h1 {
        font-size: 20px;
        line-height: 26px;
    }

    .header-wrapper .header .title h1 span {
        font-size: 18px;
    }
}

@media screen and (max-width:767px) {
    .wrapper {
        padding: 26px 0 40px;
    }
    
    .header-wrapper .header {
        padding: 22px 20px;
        margin-bottom: 22px;
    }

    .header-wrapper .header .logo-wrapper {
        padding: 0;
    }

    .new-year .header-wrapper .header .logo-wrapper .logo {
        margin: 0 auto 10px;
    }

    .header-wrapper .header .logo-wrapper .logo {
        margin: 0 auto 20px;
    }

    .header-wrapper .header {
        height: inherit;
    }

    .header-wrapper .header .title {
        position: relative;
        top: 0;
        right: 0;
        padding: 0;
        text-align: center;
    }

    .section .section-inner {
        padding: 26px 20px;
    }

    .form-description-wrapper .section-title {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .form-field .form-label {
        font-size: 16px;
        line-height: 25px;
    }

    .form-field .form-field-description {
        font-style: italic;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .answer-buttons {
        margin: 26px 0 0;
        white-space: normal;
        position: relative;
        width: 170px;
        margin: 26px auto 0;
    }

    .answer-buttons .btns-title {
        position: absolute;
        width: 60px;
        line-height: 12px;
    }

    .answer-buttons .btns-title:first-child {
        left: -65px;
        top: 6px;
    }

    .answer-buttons .btns-title:last-child {
        right: -65px;
        bottom: 9px;
    }

    .answer-buttons .answer-btn {
        margin: 0 1px 8px;
        width: 28px;
        height: 27px;
        line-height: 26px;
        font-size: 13px;
    }

    .submit-button-wrapper {
        margin-top: 30px;
    }

    .g-recaptcha {
        position: relative;
        left: -6px;
        transform: scale(0.95);
    }
}