@charset "UTF-8";
.main-product-container {
  width: 100%;
  background: #f0f0f0;
  padding: 0px 0 0;
}
@media only screen and (min-width: 992px) {
  .main-product-container {
    padding: 40px 0 60px;
  }
}
.main-product-container .main-product-section {
  display: grid;
  grid-template-columns: 50% auto;
  gap: 20px;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .main-product-section {
    padding: 0;
    grid-template-columns: 100%;
    gap: 0;
  }
}

.main-product-container .main-product-section .product-information {
  padding: 0;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .main-product-section .product-information {
    padding: 25px 0 0;
  }
}
.main-product-container .main-product-section .product-information .product-title-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 15px 20px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .main-product-container .main-product-section .product-information .product-title-wrapper {
    padding: 0;
    gap: 10px 20px;
  }
}
.main-product-container .main-product-section .product-information .product-title-wrapper .breadcrumbs {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  .main-product-container .main-product-section .product-information .product-title-wrapper .breadcrumbs {
    margin-bottom: 15px;
  }
}
.main-product-container .main-product-section .product-information .product-title-wrapper h1.product-title {
  font-size: 30px;
  line-height: 1.4;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .main-product-section .product-information .product-title-wrapper h1.product-title {
    font-size: 24px;
  }
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-category {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-category:empty {
  display: none;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-title,
.main-product-container .main-product-section .product-information .product-title-wrapper .product-description,
.main-product-container .main-product-section .product-information .product-title-wrapper .product-info-group {
  flex: 100%;
  width: 100%;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-info-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 20px;
  color: var(--text-primary-color);
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-info-group .product-reviews {
  font-size: 14px;
  line-height: 18px;
  min-height: 18px;
  font-family: "Brandon Text";
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  --star-size: 16px;
  --star-color: var(--separator-color);
  --star-background: var(--review-star-color);
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-info-group .product-reviews .stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times;
  line-height: 1;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-info-group .product-reviews .stars::before {
  content: "★★★★★";
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-info-group .product-reviews > div:last-of-type {
  font-family: "Brandon Text";
  font-size: 14px;
  line-height: 18px;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-price,
.main-product-container .main-product-section .product-information .product-title-wrapper .product-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 10px;
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-price .product-price-range,
.main-product-container .main-product-section .product-information .product-title-wrapper .product-price .product-price-range-sale,
.main-product-container .main-product-section .product-information .product-title-wrapper .product-price-wrapper .product-price-range,
.main-product-container .main-product-section .product-information .product-title-wrapper .product-price-wrapper .product-price-range-sale {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .main-product-section .product-information .product-title-wrapper .product-price .product-price-range,
  .main-product-container .main-product-section .product-information .product-title-wrapper .product-price .product-price-range-sale,
  .main-product-container .main-product-section .product-information .product-title-wrapper .product-price-wrapper .product-price-range,
  .main-product-container .main-product-section .product-information .product-title-wrapper .product-price-wrapper .product-price-range-sale {
    font-size: 16px;
  }
}
.main-product-container .main-product-section .product-information .product-title-wrapper .product-reviews {
  display: flex;
  align-items: center;
}
.main-product-container .main-product-section .product-information .product-form-inner {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
.main-product-container .main-product-section .product-information .product-form-inner .form-message {
  width: 100%;
  margin: 0 auto;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background: #fff;
}
.main-product-container .main-product-section .product-information .product-form-inner .form-message.error {
  color: #fff;
  background: #b3333a;
}
.main-product-container .main-product-section .product-information .product-description-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 5px;
}
.main-product-container .main-product-section .product-information .product-description-wrapper .read-more,
.main-product-container .main-product-section .product-information .product-description-wrapper .product-description {
  width: 100%;
}
.main-product-container .main-product-section .product-information .product-description-wrapper .read-more:not(h1, h2, h3, h4, h5, sup, sub), .main-product-container .main-product-section .product-information .product-description-wrapper .read-more *:not(h1, h2, h3, h4, h5, sup, sub),
.main-product-container .main-product-section .product-information .product-description-wrapper .product-description:not(h1, h2, h3, h4, h5, sup, sub),
.main-product-container .main-product-section .product-information .product-description-wrapper .product-description *:not(h1, h2, h3, h4, h5, sup, sub) {
  font-size: 14px;
  text-align: left;
  line-height: 1.3;
  color: var(--text-primary-color);
}
.main-product-container .main-product-section .product-information .product-description-wrapper .product-description {
  width: 100%;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.main-product-container .main-product-section .product-information .product-description-wrapper .read-more {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
}

.main-product-container .pdp-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 0;
}
.main-product-container .pdp-blocks .pdp-block,
.main-product-container .pdp-blocks .accordion {
  width: 100%;
  border-bottom: solid 1px #dadada;
}
.main-product-container .pdp-blocks .pdp-block:empty,
.main-product-container .pdp-blocks .accordion:empty {
  display: none !important;
}
.main-product-container .pdp-blocks .pdp-block.usps,
.main-product-container .pdp-blocks .accordion.usps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 40px 0;
}
.main-product-container .pdp-blocks .pdp-block.usps .usp-card,
.main-product-container .pdp-blocks .accordion.usps .usp-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  gap: 10px;
}
.main-product-container .pdp-blocks .pdp-block.usps .usp-card img.usp-icon,
.main-product-container .pdp-blocks .accordion.usps .usp-card img.usp-icon {
  width: 50px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-product-container .pdp-blocks .pdp-block.usps .usp-card .usp-title,
.main-product-container .pdp-blocks .accordion.usps .usp-card .usp-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .pdp-blocks .pdp-block.usps,
  .main-product-container .pdp-blocks .accordion.usps {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.main-product-container .pdp-blocks .accordion {
  padding: 17px 0 8px;
}
.main-product-container .pdp-blocks .accordion > div {
  pointer-events: none;
  font-size: 16px;
  text-align: left;
}
.main-product-container .pdp-blocks .panel {
  width: 100%;
}
.main-product-container .pdp-blocks .panel .content {
  width: 100%;
  padding: 10px 5px;
  border-bottom: solid 1px #dadada;
  font-size: 14px;
}
.main-product-container .pdp-blocks .panel .content p {
  margin: 5px 0px;
}
.main-product-container .pdp-blocks .panel .content *:not(h1, h2, h3, h4, h5, sup, sub) {
  font-size: 14px;
}
.main-product-container .pdp-blocks .panel .content .gpsr-regulation__container {
  padding: 10px 0 0;
}
.main-product-container .pdp-blocks .panel .content .gpsr-regulation__list a {
  color: var(--text-primary-color);
  text-decoration: underline;
  font-weight: 700;
}

.main-product-container .gallery .gallery-container {
  display: flex;
  transition: all 0.3s;
  position: sticky;
  top: 120px;
  gap: 21px 18px;
  aspect-ratio: 610/528;
}
.main-product-container .gallery .gallery-container--tall {
  aspect-ratio: unset;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .gallery .gallery-container {
    flex-direction: column-reverse;
  }
}
.main-product-container .gallery .gallery-container .swiper-slide.external-video {
  cursor: pointer;
}
.main-product-container .gallery .gallery-container .thumb-gallery {
  position: relative;
  width: calc(12% - 9px);
  opacity: 0;
  transition: all 0.3s;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .gallery .gallery-container .thumb-gallery {
    width: 100%;
  }
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide {
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder:hover img {
  transform: scale(1.1);
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder:hover svg {
  transform: scale(0.7);
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder .icon-play {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0.8);
  color: rgba(255, 255, 255, 0.6509803922);
}
@media only screen and (min-width: 768px) {
  .main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder .icon-play {
    transform: scale(0.7);
  }
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder .icon-play svg {
  transition: all 0.3s;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder .icon-play svg path {
  stroke: #8a8a8a;
  stroke-width: 0.5px;
  stroke-linejoin: round;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-slide.thumb .gallery-image-holder img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.main-product-container .gallery .gallery-container .thumb-gallery--tall .swiper-slide {
  aspect-ratio: 4/5;
}
@media only screen and (min-width: 1025px) {
  .main-product-container .gallery .gallery-container .thumb-gallery--tall .swiper-slide {
    height: unset !important;
  }
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-prev,
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-next {
  margin-top: 0;
  translate: -50% 0;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-prev.swiper-button-disabled,
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-prev,
  .main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-next {
    display: none;
  }
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-prev {
  rotate: 90deg;
  translate: -50% 0;
  inset: -34px auto auto 50%;
}
.main-product-container .gallery .gallery-container .thumb-gallery .swiper-button-next {
  rotate: 90deg;
  inset: auto auto -34px 50%;
}
.main-product-container .gallery .gallery-container .main-gallery {
  overflow: hidden;
  position: relative;
  aspect-ratio: 534/524;
  width: calc(88% - 9px);
  border-radius: 5px;
}
@media only screen and (max-width: 991.98px) {
  .main-product-container .gallery .gallery-container .main-gallery {
    width: 100%;
  }
}
@media only screen and (max-width: 1024.98px) {
  .main-product-container .gallery .gallery-container .main-gallery {
    max-width: 66vw;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .main-product-container .gallery .gallery-container .main-gallery {
    max-width: 100%;
  }
}
.main-product-container .gallery .gallery-container .main-gallery .product-badges {
  inset: 10px auto auto 10px;
  width: unset;
  z-index: 99;
}
.main-product-container .gallery .gallery-container .main-gallery .product-badges .product-badge {
  width: -moz-max-content;
  width: max-content;
}
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
  border-radius: 5px;
}
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder video,
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder iframe,
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder model-viewer,
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder img:not(.lightbox-trigger img),
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder svg:not(.lightbox-trigger svg) {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f8f8f8;
  filter: contrast(0.88);
}
.main-product-container .gallery .gallery-container .main-gallery .gallery-image-holder .icon-play svg {
  z-index: 1;
  transform: scale(0.27);
  color: hsla(0, 0%, 100%, 0.651);
  background-color: transparent !important;
  transition: all 0.3s;
}
.main-product-container .gallery .gallery-container .main-gallery--tall {
  aspect-ratio: unset;
}
.main-product-container .gallery .gallery-container .main-gallery--tall .gallery-image-holder {
  padding-bottom: 123%;
}
.main-product-container .gallery .gallery-container .main-gallery .swiper-button-next {
  inset: 50% 10px auto auto;
}
.main-product-container .gallery .gallery-container .main-gallery .swiper-button-prev {
  inset: 50% auto auto 10px;
}
.main-product-container .gallery .gallery-container .swiper-button-next,
.main-product-container .gallery .gallery-container .swiper-button-prev {
  padding: 4px;
  margin-top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  color: transparent;
  translate: 0 -50%;
}
.main-product-container .gallery .gallery-container .swiper-button-next:focus,
.main-product-container .gallery .gallery-container .swiper-button-prev:focus {
  outline: none;
}
.main-product-container .gallery .gallery-container .swiper-button-next:after,
.main-product-container .gallery .gallery-container .swiper-button-prev:after {
  display: none;
}
.main-product-container .gallery .gallery-container .swiper-button-next svg,
.main-product-container .gallery .gallery-container .swiper-button-prev svg {
  width: 30px;
  height: 30px;
}
.main-product-container .gallery .gallery-container .swiper-button-next svg:focus,
.main-product-container .gallery .gallery-container .swiper-button-prev svg:focus {
  outline: none;
}

.main-product.main-product-preorder .main-product-container {
  background: none;
}
.main-product.main-product-preorder .main-product-container .main-product-section {
  gap: 20px 50px;
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-information {
  padding: 0 0 30px;
}
@media only screen and (min-width: 992px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .product-information {
    padding: 0;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 0px;
}
@media only screen and (min-width: 992px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width {
    padding: 0;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .breacrumbs,
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .product-title,
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .product-description {
  width: 100%;
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .breadcrumbs {
  margin-top: 35px;
  margin-bottom: 28px;
}
@media only screen and (max-width: 991.98px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .breadcrumbs {
    margin-top: 0;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .coming-soon-tag {
  padding: 7px 15px;
  border-radius: 18px;
  margin-right: auto;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-primary-color);
  background: var(--primary-color);
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .product-title {
  font-size: 30px;
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .product-description {
  font-size: 14px;
}
.main-product.main-product-preorder .main-product-container .main-product-section .product-info.page-width .product-description *:not(h1, h2, h3, h4, h5, sup, sub) {
  font-size: inherit;
}
@media only screen and (max-width: 991.98px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .gallery {
    aspect-ratio: 653/683;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .gallery .preorder-image {
  position: sticky;
  inset: calc(40px + var(--header-height)) auto auto 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 653/683;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media only screen and (max-width: 991.98px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .gallery .preorder-image {
    position: static;
    border-radius: 0;
    height: 100%;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1607843137);
  padding: 26px 35px 40px;
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column nowrap;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper {
    padding: 25px 22px;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-title {
  font-size: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-title {
    margin-bottom: 0;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-field.email label {
  font-size: 16px;
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-field.email input[type=email] {
  font-size: 14px;
  border-radius: 18px;
  background: var(--bg-2-color);
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-field.checkbox .checkbox-label {
  font-size: 14px;
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-field.checkbox .form-checkbox .checkbox {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 50%;
  border-color: var(--bg-2-color);
  background-color: var(--bg-2-color);
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-field.checkbox input:checked + .checkbox {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-field.checkbox input:checked + .checkbox svg {
  color: var(--text-primary-color);
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .register-form-submit {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}
@media only screen and (max-width: 991.98px) {
  .main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .register-form-submit {
    margin-top: 5px;
  }
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-message {
  order: -1;
  width: 100%;
  margin: 0 auto;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background: #fff;
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-message.error {
  color: #fff;
  background: #b3333a;
}
.main-product.main-product-preorder .main-product-container .main-product-section .register-form-wrapper .form-message.success {
  color: #fff;
  background: #346937;
}

.jdgm-preview-badge .jdgm-prev-badge__text {
  font-size: 14px;
  font-weight: 400;
  margin-left: 4px;
}

.external_video_modal {
  border: none;
  height: auto;
  max-height: 450px;
  max-width: 700px;
  display: flex;
  justify-content: center;
  overflow-y: hidden;
  width: auto;
  border-radius: 10px;
  translate: 0 100%;
  opacity: 0;
  background: transparent;
  transition: translate 0.2s ease-in 0s, opacity 0.1s ease-in 0s;
}
.external_video_modal[open] {
  opacity: 1;
  translate: 0 0;
}
.external_video_modal.exit {
  opacity: 0;
  translate: 0 100%;
}
@media only screen and (max-width: 767.98px) {
  .external_video_modal {
    width: 100%;
    max-height: 370px;
    padding: 0;
  }
}
.external_video_modal::backdrop {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.73);
  pointer-events: all;
}
.external_video_modal__content {
  align-items: center;
  display: flex;
  align-content: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .external_video_modal__content {
    width: 100%;
  }
}
.external_video_modal .icon-close {
  height: 30px;
  position: absolute;
  width: 30px;
  cursor: pointer;
  z-index: 999;
  top: 50px;
  right: 55px;
  background: #FFF;
  border-radius: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  .external_video_modal .icon-close {
    top: 30px;
    right: 10px;
  }
}
.external_video_modal .icon-close:before, .external_video_modal .icon-close:after {
  background: #1d2122;
  content: "";
  height: 1px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 70%;
}
.external_video_modal .icon-close:before {
  transform: rotate(-45deg);
}
.external_video_modal .icon-close:after {
  transform: rotate(45deg);
}
