@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    /* ---- colors ---- */
    --main-color: #0A2463;
    --main-color-2:#c3ab5d;
    --white-color: #fff;
    --wheat-color: #fff7c2;
    --hover-color: #fff7c2;
    --light-color: #f8f0d7;
    /* ---- fonts-size ---- */
    --paragraph-size: 22px;
    --header-text-size: 30px;
    --text-size: 1.5rem;
    /* ---- other-properties ---- */
    --trans: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-size: contain;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

hr {
    /* width: 201%; */
    height: 3px;
    margin-left: 0%;
    color: rgb(163, 163, 163);
}
.container_x{
    max-width: 1700px;
    margin: auto;
    background-color: #f2f2f2;
}
.container_x > .row{
    margin: 0;
}
#welcoming {
    width: 100%;
    background-color: var(--main-color);
    color: var(--main-color-2);
    text-align: center;
    padding-top: 10px;
}

#welcoming>p {
    text-align: center;
    margin: auto;
}

#main_img {
    background-color: var(--white-color);
    max-width: 100%;
}

#main_img img {
    padding: 0;
}

#header {
    background-color: var(--main-color);
    /* background: linear-gradient(to bottom, #897616 0%, #E7C972 100%); */
}

#header a {
    font-size: 20px;
    color: var(--main-color-2);
}

#header a:hover {
    color: var(--hover-color)
}

#header .active {
    color: var(--hover-color) !important
}

#header #branches {
    color: var(--white-color);
    text-shadow: -1px -1px 0 #f1bbff, 1px -1px 0 #ad0fce, -1px 1px 0 #9448bb, 1px 1px 0 #7a0ea7;
}
#header .dropdown-menu{
    max-height: 500px;
    overflow: auto;
}
#header .dropdown-menu .dropdown-item {
    color: #000;
}

#header .dropdown-menu .dropdown-item:hover {
    color: var(--hover-color);
    background-color: var(--main-color);
}

@media screen and (max-width: 500px) {
    #header .dropdown-menu li a{
        text-wrap: balance;
        border-bottom: 1px solid #eeeeee;
    }
    #desc_foot .postions .second img{
        width: 85%;
    }
}

nav .container {
    max-width: 100%;
}

nav .container ul {
    margin: auto;
}

#header .navbar-toggler {
    background-color: var(--white-color);
    margin: 0 0 0 auto;
}

.cart-box {
    padding: 6px 12px;
    background: #fff;
    color: #2b0136;
    border-radius: 5px;
}

#header a:hover .cart-span {
    background-color: var(--hover-color);
}

.first-content {
    /* width: 97%;
    max-width: 1400px; */
    margin: auto;
    /* padding: 34px; */
    /* box-shadow: 0px 0px 2px; */
    margin-top: 13px;
    /* border-bottom: 1px solid rgba(0,0,0,0.2); */
}

#description {
    color: var(--main-color);
    margin: 0px auto
}

#description h1.text-title, #description h2.text-title {
    /* background-color: var(--main-color); */
    padding: 15px 0;
    /* border-radius: 10px;
    text-align: center; */
    font-size: 23px;
    font-weight: bold;
    font-family: Tahoma, Geneva, sans-serif;
    /* text-shadow: 1px 1px #fff; */
}


.first-content p {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
}

#description .img {
    height: 120px;
}

.sub-header {
    text-align: center;
    background: var(--main-color);
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    /* border: 1px solid var(--main-color); */
    font-family: 'Lato-Regular', sans-serif;
    font-size: 22px;
    line-height: 27px;
}

.content {
    /* padding-left: 50px;
    padding-right: 50px; */
    margin: auto;
    width: 100%;
    /* max-width: 1400px; */
    /* background-color: var(--white-color); */
}

.content .choosing .country_title {
    font-size: 40px;
    font-weight: 600;
    color: var(--main-color);
}

.content .choosing .title, .content .home-countries-container .title {
    /* font-weight: 600; */
    color: var(--main-color);
    padding-left: 15px;
    font-size: 23px;
    font-weight: bold;
}

.content .choosing .title span {
    color: var(--main-color-2);
    text-shadow: 3px 4px 5px #fff7c2;
}

.content .choosing .divs .card {
    justify-content: space-between;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
    align-items: center;
    transition: 0.5s;
    width: 100%;
    height: fit-content;
    display: flex;
    background-color: #f8f0d7;
    color: var(--main-color);
    padding: 5px 15px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: var(--trans);
    border: 3px solid #f8f0d7;
    position: relative;
    flex-direction: row;
    border: 3px solid var(--main-color);
}

.content .choosing .divs .card:hover,.content .choosing .divs .card.activeCard {
    border: 3px solid var(--main-color-2);
    color: #fff;
    background-color: var(--main-color);
}

.content .choosing .divs .card .num {
    background: var(--main-color);
    height: 60px;
    width: 60px;
    position: absolute;
    top: 6px;
    left: 5px;
    padding: 6px;
    text-align: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: bold;
    vertical-align: middle;
    border-radius: 50%;
    box-shadow: 2px 3px 4px gainsboro;
    transition: var(--trans);
    margin-top: 1.5%;
}

.content .choosing .divs .card:hover .num, .content .choosing .divs .card.activeCard .num {
    background: #fff;
    color: var(--main-color);
}

.content .choosing .divs .card span h4 {
    color: var(--main-color);
    font-weight: bold;
    margin-top: -4px;
    transition: var(--trans);
}

.content .choosing .divs .card span {
    display: block;
    margin-top: 1.5%;
    width: fit-content;
    padding-left: 60px;
}

.content .choosing .divs .card:hover span h4, .content .choosing .divs .card.activeCard span h4 {
    color: #fff;
}

.content .choosing .divs .card span p {
    font-size: 20px;
    margin-top: -12px;
}

.content .countries .title {
    font-size: 40px;
    font-weight: 600;
    color: var(--main-color);
    padding: 2% 0;
    text-align: center;
}

.content .choosing .flag {
    align-items: flex-start;
}

.content .choosing .flag .flag_img {
    padding-top: 10px;
    /* margin-right: 10px; */
    padding-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* start sidebar */
.embassy_link {
    /* width: 100%; */
    /* margin-left: 45%; */
    height: 100%;
    background-color: #fafafa;
    border-left: 5px solid #e2dab9;
    margin-top: -8px;
    padding: 10px 15px;
}

.embassy_link h5 {
    color: var(--main-color);
}

.embassy_link ul {
    list-style-type: square;
}

/* end sidebar */

.docName .title,
.docName2 .title {
    color: var(--main-color) !important;
    font-size: var(--header-text-size) !important;
    text-align: left !important;
    text-decoration: underline;
}

.docName2 .title {
    display: inline;
}

.docName2 .subTitle {
    padding-left: 37px;
    color: var(--main-color);
}

.docName .divs,
.docName2 .divs {
    padding-left: 40px;
}

.docName .divs ul,
.docName2 .divs ul {
    list-style-type: square;
}

.docName .divs ul li,
.docName2 .divs ul li {
    font-size: 20px;
}

.docName .divs ul li:hover,
.docName2 .divs ul li:hover {
    text-decoration: underline;
    color: var(--main-color);
    cursor: pointer;
}

#footer {
    width: 100%;
    background-color: var(--main-color-2);
    color: var(--main-color);
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#footer .sharing p {
    color: var(--main-color);
}

#footer .sharing a {
    border-radius: 50px;
    border: 1px solid var(--main-color);
    font-size: 22px;
    padding: 4px;
}

#footer .sharing a i {
    color: var(--main-color);
}

@media screen and (min-width: 1800px) {

    .buss_docs,
    .docs {
        width: 70%;
    }
}

@media (max-width: 1659px) and (min-width: 1400px) {
    .content .choosing .title {
        font-size: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .content .choosing .divs .card {
        display: block;
    }
}

@media (max-width: 1400px) and (min-width: 990px) {
    #welcoming p {
        font-size: 13px;
    }

    #header .nav-item a {
        font-size: 13px;
    }

    #header .search-icon a {
        font-size: 15px;
    }

    .content {
        width: 100%;
    }

    #content_country {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .content .choosing .title {
        font-size: 40px;
    }
}

@media screen and (max-width: 990px) {
    #content_country {
        width: 100% !important;
        margin-left: 0 !important;
    }

    #welcoming {
        width: 100%;
        font-size: 10px;
        background-color: var(--main-color);
        color: var(--white-color);
        text-align: center;
        padding: 10px 15px;
    }

    #main_img {
        background-color: var(--white-color);
        max-width: 100%;
    }

    #main_img img {

        padding: 0;
    }

    #header {
        padding: 20px;
    }

    #description .info {
        text-align: center;
        padding: 0 15px;
    }

    #description .place {
        display: none;
    }

    .content {
        width: 100%;
    }

    .content .data {
        background-color: var(--white-color);
    }

    .content .choosing .title {
        font-size: 40px;
    }

    .content .choosing .divs .card {
        width: 100%;
    }

    .content .choosing .divs .card span h4 {
        padding-top: 10px;
    }

    .content .choosing .divs .card span p {
        font-size: 16px;
        margin-top: 0px;
    }

    hr {
        width: 100%;
    }

    .docName2 .title {
        display: block;
    }

    .docName2 .subTitle {
        padding-left: 0;
    }

    #last_one {
        margin-bottom: 15px;
    }

    #footer {
        display: flex;
        flex-direction: column;
    }
}

/* -------- C/O & C/I -------- */

#ci_co_tit {
    color: var(--main-color);
    padding: 15px 0;
    text-align: center;
}

.dci .pdf {
    margin-bottom: 10px;
}

.texts {
    margin: 15px 10px;
}

.texts p {
    font-size: 17px;
}

.texts ul {
    list-style-type: disc;
}

.texts .img {
    display: flex;
    justify-content: space-between;
}

.texts .img img {
    border: 5px solid #ddd;
}

.texts .img p {
    width: 70%;
}

@media screen and (max-width: 767px) {
    body .container_x .row .co-ci {
        padding: 35px;
    }

    #ci_co_tit {
        font-size: 25px;
        width: 100%;
        /* padding-top: 100px; */
        text-align: center;
    }

    .dci {
        margin-left: 0;
    }

    .dci .pdf img {
        width: 100%;
        padding: 10px;
    }

    .texts h4 {
        text-align: center;
    }

    .texts .img {
        margin-left: 20%;
        display: flex;
        flex-direction: column;
    }

    .texts .img p {
        margin-left: -15%;
        width: 100%;
    }

    .card_bank {
        display: none !important;
    }
}

/* -------- Document Certification Page -------- */
.bus_inv,
.bus_doc {
    /* height: 100vh !important; */
    min-height: calc(100vh - 230px);
}

.bus_inv .countries_selections,
.bus_doc .countries_selections {
    padding-top: 10%;
}

#content_card_view {
    /* width: 97%; */
    margin: auto;
    min-height: calc(100vh - 230px);
    background-color: #f2f2f2;
    /* background-color: var(--white-color); */
}

#content_invoice {
    width: 100%;
    min-height: calc(100vh - 230px);
    /* background-color: var(--white-color); */
    /* max-width: 1550px; */
    padding: 0;

}

#content_invoice .title,
#content_card_view .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_invoice .txt #main_text {
    color: var(--main-color);
    font-weight: bold;
    font-size: var(--paragraph-size);
}

#content_invoice .txt p {
    font-size: 18px;
}

#content_invoice .stemp {
    text-align: center;
    /* padding: 25px 0; */
    font-size: var(--paragraph-size);
}

#content_invoice .stemp>p>span {
    font-weight: bold;
    font-size: var(--header-text-size);
}

#content_invoice .stemp>button {
    background-color: var(--main-color);
    color: var(--wheat-color);
    font-size: 18px;
    padding: 5px 15px;
    border: 2px solid var(--main-color);
    transition: var(--trans);
    width: 50%;
    margin: auto;
}

#content_invoice .stemp>button:hover {
    box-shadow: 2px 3px 4px gainsboro;
    border: 2px solid var(--hover-color);
}

#content_invoice .stemp .img {
    max-width: 100%;
    position: relative;
}

#content_invoice .stemp .img>img {
    width: 5%;
    position: absolute;
    top: -6%;
    left: 19%;
}

#content_invoice .stemp .img .stemp_img {
    /* margin-top: 40px; */
    margin-top: 10px;
    max-width: 100%;
    position: relative;
}

#content_invoice .stemp .img .stemp_img>img {
    width: 25%;
    margin-left: 0%;
    height: 100%;
}

@media screen and (min-width: 1200px) {
    #content_invoice .stemp .img .stemp_img {
        height: 200px;
    }

    #content_invoice .stemp .img .stemp_img>img {
        width: auto;
    }
}

#content_invoice .stemp .img .stemp_img .data .inp {
    background-color: var(--main-color);
    width: 46%;
    transform: rotate(-90deg);
    position: absolute;
    top: 47%;
    right: 2%;
}

#content_invoice .stemp .img .stemp_img .data .inp input {
    width: 20%;
    padding-left: 5px;
}

#content_invoice .stemp .img .stemp_img .data .inp input::placeholder {
    color: #ddd;
    padding-left: 10px;
}

#content_invoice .stemp .img .stemp_img .data .inp button {
    background-color: #a9a9a9;
    color: #a9a9a9;
    padding: 0px 15px;
    border-radius: 5px;
}

#content_invoice .stemp .img .stemp_img .data>p {
    background-color: var(--wheat-color);
    width: 46%;
    transform: rotate(-90deg);
    position: absolute;
    top: 44.5%;
    right: 0%;
    color: var(--main-color);
}

#content_invoice #note {
    padding: 15px;
    font-size: 18px;
    text-align: left;
}

#content_invoice .countries_selections {
    margin-bottom: 35px;
    padding-left: 50px;
}

#content_invoice .docs,
#content_invoice .price {
    /* margin-bottom: 35px; */
    /* padding-left: 50px; */
    margin-top: -1px;
}

.docs>p {
    width: 785px;
    margin: 0;
}

.select-lable {
    display: inline-block;
    margin-top: 8px;
}

select {
    appearance: auto;
}


.docs>p>select {
    position: absolute;
    appearance: auto;
    z-index: 2;
    top: -8px;
    width: 275px;
    display: inline-block;
    font-size: 23px;
    margin: 15px;
}

@media screen and (max-width: 1000px) {
    .docs>p {
        width: auto;
        text-align: center;
    }

    .docs>p>select {
        position: static;
    }
}

select::-webkit-scrollbar-track {
    width: 20px;
    background-color: #119b55;
}

.docs>.bttn button {
    width: 20%;
    min-width: fit-content;
    max-width: 200px;
}

.btn-special {
    background-color: var(--main-color);
    color: #ffffff;
}

.btn-special:hover {
    background-color: #16001c;
    color: #ffffff;
}

#content_invoice .countries_selections h5 {
    color: var(--main-color);
}

#content_invoice .countries_selections .country_card .special_card {
    border-radius: 6px;
}

#country_form {
    width: 23%;
    min-width: 216.5px;
}

#content_invoice .countries_selections .country_card .card,
#content_invoice .countries_selections .country_card .special_card {
    position: relative;
    background-color: var(--main-color);
    color: var(--white-color);
    box-shadow: 2px 3px 4px gainsboro;
    max-width: 100%;
    width: 100%;
    padding: 10px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: var(--trans);
    cursor: pointer;
}

#content_invoice .countries_selections .country_card .card img,
#content_invoice .countries_selections .country_card .special_card img {
    width: 10%;
}

#content_invoice .countries_selections .country_card .card span,
#content_invoice .countries_selections .country_card .special_card span {
    padding-left: 15px;
    font-size: var(--paragraph-size);
}

#content_invoice .countries_selections .country_card .card:hover,
#content_invoice .countries_selections .country_card .special_card:hover {
    background-color: var(--main-color);
}

#content_invoice .countries_selections .country_card .special_card:hover {
    border-color: var(--main-color);
}

.docs {
    width: 50%;
    margin-left: 20%;
    /* display: none; */
}

.bahrain_case,
.iraq_pre_case,
.yemen_pre_case,
.UAE_pre_case,
.iraq_bus_doc,
.yemen_bus_doc {
    display: none;
    width: 97%;
    margin-left: 10%;
    background-color: #fbfbfb;
    padding: 10px 25px;
    font-size: var(--paragraph-size);
    position: relative;
}

.bahrain_case::before,
.iraq_pre_case::before,
.yemen_pre_case::before,
.UAE_pre_case::before,
.iraq_bus_doc::before,
.yemen_bus_doc::before {
    content: '';
    position: absolute;
    background-color: var(--main-color);
    width: 5px;
    height: 100%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.iraq_bus_doc select {
    margin: 20px 0;
}

.buss_docs,
.docs {
    width: 97%;
    margin: 0 auto;
    background-color: #fbfbfb;
    padding: 10px 25px;
    font-size: var(--paragraph-size);
    position: relative;
}

.buss_docs::before,
.docs::before {
    content: '';
    position: absolute;
    background-color: var(--main-color);
    width: 5px;
    height: 100%;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.buss_docs p {
    text-align: left;
}

.buss_docs .inp1,
.buss_docs .inp2,
.buss_docs .inp3,
.buss_docs .inp4,
.bahrain_case .inp1,
.bahrain_case .inp2,
.bahrain_case .inp3,
.bahrain_case .inp4,
.iraq_pre_case .inp1,
.iraq_pre_case .inp2,
.yemen_pre_case .inp1,
.yemen_pre_case .inp2,
.UAE_pre_case .inp1,
.UAE_pre_case .inp2,
.yemen_bus_doc .inp_doc {
    padding: 15px 0;
    display: flex;
}

.buss_docs .inp1 div,
.buss_docs .inp2 div,
.buss_docs .inp3 div,
.buss_docs .inp4 div,
.bahrain_case .inp1 div,
.bahrain_case .inp2 div,
.bahrain_case .inp3 div,
.bahrain_case .inp4 div,
.iraq_pre_case .inp1 div,
.iraq_pre_case .inp2,
.yemen_pre_case .inp1 div,
.yemen_pre_case .inp2 div,
.UAE_pre_case .inp1 div,
.UAE_pre_case .inp2 div,
.yemen_bus_doc .inp_doc div {
    display: block;
    background-color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 25px;
}

.buss_docs .check-input,
.bahrain_case .check-input,
.iraq_pre_case .check-input,
.yemen_pre_case .check-input,
.UAE_case .check-input {
    display: flex;
}

.buss_docs .inp1 input[type='radio'],
.buss_docs .inp2 input[type='radio'],
.buss_docs .inp3 input[type='radio'],
.buss_docs .inp4 input[type='radio'],
.bahrain_case .inp1 input[type='radio'],
.bahrain_case .inp2 input[type='radio'],
.bahrain_case .inp3 input[type='radio'],
.bahrain_case .inp4 input[type='radio'],
.yemen_case .inp_fee_14 input[type='radio'],
.yemen_case .inp_fee_7 input[type='radio'],
.UAE_case .inp1 input[type='radio'],
.UAE_case .inp2 input[type='radio'],
.yemen_bus_doc .inp_doc input[type='radio'] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #ddd;
    width: 25px;
    height: 25px;
    border-radius: 0;
    cursor: pointer;
    position: relative;
}

.buss_docs .inp1 input[type='radio']:checked:after,
.buss_docs .inp2 input[type='radio']:checked:after,
.buss_docs .inp3 input[type='radio']:checked:after,
.buss_docs .inp4 input[type='radio']:checked:after,
.bahrain_case .inp1 input[type='radio']:checked:after,
.bahrain_case .inp2 input[type='radio']:checked:after,
.bahrain_case .inp3 input[type='radio']:checked:after,
.bahrain_case .inp4 input[type='radio']:checked:after,
.yemen_case .inp_fee_14 input[type='radio']:checked:after,
.yemen_case .inp_fee_7 input[type='radio']:checked:after,
.UAE_case .inp1 input[type='radio']:checked:after,
.UAE_case .inp2 input[type='radio']:checked:after,
.yemen_bus_doc .inp_doc input[type='radio']:checked:after,
#content_shipping .ships .ship_q input[type='radio']:checked:after {
    content: '\2713';
    position: absolute;
    color: var(--main-color);
    font-weight: bold;
    top: 0%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    font-size: 33px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.buss_docs .inp1 input[type='radio']:checked,
.buss_docs .inp2 input[type='radio']:checked,
.buss_docs .inp3 input[type='radio']:checked,
.buss_docs .inp4 input[type='radio']:checked,
.bahrain_case .inp1 input[type='radio']:checked,
.bahrain_case .inp2 input[type='radio']:checked,
.bahrain_case .inp3 input[type='radio']:checked,
.bahrain_case .inp4 input[type='radio']:checked,
.yemen_case .inp_fee_14 input[type='radio']:checked,
.yemen_case .inp_fee_7 input[type='radio']:checked,
.UAE_case .inp1 input[type='radio']:checked,
.UAE_case .inp2 input[type='radio']:checked,
.yemen_bus_doc .inp_doc input[type='radio']:checked,
#content_shipping .ships .ship_q input[type='radio']:checked {
    border: 3px solid #ccc;
}

.buss_docs .inp1 label,
.buss_docs .inp2 label,
.buss_docs .inp3 label,
.buss_docs .inp4 label,
.bahrain_case .inp1 label,
.bahrain_case .inp2 label,
.bahrain_case .inp3 label,
.bahrain_case .inp4 label,
.iraq_pre_case .inp1 label,
.iraq_pre_case .inp2 label,
.iraq_pre_case .inp3 label,
.iraq_pre_case .inp4 label,
.yemen_pre_case .inp1 label,
.yemen_pre_case .inp2 label,
.UAE_pre_case .inp1 label,
.UAE_pre_case .inp2 label,
.yemen_bus_doc .inp_doc label {
    /* padding-left: 35px; */
    margin-right: 3%;
    width: 250px;
    padding-top: 18px;
}

.buss_docs .check-input label,
.bahrain_case .check-input label,
.iraq_case .check-input label,
.yemen_case .check-input label,
.UAE_case .check-input label {
    padding-left: 5px;
    padding-top: 0;
    width: fit-content;
    position: relative;
    bottom: 5px;
}

.buss_docs .num,
.bahrain_case .num,
.iraq_pre_case .num,
.yemen_pre_case .num,
.UAE_pre_case .num {
    /* border: 1px solid #ddd !important; */
    width: 100px;
    /* padding-left: 10px !important; */
    text-align: center;
    margin: 0px 2px;
    border-radius: 10px;
    border: none;
    font-size: 23px;
}

.buss_docs .sub,
.bahrain_case .sub,
.iraq_pre_case .sub,
.yemen_pre_case .sub,
.UAE_pre_case .sub {
    background: var(--main-color);
    color: #fff;
    border: none;
    font-size: 20px;
    border-radius: 50%;
    padding: 4px 12px;
    margin-top: 1px;
}

.buss_docs .add,
.bahrain_case .add,
.iraq_pre_case .add,
.yemen_pre_case .add,
.UAE_pre_case .add {
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 4px 11px;
    font-size: 20px;
    border-radius: 50%;
}

.inv_num {
    display: none;
    width: 97%;
    margin-left: 10%;
    padding: 10px 25px;
}

.inv_num table thead {
    background-color: var(--main-color);
    color: var(--white-color);
}

.price {
    width: 100%;
    margin: auto;
    padding: 10px 25px;
}

.price h3 span {
    font-size: 32px;
    color: #c10019;
}

/* new table */
.new-table {
    align-items: end;
}

.new-table>div>p {
    font-size: 19px;
    margin-left: 25px;
}

.new-table .total-price p .check-icon {
    color: var(--main-color);
    font-size: 22px;
}

.new-table .total-price p .have-num {
    font-size: 25px;
    color: #c10019;
}


.price table thead, .price table tfoot {

    color: var(--white-color) !important;
}

.price .price-table thead, .price .price-table tfoot {
    background-color: var(--main-color);
    color: var(--white-color);

}

.price .time-table thead, .price .time-table tfoot {
    background-color: #525050;
}

.price .total {
    width: 25%;
    text-align: center;
    font-weight: bold;
    /* margin-left: 35%; */
    background-color: #ffd4d4;
    padding: 5px 15px 0.5px 5px;
}

.price .total span {
    color: #c10019;
}

form .col-sm-12 .mb-4 div {
    padding-left: 0;
}

form .col-sm-12 .mb-4 div label {
    margin-left: 10px;
}

.price .bttn form {
    width: 13%;
    min-width: fit-content;
}

.price .bttn form button {
    width: 100%;
}

.empty {
    display: none;
    margin-left: 20%;
}

.result {
    width: fit-content;
    margin: auto;
    padding: 10px 25px;
}

.result table thead, .price table thead {
    background-color: #fff;
    color: #000;
}
/* .result table tbody tr td:first-child[rowspan] {
    background-color: #f2f2f2;
} */
.result table tbody tr:nth-child(even){
    background-color: #c6c6c6;
}

.result table thead tr th, .result table tbody tr td, .result table tbody tr th, .result table tfoot tr th {
    padding-left: 25px;
}

.result table tbody tr #delete {
    cursor: pointer;
    color: #c10019;
    font-size: 28px
}

.result table tbody tr td form button i {
    font-size: 28px;
}

.result table tfoot {
    background-color: #fff;
    color: #000;
}

.result table tfoot tr th {
    width: 50%;
    text-align: left;
}

.result .total {
    width: 25%;
    text-align: center;
    font-weight: bold;
    margin-left: 35%;
    background-color: #ffd4d4;
    padding: 5px 15px 0.5px 5px;
}

.result .total span {
    color: #c10019;
}

.result .quest {
    display: flex;
    /* justify-content: space-between;
    background-color: #f2f2f2; */
    align-items: center;
    padding: 10px 25px;
    margin: 20px 0;
    font-size: var(--paragraph-size);
    position: relative;
}

.choose_btn {
    background-color: var(--main-color) !important;
    width: auto;
    padding: 10px;
    margin-left: 15px;
}

.proceed_btn {
    border: 3px solid var(--main-color);
    margin-left: 15px;
    box-shadow: 1px 1px 10px;
    background-color: #fff !important;
    width: auto;
    padding: 10px;
}

.Y_N>* {
    margin-top: 10px;
}

.result .quest label {
    cursor: pointer;
}

.result .quest .Y_N input {
    margin: 0 10px;
}

.result #more_docs2 {
    display: none;
}

.result #more_buss {
    margin-bottom: 15px;
    margin-left: 0%;
    width: 100%;
}

#desc_foot {
    background-color: #494370;
    padding: 10px 0;
    color: var(--white-color);
}

#desc_foot h3 {
    text-align: center;
    color: var(--wheat-color);
    padding-top: 15px;
}

#desc_foot .postions {
    display: flex;
    justify-content: space-evenly;
}
#desc_foot .postions .first{
    display: none;
}
#desc_foot .p-footer {
    margin-top: 15px;
}

#desc_foot .postions .first,
#desc_foot .postions .second {
    text-align: center;
}

#desc_foot .postions .first>p,
#desc_foot .postions .second>p {
    color: var(--wheat-color);
}

#desc_foot .postions .first>a,
#desc_foot .postions .second>a {
    color: var(--white-color);
}

#desc_foot .postions .first>a:hover,
#desc_foot .postions .second>a:hover {
    text-decoration: underline;
}

/* cart responsive */
@media (max-width: 1671px) and (min-width: 1573px) {
    #content_card_view .result {
        width: 80%;
        margin: auto;
    }
}

@media (min-width: 1486px) and (max-width: 1573px) {
    #content_card_view .result {
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 1486px) and (min-width: 1400px) {
    #content_card_view .result {
        width: 95%;
        margin: auto;
    }
}

@media (max-width: 1400px) and (min-width: 1281px) {
    #content_card_view .result {
        width: 80%;
        margin: auto;
    }
}

@media (max-width: 1281px) and (min-width: 1139px) {
    #content_card_view .result {
        width: 90%;
        margin: auto;
    }
}

@media (max-width: 1138px) and (min-width: 1024px) {
    #content_card_view .result {
        width: 100%;
        margin: auto;
    }
}

@media screen and (max-width: 1024px) {
    .Y_N {
        width: 345px;
    }
}

@media screen and (max-width: 668px) {
    .result .quest {
        display: block;
    }

    .result .quest>label {
        width: 100%;
    }
}

@media (max-width: 1400px) and (min-width: 767px) {

    #content_card_view,
    #content_invoice {
        width: 100%;
    }

    #content_invoice {
        padding: 25px;
    }
}

@media screen and (max-width:767px) {
    #content_invoice .countries_selections {
        padding-left: 0;
    }

    #content_invoice .countries_selections .country_card {
        margin-left: 15%;
    }

    #country_form {
        width: 35%;
    }

    #content_invoice .countries_selections .country_card .card,
    #content_invoice .countries_selections .country_card .special_card {
        width: 100%;
    }

    #content_invoice {
        width: 100%;
        padding: 15px 25px;
        margin-left: 0;
        /* height: 215vh; */
        min-height: calc(100vh - 230px);
    }

    #content_invoice .stemp .img {
        display: none;
    }

    #content_invoice .countries_selections h5 {
        text-align: center;
        font-weight: bold;
        padding-bottom: 15px;
    }

    #content_invoice .docs {
        width: 100%;
        margin-left: 0;
    }

    #content_invoice .price {
        width: 100%;
        margin-left: 0;
        padding: 0;
    }

    #content_invoice .price .total {
        width: 50%;
    }

    /* ------ Invoice origin page ------- */
    .bus_inv,
    .bus_doc {
        min-height: calc(100vh - 230px);
    }

    .bahrain_case,
    .UAE_pre_case,
    .UAE_case,
    .yemen_pre_case,
    .yemen_case,
    .iraq_pre_case,
    .iraq_case {
        width: 100%;
        margin-left: 0;
    }

    .inv_num {
        width: 100%;
        margin-left: 0;
    }

    .buss_docs {
        width: 100%;
        margin-left: 0;
    }

    /* ------ Cart Preview ----- */
    #content_card_view {
        width: 100%;
        /* height: 50.5vh; */
        min-height: calc(100vh - 230px);
        margin-left: 0;
    }

    #content_card_view .result {
        width: 100%;
        margin-left: 0;
    }

    #content_card_view .result table {
        margin-left: 0%;
    }

    #content_card_view .result table thead,
    #content_card_view .result table tbody {
        font-size: 12px;
    }

    #content_card_view .result .total {
        width: 50%;
        margin-left: 25%;
    }

    #content_card_view .result .quest {
        width: 100%;
    }

    #content_card_view .result .quest label {
        font-size: 16px;
        align-items: center;
    }

    /* order form */
    .cellphone-data {
        margin-top: 10px;
    }
}

@media screen and (max-width: 605px) {
    .docs>select {
        width: 100%;
    }

    .buss_docs {
        width: 100%;
        margin-left: 0;
    }

    .buss_docs .inp1,
    .buss_docs .inp2,
    .buss_docs .inp3,
    .buss_docs .inp4 {
        display: block;
        text-align: left;
    }

    .buss_docs .check-input, .buss_docs .check-input, .buss_docs .check-input, .buss_docs .check-input {
        display: flex;
    }

    .buss_docs .inp1 label,
    .buss_docs .inp2 label,
    .buss_docs .inp3 label,
    .buss_docs .inp4 label {
        padding-left: 0;
        font-size: 18px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .buss_docs .inp1 div,
    .buss_docs .inp2 div,
    .buss_docs .inp3 div,
    .buss_docs .inp4 div,
    .bahrain_case .inp1 div,
    .bahrain_case .inp2 div,
    .bahrain_case .inp3 div,
    .bahrain_case .inp4 div,
    .iraq_pre_case .inp1 div,
    .iraq_pre_case .inp2,
    .yemen_pre_case .inp1 div,
    .yemen_pre_case .inp2 div,
    .UAE_pre_case .inp1 div,
    .UAE_pre_case .inp2 div,
    .yemen_bus_doc .inp_doc div {
        display: block;
        width: 300px;
        margin: auto;
    }
}

.counter {
    max-width: 220px;
}

/* -------- Payment Page -------- */

#content_payment {
    width: 100%;
    min-height: calc(100vh - 365px);
    background-color: var(--white-color);
    max-width: 1600px;
}

#content_payment .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_payment .pay .q,
#content_payment .pay .q {
    padding: 0 15px;
}

#content_credit_card form .row {
    justify-content: space-around;
}

.card_contaniner .btns_navigation .btn-success {
    width: 25%;
    float: right;
    min-width: 220px
}

.card_contaniner .btns_navigation .btn-back {
    width: 25%;
    min-width: 220px
}

.btn-back {
    border-radius: 5px;
    margin-top: 10px;
    padding: 6px;
}

.btn-back>a {
    color: #ffffff;
    width: 100%;
    display: block;
}

.pay .row div {
    padding-left: 0;
}

.pay {
    width: 98%;
    margin: auto;
    justify-content: space-around;
}

.pay .row div label {
    padding-left: 10px;
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_payment {
        width: 100%;
        padding: 25px;
    }
}

@media screen and (max-width: 767px) {
    #content_payment {
        width: 100%;
        margin-left: 0;
        padding: 25px;
    }

    #content_payment .bttn {
        padding: 0 15px;
    }

    .card_contaniner .btns_navigation .btn-success {
        float: none;
        width: 100%
    }

    .card_contaniner .btns_navigation .btn-back {
        width: 100%;
    }

    .cvv {
        padding: 0;
    }
}

/* -------- Shipping Page -------- */
#content_shipping {
    width: 97%;
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    background-color: var(--white-color);
}

#content_shipping .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_shipping .ships {
    margin-bottom: 15px;
}

#content_shipping .ships .ship_q label .shipping-span {
    color: blue;
}

#content_shipping .ships .ship_q {
    padding: 15px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
}

#content_shipping .ships .ship_q input[type='radio'] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #ddd;
    width: 25px;
    height: 25px;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    /* top: -10px; */
}

#content_shipping .ships .ship_q label {
    padding-left: 10px;
    width: 95%;
    cursor: pointer;
}

#content_shipping .ship_imgs {
    margin: 25px 0;
}

.container_x .row #content_shipping .ships .ship_q .custom-pos {
    top: 5px;
}

#content_shipping .ship_imgs img {
    box-shadow: 2px 3px 4px gainsboro;
}

#content_shipping #back_res {
    margin-right: 15px;
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_shipping {
        width: 100%;
    }

    #ship_two,
    #ship_three {
        width: 32px;
    }
}

@media screen and (max-width: 767px) {
    #content_shipping {
        width: 100%;
        min-height: calc(100vh - 230px);
        margin-left: 0;
    }

    #content_shipping .ships .ship_q label {
        font-size: 16px;
        padding-left: 20px;
    }
}

/* -------- Credit Card Page -------- */
#content_credit_card {
    width: 97%;
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    background-color: var(--white-color);
}

#content_credit_card .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

.card_contaniner .inp_credit_card .chx {
    display: flex;
    justify-content: space-between;
}

.card_contaniner .inp_credit_card .chx .cc input[type='radio'],
.card_contaniner .inp_credit_card .chx .bill input[type='radio'],
.card_contaniner .inp_credit_card .chx .ck input[type='radio'] {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #ddd;
    width: 25px;
    height: 25px;
    border-radius: 0;
    cursor: pointer;
    position: relative;
}

.card_contaniner .inp_credit_card .chx .cc input[type='radio']:checked:after,
.card_contaniner .inp_credit_card .chx .bill input[type='radio']:checked:after,
.card_contaniner .inp_credit_card .chx .ck input[type='radio']:checked:after {
    content: "";
    position: absolute;
    font-size: var(--paragraph-size);
    color: var(--main-color);
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 2px solid var(--hover-color);
}

.card_contaniner .inp_credit_card .chx .cc input[type='radio']:checked::before,
.card_contaniner .inp_credit_card .chx .bill input[type='radio']:checked::before,
.card_contaniner .inp_credit_card .chx .ck input[type='radio']:checked::before {
    content: '\2714';
    position: absolute;
    top: -4px;
    left: 3px;
    font-size: var(--paragraph-size);
    color: var(--main-color);
    font-weight: bold;
}

.card_contaniner .inp_credit_card .chx .cc,
.card_contaniner .inp_credit_card .chx .bill,
.card_contaniner .inp_credit_card .chx .ck {
    display: flex;
    align-items: center;
    font-size: var(--paragraph-size);
}

.card_contaniner .inp_credit_card .chx .cc label,
.card_contaniner .inp_credit_card .chx .bill label,
.card_contaniner .inp_credit_card .chx .ck label {
    padding-left: 15px;
    cursor: pointer;
}

.card_contaniner .inp_credit_card .ex_date .select_card {
    display: flex;
}

.card_contaniner .inp_credit_card .ex_date .card_imgs {
    margin: 15px 0;
    float: right;
}
.ex_date select {
    appearance: auto;
}

.card_contaniner .card_bank {
    background-color: #4c5150;
    width: 441px;
    height: fit-content;
    min-height: 300px;
    border-radius: 1rem;
    margin-top: 70px;
}

.card_contaniner .card_bank .blank_line {
    background-color: #1c1c1c;
    width: 100%;
    height: 41px;
    margin-top: 17px;
}

.card_contaniner .card_bank .chip {
    max-width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
}

.card_contaniner .card_bank .chip img {
    width: 15%;
}

.card_contaniner .card_bank .chip span {
    padding-left: 15px;
    font-size: var(--header-text-size);
    color: var(--white-color);
}

.inputs_card {
    position: relative;
}

.card_contaniner .card_bank .inputs_card #input_name,
.card_contaniner .card_bank .inputs_card #input_number {
    font-size: var(--text-size);
    color: var(--wheat-color);
    padding-left: 15px;
    border-bottom: 1px dotted var(--white-color);
}

#input_cvv {
    background-color: #ffffff;
    width: fit-content;
    padding: 5px;
    position: absolute;
    right: 10px;
    display: none;
}

.card_contaniner .card_bank .inputs_card .inputs_date {
    font-size: var(--text-size);
    color: var(--wheat-color);
    padding-left: 15px;
} 
.card_contaniner .card_bank .inputs_card .inputs_date #sep {
    color: var(--white-color);
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_credit_card {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #content_credit_card {
        width: 100%;
        min-height: calc(100vh - 230px);
    }
    .card_contaniner .inp_credit_card .chx .cc,
    .card_contaniner .inp_credit_card .chx .bill,
    .card_contaniner .inp_credit_card .chx .ck {
        font-size: 18px;
        margin: 10px;
    }
}

/* -------- Country Page -------- */
#content_country {
    width: 70%;
    /* height: 270vh; */
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    margin-left: 15%;
    background-color: var(--white-color);
}

#content_country .content .divs .card {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    background-color: #dadada;
    color: var(--main-color);
    padding: 5px 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--trans);
    border: 3px solid #dadada;
    position: relative;
}

#content_country .content .divs .card:hover {
    border: 3px solid var(--main-color-2);
}

#content_country .content .divs .card .num {
    background: var(--main-color);
    height: 50px;
    width: 50px;
    position: absolute;
    top: 10px;
    padding: 0;
    text-align: center;
    color: var(--white-color);
    font-size: 35px;
    font-weight: bold;
    vertical-align: middle;
    border-radius: 50%;
    box-shadow: 2px 3px 4px gainsboro;
    transition: var(--trans);
    margin-top: 1.5%;
}

#content_country .content .divs .card .num:hover {
    background: var(--white-color);
    color: var(--main-color);
}

#content_country .content .divs .card span h4 {
    color: var(--main-color);
    font-weight: bold;
    margin-top: -4px;
    transition: var(--trans);
}

#content_country .content .divs .card span {
    margin-top: 1.5%;
    padding-left: 60px;
}

#content_country .content .divs .card:hover span h4 {
    color: var(--main-color);
}

#content_country .content .divs .card span p {
    font-size: 20px;
    margin-top: -12px;
}

#content_country .counrty_info .embassy {
    line-height: 2;
}

#content_country .counrty_info .embassy .flag {
    display: flex;
    align-items: center;
}

#content_country .counrty_info .embassy .flag .flag_txt {
    padding-left: 25px;
    color: var(--main-color);
}

#content_country .counrty_info .embassy .receive h5 {
    text-decoration: underline;
    color: #c10019;
}

#content_country .counrty_info .embassy .lega_bus h5 {
    color: var(--main-color);
}

#content_country .counrty_info .embassy .lega_bus em {
    color: rgb(80, 80, 80);
}

#content_country .counrty_info .embassy table thead {
    background-color: var(--main-color);
    color: var(--white-color);
}

#content_country .counrty_info .embassy table tbody tr th span {
    color: #c10019;
}

#content_country .counrty_info .embassy button {
    margin-left: 25%;
}

#content_country .counrty_info .embassy_link {

    background-color: #fafafa;
    border-left: 5px solid #e2dab9;
    padding-left: 15px;
    padding-right: 15px;
}

#content_country .counrty_info .embassy_link h5 {
    color: var(--main-color);
}

#content_country .counrty_info .embassy_link ul {
    list-style-type: square;
}

#content_country .country_commerce h5 {
    color: #c10019;
    text-decoration: underline;
}

#content_country .country_commerce ul {
    list-style-type: square;
}

#content_country .country_commerce table {
    /* margin-left: 10%; */
    margin: 5% 0 2% 10%;
}

#content_country .country_commerce table thead {
    background-color: var(--main-color);
    color: var(--white-color);
}

#content_country .country_commerce table tbody tr th span {
    color: #c10019;
}

#content_country .country_commerce button {
    margin-left: 25%;
    margin-bottom: 5%;
}

#content_country .country_payment .title {
    color: var(--main-color);
}

#content_country .country_payment ul {
    list-style-type: square;
    width: 60%;
}

#content_country .country_payment ul li span {
    color: #c10019;
}

#content_country .content .divs {
    margin: 5% 0;
}

#content_country .content .divs .card {
    width: 100%;
}
.country {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.content .data .country-page {
    width: 100% !important;
}

@media screen and (max-width: 767px) {
    #content_country {
        width: 100%;
        /* height: 480vh; */
        min-height: calc(100vh - 230px);
        margin-left: -5%;
    }

    #content_country .counrty_info .embassy_link {
        width: 100%;
        margin: 15px 0;
        padding: 15px;
    }

    #content_country .counrty_info .embassy .flag {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #content_country .counrty_info .embassy .flag .flag_txt {
        padding-top: 10px;
        padding-left: 0px;
        width: 70%;
        color: var(--main-color);
    }

    #content_country .counrty_info .embassy .receive,
    #content_country .counrty_info .embassy .lega_bus {
        font-size: 16px;
        width: 70%;
    }

    #content_country .counrty_info .embassy table {
        padding: 15px;
    }

    #content_country .counrty_info .embassy table thead,
    #content_country .counrty_info .embassy table tbody {
        font-size: 12px;
    }

    #content_country .counrty_info .embassy_link {
        width: 100%;
        margin-left: 0;
    }

    #content_country .counrty_info .country_commerce {
        font-size: 16px;
    }

    #content_country .country_payment ul {
        width: 100%;
    }

    #content_country .content .divs {
        margin: 0;
    }
    #content_country .content .divs .card {
        width: 100%;
    }
}

/* -------- Trade Page -------- */
#content_trade {
    width: 70%;
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    background-color: var(--white-color);
}

#content_trade .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_trade>img {
    margin: 5% 0 5% 25%;
}

#content_trade table thead {
    background-color: var(--main-color);
    color: var(--white-color);
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_trade {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #content_trade {
        width: 100%;
        /* height: 200vh; */
        min-height: calc(100vh - 230px);
        margin-left: 0;
    }

    #content_trade .title {
        padding: 65px 0 0 0;
    }

    #content_trade>img {
        margin: 5% 0 5% 0;
        width: 100%;
    }
}

/* -------- About Page -------- */
#content_about {
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    background-color: var(--white-color);
}

#content_about .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_about .about_txt h5 {
    color: var(--main-color);
}

#content_about .list ul li {
    list-style: square;
    padding: 10px;
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_about {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #content_about {
        width: 100%;
        /* height: 340vh; */
        min-height: calc(100vh - 230px);
        margin-left: 0;
    }

    #content_about .title {
        padding: 65px 0 0 0;
    }

    #content_about .about_txt {
        font-size: 14px;
    }

    #content_about .about_imgs .valid p {
        margin-left: -0
    }
}

/* -------- Pay Invoice Page -------- */
#content_pay {
    width: 70%;
    min-height: calc(100vh - 500px);
    padding: 10px 50px;
    background-color: var(--white-color);
}

#content_pay .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_pay .pay_inv_form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content_pay .pay_inv_form .pay_inv_inp {
    padding: 15px;
}

#content_pay .pay_inv_form .pay_inv_inp label {
    font-size: var(--paragraph-size);
    color: var(--main-color);
}

#content_pay .pay_inv_form .pay_inv_inp input {
    padding: 5px 55px;
    margin-left: 10px;
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_pay {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #content_pay {
        width: 100%;
        margin-left: 0;
    }
    #content_pay .title {
        padding: 65px 0 0 0;
    }
    #content_pay .pay_inv_form .pay_inv_inp {
        padding: 15px;
        margin-left: 0;
    }
}

/* -------- Pay Invoice Data Page -------- */
#content_invoiceData {
    width: 70%;
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    background-color: var(--white-color);
    font-size: var(--paragraph-size);
}

#content_invoiceData .title {
    text-align: center;
    font-size: 35px;
    padding: 15px 0;
    color: var(--main-color);
}

#content_invoiceData table .main {
    background-color: var(--main-color);
    color: var(--white-color);
}

#content_invoiceData table .pad {
    background-color: #c10019;
    color: var(--white-color);
}

#content_invoiceData table #scale {
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
}

#content_invoiceData .pay_detail {
    margin-top: 35px;
}

#content_invoiceData .pay_detail table tbody tr td input[type='checkbox'] {
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid #ddd;
    width: 25px;
    height: 25px;
    border-radius: 0;
    cursor: pointer;
    position: relative;
}

#content_invoiceData .pay_detail table tbody tr td input[type='checkbox']:checked:after {
    content: '\2713';
    position: absolute;
    font-size: var(--paragraph-size);
    color: var(--main-color);
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
}

#content_invoiceData .card_invDate {
    background-color: #ededed;
    border-radius: 1.5rem;
    padding: 15px;
}

#content_invoiceData .card_invDate table {
    height: fit-content;
    text-align: center;
}

#content_invoiceData .card_invDate table thead {
    background-color: var(--main-color);
    color: var(--white-color);
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_invoiceData {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #content_invoiceData {
        width: 100%;
        min-height: calc(100vh - 230px);
        margin-left: 0;
    }

    #content_invoiceData>table thead,
    #content_invoiceData>table tbody,
    #content_invoiceData .pay_detail table thead,
    #content_invoiceData .pay_detail table tbody {
        font-size: 12px;
    }
}

/* -------- contact Page -------- */
#content_contact {
    width: 97%;
    min-height: calc(100vh - 400px);
    padding: 10px 50px;
    background-color: var(--white-color);
}

#content_contact .map h4 {
    color: var(--main-color);
    font-size: var(--header-text-size);
    padding: 25px 0;
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_contact {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    #content_contact {
        width: 100%;
    }
}

/* -------- Printing the billing Page -------- */
.no-print .btn-special {
    font-size: 20px;
    min-width: 90px;
}
#content_print {
    width: 70%;
    min-height: calc(100vh - 230px);
    padding: 10px 50px;
    background-color: #fff;
    border: 5px solid #333336;
}

#content_print .header {
    display: flex;
    justify-content: space-around;
    padding-top: 25px;
    align-items: center;
    /* margin-left: 10%; */
}
#content_print .header .logo,
#content_print .header .qr {
    width: 120px;
    height: 100px;
    display: inline-block;
    /* margin: auto; */
    position: relative;
    top: -70px;
}

#content_print .header .logo-print, #content_print .header .qr-print {
    top: 0;
    width: 100px;
    height: 100px
}

#content_print .header .title {
    /* margin: 0 20px; */
    width: 500px;
    display: inline-block;

}

#content_print .header .qr-print {
    width: 165px;
}

#content_print .body {
    clear: both;
}

#content_print .body .title {
    width: 100%;
    text-align: center;
}
#content_print .body .data {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#content_print .body .data .user {
    display: inline-block;
    font-weight: 500;
    width: 58%;
}

#content_print .body .data .info {
    display: inline-block;
    width: 40%;
}

.for-print table thead {
    background-color: var(--main-color);
    color: #fff;
}

#content_print .body .data .info p span {
    color: #c10019;
}

#content_print .footer {
    padding-top: 35px;
}

#content_print .footer button {
    float: right;
}

/* pdf */
.logo-pdf {
    width: 100px;
    height: 100px;
    margin: auto;
}
.qr-pdf {
    width: 100px;
    height: 100px;
    margin: auto;
}

.title-pdf {
    width: 500px;
    margin: auto;
}

.table-pdf thead {
    background-color: #c3ab5d;
    color: #fff;
}

.table-pdf tbody {
    text-align: left;
}

@media (max-width: 1400px) and (min-width: 767px) {
    #content_print {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    #content_print {
        width: 100%;
        min-height: calc(100vh - 230px);
        margin-left: 0;
        padding: 50px;
    }
    #content_print .header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #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,
    #print,
    .no-print {
        display: none;
    }
    body {
        background-image: none;
    }

    #content_print {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10000;
        width: 100%;
        /* height: 100vh; */
    }
    .for-print {
        break-inside: avoid;
    }
    .for-print table {
        break-inside: avoid;
    }
    .for-print>div {
        break-inside: avoid;
    }
}

/* empassy page */
.page-title h1 {
    font-size: 1.5rem;
    padding: 20px;
    margin: 15px 0;
    background-color: #f8f0d7;
    color: var(--main-color);
    border-radius: 10px;
    text-align: center;
    border: 10px double var(--main-color);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.country-box {
    margin: 15px;
    padding: 5px 20px;
}

.country-box h5 {
    background-color: #eee;
    padding: 15px;
    text-align: center;
    color: #000;
    border: 1px solid var(--main-color);
}

/* additional style Nasser */
.steps,
.step-child,
#submit_service {
    display: none;
}

.card_bank {
    position: relative;
}

.abs-div {
    position: absolute;
    bottom: 13px;
    right: 13px;
    width: auto;
    height: 31px;
}

.abs-div img {
    width: auto;
    height: 100%;
}

.visa,
.master,
.amex {
    display: none;
}

/* additional style Ahmed */
.content .choosing .divs .card .home-price {
    padding-left: 0;
    font-weight: bold;
    color: var(--main-color-1);
    margin-left: 20px;
    font-size: 23px;
    margin-top: -8px;
}
/* .content .data {
    justify-content: space-between;
} */

.content .data>.choosing {
    width: 60%;
    max-width: fit-content;
    margin-top: 20px;
}

#description>.info {
    width: 73%;
    margin: 0 11%;
}
.navbar-nav li {
    padding: 0 5px;
}

.img-logo {
    height: 111.5px;
    margin: auto;
    text-align: center;
    width: 100%;
    position: relative;
}
.img-logo .text-title{
    position: absolute;
    z-index: 9999999;
    font-style: italic;
    font-weight: 600;
    background-color: #fff;
    height: 100%;
    font-size: 28px;
    font-family: sans-serif;
    padding-top: 22px;
    width: 47%;
    text-align: right;
    color: var(--main-color);
}
.img-logo .text-title span{
    font-weight: 600;
    font-family: initial;
}
#main-img .img-logo img {
    height: 100%;
}

.main-logo img {
    display: block;
    width: 100%;
    margin: auto;
}

#footer .sharing p {
    display: initial;
}
.home-countries-container{
    /* width: 35%; */
    /* display: none; */
    margin-top: 20px;
    width: 100%;
    max-width: 510px;
}
.home-countries {
    line-height: 1.9;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;

    /* margin-top: 40px; */
    background-color: var(--main-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.home-countries>a {
    color: var(--main-color);
    background: var(--light-color);
    margin: 5px;
    padding: 2px 9px;
    border: 3px solid;
    box-shadow: 6px 5px 10px rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    width: 130px;
    margin: 10px;
    transition: 1s ease-in-out;
}

.home-countries>a:hover {
    border-color: var(--main-color-2);
    color: #ffffff;
    background-color: var(--main-color);
    font-weight: 600;
    box-shadow: 6px 5px 15px rgba(195, 171, 93, 0.5);
}

#main_img>.row {
    width: 125%;
    overflow: hidden;
    padding: 10px 0px;
}

#content_invoice>.row>div>.txt>* {
    padding-left: 25px;
}

/* single-country */
.single-country .row {
    justify-content: center;
    width: 79%;
    margin: auto;
    padding: 0;
}

.single-country .row .country-info {
    background-color: #ffffff;
}
.single-country .row .country-info .content {
    width: 100%;
}
.single-country .row .country-info .content .data .choosing {
    width: 100%;
}
.single-country .row .country-info .content .data .choosing .flag {
    width: 100%;
    margin-bottom: 15px;
}
@media screen and (max-width: 1530px) {
    .content .data>.choosing {
        width: 60%;
    }
    #description>.info {
        width: 90%;
    }
    .images.shipping-images.position-absolute:first-child{
        right: 100% !important;
    }
}

@media screen and (max-width: 1100px) {
    .img-chart {
        width: 60%;
    }
    .content .data>.choosing {
        width: 80%;
        margin: auto;
    }
    .home-countries {
        margin: auto;
        width: 80%;
    }
    #content_invoice .countries_selections .country_card .card, #content_invoice .countries_selections .country_card .special_card {
       padding: 10px 10px;
    }
    #content_invoice .countries_selections .country_card .card span, #content_invoice .countries_selections .country_card .special_card span {
        padding-left: 5px;
    }
}

@media screen and (max-width: 867px) {
    .country_card {
        justify-content: space-around;
    }

    .img-logo {
        height: fit-content;
    }

    .img-logo img {
        width: 100%;
    }

    #description .img {
        display: none;
    }
}

@media screen and (max-width: 770px) {
    .home-price {
        position: static;
    }
    .content {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media screen and (max-width: 746px) {
    #content_invoice>.hello>div>form>div>.invoice-step>.doc-invoice>div {
        flex-direction: column;
    }
}
@media screen and (max-width: 650px) {
    .content .choosing .divs .card {
        flex-direction: column;
    }

    .home-price {
        padding-top: 0;
    }
}
.docName,
.docName2 {
    padding: 25px;
}
@media screen and (max-width: 767px) {
    .content .data .country-page {
        padding: 20px;
    }
    #content_invoice .countries_selections .country_card {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    #country_form {
        width: 150px;
    }
    #content_invoice .countries_selections .country_card .special_card {
        width: 100%;
    }
}
@media screen and (max-width: 450px) {
    #country_form {
        min-width: 160.5px;
    }
    #content_invoice .countries_selections .country_card .card span, #content_invoice .countries_selections .country_card .special_card span {
        font-size: 15px;
    }
}
.out-usa, .own-options, .conditional-state-element, .inner-case-states {
    display: none;
}

/* cart responsive proplem */
@media screen and (max-width: 550px) {
    #content_card_view>.result {
        width: 525px;
        overflow-x: auto;
    }
}
@media screen and (max-width: 500px) {
    #content_card_view>.result {
        width: 475px;
        overflow-x: auto;
    }
}
@media screen and (max-width: 450px) {
    #content_card_view>.result {
        width: 425px;
        overflow-x: auto;
    }
}
    @media screen and (max-width: 400px) {
        #content_card_view>.result {
            width: 375px;
            overflow-x: auto;
        }
    }
    @media screen and (max-width: 350px) {
        #content_card_view>.result {
            width: 325px;
            overflow-x: auto;
        }
    }
@media screen and (max-width: 550px) {
    #desc_foot {
        font-size: 0.7em;
        padding: 20px;
    }

    #desc_foot h4 {
        font-size: 1.5em;
    }
}

input[type="radio"] {
    outline: #000 2px solid;
    margin-right: 10px;
}

@media (max-width: 1040px) and (min-width: 990px) {
    .navbar-nav li {
        padding: 0;
    }
}

/* new page */
.newpage {
    margin: 20px;
}

.newpage ul li {
    list-style: square;
}

.newpage .table table th, .newpage .table table td {
    border: 1px solid #c7b578;
}

.newpage .table table td {
    background-color: #f8f0d7;
}

.newpage .table table th, .newpage .table table tr>td:first-of-type {
    background-color: #ebdeb4;
}
.table .home-countries {
    width: 90%;
    max-width: 1035px;
}
/* country page new style */
.country-text h2 {
    font-size: 1.3rem;
}
.inside-cases.shipping {
    background-color: lightblue;
    width: 46%;
  }
  .commerical-hard {
    background-color: #eee;
    width: 46%;
  }
  .inside-cases.shipping h4,
  .commerical-hard h4 {
    font-size: 1.2rem;
  }
  .submit .pdf-img,
  .submit .pdf-img-2 { 
    height: 155px;
    width: 102px;
    position: absolute;
    top: -169px;
    display: block;
    box-shadow: 1px 1px 8px;
    background-color: #fff;
    right: 29%;
    animation: moveUpDown 6s linear infinite;
    z-index: 2;
  }
  @keyframes moveUpDown {
    0% {
      top: -170px;
    }
  
    100% {
      top: 0px;
    }
  }
  .submit-input {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    background-color: transparent;
    outline: unset;
    border: none;
    z-index: 555555555;
    opacity: 0;
    cursor: pointer;
  }
  .submit-div {
    display: block;
    text-align: center;
    background-color: rgb(195 171 93);
    border: 3px var(--main-color-2);
    border-style: dashed;
    color: var(--main-color);
    border-radius: 20px;
    font-size: 0.7rem;
  }
  .upload-content {
    font-size: 1.5em;
    padding: 10px 25px;
  }
  .submit-div i {
    font-size: 2em;
  }
  .inside-cases .submit {
    max-width: 250px;
    margin: auto;
  }
  .inside-cases .upload-content {
    font-size: 1.7em;
    padding: 50px 12px;
  }
  .or {
    width: 30px;
    display: flex;
    align-items: center;
    position: relative;
  }

/* new buttons */
body .bttn button{
    margin-left: 10px;
    margin-right: 10px;
}
.or span {
  display: block;
  /* transform: rotate3d(0, 0, 1, 90deg); */
  z-index: 5;
  background-color: #fbfbfb;
  color: var(--main-color);
  font-weight: 500;
  transform: scale(1.5, 3);
  /* position: absolute;
  left: -50%; */
}
.or::after {
  content: "";
  display: block;
  position: absolute;
  /* top: -80px; */
  width: 2px;
  height: 90%;
  background-color: var(--main-color);
  left: 60%;
}
.or.orInsideCounter{
  text-align: center;
  display: block;
  margin: 30px 0;
  width: 50%;
}
.or.orInsideCounter span {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 30px;
}
.or.orInsideCounter::after{
  top: 13px;
  width: 100%;
  height: 2px;
  left: 0px;
}
.reg {
  display: none;
}
.new-table-services .usdepartment-input {
  display: inline-block;
  height: 35px;
  width: 35px;
  position: relative;
  font-size: 30px;
  border: 2px solid var(--main-color);
  background-color: rgb(255 255 255);
  outline: none !important;
  box-shadow: none !important;
  color: black;
  border-radius: 50%;
}
.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999999999999999999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ddd;
  border-top-color: var(--main-color);
  animation: loading 1s linear infinite;
}
.show-select-next-table{
  font-size: 20px;
}
.show-select-next-table select{
  padding: 5px 20px;
  border: 3px solid var(--main-color);
  font-size: 24px;
  appearance: none;
  border-radius: 5px;
}
.usd-table-container{
  min-width: calc(100% - 300px);
}

/* caleander ex */
.calendar-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    z-index: 9999999999999;
    flex-direction: column;
  }
  
  .calendar {
    width: 100%;
    max-width: 1200px;
    max-height: fit-content;
    height: 100vh;
    overflow: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  
  .calendar-header {
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: var(--main-color);
    color: white;
    font-weight: 500;
    font-size: 25px;
    grid-column-start: 1;
    grid-column-end: 8;
  }
  
  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px;
    gap: 5px;
    text-align: center;
    margin: 10px 10px;
    min-width: 34%;
    /* border: 1px solid #eee; */
    box-shadow: 1px 1px 7px;
    border-radius: 5px;
    flex: 1;
  }
  
  .day-name,
  .day {
    padding: 10px 0;
    border-radius: 5px;
    min-height: 40px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .day-name {
    /* background-color: #007bff; */
    /* color: white; */
    /* font-weight: bold; */
  }
  
  .day {
    cursor: pointer;
    position: relative;
    border: 1px solid darkgray;
    font-weight: bold;
    color: #696088;
    transform: scale(1);
    font-size: 16px;
    overflow: hidden;
  }
  
  .day:hover {
    background-color: #e7e7e7;
  }
  
  .today {
    background-color: var(--main-color);
    color: white;
  }
  
  .day b {
    color: #1a9240;
    position: absolute;
    left: 3px;
    bottom: -4px;
    font-size: 12px;
    transform: scale(1, 1);
    font-weight: 400;
  }
  
  .day b .bd {
    font-size: medium;
    font-weight: normal;
    /* transform: scale(1); */
    /* color: #000; */
    font-size: 12px;
  }
  
  .day.today b {
    color: #fff;
  }
  
  .day.businessday{
    background-color: #fbfbc2;
  }
  .day.businessday.delay{
    background-color: #f2dede;
  }
  .day.holiday{
    background-color: rgb(211, 211, 211);    
    /* border: 2px solid rgb(255, 99, 71); */
  }
  .day.holiday span{
    position: absolute;
    top: 0;
    /* left: 10px; */
    color: red;
    font-weight: 500;
    font-size: 11px;
  }
  
  .calendar-header button {
    background-color: #000;
    display: inline-block;
    margin: 0 20px;
    animation: 2s linear 0s infinite normal none running changeBackGroundbuttons;
  
  }
  
  .calendar-header button:hover {
    background-color: #fff;
  }
  
  .day.finished {
    background-color: #c5f6c573;
  }
  
  .day.process {
    background-color: #6abeff26;
  }
  
  .day.today {
    background-color: rgb(105, 96, 136);
    color: white;
  }
  .day.today.delay {
    background-color: #f2dede;
    color: #696088;
  }
  .day span.service-name-cale {
    font-size: 0.55em;
    position: absolute;
    top: 0;
    color: #000;
  }
  .service-content-container  .day span.service-name-cale{
    white-space: nowrap;
    left: 2px;
  }
  .day span.service-name-cale.astrick {    
    left: 9px;
  }
  .day span.service-status-cale {
    font-size: 0.7em;
    position: absolute;
    top: 0;
    right: 5px;
  }
  .day b .bd.recivie{
    color: red;
    font-weight: 500;
  }
  .days {
    color: blue;
    cursor: pointer;
  }
  
  .days:hover {
    color: #0ab3ea;
    }
  .calendar-div span.closePopup {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    background-color: red;
    padding: 0px 10px;
    border-radius: 26%;
    font-size: 22px;
    cursor: pointer;
    font-weight: 600;
    z-index: 99;
  }
  .days.insideTable{
    color: #000;
    pointer-events: none;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

.small-business-days{
    font-weight: 400;
    font-size: 11px;
}
.state-content{
    font-size: 15px;
    line-height: 2;
}
.sub-list{
    list-style: disc;
    font-size: 14px;
}
.sub-list ul{
    list-style: upper-alpha;
    font-size: 13px;
}
.boxToGetReg{
    border: 4px solid var(--main-color);
    max-width: fit-content;
    background-color: #fff3d7;
}
.new-table > .boxToGetReg > p{
    font-size: 16px;
}

.showonRegOnly{
    display: none;
}
.addlineThrough{
    text-decoration: line-through;
    text-decoration-color: red;
    text-decoration-thickness: 3px;
}
tfoot .showonRegOnly{
    border: 4px solid var(--main-color);
    background-color: #fff3d7;
    color: #000;
}

.select-radio-inputs h3, .inside-cases h3 {
    font-size: 1.3rem;
}
.select-radio-inputs .check-input{
    font-size: 17px;
}
@media screen and (max-width: 2222px) {
  .inside-cases h3,
  .select-radio-inputs h3 {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1950px) {
  .select-radio-inputs {
    min-width: 900px;
  }
  .shipping-images{
    display: flex;
    width: 100% !important; 
  }
}
/* @media screen and (min-width: 1750px) {
  .select-radio-inputs .check-input{
    white-space: nowrap;
  }
} */
@media screen and (max-width: 1750px) {
  .inside-cases.shipping h4, .commerical-hard h4 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1650px) {
  .inside-cases {
    min-width: fit-content;
  }
}

@media screen and (max-width: 1650px) {
  .inside-cases h3, .select-radio-inputs h3 {
    font-size: 1.1rem;
  }
  /* #content_invoice{
    width: 100%;
  } */
  .select-radio-inputs .inps{
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1300px) {
  .embassy_link .section h3 {
    font-size: 1.1em;
  }
  .embassy_link {
    font-size: 0.8rem;
  }
  .logoBox{
    height: 125px !important;
    width: 145px !important;
  }
}
@media screen and (max-width: 1200px) {
  .commerical-hard label{
    font-size: 1.1rem;
  }
  .shipping-images{
    display: none;
  }
}
@media screen and (max-width: 1050px) {
  .commerical-case{
    flex-direction: column;
  }
  .commerical-hard {
    width: 100%;
  }
  .inside-cases.shipping {
    width: 100%;
  }

  .commerical-case .or {
    width: 100%;
    display: block;
    text-align: center;
    margin: 23px 0;
  }
  .commerical-case .or span {
    font-size: 33px;
    display: inline-block;
    /* transform: rotate3d(0, 0, 1, 90deg); */
    transform: scale(1.5);
    position: relative;
    top: -11px;
    padding: 0 8px;
  }
  .commerical-case .or::after {
    display: block;
    position: absolute;
    top: 15px;
    width: 100%;
    height: 4px;
    left: 0;
  }

}
@media screen and (max-width: 767px) {
  .or {
    width: 100%;
    display: block;
    text-align: center;
  }
  .or span {
    font-size: 33px;
    display: inline-block;
    /* transform: rotate3d(0, 0, 1, 90deg); */
    transform: scale(1.5);
    position: relative;
    top: -11px;
    padding: 0 8px;
  }
  .or::after {
    display: block;
    position: absolute;
    top: 15px;
    width: 100%;
    height: 4px;
    left: 0;
  }
  .show-select-next-table{
    display: none;
  }
  .usd-table-container{
    overflow: auto;
  }
}
.uploadQuestionPopup{
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  z-index: 999999999999999999999;
}
.uploadQuestionPopup .modal-dialog{
  width: 100%;
  max-width: 700px;
}
.uploadQuestionPopup .btn{
  max-width: 275px;
}
.HELLO {
    
    color: var(--main-color);
    background: var(--light-color);
    margin: 5px;
    padding: 2px 9px;
    border: 3px solid;
    box-shadow: 6px 5px 10px rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    width: 130px;
    margin: 10px;
    transition: 1s ease-in-out;
}
.HELLO:hover {
    border-bottom-color: rgb(198, 175, 102);
    font-weight: 588.75;
    box-shadow: rgba(180, 158, 86, 0.514) 6px 5px 14.7194px 0px;
    color: rgb(241, 243, 246);
    background-color: rgb(23, 47, 106);
    border-left-color: rgb(198, 175, 102);
    border-right-color: rgb(198, 175, 102);
    border-top-color: rgb(198, 175, 102);
}