/*
===================================================================================================================
                                                    general
====================================================================================================================
*/
@font-face {
    font-family: bb-font;
    src: url(../fonts/DIN-NEXT-ARABIC-BLACK.OTF);
}

@font-face {
    font-family: b-font;
    src: url(../fonts/DIN-NEXT-ARABIC-BOLD.OTF);
}

@font-face {
    font-family:m-font;
    src: url(../fonts/DIN-NEXT-ARABIC-MEDIUM.OTF);
}


@font-face {
    font-family:r-font;
    src: url(../fonts/DIN-NEXT-ARABIC-REGULAR.OTF);
}

@font-face {
    font-family: l-font;
    src: url(../fonts/DIN-NEXT-ARABIC-LIGHT.OTF);
}

#challengeFrame{
    background:#fff;
}

iframe{
    background:#fff!important;
}

body{
    background:#FBFBFB;
    overflow-x:hidden;
    width:100%;
}

.hover-red:hover{
    color:#BE2328!important;
}

a:hover{
    text-decoration:none;
}

a.text-primary-800:hover{
    color:#BE2328!important;
}

a {
    /*color: inherit!important;*/
}

.link-hover{
    transition:0.3s;
}

.link-hover:hover{
    transform:translateX(-0.75rem);
}

.block{
    display:block;
}

.grid{
    display:grid;
}

.grid-flow-column{
    grid-auto-flow:column;
}

.grid-row-start{
    grid-row-start:1;
}

.grid-rows-11{
    grid-template-rows:repeat(11,auto);
}

.grid-rows-9{
    grid-template-rows:repeat(9,auto);
}

.grid-cols-5{
    grid-template-columns:repeat(5,minmax(0,1fr));
}

.grid-cols-4{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.grid-cols-3{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.grid-cols-2{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

.col-span-3{
    grid-column:span 3/span 3;
}

.flex{
    display:flex;
}

.flex-col{
    flex-direction: column;
}

.flex-row{
    flex-direction: row;
}

.flex-grow{
    flex-grow:1;
}

.flex-auto{
    flex:auto;
}

.flex-1{
    flex:1;
}

.flex-2{
    flex:2;
}

.flex-3{
    flex:3;
}

.grid-gap-4{
    grid-gap:1rem;
}

.gap-1{
    gap:0.25rem;
}

.gap-2{
    gap:0.5rem;
}

.gap-4{
    gap:1rem;
}

.gap-6{
    gap:1.5rem;
}

.gap-8{
    gap:2rem;
}

.gap-10{
    gap:2.5rem;
}

.gap-12{
    gap:3rem;
}

.gap-16{
    gap:4rem;
}

.gap-20{
    gap:5rem;
}

.z-1{
    z-index:1;
}

.z-100{
    z-index:100;
}

.shadow{
    box-shadow:0 0 20px 0 rgb(84 83 83 / 22%);
}

.space-between{
    justify-content: space-between;
}

.items-center{
    align-items:center;
}

.justify-start{
    justify-content: flex-start;
}

.justify-end{
    justify-content: flex-end;
}

.flex-start{
    align-content: flex-start;
}

.flex-end{
    align-content: flex-end;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-1{
    flex:1;
}

.text-center{
    text-align: center;
}

.bg-primary-800{
    background-color:#BE2328;
}

.bg-secondary-100{
    background-color:#F2F2F2;
}

.bg-white{
    background-color:#FFF;
}

.rounded-corners-none{
    border-radius:0;
}

.rounded-corners-sm{
    border-radius:0.128rem;
}

.rounded-corners{
    border-radius:0.25rem;
}

.rounded-corners-md{
    border-radius:0.375rem;
}

.rounded-corners-l{
    border-radius:0.5rem;
}

.rounded-corners-full{
    border-radius:100%;
}

.p-1{
    padding:0.25rem;
}

.p-2{
    padding:0.5rem!important;
}

.p-3{
    padding:0.75rem;
}

.p-5{
    padding:1.25rem;
}

.p-6{
    padding:1.5rem;
}

.p-8{
    padding:2rem;
}

.py-1{
    padding-top:0.25rem;
    padding-bottom:0.25rem;
}

.py-2{
    padding-top:0.5rem!important;
    padding-bottom:0.5rem!important;
}

.py-3{
    padding-top:0.75rem!important;
    padding-bottom:0.75rem!important;
}

.py-4{
    padding-top:1rem;
    padding-bottom:1rem;
}

.py-5{
    padding-top:1.25rem;
    padding-bottom:1.25rem;
}

.py-6{
    padding-top:1.5rem;
    padding-bottom:1.5rem;
}

.py-7{
    padding-top:1.75rem;
    padding-bottom:1.75rem;
}

.px-0{
    padding-right:0;
    padding-left:0;
}

.px-2{
    padding-right:0.5rem;
    padding-left:0.5rem;
}

.px-6{
    padding-right:1.5rem!important;
    padding-left:1.5rem!important;
}

.px-8{
    padding-right:2rem;
    padding-left:2rem;
}

.p-b-3{
    padding-bottom:0.75rem;
}

.remove-margin{
    margin:0;
}

.remove-padding{
    padding:0!important;
}

.m-t-0{
    margin-top:0!important;
}

.m-t-4{
    margin-top:1rem;
}

.m-t-8{
    margin-top:2rem;
}

.m-t-12{
    margin-top:3rem;
}

.m-t-16{
    margin-top:4rem;
}

.m-t-20{
    margin-top:5rem;
}

.m-b-2{
    margin-bottom:0.5rem;
}

.m-b-8{
    margin-bottom:2rem!important;
}

.m-l-0{
    margin-left:0!important;
}

.m-l-4{
    margin-left:1rem;
}

.m-l-8{
    margin-left:2rem;
}

.m-l-12{
    margin-left:3rem;
}

.m-l-16{
    margin-left:4rem;
}

.m-l-20{
    margin-left:5rem;
}

.m-r-0{
    margin-right:0!important;
}

.m-r-4{
    margin-right:1rem;
}

.m-r-8{
    margin-right:2rem;
}

.m-r-12{
    margin-right:3rem;
}

.m-r-16{
    margin-right:4rem;
}

.m-r-20{
    margin-right:5rem;
}

.my-20{
    margin:5rem 0;
}

.my-24 {
    margin:6rem 0;
}

.pl-1{
    padding-left:0.25rem;
}

.pl-2{
    padding-left:0.5rem;
}

.pl-3{
    padding-left:0.75rem;
}

.pl-4{
    padding-left:1rem;
}

.pl-5{
    padding-left:1.25rem;
}

.pl-6{
    padding-left:1.5rem;
}

.pl-8{
    padding-left:2rem;
}

.pl-10{
    padding-left:2.5rem;
}

.pr-1{
    padding-right:0.25rem;
}

.pr-2{
    padding-right:0.5rem;
}

.pr-3{
    padding-right:0.75rem;
}

.pr-4{
    padding-right:1rem;
}

.pr-5{
    padding-right:1.25rem;
}

.pr-6{
    padding-right:1.5rem;
}

.pr-8{
    padding-right:2rem;
}

.w-1-3{
    width:33.3333333%;
}

.w-full{
    width:100%;
}

.w-fit{
    width:fit-content;
    min-width:fit-content;
}

.w-available{
    width:-webkit-fill-available;
}

.w-2{
    width:200px;
}

.h-full{
    height:100%;
}

.object-cover{
    object-fit:cover;
}

.object-contain{
    object-fit:contain;
}

.opacity-80{
    opacity:0.8;
}

.nav-active{
    background-color:#fff;
    -webkit-box-shadow: inset 0px 0px 0px 10px #bb252a;
    -moz-box-shadow: inset 0px 0px 0px 10px #bb252a;
    box-shadow: inset 0px -3px 0px 0px #bb252a;
    color:#bb252a;
}

.nav-active > a{
    color:#bb252a;
}

.mob-nav-active{
    background-color:#fff!important;
    -webkit-box-shadow: inset 0px 0px 0px 10px #bb252a;
    -moz-box-shadow: inset 0px 0px 0px 10px #bb252a;
    box-shadow: inset 3px 0px 0px 0px #bb252a;
    color:#bb252a;
}

.mob-nav-active > a{
    color:#bb252a;
}

.mob-category-parent{
    background:#eee;
}

.relative{
    position:relative;
}

.absolute{
    position:absolute;
}

.transition-8{
    transition:0.8s;
}

.transition-1{
    transition:1s;
}

.font-m{
    font-family:m-font;
}

.font-b{
    font-family:b-font;
}

.font-l{
    font-family:l-font;
}

.text-white{
    color:#FFF;
}

.text-white a{
    color:#FFF;
}

.text-primary-800{
    color:#BE2328!important;
}

.text-secondary-400{
    color:#303030;
}

.text-secondary-600{
    color:#666!important;
}

.text-secondary-800{
    color:#1E1E1E;
}

.text-secondary-800-hover:hover{
    color:#BE2328;
}

a.text-secondary-800:hover{
    color:#BE2328;
}

.text-xs{
    font-size:1.2rem;
}

.text-sm{
    font-size:1.4rem;
}

.text-base{
    font-size:1.6rem!important;
}

.text-lg{
    font-size:1.8rem;
}

.text-xl{
    font-size:2rem;
}

.text-xxl{
    font-size:2.2rem;
}

.text-nowrap{
    white-space:nowrap;
}

.search-box{
    border:1px solid #DDDDDD;
}

.search-box input{
    background:none;
    border:none;
}

.live-search{
    position:absolute;
    margin-top:55px;
    width:100%;
    right:0;
}

.top-45{
    top:45px;
}

.no-right{
    right:0;
}

.no-left{
    left:0;
}

.no-top{
    top:0;
}

.no-bottom{
    bottom:0;
}

.dropdown-search-result{
    border: 1px solid #f5f5f5;
    padding:1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow:0 20px 25px -5px rgb(0 0 0 / 10%),0 10px 10px -5px rgb(0 0 0 / 4%);
    border-radius:0 0 0.75rem 0.75rem;
    font-size:16px;
}

.pointer{
    cursor:pointer;
}

.offers-effect{
    position:relative;
}

.offers-effect > .particle {
    opacity:0;
    position: absolute;
    animation: offers_effect 3s ease-in infinite;
}
.offers-effect > .particle.c1 {
    background-color:#FFFFFF;
}
.offers-effect > .particle.c2 {
    background-color:#7aabde;
}
.offers-effect > .particle.c3 {
    background-color:#f93f03;
}
.offers-effect > .particle.c4 {
    background-color:#f7d117;
}

@keyframes offers_effect {
    0% {
        opacity:0;
        transform:translateY(0%) rotate(0deg);
    }
    10% {
        opacity:1;
    }
    35% {
        transform:translateY(-270%) rotate(270deg);
    }
    80% {
        opacity:0.5;
    }
    100% {
        opacity:0;
        transform:translateY(1000%) rotate(1440deg);
    }
}

.down-mega-main{
    /*height:420px;*/
    top:48px;
    max-height:calc(100vh - 200px);
    overflow:hidden;
    overflow-y:scroll;
}

.remove-a-b::after{
    content:none;
}

.remove-a-b::before{
    content:none;
}

.header-logo{
    width:155px;
}

.border{
    border:1.5px solid #00000020;
}

.border-right{
    border-right:1.5px solid #00000020;
}

.border-left{
    border-left:1.5px solid #00000020;
}

.hide{
    display:none;
}

.overflow-hidden{
    overflow:hidden;
}

.overflow-x{
    overflow-x:auto;
    overflow-y:hidden;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

.overflow-x::-webkit-scrollbar {
  display: none;
}

.text-ellipsis{
    text-overflow:ellipsis;
}

.home-full-slider{
    margin-top:15px;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:0px;
}

.home-full-slider .carousel-indicators{
    bottom:0;
    padding:0;
}

.carousel-indicators li{
    border:none;
    background:#FFFFFFAB;
}

.flash-sale-card-wrap{
    width:100%!important;
    margin:0px!important;
    border-radius:6px;
}

.small-pro-maim{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 24px 0px;
}

.sale-sold-label{
    position: absolute;
    top: 18px;
    right: 0px;
}

.sale-sold-out-span{
    position:absolute;
    top:27%;
    z-index:1;
    background:#fff;
    color:#be2328;
    font-size:20px;
    box-shadow:0px 2px 8px rgb(0 0 0/ 25%);
    border-radius:4px;
    padding:10px 15px 13px 15px;
    text-align:center;
    margin:0px 33px;
    line-height:22px;
}

.sale-remaining-quantity span{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    color:#777;
}

.pro-small-item a img{
    padding:40px 0px 30px 0px;
}

.lightSliderClass{
    height:260px!important;
}

.demo a{
    padding:0px!important;
}

.lSSlideWrapper{
    border:none;
    margin-bottom:0px;
}

.lSSlideOuter .lSPager.lSpg{
    position:absolute;
    top:250px;
    width:100px;
    right:calc(50% - 50px);
    z-index:0;
}

.flash-sale-card{
    width:224px!important;
    margin:0px 5px!important;
    border-radius:6px;
}

.slick-slide:hover{
    animation:none;
}

.slick-slide:not(:hover){
    animation:none;
}

.slick-carousel-1 .slick-prev{
    top:45% !important;
    padding:0px 12px 0px 35px;
    border:solid 1px #e4e4e4;
    border-radius:100%;
    right:5px;
}

.slick-carousel-1 .slick-next{
    top:45% !important;
    padding:0px 12px 0px 35px;
    border:solid 1px #e4e4e4;
    border-radius:100%;
    left:5px;
}

.remove-first-a:first-child{
    display:none!important;
}

#lightSlider li{
    cursor:pointer;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 37%;
  position: relative;
}

.spinner {
  height: 5vh;
  width: 5vh;
  border: 6px solid rgba(0, 174, 239, 0.2);
  border-top-color: rgba(0, 174, 239, 0.8);
  border-radius: 100%;
  animation: rotation 0.6s infinite linear 0.25s;

  /* the opacity is used to lazyload the spinner, see animation delay */
  /* this avoid the spinner to be displayed when visible for a very short period of time */
  opacity: 0;
}

@keyframes rotation {
  from {
    opacity: 1;
    transform: rotate(0deg);
  }
  to {
    opacity: 1;
    transform: rotate(359deg);
  }
}

.c-leaf {
    position: relative;
    
    overflow: hidden;
    width: 128px;
    height: 138px;
    margin: 0 auto;
    
    background: #eee;
    
    transform: scale(1);
}

.c-leaf__icon {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    
    width: 130px;
    height: 140px;
        
    fill:#fff;
}

.c-leaf__fill {
    width: 130px;
    height: 140px;
    
    background: #BE2328;
            
    animation: fillUp 1.5s ease-in-out infinite;
}

@keyframes fillUp {
    0% {
        transform: translate(0, 140px);
    }
    100% {
        transform: translate(0, -140px);
    }
}




.x-reset-container {
    display: flex;
    align-items: center;
    padding: 50px;
}

#loading {
  width: 170px;
  height: 170px;
  margin: 5px auto;
  position: absolute;
  left: 44%;
  top: 31%;
}
.outer-shadow,
.inner-shadow {
  z-index: 4;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.inner-shadow {
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 100%;
  background-color: #eee;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.hold {
  position: absolute;
  width: 100%;
  height: 100%;
  clip: rect(0px, 170px, 170px, 85px);
  border-radius: 100%;
  background-color: #eee;
}
.fill,
.dot span {
  background-color: #BE2328;
}
.fill {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  clip: rect(0px, 85px, 170px, 0px);
}
.left .fill {
  z-index: 1;
  -webkit-animation: left 1s infinite;
  -moz-animation: left 1s infinite;
  animation: left 1s infinite both;
}
@keyframes left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}
.right {
  z-index: 3;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.right .fill {
  z-index: 3;
  -webkit-animation: right 1s linear;
  -moz-animation: right 1s linear;
  animation: right 1s infinite both;
}
@keyframes right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

.inner-shadow img {
  margin-left: 8px;
  margin-top: 7px;
}

.sm-visible{
    display:none;
}

.mobile-nav-bar{
    display:none;
}

.mobile-nav-bar a{
    color:inherit!important;
}

.mobile-nav-bar .active{
    color:#BE2328;
}

.mobile-nav-bar .active svg{
    fill:#BE2328;
}

.menu-mob-new-main{
    transition:0s!important;
}

.menu-mob-new-main.active{
    transition:0s!important;
}

.scrollable-hidden{
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollable-hidden::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.scrollable-hidden div{
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollable-hidden div::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.scrollable-arrow { 
    opacity: 0.5;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;  
    padding: 0px 12px 0px 35px;
    border: solid 1px #e4e4e4;
    border-radius: 100%;
    position: absolute;
    background-color: #fff !important;
    color: transparent;
    width: 35px;
    height: 50px;
    z-index: 1;
    font-family: 'Ghazawy';
    top: 38%;
}

.scrollable-arrow:before {
    position:absolute;
    content: "\0053"!important;
    color: #000;
    font-size: 20px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Ghazawy';
    right: 11px;
    top: 10px;
}

.scrollable-hidden:hover .scrollable-arrow {
    opacity: 1;
}

.scroolable-arrow-next {
    right:25px;
}

.scroolable-arrow-prev {
    left:25px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.flash-sale-carousel .slick-next{
    position: absolute;
    background-color: #fff !important;
    color: transparent;
    width: 35px;
    height: 50px;
    z-index: 1;
    font-family: 'Ghazawy';
    opacity: 0.5;
    transform: rotate(180deg);
}

.flash-sale-carousel .slick-next:before{
    position: absolute;
    content: "\0053"!important;
    color: #000;
    font-size: 20px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Ghazawy';
    right: 11px;
    top: 13px;
}

.flash-sale-carousel .slick-prev{
    position: absolute;
    background-color: #fff !important;
    color: transparent;
    width: 35px;
    height: 50px;
    z-index: 1;
    font-family: 'Ghazawy';
    opacity: 0.5;
}

.flash-sale-carousel .slick-prev:before{
    position: absolute;
    content: "\0053"!important;
    color: #000;
    font-size: 20px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Ghazawy';
    right: 11px;
    top: 13px;
}

.flash-sale-carousel:hover .slick-arrow {
    opacity: 1;
}

.creditTag {
    display:none!important;
}

.about-us-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align:center;
}

.about-us-ul a {
    color:#000;
}

.about-us-ul li:hover a {
    color:#c03839;
}

.about-us-li {
    position: relative;
}

.about-us-li2:after {
    content: "•";
    color: rgba(192, 56, 57, 1);
    -webkit-text-stroke-width: thick;
    position: absolute;
    transform: translate(-50%,-50%);
    z-index: 1;
    pointer-events: none;
    top: 50%;
    right: 100%;
}

.footer-contact-ul {
    margin-top: 13px;
    font-size:20px;
}

.footer-contact-ul li{
    display:inline-block;
}

.footer-contact-ul a{
    color: #fff;
    width: 30px;
    height: 30px;
    background-color: #C03839;
    line-height: 30px;
    display: block;
    text-align: center;
    font-size: 18px;
}

.creditTag {
    display:none;
}

item-quantity-input::-webkit-outer-spin-button, 
item-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: inner-spin-button !important;
}

@media (max-width:1024px){
    .md-hidden{
        display:none;
    }
    
    .sm-visible{
        display:none;
    }
}

@media (max-width:991px){
    .sm-visible{
        display:normal;
    }
    
    .sm-hidden{
        display:none;
    }
    
    .header-logo{
        width:120px;
    }
    
    .mobile-nav-bar{
        display:flex;
    }
    
    #loading{
        left: 30%;
    }
}

.button-main {
    border: none;
    background-color: #BE2328;
    border-radius: 5px;
    color: #BE2328;
    padding: 7px 12px;
}
