@font-face {
    font-family: custom;
    src: url(../fonts/custom/CirceRounded-Regular.otf);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div {
    font-family: custom !important;
}

.modal-dialog {
    max-width: 75% !important;
}

.justify-content-center .modal-dialog {
    width: 100% !important;
    max-width: 100% !important
}

.my-modal.img-box {
    width: 100%;
    height: 100%;
}

.my-modal.img-box img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.my-modal.form-box {
    width: 100%;

    max-width: 100%;
}

.modal-body .close {
    z-index: 5;

    font-size: 2rem;
    background-color: #1f2c46;
    color: white;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
}

.my-modal.modal-dialog .col-3 {
    padding: 0;
}

.my-modal.modal-dialog .col-9 {
    padding: 0;
}

.my-anounce {
    top: 0;
    left: 0;
    position: fixed;
    background-color: rgba(121, 121, 121, 0.437);
    height: 100vh;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.my-anounce .anounce-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 1px solid gray;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: maroon;
    cursor: pointer;
}

.my-anounce .context {
    width: 70%;
    height: 80%;
    background-color: aquamarine;
    display: flex;
}

.my-anounce .context .left-side {
    flex: 1;
    background-color: green;
    height: 100%;
}

.my-anounce .context .left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-anounce .context .right-side {
    flex: 2;
    background-color: yelow;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.logo {
    width: 250px;
    height: 50px;
}

.right-side {
    .form-box {
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
}

@media(max-width:550px) {


    .logo {
        width: 200px;
        padding-top: 10px;
    }


}

@media(max-width:1200px) {
    .my-anounce .context .left-side {
        display: none;
    }

    /* .logo {
        width: 150px;
    } */

    .right-side {
        .form-box {
            height: auto;
            width: 100%
        }
    }
}

.toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;
    flex-direction: column;
}

.toolbar-modal {
    background-color: rgba(74, 74, 74, 0.491);
    z-index: 9999;


}

.toolbar-context {
    /* background-color: green; */
    position: absolute;
    width: 50%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toolbar .toolbar-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1p solid black;
    background-color: maroon;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toolbar-form {
    width: 80%;
    height: 80%;
    background-color: antiquewhite;
}

.lang-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.lang-box .lang {}

.lang-box .quote {


    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 50%;
    overflow: hidden;

}

.lang-box .quote img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-26 .header-top {
    min-height: 20px;
    padding: 10px 0;
}

@media(max-width:570px) {
    .header-top {
        background-color: #1f2c46 !important;
        height: 70px;
    }

    .header-top .desktop-top {
        display: none;
    }

    .modal-dialog {
        max-width: 100% !important;
    }
}

.header-top .mobile-top {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
    color: white;
}

.top-item-img {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
    display: block;
}

.top-item-img img {
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@media(min-width:570px) {
    .header-top .mobile-top {
        display: none;
    }
}

.select-my {
    width: 95%;
    height: 30px;
    border: 1px solid black;
    margin: auto;
}

.select-my .lang {
    width: 100%;
    height: 100%;
    display: block;
}

.select-my .lang select {
    width: 100%;
}

/* chat code */

.custom-select {
    width: 500px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.custom-select select {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    color: #333;
}

.custom-select::after {
    content: '\25BC';
    font-size: 20px;
    color: #666;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

h1,
p,
h2,
h3,
h4,
h5,
h6 {
    color: #292C33;
}



.ggl_search_form {
    padding: 5px 5px;
    width: 90%;
    height: 40px;
    /* border: 1px solid rgb(118, 118, 118); */
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    overflow: hidden;
}

.ggl_actions {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 150px;
    /* background-color: red; */
    display: flex;
    justify-content: flex-end;
}

.icon_wrapper {
    width: 33%;
    height: 100%;
    padding: 5px;
}

.icon_wrapper svg {
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.menu-btn_ggl {
    width: 10%;
    height: 40px;

    display: flex;
    justify-content: center;
}

.head-ggl {
    display: flex;

}

.ggl_search_form form {
    height: 100%;
    width: 100%
}

.ggl_search_form form input {
    width: 95%;
    height: 95%;
    border: none;
    outline: none;

}

.my_banner_container {
    height: 500px;
    width: 100%;

}

.my_banner_wrapper {
    display: flex;
    width: 100%;
    height: 100%;

}

.banner_left {
    flex: 1.5;
    position: relative;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1690914258086-f62d17ea0a26?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80');
    background-position: center;
    background-size: cover;
}

.banner_center {
    flex: 1;
    position: relative;
    height: 100%;
    background-image: url('https://plus.unsplash.com/premium_photo-1677606179419-3a8719a19dea?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=387&q=80');
    background-size: cover;
    background-position: center;
}

.banner_right {
    flex: 1.5;

    height: 100%;
    display: flex;
    flex-direction: column;
}

.banner_right .right_upper {
    height: 50%;
    width: 100%;
    position: relative;
    background-image: url('https://plus.unsplash.com/premium_photo-1681819542543-2ae77de189eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
}

.banner_right .right_lower {
    height: 50%;
    width: 100%;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1691097097106-4d8c330266f0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
}

.title_banner_wrapper {
    border: 1px solid gray;
    width: 200px;
    padding: 5px;
    position: absolute;
}

.title-bottom {
    bottom: 10px;
    left: 10px
}


@media (max-width:880px) {
    .my_banner_wrapper {
        flex-direction: column;
    }

}

.mobile-area-container {
    display: block;
}

.desktop-area-container {
    display: none;
}

@media (min-width:880px) {
    .mobile-area-container {
        display: none;
    }

    .desktop-area-container {
        display: block;
    }

}

.header.header-10.header-intro-clearance .dropdown.category-dropdown .dropdown-toggle {
    border-radius: 4px;
    border: 3px solid white;
    background-color: #1a27bc;
}

.header.header-10.header-intro-clearance .header-bottom .menu>li:hover>a,
.header.header-10.header-intro-clearance .header-bottom .menu>li:focus>a,
.header.header-10.header-intro-clearance .header-bottom .menu>li.active>a,
.header.header-10.header-intro-clearance .header-bottom .menu>li.show>a {
    color: white;
}

.header.header-10.header-intro-clearance .header-bottom .menu>li:hover>a::before,
.header.header-10.header-intro-clearance .header-bottom .menu>li:focus>a::before,
.header.header-10.header-intro-clearance .header-bottom .menu>li.active>a::before,
.header.header-10.header-intro-clearance .header-bottom .menu>li.show>a::before {
    background-color: white;
}

.bg-primary {
    background-color: #1f2c46 !important;
}

.header-right {
    justify-content: space-between;
}

.lang-area {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
}

@media (max-width:880px) {
    .lang-area {
        margin-left: 15px;
        justify-content: flex-start;

    }

}

.lang-area a {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 9999px;
    border: 1px solid black;
    overflow: hidden;
}

.lang-area a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Lang modal area */
.my-lang-modal {
    position: fixed;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(36, 35, 35, 0.759);
    z-index: 10;
    display: none;
    padding-top: 5%;
}

.modal-show {
    display: block;
}

.my-lang-modal .modal-wrapper {
    margin-top: 10%;
    margin: auto;

    width: 40%;
    height: auto;
    background-color: rgb(247, 247, 247);

}

.custom-select {
    width: 95%;
}

@media (max-width:480px) {
    .my-lang-modal .modal-wrapper {
        margin: auto;

        width: 95%;
        height: auto;
        background-color: rgb(247, 247, 247);

    }

}

.modal-lang .my-modal {
    width: 100%;
    height: 100%;
    position: relative;

}

.close-modal-lang {
    position: absolute;
    padding: 0px;
    border: none;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    background-color: #1f2c46;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Center the text horizontally */
    line-height: 1;
    overflow: hidden;
}

.close-modal-lang span {
    display: inline-flex;
    /* Use inline-flex to prevent the span from expanding */
    justify-content: center;
    /* Horizontally center the content */
    align-items: center;
    /* Vertically center the content */
    width: 40px;
    /* Set a width to your desired size */
    height: 40px;
    /* Set a height to your desired size */
    background-color: #1f2c46;
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    /* Reset line-height to 1 for vertical centering */
    margin-top: -5px;

}

.menu .megamenu,
.menu ul {
    background-color: #1a27bc;
}

.menu li>a:hover {
    color: white;
    /* text-decoration: underline; */
}

.header-intro-clearance .header-bottom .header-center {}

.header-bottom .menu>li+li {
    margin-left: 0rem;
}

.header-intro-clearance .header-bottom .menu>li+li {
    margin-left: 0.1rem;
}

.header-left a:last-child {

    margin-left: 10px;

}

.main-nav a {
    color: white
}

.header.header-10.header-intro-clearance .header-bottom .menu>li>a:focus {
    color: #ffffff;
}

.header-intro-clearance .header-middle .header-right,
.header-intro-clearance .header-bottom .header-right {
    /* margin-left: 121px; */
}

@media(max-width:570px) {
    .header-left {
        display: flex;
        flex-direction: column;

    }

    .logo img {
        margin-left: 40px;
    }
}

.mobile-menu-light {
    background-color: #1a27bc;
}

.nav.nav-pills-mobile .nav-link.active,
.nav.nav-pills-mobile .nav-link:hover,
.nav.nav-pills-mobile .nav-link:focus {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.nav.nav-border-anim .nav-link:before {
    background-color: #ffffff;
}

.mobile-menu-light .mobile-menu-close:not(:hover):not(:focus) {
    color: #ffffff;
}

.mobile-menu-wrapper .head-ggl {
    margin-right: -10%;
}

.mobile-menu-wrapper .ggl_search_form {
    background-color: white;
}

.mobile-menu-light .nav.nav-pills-mobile .nav-link:not(:hover):not(:focus):not(.active) {
    color: #ffffff;
}

.mobile-menu-light .mobile-menu li a:not(:hover):not(:focus) {
    color: #ffffff;
}

.mobile-menu-light .mmenu-btn:not(:hover):not(:focus) {
    color: #ffffff;
}

.custom-control-label {
    margin-right: 10px;
}

.filter-size-text {
    margin-bottom: 10px;
}

/* 
*{
    border: 1px solid black
} */
.mobile-menu-toggler {
    position: relative;
    height: 50px;
    width: 40px;
}

.donk {
    position: absolute;
    top: 0;
    left: 14px;
    width: 40px !important;
}

.header-10 .header-bottom {
    background-color: #1a27bc;
    padding: 1px 0px;
}

.filter-size {
    margin-top: 40px;
}

.category-side {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-color:#1f2c46;
    z-index: 99;
    width:80%;

}

.scroll-left {
    transform: translate(-110%, 0%);
}

@media(max-width:570px) {
    .on-mob-hide {
        display: none;
    }
}

.close-side-main {
    position: absolute;
    top: 0;
    right: 10px;
    color:white;
}
.filter-price{
    color: white !important;
}

.toolbox-mobile {
    display: none;
}

.toolbox-left-mobile {
    display: none;
}

@media(max-width:680px) {
    .toolbox-left-mobile {
        display: flex;
        margin-left: -64px;

    }
    aside {
        background-color: #1f2c46;
    }
    /* label{
        color:white !important;
    } */
    .widget-title{
        color:white !important;
    }
    .sidebar-filter-clear{
        color: white !important;
    }
    .close-side-main{
        background-color:#1f2c46;
    }
   
}

.filter-img{
    width:60px;
    height: 15px;
}

.product-nav.product-nav-thumbs{
    display: none;
}

.aside-mobile{
    display: none;
    background-color: white;
}
.aside-mobile .sidebar{
    margin-top: 0;
}
.my-mb-0{
    margin-bottom: 0 !important;
}
.hide-on-desktop{
    display: block;
    background-color: white !important;
}

.aside-desktop{
    background-color: white;
}
@media(max-width:580px){
   .aside-mobile {
       display: block;
   }

   .hide-on-desktop {
       display: none;
   }
}

.mobile-menu-light ul li a{
  color:white !important
}
.product-nav.product-nav-dots{
 display: none;
}
.ratings{
    display:none
}