
/* loader css */

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .card{
    box-shadow: 0 0 30px rgb(214 215 216 / 60%);
  }
  .promoDiv{
    position: relative;
    border-radius: 3px;
    border: 1px solid #777777;
  }
  .cancelPromo{
    position: absolute;
    top: -5px;
  }
  
  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 1.5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }

  .c-secondary{
    color: #17b9e9;
  }
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    transform: rotate(
      -45deg) translate(-5px, 5px);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }

  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
      background: radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0, .8));
  
    background: -webkit-radial-gradient(rgba(20, 20, 20,.8), rgba(0, 0, 0,.8));
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
  }
  
  /* Animation */
  
  @-webkit-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-o-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  
.theme-btn{
    background-color: #17b9e9 !important;
    border: 0;
    padding: 10px 32px !important;
    color: #fff !important  ;
    border-radius: 4px;
}


.primary-c{
color: #f3723f;
}

.addressContainer{
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.qty-input{
    width: 100%;
    border-radius: 7px;
    border: 1px solid;
}
.cart-title{
    font-size: 20px;
    font-weight: bold;
    color: #f3723f;
}
.secondary-c{
    color: #248853;
}
/* .secondary-c{

} */

.smallTxt{
  font-size: 16px;
}

.c-pointer{
    cursor: pointer;
}

 .nav-items{
     display: flex;
     justify-content: center;
     align-items: center;
     color: white;
 }
 .nav-items i{
     font-size: 21px;
 }
 .f-s-21{
     font-size: 20px;
    
 }
 .stickyNav{
     position: sticky;
     top: 0;
 }
 
 .c-white{
     color: white !important;
 }
 
 .phone_numF{
     color: white;
  
 }

 .bullet-point:before {
    content: '\279C';
    top: -1px;
    color: #FF6600;
    padding-right: 8px;
 }


 .phone_numF:hover{
     color: white;
     
 }

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color:#000000 !important;
    opacity:1 !important;
  }
  
 :-ms-input-placeholder { /* Internet Explorer 10-11 */
     color:#000000 !important;
  }
  
 ::-ms-input-placeholder { /* Microsoft Edge */
     color:#000000 !important;
  }

  .phone_num{
    color: #777777;
    text-decoration: none;
  }
  .phone_num:hover{
      text-decoration: none;
      color: #777777;
  }


@media only screen and (max-width: 767px) {


 .nav-item{
    justify-content: flex-start;
}

}