/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 6 versions
*/

@font-face {
    font-family: Roboto;
    src: url("../fonts/roboto/Roboto-Regular.ttf");
    }

    #contact-us{
        padding: 10px 5% !important;
    }

:root {
    --main-black: #000;
    --mid-black: #565C5F;
    --mid-grey: #64707D;
    --back-grey: linear-gradient(180deg,#f8f9fc,#fff 30%);
    --light-stroke: #E2E4E5;
    --linkBlue: #2F80ED;
    --lightBlue: #ecf7fd;
    --prime-color: #df0024;
    font-size: 16px;
}

/* INFORMATION ICON BLOCK */
    .icon_info {
    width: 16px;
    transform: scale(1.0);
    transition: transform 0.3s;
    }

    .icon_info:hover {
        transform: scale(1.1);
        transition: transform 0.3s;
    }

        .icon_info path {
            /*fill: var(--prime-color);*/
            fill: #df0024;
        }

/* INFORMATION ICON CLOSE */
.navbar {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    text-align: center;
}
.navbar:before,
.navbar:after {
    display: none;
}
    .navbar > a{
        display: -ms-flex;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    body{
        font-family: 'Roboto', Times, serif !important;
    }

    .header{
        -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
                box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
        min-height: 60px;
    }
    .pop-up-form-bg{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: rgba(0, 0, 0, 0.233);
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 0.6s;
        -o-transition: opacity 0.6s;
        transition: opacity 0.6s;
        z-index: 100000;
    }

    .pop-up-back-open{
        visibility: inherit;
        opacity: 1;
        -webkit-transition: opacity 0.6s;
        -o-transition: opacity 0.6s;
        transition: opacity 0.6s;
    }

    .pop-up-form{
        background-color: #ffffffe7;
        max-width: 650px;
        width: 90vw;
        border-radius: 0.5rem;
        -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
                box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
        -webkit-transform: translate(0, 100px);
            -ms-transform: translate(0, 100px);
                transform: translate(0, 100px);
        -webkit-transition: -webkit-transform 0.8s;
        transition: -webkit-transform 0.8s;
        -o-transition: transform 0.8s;
        transition: transform 0.8s;
        transition: transform 0.8s, -webkit-transform 0.8s;
    }

.pop-up-with-header {
    /*background-color: #ffffffe7;*/
    background-color: white;
    max-width: 650px;
    width: 90vw;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    transform: translate(0, 100px);
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
}

.pop-up-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*border-bottom: 1px solid var(--prime-color);*/
    border-bottom: 1px solid #df0024;
    padding: 15px 20px;
    font-weight: 700;
}
    .close-btn{
        height: 25px;
        width: 25px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-radius: 50%;
        cursor: pointer;
        opacity: 1;
    }

    .close-btn:hover{
        opacity: 0.6;
    }

    .pop-up-content{
        padding: 15px 20px;
    }

    .pop-up-open{
        -webkit-transform: translate(0, 35px);
            -ms-transform: translate(0, 35px);
                transform: translate(0, 35px);
        -webkit-transition: -webkit-transform 0.8s;
        transition: -webkit-transform 0.8s;
        -o-transition: transform 0.8s;
        transition: transform 0.8s;
        transition: transform 0.8s, -webkit-transform 0.8s;
    }

    .page-padding{
        padding: 0 5vw;
    }
    .btn{
        font-weight: 500;
    }
    .btn-danger, .bg-danger{
        background-color: var(--prime-color);
        color: #fff !important;
    }
    .btn-light {
        background-color: #e0e0e0;
    }
    .btn-light:hover {
        background-color: #e0e0e0;
        border: solid 1px #cacaca;
    }
    .text-danger{
        color: var(--prime-color);
    }
    .input-capital{
        text-transform: uppercase;
    }

    .small-info{
        font-size: 0.67rem;
    }
    .main{
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 120px;
        margin-bottom: 80px;
    }
    .form_card{
        -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
                box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
        border-left: solid 4px var(--prime-color);
        min-width: 55vw;
        max-width: 577px;
        padding: 3vw 3vw;
    }
    .form_card_wide{
        -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
                box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
        border-left: solid 4px var(--prime-color);
        min-width: 55vw;
        padding: 3vw 3vw;
    }
    .wide-form-element{
        width: 33%;
        padding: 0px 10px;
    }
    .form_card_wide .form_main{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .form-title{
        font-size: 1.5rem;
        font-weight: 700;
    }
    .message-box{
        text-align: center;
        width: 100%;
        color: var(--main-black);
        background-color: #f2f2f2;
        padding: 20px 30px;
        font-size: 1rem;
    }
    .form_section{
        width: 100%;
        font-weight: 700;
        font-size: 1.2rem;
        padding: 20px 0;
        border-top: solid 1px var(--light-stroke);
    }

    input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    input[type=number] {
        -moz-appearance: textfield;
    }

    /* RESPONSIVE DESIGN */

@media only screen and (max-width: 869px) {
    .wide-form-element{
        width: 50%;
    }
    }
@media only screen and (max-width: 576px) {
    :root{
        font-size: 14px;
    }
    .header{
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .main{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .form_card, .form_card_wide{
        border-left: 0;
    }

    .col-sm-2{
        -webkit-box-flex: 0;
            -ms-flex: 0 0 35%;
                flex: 0 0 35%;
        max-width: 35%;
        padding-right: 10px;
    }
    .col-sm-4{
        -webkit-box-flex: 0;
            -ms-flex: 0 0 33.3334%;
                flex: 0 0 33.3334%;
        max-width: 33.3334%;
        padding-right: 0px;
    }
    .col-sm-10{
        -webkit-box-flex: 0;
            -ms-flex: 0 0 65%;
                flex: 0 0 65%;
        max-width: 65%;
        padding-left: 0px;
    }
    .wide-form-element{
        width: 100%;
        padding: 0px 0px;
    }
    .navbar > *{
        width: 100%;
    }
    .navbar > div:last-child{
        display: none;
    }
}