/* Single product page */
.single-product .contact {
  margin: 0;
}


.single-product__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 140px minmax(0, 755px);
  grid-template-columns: 1fr minmax(0, 755px);
  -webkit-column-gap: 140px;
  -moz-column-gap: 140px;
  column-gap: 140px;
  max-width: 1760px;
}

.single-product__thumbnails {
  /* margin-top: 116px; */
  position: relative;
  padding-left: 20px;
}

.woocommerce-product-gallery {
  padding-top: 116px;
}

.single-product__player {
  position: absolute;
  left: 45px;
  top: 140px;
  z-index: 9;
}

.player_single-product {
  height: 80px;
  width: 80px;
  border: 1px solid #003047;
}

.player__button_single-product {
  height: 57.14px;
  width: 57.14px;
}

.player__button_single-product svg {
  width: 23.2px;
  height: 21.6px;
}

.player__button_single-product:hover {
  height: 62.14px;
  width: 62.14px;
}

.player__button_single-product:hover svg {
  width: 20.2px;
  height: 18.6px;
}

.single-product__action {
  margin-right: -20px;
  padding: 60px 160px 100px 85px;
}

.single-product__action .woocommerce-breadcrumb {
  display: block;
  margin-bottom: 30px;
}

.single-product__title {
  margin-bottom: 60px;
}

.single-product__desc {
  margin-bottom: 30px;
}

.single-product__btn {
  padding: 19px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup-form._active .background-overlay {
  opacity: 1;
  visibility: visible;
}

.popup-form__wrapper {
  background: var(--white-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 25;
  -webkit-transition: .3s ease-out;
  -o-transition: .3s ease-out;
  transition: .3s ease-out;
  padding: 60px 40px 40px 40px;
  border-radius: 5px;
}

.popup-form._active .popup-form__wrapper {
  opacity: 1;
  visibility: visible;
}

.popup-form .wpcf7 {
  max-width: 700px;
  margin: 0 auto;
}

.popup-form .wpcf7-form-control:not(.btn, .wpcf7-acceptance) {
  border: 1px solid var(--btn-color);
}

.popup-form .wpcf7-acceptance input[type="checkbox"] {
  border: 1px solid var(--btn-color);
}

.popup-form .wpcf7-acceptance input[type="checkbox"]:checked:before,
.popup-form .wpcf7-acceptance input[type="checkbox"]:checked:after {
  background: var(--btn-color);
}

.popup-form .wpcf7-list-item-label {
  color: var(--text-color);
}

.popup-form .wpcf7-acceptance label {
  /* justify-content: space-between; */
}

.popup-form .wpcf7-response-output {
  color: var(--text-color);
}

.popup-form__close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 20px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}



.popup-form__close:after,
.popup-form__close:before {
  background: var(--text-color);
  content: "";
  height: 1.5px;
  border-radius: 1px;
  position: absolute;
  width: 24px;
  -webkit-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  transition: .2s ease-out;
}

.popup-form__close:hover::after,
.popup-form__close:hover::before {
  background-color: var(--btn-color);
}

.popup-form__close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup-form__close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.attributes {
  border: 1px solid rgba(29, 27, 27, 0.3);
  display: -ms-grid;
  display: grid;
  border-radius: 15px;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.attribute-point {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.attribute-point__icon img {
  width: 30px;
  height: 30px;
}

.attribute-point:not(:first-child) {
  border-right: 1px solid rgba(29, 27, 27, 0.3);
}

.attribute-point__content {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.attribute-point__name {
  /* white-space: nowrap; */
}

.charact__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 48px;
  margin-bottom: 24px;
}

.charact-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgba(29, 27, 27, 0.2);
  padding: 0 0 10px 0;
}

.charact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.charact {
  margin-top: 60px;
}

.charact__btn {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid rgba(29, 27, 27, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.charact__btn span,
.charact__btn path {
  -webkit-transition: .1s ease-out;
  -o-transition: .1s ease-out;
  transition: .1s ease-out;
}

.charact__btn:hover path {
  stroke: var(--btn-color);
}

.charact__btn:hover span:last-child {
  color: var(--btn-color);
}

.woocommerce-product-gallery {
  position: relative;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 534px;
  height: 534px;
}

.woocommerce-product-gallery__trigger {
  display: none;
}

.flex-control-nav {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-control-nav li {
  list-style: none;
  display: none;
  cursor: pointer;
}

.flex-control-nav li:nth-child(1),
.flex-control-nav li:nth-child(2),
.flex-control-nav li:nth-child(3) {
  display: block;
}

.flex-prev:after,
.flex-next:before {
  content: "";
  background: url(/wp-content/uploads/2023/02/Arrow-slider.svg);
  width: 15px;
  height: 15px;
}

.flex-prev,
.flex-next {
  font-size: 0;
}

.flex-direction-nav {
  position: absolute;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 470px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.flex-prev,
.flex-next {
  background: var(--btn-color);
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  transition: .2s ease-out;
  cursor: pointer;
}

.flex-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.flex-prev:hover,
.flex-next:hover {
  background: #164056;
}

.flex-control-nav img {
  width: 106.67px;
  height: 80px;
  border: 1px solid rgba(30, 91, 122, 0.6);
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 5;
}

.flex-control-nav img.flex-active {
  border: 2px solid #1E5B7A;
}

.flex-control-nav img:hover {
  border: 2px solid #1e5b7ad1;
}






/* details block */
.details__content {
  max-width: 100vw;
  overflow: hidden;
}

.details__content .swiper_details {
  overflow: visible;
}

.container__details {
  padding: 0;
}

.details__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.details__text {
  max-width: 760px;
}

.details__text ul {
  text-align: right;
  margin-bottom: 15px;
}

.details__text li {
  list-style: disc;
}

.details__text li::marker {
  color: #1e5b7a;
}

.single-product__details {
  padding: 120px 0 0 0;
}



.single-product__video {
  padding: 120px 0;
}





/* related products */
.related-products {
  padding-bottom: 115px;
  padding-top: 40px;
}

.related-products__title {
  text-align: center;
}

.related-products__wrapper {
  /* display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr); */
  gap: 30px;
  margin-top: 60px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.related-products__wrapper .product__image img {
  max-height: 250px;
}

.related-products__wrapper li.product {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - 30px);
  flex: 0 0 calc(25% - 30px);
}

#go-to-video {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 99;
  cursor: pointer;
}

@media screen and (min-width: 767px) {
  #go-to-video {
    display: none;
  }
}

@media screen and (max-width: 1700px) {
  .woocommerce-product-gallery__image img {
    max-height: 480px;
    height: 480px;
  }
}

@media screen and (max-width: 1600px) {
  .single-product__action {
    padding: 40px 60px 40px 60px;
  }

  .single-product__content {
    -webkit-column-gap: 90px;
    -moz-column-gap: 90px;
    column-gap: 90px;
    -ms-grid-columns: 1fr 90px 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .single-product__details {
    padding: 80px 0 0 0;
  }

  .related-products {
    padding-bottom: 80px;
  }

  .attribute-point {
    gap: 5px;
  }

  .single-product__title {
    margin-bottom: 40px;
  }

  .attributes {
    margin-bottom: 40px;
  }

  .attribute-point {
    padding: 10px;
  }

  .charact,
  .charact__btn {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .related-products__wrapper {
    /* -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr); */
    gap: 20px;
    margin-top: 50px;
  }

  .related-products__wrapper li.product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33% - 20px);
    flex: 0 0 calc(33% - 20px);
  }

  .single-product__video {
    padding: 80px 0;
  }
}


@media screen and (max-width: 1500px) {
  .woocommerce-product-gallery__image img {
    max-height: 400px;
    height: 400px;
  }
}

@media screen and (max-width: 1400px) {
  .single-product__action {
    padding: 40px 30px 60px 30px;
  }

  .single-product__content {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

@media screen and (max-width: 1150px) {
  .woocommerce-product-gallery__image img {
    max-height: 350px;
    height: 350px;
  }
}

@media screen and (max-width: 992px) {
  .single-product__thumbnails {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    /* margin-top: 20px; */
    padding-left: 0;
  }

  .woocommerce-product-gallery {
    padding-top: 20px;
  }

  .single-product__player {
    top: 45px;
  }

  .single-product__content {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 30px;
  }

  .single-product__action {
    padding: 30px 30px 40px 30px;
    margin: 0;
  }

  .single-product__action .woocommerce-breadcrumb {
    margin-bottom: 20px;
  }

  .single-product__title {
    margin-bottom: 30px;
  }

  .single-product__desc {
    margin-bottom: 25px;
  }

  .attributes {
    margin-bottom: 30px;
  }

  .charact,
  .charact__btn {
    margin-top: 30px;
  }

  .charact__title {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 36px;
  }

  .single-product__btn {
    max-width: 100%;
  }

  .related-products {
    padding-bottom: 60px;
    padding-top: 40px;
  }

  .single-product__details {
    padding: 40px 0 0 0;
  }

  .details__heading {
    margin-bottom: 40px;
    gap: 20px;
  }

  .single-product__video {
    padding: 60px 0;
  }

  .related-products__wrapper {
    /* -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); */
    margin-top: 30px;
  }

  .related-products__wrapper li.product {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .woocommerce-product-gallery__image img {
    max-height: 300px;
    height: 300px;
  }

  .single-product__player {
    top: 40px;
    left: 20px;
  }

  .player_single-product {
    height: 60px;
    width: 60px;
  }

  .player__button_single-product {
    height: 37.14px;
    width: 37.14px;
  }

  .player__button_single-product:hover {
    height: 42.14px;
    width: 42.14px;
  }

  .player__button_single-product svg {
    width: 17.2px;
    height: 15.6px;
  }

  .player__button_single-product:hover svg {
    width: 15.2px;
    height: 13.6px;
  }

  .single-product__title,
  .single-product__desc,
  .attributes {
    margin-bottom: 20px;
  }

  .charact,
  .charact__btn {
    margin-top: 20px;
  }

  .charact__btn {
    padding: 10px;
  }

  .charact__btn svg {
    width: 25px;
    height: 25px;
  }

  .charact__title {
    font-size: 18px;
    line-height: 24px;
  }

  .single-product__btn {
    padding: 12px 0;
  }

  .single-product__action {
    padding: 25px 15px 20px 15px;
  }

  .single-product__action .woocommerce-breadcrumb {
    margin-bottom: 15px;
  }

  .attribute-point__icon img {
    height: 25px;
    width: 25px;
  }

  .attribute-point__content {
    gap: 0;
  }

  .flex-direction-nav {
    bottom: 10px;
    max-width: 380px;
  }

  .flex-control-nav img {
    width: 80px;
    height: 60px;
  }

  .container__details {
    padding: 0 15px;
  }

  .single-product__details {
    padding: 20px 0 0 0;
  }

  .details__heading {
    margin-bottom: 25px;
    gap: 10px;
  }

  .details__content {
    margin: 0 -15px;
    padding: 0 10px;
  }

  .single-product__video {
    padding: 40px 0;
  }

  .related-products__wrapper {
    /* -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr); */
    margin-top: 20px;
  }

  .related-products {
    padding-bottom: 40px;
  }

  .popup-form__wrapper {
    width: calc(100vw - 30%);
    padding: 40px 25px 25px 25px;
  }

  .popup-form__close {
    top: 10px;
    left: 25px;
  }
}

@media screen and (max-width: 500px) {
  .popup-form__wrapper {
    width: calc(100vw);
  }
}

@media screen and (max-width: 390px) {
  .attribute-point {
    padding: 10px 5px;
  }

  .attribute-point__name {
    font-size: 11px !important;
  }

}

@media screen and (max-width: 370px) {
  .woocommerce-product-gallery__image img {
    max-height: 250px;
    height: 250px;
  }

  .flex-direction-nav {
    max-width: 300px;
    bottom: 8px;
  }

  .flex-prev:after,
  .flex-next:before {
    width: 16px;
  }

  .flex-prev,
  .flex-next {
    width: 30px;
    height: 30px;
  }

  .flex-control-nav img {
    width: 65px;
    height: 45px;
  }
}




/*  */
.woocommerce-breadcrumb {
  display: none;
}



.grab-cursor {
  position: fixed;
}








.swiper-slide_details img {
  height: 400px;
  border-radius: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}

main#primary>.product+.related-products {
  padding-top: 120px;
}

@media screen and (max-width: 1400px) {
  .swiper-slide_details img {
    height: 300px;
  }
}

@media screen and (max-width: 767px) {
  .swiper-slide_details img {
    height: 220px;
  }

  main#primary>.product+.related-products {
    margin-top: 0px;
    padding-top: 40px;
  }
}




.details__content .subslider__nav_mobile {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 30px;
  margin-top: 15px;


  display: -webkit-box;


  display: -ms-flexbox;


  display: flex;
  /* width: 380px; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 36.5px auto 0 auto;
  position: relative;
}




@media screen and (max-width: 767px) {
  .woocommerce-product-gallery {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .attributes {
    display: none;
  }
}