.product-modal {
  border: 1px solid #595959;
  border-bottom: 0;
  margin: 0 auto 60px;
  min-height: 400px;
  width: 85vw;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.8) 0%, #1B1B1B 100%);
  border-radius: 20px;
  position: relative;
  z-index: 9999;
  left: -1px;
  display: none;
  opacity: 0;
  margin-bottom: 50px;
  top: 30px;
  transition: margin-top 0.5s ease;
  /*
    &[aria-hidden="false"] {
      animation: fadeIn .6s cubic-bezier(0.0, 0.0, 0.2, 1);
    }

    &[aria-hidden="true"] {
      animation: fadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
    }
  */
  /*
    &.is-open {
      display: block;
      //animation: fadeOut .6s cubic-bezier(0.0, 0.0, 0.2, 1);
    }
  */
}

@media (min-width: 430px) {
  .product-modal {
    width: 400px;
  }
}

.product-modal__transparent-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 0 5px;
  font-size: 24px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
  overflow: hidden;
}
.product-modal__transparent-box__background{
  opacity: 0.2 !important;
  position: absolute;
  z-index: 9999;
}

.product-modal__transparent-box__name {
  text-align: center;
  font-family: "Gotham", sans-serif;
  font-style: normal;
  color: white;
  padding: 0 20px;
  line-height: initial;
  z-index: 10000;
  position: relative;
}

.product-modal__transparent-box__name span {
  padding-bottom: 13px;
  display: block;
  line-height: initial;
  font-size: 18px;
}

.product-modal__transparent-box__name b {
  font-family: "Syncopate", sans-serif;
  font-style: normal;
  font-weight: bolder;
  text-transform: uppercase;
  padding: 0 10%;
  letter-spacing: 1px;
  display: block;
}

.product-modal__transparent-box__price {
  text-align: center;
  padding: 25px 0 20px;
  z-index: 10000;
  position: relative;
}

.product-modal__transparent-box__price--old {
  color: #EB5757;
  text-decoration: line-through;
  font-size: 27px;
  line-height: 28px;
  font-family: "Gotham", sans-serif;
  letter-spacing: 1px;
  z-index: 10000;
  position: relative;
}

.product-modal__transparent-box__price--new {
  color: white;
  margin-top: 10px;
  font-family: "Gotham", sans-serif;
  font-size: 27px;
  line-height: 28px;
  font-weight: bolder;
  padding-left: 10px;
  letter-spacing: 1px;
  z-index: 10000;
  position: relative;
}

.product-modal__transparent-box__text {
  font-family: "Gotham", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #A3B2C4;
  padding-bottom: 15px;
  z-index: 10000;
  position: relative;
}

.product-modal__time-box {
  min-height: 150px;
  background: #262626;
}

.product-modal__time-box--text {
  display: block;
  padding: 20px 0 15px;
  font-family: "Gotham", sans-serif;
  text-align: center;
  color: #8C8C8C;
  font-size: 16px;
  line-height: 22px;
}

.product-modal__time-box--markers {
  display: flex;
  list-style: none;
  text-transform: uppercase;
  color: #F5F5F5;
  font-family: "Gotham", sans-serif;
  padding: 0;
  justify-content: center;
  font-size: 14px;
  margin: 5px 0 0 0;
  line-height: 22px;
}

.product-modal__time-box--markers li {
  margin: 0 10%;
}

@media (min-width: 430px) {
  .product-modal__time-box--markers li {
    margin: 0 18px;
  }
}

.product-modal__time-box--markers li:first-child {
  margin-right: 28px;
}

.product-modal__text-box {
  font-family: "Gotham", sans-serif;
  width: 100%;
  background: #1B1B1B;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
}

.product-modal__text-box__text {
  text-align: center;
  padding: 25px;
  padding-bottom: 0;
  line-height: 22px;
  font-size: 14px;
  margin: 0;
  letter-spacing: 1px;
}

.product-modal__text-box__headings {
  text-align: center;
  text-transform: uppercase;
  color: #A3B2C4;
}

.product-modal__text-box__button {
  font-family: "GothamB", sans-serif;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 20px 10px;
  margin: 0 auto;
  font-size: 14px;
  display: block;
  outline: none;
  border: none;
  box-shadow: 0px 3px 40px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-weight: bold;
  bottom: -26px;
  position: relative;
  text-decoration: none;
  color: black;
  text-align: center;
  width: calc(80% - 20px);
  line-height: initial;
}

.product-modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 999999;
}

.product-modal__close svg path {
  fill: #A3B2C4;
}

.product {
  border: 1px solid #595959;
  border-bottom: 0;
  margin: 0 auto 60px;
  min-height: 400px;
  width: 85vw;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.8) 0%, #1B1B1B 100%);
  border-radius: 20px;
  position: relative;
}
.product__back{
  position: absolute;
    right: -18px;
    top: -31px;
  font-size: 24px;
}

@media (min-width: 430px) {
  .product {
    width: 400px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.product__header {
  padding: 12px 0;
}

.product__header__collection-name {
  display: block;
  margin: 0 auto;
  max-width: 70%;
}

@media all and (max-width: 600px) {
  .product__header__collection-name {
    max-width: 40%;
  }
}

.product__header__stars {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}

.product__header__stars__star {
  height: 8px;
  width: 8px;
  background: url("../images/star.png");
  margin: 0 2px;
}

.product__header__title {
  font-family: "Gotham", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #8C8C8C;
}

.product__image {
  padding: 0 40px;
  height: 45vh;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.product__image{
	margin-top: 0px !important;
}

.product__image img {
  width: auto;
  margin: 0 auto;
  border-radius: 20px;
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product__name-box {
  position: relative;
  
    padding-bottom: 60px;
}

.product__name-box__tag-wrapper {
  position: absolute;
  top: -35px;
  width: 100%;
  text-align: center;
}

.product__name-box__tag-wrapper__tag {
  background: #CF1322;
  border: 1px solid #A8071A;
  border-radius: 18px;
  font-family: "Gotham", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #FFFFFF;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  line-height: initial;
}

.product__name-box__name {
  font-family: "Syncopate", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 40px 20px 10px;
  letter-spacing: 1px;
}
.product__name-box__name__under {
  font-family: "Syncopate", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 1px;
}

@media (min-width: 430px) {
  .product__name-box__name {
    font-size: 20px;
  }
}

.product__link {
  display: block;
  z-index: 1 !important;
  width: calc(80%);
  margin: 0 auto;
  bottom: -26px;
  position: relative;
  border-radius: 3px;
  background: #987319;
  background: -moz-linear-gradient(0deg, #987319 0%, #f7ef8a 32%, #bc9734 65%, #f0c95e 100%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(0deg, #987319 0%, #f7ef8a 32%, #bc9734 65%, #f0c95e 100%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, #987319 0%, #f7ef8a 32%, #bc9734 65%, #f0c95e 100%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#987319", endColorstr="#000000", GradientType=1);
  box-shadow: 0px 2px 20px rgba(133, 103, 25, 0.75);
  padding: 3px;
  text-decoration: none;
  
  
    left: calc(50% - 40%);
    position: absolute;
}

.product__link__content {
  border-radius: 3px;
  background: #1B1B1B;
  /*width: calc(100% - 90px);*/
  padding: 17px 10px;
  display: block;
  color: white;
  text-decoration: none;
  font-family: "Gotham", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  z-index: 1000;
  text-align: center;
  box-sizing: content-box;
}

.page-logo {
  padding: 10px;
  margin: 0 auto 0px;
  width: 60vw;
}

@media (min-width: 430px) {
  .page-logo {
    width: 390px;
  }
}
.page-logo img {
  width: 100%;
}
.single-product {
  background: black;
}

.page-template-template-voucher {
  background: black;
}

.ui-tooltip {
  padding: 15px;
  color: black;
  background: white;
  width: 200px;
  -webkit-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 15px 3px rgba(0, 0, 0, 0.2);
  border: 1px solid #f2f1f1;
}

.dp-coupon__tooltip {

  background: #FFFFFF;
  /* Grey / grey-6 */

  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 28px;

  position: absolute;
  z-index: 9999;
  padding: 10px;
  font-size: 12px;
  border-radius: 4px;
  line-height: 12px;
  font-family: "Poppins", sans-serif;
  animation: fadeIn .5s ease-in-out;
  max-width: 40vw;
  font-family: Gotham;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;

}

.dp-coupon__tooltip:after {
  content: '';
  position: absolute;
  left: calc(50% - 10px / 2);
  bottom: -6px;
  background: white;
  width: 10px;
  height: 10px;
  border-top: 1px solid #BFBFBF;
  border-left: 1px solid #BFBFBF;
  transform: rotate(-135deg);
}

@media (max-width: 768px) {
  .dp-coupon__tooltip {
    margin-right: 3%;
  }

  /*.dp-coupon__tooltip:after {
    left: calc(93% - 10px / 2);
    } */
}

@keyframes dpFadeInUp {
  from {
    transform: translateY(30%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}

.product-modal__pieces-box {
  padding: 20px 0;
  background: #262626;
  color: white;
  text-align: center;
  font-family: "Gotham", sans-serif;
  display: none;
}

.product__image__gallery {
  position: absolute;
  top: 17px;
  right: 75px;
  font-size: 22px;
  color: white;
  text-shadow: 0px 0px 21px rgba(0, 0, 0, 0.75);
}

.product-nav--left {
  position: absolute;
  left: 50px;
  top: 45vh;
  font-size: 24px;
  color: #fff;
}

.product-nav--right {
  position: absolute;
  right: 50px;
  top: 45vh;
  font-size: 24px;
  color: #fff;
}

@media (max-width: 630px) {
  .product-nav--left {
    position: absolute;
    left: 3vw;
    bottom: -50px;
    top: 40vh;
    font-size: 24px;
  }

  .product-nav--right {
    position: absolute;
    right: 3vw;
    bottom: -50px;
    top: 40vh;
    font-size: 24px;
  }

  .product {
    width: 85vw;
  }
}

.fancybox-is-open .fancybox-bg {
  opacity: 1 !important;
}

.fancybox-container {
  z-index: 100 !important;
}

.checkbox_mobile {
  display: none;
}

@media all and (max-width: 345px) {
	.product__link{
		bottom: -40px;
	}
}
@media all and (max-width: 600px) {
  .product__link__content {
    font-size: 15px;
    line-height: 18px;
    padding: 15px 10px;
  }

  .product-modal__transparent-box__name {
    font-size: 22px;
    padding: 0 15px;
  }

  .product-modal__transparent-box__price--old,
  .product-modal__transparent-box__price--new {
    font-size: 24px;
  }

  .product-modal__transparent-box__price {
    padding: 20px 0;
  }

  .product-modal__transparent-box__text {
    font-size: 16px;
    line-height: 18px;
  }

  .product-modal__time-box--text {
    padding: 10px 0;
  }

  .product-modal__time-box--markers li {
    margin: 0 7%;
  }

  .product-modal__time-box {
    min-height: 135px;
  }

  .page-logo {
    padding: 5px;
  }

  .voucher-form__checkbox {
    display: none;
  }

  .rezervacia__checkbox {
    display: none;
  }

  .checkbox_mobile {
    display: flex;
    padding-top: 30px;
  }

  .voucher-form__button {
    margin-top: 20px;
  }

  .voucher-form__button--secondary {
    margin-top: 10px;
  }

  .checkbox-container .single-line {
    font-size: 11px;
  }

  .voucher-form {
    width: 90vw;
    margin-top: 5px;
  }

  .voucher-form__text {
    font-size: 15px;
    line-height: 20px;
    margin-top: 15px;
  }

  .voucher-form__boxes {
    width: 95%;
    margin: 10px 0;
  }

  .voucher-form__total-save {
    font-size: 20px;
    line-height: 25px;
  }

  .voucher-form__boxes__box__text,
  .voucher-form__boxes__box__text--with-icon {
    font-size: 15px;
    line-height: 18px;
  }

  .voucher-form__boxes__box__text small {
    font-size: 14px;
    line-height: 18px;
  }

  .voucher-form__boxes__box {
    margin-bottom: 5px;
  }
}


body{
  background: black;
}