﻿@font-face {
    font-family: 'Noto Kufi Arabic';
    src: url('/fonts/NotoKufiArabic-VariableFont_wght.woff2') format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

:root{
  --font-latin: "Montserrat", "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-arabic: "Noto Kufi Arabic", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
[dir="ltr"] * { font-family: var(--font-latin); }
[dir="rtl"] * { font-family: var(--font-arabic); }

h1,h2,h3 { font-weight: 700; }
p,li,button,input { font-weight: 400; line-height: 1.6; }

* {
    margin: 0;
}
html, body {
    height: 100%;
}
body{
    /* background-image: url('images/background.png');
    background-repeat: repeat;
    background-position: right;
    background-blend-mode: lighten; */
    background-color: #f1f2f2;
}
input[type=button], input[type=reset], input[type=submit],button {
    -webkit-appearance: button;
    cursor: pointer
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
#ContentHead{ display: none;}
.divMenuIcon { display: none; height: 85px; }
#divMainMenu{height:80px;}
.keyHiddenClass {
    color: white;
}
.form-control, .phone-control,.form-checkbox,.email-control{
    position: relative;
    width:100%;
    display: inline-block;
    margin-bottom: 7px;
}
.form-checkbox label {
    display: inline-block;
    margin-top:20px;
    height: 20px;
    box-sizing: border-box;
    outline: none;
    border: none;
}
.form-checkbox input {
    margin-right:7px;
}

.phone-control select{
    margin-top: 20px;
    width:50px;
    box-sizing: border-box;
    outline: none;
    border: none;
}
.phone-control input{
    margin-top: 20px;
    width: -webkit-calc(100% - 50px);
    width:    -moz-calc(100% - 50px);
    width:         calc(100% - 50px);
    box-sizing: border-box;
    outline: none;
    border: none;
}
.form-control input,.form-control select, .email-control input{
    margin-top: 30px;
    width:100%;
    box-sizing: border-box;
    outline: none;
    border: none;
    
}
.form-control label, .phone-control label, .email-control label{
    position: absolute;
    top: 30px;
    left: 0;
    transition: .5s;
    pointer-events: none;
    width:100%;
}
.form-control input:focus ~ label,
.form-control select:focus ~ label,
.phone-control input:focus ~ label,
.phone-control select:focus ~ label,
.form-control input:hover ~ label,
.form-control select:hover ~ label,
.phone-control input:hover ~ label,
.phone-control select:hover ~ label,
.email-control input:hover ~ label,
.ControlHasAnswer ~ label {
    top: 0;
    left:0;
    color: #000000;
    font-weight: bold;
    margin-top:0px;
}

input::-webkit-time-edit{
    color:transparent;

}
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-ampm-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-day-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-hour-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-millisecond-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-minute-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-month-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-second-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-week-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-year-field,
input:not(.ControlHasAnswer):not(:focus)::-webkit-datetime-edit-text
{
  color: transparent;
}

.page-wrap {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
.page-wrap:after {
  content: "";
  display: block;
}
.footer {
    display: inline-block;
    border-top: 3px solid #f7a800;
    margin-top: 30px;
    width: 100%;
    background: linear-gradient(rgba(241, 242, 242, 0.8), rgba(241, 242, 242, 0.8)), url("images/horizental-bg.png");
    background-size:auto;
    background-repeat: no-repeat;
    background-position: bottom;
}
.footer>div {
    width: 100%;
    max-width:1360px;
    margin:0 auto;
}
.footer span{
    padding-top:10px;
    display:inline-block;
}
input, select, textarea{
    -moz-box-sizing: border-box !important;    /* Firefox, other Gecko */
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */
}
#mainContent{
    /* max-width: 1024px; */
    display:block;
    /* margin:0 auto 0 auto; */
    padding-top: 170px;
}
.placeholder {
    color: #000000;
}
.Question{
    padding-left:10px;
    padding-right:10px;
    padding-bottom:10px;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000000;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #000000;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #000000;
}
:-moz-placeholder { /* Firefox 18- */
    color: #000000;
    padding-left: 10px;
}

#divHeader
{
    height: 80px;
}


.full, .half{
    display:block;
    float:left;
}
/*.full > input, .full > select, .full > textarea, 
.half > input, .half > select, .half > textarea {
    width:100%;
    margin-left:30px;
}*/
.full{
    width:100%;
}
.half{
    width:50%
}

@media screen and (min-width: 480px) {
}
@media screen and (max-width: 480px) {
    .page-wrap {
        margin-bottom: 0;
    }
    .footer {
        display:none;
    }
}


/*Group Boxes Control CSS*/
/*.GroupBox{
    width:100%;
    background-color:yellow;
    border:2px black solid;
    -moz-box-sizing: border-box !important;    
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important; 
}
.GroupBoxHeader{
    width:100%;
    background-color:#4cff00;    
    padding:7px;
    border-bottom:2px black solid;
    -moz-box-sizing: border-box !important;    
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important; 
}
.GroupBoxContent{
    width:100%;
    background-color:red;
    padding:10px;
    -moz-box-sizing: border-box !important;    
    box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important; 
}*/
/*Group Boxes Control CSS*/
.Float {
    float: left;
}
.InverseFloat{
    float:right;
}
.col-centered{
    float: none;
    margin: 0 auto;
}
.row {
    width:100%;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    box-sizing: border-box;
}
.displayflex{
    display:flex;
}
.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: var(--bs-gutter-y);
    box-sizing:border-box;
}
.col-md-1 {
    flex:0 0 auto;
    width: 8.33%;
}

.col-md-2 {
    flex:0 0 auto;
    width: 16.66%;
}

.col-md-3 {
    flex:0 0 auto;
    width: 25%;
}

.col-md-4 {
    flex:0 0 auto;
    width: 33.33%;
}

.col-md-5 {
    flex:0 0 auto;
    width: 41.66%;
}

.col-md-6 {
    flex:0 0 auto;
    width: 50%;
}

.col-md-7 {
    flex:0 0 auto;
    width: 58.33%;
}

.col-md-8 {
    flex:0 0 auto;
    width: 66.66%;
}

.col-md-9 {
    flex:0 0 auto;
    width: 75%;
}

.col-md-10 {
    flex:0 0 auto;
    width: 83.33%;
}

.col-md-11 {
    flex:0 0 auto;
    width: 91.66%;
}

.col-md-12 {
    flex:0 0 auto;
    width: 100%;
}

.row-striped:nth-of-type(odd){
  background-color: #efefef;
}

.row-striped:nth-of-type(even){
  background-color: #ffffff;
}
.spinner{
    background-image: url(images/spinner.svg);
    width:38px;
    height: 36px;
    display:inline-block;
    margin-top: -21px;
    margin-bottom: -4px;
}
.provider-item {
    padding: 10px;
    width: 100%;
}

    .provider-item > a > div {
        margin-bottom: 20px;
    }

.provider-item:hover{
    filter: invert(5%);
}
.provider-info {
    text-align:center
}
.provider-info a{
overflow: hidden;
white-space: nowrap;

}
.category-item {
    box-sizing:border-box;
}
.category-item:hover{
    filter: invert(5%);
}
.category-item .category-img {
    width: 100%;
    background:url(images/cellorange.png);
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2));
    background-size: 100%;
    background-repeat:no-repeat;
    height: 100%;
    /*max-width:200px*/
    overflow:hidden;
    position:relative;
    margin: 0 auto;
    text-align:center;
}
.category-item .category-img img {
    width:50%;
    /*position:absolute;*/
    left:0;
    margin:auto auto;
    margin-top:5%;
}
    /* .category-item a
    {
        display:inline;
    } */
    .category-img label {
        display: block;
        color: #000000;
        /* padding-top: 5px; */
    }
.category-item h2 {
    font-size: 1.3em;
    margin: 0;
    padding: 5px 0px;
    font-weight: normal;
    overflow: hidden;
}
.category-info {
    text-align:center
}
.category-description {
      height: 35px;
      overflow:hidden;
}
.category-horizental .category-img {
    width: 40%;
    padding-bottom: 40%;
     float:left
}
.category-horizental .category-info  {
    float:left;
    padding:0px 10px
}
a {
        text-decoration: none;
        color: inherit;
}
.item-item {
    box-sizing:border-box;
    min-height:300px !important;
    max-height:300px !important;
}
.item-item:hover{
    filter: invert(5%);
}
.item-info {
    text-align:center
}
.item-item > .Item-img {
    margin: 0 auto;
    display: -webkit-box;
    width:150px;
    height:150px;
}

[class*="col-"] {
    /* width: 100%; */
    position: relative;
    min-height: 1px;
    /*padding-right: 15px;
    padding-left: 15px;*/
    float:left;
}
.MenuSide{ display: none; overflow: hidden; height: 100%; width:100%; left:0; top:0; z-index: 999; position: fixed}
.MenuList ul{
    height: 80px; 
    padding-right: 30px;
    box-sizing:border-box; 
    list-style-type:none;
} 
.MenuList>ul>li{margin:10px;}
.MenuList>ul>li>a{
    display: flex;
    flex-direction: column; /* icon on top, text below */
    align-items: center;    /* center align both */
    text-decoration: none;
    color: #000;            /* change as needed */
    font-size: 14px;
}
.MenuList a img {
  width: 28px;            /* adjust icon size */
  height: 28px;
  margin-bottom: 5px;     /* space between icon and text */
}

.MenuList a span {
  display: block;
  text-align: center;
}

.col-0 {flex:0 0 auto; width: 0%;}
.col-1 {flex:0 0 auto; width: 8.33%;}
.col-2 {flex:0 0 auto; width: 16.66%;}
.col-3 {flex:0 0 auto; width: 25%;}
.col-4 {flex:0 0 auto; width: 33.33%;}
.col-5 {flex:0 0 auto; width: 41.66%;}
.col-6 {flex:0 0 auto; width: 50%;}
.col-7 {flex:0 0 auto; width: 58.33%;}
.col-8 {flex:0 0 auto; width: 66.66%;}
.col-9 {flex:0 0 auto; width: 75%;}
.col-10 {flex:0 0 auto; width: 83.33%;}
.col-11 {flex:0 0 auto; width: 91.66%;}
.col-12 {flex:0 0 auto; width: 100%;}

@media only screen and (max-width: 400px)  {
    /* For Mobile portrait: */
    .col-xs-0 {width: 0%;}
    .col-xs-1 {width: 8.33%;}
    .col-xs-2 {width: 16.66%;}
    .col-xs-3 {width: 25%;}
    .col-xs-4 {width: 33.33%;}
    .col-xs-5 {width: 41.66%;}
    .col-xs-6 {width: 50%;}
    .col-xs-7 {width: 58.33%;}
    .col-xs-8 {width: 66.66%;}
    .col-xs-9 {width: 75%;}
    .col-xs-10 {width: 83.33%;}
    .col-xs-11 {width: 91.66%;}
    .col-xs-12 {width: 100%;}

    
}
@media only screen and (min-width: 400px) and (max-width: 992px) {
    /* For tablets: */
    .col-sm-0 {width: 0%;}
    .col-sm-1 {width: 8.33%;}
    .col-sm-2 {width: 16.66%;}
    .col-sm-3 {width: 25%;}
    .col-sm-4 {width: 33.33%;}
    .col-sm-5 {width: 41.66%;}
    .col-sm-6 {width: 50%;}
    .col-sm-7 {width: 58.33%;}
    .col-sm-8 {width: 66.66%;}
    .col-sm-9 {width: 75%;}
    .col-sm-10 {width: 83.33%;}
    .col-sm-11 {width: 91.66%;}
    .col-sm-12 {width: 100%;}
}
@media only screen and (max-width: 992px) {
    .divMenuIcon { display: block; }
    #divHeader{ text-align: center; }
    .MenuList,.MenuSide { display: none; }
    .MenuList {
        background: #fff;
        position: fixed;
        left:0;
        margin-top:85px;
    }
    #breadcrumbList{display: none;}
    
    
    .MenuList h3 {
        color: #afdefa;
        font-size: 1.9em;
        padding: 20px;
        margin: 0;
        font-weight: 300;
        background: #000000;
    }
    .MenuList>ul>li{width:100%;}
    .MenuList a {
        display: block;
        color: #fff;
        font-size: 1.1em;
        font-weight: 300;
    }

    .MenuList a:active {
        background: #afdefa;
        color: #47a3da;
    }

    /* Orientation-dependent styles for the content of the menu */

    .MenuList {
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 1000;
    }

    .MenuList a {
        border-bottom: 1px solid #f7a800;
        padding: 1em;
    }

    .MenuList.cbp-spmenu-open {
        left: 0px;
    }

    /* Push classes applied to the body */

    .cbp-spmenu-push {
        overflow-x: hidden;
        position: relative;
        left: 0;
    }

    .cbp-spmenu-push-toright {
        left: 240px;
    }

    .cbp-spmenu-push-toleft {
        left: -240px;
    }

    /* Transitions */

    .MenuList {
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
}

@media only screen and (min-width: 992px) {
    #breadcrumbBack {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    /* For desktop: */
    .col-md-1 {width: 8.33%;}
    .col-md-2 {width: 16.66%;}
    .col-md-3 {width: 25%;}
    .col-md-4 {width: 33.33%;}
    .col-md-5 {width: 41.66%;}
    .col-md-6 {width: 50%;}
    .col-md-7 {width: 58.33%;}
    .col-md-8 {width: 66.66%;}
    .col-md-9 {width: 75%;}
    .col-md-10 {width: 83.33%;}
    .col-md-11 {width: 91.66%;}
    .col-md-12 {width: 100%;}
}
@media only screen and (min-width: 1200px) {
    /* For desktop: */
    .col-lg-1 {width: 8.33%;}
    .col-lg-2 {width: 16.66%;}
    .col-lg-3 {width: 25%;}
    .col-lg-4 {width: 33.33%;}
    .col-lg-5 {width: 41.66%;}
    .col-lg-6 {width: 50%;}
    .col-lg-7 {width: 58.33%;}
    .col-lg-8 {width: 66.66%;}
    .col-lg-9 {width: 75%;}
    .col-lg-10 {width: 83.33%;}
    .col-lg-11 {width: 91.66%;}
    .col-lg-12 {width: 100%;}
}


.MenuIcon {
    position: relative;
    padding: 9px 10px;
    margin-top: 25px;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #f8f8f8;
}
.MenuIcon:hover {
    background-color: #ddd;
}
.MenuIcon span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin-top: 4px;
    background-color: #888;
}
#srch {
    padding-left: 40px;
    padding-right: 40px;
    background-image: url(images/Search.svg);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: left 3px;
    border-top-left-radius: 125px;
    border-bottom-left-radius: 125px;
    border: 0;
    width: 100%;
    height: 45px;
    background-color: #f7a800;
    margin-left: 275px;
    font-size: 1.4em;
}
.LoadingMoreSpinner {
    margin: 100px auto 0;
    width: 100%;
    height: 28px;
    padding-top:10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    display: none;
    background-color: rgba(117, 79, 30, 0.5);
  }
  
  .LoadingMoreSpinner > div {
    width: 18px;
    height: 18px;
    background-color: #f7a800;
  
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  }
  
  @-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bouncedelay {
    0%, 80%, 100% { 
      -webkit-transform: scale(0);
      transform: scale(0);
    } 40% { 
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
    }
  }
.loader {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 7000;
    background-color: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    text-align: center;
}
.socket {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -100px;
}

.hex-brick {
    background: #f7a800;
    width: 30px;
    height: 17px;
    position: absolute;
    top: 5px;
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}

.h2 {
    transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
}

.h3 {
    transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
}
.hex-brick-v {
    background: #f7a800;
    width: 26px;
    height: 15px;
    position: absolute;
    top: 6px;
    left:2px;
    right:2px;
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
}
.v2 {
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
}

.v3 {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.gel {
    height: 30px;
    width: 30px;
    transition: all .3s;
    -webkit-transition: all .3s;
    position: absolute;
    top: 50%;
    left: 50%;
}

.center-gel {
    margin-left: -15px;
    margin-top: -15px;
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
}
.left-gel {
    margin-left: -50px;
    margin-top: -15px;
    -webkit-animation-delay: -0.4 !important;
    animation-delay: -0.4s !important;
    animation-name: pulse;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
}
.right-gel {
    margin-left: 20px;
    margin-top: -15px;
    animation-name: pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-delay: 0;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: 0.2s !important;
}

.c1 {
    margin-left: -47px;
    margin-top: -15px;
}

.c2 {
    margin-left: -31px;
    margin-top: -43px;
}

.c3 {
    margin-left: 1px;
    margin-top: -43px;
}

.c4 {
    margin-left: 17px;
    margin-top: -15px;
}

.c5 {
    margin-left: -31px;
    margin-top: 13px;
}

.c6 {
    margin-left: 1px;
    margin-top: 13px;
}

.c7 {
    margin-left: -63px;
    margin-top: -43px;
}

.c8 {
    margin-left: 33px;
    margin-top: -43px;
}

.c9 {
    margin-left: -15px;
    margin-top: 41px;
}

.c10 {
    margin-left: -63px;
    margin-top: 13px;
}

.c11 {
    margin-left: 33px;
    margin-top: 13px;
}

.c12 {
    margin-left: -15px;
    margin-top: -71px;
}

.c13 {
    margin-left: -47px;
    margin-top: -71px;
}

.c14 {
    margin-left: 17px;
    margin-top: -71px;
}

.c15 {
    margin-left: -47px;
    margin-top: 41px;
}

.c16 {
    margin-left: 17px;
    margin-top: 41px;
}

.c17 {
    margin-left: -79px;
    margin-top: -15px;
}

.c18 {
    margin-left: 49px;
    margin-top: -15px;
}

.c19 {
    margin-left: -63px;
    margin-top: -99px;
}

.c20 {
    margin-left: 33px;
    margin-top: -99px;
}

.c21 {
    margin-left: 1px;
    margin-top: -99px;
}

.c22 {
    margin-left: -31px;
    margin-top: -99px;
}

.c23 {
    margin-left: -63px;
    margin-top: 69px;
}

.c24 {
    margin-left: 33px;
    margin-top: 69px;
}

.c25 {
    margin-left: 1px;
    margin-top: 69px;
}

.c26 {
    margin-left: -31px;
    margin-top: 69px;
}

.c27 {
    margin-left: -79px;
    margin-top: -15px;
}

.c28 {
    margin-left: -95px;
    margin-top: -43px;
}

.c29 {
    margin-left: -95px;
    margin-top: 13px;
}

.c30 {
    margin-left: 49px;
    margin-top: 41px;
}

.c31 {
    margin-left: -79px;
    margin-top: -71px;
}

.c32 {
    margin-left: -111px;
    margin-top: -15px;
}

.c33 {
    margin-left: 65px;
    margin-top: -43px;
}

.c34 {
    margin-left: 65px;
    margin-top: 13px;
}

.c35 {
    margin-left: -79px;
    margin-top: 41px;
}

.c36 {
    margin-left: 49px;
    margin-top: -71px;
}

.c37 {
    margin-left: 81px;
    margin-top: -15px;
}

.r1 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .2s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .2s;
}

.r2 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .4s;
}

.r3 {
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .6s;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .6s;
}

.r1 > .hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .2s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .2s;
}

.r2 > .hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .4s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .4s;
}

.r3 > .hex-brick {
    animation-name: fade;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-delay: .6s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-delay: .6s;
}


@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.01);
        transform: scale(0.01);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes fade {
    0% {
        background: #f7a800;
        border: 3px solid #754F1;
    }

    50% {
        background: #754F1;
    }

    100% {
        background: #f7a800;
        border: 3px solid #754F1;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.01);
        transform: scale(0.01);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes fade {
    0% {
        background: #f7a800;
        border: 3px solid #754F1;
    }

    50% {
        background: #754F1;
    }

    100% {
        background: #f7a800;
        border: 3px solid #754F1;
    }
}


/* Scanner */
.overlay--inline {
    display: none;
}

    .overlay--inline.show {
        display: block;
    }

@media (max-width: 603px) {
    .controls {
        flex-direction: column;
        align-items: stretch;
    }

        .controls .readers {
            margin-left: 0;
            margin-top: 1em;
        }
}
.overlay {
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index:10;
}

.overlay__content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.overlay__close {
    position: absolute;
    right: 0;
    padding: 0.5rem;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    background-color: white;
    cursor: pointer;
    border: 3px solid black;
    font-size: 1.5rem;
    margin: 1rem;
    border-radius: 2rem;
    z-index: 100;
    box-sizing: content-box;
}

.overlay__content video {
    width: 100%;
    height: 100%;
    display: inline;
    object-fit: fill;
}
.provider-body img{
    width:16px;
    height:16px;
}
#Brand{
    display: flex;
}
#brand img{
    height: 80px;
    margin-left: 10px;
    margin-right: 10px;
}
#brand h2{
    margin: auto 0;
}
.Cart {
    padding-top: 35px;
    padding-right: 30px;
}
.itemQty {
    margin: 0 auto;
    position: relative;
    display: inline-block;
}
    .itemQty > a, .itemQty > div {
        display: inline-block;
        width: 30px;
        height: 27px;
        position: relative;
        text-align: center;
    }

.hex-plus {
    position: relative;
    width: 30px;
    height: 26px;
}
.hex-minus {
    position: relative;
    width: 30px;
    height: 26px;
}
.hex-minus:before, .hex-minus:after {
    content: "";
    position: absolute;
    background-color: white;
    transition: transform 0.25s ease-out;
}

.hex-minus:before {
    top: 50%;
    left: 25%;
    width: 50%;
    height: 4px;
    margin-top: -2px;
}

.hex-plus:before, .hex-plus:after {
    content: "";
    position: absolute;
    background-color: white;
    transition: transform 0.25s ease-out;
}
.hex-plus:before {
    top: 25%;
    left: 50%;
    width: 4px;
    height: 50%;
    margin-left: -2px;
}

.hex-plus:after {
    top: 50%;
    left: 25%;
    width: 50%;
    height: 4px;
    margin-top: -2px;
}
.cartOrder{
   margin-bottom: 5px; 
}
.cartOrder .cartOrderHeader{
    background-color: #f7a800;
    height: 22px;
    padding:7px;
    border-radius: 8px;
}
#head {
    height: 170px;
    position: fixed;
    top: 0;
    transition: top 0.3s ease-in-out;
    width: 100%;
    z-index: 5;
    background: linear-gradient(rgba(241, 242, 242, 0.9), rgba(241, 242, 242, 0.9)), url("images/horizental-bg.png");
    background-size:auto;
    background-repeat: no-repeat;
    background-position: bottom;

}
.nav-up {
    top: -80px !important;
}
#breadcrumbBack{
    fill: #000000; 
}
#breadcrumbBack img{
    width:35px;
    height:35px;
}
#barcodeScanner{
    position: absolute;
    top:0;
    right:0;
}
#barcodeScanner img{
    width:35px;
    height:35px;
    margin-left: 5px;
    margin-right: 5px;
}
.btnFilternSort img{
    width:35px;
    height:35px;
}
/* Style the list */
#breadcrumbList ul {
    display: flex;
    padding: 10px 20px;
    list-style: none;
    color: #000000;
}
  
  /* Display list items side by side */
  #breadcrumbList ul li {
      display: inline;
      font-size: 20px;
  }
  
  /* Add a slash symbol > before/behind each list item */
  #breadcrumbList ul li+li:before {
    padding: 8px;
    
    content: ">";
  }
  
  /* Add a color to all links inside the list */
  #breadcrumbList ul li a {
    color: #000000;
    text-decoration: none;
  }
  
  /* Add a color on mouse-over */
  #breadcrumbList ul li a:hover {
    color: #01447e;
    text-decoration: underline;
  }

  .orderHeader {
    background-color: #f7a800;
  }

  .MyOrdersDetail{
      display: inline-block;
      width:100%;
  }
  .MyOrdersDetail .Item-img{
    display: inline-block;
    width:80px;
  }
  .MyOrdersDetail .item-Desc{
    display: inline-block;
    margin-top:15px;
  }

.category-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-btn {
    text-align: left;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #ccc;
    background: #f9f9f9;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
}

    .category-btn:hover,
    .category-btn.active {
        background: #e0e0e0;
    }

.container-fluid {
    height: 100%;
    width: 100%;
}

#firmsbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.firms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px;
}

.provider-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

    .provider-card:hover {
        transform: translateY(-4px);
    }
.provider-image {
    height: 150px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.provider-image a{
    display:block;
}
    .provider-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: fill;
    }

.provider-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 16px;
}

    .provider-body h5 {
        font-size: 18px;
        font-weight: bold;
        margin: 0 0 6px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }

    .provider-body p {
        margin: 4px 0;
        font-size: 14px;
        color: #555;
    }

    .provider-body a {
        font-size: 13px;
        word-break: break-word;
    }

.view-button {
    display: block;
    text-align: center;
    background: #4CAF50;
    color: white;
    padding: 8px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

.text-center{
    text-align: center;
}

.list-group-item {
    font-size: 14px;
    white-space: normal; 
}

.list-group {
    border-radius: 6px;
}

.list-group-item.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}
.card {
    height:100%;
    background-color:#fff;
}
.card > div {
    position: relative;
}
.card > div > p {
    height: 18px;
}

.card-img-box {
    width: 100%;
    height: 160px;
    overflow: hidden; 
}

    .card-img-box img {
        width: 100%;
        height: 100% !important; 
        object-fit: contain; 
    }

.card-title-box {
    min-height: 38px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 3px;
}
    .card-title-box h5 {
        margin: 0;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 18px;
    }
    .card-title-box h6 {
        margin: 0;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 30px;
        margin-top:2px;
    }

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 4px !important;
}

.m-2 {
    margin: 8px !important;
}

.m-3 {
    margin: 16px !important;
}

.m-4 {
    margin: 24px !important;
}

.m-5 {
    margin: 48px !important;
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.mx-1 {
    margin-right: 4px !important;
    margin-left: 4px !important;
}

.mx-2 {
    margin-right: 8px !important;
    margin-left: 8px !important;
}

.mx-3 {
    margin-right: 16px !important;
    margin-left: 16px !important;
}

.mx-4 {
    margin-right: 24px !important;
    margin-left: 24px !important;
}

.mx-5 {
    margin-right: 48px !important;
    margin-left: 48px !important;
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}

.my-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.my-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}

.my-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

.my-5 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 4px !important;
}

.mt-2 {
    margin-top: 8px !important;
}

.mt-3 {
    margin-top: 16px !important;
}

.mt-4 {
    margin-top: 24px !important;
}

.mt-5 {
    margin-top: 48px !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 4px !important;
}

.me-2 {
    margin-right: 8px !important;
}

.me-3 {
    margin-right: 16px !important;
}

.me-4 {
    margin-right: 24px !important;
}

.me-5 {
    margin-right: 48px !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 4px !important;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.mb-3 {
    margin-bottom: 16px !important;
}

.mb-4 {
    margin-bottom: 24px !important;
}

.mb-5 {
    margin-bottom: 48px !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 4px !important;
}

.ms-2 {
    margin-left: 8px !important;
}

.ms-3 {
    margin-left: 16px !important;
}

.ms-4 {
    margin-left: 24px !important;
}

.ms-5 {
    margin-left: 48px !important;
}

.ms-auto {
    margin-left: auto !important;
}

.m-n1 {
    margin: -4px !important;
}

.m-n2 {
    margin: -8px !important;
}

.m-n3 {
    margin: -16px !important;
}

.m-n4 {
    margin: -24px !important;
}

.m-n5 {
    margin: -48px !important;
}

.mx-n1 {
    margin-right: -4px !important;
    margin-left: -4px !important;
}

.mx-n2 {
    margin-right: -8px !important;
    margin-left: -8px !important;
}

.mx-n3 {
    margin-right: -16px !important;
    margin-left: -16px !important;
}

.mx-n4 {
    margin-right: -24px !important;
    margin-left: -24px !important;
}

.mx-n5 {
    margin-right: -48px !important;
    margin-left: -48px !important;
}

.my-n1 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
}

.my-n2 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
}

.my-n3 {
    margin-top: -16px !important;
    margin-bottom: -16px !important;
}

.my-n4 {
    margin-top: -24px !important;
    margin-bottom: -24px !important;
}

.my-n5 {
    margin-top: -48px !important;
    margin-bottom: -48px !important;
}

.mt-n1 {
    margin-top: -4px !important;
}

.mt-n2 {
    margin-top: -8px !important;
}

.mt-n3 {
    margin-top: -16px !important;
}

.mt-n4 {
    margin-top: -24px !important;
}

.mt-n5 {
    margin-top: -48px !important;
}

.me-n1 {
    margin-right: -4px !important;
}

.me-n2 {
    margin-right: -8px !important;
}

.me-n3 {
    margin-right: -16px !important;
}

.me-n4 {
    margin-right: -24px !important;
}

.me-n5 {
    margin-right: -48px !important;
}

.mb-n1 {
    margin-bottom: -4px !important;
}

.mb-n2 {
    margin-bottom: -8px !important;
}

.mb-n3 {
    margin-bottom: -16px !important;
}

.mb-n4 {
    margin-bottom: -24px !important;
}

.mb-n5 {
    margin-bottom: -48px !important;
}

.ms-n1 {
    margin-left: -4px !important;
}

.ms-n2 {
    margin-left: -8px !important;
}

.ms-n3 {
    margin-left: -16px !important;
}

.ms-n4 {
    margin-left: -24px !important;
}

.ms-n5 {
    margin-left: -48px !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 4px !important;
}

.p-2 {
    padding: 8px !important;
}

.p-3 {
    padding: 16px !important;
}

.p-4 {
    padding: 24px !important;
}

.p-5 {
    padding: 48px !important;
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.px-1 {
    padding-right: 4px !important;
    padding-left: 4px !important;
}

.px-2 {
    padding-right: 8px !important;
    padding-left: 8px !important;
}

.px-3 {
    padding-right: 16px !important;
    padding-left: 16px !important;
}

.px-4 {
    padding-right: 24px !important;
    padding-left: 24px !important;
}

.px-5 {
    padding-right: 48px !important;
    padding-left: 48px !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.py-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.py-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.py-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

.py-5 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 4px !important;
}

.pt-2 {
    padding-top: 8px !important;
}

.pt-3 {
    padding-top: 16px !important;
}

.pt-4 {
    padding-top: 24px !important;
}

.pt-5 {
    padding-top: 48px !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 4px !important;
}

.pe-2 {
    padding-right: 8px !important;
}

.pe-3 {
    padding-right: 16px !important;
}

.pe-4 {
    padding-right: 24px !important;
}

.pe-5 {
    padding-right: 48px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 4px !important;
}

.pb-2 {
    padding-bottom: 8px !important;
}

.pb-3 {
    padding-bottom: 16px !important;
}

.pb-4 {
    padding-bottom: 24px !important;
}

.pb-5 {
    padding-bottom: 48px !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 4px !important;
}

.ps-2 {
    padding-left: 8px !important;
}

.ps-3 {
    padding-left: 16px !important;
}

.ps-4 {
    padding-left: 24px !important;
}

.ps-5 {
    padding-left: 48px !important;
}

.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: #374151;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.3125rem 0.625rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    transition: none;
}

    .btn:hover {
        color: #374151;
    }

    .btn-check:focus + .btn, .btn:focus {
        outline: 0;
        box-shadow: 0;
    }

    .btn-check:checked + .btn, .btn-check:active + .btn, .btn:active, .btn.active {
        box-shadow: 0;
    }

        .btn-check:checked + .btn:focus, .btn-check:active + .btn:focus, .btn:active:focus, .btn.active:focus {
            box-shadow: 0, 0;
        }

    .btn:disabled, .btn.disabled, fieldset:disabled .btn {
        pointer-events: none;
        opacity: 0.5;
        box-shadow: none;
    }

.btn-link {
    font-weight: 400;
    color: #017e84;
    text-decoration: none;
}

    .btn-link:hover {
        color: #01585c;
        text-decoration: none;
    }

    .btn-link:focus {
        text-decoration: none;
    }

    .btn-link:disabled, .btn-link.disabled {
        color: #5f636f;
    }
.btn-group{
    display: inline-block;
}
.btn-group img {
    width: 30px;
}
.btnFilternSort {
    display: none;
}
.btn-lg, .btn-group-lg > .btn {
    padding: 0.375rem 0.75rem;
    font-size: 1.09375rem;
    border-radius: 0.25rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.1875rem 0.5rem;
    font-size: 0.8125rem;
    border-radius: 0.1875rem;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}


.rounded {
    border-radius: 0.25rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

#itemsbody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

#itemGroupsRow {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    overflow-x: clip;
}

.item-image {
    height: 360px; 
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 1;
}
.item-thumbs{
    width:100px;
    
}

.item-thumbs img{
  width:72px; 
  height:72px; 
  border-radius:10px;
  border:2px solid #eee; 
  cursor:pointer; 
  opacity:.9; 
  flex:0 0 auto;
  object-fit: contain;
}

.item-item-thumbs img.active{
    border-color:#f7a800; 
    opacity:1;
}

.item-modal__desc{
  max-height:240px; 
  overflow:auto; 
  background:#fafafa; 
  border:1px solid #eee;
  border-radius:10px; 
  padding:12px; 
  line-height:1.65;
}

.btn-qty-round{
  width:40px;
  height:40px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #e3e3e3;
  background:#fff;
  font-weight:700;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}

.btn-qty-round:active{
    transform:translateY(1px)
}


#imMain {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.item-modal__desc {
    height: 360px;
    overflow: auto;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    line-height: 1.65;
    box-sizing: border-box;
}

#imName {
    margin: 0 0 6px 0;
    font-weight: 700
}
.category-row {
    --cols: 6; 
    --gap: 50px; 
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    margin: 0 auto;
    max-width: 1360px;
    justify-content: center;
}

    .category-row .category-item {
        float: none;
        flex: 0 0 calc((100% - (var(--cols) - 1)*var(--gap)) / var(--cols));
        max-width: calc((100% - (var(--cols) - 1)*var(--gap)) / var(--cols));
        display: flex;
        justify-content: center;
        align-items: center;
        aspect-ratio: 900/782;
    }

    .category-row .category-img {
        text-align: center;
    }

@media (max-width: 991.98px) { 
    .category-row {
        --cols: 5;
        --gap: 10px;
    }
}

@media (max-width: 767.98px) { 
    .category-row {
        --cols: 4;
        --gap: 10px;
    }
}

@media (max-width: 575.98px) { 
    .category-row {
        --cols: 3;
        --gap: 10px;
    }
}

.offers-wrap {
    position: relative;
    clear: both; 
    margin: 8px 0 24px;
    padding: 0 52px; 
}

.offers-viewport {
    overflow: hidden;
    border-radius: 16px;
    background: #f6f6f6; 
}

.offers-track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform;
}

.offer-slide {
    position: relative;
    min-width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    inset: 0;
    opacity: .95;
}

.offer-bg img{
    height:100%;
    width:100%;
}
.offer-content {
    position: relative;
    z-index: 1;
    padding: 28px 28px 28px 32px;
}

.offer-badge {
    display: inline-block;
    background: #ffeb3b;
    color: #000;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.offer-title {
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
}

.offer-cta {
    display: inline-block;
    border: 2px solid #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.offers-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
    cursor: pointer;
    z-index: 2;
}

.offers-prev {
    left: 6px;
}

.offers-next {
    right: 6px;
}

@media (max-width: 992px) {
    .offer-title {
        font-size: 26px;
    }

    .offers-wrap {
        padding: 0 44px;
    }

    .offer-slide {
        height: 180px;
    }
    #head{
        height:130px;
    }
    #mainContent{
        padding-top: 120px;
        margin: 10px;
    }
    #itemsbody{
        grid-template-columns:repeat(auto-fill, minmax(110px, 1fr));
        gap: 10px;
    }
    #srch {
        padding-left: 30px;
        padding-right: 30px;
        background-size: 30px;
        height: 35px;
        background-color: #f7a800;
        margin-left: 0;
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .offer-title {
        font-size: 22px;
    }

    .offer-cta {
        font-size: 14px;
    }

    .offers-wrap {
        padding: 0 40px;
    }
}
.shops-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0 12px 8px;
}

.section-title {
    margin: 0;
    font-weight: 700;
    letter-spacing: .2px;
    font-size: clamp(18px, 2.2vw, 22px);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .section-title .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0d6efd;
        display: inline-block;
    }

.shops-slider {
    position: relative;
}
.shops-wrap {
    position: relative;
    margin: 24px 0;
}

.shops-wrap {
    position: relative;
    margin: clamp(16px, 3vw, 32px) auto;
    padding-inline: clamp(8px, 2vw, 16px);
    isolation: isolate; 
    margin-bottom: clamp(32px, 1vw, 72px); 
}

.shops-viewport {
    overflow: hidden;
    touch-action: pan-y;
    margin-left: 35px;
    margin-right: 35px;
}

.shops-track {
    display: flex;
    gap: 16px;
    padding: 8px 4px 16px;
    transition: transform .35s ease; 
    will-change: transform;
}

.shop-card {
    flex: 0 0 clamp(250px, 28vw, 320px);
    height: clamp(250px, 36vw, 200px);
    display: flex;
    flex-direction: column;
}

.shops-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    cursor: pointer;
    z-index: 2;
}

.shops-prev {
    left: 8px;
}

.shops-next {
    right: 8px;
}

.shops-nav:disabled {
    opacity: .4;
    cursor: default;
}
.imgLogo{
    background-image:url(images/Logo.svg);
    background-repeat: no-repeat;
}
.headerLogo{
    height: 120px;
    margin-left:20px;
    margin-right:20px;
    margin-top:10px;
}
.footerLogo{
    width:240px;
    margin-bottom:10px;
    margin-right: calc(var(--bs-gutter-x) * .5);
    margin-left: calc(var(--bs-gutter-x) * .5);
}
.footerCR{
    text-align: center;
    direction:ltr;
    height: 28px;
}
.footer h3{
    font-size: 18px !important;
    line-height: 23px;
    margin: 0 0 24px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
    margin-left: 0px;
    font-weight: 700;
    pointer-events: none;
}
.socialicons{
    display: flex;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;
}
.socialicons img{
    height:22px;
    
}
.mobileApps img{
    height:40px;
    width:135px;
}
.img-fluid {
    max-height:340px;
    object-fit:contain;
}
.items-side {
    width: calc(100% - 250px);
}
.filter-side {
    width:250px;
}
@media (max-width: 570px) {
    .items-side {
        width: 100%;
    }
    .filter-side {
        display:none;
    }
}
.hdnbutton{
    width:0px;
    height:0px; 
    padding:0; 
    border-width:0px;
}
.searchside {
    display: block;
    width:100%;
}
.searchside form {
    width: 100%;
}
.footersections>div{
    padding: 15px;
}
.text {
    text-align: justify;
}
.category-item>a {
    width:100%;
    height:100%;
}

@media screen and (min-width: 1500px) {
    #itemsbody {
    grid-template-columns:repeat(auto-fill, minmax(calc(16.8% - 20px), 1fr))
}
}
@media screen and (max-width: 992px) {
    .headerLogo {
        height: 80px;
        margin-top:0;
        margin-left:0;
        margin-right:0;
    }
    .MenuList>ul>li>a{
        flex-direction: row;
    }
    .MenuList a span {
        margin-left:7px;
        margin-right:7px;
    }
}
.header-row{
    width:100%; 
    background-color:#000000; 
    border-bottom:4px solid #f7a800; 
    height:40px; 
    display:inline-block;
}



.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-box {
  background-image: url(images/cellorange.png);
  background-size:contain;
  background-repeat: no-repeat;
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 350px;
  text-align: center; 
}

.popup-box header {
  font-size: 2.5rem;
  font-weight:bold;
  height:20%;
}

/* .popup-box label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #000000;
} */

.popup-box input,
.popup-box select,
.popup-box textarea {
  height:35px;
  padding: 0px;
  border-radius: 6px;
}


.phone-control {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 400px;
}
.phone-control select{
  width: 25%;
}
.phone-control input{
  width: 75%;
}

.phone-select,
.phone-input {
  width: 48%;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  background-color: #fafafa;
  outline: none;
  transition: border-color 0.3s ease;
}

.phone-select:focus,
.phone-input:focus {
  border-bottom-color: #f7a800; 
}

.phone-input::placeholder {
  color: #999;
}


.error-message {
  color: #d60000;
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
}


.btn {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin: 10px;
}

.btn-send {
  background-color: #000000;
  color: white;
}

.btn-close {
  background-color: #ccc;
  color: black;
}


.field-group {
  position: relative;
}
button:disabled {
  background-color: #ccc !important;
  cursor: not-allowed;
  opacity: 0.7;
}

.error-message {
  color: #d60000;
  font-size: 13px;
  margin-bottom: 4px;
  display: block;
}

.popup-actions button:hover {
  filter: brightness(85%); 
}


.btn-send:hover {
  background-color: #5a3a15; 
}


.btn-close:hover {
  background-color: #999; 
}

.popup-close {
  position: absolute;
  top: 10px; right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/**/
.countryicon{
    border-radius: 10px;;
}
.text-muted{
    text-decoration-line: line-through;
    color:#333;
    font-size: 0.8em;
}
.item-rating{
    font-size: 12px;
    height: 17px;
}
.item-rating > div{
    width: 40px;
    text-align: center;
    border-radius: 20px;
    background-color: #ececec;
    display: inline-block;
    padding-right: 2px;
    padding-left: 2px;
}
.item-rating > span {
    color: #cbcbcb;
    margin-left: 5px;
    margin-right: 5px;
}
.item-action {
    background-color: #f2f2f2;
    width:36px;
    height:36px;
    border-radius: 99px;
    vertical-align:middle;
    position: absolute;
    right:10px;
    margin-top: -20px;
}
.item-action img {
    vertical-align:middle;
    width:24px;
}
.flex-center{
    align-items:center;
    display: flex;
    justify-content: center;
}
.disountedPrice {
    color: #ee2d64;   
}
.favourite-item {
    position: absolute;
    right:10px;
    margin-top: 5px;
}
.favourite-item img{
    width: 22px;
    height: 22px;
}
.item-variants {
  display: flex;
  flex-direction: column; /* stack title and options vertically */
  gap: 8px; /* space between title and options */
}

.item-variants h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.item-variants > div {
  display: flex;
  flex-wrap: wrap; /* allow buttons to wrap */
  gap: 10px;
}

.item-variants a {
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 12px;
  color: #333;
  background: #f8f8f8;
  transition: all 0.2s ease;
}

.item-variants a:hover {
  background: #e8e8e8;
}

.item-variants a.active {
  background: #ffda33;
  border-color: #e0b000;
  font-weight: bold;
}
/**/


.otp-input {
  width: 35px;
  height: 45px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: none; 
  border-bottom: 3px solid #ccc; 
  outline: none; 
  -moz-appearance: textfield;
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.otp-input:focus {
  border-bottom-color: #ffda33; 
}


.btn-secondary {
  background-color: #f0f0f0; 
  color: #e6e4e4; 
  border: 1px solid #ccc; 
}


.btn-secondary:hover {
  background-color: #898787;
}

.popup-content{
    margin: auto auto;
    width:65%;
}

.popup-actions {
  display: flex; 
  justify-content: center;
  gap: 10px; 
  margin-left: auto;
  margin-right: auto;
  width:70%;
  height:20%;
}

.popup-actions button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  max-height: 50px;
  transition: background-color 0.2s;
}


.popup-actions .btn-primary {
  background-color: #ffc107; 
  color: #333;
}
.popup-actions .btn-primary:hover {
  background-color: #e0a800;
}


.popup-actions .btn-secondary {
  background-color: #f0f0f0;
  color: #e0a800;
}
.popup-actions .btn-secondary:hover {
  background-color: #e0e0e0;
}

.popup-actions button {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background-color: #000000;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.otp-container {
  display: flex;
  justify-content: center;
  gap: 5px; 
}

.otp-input {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 8px;    
  outline: none;
  -moz-appearance: textfield;
}


.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.otp-input:focus {
  border-color: #333; 
  box-shadow: 0 0 5px rgba(0,0,0,0.2); 
}





#resendBtn {
  background: none;
  border: none;
  color: #000000; 
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}
#resendBtn:hover {
  text-decoration: underline;
}



.otp-input-area {
  display: flex;
  justify-content: center; 
  align-items: center;  
  gap: 5px; 
  margin-top:35px;
}


.btn-clear-otp {
  background-color: #f0f0f0; 
  color: #555; 
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-clear-otp:hover {
  background-color: #e0e0e0;
}


.otp-timer-section {
  text-align: center; 
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

#registerPopup .popup-box,
#addressPopup .popup-box {
  width: 560px; 
  height: 485px;
  text-align: center; 
}
#languagePopup .popup-content, #countryPopup .popup-content{
    height:75%;
    width:50%;
} 
.popup-box input{
    text-align: center;
}
.telcontrollabel {
    top: -25px !important;
    left:0;
    color: #000000;
    font-weight: bold;
    margin-top:0px;
}
.lang-list {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-y: auto;
}

.lang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    margin: 6px auto;
    font-size: 15px;
    transition: 0.2s;
    width:100%;
}

.lang-item:hover {
    background: #f2f2f2;
}

/* Selected language */
.lang-item.selected {
    background: #ffe9b0;
    border: 1px solid #f7c453;
    font-weight: bold;
}

.lang-item .check {
    color: #000;
    font-weight: bold;
}
#map{
    border-radius: 10px;
}