* {
    padding: 0;
    margin: 0;
}

body,
html {
    font-size: 10px;
    line-height: 12px;
    font-family: 'Georama';
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem;
}

.banner-wrapper {
    border-bottom: 5px solid #c6000a;
}

    .banner-wrapper picture {
        display: block;
        position: relative;
        line-height: 0;
    }

.form-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 30px;
    list-style-type: none;
    border-bottom: 1px solid #090708;
}

.radio-list {
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: wrap;
}

.form-item {
    /* margin-right: 20px; */
    width: 33.333%;
    position: relative;
}

img {
    width: 100%;
}

.form-title {
    font-size: 16px;
    font-weight: 700;
    color: #c6000a;
    margin-bottom: 15px;
    line-height: 18px;
}

.radio-item {
    margin-right: 20px;
}

.radio-field input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.radio-field label {
    position: relative;
    cursor: pointer;
    font-size: 13px;
    line-height: 18px;
    color: #090708;
    font-weight: 500;
}

    .radio-field label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 2px solid #00a556;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 6px;
        display: inline-block;
        position: relative;
        vertical-align: middle;
        cursor: pointer;
        margin-right: 5px;
        margin-bottom: 3px;
        border-radius: 3px;
    }

.radio-field input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 45%;
    left: 6px;
    width: 2px;
    height: 6px;
    border: solid #00a556;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}

.radio-field input:checked + label {
    font-weight: 600;
}

.input-field label {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    margin-right: 15px;
    margin-bottom: 5px;
    display: block;
}

.input-field input {
    max-width: 80%;
    width: 100%;
    border: 1px solid #090708;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #090708;
}

.form-cont {
    margin: 30px 0;
}

.btn {
    min-width: 99px;
    border-radius: 19px;
    background-color: #c6000a;
    border: 0;
    outline: 0;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 10px;
}

.note {
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    font-weight: 500;
    text-align: right;
    padding: 5px 0 5px;
    margin-top: 10px;
}

.note-margin {
    margin-right: 95px;
    padding: 0px 0 5px;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    font-weight: 500;
    text-align: right;
}

.note a {
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    text-decoration: none;
}

    .note a:hover {
        color: #c6000a;
    }

footer {
    background: #c6000a;
    padding: 10px;
}

    footer .desc {
        font-size: 10px;
        line-height: 12px;
        letter-spacing: 1px;
        color: #ffffff;
        font-weight: 500;
        text-align: center;
    }

.cm-bold {
    font-weight: 700;
}

.modal {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: none;
    z-index: 100;
    background: #fff;
    padding: 15px 20px;
    transition: transform 0.5s ease;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: fixed;
    top: 50%;
    left: 50%;
    overflow: hidden;
    outline: 0;
}

.modal-body {
    max-height: 55vh;
    overflow: auto;
}

.text-center {
    text-align: center
}

.modal.show {
    display: block;
    /* transform: none; */
}

.modal.typ-2 {
    max-width: 400px;
    padding-top: 24px;
}

    .modal.typ-2 .close {
        top: -20px;
        right: -10px;
    }

.overlay {
    background: #000;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

    .overlay.active {
        display: block
    }


/*  Modal Styling */

.modal-header {
    position: relative;
}

.modal-title {
    font-size: 13px;
    font-weight: 700;
    color: #c6000a;
    line-height: 16px;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #b7b7b7;
}

.modal-body {
    font-size: 11px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    line-height: 16px;
    margin-top: 10px;
}

.close {
    min-width: 20px;
    border-radius: 5px;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 30px;
    line-height: 10px;
    color: #c6000a;
    font-weight: 500;
    text-align: center;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.cta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem 1rem 1rem 0;
}

.btn.full {
    width: 100%;
}

.btn + .btn {
    margin-left: 8px;
}

.btn {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 5px 24px;
    background-color: #dd002a;
    border-radius: 0;
    color: #FFFFFF;
    border: 1px solid #dd002a;
    position: relative;
    text-decoration: none;
}

.modal-body-cont {
    margin-bottom: 1rem;
    font-size: 13px;
}

.note2 {
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.error-msg {
    color: red;
    font-size: 1.2rem;
    line-height: 1.4rem;
    position: absolute;
    bottom: -17px;
}

@media only screen and (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .radio-field {
        margin-bottom: 2px;
    }

    .form-item {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .input-field input {
        max-width: 90%;
    }

    .form-title {
        margin-bottom: 8px;
    }

    .radio-field input:checked + label:after {
        top: 45%
    }

    .modal.typ-2,
    .modal {
        max-width: 80%;
        width: 100%;
    }

    .form-list {
        margin: 20px 0;
        padding-bottom: 20px;
    }

    .modal-body {
        padding-right: 15px;
    }

    .modal.typ-2 .modal-body-cont {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 425px) {
    .logo-wrapper {
        margin: 1rem 0;
    }

    .radio-list {
        display: flex;
        flex-direction: column;
        align-content: flex-start;
    }

    .logo {
        width: 30%;
        text-align: left;
    }

    .manulife-logo {
        width: 50%;
        text-align: right;
    }

    .logo-75 {
        width: 80px;
    }

    .manulife-logo-img {
        width: 75%;
    }

    .cont-padd {
        padding: 0;
    }
}

ul.modal-body {
    padding-left: 25px;
}

.modal-body-cont::marker {
    color: #000;
    font-size: 15px;
    /* left: 0; */
}

.textareabox {
    max-width: 100%;
    width: 100%;
    border: 1px solid #090708;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    line-height: 20px;
    color: #090708;
}
