::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: #818486;
    border-radius: 5px;
    margin: 10% 0;
}

* {
    margin: 0;
}

body {
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
	background-color: #f8f4f4;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.bg {
    width: 100%;
    height: 100vh;
    z-index: -99999;
    position: absolute;
	

}

.full-page {
    width: 100%;
    height: 100%;
    overflow: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-bar-nav {
    display: flex;
    align-items: center;
}

.logo {
    width: 20%;
}

.search-body {
    height: 100vh;
}

.main-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.width100 {
    width: 100%;
}

.dropdown-menu>li>a>img {
    margin: 0 5px;
}

.search-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7%;
}

.keyboard {
    position: absolute;
    bottom: 8%;
    max-height: 18%;
}

.lang {
    padding: 7px;
    background-color: #6caa21;
    border-radius: 50%;
}

.lang:hover {
    background-color: #fff;
}


.footer .container,
.footer .container .row,
.footer .container .row .col-lg-9,
.footer .container .row .col-lg-9 ul {
    height: 100%;
}

.footer .container .row {
    height: 100%;
}

.footer .footer_nav li a:hover {
    color: #00a79d !important;
}

.burger-menu {
    display: none;
}

.products-main-container {
    height: 55%;
}

.products-container {
    overflow-y: scroll;
    height: 525px;
    display: flex;
    flex-wrap: wrap;
}

.height100 {
    height: 100%;
}

.page-navigation {
    width: 100%;
}

.account-info {
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-picture {
    width: 30px;
    height: 30px;
    background-color: #fff;
    background-image: url(https://cdn.pixabay.com/photo/2016/11/21/12/42/beard-1845166_1280.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #fff;
    outline: 2px solid #8184867a;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.account-drop-down-menu {
    width: 100px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background-color: #fff;
    position: absolute;
    padding: 5px 0;
    left: -22px;
    bottom: -75%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.accordion .link {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.account-drop-down-menu a {
    color: #818486;
    text-decoration: none;
}

.account-drop-down-menu a:last-child {
    border-bottom: none;
}

.account-drop-down-menu a:hover {
    color: #00a79d;
}

.account-info:hover .account-drop-down-menu {
    display: flex;
}

.product-text {
    background-color: rgba(255, 255, 255, 0.5);
}

.products-text-info {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.add-to-cart {
    border: none;
    color: #fff;
    background-color: #064547;
    padding: 5px 15px;
    width: fit-content;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.add-to-cart:hover {
    background-color: #f7931d;
}

.system-btn {
    border: none;
    color: #fff;
    background-color: #064547;
    padding: 5px 10px;
    min-width: 125px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.system-btn:hover {
    background-color: #f7931d;
}


.email-ico img {
    z-index: -999;
}

.counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.counter-button {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    user-select: none;
}

.number-of-product {
    width: calc(20px * 2);
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background-color: #ffffff;
    opacity: 0.75;
    border-radius: 3px;
}

.Contact-us {
    margin: 100px 0;
}

.thank-you {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 65%;
    gap: 3px;
}

.thank-you h2 {
    font-size: 30px;
    color: #00a79d;
}

.thank-you h1 {
    font-size: 40px;
}

.thank-you h1 span {
    color: #808285;
}


.system-form {
    width: 100%;
    text-align: right;
    font-family: "ge_ss_twolight";
    color: #808285;
    font-size: 14px;
    padding: 12px 12px;
    display: block;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.system-form:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

@media (max-width: 1200px) {

    .full-page {
        overflow: scroll;
    }

    .col-sm-6 {
        width: 33%;
    }

    .products-container {
        height: 350px;
    }

    .accordion-list {
        display: flex;
        justify-content: center;
    }

    .accordion-list .link {
        border-bottom: 0;
        width: 100%;
    }

    .Contact-us-body {
        padding: 50px 0 75px 0;
    }

    .sicon {
        padding-top: 20px;
    }
}



@media (max-width: 768px) {

    .full-page {
        overflow: scroll;
        height: 100vh;
    }

    .accordion-list {
        display: block;
    }

    .col-sm-6 {
        width: 50%;
    }


    .btn_cat button {
        border-left: 1px solid #818486;
    }

    .btn_promo_search button {
        padding: 0px 20px;
        margin-left: 15px !important;
    }

    .search_promo .input-group .form-control {
        margin-bottom: 15px;
    }

    .form-search {
        min-width: 250px;
    }

    .footer .footer_nav {
        display: none;
    }

    .footer .container .row .col-lg-9 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .burger-menu {
        display: block;
        font-size: 30px;
        position: relative;
    }

    .search_promo .input-group {
        z-index: 0;
    }



    .mobile-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        font-size: 28px;
        background-color: #c63640;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9999;
        font-family: "ge_ss_twolight";
        transform: translateX(-100%);
    }

    .close {
        position: fixed;
        bottom: 20px;
        right: 30px;
        font-size: 30px;
        color: #ffffff;
        z-index: 999;
    }



    .mobile-menu .langs {
        margin-top: 30px;
    }

    .mobile-menu .lang {
        padding: 15px;
    }


    .mobile-menu .lang:hover {
        color: #00a79d;
    }

    .mobile-menu a {
        text-decoration: none;
        color: #000000;
    }

    .nav-bar-nav {
        display: none;
    }

    .profile-picture {
        width: 75px;
        height: 75px;
    }

    .account-info:hover .account-drop-down-menu {
        display: none;
    }

    .sicon {
        padding-top: 20px;
    }

    .Contact-us-body {
        padding: 0;
    }

}

/*  booking css 
 */
 
 
 
 






