/* 
new-balance-574: https://nb.scene7.com/is/image/NB/wl574evb_nb_02_i?$pdpflexf2$&wid=440&hei=440
 nike-airforce-1-lv8: https://static.nike.com/a/images/t_PDP_1728_v1/f_auto,q_auto:eco/b7d9211c-26e7-431a-ac24-b0540fb3c00f/air-force-1-07-shoes-WrLlWX.png
 nike-airforce1: https://lzd-img-global.slatic.net/g/p/b9655aae270f527efed0ec9ae9345e8d.jpg_720x720q80.jpg_.webp
*/
canvas.deepar {
    position: fixed;
    border: 0px none;
    background-color: black;
    display: block;
    margin-left: 50px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
#brand-text{
  display: none;
  align-items: center;
  text-align: center;
  top: 170px;
  left: 440px;
  position: fixed;
  padding: 20px;
  z-index: 9999;
  height: 35px;
  font-size: 18px;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
}
  #feet-text {
    position: fixed;
    top: 52%;
    left: 8%;
    text-align: left;
    width: 100%;
    color: #000;
  }

  body {
    margin-top: 50px;
    padding: 0px;
  }

  #loader-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
  }

  .loader {
    display: inline-block;
    position: relative;
    top: 42%;
    z-index: 1000;

    width: 90px;
    height: 90px;
    margin: auto;
    background-color: #00f;

    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.5s infinite ease-in-out;
    animation: sk-scaleout 1.5s infinite ease-in-out;
  }

  @-webkit-keyframes sk-scaleout {
    0% {
      -webkit-transform: scale(0)
    }

    100% {
      -webkit-transform: scale(1.0);
      opacity: 0;
    }
  }

  @keyframes sk-scaleout {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    100% {
      -webkit-transform: scale(1.0);
      transform: scale(1.0);
      opacity: 0;
    }
  }
nav{
    z-index: 9999;
}
  .product-container{
    width: 100%;
    background-color: #fff !important;
  }
  .list-product {
  margin-top:70px;
  margin-left: 0px;

}

.product-card {
    height: 460px;
    width: 200px;
  cursor: pointer;
}

.link-label {
  margin: 0;
  padding: 0;
  text-underline-offset: unset;
}

.card-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2; /* Limiting to 2 lines */
  width: 80%;
  font-size: 16px;
  font-weight: 500;
}

.product-card .group {
  margin-bottom: 1rem;
}

.img-span {
  display: block;
  height: 180px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.list-product .name-span {
  width: 150%;
  display: inline-block;
  height: 46px;
}
.price{
    margin-top: 5px;
    text-decoration: none;
    color: #000;
}
/*Filter*/
.filter{
    align-self: center;
    height: 40px;
    width:max-content;
}
.text-filter{
    margin: 10px 15px 10px 15px;
}
.filter-region{
  margin-top: 5px;
    padding-top: 40px;
    width: 100%;
    position: fixed;
    background-color: #fff;
    z-index: 2;
}
a.cart-link{
  color: inherit;
}

/* Index page */
.index-page{
  margin: auto;
  color: #fff;
  text-align: center;
}
/*Privacy*/
.privacy-page{
  margin-top:60px;
  margin-bottom:50px;
}
.privacy-page h1{
  text-align:center;
  margin-bottom:20px;
}
.index-page p{
  margin: 5px;
}
.camera-block{
  display: flex;
  flex-direction: column;
}
/* Scanning */
.scan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scan .feetprint{
  position: relative;
  width: 280px;
  height: 280px;
  background: url(gray.png);
  background-size: 280px;
  background-repeat: no-repeat; 
}

.scan .feetprint::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(cyan.png);
  background-size: 280px;
  background-repeat: no-repeat;
  animation: animate 4s ease-in-out infinite;
}
@keyframes animate{
  0%, 100%{
    height: 0%;
  }
  50%{
    height: 100%;
  }
}
.scan .feetprint::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #48ffff;
  border-radius: 8px;
  filter: drop-shadow(0 0 10px #48ffff) drop-shadow(0 0 30px #48ffff);
  animation: animate_line 4s ease-in-out infinite;
}
@keyframes animate_line{
  0%, 100%{
    top: 0%;
  }
  50%{
    top: 100%;
  }
}
.scan h4{
  text-transform: uppercase;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.5px;
  margin-top: 20px;
  color: #48ffff;
}
.text-group p{
  font-size: 18px;
  width: 150px;
}
.text-group{
  margin-bottom: 10px;
  margin-left: 240px;
}
.text-group-2{
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.1px;
}
.text-bold{
  font-weight: 600;
}
.line{
  content: "";
  height: 10px;
  border-radius: 2px;
  color: gray;
}