.mtb-20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.width-100{
    width: 100%;
}
.m-0{
    margin: 0;
}

#main_container{
    height: 100%;
    width: 100%;
    padding:40px 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#main_container > div {
    width: 100%;
}
#main_container > div:first-child{
    border: 1px solid lightgrey;
    padding: 50px 100px;
    box-shadow: 4px 6px 11px 2px gainsboro;
}
#main_container > div:nth-child(2){
    padding:40px 0px;
}
#main_container #final_view_right_section .form-notes{
    border: 1px solid #c7c7c7;
    background-color: white;
    border-radius: 4px;
    padding: 12px 18px;
    margin-bottom: 20px;
}
#main_container #final_view_right_section .form-notes h6{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
#main_container #final_view_right_section .form-notes h6 i{
    margin-right: 3px;
}
#main_container #final_view_right_section .form-notes ol{
    list-style-position: inside;
    margin-bottom: 0;
    font-size: 13px;
}
#main_container .terms-row{
    color:#4a4a4a;
    line-height: 1.3;
    font-size: 13px;
    margin-bottom: 20px;
}
#title{
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 700;
    color: #29b1df;
}
#title ~ p{
    font-weight: 600;
    color: #525252;
    font-size: 17px;
}

.box{
    text-align: center;
    border: 1px solid lightgrey;
    padding: 20px 35px;
    border-radius: 6px;
    box-shadow: 4px 6px 11px 2px gainsboro;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    transition: .3s all linear;
    height: 100%;
}
.box:hover{
    box-shadow: 4px 6px 11px 2px #2196f32e;
    border-color: #29b1df;
    cursor: pointer;
    transition: .3s all linear;
}
.box > .box_icon {
    height: 100px;
    width: 100px;
    background-repeat: no-repeat !important;
    /* background-size: contain !important; */
    background-position: center !important;
}
.box_icon ~ p {
    margin-top: 20px;
    color:#525252;
    font-weight: 600;
    line-height: 1.5;
}
.selected_option{
    box-shadow: 0px 0px 0px 6px #03a9f452!important;
}

#continue_button_col{
    min-height: 50px;
    display: flex;
    justify-content: space-around;
}
.action_buttons{
    font-weight: 600;
    background-color: #27b1df;
    color: white;
    padding: 7px 32px;
    border-radius: 90px;
    border: 1px solid #27b1df;
    margin-top: 50px;
    text-align: center;
    box-shadow: 2px 4px 7px 0px #d0d0d0;
    width: 160px;
}
#back_button{
    background: white;
    border: 1px solid #27b1df;
    color: #27b1df
}

#content{
    padding-top: 20px;
}
#content > .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#cert_badges{
    display: flex;
    justify-content: flex-end;
}
#cert_badges > img {
    border:1px solid lightgrey;
    /* box-shadow: 4px 6px 11px 2px gainsboro; */
    margin-left: 30px;
    padding:5px 8px;
}

.dot{
    width: 12px;
    height: 12px;
    background: #9E9E9E;
    display: inline-block;
    border-radius: 50%;
    margin-right: 12px;
}
.dot.completed{
    background: #27b1df;
}

#check_mark_list{
    list-style:none;
    font-size: 15px;
}
#check_mark_list > li {
    margin:5px 0
}
#check_mark_list img {
    margin-right: 5px;
    padding-bottom: 3px;
}
#required_warning{
    background: #FFC107;
    width: max-content;
    margin: 30px auto  0 auto;
    padding: 10px 30px;
    font-weight: 600;
    color: #272727;
    border-radius: 3px;
    box-shadow: 3px 3px 6px #a2a2a2;
}

#loading{
    background: white;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    width:100%;
    z-index: 100000;
}
#loading > div {
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    right: 50%;
    top: 50%;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading_search{
    background: white;
    position: fixed;
    top: 0;
    bottom: 0;
    height: 100%;
    width:100%;
    z-index: 100000;
    display:none;
}
#loading_search > div {
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    right: 50%;
    top: 50%;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main_container.final_view{
    padding:40px 60px;
}
#main_container.final_view>div:first-child{
    padding:0
}
#thumbs_up_icon{
    margin-top: 50px;
    margin-bottom: 20px;
}
#final_view_right_section{
    background:#d3d3d352;
    height:100%;
    padding:50px
}
#text_inputs_row input{
    margin-bottom: 15px;
    border: 1px solid #c7c7c7;
    height: 42px;
}
#text_inputs_row input::placeholder{
    color: #607d8b
}

#sign_up_buttons button{
    background-color: #27b1df;
    color: #ffff;
    padding: 10px 20px;
    border-radius: 90px;
    width: 100%;
    margin: 10px 0;
    font-weight: bold;
}
#sign_up_buttons button:nth-child(2){
    background:#1565C0
}
#sign_up_buttons i{
    font-size: 18px;
    margin-right: 10px;
}


#radio_buttons{
    margin: 20px 0;
}
.radio_container {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    margin-right: 30px;
    cursor: pointer;
    line-height: 1.6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    border: 1px solid #27b1df;
}

.radio_container:hover input~.checkmark {
    background-color: #ccc;
}

.radio_container input:checked~.checkmark {
    background-color: #27b1df;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio_container input:checked~.checkmark:after {
    display: block;
}

.radio_container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

body{
    display: inherit;
    overflow: hidden;
}

/*mobiles*/
@media only screen and (max-width: 440px) {
    #main_container {
        padding:40px 25px;
    }
    #main_container>div:first-child{
        padding:50px 8px;
        box-shadow: none;
        border:none;
    }
    #content{
        padding-left: 40px;
        padding-right: 40px;
    }
    #required_warning{
            position: fixed;
            top: 25px;
            z-index: 100000;
            left: 0;
            right: 0;
    }
    #continue_button_col{
        position: fixed;
        z-index: 100;
        background: white;
        height: 73px;
        width: 100%;
        display: block;
        bottom: 0;
        left: 0;
        text-align: center;
        height: 86px;
        border-top: 1px solid #e9e9e9;
        box-shadow: 0px -7px 14px 3px #b7b7b75c;
    }
    .action_buttons{
        margin-top: 27px;
    }
    .sticky{
        z-index: 100; /* fix header overlap */
    }
    #cert_badges>img {
        width:47%;
        margin:20px 0 0 0
    }
    #cert_badges{
        justify-content: space-between;
    }


    #main_container.final_view .d-flex{
        flex-direction: column;
    }
    #main_container.final_view{
        padding:20px
    }
    #final_view_right_section{
        padding:30px 20px;
        margin-top: 30px;
    }
    #sign_up_buttons button{
        white-space: pre-line;
        line-height: 1.8;
    }

    #loading_search>div>img {
        width: 550px
    }
}

/* ipad */
@media only screen and (max-width: 991px) and (min-width: 768px) {
    #main_container {
        padding: 40px
    }
    #main_container>div:first-child{
        padding: 50px 40px;
        margin-bottom: 30px;
    }

    #main_container.final_view>div:first-child{
        padding-left: 20px;
    }

    #loading_search > div > img {
        width: 950px
    }
}

/* ipad pro */
@media only screen and (min-device-width : 1023px) and (max-device-width : 1050px) {
    #main_container{
        padding:40px 50px
    }
    #main_container>div:first-child {
        padding: 50px 70px;
        margin-bottom: 30px;
    }

    #main_container.final_view>div:first-child{
        padding-left: 25px;
    }

    #loading_search>div>img {
        width: 550px
    }

    #loading_search>div>img {
        width: 1200px
    }
}



/* transitions */
.fade-enter-active,
.fade-leave-active {
    transition: opacity .5s;
}

.fade-enter,
.fade-leave-to

/* .fade-leave-active below version 2.1.8 */
    {
    opacity: 0;
}



/* override flags path for mobile input component */
.iti__flag {
    background-image: url("../images/registration/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../images/registration/flags@2x.png");
    }
}

.iti{
    width: 100%;
    margin-bottom: 20px;
}