﻿:root {
 --clr-w3primary-1: hsl(205, 86%, 17%);
 --clr-primary-2: hsl(205, 77%, 27%);
 --clr-primary-3: hsl(205, 72%, 37%);
 --clr-primary-4: hsl(205, 63%, 48%);
 --clr-primary-5: hsl(205, 78%, 60%);
 --clr-primary-6: hsl(205, 89%, 70%);
 --clr-primary-7: hsl(205, 90%, 76%);
 --clr-primary-8: hsl(205, 86%, 81%);
 --clr-primary-9: hsl(205, 90%, 88%);
 --clr-primary-10: hsl(205, 100%, 96%);
 --clr-grey-1: hsl(209, 61%, 16%);
 --clr-grey-2: hsl(211, 39%, 23%);
 --clr-grey-3: hsl(209, 34%, 30%);
 --clr-grey-4: hsl(209, 28%, 39%);
 --clr-grey-5: hsl(210, 22%, 49%);
 --clr-grey-6: hsl(209, 23%, 60%);
 --clr-grey-7: hsl(211, 27%, 70%);
 --clr-grey-8: hsl(210, 31%, 80%);
 --clr-grey-9: hsl(212, 33%, 89%);
 --clr-grey-10: hsl(210, 36%, 96%);
 --clr-white: #fff;
 --clr-red-dark: hsl(360, 67%, 44%);
 --clr-red-light: hsl(360, 71%, 66%);
 --clr-green-dark: hsl(125, 67%, 44%);
 --clr-green-light: hsl(125, 71%, 66%);
 --clr-black: #222;
 --ff-primary: 'Roboto', sans-serif;
 --ff-secondary: 'Open Sans', sans-serif;
 --transition: all 0.3s linear;
 --spacing: 0.1rem;
 --radius: 0.25rem;
 --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 --max-width: 1170px;
 --fixed-width: 620px

  /* colors */
  --im5-color-primary-hsl: 250, 84%, 54%;
  --im5-color-bg-hsl: 0, 0%, 100%;
  --im5-color-contrast-high-hsl: 230, 7%, 23%;
  --im5-color-contrast-higher-hsl: 230, 13%, 9%;
  --im5-color-accent-hsl: 342, 89%, 48%;
  --im5-color-contrast-medium-hsl: 225, 4%, 47%;
  --im5-color-black-hsl: 230, 13%, 9%;
  --im5-color-white-hsl: 0, 0%, 100%;
  --im5-color-bg-dark-hsl: 240, 4%, 95%;
  --im5-color-primary-darker-hsl: 250, 84%, 38%;
  --im5-color-primary-light-hsl: 250, 84%, 60%;
  --im5-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --im5-space-sm: 0.75rem;
  --im5-space-md: 1.25rem;
  --im5-space-2xs: 0.375rem;
  --im5-space-xs: 0.5rem;

  /* typography */
  --im5-text-lg: 1.25rem;
  --im5-text-md: 1.2rem;
  --im5-text-sm: 0.833rem;
}

*,
::after,
::before {
 margin:0;
 box-sizing:border-box
}
body {
 font-family:var(--ff-secondary);
 background:var(--clr-grey-10);
 color:var(--clr-grey-1);
 line-height:1.5;
 font-size:.875rem
}
ul {
 list-style-type:none
}
a {
 text-decoration:none
}
h1, h2, h3, h4 {
/** letter-spacing:var(--spacing); **/
 text-transform:capitalize;
 line-height:1.25;
 margin-bottom:.75rem;
 font-family:var(--ff-primary);
}
h1 {
 font-size:3rem;
}
h2 {
 font-size:2rem;
}
h3 {
 font-size:1.25rem;
}
h4 {
 font-size:.875rem;
}
p {
 color:var(--clr-grey-5);
}
@media screen and (min-width:800px) {
 h1 {
  font-size:1.5rem;
 }
 h2 {
  font-size:2.5rem;
 }
 h3 {
  font-size:1.75rem;
 }
 h4 {
  font-size:1rem;
 }
 body {
  font-size:1rem;
 }
 h1,
 h2,
 h3,
 h4 {
  line-height:1.4em;
 }
}

/* LOADER */
.profile-main-loader{
    left: 50% !important;
    margin-left:-100px;
    position: absolute;
    top: 50% !important;
    margin-top: -100px;
    width: 45px;
    z-index: 9000 !important;
}

.profile-main-loader .loader {
  position: relative;
  margin: 0px auto;
  width: 200px;
  height:200px;
}
.profile-main-loader .loader:before {
  /**content: ''; **/
  display: block;
  padding-top: 100%;
}

.circular-loader {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.loader-path {
  stroke-dasharray: 150,200;
  stroke-dashoffset: -10;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes color {
  0% {
    stroke: #70c542;
  }
  40% {
    stroke: #70c542;
  }
  66% {
    stroke: #70c542;
  }
  80%, 90% {
    stroke: #70c542;
  }
}
@keyframes color {
  0% {
    stroke: #70c542;
  }
  40% {
    stroke: #70c542;
  }
  66% {
    stroke: #70c542;
  }
  80%, 90% {
    stroke: #70c542;
  }
}

.section {
 padding:5rem 0;
}
.section-center {
 width:90vw;
 margin:0 auto;
 max-width:1170px;
}
@media screen and (min-width:992px) {
 .section-center {
  width:95vw;
 }
}
main {
 min-height:100vh;
 display:grid;
 place-items:center;
}
.sidebar-toggle {
 position:fixed;
 top:2rem;
 right:3rem;
 font-size:2rem;
 background:0 0;
 border-color:transparent;
 color:var(--clr-primary-5);
 transition:var(--transition);
 cursor:pointer;
 animation:bounce 2s ease-in-out infinite;
}
.sidebar-toggle:hover {
 color:var(--clr-primary-7);
}
@keyframes bounce {
 0% {
  transform:scale(1);
 }
 50% {
  transform:scale(1.5);
 }
 100% {
  transform:scale(1);
 }
}
.sidebar-header {
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:1rem 1.5rem;
background-color: #dfdfdf61;
}
.sidebar-content {
 height:100%;
overflow-y: auto;
padding:1rem .7rem;
}

.sidebar-footer {
 display:flex;
 justify-content:center;
 align-items:center;
 padding:1rem 1.5rem;
background-color: #dfdfdf61;
}
.close-btn {
 font-size:3rem;
 background:0 0;
 border-color:transparent;
 color:var(--clr-primary-5);
 transition:var(--transition);
 cursor:pointer;
 color:var(--clr-red-dark);
}
.close-btn:hover {
 color:var(--clr-red-light);
 transform:rotate(360deg);
}
.logo {
 justify-self:center;
 height:40px;
}
.links a {
 display:block;
 font-size:1.5rem;
 text-transform:capitalize;
 padding:1rem 1.5rem;
 color:var(--clr-grey-5);
 transition:var(--transition);
}
.links a:hover {
 background:var(--clr-primary-8);
 color:var(--clr-primary-5);
 padding-left:1.75rem;
}
.sidebar {
 position:fixed;
 top:65px;
 right:0;
 width:100%;
 height:100%;
max-width: 95vw;
 background:#fafafa;
 display:flex;
flex-direction: column;
  box-shadow:var(--clr-red-dark);
 transition:var(--transition);
 transform:translate(100%);
z-index: 99999;
max-height: 95vh;
overflow-y: auto !important;
overflow-x: auto !important;
box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
border-color: #a45d5d;
border-style: inset;
}
.show-sidebar {
 transform:translate(0);
}
@media screen and (min-width:676px) {
 .sidebar {
 width:50vw;
 }
}

article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary {
    display: block
}

a {
    background-color: transparent;
}

.asLowAs {
    font-size: 14px;
    color: #0650af;
    display: inline-block;
    background-color: #cee0f1;
    width: 100%;
}



figure {
 margin: 2px 0px;
line-height: 1.3;
}

figcaption {
font-weight: bold;
background-color: #e1e1e1;
padding: 6px;
 font-size: 13px;
}
@media (min-width: 601px) {
figcaption {
font-size: 15px;
}
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

button,input,select,textarea {
    font: inherit;
    margin: 0
}

optgroup {
    font-weight: bold
}

button,input {
    overflow: visible
}

fieldset {
    border: 0px;
    margin: 0 2px;
    padding: .35em .625em .75em
}

fieldset div {
    float: left!important;
      width: 100%;
}

/* End extract */
html,body {
    font-family: Verdana,sans-serif;
    font-size: 1em;
    line-height: 1.5;
    color: #677279;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "Segoe UI",Arial,sans-serif;
    font-weight: 700;
}

h4 {
    font-size: 1.55em;
    line-height: 1.25em;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
}

a {
    background-color: transparent;
}




.cat-wrapper h2 {
font-size: .9em;
display: grid;
}
.cat-title {
font-size: 1em;
margin: 10px 0px 0px 20px;
}

.cat-description {
font-size: .7em;
margin: 10px 0px 0px 20px;
}








@media (min-width: 601px) {
.cat-wrapper {
font-size: 1.3em;
margin: 15px;
display: grid;
}
.cat-title {
font-size: 1.5em;
margin: 10px 0px 0px 20px;
}

.cat-description {
font-size: 1.0em;
margin: 10px 0px 0px 20px;
}


 h1  {
    font-size: 1.5em;
}

.ribbon-container {
    top: 75px;
    right: -16px;
    }

ul.products li {
    display: inline-block;
    padding: 10px;
    margin: 10px;
    color: #3D3D3D;
    border-radius: 3px;
    background-color: #f4f5f6;
    border: 3px #bbdefb solid;
    position: relative;
}
}











.page-container {
    padding: 0.01em 2px;
    margin-top: 0;
}


/* ANIMATIONS */
.w3-animate-zoom {
    animation: animatezoom 0.6s
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.w3-animate-input {
    transition: width 0.4s ease-in-out
}

/* PRODUCT IMAGES */
.productimg {
    display: block;
    float: left;
    margin-right: 8px;
max-height: 100px;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;

}

/** clearfix **/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}


.show {
    display: block;
}

#shipsToday {
    margin: 5px 0 5px 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

ul.products {
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
row-gap: 15px;
}

ul.products h3 a {
    text-decoration: none;
}

ul.products li {
       display: inline-block;
    padding: 10px;
    margin: 10px;
    color: #3D3D3D;
     border-radius: 3px;
 background-color: #f4f5f6;
    border: 3px #bbdefb solid;
    position: relative;
box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
    border-radius: 10px;
}



.product {
     display: inline-block;
     color: #3D3D3D;
     background-color: #f4f5f6;
    padding: 4px;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.product2 {
    color: #3D3D3D;
    background-color: #f4f5f6;
    padding: 4px;
    margin: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 10px;
}

.product2 h1 a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 100;
}

.grid-item {
margin: 10px 5px;
background-color: #9ea2a221;
border-radius: 10px;
padding: 7px;
}


@media (max-width: 943px) {
  .product2 { grid-template-columns: 1fr 1fr;  }
    .grid-item:nth-child(1) { grid-row: 1 / 2; grid-column: 1 / 2; }
    .grid-item:nth-child(2) { grid-row: 2 / 3; grid-column: 1 / 3; }
    .grid-item:nth-child(3) { grid-row: 1 / 2; grid-column: 2 / 3; }
}

@media (max-width: 768px) {
  .product2 { grid-template-columns: 1fr;
    grid-gap: 0;
 }
    .grid-item:nth-child(1) { grid-row: 1 / 1; grid-column: 1 / 3; }
    .grid-item:nth-child(2) { grid-row: 3 / 3; grid-column: 2 / 3; }
    .grid-item:nth-child(3) { grid-row: 2 / 2; grid-column: 2 / 3; }

}



/** FEATURES **/

.features {
margin: 0 0 2px 0;
}

ul.features li {
    clear: both;
    min-height: 10px;
    display: list-item;
    padding: 2px;
    border: none;
    margin: auto;
font-size: 13px;
  position: relative;
 padding-left: 22px;
}

@media (min-width: 601px) {
ul.features li {
 font-size: 16px;
}
}

ul {
  list-style: none;
  padding: 4px 4px 4px 4px;
}

ul.features li:before {
  content: '';
  position: absolute;
  left: 0;  /* place the SVG at the start of the padding */
  width: 2em;
  height: 2em;
  background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg fill='green' width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}


ul.products li h1  {
    margin: -10px -10px 10px -10px;
    padding: 10px;
    text-align: center;
    background-color: #bbdefb;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: #5A5A5A;

}

ul.products li h3  {
    margin: -10px -10px 10px -10px;
    padding: 10px;
    text-align: center;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: #5A5A5A;

}

ul.products li fieldset {
    border: none;
    padding: 5px 5px 5px 0px;
    margin: 0;
display: inline-block;
}

ul.products li fieldset label {
    display: block;
    margin-bottom: 4px;
}

ul.products li fieldset label span {
     float: left;
}

ul.products li fieldset label select {
    min-width: 100px;
}

button, .button {
    background-color: #249f32;
border: black;
padding: 10px;
display: block;
text-align: center;
cursor: pointer;
text-decoration: none;
color: #FFF;
min-height: 15px;
font: 15px/20px Arial, Helvetica, sans-serif;
  font-weight: normal;
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.26);
border-radius: 25px;
margin: 5px;
font-weight: 700;
}

button:disabled,
button[disabled]{
    background-color: #f443367d;
    min-width: 100px;
    border: none;
    padding: 10px;
    display: inherit;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: #FFF;
    min-height: 15px;
    font: 12px/15px Arial, Helvetica, sans-serif;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.26);
    border-radius: 3px;
    margin: 5px;
cursor: not-allowed;
}

button:hover, .button:hover {
    background-color: #44C7ED;
}

.product-thumb {
text-align: center;
    min-height: 204px;
    margin: 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.product-thumb img {
    margin: 10px;
    max-height: 200px;
    max-width: 150px;
cursor: zoom-in;
}

.product-name {
    font-size: .8em;
    margin-top: 10px;
text-align: center;
}

.product-name a {
text-decoration: none;
}

.product-desc {
    font-style: italic;
    font-size: 1em;
    margin-bottom: 4px;
     display: inline-block;  
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}

.product-desc ul {
font-size: 1.2em;
}

.btn-wrapper {
margin: 10px;
    text-align: center;
}

.xxproduct-desc:hover {
    overflow: visible;
    white-space: normal;
    width: 250px;
    height: auto;
    position: relative;
    background-color: #ccc;
    padding: 5px;
    transition: 0.2s ease;
    z-index: 999999;
}

.cart-view-table-front, .cart-view-table-back {
    max-width: 700px;
    background-color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid #E4E4E4;
}

.sprite {
    display: inline-block;
    overflow: hidden;
    background-repeat: no-repeat;
    position: absolute;
}

.icn-2-part {
    width: 37px;
    height: 37px;
    background-position: 0px 0px;
}

.icn-3-part {
    width: 37px;
    height: 37px;
    background-position: -37px 0px;
}

.icn-tl {
position: absolute;
top: 10px;
height: 50px;
width: 50px;
left: 10px;
}


/** flyout menu **/

.cart-tab {
    width: 90vw;
    position: fixed;
 /**   top: 2.5em;  **/
    z-index: 9999;
    background: #fff;
    right: -90vw;
height: 85vh;
max-width: 550px;
    -webkit-transition: right ease .5s;
    -moz-transition: right ease .5s;
    -o-transition: right ease .5s;
    transition: right ease .5s;
}

.cart-tab-show {
    right: 0em;
}

.cart-tab a.cart-link {
    position: absolute;
    top: 0;
    left: -4em;
    width: 3.6em;
    display: block;
    background: #fff;
    padding: 0 10px 0px;
    text-decoration: none;
    transition: left ease .5s;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.cart-tab a.cart-link:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 100%;
    background: #fff;
}

.cart-tab:hover {
 /**   right: 0; **/
}

.cart-tab a.cart-link .amount {
    display: block;
    color: #515151;
    font-size: 1.5em;
    line-height: 1.7em;
    font-weight: bold;
    margin-bottom: 14px;
}

.cart-tab a.cart-link .contents {
    display: block;
    color: #666;
    font-size: 1em;
}

.cart-items {
    display: block;
    margin-bottom: 25px;
    font-family: Verdana,sans-serif;
    font-size: 10px;
    max-height: 90%;
    overflow-y: auto;
    height: fit-content;
}

.cart-items ul {
    display: block;
    list-style: none;
}

.cart-items ul li {
    display: block;
    margin-bottom: 8px;
    padding-bottom: 10px;
    cursor: pointer;
    border-bottom: 1px dotted #888;
}

.cart-items ul li .item-price, .cart-items ul li .quantity {
    margin-bottom: 2px;
    font-size: 1.2em;
}

.cart-items ul li .item-delete {
    display: block;
    margin-bottom: 2px;
    font-size: 1.1em;
	color: red;
}



.cart-tab .cart {
    padding: 1.5em;
    margin: 0;
height: 100%;
}

.checkout {
    font-size: 11px;
    padding: 4px 7px;
    border: 1px solid #467fc5;
    color: #467fc5;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin: 7px;
    cursor: pointer;
    vertical-align: top;
}



.cart-tab .cart .checkout:hover {
    background: #467fc5;
    color: #fff;
}

.cart-tab a.cart-link,.cart-tab .cart {
   box-shadow: 0 2px 10px 0 rgba(0,0,0,0.2);
}

.cart-tab .cart {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}



.cart-header {
 display: flex;
justify-content: space-between;
align-items: center;
padding: 0.6rem;
background-color: #aac3dd61;
box-shadow: 0 0px 10px 0 rgba(0,0,0,0.2);
}
.cart-content {
 height:100%;
overflow-y: auto;
padding:1rem 1.5rem;
}

.cart-footer {
 display:flex;
 justify-content:center;
 align-items:center;
 padding:1rem 1.5rem;
background-color: #dfdfdf61;
}
.cart-close-btn {
 font-size:3rem;
 background:0 0;
 border-color:transparent;
 color:var(--clr-primary-5);
 transition:var(--transition);
 cursor:pointer;
 color:var(--clr-red-dark);
}
.cart-close-btn:hover {
 color:var(--clr-red-light);
 transform:rotate(360deg);
 background-color: #aac3dd61;
}


/** cart inputs **/


button::-moz-focus-inner,input::-moz-focus-inner {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical
}

input:invalid,textarea:invalid {
    background-color: #f0dddd
}

.horizontal-list li,.tri-list li,.product-list>ul li {
    float: left
}

.normal-list li {
    list-style: disc;
    margin-left: 15px
}

@media (max-width: 599px) {
    input[type=text], input[type=url], input[type=email], input[type=password], input[type=tel] {
        border: 1px solid #bfbab4;
        margin: 0 4px 8px 0;
        padding: 6px;
        color: #1e1e1e;
        border-radius: 5px;
        box-shadow: inset 0px 5px 5px #eee;
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
    }

    select {
        border: 1px solid #bfbab4;
        margin: 0 4px 8px 0;
        padding: 6px;
        color: #1e1e1e;
        border-radius: 5px;
        box-shadow: inset 0px 5px 5px #eee;
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 17px;
    }
}



    input[type=text], input[type=url], input[type=email], input[type=password], input[type=tel] {
        border: 1px solid #bfbab4;
        margin: 0 4px 0 0;
        padding: 6px;
        color: #1e1e1e;
        border-radius: 5px;
        box-shadow: inset 0px 5px 5px #eee;
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 17px;
    }

    select {
        border: 1px solid #bfbab4;
        margin: 0 4px 0 0;
        padding: 6px;
        color: #1e1e1e;
        border-radius: 5px;
        box-shadow: inset 0px 5px 5px #eee;
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
position: relative;
text-indent: 1px;
font-size: 16px;
cursor: pointer;
overflow: visible;
max-width: 100%;
outline: 0;
background-color: white;
    }


label.error {
    border-color: #ebccd1;
color: #ff0000;
    font-size: 12px;
}

fieldset label {
    min-width: 100px;
color: #000;
    font-size: 14px;
}

ul.shopping-cart {
    position: fixed;
    top: 100px;
    right: 0;
    background-color: #F9F9F9;
    padding: 10px;
    min-width: 250px;
    list-style: none;
    font-size: 0.8em;
    border: 1px solid #F0F0F0;
}

ul.shopping-cart .cart-itm {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

ul.shopping-cart .cart-itm:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}

ul.shopping-cart .cart-itm .remove-itm {
    float: right;
    font-size: 1.5em;
}

ul.shopping-cart .cart-itm .remove-itm a {
    text-decoration: none;
    color: #000;
}

.cart-total-text a {
    float: right;
}

.cart-view-table-front {
    font-size: 0.7em;
    position: fixed;
    right: 10px;
    max-width: 350px;
    font-family: Arial
}

.cart-view-table-front h3 {
    text-align: center;
    padding: 0;
    margin: 0px 0px 6px 0px;
}

.cart-view-table-front, .cart-view-table-back {

    background-color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid #E4E4E4;
}

.cart-view-table-back a {
color: #01579b !important;
    text-decoration: none;
    font-size: 1.5em;
}



.cart-view-table-front table th, .cart-view-table-back table th {
    text-align: left;
border-left: 1px solid #fff;
}

.cart-view-table-front table thead, .cart-view-table-back table thead {
    background-color: #0a2844;
color: #f1f1f1;
}

.cart-view-table-front table tbody tr.even, .cart-view-table-back table tbody tr.even, .even {
    background-color: #F7F7F7;
}

.cart-view-table-front table tbody tr.odd, .cart-view-table-back table tbody tr.odd , .odd {
    background-color: #EDEDED;
}

.cart-view-table-front button, .cart-view-table-front .button, .cart-view-table-back button, .cart-view-table-back .button {
    margin: 10px 1px;
    float: right;
}



select.error, textarea.error, input.error {
    color: #FF0000;
    border-color: #FF0000;
    border-width: 1px;
background-color: #FFF;
}

#accordionSubmit {
background-color: #ecf5fd;
font-size: 12px;
width: 100%;
max-width: 960px;
margin: 10px auto;
height: 100%;
scrollbar-width: none;
}

.tagGraphic {
transform-origin: 50% 10%;
animation: swinging 3.5s ease-in-out forwards infinite;
height: 100%;    
max-height: 400px;
max-width: 90%;
}

@keyframes swinging{
	0%{transform: rotate(10deg);}
	50%{transform: rotate(-5deg)}
	100%{transform: rotate(10deg);}
}

.modal {
background-color: #fff;
    /* min-width: 200px; */
    border-width: 1px;
    border-color: rgba(0,0,0,0.2);
    padding: 15px;
    border-style: solid;
    border-radius: 1px;
    display: none;
    max-height: calc(100% - 100px);
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    z-index: 990;
    box-shadow: 0 0 15px 8px rgb(0 0 0 / 35%);
    width: 90vw;
}

/* BREADCRUMBS */
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
 background-color: #eee; 
/**margin-top: 30px;**/
display: grid;
    grid-auto-columns: max-content;
    grid-template-rows: 1fr;
    width: 100%;
    overflow-x: auto;
white-space: nowrap;
}

ul.breadcrumb li {
  font-size: 12px;
    font-family: sans-serif;
    grid-row: 1;
    grid-column: auto;
}

ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/";
}

ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}
/* END BREADCRUMBS */




.tg-wrap {overflow-x: auto;}
.tg  {border-collapse:collapse;border-spacing:0;min-width: auto;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;border-color:black;}
.tg .tg-4zed{background-color:#7ecfef;color:#1e1e1e;text-align:center;vertical-align:top}
.tg .tg-tucp{color:#1e1e1e;vertical-align:top;text-align: center;}
.tg-head{background-color:#7ecfef;color:#1e1e1e;text-align:center;vertical-align:top}


/* @media screen and (max-width: 767px) {.tg {width: auto !important;}.tg col {width: auto !important;}.tg-wrap {overflow-x: auto;-webkit-overflow-scrolling: touch;}} */



/* AUTOCOMPLETE */
/* highlight results */
.ui-autocomplete span.hl_results {
    background-color: #ffff66;
}
 
/* loading - the AJAX indicator */
.ui-autocomplete-loading {
    background: white url('/images/spinner_black.gif') right center no-repeat;
}
 
/* scroll results */
.ui-autocomplete {
    max-height: 80vh;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding for vertical scrollbar */
    padding-right: 5px;
    background-color: whitesmoke;
        max-width: 90vh;
box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
    border-radius: 10px;
    display: grid;
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
 
.ui-autocomplete li {
    font-size: 10px;
    list-style: none;
    font-family: sans-serif;
    float: left;
    max-width: 48%;
    padding: 5px;
    cursor: pointer;
}


.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1.25rem;
  border-radius: .3rem;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: .5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
    border-top-width: 1px;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
a {
  color: #0d6efd;
  text-decoration: underline;
}
*, ::after, ::before {
  box-sizing: border-box;
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}
section {
  text-rendering: optimizeLegibility;
}

.d-flex{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important}
.align-items-center{-webkit-box-align:center!important;-ms-flex-align:center!important;align-items:center!important}
.justify-content-between{-webkit-box-pack:justify!important;-ms-flex-pack:justify!important;justify-content:space-between!important}
.text-muted{color:#6c757d!important}
.btn-link{font-weight:400;color:#007bff;background-color:transparent}
.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}
btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}

.btn {
 --mdb-btn-padding-top:0.625rem;
 --mdb-btn-padding-bottom:0.5rem;
 --mdb-btn-border-width:0;
 --mdb-btn-border-color:none;
 --mdb-btn-border-radius:0.25rem;
 --mdb-btn-box-shadow:0 4px 9px -4px rgba(0,0,0,0.35);
 --mdb-btn-hover-box-shadow:0 8px 9px -4px rgba(0,0,0,0.15),0 4px 18px 0 rgba(0,0,0,0.1);
 --mdb-btn-focus-box-shadow:0 8px 9px -4px rgba(0,0,0,0.15),0 4px 18px 0 rgba(0,0,0,0.1);
 --mdb-btn-active-box-shadow:0 8px 9px -4px rgba(0,0,0,0.15),0 4px 18px 0 rgba(0,0,0,0.1);
 padding-top:var(--mdb-btn-padding-top);
 padding-bottom:var(--mdb-btn-padding-bottom);
 text-transform:uppercase;
 vertical-align:bottom;
 border:0;
 border-radius:var(--mdb-btn-border-radius);
 box-shadow:var(--mdb-btn-box-shadow)
}

.rounded-circle{border-radius:50%!important}
.btn-rounded {
 --mdb-btn-border-radius:10rem;
 border-radius:var(--mdb-btn-border-radius)
}
.mb-0,.my-0{margin-bottom:0!important}
.mb-1,.my-1{margin-bottom:.25rem!important;margin-left: 10px;}
.list-group {
 --mdb-list-group-item-transition-time:0.5s
}
.list-group-item-action,
.list-group-item-action:hover {
 transition:var(--mdb-list-group-item-transition-time)
}
.list-group-light {
 --mdb-list-group-light-item-py:1rem;
 --mdb-list-group-light-item-border:2px solid #f5f5f5;
 --mdb-list-group-light-item-border-width:2px;
 --mdb-list-group-light-active-border-radius:0.5rem;
 --mdb-list-group-light-active-bg:#dfe7f6;
 --mdb-list-group-light-active-color:#2c58a0;
width: 80vw;
border-radius: 6px;
box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
transition: 300ms;
}
.list-group-light .list-group-item {
padding: 10px;
 border:var(--mdb-list-group-light-item-border)
}
.list-group-light>.list-group-item {
 border-left-width:0;
 border-bottom-width:var(--mdb-list-group-light-item-border-width);
 border-right-width:0;
 border-top-width:0
}
.list-group-light>.list-group-item:last-of-type {
 border:none
}
.list-group-light .active {
 border:none;
 border-radius:var(--mdb-list-group-light-active-border-radius);
 background-color:var(--mdb-list-group-light-active-bg);
 color:var(--mdb-list-group-light-active-color)
}
.list-group-light .list-group-item-action:focus,
.list-group-light .list-group-item-action:hover {
 border-radius:var(--mdb-list-group-light-active-border-radius)
}







#product_input {
border: 1px solid #bfbab4;
    margin: 8px 5px 6px 5px;
    padding: 6px;
    color: #1e1e1e;
    border-radius: 5px;
    box-shadow: inset 0px 5px 5px #eee;
    display: inline-block;
    width: 50%;
    height: 40px;
    line-height: 40px;
    font-size: 17px;
}

#product_input {
    width: 33%;
}

input#product_input:focus {
/** width: 128px; **/
}
 
#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: 0;
    background-color: #DDD;
    color: #555;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}
#back2Top:hover {
    background-color: #DDF;
    color: #000;
}



.alert {
       position: relative;
    margin-top: 55px;
    padding: 15px 30px;
    border-radius: 0;
    background-color: #b03731;
    color: #fff;
    text-align: center;
    font-family: sans-serif;
}



button2 {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
button2.learn-more {
  width: 12rem;
  height: auto;
}
button2.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}
button2.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
button2.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
button2.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: '';
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
button2.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
butto2n:hover .circle {
  width: 100%;
}
button2:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
          transform: translate(1rem, 0);
}
button2:hover .button-text {
  color: #fff;
}

.modal-bg {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid #000;
    padding: 15px;
    border-radius: 8px;
}
@media only screen and (min-width: 981px)           {
.modal-bg {
    min-height: 400px;
    padding: 15px 15px !important;
}

.notification {
    width: 88%;
    left: 6%;
}
}

.notification {
    min-height: 100px;
    margin: 0 auto;
    text-align: center;
   /* line-height: 50px; */
    color: #fff;
    font-size: 18px;
    box-shadow: 0px 0px 0px #333;
        position: absolute;
top: 200px;
left: 0;
right: 0;
margin: auto
    /* border: 1px solid #333; */
    border-radius: 5px;
    z-index: 3;
width: 90%;
}


.modal-bg .close.cart-close {
    border: 0;
    text-shadow: none;
    top: -33px;
    right: -30px !important;
    position: relative;
    right: 0;
    background: #b94a48;
    color: #fff;
    opacity: 1;
    border-radius: 25px;
    height: 35px;
    width: 35px;
    box-shadow: none;
    min-width: 0px;
    padding: 0px;
}

.close {
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 18px;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
}


/* HEADER */
.callBtn {
    width: auto;
    padding: 10px 25px 10px 25px;
    font-family: Arial;
    font-size: 13px;
    text-decoration: none;
    color: #ffffff;
    text-shadow: -1px -1px 2px #618926;
    background: -moz-linear-gradient(#98ba40, #a6c250 35%, #618926);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #98ba40),color-stop(.35, #a6c250),color-stop(1, #618926));
    border: 1px solid #618926;
    border-radius: 3px;
}

/* FOOTER */
.footer {
 background-color: #0e1091;
 color: #fff;
 text-align: left;
 width: 100%;
 font-family: sans-serif;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 justify-items: center;
 padding: 10px 0 10px 0;
 font-weight: 700;
border-top: 12px solid #00AEEF;
}

.f1, .f2, .f3 {
 background-color: #0e1091;
 color: #fff;
 box-sizing: border-box;
 font-size: 1em;
 padding: 0 2%;
 min-width: 300px;
 width: 33%;
 }

.container {
 margin: 0 auto;
 width: 30%;
}

.content {
 border: 1px solid black;
 padding: 5px;
 margin-bottom: 5px;
}
.content span {
 width: 250px;
}
.content span:hover {
 cursor: pointer;
}


/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 1em;
	list-style: none;
height: 100%;
overflow-y: auto;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
}

.ui-front {
	z-index: 100;
}

.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
	border-width: 2px;
}

.tooltipButton {
	color: #ffffff;
	border: 1px solid #ffffff;
	padding: 4px 15px;
	/* font-size: 12px; */
	box-shadow: 0 2px 5px #a19f9d;
	font-weight: normal;
	line-height: 15px;
	border-radius: 12px;
	background-color: #D83B01;
	width: fit-content;
	cursor: help;
	display: inline-block;
	margin: 6px 0px 8px 0px;
}

/* QUESTIONS - ANSWERS */
.msg-list {
        width: 100%;
    }
    .messenger-container {
        padding: 8px 15px 8px 13px;
        margin: 0 0 25px 35px;
        float: left;
        max-width: 82%;
        background: #f2f2f2;
        border-radius: 10px;
        min-width: 20%;
        position: relative; box-sizing: border-box;
        box-shadow: 7px 10px 6px -5px #BBC0C7;
    }
    .messenger-container p {
       color: #3D3D3D;
        font-size: 16px;
        margin-bottom: 6px;
font-weight: bold;
        
        word-wrap: break-word; margin: 0;
    }
    .sender .messenger-container {
        float: right;
        margin-right: 35px;
        width: auto;
        background: #DAE8F7;
        margin-left: 0px;
        padding: 8px 15px 8px 13px;
    }
    .clear {
        clear:both;
        width: 100%;
        padding: 0px !important;
        margin: 0px;
        height:0px;
    }
       .messenger-container::before {
           width: 0px;
           height: 0px;
           border-top: 8px solid transparent;
           border-bottom: 8px solid transparent; 

           border-right:15px solid #f2f2f2; 
           content: "";
           position: absolute;
           top: 9px;
           left: -15px;
       }
    .sender .messenger-container::before {
          width: 0px;
          height: 0px;
          border-top: 8px solid transparent;
          border-bottom: 8px solid transparent;
          border-left: 15px solid #D5DBFF;
          content: "";
          position: absolute;
          top: 9px;
          left: 99%;border-right: none;
   }

    
.bubble-image {
display: block;
    float: left;
    margin-right: 8px;
    max-height: 100px;
}


.ribbon-container {
  position: absolute;
  top: -16px;
  right: -16px;
  overflow: visible;
  /* so we can see the pseudo-elements we're going to add to the anchor */
  
  font-size: 18px;
  /* font-size and line-height must be equal so we can account for the height of the banner */
  
  line-height: 18px;
z-index: 100;
}

.ribbon-container:before {
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  border-top: 29px solid rgba(0, 0, 0, .3);
  /* These 4 border properties create the first part of our drop-shadow */
  
  border-bottom: 29px solid rgba(0, 0, 0, .3);
  border-right: 29px solid rgba(0, 0, 0, .3);
  border-left: 29px solid transparent;
}

.ribbon-container:after {
  /* This adds the second part of our dropshadow */
  
  content: "";
  height: 3px;
  background: rgba(0, 0, 0, .3);
  display: block;
  position: absolute;
  bottom: -3px;
  left: 58px;
  right: 3px;
}

.ribbon-container a {
  display: block;
  padding: 20px;
  position: relative;
  /* allows us to position our pseudo-elements properly */
  
  background: #0089d0;
  overflow: visible;
  height: 58px;
  margin-left: 29px;
  color: #fff;
  text-decoration: none;
}

.ribbon-container a:after {
  /* this creates the "folded" part of our ribbon */
  
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  bottom: -15px;
  right: 0;
  border-top: 15px solid #004a70;
  border-right: 15px solid transparent;
}

.ribbon-container a:before {
  /* this creates the "forked" part of our ribbon */
  
  content: "";
  height: 0;
  width: 0;
  display: block;
  position: absolute;
  top: 0;
  left: -29px;
  border-top: 29px solid #0089d0;
  border-bottom: 29px solid #0089d0;
  border-right: 29px solid transparent;
  border-left: 29px solid transparent;
}

.ribbon-container a:hover {
  background: #009ff1;
}

.ribbon-container a:hover:before {
  /* this makes sure that the "forked" part of the ribbon changes color with the anchor on :hover */
  
  border-top: 29px solid #009ff1;
  border-bottom: 29px solid #009ff1;
}

/* RADIO QUANTITY SELECTORS */

.product-thumb-bulk-pricing {
}

.product-thumb-bulk-pricing img {
    margin: 5px;
    max-height: 200px;
    max-width: 150px;
cursor: zoom-in;
}
.deleteItem {
min-width: 0;
height: 15px;
line-height: 0px;
background-color: #d83b01;
display: inline;
}

.item-qty {
	margin-left: 100px;
}
.qty-options {
	margin-bottom: 10px;
	color: black;
	line-height: normal;
	border-bottom: 1px solid #d3d3d3;
font-size: .9em;
}
.qtytr {
display: flex;
	align-items: center;
	justify-content: space-between;
	align-content: stretch;
	padding: 4px 4px 5px 4px;
	border-top: 1px solid #d3d3d3;
cursor: pointer;
}

.qty-selected {
    background-color: #347b89;
    font-weight: bold;
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
    color: white;
}

.qty-selectedF {
  background-color: #d7e5e8;
  font-weight: bold;
  border-left: 1px solid #110101;
  border-right: 1px solid #110101;
  border-bottom: 1px solid #110101;
  border-top: 1px solid #110101;
  color: #0d0d0d;
}

.qtytd-input {
    display: inline-block;
}
.qtytd-input input {
	margin: 0 1px 0 0;
	vertical-align: middle;
}
.qtytd-input span {
	vertical-align: middle;
}
.qtytd-ppu {
	

text-align: right;
	flex-grow: 1;
}
.setup {
	margin-left: 5px;
	color: gray;
}
.qtytd-save {
	color: #46b2e3;
	white-space: nowrap;
}
.qtytd-total {
width: 72px;
text-align: right;
}
.qty-custom {
	margin: 0 0 5px 0;
}
.qty-custom span {
	vertical-align: middle;
	font-weight: bold;
}
.qty-custom input {
	width: 40px;
	

height: 21px;
	line-height: 21px;
	margin: 0 0 0 10px;
	vertical-align: middle;
	border-width: 2px;
	background-color: #f3f3f3;
}
.qty-custom button {
height: 25px;
	margin: 0 0 0 3px;
	vertical-align: middle;
	font-size: 11px;
	cursor: pointer;
}
.qty-message {
	margin: 0 0 0 10px;
	color: red;
	font-weight: bold;
}
.btn-cont {
	position: relative;
}
.tab-total {
	float: right;
	text-align: right;
	width: 200px;
	position: relative;
	margin-top: -70px;
}
#yes-print 

.tab-total {
	margin-top: -36px;
}
.item-total {
	color: #6e6e6e;
	margin: 0 0 10px 0;
}
.item-total span {
	color: black;
	font-weight: bold;
	font-size: 24px;
}
.textarea-wrap {
	background-color: white;
}
.upload-note {
	color: red;
	margin: 10px 0 0 0;
}

/* SWATCHES AND CHECKED */
 .swatchChooser {
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: nowrap;
width: 100%;
}

.swatchBox {
  width: 20px;
  height: 20px;
  margin: 3px;
}

#talkBubble {
position: relative;
  width: 15px;
  height: 15px;
  margin: 3px;
  border: 1px solid rgba(0, 0, 0, .2);
}

    #talkBubble:before {
      content: "";
      position: absolute;
      right: 100%;
      top: 26px;
      width: 0;
      height: 0;
      border-top: 13px solid transparent;
      border-right: 26px solid red;
      border-bottom: 13px solid transparent;
    }

.blue {
  background: rgb(95, 203, 246);
}

.green {
  background:  rgb(125,255, 28);
}

.yellow {
  background: rgb(255, 213, 41);
}

.orange {
  background: rgb(255, 128, 28);
}

.pink {
  background:  rgb(255, 184, 210);
}

.gold {
  background: rgb(255, 168, 37);
}

.red {
  background:  rgb(218, 41, 41);
}

.purple {
  background: rgb(179, 104, 170);
}

.white {
    background: rgb(255, 255, 255);
}


.white-canary {
 background-image: url("/assets/images/icn-2-part.png");
background-repeat: no-repeat;
background-position: center;
background-size: 30px 30px;
}

.white-canary-pink {
 background-image: url("/assets/images/icn-3-part.png");
background-repeat: no-repeat;
background-position: center;
background-size: 30px 30px;
}

.is-selected {
//border: black;
//border-style: solid;
}


@media screen and (max-width: 500px) {
.swatchBox {
   width: 20px;
  height: 15px;
  }
}

.swatch {
/** flex: 1 1 auto; **/
position: relative;
    font-size: .6em;
}
.swatch img {
max-width: 100%;
}

.swatch:hover img {
// transform: scale(1.1);
}

/* CATEGORY CARDS */
.card-container {
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-gap: 1rem;
}

.card2 {
  display: grid;
  box-shadow: 0px 1px 5px #555;
  background-color: white;
}

#show-all {
display: grid;
justify-content: center;
align-items: center;
}

.cat-image {
justify-content: center;
margin: 0 auto;
height: 80px;
width: 80px;
cursor: pointer;
position: relative;
align-items: center;
display: flex;
font-size: 32px;
font-weight: 200;
text-transform: uppercase;
}
.card-description {
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
text-align: center;
}



.box {
  position: relative;
  height: 100px;
  width: 100px;
  background-color: white;
  border: none;
  display: inline-block;
  margin: 5px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
justify-content: center;
margin: 0 auto;
height: 100px;
width: 100px;
align-items: center;
display: flex;
}
.info {
  width: 120px;
  background-color: #64c6c6;
color: white;
  position: absolute;
  top: -12px;
  padding: 10px;
  text-align: center;
  left: calc(50% - 60px);
  animation-name: undrop;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  font-size: 5px;
}
.box:hover .info {
  animation-name: drop;
  animation-duration: 0.3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
@keyframes drop {
  0% {
    transform: translateY(0px);
    opacity: 0;
  }
  40% {
    font-size: 10px;
    border-radius: 0 0 70% 70%;
    transform: scale(0.5, 3.2) translateY(35%);
  }
  60% {
    transform: translateY(60px) scale(1.1, 0.5);
    font-size: 3px;
    border-radius: 10px 10px 0px 0px;
  }
  80% {
    transform: translateY(52px) scale(1.3, 0.8);
    font-size: 10px;
    border-radius: 10px 10px 0px 0px;
  }
  100% {
    transform: translateY(44px);
    font-size: 13px;
    border-radius: 10px 10px 0px 0px;
  }
}
@keyframes undrop {
  0% {
    transform: translateY(100px);
    font-size: 3px;
    border-radius: 10px 10px 0px 0px;
    opacity: 0.1;
  }
  50% {
    border-radius: 100%;
    transform: scale(0.5, 2.5);
  }
  100% {
    transform: translateY(-18%) scale(0.5, 0.7);
    font-size: 5px;
    opacity: 1;
    border-radius: 0 0 100% 100%;
  }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    align-items: baseline;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.col-sm-4 {
    flex: 0 0 33.333333%;
   max-width: 33.333333%;
}


/* OFF CANVAS SORT */
#loading {
 text-align:center; 
background: url('/assets/images/spinner_black.gif') center no-repeat;
height: 150px;
}

.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.list-group-item {
    position: relative;
    display: block;
    padding: 6px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.checkbox, .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.main-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-wrapper button {
  cursor: pointer;
}
.main-wrapper .btn-offcanvas-open {
  background: #275efe;
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}

.btn-offcanvas-open {
  border: none;
  background: transparent;
  outline: none;
}
.btn-offcanvas-open:focus-visible {
  box-shadow: 0 0 0 2px var(--primary-lighter);
}
.btn-offcanvas-open .icon {
  font-size: 30px;
  /* color/primary/fill/90 */
  color: #395bca;
}
.btn-offcanvas-open > * {
  pointer-events: none;
}

.offcanvas .offcanvas-main {
  position: fixed;
  z-index: 1050;
  background: #fff;
  box-shadow: 0px 6px 20px rgba(28, 49, 104, 0.1);
  padding: 20px 0;
  transition: 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
    margin-top: 60px;
}
.offcanvas .offcanvas-main .btn-offcanvas-close {
  font-family: sans-serif;
  font-size: 30px;
  font-weight: lighter;
  width: 24px;
  height: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  outline: none;
}
.offcanvas .offcanvas-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}
.offcanvas.offcanvas-right .offcanvas-main {
  width: 360px;
  max-width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transform: translateX(100%);
}
.offcanvas.offcanvas-left .offcanvas-main {
  width: 360px;
  max-width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.offcanvas.offcanvas-top .offcanvas-main {
  height: 360px;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom .offcanvas-main {
  height: 360px;
  max-height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}
.offcanvas.is-active {
  opacity: 1;
  visibility: visible;
}
.offcanvas.is-active .offcanvas-main {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.offcanvas.is-active .offcanvas-backdrop {
  opacity: 1;
  visibility: visible;
}
.offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}
.offcanvas .offcanvas-body {
  margin-top: 20px;
}
.offcanvas .offcanvas-header,
.offcanvas .offcanvas-body {
  padding: 0 20px;
}

.filtering-categories {
  text-align: center;
  margin-bottom: 40px;
}
.filter-btn {
  display: inline-block;
  outline: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  background: transparent;
  background: #dee9fb;
  border: 1px solid #091e42;
  color: #091e42;
  transition: all 0.3s linear;
}
.filtering-categories .filter-btn:not(:last-child) {
  margin-right: 7px;
}
.filtering-categories .filter-btn:hover, .filtering-categories .filter-btn:focus {
  color: #fff;
  border-color: #1f3bd8;
  background: #465ee4;
}
.filtering-categories .filter-btn:focus {
  box-shadow: 0 0 0 0.3rem #9fabf1;
}

.filtering-content {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  margin-bottom: 70px;
}

/* PRODUCT CARD */
.product-card {
  padding: 20px;
  transition: all 0.3s linear;
  font-size: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.product-card:focus, .product-card:hover {
  border-radius: 10px;
  box-shadow: 0 10px 20px 10px rgba(128, 128, 128, 0.12);
  transform: translateY(-2px);
}
.product-card img {
  max-width: 180px;
  margin-right: 20px;
}
.product-card .title {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 5px;
}
.product-card .desc {
  font-size: 0.9em;
  font-weight: 200;
  margin-bottom: 10px;
}
.product-card .price {
  font-size: 1.5em;
  font-weight: 400;
}
.mainimage {
box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 90%);
cursor: zoom-in;
}

/* SLIDER */
#content-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.column{
	width: 600px;
	padding: 10px;

}

#featured{
	max-width: 500px;
	max-height: 600px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid black;

}

.thumbnail{
	object-fit: cover;
	max-width: 90px;
	max-height: 200px;
	cursor: pointer;
	opacity: 1;
	margin: 5px;
}

.thumbnail:hover{
	opacity:1;
}

.active{
	opacity: 1;
}

#slide-wrapper{
	max-width: 100%;
	display: flex;
	min-height: 200px;
	align-items: center;
height: 15vh
}

.arrow{
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: .3s;
}

.arrow:hover{
	opacity: .5;
	width: 35px;
	height: 35px;
}

/* SPECIFICATIONS */
ul.striped-list {
    list-style-type: none;
    margin: 0 0 20px 0;
    padding: 0;
    }
ul.striped-list > li {
    border-bottom: 1px solid rgb(221,221,221);
    padding: 6px;
}
ul.striped-list > li:nth-of-type(odd) {
    background-color: #e9e9f9 ;
}
ul.striped-list > li:last-child {
    border-bottom: none;
}


/* SLIDER */
img, video {
  max-width: 100%;
  height: auto;
  object-fit: contain;
// cursor: zoom-in;
}

.slider-container {
position: relative;
  max-width: 80rem;
  width: 100%;
  height: auto;
  padding: 0 0rem;
  margin: 0 auto;
background-color: #f4f5f6;
display: grid;
}

.text {
  font-family: inherit;
  font-weight: 700;
  line-height: inherit;
  text-rendering: optimizeLegibility;
}
.text-title {
   font-size: .9rem;
    color: #3050c7;
    text-decoration: none;
    text-align: center;
}

.paragraph {
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: inherit;
  margin: 0.25rem 0;
  color: #252a32;
  text-transform: unset;
  text-rendering: optimizeLegibility;
}

.truncate {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-width: 100%;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .scroll {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1rem 0;
  margin: .5rem 0;
  cursor: default;
  overflow: scroll hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0px 1.25rem;
  scrollbar-width: none;
 scroll-behavior: smooth;
}
.main .scroll::-webkit-scrollbar {
  display: none;
}
.main .scroll.active {
  cursor: grab;
  cursor: -webkit-grab;
}
.main .scroll .card {
  width: 14rem;
  height: 300px;
  flex: 0 0 auto;
  margin: 0 0.75rem;
  border: none;
  outline: none;
  color: #252a32;
  background: #ffffff;
      padding: 10px;
    height: 100%;
    color: #3D3D3D;
    background-color: #f4f5f6;
    border: 1px #252a3230 solid;
    box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
    border-radius: 5px;
scroll-snap-align: center;
}

.card2 {
  width: 95%;
  height: 300px;
  flex: 0 0 auto;
  margin: 0 0.75rem;
  border: none;
  outline: none;
  border-radius: 0.25rem;
  color: #252a32;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
padding: 10px;
height: 100%;

color: #3D3D3D;
     border-radius: 3px;
 background-color: #f4f5f6;
    border: 1px #bbdefb solid;
box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
    border-radius: 10px;
}





.card {
display: grid;
    width: 95%;
    margin: 0 0.75rem;
    outline: none;
    background: #ffffff;
    padding: 10px;
    height: 100%;
    color: #3D3D3D;
    background-color: #f4f5f6;
    border: 1px #252a3230 solid;
    box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
    border-radius: 5px;
position: relative;
}













.main .scroll .card-image {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  padding-top: 0;
}
.main .scroll .card-image img.responsive {
  position: absolute;
  display: block;
  top: 00px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  background-color: #d3d3d3a1;
}
.main .scroll .card-inner {
  width: 100%;
  height: auto;
  padding: 1rem;
}

.card-inner a {
  text-decoration: none;
}

.icon3 {
    width: 2em;
    height: 2em;
    vertical-align: -0.125em;
margin-right: 0.5em;
  }

.icon2 {
    width: 2em;
    height: 2em;
    vertical-align: -0.125em;
margin-right: 0.5em;
  }

.btnSlider {
    display: flex;
    flex: 1 1 0%;
    align-self: center;
    min-width: 50px;
    z-index: 1;
    position: absolute;
    padding-bottom: 12px;
    justify-content: flex-start;
    margin-left: -28px;
}

.btnSliderBtn {
    margin: 0px;
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
    position: relative;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background-color: rgb(255, 255, 255);
    color: rgb(52, 53, 56);
    border: 1px solid rgb(199, 200, 205);
    padding: 0px;
    box-shadow: rgb(0 0 0 / 16%) 0px 2px 8px;
}

.svgWrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.svgSvg {
    font-size: 18px;
    height: 24px;
    width: 24px;
}


/* HEADER */
.topnav{transition: top 0.4s;
overflow:hidden;
font-family:sans-serif;
position:fixed;
top:0;
width:100%;
z-index:999;
background:#0b4a6a;
display: flex;
justify-content: space-evenly;
align-items: center;
flex-direction: row;
max-height: 65px;
}
.topnav a{
float:left;
display:block;
color:#f2f2f2;
text-align:center;
padding:10px 10px;
text-decoration:none;
font-size:17px
}
.topnav .icon{
display:none
}

#cd-cart-trigger {
width: 55px;
height: 100%;
position: relative;
}
#cd-cart-trigger span {
position: absolute;
top: -2px;
right: 25px;
}
#cd-cart-trigger a {
background:url(/assets/images/cd-cart.svg) no-repeat center center;width:55px;height:55px;display: block;
}
.badge {
        background-color: #fab024;
    border-radius: 11px;
    color: #1e1e1e;
    left: -29px;
    line-height: 18px;
    margin-left: 6px;
    min-width: 18px;
    padding: 0 5px;
    position: absolute;
    top: 9px;
    font-family: arial;
z-index: 100;
}
#shadow-layer.is-visible{
display:block;
-webkit-animation:cd-fade-in .3s;
-moz-animation:cd-fade-in .3s;
animation:fade-in .3s
}
/** #cart-shadow-layer.is-visible{position:relative;display:block;-webkit-animation:cd-fade-in .3s;-moz-animation:cd-fade-in .3s;animation:fade-in .3s} **/
#shadow-layer{
position:fixed;
min-height:100%;
width:100%;
top:0;
left:0;
background:rgba(67,87,121,.3);
cursor:pointer;
z-index:2;
display:none
}
@-webkit-keyframes fade-in{
0%{opacity:0}
100%{opacity:1}
}
@-moz-keyframes fade-in{0%{opacity:0}100%{opacity:1}}
@keyframes fade-in{
0%{opacity:0}
100%{opacity:1}
}
.flying-img{
position:absolute;width:120px;height:184px;top:0;left:0;z-index:5;animation:fly 0.8s 1;
-webkit-animation:fly 0.8s 1;-webkit-backface-visibility:hidden
}
@keyframes fly{
0%{
transform:rotate(0deg)
}
100%{
transform:rotate(360deg)
}
}

@media only screen and (min-width:1200px){
#cd-cart-trigger{
right:0;
}
#cd-cart-trigger a{
width:55px;
height:55px;
}
.cd-img-replace{
display:inline-block;
overflow:hidden;
}
#cd-cart.speed-in{
right:0
}
}

#cart-shadow-layer{
position:absolute;
min-height:100%;
width:100%;
top:0;
left:0;
background:rgba(67,87,121,.1);
cursor:pointer;
z-index:2;
display:none
}
@-webkit-keyframes fade-in{
0%{opacity:0}100%{opacity:1}
}
@-moz-keyframes fade-in{
0%{opacity:0}100%{opacity:1}}
@keyframes fade-in{
0%{opacity:0}100%{opacity:1}
}

.flying-img{position:absolute;width:120px;height:184px;top:0;left:0;z-index:5;animation:fly 0.8s 1;}@keyframes fly{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
@-webkit-keyframes fly{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}
@media only screen and (min-width:1200px){
.cd-img-replace {
display:inline-block;overflow:hidden
}
#cd-cart.speed-in{
right:0
}
}
.is-visible {display: block};

#message-div.is-visible {
    display: block;
    -webkit-animation: cd-fade-in .3s;
    -moz-animation: cd-fade-in .3s;
    animation: fade-in .3s;
}

/* FOOTER */
.p-y-4 {
    padding-bottom: 40px!important;
    padding-top: 40px!important;
}

hr {
    border-top-color: #999;
    margin-top: 0px;
    margin-bottom: 2px
}

hr.medium {
    border-top-color: #777;
    border-top-width: 2px
}

hr.thick {
    border-top-width: 4px;
    margin-top: 6px;
    margin-bottom: 34px
}

@media (min-width: 768px) {
.container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled a {
text-decoration: none;
color: #fff;
}

.black-text {
    color: #333!important;
}
.text-uppercase {
 text-transform: uppercase;
 color: white;
}


/* HEADER */
.input-cart-quantity {
	padding: 6px;
    margin: 0;
    vertical-align: top;
    border: #CCC 1px solid;
    border-right: 0px;
}
.cart-info {
	text-align: right; 
	display:inline-block;
	width:15%;
}
.cart-info.title {
	width:50%;
	text-align: left; 
}

.cart-info.quantity {
    width: auto;
    border: #ccc 1px solid;
}
.cart-info.price {
	min-width:20%;
	position:relative;
}
.cart-info.action {
	width: 5%;
    vertical-align: middle;
    float:right;
}
.cart-item-container {
	padding: 5px 10px;
    border-bottom: #e2e2e2 1px solid;
}
.cart-status {
	color: #666;
    float: right;
    font-size: 0.8em;
    padding: 0px 10px;
    line-height: 18px;
} 
#btnEmpty img{
	margin-top:6px;
	cursor:pointer;
}

.cart-item-container.header {
	background: #CCC;
    border-bottom: #b9b8b8 1px solid;
}
.product-price {
	font-size:0.9em;
}

.btn-increment-decrement {
    display: inline-block;
    padding: 5px 0px;
    background: #e2e2e2;
    width: 30px;
    text-align: center;
    cursor:pointer;
}

.input-quantity {
	border: 0px;
    width: 30px;
    display: inline-block;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
}



/* CHAT WIDGET */
.open-chat-widget {
  text-decoration: none;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  right: 28px;
  bottom: 28px;
  background-color: #4488dc;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  z-index: 999998;
}
.open-chat-widget:hover {
  background-color: #3780da;
}
.chat-widget {
  position: fixed;
  display: none;
  right: 25px;
  bottom: 25px;
  box-shadow: 0px 0px 25px 2px rgba(0, 0, 0, 0.1);
  z-index: 999999;
  opacity: 0;
  transform: translateY(100px);
  border-radius: 5px;
  background-color: #fff;
  width: 300px;
  height: 500px;
  visibility: hidden;
  transition: all .2s ease;
  flex-flow: column;
  overflow: hidden;
}
.chat-widget.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.chat-widget .chat-widget-header {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  border-bottom: 1px solid #eef0f2;
}
.chat-widget .chat-widget-header .close-chat-widget-btn {
  display: block;
  text-decoration: none;
  font-size: 28px;
  margin-left: auto;
  padding: 0 15px;
  margin-bottom: 5px;
  color: #b4bdc6;
}
.chat-widget .chat-widget-header .close-chat-widget-btn:hover {
  color: #a6b0bb;
}
.chat-widget .chat-widget-header .previous-chat-tab-btn {
  display: none;
  text-decoration: none;
  font-size: 32px;
  padding: 0 15px;
  margin-bottom: 7px;
  color: #b4bdc6;
}

.chat-widget .chat-widget-header .previous-chat-tab-btn:hover {
  color: #a6b0bb;
}
.chat-widget .chat-widget-content {
  display: flex;
  flex-grow: 1;
}
.chat-widget .chat-widget-tabs {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.chat-widget .chat-widget-tabs .chat-widget-tab {
  display: flex;
  flex-flow: column;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  overflow: hidden;
  transition: all ease .2s;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab {
  justify-content: center;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form {
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 15px;
  width: 100%;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form input, 
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form button {
  border-radius: 25px;
  padding: 10px 15px;
  margin-bottom: 15px;
  font-size: 14px;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form input {
  border: 1px solid #e0e3e7;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form button {
  appearance: none;
  color: #fff;
  font-weight: 500;
  background-color: #4488dc;
  border: 0;
  cursor: pointer;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form button:hover {
  background-color: #2f7ad8;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-login-tab form .msg {
  font-weight: 500;
  margin: 0;
  padding-bottom: 15px;
  font-size: 14px;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  flex-basis: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-new-conversation {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid #eef0f2;
  font-weight: 500;
  color: #888b8f;
  font-size: 14px;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-new-conversation:hover {
  background-color: #f7f8f9;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation {
  display: flex;
  text-decoration: none;
  border-bottom: 1px solid #eef0f2;
  padding: 15px;
  width: 100%;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  color: #fff;
  background-color: #3b4656;
  border-radius: 50%;
  text-transform: uppercase;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation .details {
  padding: 0 10px;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation .details .title {
  font-size: 14px;
  color: #5f6061;
  font-weight: 500;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation .details .msg {
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 150px;
  color: #8f9091;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation .date {
  flex: 1;
  text-align: right;
  font-size: 12px;
  color: #8f9091;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversations-tab .chat-widget-conversations .chat-widget-conversation:hover {
  background-color: #f7f8f9;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversation-tab .chat-widget-messages {
  display: flex;
  flex-flow: column;
  padding: 15px;
  flex-grow: 1;
  flex-basis: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversation-tab .chat-widget-messages .date {
  margin: 0;
  padding: 15px;
  text-align: center;
  font-size: 12px;
  color: #8f9091;
  font-weight: 500;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversation-tab .chat-widget-messages .chat-widget-message {
  align-self: flex-end;
  background-color: #4488dc;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  max-width: 90%;
  margin-bottom: 10px;
  font-size: 14px;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversation-tab .chat-widget-messages .chat-widget-message.alt {
  align-self: flex-start;
  background-color: #e2e6eb;
  color: #000;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversation-tab .chat-widget-input-message {
  height: 60px;
  padding: 10px;
  border-top: 1px solid #e0e3e7;
}
.chat-widget .chat-widget-tabs .chat-widget-tab.chat-widget-conversation-tab .chat-widget-input-message input {
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  border: 0;
  outline: 0;
}
.chat-widget-messages::-webkit-scrollbar,
.chat-widget-conversations::-webkit-scrollbar {
  width: 8px;
}
.chat-widget-messages::-webkit-scrollbar-track,
.chat-widget-conversations::-webkit-scrollbar-track {
  background: transparent;
}
.chat-widget-messages::-webkit-scrollbar-thumb,
.chat-widget-conversations::-webkit-scrollbar-thumb {
  background-color: #cdd0d380;
  border-radius: 15px;
  border: transparent;
}

.select-cell  { width: 80%; }
.cost-cell  { width: 20%; }

.order-summary {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
background-color: #f9f0e6;
}
  
  .summary-row {
    width: 100%;
    display: flex;
    }
    .summary-cell {
      box-sizing: border-box;
      flex-grow: 1;
      padding: 0.1em .1em;
      overflow: hidden;
      list-style: none;
}

.summary-row-st {
background-color: #d2e2f0;
font-weight: 700;
font-size: 17px;
text-align: right;
padding: 10px;
}


.brand {
color: green;
font-weight: 700;
text-transform: uppercase;
}

.mainImage {
box-shadow: 0px 0px 31px -19px rgb(0 0 0 / 75%);
cursor: zoom-in;
}


/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px;
  position: relative;
  transition: 0.3s linear;
}
.navbar ul {
  list-style: none;
}
.navbar ul a {
  text-decoration: none;
}
.navbar .navbar-toggler,
.navbar .nav-link,
.navbar .utils-search {
  color: #636363;
}
.navbar .navbar-utils > * {
  cursor: pointer;
}
.navbar .btn-search {
  font-size: 1.5rem;
  background: transparent;
  outline: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.navbar-nav {
  display: flex;
  list-style: none;
}
.navbar-nav .nav-link {
  padding: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 400;
  display: block;
  transition: 150ms ease;
}
.navbar-nav .nav-item {
  margin: 0 10px;
  position: relative;
}
.navbar-nav > .nav-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #0081ff;
  bottom: -16px;
  transition: 400ms ease;
  transform: scaleX(1.5);
  opacity: 0;
}
.navbar-nav > .nav-item:hover:after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar-toggler {
  padding: 0.1rem 0.45rem;
  cursor: pointer;
  font-size: 2rem;
  background: none;
  outline: none;
  border: 1px solid #636363;
  border: none;
  border-radius: 3px;
  transition: 0.15s linear;
  display: none;
  margin-left: auto;
  margin-right: auto;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.36);
}

/* Navbar options (bg options) */
.bg-primary {
  background-color: #0e1091;
  z-index: 99999;
border-bottom: 12px solid #00AEEF;
}
.bg-primary .navbar-toggler,
.bg-primary .nav-link,
.bg-primary .utils-search {
  color: #fff;
}
.bg-primary .nav-item:after {
  background: #fff;
}

/* Common Hover */
.bg-blur .nav-item:hover > .nav-link {
  color: #0081ff;
}

/* Dropdown CSS */
.nav-item .dropdown {
  width: 90vw;
  max-width: max-content;
  display: block;
  position: absolute;
  top: 35px;
  transition: 300ms;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 4px;
  z-index: 999;
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.15);
}

.nav-item .dropdown .nav-link {
  color: #636363;
}
.nav-item .dropdown .dropdown {
  top: 0;
  left: calc(100% + 20px);
  border-top: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
}
.nav-item .dropdown .dropdown:before {
  top: 10px;
  left: -10px;
  border: 5px solid transparent;
  border-right-color: #000;
}
.nav-item .dropdown:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  border: 5px solid transparent;
  border-bottom-color: #000;
  display: none;
}
.nav-item .dropdown .nav-item:not(:last-child) {
  margin-bottom: 5px;
border-bottom: solid;
 border-bottom-width: thin;
border-color: #ccc7c7;
}
.nav-item .dropdown > .nav-item:hover > .nav-link {
  color: #0081ff;
}
.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.nav-item:hover > a::before {
  transform: rotate(90deg);
}

.nav-close {
  margin-left: auto;
  margin-top: 10px;
  display: none;
}
.nav-close .btn-nav-close {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 2.5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 1px solid #363636;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-close .btn-nav-close .close-btn {
  transform: rotate(45deg);
}
.nav-close .btn-nav-close:hover, .nav-close .btn-nav-close:focus {
  background: #363636;
  color: #fff;
}

.nav-item.icon > a:before {
  content: "";
  position: absolute;
  right: -10px;
  top: calc(50% + 0px);
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: inherit;
  transition: 0.15s linear;
}
.nav-item.icon:hover > a::before {
  transform: rotate(90deg);
}

  .navbar-brand, .navbar-utils {
display: flex;
align-items: center;
justify-content: space-evenly;
    flex: auto;
  }


/* Responsive (navbar alignments options) */
@media (min-width: 992px) {
  .navbar-brand, .navbar-utils {
display: flex;
align-items: center;
justify-content: space-evenly;
    flex: auto;
  }

  .navbar-nav {
    flex: 2;
    justify-content: center;
  }

  .navbar-utils {
    text-align: right;
  }
}

/* Responsive navbar */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-nav {
    background: #ffffff;
    flex-direction: column;
    z-index: 99999;
    padding: 0 20px;
    opacity: 0;
    transition: 400ms ease;
    /* Sidebar */
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    transform: translateX(-300px);
  }
  .navbar-nav .nav-link {
    margin: 10px 0;
    color: #636363;
    display: flex;
    align-items: center;
  }
  .navbar-nav > .nav-item:first-child {
    margin-top: 20px;
  }
  .navbar-nav > .nav-item:last-child {
    margin-bottom: 20px;
  }
  .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .navbar-nav .nav-item:hover > .nav-link {
    color: #0081ff;
  }
  .navbar-nav > .nav-item:after {
    display: none;
  }
  .navbar-nav .nav-close {
    display: block;
  }

  .navbar-nav.active {
    max-height: initial;
    opacity: 1;
    transform: translateX(0);
    left: 0;
    box-shadow: 0px 0px 0 10000px rgba(0, 0, 0, 0.5);
  }

  .nav-item .dropdown {
    padding: 0;
    position: initial;
    max-height: 0;
    width: initial;
    border: none;
    box-shadow: none;
  }
  .nav-item .dropdown .dropdown {
    border: none;
  }
  .nav-item .dropdown:before {
    display: none;
  }
  .nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    max-height: initial;
  }

  .nav-item.icon a:before {
    top: unset;
    right: 0;
    transform: translateY(0px);
  }
}

.menu-text{
font-size: .5em;
text-transform: uppercase;
line-height: 1em;
color: white;
}

/* Search Popup */
.search-popup {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  transition: 200ms;
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
}
.search-popup.active form {
  transform: translateY(0px);
}
.search-popup form {
  position: absolute;
  background: #fff;
  width: 90vw;
  height: 200px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
  transition: 300ms;
  transform: translateY(20px);
top: 80px;
}
.search-popup .btn-search-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 3rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-popup .btn-search-close .close-btn {
  transform: rotate(45deg);
}
.search-popup input[type=search] {
  width: 100%;
  height: 70px;
  border: none;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 35px;
  font-size: 2rem;
  font-weight: 300;
  padding: 0px 10px;
  transition: 100ms;
}
.search-popup input[type=search]:focus {
  box-shadow: 0 0 0 3px rgba(0, 129, 255, 0.43);
  border-color: transparent;
}
.search-popup input[type=search]::-webkit-input-placeholder {
  color: #b3b3b3;
}

.svg-icon.search-icon {
  display: inline-block;
  width: 32px;
  height: 32px;

  /** On hover: blue strokes **/
  &:focus,
  &:hover {
    .search-path {
      stroke: #299ecc;
    }
  }

  /** On click: thicker black strokes  **/
  &:active {
    .search-path {
      stroke: #111516;
      stroke-width: 2px;
    }
  }
}


@media (max-width: 576px) {
  .search-popup form {
    width: calc(100% - 30px);
height: 94px;
padding: 10px;
  }
}





/** LIGHTBOX **/
#spotlight {
  position: fixed;
  top: -1px;
  bottom: -1px;
  width: 100%;
  z-index: 99999;
  color: #fff;
  background-color: #fbfafa;
  opacity: 0;
  overflow: hidden;
  user-select: none;
  transition: opacity 0.2s ease-out;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  contain: strict;
  touch-action: none;
//  pointer-events: none;
}
#spotlight.show {
  opacity: 1;
  transition: none;
  pointer-events: auto;
}
#spotlight.white {
  color: #212529;
  background-color: #fff;
}
#spotlight.white .spl-spinner,
#spotlight.white .spl-prev,
#spotlight.white .spl-next,
#spotlight.white .spl-page ~ * {
  filter: invert(1);
}
#spotlight.white .spl-progress {
  background-color: rgba(0, 0, 0, 0.35);
}
#spotlight.white .spl-header,
#spotlight.white .spl-footer {
  background-color: rgba(255, 255, 255, 0.65);
}
#spotlight.white .spl-button {
  background: #212529;
  color: #fff;
}
#spotlight .cover {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#spotlight .contain {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
#spotlight .autofit {
  object-fit: none;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  transition: none;
}
.spl-track {
  position: absolute;
  width: 100%;
  height: 100%;
  contain: strict;
}
.spl-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 42px;
  opacity: 0;
}
.spl-spinner.spin {
  background-image: url("/assets/images/preloader.svg");
  transition: opacity 0.2s linear 0.25s;
  opacity: 1;
}
.spl-spinner.error {
  background-image: url("/assets/images/error.svg");
  background-size: 128px;
  transition: none;
  opacity: 0.5;
}
.spl-scene {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.1, 1, 0.1, 1);
  contain: layout size;
  will-change: transform;
}
.spl-pane > * {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  left: 50%;
  top: 50%;
  margin: 0;
  padding: 0;
  border: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.65s cubic-bezier(0.3, 1, 0.3, 1), opacity 0.65s ease;
  contain: layout style;
  will-change: transform, opacity;
  visibility: hidden;
}
.spl-pane {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.3, 1, 0.3, 1);
  contain: layout size;
  will-change: transform, contents;
}
.spl-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  text-align: right;
  background-color: rgba(0, 0, 0, 0.45);
  transform: translateY(-100px);
  transition: transform 0.35s ease;
  overflow: hidden;
  will-change: transform;
}
#spotlight.menu .spl-header,
.spl-header:hover {
  transform: translateY(0);
}
.spl-header div {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  width: 50px;
  height: 50px;
  opacity: 0.5;
}
.spl-progress {
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.45);
  transform: translateX(-100%);
  transition: transform linear;
}
.spl-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  line-height: 20px;
  padding: 20px 20px 0 20px;
  padding-bottom: env(safe-area-inset-bottom, 0);
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  will-change: transform;
}
#spotlight.menu .spl-footer,
.spl-footer:hover {
  transform: translateY(0);
}
.spl-title {
  font-size: 22px;
  margin-bottom: 20px;
}
.spl-description {
  margin-bottom: 20px;
}
.spl-button {
  display: inline-block;
  background: #fff;
  color: #000;
  border-radius: 5px;
  padding: 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
.spl-page {
  float: left;
  width: auto;
  line-height: 50px;
}
.spl-page ~ * {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
  float: right;
}
.spl-fullscreen {
  background-image: url("/assets/images/maximize.svg");
}
.spl-fullscreen.on {
  background-image: url("/assets/images/minimize.svg");
}
.spl-autofit {
  background-image: url("/assets/images/autofit.svg");
}
.spl-zoom-out {
  background-image: url("/assets/images/zoom-out.svg");
  background-size: 22px;
}
.spl-zoom-in {
  background-image: url("/assets/images/zoom-in.svg");
  background-size: 22px;
}
.spl-download {
  background-image: url("/assets/images/download.svg");
  background-size: 20px;
}
.spl-theme {
  background-image: url("/assets/images/theme.svg");
}
.spl-play {
  background-image: url("/assets/images/play.svg");
}
.spl-play.on {
  background-image: url("/assets/images/pause.svg");
  animation: pulsate 1s ease infinite;
}
.spl-close {
  background-image: url("/assets/images/close.svg");
}
.spl-info {
  background-image: url("/assets/images/info.svg");
}
.spl-prev,
.spl-next {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 50px;
  height: 50px;
  opacity: 0.65;
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 100%;
  cursor: pointer;
  margin-top: -25px;
  transform: translateX(-100px);
  transition: transform 0.35s ease;
  background-image: url("/assets/images/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  will-change: transform;
}
.spl-next {
  left: auto;
  right: 20px;
  transform: translateX(100px) scaleX(-1);
}
#spotlight.menu .spl-prev {
  transform: translateX(0);
}
#spotlight.menu .spl-next {
  transform: translateX(0) scaleX(-1);
}
@media (hover: hover) {
  .spl-page ~ div {
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .spl-page ~ div:hover,
  .spl-prev:hover,
  .spl-next:hover {
    opacity: 1;
  }
}
@media (max-width: 500px) {
  .spl-header div {
    width: 44px;
  }
  .spl-footer .spl-title {
    font-size: 20px;
  }
  .spl-footer {
    font-size: 14px;
  }
  .spl-prev,
  .spl-next {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
    background-size: 15px 15px;
  }
  .spl-spinner {
    background-size: 30px 30px;
  }
}
.hide-scrollbars {
  overflow: hidden !important;
}
@keyframes pulsate {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}