@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.prod_detail_main {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prod_detail_main > div {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .prod_detail_main > div {
    margin-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .prod_detail_main > div {
    margin-bottom: 16px;
  }
}

.prod_detail_main__slider {
  display: flex;
  justify-content: space-between;
  width: 724px;
}
@media (max-width: 1199.98px) {
  .prod_detail_main__slider {
    width: 100%;
    max-width: 724px;
  }
}

.prod_detail_main__property {
  width: calc(100% - 756px);
  min-width: 432px;
}
@media (max-width: 1199.98px) {
  .prod_detail_main__property {
    width: 100%;
    min-width: auto;
  }
}

.prod_detail_main__property__substrate {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
}
@media (max-width: 575.98px) {
  .prod_detail_main__property__substrate {
    padding: 16px;
  }
}

.property__article {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  color: #8A8A8B;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E3E6;
}
@media (max-width: 575.98px) {
  .property__article {
    padding-bottom: 13px;
  }
}

.property__items {
  padding-top: 24px;
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .property__items {
    display: none;
  }
}
.property__items .property__item {
  width: 25%;
  margin-bottom: 32px;
}
.property__items div {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.property__items div:first-child {
  color: #8A8A8B;
}
.property__items div:last-child {
  color: #2A2A2A;
}
.property__items div:last-child.property__item__brand {
  text-transform: uppercase;
  text-decoration: underline;
}
.property__items div:last-child.property__item__brand:hover {
  color: #E44315 !important;
}

h1.prod_name {
  font-size: 32px;
  font-weight: 600;
  line-height: 41.6px;
  color: #111111;
  margin: 0px 0px 16px 0px;
}
@media (max-width: 575.98px) {
  h1.prod_name {
    font-size: 22px;
    line-height: 28.6px;
    margin: 0px 0px 12px 0px;
  }
}

.slider_mobile {
  display: none;
  width: 100%;
  height: 328px;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 10px;
}
@media (max-width: 575.98px) {
  .slider_mobile {
    display: block;
  }
}
.slider_mobile .slider_mobile__item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.slider_mobile .slider_mobile__button--prev, .slider_mobile .slider_mobile__button--next {
  width: 26px;
  height: 76px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  z-index: 1;
  position: absolute;
  top: 126px;
}
.slider_mobile .slider_mobile__button--next {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 16'%3e%3cg clip-path='url(%23nav_right_detail_slider_mobile_svg__a)'%3e%3cpath d='m3 1 7 7.24-6.794 7.132' stroke='%23B4B4B4' stroke-width='1.5'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='nav_right_detail_slider_mobile_svg__a'%3e%3cpath fill='white' transform='rotate(-90 8 8)' d='M0 0h16v12H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  right: 10px;
}
.slider_mobile .slider_mobile__button--prev {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 16'%3e%3cg clip-path='url(%23nav_left_detail_slider_mobile_svg__a)'%3e%3cpath d='M9 1 2 8.24l6.794 7.132' stroke='%23B4B4B4' stroke-width='1.5'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='nav_left_detail_slider_mobile_svg__a'%3e%3cpath fill='white' transform='matrix(0 -1 -1 0 12 16)' d='M0 0h16v12H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.slider_carusel {
  height: 614px;
  width: 88px;
  background: #F3F3F3;
  position: relative;
  overflow: hidden;
  margin-left: 0;
}
@media (max-width: 575.98px) {
  .slider_carusel {
    display: none;
  }
}

.slider_main {
  width: calc(100% - 110px);
  height: 614px;
  border-radius: 12px;
  position: relative;
  background-size: calc(100% - 56px);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFFFF;
}
@media (max-width: 575.98px) {
  .slider_main {
    display: none;
  }
}

.slider_item {
  height: 88px;
  width: 100%;
  background-size: calc(100% - 10px);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  cursor: pointer;
}

.slider_item:first-child {
  border: 1px solid #E44315;
}

.slider_nav.slider_carusel__button--next, .slider_nav.slider_carusel__button--prev {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 12'%3e%3cpath d='m15 3-7.24 7L.628 3.206' stroke='%23B4B4B4' stroke-width='1.5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFFFFF;
  background-size: 20px;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 26px;
  z-index: 1;
  cursor: pointer;
  border-radius: 12px;
}
.slider_nav.slider_carusel__button--next:after, .slider_nav.slider_carusel__button--prev:after {
  content: "";
}
.slider_nav.slider_carusel__button--next {
  bottom: 0;
  top: auto;
}
.slider_nav.slider_carusel__button--prev {
  top: 0;
  bottom: 0;
  rotate: 180deg;
}

.slider_carusel__content {
  scroll-behavior: smooth;
}

.prod_detail_tabs > .tab {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 925px;
}
@media (max-width: 575.98px) {
  .prod_detail_tabs > .tab {
    gap: 16px;
  }
}
.prod_detail_tabs > .tab > input[type=radio] {
  display: none;
}
.prod_detail_tabs > .tab > label {
  padding-top: 0;
  padding-bottom: 16px;
  cursor: pointer;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  background: 0 0;
  border-bottom: 0.125rem solid transparent;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #8A8A8B;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .prod_detail_tabs > .tab > label {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 12px;
  }
}
.prod_detail_tabs > .tab > label:hover {
  border-bottom: 2px solid #E44315;
}
.prod_detail_tabs > .tab > input[type=radio]:checked + label {
  cursor: default;
  font-weight: bold;
  color: #212529;
  border-bottom: 2px solid #E44315;
}

.property__cart__button {
  width: 50%;
  float: left;
  position: relative;
  max-width: 384px;
}
.property__cart__button a {
  font-size: 18px;
  line-height: 1.5;
  background: #E44315;
  font-weight: 500;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: center;
  cursor: pointer;
  height: 70px;
}
@media (max-width: 575.98px) {
  .property__cart__button a {
    font-size: 16px;
    line-height: 1;
  }
}
.property__cart__button a:hover {
  color: #FFFFFF;
  background: #C9380E;
}
.property__cart__button a .register_order {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
@media (max-width: 575.98px) {
  .property__cart__button a .register_order {
    line-height: 1;
  }
}
.property__cart__button div {
  float: left;
}

.tab-content {
  display: none;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #666666;
}
@media (max-width: 575.98px) {
  .tab-content {
    font-size: 14px;
    line-height: 21px;
  }
}

#tab-btn-1:checked ~ #content-1,
#tab-btn-2:checked ~ #content-2,
#tab-btn-3:checked ~ #content-3,
#tab-btn-4:checked ~ #content-4 {
  display: block;
}

.tabs_documents__item {
  position: relative;
  width: 100%;
  height: 104px;
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.tabs_documents__item__dowload {
  position: absolute;
  top: 20px;
  right: 20px;
}
.tabs_documents__item__dowload svg {
  width: 20px;
  height: 28px;
}

.tabs_documents__item__name {
  color: #111111;
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 10px;
}

.tabs_documents__item__prop {
  color: #8A8A8B;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.tabs_documents__item__prop .extension {
  text-transform: uppercase;
}

.property__cart {
  margin-bottom: 40px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 575.98px) {
  .property__cart {
    margin-bottom: 20px;
    margin-top: 16px;
  }
}
.property__cart > div {
  width: calc(50% - 3px);
}
.property__cart .property__cart__price {
  width: calc(50% - 6px);
  float: left;
  background: #F3F3F3;
  border-radius: 12px;
  padding: 16px 0px 16px 20px;
  margin-right: 6px;
  max-width: 384px;
  display: table;
  height: 70px;
}
@media (max-width: 575.98px) {
  .property__cart .property__cart__price {
    padding: 10px 16px;
  }
}
.property__cart .property__cart__price > .property__cart__price__link {
  display: none;
}
@media (max-width: 575.98px) {
  .property__cart .property__cart__price > .property__cart__price__link {
    display: none;
  }
}

.property__cart__price__link {
  color: #8A8A8B;
  font-weight: 400;
  font-size: 14px;
  line-height: 19.6px;
  text-transform: uppercase;
  text-decoration: underline;
  display: inline-block;
  padding-top: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 575.98px) {
  .property__cart__price__link {
    padding-top: 20px;
  }
}

.cart__price__value {
  color: #111111;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
}
@media (max-width: 575.98px) {
  .cart__price__value {
    font-size: 24px;
    line-height: 35px;
  }
}

.button_text {
  padding-right: 12px;
  border-right: 1px solid #EF734F;
  color: #FFFFFF;
}
@media (max-width: 575.98px) {
  .button_text {
    border: none;
  }
}

.button_icon {
  padding-left: 12px;
}
@media (max-width: 575.98px) {
  .button_icon {
    display: none;
  }
}
.button_icon svg {
  width: 20px;
  height: 20px;
}

.sale_condition {
  color: #2A2A2A;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}
@media (max-width: 575.98px) {
  .sale_condition {
    font-size: 14px;
    line-height: 21px;
  }
}
.sale_condition a {
  float: left;
  display: flex;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: left;
}
.sale_condition a.shipping_refund {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cpath d='M5.825 18.975H2.2a1 1 0 0 1-1-1V3.4a1 1 0 0 1 1-1h14.575a1 1 0 0 1 1 1v5.737' stroke='%23E44315' stroke-width='1.5' stroke-linecap='round'/%3e%3cpath d='M6.3 2.4h6.375v6.375L9.487 7.5 6.3 8.775V2.4Z' stroke='%23E44315' stroke-width='1.5'/%3e%3cpath d='M18.194 12.268a.75.75 0 1 0 0 1.5v-1.5Zm0 1.5h1.756v-1.5h-1.756v1.5Zm1.756 4.353h-8.78v1.5h8.78v-1.5Zm2.176-2.177a2.176 2.176 0 0 1-2.176 2.177v1.5a3.676 3.676 0 0 0 3.676-3.677h-1.5Zm-2.176-2.176c1.202 0 2.176.974 2.176 2.176h1.5a3.676 3.676 0 0 0-3.676-3.676v1.5Z' fill='%23E44315'/%3e%3cpath d='M13.512 15.36 10 18.87l3.511 3.512' stroke='%23E44315' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
  margin-right: 24px;
}
.sale_condition a.payment {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24'%3e%3cg clip-path='url(%23oplata_svg__a)'%3e%3cg clip-path='url(%23oplata_svg__b)'%3e%3cpath d='M10.457 18.172v-4.629m0 0V7.372h2.315a3.086 3.086 0 0 1 3.085 3.085v0a3.086 3.086 0 0 1-3.085 3.086h-2.315Zm0 0H8.4m0 2.777h4.8M1.2 12v0C1.2 6.036 6.036 1.2 12 1.2v0c5.965 0 10.8 4.836 10.8 10.8v0c0 5.965-4.835 10.8-10.8 10.8v0C6.036 22.8 1.2 17.965 1.2 12Z' stroke='%23E44315' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cclipPath id='oplata_svg__a'%3e%3cpath fill='white' d='M0 0h24v24H0z'/%3e%3c/clipPath%3e%3cclipPath id='oplata_svg__b'%3e%3cpath fill='white' d='M0 0h24v24H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.technical_data__row {
  width: 100%;
  position: relative;
  clear: both;
  margin-bottom: 32px;
  display: inline-block;
}

.technical_data__title {
  color: #2A2A2A;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid #D8D9DB;
  display: inline-block;
  width: 100%;
}

.technical_data__block {
  width: 100%;
  clear: both;
  border-bottom: 1px solid #D8D9DB;
  display: inline-block;
}
.technical_data__block div {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  float: left;
  height: 56px;
  flex-wrap: wrap;
  align-content: center;
  min-width: 400px;
}
.technical_data__block .technical_data__name {
  color: #8A8A8B;
}
.technical_data__block .technical_data__value {
  color: #2A2A2A;
}

.video_item {
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
  width: 100%;
}

.video_item__name {
  color: #666666;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  margin-top: 10px;
}

.cart__price__query {
  font-size: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #111111;
  font-weight: 700;
  display: table-cell;
  vertical-align: middle;
}

.detail_text {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #666666;
  margin-bottom: 32px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .detail_text {
    display: none;
  }
}
.detail_text .detail_text__anchor {
  color: #E44315;
  padding-top: 16px;
  display: block;
}
.detail_text .detail_text__anchor:hover {
  text-decoration: underline;
}
