@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');
/* @import url("//db.onlinewebfonts.com/c/983f6915ecc23d35b16614931dec8f36?family=AntiumBlackW00-BlackItalic"); */
@import url("./../fonts/minionpro-boldit.otf");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
        /* ---- colors ---- */
    --main-color: #44679e;
    --main-color-2: #d81b1b;
    --white-color: #fff;
    --black-color: #333336;
        /* ---- fonts-size ---- */
    --paragraph-size: 15px;
    --header-text-size: 17px;
    --line-height: 1.28;
        /* ---- other-properties ---- */
    --trans: all 0.3s ease;
}
body{
    font-family: 'Poppins', sans-serif;
    /* background-image: url('https://eapostille.com/assets/images/bg.jpg?_v=89231978278937892'); */
    overflow-x: hidden;
    background: #e7e7e8;
}
html{
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}

.logo{
    width: 30%;
}
@media (max-width: 767px) {
    .logo{
        width: 40%;
    }
}
#header .links{
    margin-left: auto;
    margin-right: 0 !important;
}
#header .links li{
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
#header .links li .active::before,
#header .links li:hover .nav-link::before{
    position: absolute;
    content: '';
    background-color: var(--main-color);
    width: 75%;
    height: 2px;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}
#header .links li .active,
#header .links li:hover a{
    color: var(--main-color);
}
#header .links li a{
    color: var(--black-color);
    font-size: var(--paragraph-size);
    font-weight: bold;
}
@media (max-width: 1200px) and (min-width: 992px) {
    #header .links li a{
        font-size: 11px;
    }
}

#imgs{
    display: flex;
    justify-content: flex-start;
    align-items: center;

    /* padding: 0 150px; */
    /* border-bottom: 3px solid #e6e2e2; */
}
#imgs .first_one img,
#imgs .second_one img,
#imgs .third_one img{
    width: 100%;
}

#content{
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    justify-items: center;
    align-items: flex-start;
    /* column-gap: 0; */
    column-gap: 74px;

    padding-left: 50px;
    padding-right: 50px;
    /* margin-left: 15%; */
    margin-right: auto;
    margin-top: 15px;
    /* border-bottom: 3px solid #e6e2e2; */
    /* border-top: 3px solid #e6e2e2; */
}
#content .services{
    max-width: 28%;
    margin-top: 15px;
    height: fit-content;
    background-color: #dbdbda;
    border-radius: 30px;
    box-shadow: 2px 1px 2px 1px #bfbfbf;
    padding: 28px;
    color: #000;
}
#content .services h1{
    font-size: 25px;
    /* color: var(--white-color); */
}
#content .services h1 span{
    font-size: 50px;
}
#content .services p{
    /* color: var(--white-color); */
    font-size: 17px;
}
#content .price_col_one,
#content .price_col_two{
    width: 100%;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
}
#content .price_col_one .card,
#content .price_col_two .card{
    display: flex;
    background-color: transparent;
    border: none;
    /* padding: 15px 0; */
    /* width: 50%; */
    justify-content: flex-start;
    align-content: stretch;
    flex-direction: row;
    margin-top: 23px;
}
#content .price_col_one .card .total,
#content .price_col_two .card .total{
    background-color: #006ac9;
    border-radius: 50%;
    color: var(--white-color);
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-right: 15px;
    width: 80px;
    height: 80px;
    transition: var(--trans);
    align-items: center;
}
#content .price_col_one .data_more,
#content .price_col_two .data_more{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
#content .price_col_one .data_more .price,
#content .price_col_two .data_more .price{
    background: #44679e;
    color: #fff;
    border-radius: 9px;
    padding: 0px 6px;
    min-width: 68%;
}
#content .price_col_one .data_more .price p,
#content .price_col_two .data_more .price p{
    margin: 0;
}
#content .price_col_one .data_more a,
#content .price_col_two .data_more a{
    margin-left: 25px;
}
/* #content .price_col_one .card:hover .total,
#content .price_col_two .card:hover .total{
    background-color: var(--main-color-2);
} */

#content .price_col_one .card .data,
#content .price_col_two .card .data{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
}
#content .price_col_one .card .data .title,
#content .price_col_two .card .data .title{
    justify-content: flex-start;
    align-items: baseline;
    display: flex;
}
#content .price_col_one .card .data .title h4,
#content .price_col_two .card .data .title h4{
    margin-right: 10px;
}
#content .price_col_one .card .data a,
#content .price_col_two .card .data a{
    color: #000;
    transition: var(--trans);
    font-size: 22px;
}
#content .price_col_one .card .data span{
    color: rgb(128, 128, 128);
}
#content .price_col_one .card .data a:hover,
#content .price_col_two .card .data a:hover{
    text-decoration: underline;
    color: var(--main-color);
}
#content .price_col_one .data .data_more .btns,
#content .price_col_two .data .data_more .btns{
    border: 2px solid rgba(154, 159, 191, 0.5);
    color: var(--main-color);
    /* font-weight: bold; */
    border-radius: 20px;
    padding: 5px 17px;
    text-align: center;
    transition: var(--trans);
}
#content .price_col_one .data .data_more .btns:hover,
#content .price_col_two .data .data_more .btns:hover{
    text-decoration: none;
    background-color: var(--main-color-2);
    color: var(--white-color);
}

#footer{
    text-align: center;
    /* padding: 15px 0; */
}

@media screen and (max-width: 767px) {
    #header{
        flex-direction: column;
        text-align: center;
    }

    #imgs{
        display: none;
    }
    #imgs .first_one img,
    #imgs .second_one img,
    #imgs .third_one img{
        width: 500%;
    }

    #content{
        display: grid;
        grid-template-columns: repeat(1 ,1fr);
    }
    #content .services{
        max-width: 100%;
        height: fit-content;
    }
    #content .price_col_one,
    #content .price_col_two{
        margin-top: 25px;
    }
    #content .price_col_one{
        display: block;
        width: 100%;
        margin-left: 0;
    }
    #content .price_col_one .card .total,
    #content .price_col_two .card .total{
        width: 100px;
    }
    #content .price_col_one .card .data,
    #content .price_col_two .card .data{
        padding: 10px 0;
    }
}


/* ------ Main Page ------ */
.custom-container{
    min-height: calc(100vh - 315px);
}
#content_main{
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
}
#content_main .title h1{
    font-size: 20px;
    text-align: center;
    margin-top: 2%;
}
#content_main .title h1 span{
    font-size: 45px;
    color: var(--main-color);
    text-shadow: 1px 2px 1px #d29e9e;
    font-weight: bold;
}
#content_main .main_card{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    background-color: var(--white-color);
    box-shadow: 2px 1px 2px 1px #bfbfbf;
    width: 60%;
    padding: 15px 35px;
    margin-left: 17%;
    margin-top: 2%;
    border-radius: 10px;
}
#content_main .main_card .info .step1 .tit{
    color: #fbbc05;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
#content_main .main_card .info .step2 .tit{
    color: #ea4335;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
#content_main .main_card .info .step3 .tit{
    color: #4285f4;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
#content_main .main_card .info .step4 .tit{
    color: #34a853;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
#content_main .main_card .info .step1 p,
#content_main .main_card .info .step2 p,
#content_main .main_card .info .step3 p,
#content_main .main_card .info .step4 p{
    font-size: 18px;
}
#content_main .main_card .info .step4 p span{
    font-size: 30px;
    color: #0f7d2d;
    text-shadow: 1px 2px 1px #d29e9e;
    font-weight: bold;
}
#content_main .main_card .logo_img{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    max-width: 100%;
}
#content_main .main_card .logo_img .img_div{
    display: flex;
    justify-content: flex-end;
    /* width: 50%; */
}
#content_main .main_card .logo_img img{
    width: 40%;
}
#content_main .main_card .logo_img button{
    padding: 5px 157px;
    font-size: 25px;
    background-color: var(--main-color);
    border: 1px solid var(--black-color);
    transition: var(--trans);
}
#content_main .main_card .logo_img button:hover{
    background-color: #334d77;
}
#content_main .main_card .logo_img button {
    color: var(--white-color);
}

#footer_main{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    width: 100%;
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--main-color);
    color: var(--white-color);
}
#footer_main p{
    width: 70%;
}
#footer_main .document ul li a{
    color: var(--white-color);
    transition: var(--trans);
}
#footer_main .document ul li:hover a{
    color: #ff7d71;
}
#footer_main .social .icons{
    font-size: 22px;
    margin-left: 35px;
}
#footer_main .social .icons i{
    transition: var(--trans);
}
#footer_main .social .icons i:hover{
    color: #ff7d71;
    cursor: pointer;
}
#footer_main .about h4,
#footer_main .document h4,
#footer_main .social h4{
    color: var(--white-color);
}
.cpy{
    background-color: #334d77;
    color: var(--white-color);
    text-align: center;
    padding: 5px 0;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    #content_main{
        height: fit-content;
    }

    #content_main .title h1{
        font-size: 20px;
    }
    #content_main .title h1 span{
        font-size: 30px;
    }

    #content_main .main_card{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        width: 100%;
        text-align: center;
        margin: 5% 0;
    }

    #content_main .main_card .logo_img{
        align-items: center;
    }

    #footer_main{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        text-align: left;
    }
    #footer_main div{
        margin: 15px 0;
    }
}


/* ------ New-User Page 'step1' ------ */
#content_user{
    padding: 0 25px;

}
/* #content_user,
#content_user_2{
    margin-top: 15px;
    min-height: calc(100vh - 350px);
} */
#content_user .step_img,
#content_user_2 .step_img{
    max-width: 100%;
}
#content_user .step_img img,
#content_user_2 .step_img img{
    width: 15%;
    position: relative;
}
#content_user .step_img img::before,
#content_user_2 .step_img img::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #fbbc05;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
/* #content_user .popup{
    display: none;
    max-width: 50%;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
}
#content_user .popup img{
    width: 50%;
    border: 1px solid #333336;
    border-radius: 3px;
    margin: 15px 0;
    background-color: transparent;
} */
.modal-body{
    height: fit-content;
}
.modal-body iframe{
    width: 100%;
    height: 455px;
}
#content_user .main_card,
#content_user_2 .main_card{
    /* background-color: var(--white-color);
    box-shadow: 2px 1px 2px 1px #bfbfbf; */
    /* padding: 15px 35px; */
    margin-top: 2%;
    border-radius: 10px;
    /* padding-bottom: 60px */
}
#content_user .main_card .inp,
#content_user_2 .main_card .inp{
    display: flex;
    margin-bottom: 10px;
}
#content_user_2 .main_card .inp #chx[type='checkbox']{
    width: 30px;
}
#content_user .main_card .inp label,
#content_user_2 .main_card .inp label{
    /* width: 70%; */
    cursor: pointer;
    padding-left: 15px;
}
#content_user .main_card .inp label span,
#content_user_2 .main_card .inp label span{
    color: var(--main-color-2);
}
#content_user .main_card .inp select,
#content_user_2 .main_card .inp select{
    width: 50%;
    font-size: 30px;
}
/* #content_user .main_card .next,
#content_user_2 .main_card .btn{
    margin-right: 0px;
    padding: 10px;
    border: 2px solid var(--black-color);
    background: #ffd352 url('../../images/bg_lines_button.png') repeat;
} */
#content_user .main_card .next{
    display: block;
    margin: 0 0 0 auto;
}
/* #content_user_2 .main_card #back{
    margin-right: 0px;
    border: 2px solid var(--black-color);
    color: #fff;
    background: #39598a url('../../images/bg_lines_button.png') repeat;
} */
#content_user .main_card .total,
#content_user_2 .main_card .total{
    display: none;
    margin: 20px 0;
}
#content_user .main_card .total .fee,
#content_user .main_card .total .upload,
#content_user_2 .main_card .total .fee,
#content_user_2 .main_card .total .upload{
    display: flex;
    justify-content: space-between;
}
#content_user .main_card .total label,
#content_user_2 .main_card .total label{
    width: 70%;
}
#content_user .main_card .total label span,
#content_user_2 .main_card .total label span{
    color: var(--main-color-2);
}
#content_user .main_card .total .fee p,
#content_user_2 .main_card .total .fee p{
    margin-left: 29%;
    width: 100%;
}
#content_user .main_card .total .upload input,
#content_user_2 .main_card .total .upload input{
    width: 50%;
}

/* ------ New-User Page 'step2' ------ */
#content_user_2 .grid_inp{
    /* display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; */
}
#content_user_2 .grid_inp label span{
    color: #c10019;
}
#content_user_2  .signature{
    background-color: #eee;
    border-radius: 6px;
    padding: 25px;
    margin: 15px 0;
}
#content_user_2 .signature .inp label{
    width: 30%;
    color: #0d6efd;
    font-weight: bold;
}
#content_user_2 .signature #name_sign{
    font-family: 'Freehand', cursive;
    font-size: 22px;
}
#content_user_2 .main_card .bttn #cont{
    display: none;
}

/* ------ New-User Page 'step3' ------ */
#content_user_2 .main_card .ships{
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 40px;
    text-align: center;
    margin: 15px 0;
    display: flex;
    width: 100%;
    justify-content: space-around;
}
#content_user_2 .main_card .ships .fri > p,
#content_user_2 .main_card .ships .tue > p{
    text-shadow: 2px 1px 1px #dec3c3;
    /* margin-left: -11%; */
}
#content_user_2 .main_card .ships .date{
    width: 120px;
    font-size: 1.5rem;
    margin: auto;
}
#content_user_2 .main_card .ships .fri .date .day{
    background-color: #4285f4;
    color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-shadow: none;
}
#content_user_2 .main_card .ships .fri .date .month{
    background-color: #4285f4;
    color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-shadow: none;
}
#content_user_2 .main_card .ships .tue .date{
    /* margin-top: 38px; */
}
#content_user_2 .main_card .ships .tue .date .day{
    background-color: #cc0e0e;
    color: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-shadow: none;
}
#content_user_2 .main_card .ships .tue .date .month{
    background-color: #cc0e0e;
    color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    text-shadow: none;
}
#content_user_2 .main_card .ships .inp input[type='radio']{
    width: 26px;
}
#content_user_2 .main_card .ships .inp{
    margin-left: -22%;
    text-align: left;
}
#content_user_2 .main_card .ships .inp label{
    padding-left: 15px;
    cursor: pointer;
    font-weight: 1.2rem;
}
#content_user_2 .main_card #upload_ship{
    display: none;
    margin: 25px 0;
}
#content_user_2 .main_card #upload_ship label{
    color: #39598a;
}

/* ------ New-User Page 'step4' ------ */
#content_user_2 .main_card .credit{
    background-color: rgb(243, 243, 243);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}
#content_user_2 .main_card .credit h4{
    font-size: 43px;
    color: #0f7d2d;
    padding: 10px 0;
    text-shadow: 1px 2px 1px #d29e9e;
    font-weight: bold;
}
#content_user_2 .main_card .credit .form-group{
    margin: 15px 0;
}
#content_user_2 .main_card .credit form .inp label{
    width: 30%;
}
#content_user_2 .main_card .credit form .inp .year select{
    margin-left: 15px;
}
#content_user_2  .info{
    display: none;
    padding: 15px 0;
}
#content_user_2  #pay{
    color: #4285f4;
    text-decoration: underline;
    cursor: pointer;
    margin: 10px 0;
}
#content_user_2  .info p i{
    color: #cc0e0e;
}

/* ---- Contact US page ---- */
#content_contact{
    padding: 50px;
    border: 1px solid #a5a5a5;
    border-radius: 6px;
    margin-bottom: 94px;
}
#content_contact h4{
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}
#content_contact .txt p i{
    border: 1px solid #aaaab4;
    border-radius: 50%;
    padding: 10px;
}
#content_contact .txt p{
    max-width: 100%;
}
#content_contact .txt p img{
    width: 30%;
}

/* -------- Printing the billing Page -------- */
#content_print{
    width: 70%;
    height: fit-content;
    padding: 10px 50px;
    margin-left: 15%;
    background-color: var(--white-color);
    border: 20px solid #333336;
}
#content_print .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#content_print .header>div.title{
    text-align: center;
    width:57%;
}
#content_print .header>div {
    padding: 0% 15px;
}
#content_print .header .logo,
#content_print .header .qr{
    max-width: 100%;
}
#content_print .header img{
    width: 20%;
}
/* #content_print .header .qr img{
    width: 30%;
    margin-left: 50%;
} */
#content_print .body .title{
    background-color: var(--main-color);
    color: var(--white-color);
    width: 15%;
    padding: 10px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 2px 3px 4px gainsboro;
}
#content_print .body .data{
    /* padding-top: 25px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#content_print .body .data .info p span{
    color: #c10019;
}
#content_print .footer{
    /* padding-top: 35px; */
}
#content_print .footer button{
    display: block;
    margin: 0px 0px 0px auto;
}
@media screen and (max-width: 767px) {
    #content_print{
        width: 100%;
        margin-left: 0;
        padding: 50px;
    }
    #content_print .header{
        display: flex;
        flex-direction: column;
        margin-left: 100px;
    }
    #content_print .body .title{
        width: 45%;
        margin: 20px 0 0 80px;
    }
    #content_print .body .data{
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
}
@media print {
    #welcoming,
    #main_img,
    #header,
    #desc_foot,
    #footer_main,
    #content_print .footer button{
        display: none;
    }
    body{
        background-image: none;
    }
    #content_print{
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10000;
        width: 100%;
        border: none;
        padding: 0;
        margin: 0;
        /* height: 100vh; */
    }
    .no-print{
        display: none;
    }
}
select {
    padding: 5px;
    border-radius: 6px;
    border-color: #e3e3e3;
    cursor: pointer;
}
#content_main .main_card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    background-color: var(--white-color);
    box-shadow: 2px 1px 2px 1px #bfbfbf;
    width: 100%;
    padding: 15px 35px;
    margin-left: 0%;
    margin-top: 2%;
    border-radius: 10px;
}

.bg_loader{
    background-color: #33333628;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999999999999999999999999999999999999;
    padding: 0;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}
.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #d81b1b;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.template-parentdiv .main_card .info .step1 .tit{
    color: #fbbc05;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
.template-parentdiv .main_card .info .step2 .tit{
    color: #ea4335;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
.template-parentdiv .main_card .info .step3 .tit{
    color: #4285f4;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}
.template-parentdiv .main_card .info .step4 .tit{
    color: #34a853;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 40px;
}

.main-title{
    /* color: #365586; */
    text-align: center;
    font-family: "Minion Pro";
    font-size: 25px;
    /* font-weight: 600; */
}
/* footer contact */
.img{
    width: 198px;
    height: 24px;
}
.img-div{
    display: inline-block;
    width: 170px;
    margin-left: 5px;
}

.img-div img{
    filter: invert(100%);
}




.form{
    display: flex;
}
.form > *{
    width: 60%;
}

input[type = number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button{
    appearance: none;
}
input#name{
    max-width: 350px;
}
input#num{
    max-width: 240px;
}
input#cvv{
    max-width: 100px;
}
.Credit-card{
    width: 350px;
    /* margin: auto; */
    min-height: 225px;
    border-radius: 12px;
    background-image: url("./../images/visa-credit-card.jpg");
    padding: 10px;
    height: fit-content;
    margin-top: 10px;
}
.card-bar{
    background-color: #646464;
    content: "";
    height: 20px;
    display: block;
    width: 100%;
}
.chip-card{
    color: white;
    display: flex;
    align-items: center;
    margin-top: 6px;
    font-size: 17px;
    font-family: "Abel";
}
.chip-img{
    height: 30px;
    margin: auto 15px;
}
.cvv-card{
    width: 90%;
    margin: 5px auto 0 auto;
    background-image: url("../images/lines.jpg");
    direction: rtl;
    padding: 5px;
}
.cvv{
    font-size: 17px;
    background-color: #ffffff;
    /* padding: 0 5px; */
}
.card-form{
    font-size: 20px;
    width: 80%;
    padding: 3px 12px;
    color: #ffffff;

}

@media screen and (max-width: 800px){
	#content_main .main_card{
		display: block;
	}
	#content_main .main_card .logo_img img{
		width: 50%;

	}
}
@media screen and (max-width: 800px){
	#content_main .main_card .logo_img button{
		padding: 5px 50px;
	}
}


@media screen and (max-width: 765px) {
    .form{
        display: block;
    }
    .form > *{
        width: 100% !important;
    }
}
@media screen and (max-width: 500px) {
    input[type = number]{
        display: block !important;
        width: 100% !important;
        margin-bottom: 10px;
    }
    #date{
        margin-bottom: 10px;
    }
}
.outusa {
    display: none;
}
/* ahmed edit invoice page */
#content_print .footer .title{
    font-size: 1.35rem;
    text-align: center;
    /* padding: 20px; */
}
#content_print .footer .title span{
    color: #c10019;
}
#content_print table{
    width: 100%;
}
#content_print table thead{
    text-align: left;
    background-color: var(--main-color);
    color: #fff;
}
#content_print table thead th{
    padding: 8px;
}
section.payment .form-group {
    padding-bottom: 10px;
}

.question{
    font-size: 21px;
    max-width: 735px;
    border-radius:  5px;
    background-color: #fff;
    margin-top: 12%;
}
.question button{
    width: 280px;
    padding: 10px 5px;
    border-radius: 5px;
    font-weight: 500;
}

.modal-question{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0, 0.2);
    z-index: 9999999999999;
}