.product-status {
  position: relative;
  display: inline-block;
}
.product-status.available .product-status__button {
  background: #e3fae0;
  border-color: transparent;
}
.product-status.available .product-status__button_icon svg {
  color: #40b231;
}
.product-status.available .product-status__button_text {
  color: #40b231;
}
.product-status.available .product-status__button_arrow svg {
  color: #40b231;
}
.product-status.active .product-status__data {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .product-status.active .product-status__data {
    transform: none;
  }
}
.product-status__button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 14px;
  padding: 6px 10px 6px 8px;
  border: 1px solid #c6c6c6;
}
.product-status__button_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-status__button_icon svg {
  width: 14px;
  height: 14px;
}
.product-status__button_text {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #959595;
  white-space: nowrap;
}
.product-status__button_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-status__button_arrow svg {
  width: 8px;
  height: 6px;
  color: #959595;
}
.product-status__data {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  width: 100%;
  z-index: 4;
  box-shadow: none;
  transform: translateY(100%);
  background: #fff;
  padding-bottom: 30px;
  transition: max-height 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), top 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), visibility 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), box-shadow 0.3s cubic-bezier(0.3, 0.1, 0.26, 1), transform 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
@media (min-width: 768px) {
  .product-status__data {
    position: fixed;
    border-radius: 16px;
    max-height: 0;
    transform: none;
    width: max-content;
    padding-bottom: 0;
  }
}
.product-status__mobile-swipe {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
  touch-action: none;
}
.product-status__mobile-swipe::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  right: 0;
  margin: 0 auto;
  width: 40px;
  height: 3px;
  border-radius: 25px;
  background-color: #c6c6c6;
}
@media (min-width: 768px) {
  .product-status__mobile-swipe {
    display: none;
  }
}
.product-status__mobile-length {
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.24;
  color: #3f4041;
  padding-inline: 15px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .product-status__mobile-length {
    display: none;
  }
}
.product-status__close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .product-status__close {
    display: inline-flex;
  }
}
.product-status__close:hover svg {
  color: #262627;
}
.product-status__close svg {
  width: 16px;
  height: 16px;
  color: #c6c6c6;
}
.product-status__info {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  width: auto;
}
@media (min-width: 768px) {
  .product-status__info {
    width: 381px;
    padding: 20px 35px 20px 20px;
  }
}
.product-status__info_header {
  padding: 12px 14px;
  border-radius: 10px;
  background-color: #f6f6f6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.product-status__info_header span {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.24;
  color: #3f4041;
}
.product-status__info_header span:nth-child(2) {
  padding: 0 0 0 30px;
}
@media (min-width: 768px) {
  .product-status__info_header span:nth-child(2) {
    padding: 0 0 0 15px;
  }
}
.product-status__info_header span:nth-child(3) {
  text-align: center;
}
.product-status__info_list {
  overflow-y: auto;
  height: 100%;
  max-height: 360px;
}
.product-status__info_list::-webkit-scrollbar {
  width: 2px;
}
.product-status__info_list::-webkit-scrollbar-track {
  background-color: #eaeaea;
}
.product-status__info_list::-webkit-scrollbar-thumb {
  background-color: #ff7100;
}
.product-status__info_list li {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  padding: 12px 14px;
  justify-content: space-between;
  border-bottom: 1px solid #eaeaea;
}
.product-status__info_list li span {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.24;
  white-space: nowrap;
}
.product-status__info_list li span:nth-child(2) {
  position: relative;
  padding: 0 0 0 30px;
}
.product-status__info_list li span:nth-child(2)::before {
  content: "X";
  position: absolute;
  top: 1px;
  left: -7px;
  right: 0;
  margin: auto 0;
  color: #959595;
}
.product-status__info_list li span:nth-child(3) {
  text-align: center;
  color: #40b231;
}
.product-status__info_list li span:nth-child(3) svg {
  width: 14px;
  height: 14px;
  color: #40b231;
}
.product-status__none {
  padding: 20px 50px 20px 20px;
}
.product-status__none p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #3f4041;
  max-width: 220px;
}