.detail_item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.detail_item_right {
  width: 50%;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .detail_item_right {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .detail_item_right {
    width: 100%;
    padding-left: 0;
    margin-top: 0px;
  }
}
.detail_item_right h1 {
  width: 100%;
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  padding: 0px 0px 30px 0px;
  line-height: 40px;
}
.detail_item_right h1 small {
  font-weight: 400;
  font-size: 16px;
  display: block;
  color: #666;
}
@media (max-width: 768px) {
  .detail_item_right h1 {
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    padding: 0px 0px 15px 0px;
  }
}

.detail_item_price {
  width: 100%;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 768px) {
  .detail_item_price {
    font-size: 22px;
    line-height: 29px;
    padding: 0px 0px 15px 0px;
    text-align: center;
  }
}

.detail_item_buttons {
  margin: 30px 0px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .detail_item_buttons {
    margin: 15px 0px;
  }
}
.detail_item_buttons button {
  height: 45px;
  background: none;
  border: 1px #333 solid;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .detail_item_buttons button {
    font-size: 15px;
  }
}
.detail_item_buttons button svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.detail_item_buttons_bye {
  width: 49.5%;
}
.detail_item_buttons_bye button {
  background: #333;
  color: #ffffff;
  transition: var(--animation1);
}
.detail_item_buttons_bye button:hover {
  color: #333333;
  background: #fff;
}
.detail_item_buttons_wish {
  width: 49.5%;
}
.detail_item_buttons_wish button {
  color: #777;
  transition: var(--animation1);
}
.detail_item_buttons_wish button svg {
  opacity: 0.6;
}
.detail_item_buttons_wish button:hover {
  color: #333333;
}
.detail_item_buttons_wish button:hover svg {
  opacity: 1;
}
.detail_item_buttons_wish button.in-favor {
  color: #333333;
}
.detail_item_buttons_wish button.in-favor svg {
  opacity: 1;
}

.spoiler_properties_link {
  background: none;
  border: none;
  border-bottom: 1px #333 solid;
  display: flex;
  justify-content: space-between;
  padding: 3px 0px;
  width: 100%;
  align-items: center;
  cursor: pointer;
  transition: var(--animation1);
}
.spoiler_properties_link span {
  color: #333333;
}
.spoiler_properties_link svg {
  width: 15px;
  height: 15px;
  transform: rotate(180deg);
  transition: var(--animation1);
}
.spoiler_properties_link:hover {
  color: #555;
}
.spoiler_properties_link_act svg {
  transform: rotate(0deg);
}
.spoiler_properties_link_properties {
  height: 0;
  width: 100%;
  opacity: 0;
  margin-top: 15px;
  transition: var(--animation1);
}
@media (max-width: 768px) {
  .spoiler_properties_link_properties {
    font-size: 15px;
  }
}
.spoiler_properties_link_properties_show {
  height: auto;
  opacity: 1;
}

.detail_item_props_inserts {
  list-style: none;
  margin: 0px 0px 15px 0px;
  padding: 0;
}
.detail_item_props_inserts_sert {
  border-bottom: none !important;
}
.detail_item_props_inserts li {
  display: flex;
  border-bottom: 1px dotted #ddd;
  justify-content: space-between;
}
.detail_item_props_inserts li strong {
  background: #fff;
  padding: 0px 0px 1px 0px;
  position: relative;
  bottom: -7px;
  font-weight: 400;
  color: #999999;
}
.detail_item_props_inserts li span {
  background: #fff;
  padding: 0px 0px 2px 0px;
  position: relative;
  bottom: -7px;
}
.detail_item_props_inserts li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  margin-top: 10px;
}
.detail_item_props_inserts li a svg {
  width: 15px;
  height: 15px;
  position: relative;
}
.detail_item_props_inserts li a i {
  font-style: normal;
  margin-left: 3px;
}
.detail_item_props_inserts li a:hover span {
  color: #666;
}

.detail_item_props_other {
  list-style: none;
  margin: 0px 0px 0px 0px;
  padding: 0;
}
.detail_item_props_other li {
  display: flex;
  border-bottom: 1px dotted #ddd;
  justify-content: space-between;
}
.detail_item_props_other li strong {
  background: #fff;
  padding: 0px 0px 1px 0px;
  position: relative;
  bottom: -7px;
  font-weight: 400;
  color: #999999;
}
.detail_item_props_other li span {
  background: #fff;
  padding: 0px 0px 2px 0px;
  position: relative;
  bottom: -7px;
}

.detail_item_txt {
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.detail_item_left {
  width: 50%;
}
.detail_item_left .slick-slider {
  position: relative;
}
.detail_item_left .slick-arrow {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  z-index: 20;
  opacity: 0.3;
  transition: var(--animation1);
  cursor: pointer;
}
.detail_item_left .slick-arrow:hover {
  opacity: 1;
}
.detail_item_left .slick-arrow svg {
  width: 30px;
  height: 20px;
}
.detail_item_left .slick-prev {
  transform: rotate(-90deg);
  left: 15px;
}
.detail_item_left .slick-next {
  transform: rotate(90deg);
  right: 15px;
}
@media (max-width: 992px) {
  .detail_item_left {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .detail_item_left {
    width: 100%;
  }
}

.picture_slider {
  width: 100%;
}
.picture_slider_video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.picture_slider_video video {
  top: 0;
  left: 0;
  width: 100%;
}
.picture_slider_video iframe {
  z-index: 200;
}
.picture_slider_video_youtobe {
  position: absolute;
  width: 100%;
  min-height: 400px;
  z-index: 500;
  left: 0;
  display: block;
  top: 0;
}
.picture_slider .slick-track {
  display: flex;
  align-items: center;
}
.picture_slider_nav {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  height: 40px !important;
  overflow: hidden;
}
.picture_slider_nav .slick-track {
  display: flex;
  gap: 3px;
  align-items: center;
  width: 100% !important;
  justify-content: center;
  transform: none !important;
}
.picture_slider_nav .slick-slide {
  opacity: 0.4;
  transition: var(--animation1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  width: 32px !important;
  height: 32px !important;
}
.picture_slider_nav .slick-slide img {
  width: 32px !important;
  height: 32px !important;
}
.picture_slider_nav .slick-slide svg {
  width: 25px;
  height: 25px;
}
.picture_slider_nav .slick-slide:hover {
  opacity: 0.6;
}
.picture_slider_nav .slick-slide.slick-current {
  opacity: 1 !important;
}

@media (max-width: 768px) {
  .fancybox-slide {
    padding: 0 !important;
  }
}

/*# sourceMappingURL=style.css.map */
