@keyframes blink {
  0% {
    width: 3rem;
    height: 3rem;
    opacity: 0.6;
  }
  100% {
    width: 5rem;
    height: 5rem;
    opacity: 0.3;
  }
}

.product-wrap {
  display: block;
  height: 100%;
  border-radius: 1.6rem;
  background-color: #fff;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1201px) {
  .product-wrap:hover {
    box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.16);
  }
  .product-wrap:hover .info .name {
    color: #0B68B1;
  }
}
.product-wrap .stt {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  left: 0.8rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #0B68B1;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.product-wrap .img {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.product-wrap .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.product-wrap .img .remove {
  position: absolute;
  top: 0rem;
  right: 0rem;
  transform: translate(30%, -30%);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  z-index: 5;
  background-color: #FA3535;
  color: #fff;
  transition: 0.3s;
  font-size: 1.2rem;
  line-height: 1;
  display: none;
}
@media (min-width: 1201px) {
  .product-wrap .img .remove:hover {
    opacity: 0.7;
  }
}
.product-wrap .img .remove .tooltip {
  position: absolute;
  z-index: 6;
  top: 100%;
  left: 50%;
  transform: translateX(-80%);
  padding: 0.4rem;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
}
.product-wrap .info {
  padding: 2.4rem;
  padding-bottom: 2rem;
  font-weight: 600;
}
@media (max-width: 500px) {
  .product-wrap .info {
    padding: 0.8rem;
  }
}
.product-wrap .info .name {
  font-size: 1.8rem;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .product-wrap .info .name {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 800px) {
  .product-wrap .info .name {
    font-size: 1.5rem;
  }
}
@media (max-width: 500px) {
  .product-wrap .info .name {
    font-size: 1.4rem;
  }
}
.product-wrap .info .sku {
  font-size: 1.4rem;
  color: #939393;
  margin: 0.8rem 0;
}
.product-wrap .info .price-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  font-size: 1.4rem;
}
.product-wrap .info .price-wrap .price {
  letter-spacing: 1px;
}
.product-wrap .info .price-wrap .status {
  color: #0B68B1;
}


.catalog-img {
  width: 100%;
  position: relative;
  z-index: 4;
}
.catalog-img .img {
  position: relative;
}
.catalog-img .img.admin {
  cursor: grab;
}
.catalog-img .img.admin .product-wrap .img .remove {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.catalog-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.catalog.product-list {
  padding-top: 0.8rem;
}

.catalogue-detail-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.catalogue-detail-dots .dot {
  position: absolute;
  cursor: pointer;
}
.catalogue-detail-dots .dot::after {
  content: "";
  z-index: 1;
  width: 0rem;
  height: 0rem;
  background-color: #CECECE;
  display: block;
  border-radius: 9.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blink 1.5s linear 0s infinite;
  pointer-events: none;
}
.catalogue-detail-dots .dot:hover .num {
  background-color: #0B68B1;
  color: #fff;
}
.catalogue-detail-dots .dot:hover .product-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.catalogue-detail-dots .dot .num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #EFEFEF;
  transition: 0.3s linear;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .catalogue-detail-dots .dot .num {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
.catalogue-detail-dots .dot .dot__tooltip {
  position: absolute;
  width: max-content;
  font-size: 1.4rem;
  font-weight: 300;
  font-weight: bold;
  padding: 0.5rem 2rem;
  background-color: #0B68B1;
  color: #fff;
  border-radius: 0.8rem;
  top: 0;
  left: 50%;
  transform: translate(-50%, -1.5rem);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
  max-width: 200px;
  pointer-events: none;
  z-index: 3;
}
.catalogue-detail-dots .dot .product-list {
  width: 40rem;
  padding: 1.2rem;
  box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.16);
  transform: translateX(-45%);
  position: absolute;
  z-index: 3;
  border-radius: 1.2rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s linear;
}
@media (max-width: 450px) {
  .catalogue-detail-dots .dot .product-list {
    width: calc(100vw - 3rem) !important;
    transform: translateX(-37%);
    padding: 0.6rem 0.2rem;
  }
}
.catalogue-detail-dots .dot .product-list .product-item {
  width: 100%;
  flex-shrink: 0;
}
.catalogue-detail-dots .dot .product-list .product-item:last-child {
  margin-bottom: 0;
}
.catalogue-detail-dots .dot .product-list .product-wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  overflow: visible;
  padding: 0.4rem;
  border-radius: unset;
}
.catalogue-detail-dots .dot .product-list .product-wrap .img {
  width: 7rem;
  height: 7rem;
  border-radius: 1.2rem;
  margin-right: 0.8rem;
  padding-top: unset;
}
.catalogue-detail-dots .dot .product-list .product-wrap .img img {
  border-radius: 1.2rem;
}
.catalogue-detail-dots .dot .product-list .product-wrap .info {
  padding: 0;
  flex: 1;
}
@media (max-width: 450px) {
  .catalogue-detail-dots .dot .product-list .product-wrap .info {
    padding: 0.8rem;
  }
}
.catalogue-detail-dots .dot .product-list .product-wrap .info .name {
  font-size: 1.6rem;
}
.catalogue-detail-dots .dot .product-list .product-wrap .info .sku {
  margin: 0.4rem 0;
}
.catalogue-detail-dots .dot .product-list .product-wrap .info .price-wrap {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}
.catalogue-detail-dots .dot .product-list .product-wrap .info .price-wrap .price {
  margin-right: 1.6rem;
}
@media (min-width: 1201px) {
  .catalogue-detail-dots .dot .product-list .product-wrap:hover {
    box-shadow: unset;
  }
}

.catalogue-data {
  position: absolute;
  z-index: 3;
  width: 32rem;
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.08);
  animation: headerNotifyGrowth ease-in 0.2s;
  display: none;
}
@media (max-width: 1200px) {
  .catalogue-data {
    display: none !important;
  }
}
.catalogue-data .label {
  display: block;
  padding: 1rem;
  background: #0B68B1;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.catalogue-data .catalogue-data-close {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4.4rem;
  height: 100%;
  background: #0B68B1;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 1201px) {
  .catalogue-data .catalogue-data-close:hover {
    background-color: #FA3535;
  }
}
.catalogue-data .catalogue-data-close .close {
  width: 23%;
  height: 25%;
  background: #fff;
  clip-path: polygon(20% 0%, 0% 20%, 30% 50%, 0% 80%, 20% 100%, 50% 70%, 80% 100%, 100% 80%, 70% 50%, 100% 20%, 80% 0%, 50% 30%);
}
.catalogue-data .pro-position {
  width: calc(100% - 2rem);
  margin: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.catalogue-data .pro-position-ipt {
  width: 100%;
  padding: 1rem;
}
.catalogue-data .pro-position-error {
  position: absolute;
  top: 110%;
  left: 0;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}
.catalogue-data .pro-position-error.error {
  opacity: 1;
}
.catalogue-data .pro-position-error::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 5%);
  width: 1rem;
  height: 0.5rem;
  background-color: rgba(0, 0, 0, 0.8);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.catalogue-data .pro-list {
  max-height: 20rem;
  overflow: hidden auto;
  margin: 0.8rem 0;
}
.catalogue-data .pro-name {
  padding: 1rem;
  padding-right: 2.4rem;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
@media (min-width: 1201px) {
  .catalogue-data .pro-name:hover {
    background-color: rgba(0, 0, 0, 0.08);
  }
}
.catalogue-data .pro-name.active::after {
  height: 0.7rem;
}
.catalogue-data .pro-name.active::before {
  height: 1.2rem;
}
.catalogue-data .pro-name::after, .catalogue-data .pro-name::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 0.3rem;
  height: 0;
  transform: translateY(-50%);
  background-color: green;
  transition: all 0.2s linear;
}
.catalogue-data .pro-name::after {
  transform: translate(-0.6rem, -45%) rotate(-45deg);
}
.catalogue-data .pro-name::before {
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 0.2s;
}