/* Orange colors */
/* OLD: rgb(203,65,2) */
/* Orange: #FE6902 */ /* Dark orange: #e75e00 */

/* 
background: rgb(254,105,2);
background: linear-gradient(90deg, rgb(254,105,2) 0%, rgb(203,65,2) 78%);

rgb(254,105,2) - LIGHT ORANGE
MEDIUM ORANGE: #ea4900
rgb(203,65,2) - DARK ORANGE

#f6f6f6/#f5f5f5 - LIGHT GRAY
#f1f1f1 - DARK GRAY
*/

body {
    margin: 0;
    padding: 0 !important;
    font-family: sans-serif;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    top: 0px !important; 
    overscroll-behavior: none; /* prevents pull to refresh */
    height: 100%; /* prevent hide url bar */
}

#root {
    height: 100%; /* prevent hide url bar */
}

.cursor-pointer-onhover:hover {
    cursor: pointer;
}

/* Pulse btn */
.pulse {
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.16);
    animation: pulse 2s infinite;
}

.pulse:hover {
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.16);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.16);
    }
}


/* Page preloader */
.is-loading {
    width: 60px !important;
    height: 60px !important;
    position: fixed;
    top: calc(50% - 10px);
    left: calc(50% - 30px);
    color: #FE6902 !important;
    z-index: 1;
  }
  
.is-loading-colored-only {
    width: 60px !important;
    height: 60px !important;
    /* position: fixed; */
    top: calc(50% - 10px);
    left: calc(50% - 30px);
    color: #FE6902 !important;
    z-index: 1;
  }

/* Arrow up */
.ordered-arrow-up {
    margin: 0 auto;
    width: 0px;
    height: 0px;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-bottom: 17px solid #ea4900;
}

/* Product image */
img.productImage {
    height: 200px;
    width: 100%;
    margin: 0 !important;
    object-fit: cover;
}

/* Add to cart tooltip */
div[role="tooltip"] .MuiTooltip-tooltip {
    font-size: 16px;
    padding: 10px;
    box-shadow: 2px 2px 7px 0px #000000;
    white-space: nowrap;
    border-bottom: 2px solid #FE6902;
    background-color: rgba(0, 0, 0, 0.87);
    white-space: normal;
}

div[role="tooltip"] .MuiTooltip-arrow {
    color: rgba(0, 0, 0, 0.87);
    font-size: 8px;
}

.tooltip-text-align-center div[role="tooltip"] .MuiTooltip-tooltip  {
    text-align: center;
}


/* Google translate */
.goog-te-banner-frame.skiptranslate,
#goog-gt-tt {
    display: none !important;
} 

.skiptranslate.goog-te-gadget {
    color: transparent;
}

.skiptranslate.goog-te-gadget span {
    display: none;
}

#gTanslateElem select {
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 0;
    outline: none;
}

.goog-text-highlight {
    background: inherit !important;
    position: inherit !important;
    box-shadow: inherit !important;
}


/* Lightbox image gallery */
.ReactModalPortal > div {
    z-index: 1100 !important;
}

/* Cart ordered - Progress */
 .progress {
    border: 0;
    clear: both;
    display: block;
    margin: 2.4rem auto;
    text-align: center;
    width: 100%;

    background: rgba(1, 15, 30, 0.1);
    height: 1px;
    overflow: hidden;
    position: relative;
  }
  
  .progress::before {
    animation-duration: 2s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-name: progress;
    background-image: linear-gradient( 95deg,rgb(255, 151, 87) 0%,rgb(255, 148, 56) 50%,rgb(255, 129, 0) 100%);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    width: 80px;
  }
  
  @keyframes progress {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(100vw);
    }
  }


 /* MAIN Prelaoder */
#load {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#load:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #ea4900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* Common */
/* ribbon */
.box {
    width: 200px; height: 300px;
    position: relative;
    border: 1px solid #BBB;
    background: #EEE;
  }
  .ribbon {
    position: absolute;
    right: -5px; top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px; height: 75px;
    text-align: right;
  }
  .ribbon-image-subcat {
    right: -1px !important;
    top: -1px !important;
  }
  .ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #f76a05;
    background: linear-gradient(#f76a05 0%, #8f4008 100%);
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px; right: -21px;
    letter-spacing: 1px;
  }
  .ribbon span::before {
    content: "";
    position: absolute; left: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid #8F5408;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
  }
  .ribbon span::after {
    content: "";
    position: absolute; right: 0px; top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F5408;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
  }

/* Orange shy - order button */
.shy {
    background-repeat:no-repeat;
    background-position:-115% 0;
    background-color:#f1f1f1;
    background:#f1f1f1;
    background-image:-webkit-linear-gradient(
        -45deg, #f1f1f1,
        #f1f1f1 30%,
        #ffd2c4 50%, #f1f1f1 70%, #f1f1f1 100% 
    );
    background-image:linear-gradient(
        -45deg, #f1f1f1,
        #f1f1f1 30%,
        #ffd2c4 50%, #f1f1f1 70%, #f1f1f1 100% 
    );
      background-repeat:no-repeat;
    background-size:135px 55px;
    -webkit-animation:glide 3050ms infinite;
    animation:glide 3050ms infinite;
}

@-webkit-keyframes glide {
    from {
        background-position:-215% 0;
    } to {
        background-position:335% 0;  
    }
}

@keyframes glide {
    from {
        background-position:-215% 0;
    } to {
        background-position:335% 0;  
    }
}


.strikethrough {
    position: relative;
}
 
.strikethrough:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
  
    -webkit-transform:rotate(-5deg);
    -moz-transform:rotate(-5deg);
    -ms-transform:rotate(-5deg);
    -o-transform:rotate(-5deg);
    transform:rotate(-5deg);
}

  
.text-decoration-none {
    text-decoration: none;
}

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

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

.no-padding > * {
    padding: 0 !important;
}







/* PDF Menu */
.ZoomGalleryCarousel {
    background: rgb(183 183 183);
    top: 114px !important;
}

.ZoomGalleryCarousel div:last-child {
    background: rgb(183 183 183 / 29%);
    color: white;
    font-size: 17px;
    left: 0;
    width: 100%;
    display: grid;
    justify-content: center;
}

.single-image .ZoomGalleryCarousel div:last-child span:first-child,
.single-image .ZoomGalleryCarousel div:last-child span:last-child {
    pointer-events: none;
    display: none;
}

.ZoomGalleryCarousel div:last-child span:first-child,
.ZoomGalleryCarousel div:last-child span:last-child {
    border: 1px solid #ccc;
    background: rgb(0 0 0 / 22%);
    position: fixed;
    width: 50px;
    height: 200px;
    top: calc(50% - 50px);
}

.ZoomGalleryCarousel div:last-child span:first-child {
    left: 0;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
}

.ZoomGalleryCarousel div:last-child span:first-child::before {
    content: '<';
}

/* .ZoomGalleryCarousel div:last-child span.status {  
    } */

.ZoomGalleryCarousel div:last-child span:last-child {
    right: 0;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
}

.ZoomGalleryCarousel div:last-child span:last-child::before {
    content: '>';
}

.g-recaptcha {
    transform: scale(0.77);
    transform-origin: 0 0;
}