.item_popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.item_popup_content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  min-height: 216px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10010;
  padding: 30px;
  flex-direction: row;
  display: none;
}
@media (max-width: 768px) {
  .item_popup_content {
    width: 100vw;
    height: auto;
    position: absolute;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    transform: translate(-50%, 0%);
    flex-direction: column;
    align-items: center;
    padding: 16px 30px;
  }
}
.item_popup_content .item_popup_close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #FFFFFF;
  background-image: url(/images/icons/black_cross.svg);
  width: 20px;
  height: 20px;
  padding: 4px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 10020;
  border: 0 !important;
  outline: none !important;
}
.item_popup_content .item_popup_close:focus {
  border: 0 !important;
  outline: none !important;
}
.item_popup_content .item_popup_close:active {
  border: 0 !important;
  outline: none !important;
}
.item_popup_content .item_popup_img {
  height: 150px;
  width: 150px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .item_popup_content .item_popup_img {
    margin: 0 0 20px;
  }
}
.item_popup_content .item_popup_text {
  max-width: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.item_popup_content .item_popup_text_title {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #000000;
  margin-bottom: 10px;
}
.item_popup_content .item_popup_text_description {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 100;
  line-height: 17px;
  color: #000000;
}

.active {
  opacity: 1;
  visibility: visible;
}

.item_popup_overlay.active .item_popup_content {
  display: flex;
}

.item_popup_swipe-line {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  z-index: 10060;
  display: none;
}
.item_popup_swipe-line::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -10px;
  right: -10px;
  bottom: -15px;
  background: transparent;
}
.item_popup_swipe-line:active {
  cursor: grabbing;
}
@media (max-width: 768px) and (orientation: portrait) {
  .item_popup_swipe-line {
    display: flex;
  }
}/*# sourceMappingURL=item_popup.css.map */