/**
Book
**/
html:has(#zo-book-main) {
  overflow: hidden !important;
}

#zo-book-main {
  display: flex;
  justify-content: space-between;
  padding: 0 21.25vw;
  position: static;
  width: 100%;
  height: 100vh;
}

.zo-book-page {
  width: 50%;
  height: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zo-book-page-txt {
  width: 50%;
  font-size: 16px;
  line-height: 1.2em;
  padding: 110px 82px 30px 20px;
  color: #333333;
}
.zo-book-page-txt > .h3,
.zo-book-page-txt > .h4 {
  color: black;
}
#main-book-section {
  background-position: center center;
}
@media screen and (max-width: 1578px) {
  .zo-book-page-txt {
    font-size: 13px;
    padding: 90px 82px 30px 20px;
  }
}
@media screen and (max-width: 1300px) {
  #wrap section#main-book-section {
    background-size: 120vw !important;
    background-position: center 48% !important;
  }
  .zo-book-page-txt {
    padding: 100px 0 30px 20px;
  }
}
@media screen and (max-width: 1080px) {
  .zo-book-page-txt > .h3 {
    font-size: 32px;
  }
  #wrap section#main-book-section {
    background-size: 150vw !important;
  }
}
@media screen and (max-width: 768px) {
  .book-page-img {
    display: none;
  }
  .zo-book-page-style {
    width: 100%;
    font-size: 16px;
  }
  #wrap section#main-book-section {
    background-size: 246vw !important;
    background-position: 83% -198vw !important;
  }
  #zo-book-main {
    padding: 0 !important;
  }
  .zo-book-page-txt {
    width: 100%;
    font-size: 13.5px;
    padding: 56px 15px 30px 37px;
    max-width: 100vw !important;
  }
}
.zo-book-page a:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.zo-book-page a:focus > img {
  outline: 2px solid black !important;
  border: 2px solid white !important;
}
.zo-page-circle {
  width: 100%;
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
  justify-content: center;
  padding-bottom: 15%;
}

.zo-page-circle::after,
.zo-page-circle::before {
  content: "";
  display: block;
  background-image: url("https://www.chocolatelovers.zeeuwsonline.dev/wp-content/uploads/2026/04/sparklespng.webp");
  background-size: contain;
  aspect-ratio: 7/5;
  width: 20vw;
  position: absolute;
}

.zo-page-circle::after {
  top: 20%;
  left: -20px;
  transform: rotate(160deg) translate(2px, 4px);
  scale: 0.75;
  opacity: 0;
  transition: scale 0.25s ease-out, opacity 0.9s ease-out,
    transform 0.9s ease-out;
}

.zo-page-circle::before {
  bottom: 26%;
  right: 6px;
  transform: rotate(-2deg) translate(-6px, -5px);
  scale: 0.75;
  opacity: 0;
  transition: scale 0.25s ease-out, opacity 0.9s ease-out,
    transform 0.9s ease-out;
  transition-delay: 0.2s;
}

.zo-page-circle:hover::after {
  scale: 1;
  transform: rotate(162deg) translate(0, 0);
  opacity: 0.8;
}

.zo-page-circle:hover::before {
  scale: 1;
  transform: rotate(0deg) translate(0, 0);
  opacity: 0.8;
}

.zo-page-circle-img {
  border-radius: 100vh;
  width: 18vw;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 0 39px 2px rgba(51, 51, 51, 0.3);
  object-position: center center;
  transition: scale 0.6s ease-out, box-shadow 0.6s ease-out;
}

.zo-page-circle:hover .zo-page-circle-img {
  scale: 1.02;
  box-shadow: 0 0 39px 5px rgba(51, 51, 51, 0.4);
}

.zo-page-circle > svg {
  position: absolute;
  top: 47%;
  transition: scale 0.6s ease-out;
  left: 50%;
  transform: translate(-50%, -50%);
}

.zo-page-circle:hover > svg {
  scale: 1.02;
}

.zo-page-circle > svg text {
  font-family: "Mountains of Christmas";
  font-weight: 700;
}

#book-toolbar {
  position: absolute;
  bottom: 50px;
  display: flex;
  align-items: center;
  width: 100%;
  left: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#book-toolbar .zo-toolbar-btn {
  border: none;
  border-radius: 5em;
  font-size: 20px;
  padding: 1rem 1.5rem;
  background-color: #a7498f;
  margin-left: 0 !important;
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: transform 0.3s ease-out;
}
#book-toolbar .zo-toolbar-btn:hover {
  transform: translateY(-2px);
}
#book-toolbar .zo-toolbar-btn .ticket-icon {
  height: 40px;
  margin-top: -20px;
  position: relative;
  width: 26px;
  margin-bottom: -20px;
}

#book-toolbar .zo-toolbar-btn .ticket-icon::before {
  content: "";
  display: block;
  background-image: url(https://www.chocolatelovers.zeeuwsonline.dev/wp-content/uploads/2026/04/tickets.webp);
  background-size: contain;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1200px) {
  .zo-page-circle > svg text {
    font-size: 52px !important;
  }

  .zo-page-circle > svg {
    width: 31.25vw !important;
    height: 31.25vw !important;
  }
}

@media screen and (max-width: 1200px) {
  .zo-page-circle-img {
    width: 220px;
  }

  .zo-page-circle > svg {
    width: 400px !important;
    height: 400px !important;
  }
  .zo-page-circle::after {
    top: 42%;
  }
  .zo-page-circle::before {
    bottom: 42%;
    right: -10px;
  }
}

@media screen and (max-width: 900px) {
  .zo-page-circle > svg {
    width: 300px !important;
    height: 300px !important;
  }

  .zo-page-circle > svg {
    top: 48.5% !important;
  }

  .zo-page-circle-img {
    width: 150px;
  }

  #zo-book-main {
    padding: 0 11%;
  }
}

@media screen and (max-width: 500px) {
  .zo-page-circle > svg {
    width: 230px !important;
    height: 230px !important;
  }

  #book-toolbar .zo-toolbar-btn {
    font-size: 14px;
  }

  .zo-page-circle > svg {
    top: 49.5% !important;
  }

  .zo-page-circle-img {
    width: 110px;
  }
  .zo-page-circle::after {
    top: 36%;
    width: 36vw;
  }
  .zo-page-circle::before {
    bottom: 36%;
    right: -10px;
    width: 36vw;
  }
}
/** header switch
**/
.zo-header-switcher-wrap {
  width: 310px;
  height: 0;
  display: flex;
  margin-left: -15px;
}
.zo-header-switcher {
  width: 33%;
  height: 70px;
  clip-path: polygon(100% 0, 100% 100%, 50% 57%, 0 100%, 0 0);
  display: flex;
  font-weight: 600;
  justify-content: center;
  font-size: 15px;
  background-color: rgba(9, 4, 1, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0.75;
}
.zo-switch-museum {
  left: -16px;
  top: -1px;
  opacity: 0.75;
}
.wpb_raw_code:has(.zo-header-switcher) {
  margin-bottom: 0 !important;
}

.zo-switch-museum.zo-current,.zo-switch-b2b.zo-current {
  opacity: 1;
  background-color: rgb(130, 23, 120);
}
.zo-switch-winkel.zo-current {
  opacity: 1;
  background-color: #5B2907;
}

/*
** tickets         
**/
.zo-ticket-card {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 35px 50px;
  background-color: #5d1156 !important;
  --bevel-radius: 30px;
  -webkit-mask: linear-gradient(135deg, transparent var(--bevel-radius), #000 0)
      top left,
    linear-gradient(-135deg, transparent var(--bevel-radius), #000 0) top right,
    linear-gradient(-45deg, transparent var(--bevel-radius), #000 0) bottom
      right,
    linear-gradient(45deg, transparent var(--bevel-radius), #000 0) bottom left;
  -webkit-mask-size: 51% 51%;
  -webkit-mask-repeat: no-repeat;

  mask: linear-gradient(135deg, transparent var(--bevel-radius), #000 0) top
      left,
    linear-gradient(-135deg, transparent var(--bevel-radius), #000 0) top right,
    linear-gradient(-45deg, transparent var(--bevel-radius), #000 0) bottom
      right,
    linear-gradient(45deg, transparent var(--bevel-radius), #000 0) bottom left;
  mask-size: 51% 51%;
  mask-repeat: no-repeat;
}
.zo-ticket-img {
  width: 35%;
  padding: 40px;
}
.zo-ticket-img img {
  margin-bottom: -35px;
}
.zo-ticket-info {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.zo-ticket-info .h2 {
  margin-top: 15px;
}
.zo-ticket-desc {
  height: 100%;
}
.zo-ticket-desc ul {
  list-style: none;
  padding-left: 0;
}
.zo-ticket-btn {
  font-size: 16px !important;
  padding: 15px 30px !important;
  background-color: #a7498f !important;
  --bevel-radius: 6px;
  -webkit-mask: linear-gradient(135deg, transparent var(--bevel-radius), #000 0)
      top left,
    linear-gradient(-135deg, transparent var(--bevel-radius), #000 0) top right,
    linear-gradient(-45deg, transparent var(--bevel-radius), #000 0) bottom
      right,
    linear-gradient(45deg, transparent var(--bevel-radius), #000 0) bottom left;
  -webkit-mask-size: 51% 51%;
  -webkit-mask-repeat: no-repeat;

  mask: linear-gradient(135deg, transparent var(--bevel-radius), #000 0) top
      left,
    linear-gradient(-135deg, transparent var(--bevel-radius), #000 0) top right,
    linear-gradient(-45deg, transparent var(--bevel-radius), #000 0) bottom
      right,
    linear-gradient(45deg, transparent var(--bevel-radius), #000 0) bottom left;
  mask-size: 51% 51%;
  mask-repeat: no-repeat;
  border: none !important;
  color: white !important;
  width: 300px !important;
  aspect-ratio: 61/17;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-out;
}
.zo-ticket-btn:hover {
  transform: translateY(-2px);
}
.zo-ticket-price {
  font-size: 36px;
  padding-top: 40px;
  width: 20%;
}
.zo-ticket-desc li {
  display: flex;
  margin-top: 8px;
  align-items: center;
  gap: 10px;
}
.zo-ticket-desc li::before {
  content: "";
  width: 23px;
  height: 28px;
  background-image: url("https://www.chocolatelovers.zeeuwsonline.dev/wp-content/uploads/2026/04/sterretje.svg");
  background-size: contain;
}
@media screen and (max-width: 992px) {
  .zo-ticket-img {
    width: 100%;
    padding: 10px;
    height: fit-content;
  }
  .zo-ticket-card {
    padding: 15px 20px;
    --bevel-radius: 15px;
    flex-wrap: wrap;
    gap: 0;
  }
  .zo-ticket-img > img {
    margin-bottom: 0;
    max-width: 150px;
  }
  .zo-ticket-info {
    width: 75%;
    /*     max-width: calc(100% - 75px); */
  }
  .zo-ticket-info > .h2 {
    margin-right: 15px;
    font-size: 23px;
    min-height: 2.6em;
  }
  .zo-ticket-desc,
  .zo-ticket-btn {
    margin-left: -85px;
  }
  .zo-ticket-btn {
    max-height: 55px;
    display: block !important;
    text-align: center;
    margin-top: 50px !important;
  }
  .zo-ticket-price {
    font-size: 20px;
    width: 25%;
    padding-top: 12px;
  }
  #wrap .zo-ticket-buyer-btn {
    margin-top: 20px;
  }
  .zo-ticket-desc li {
    font-size: 16px;
  }
  .zo-ticket-desc li::before {
    height: 18px;
    background-repeat: no-repeat;
    background-position: right;
  }
}
/*
** Bevels cont         
**/
div:has(> .zo-bevels-cont-outine) > * {
  z-index: 2;
}
.zo-bevels-cont-outine {
  position: absolute;
  top: calc(var(--bevel-width) * -1);
  left: calc(var(--bevel-width) * -1);
  width: calc(100% + var(--bevel-width) * 2);
  height: calc(100% + var(--bevel-width) * 2);
  user-select: none;
  z-index: 1 !important;
}
.zo-bevel-outine {
  position: absolute;
  user-select: none;
  width: calc(100% - var(--bevel-rad) * 2);
  height: calc(100% - var(--bevel-rad) * 2);
}
.zo-bevel-outine svg {
  position: absolute;
  height: var(--bevel-rad);
  width: var(--bevel-rad);
}

.zo-bevel-outine.bevel-top {
  top: 0;
  left: var(--bevel-rad);
  border-top: var(--bevel-width) var(--bevel-color) solid;
}
.zo-bevel-outine.bevel-top svg {
  right: calc(var(--bevel-rad) * -1);
  top: calc(var(--bevel-width) * -1);
}

.zo-bevel-outine.bevel-right {
  top: var(--bevel-rad);
  right: 0;
  border-right: var(--bevel-width) var(--bevel-color) solid;
}
.zo-bevel-outine.bevel-right svg {
  bottom: calc(var(--bevel-rad) * -1);
  right: calc(var(--bevel-width) * -1);
}

.zo-bevel-outine.bevel-bottom {
  bottom: 0;
  left: var(--bevel-rad);
  border-bottom: var(--bevel-width) var(--bevel-color) solid;
}
.zo-bevel-outine.bevel-bottom svg {
  left: calc(var(--bevel-rad) * -1);
  bottom: calc(var(--bevel-width) * -1);
}

.zo-bevel-outine.bevel-left {
  left: 0;
  bottom: var(--bevel-rad);
  border-left: var(--bevel-width) var(--bevel-color) solid;
}
.zo-bevel-outine.bevel-left svg {
  top: calc(var(--bevel-rad) * -1);
  left: calc(var(--bevel-width) * -1);
}
/**
** gold img
**/
.zo-gold-img-wrap {
  position: relative;
}
.zo-gold-circ .zo-gold-img {
  margin-top: 13%;
}
.zo-gold-img {
  width: 100%;
  height: 100%;
  width: calc(100% / var(--width-divide));
  height: calc(100% / var(--height-divide));
  object-fit: cover;
}
.zo-frame-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(var(--rotate));
}
.frame-item-round-img > img {
  border-radius: 100%;
}
.zo-frame-item::after {
  content: "";
  display: block;
  background-image: var(--bg-img);
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/*
** CTA
*/
.zo-beveled-cta {
  position: relative;
  display: flex;
}
.zo-beveled-cta-content {
  width: 60%;
}
.zo-beveled-cta-content > h1,
.zo-beveled-cta-content > h2,
.zo-beveled-cta-content > h3,
.zo-beveled-cta-content > h4,
.zo-beveled-cta-content > h5,
.zo-beveled-cta-content > h6 {
  margin-top: 0px;
}
.zo-beveled-cta-img {
  padding: 25px;
  width: 40%;
}
.zo-beveled-cta-btn {
  color: rgb(91, 41, 7) !important;
}
@media screen and (max-width: 768px) {
  .zo-beveled-cta-img {
    display: none;
  }
  .zo-beveled-cta-content {
    width: 100%;
    text-align: center;
  }
}
/**
** Bevel cont
*/
.zo-bevel-cont,
.zo-bevel-cont-inner {
  position: relative;
}
.zo-bevel-input label {
  margin-bottom: 0;
  width: 100%;
}
.zo-bevel-input input,
.zo-bevel-input textarea {
  background-color: transparent;
  border: none !important;
  color: white;
  width: 100%;
}
.zo-bevel-input input::placeholder,
.zo-bevel-input textarea::placeholder {
  color: #ededed;
}
.wpcf7-not-valid-tip {
  background: white;
  padding: 2px 5px;
}

.zo-mailchimp-cta-container {
  background: #7e0073;
  background: -webkit-linear-gradient(
    0deg,
    rgb(126 0 115) 0%,
    rgba(93, 17, 86, 1) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgb(126 0 115) 0%,
    rgba(93, 17, 86, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgb(126 0 115) 0%,
    rgba(93, 17, 86, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7e0073", endColorstr="#5D1156", GradientType=0);
display: flex;
}
html:has(#chocoheader) .zo-mailchimp-cta-container {
  background: #8d1982;
  background: -webkit-linear-gradient(
    0deg,
    rgba(141, 25, 130, 1) 0%,
    rgba(93, 17, 86, 1) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgba(141, 25, 130, 1) 0%,
    rgba(93, 17, 86, 1) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(141, 25, 130, 1) 0%,
    rgba(93, 17, 86, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8D1982", endColorstr="#5D1156", GradientType=0);
  
}
.zo-mailchimp-cta-outer-container {
  background-color: transparent !important;
  --gap: 30px;
  -webkit-mask: linear-gradient(135deg, transparent var(--gap), #000 0) top left,
    linear-gradient(-135deg, transparent var(--gap), #000 0) top right,
    linear-gradient(-45deg, transparent var(--gap), #000 0) bottom right,
    linear-gradient(45deg, transparent var(--gap), #000 0) bottom left;
  -webkit-mask-size: 51% 51%;
  -webkit-mask-repeat: no-repeat;

  mask: linear-gradient(135deg, transparent var(--gap), #000 0) top left,
    linear-gradient(-135deg, transparent var(--gap), #000 0) top right,
    linear-gradient(-45deg, transparent var(--gap), #000 0) bottom right,
    linear-gradient(45deg, transparent var(--gap), #000 0) bottom left;
  mask-size: 51% 51%;
  mask-repeat: no-repeat;
}
.zo-mailchimp-cta-image {
  width: 40%;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 15px;
  overflow: hidden;
}
.zo-mailchimp-cta-image > img {
  aspect-ratio: 1 / 2;
  object-fit: contain;
  object-position: top;
  transform: rotate(10deg);
  margin-bottom: -74px;
  margin-left: 27px;
}
.zo-mailchimp-cta-form {
  width: 60%;
  padding: 50px 30px 50px 90px;
}
.zo-mailchimp-cta-wrap {
  position: relative;
}
.zo-mailchimp-cta-form .wpcf7 label,
.zo-mailchimp-cta-form .wpcf7 input {
  width: 100%;
}
.zo-mailchimp-cta-form .wpcf7 input {
  padding: 6px 12px;
  border-radius: 5em;
  border: none !important;
}
#wrap .zo-ticket-buyer-btn {
  display: flex;
  margin-top: 0;
  aspect-ratio: 150 / 19;
  width: 300px;
  overflow: visible;
  justify-content: center;
  border: none;
  background-image: var(--bg);
  overflow: visible;
  background-size: contain;
  background-repeat: no-repeat;
}
#wrap .zo-ticket-buyer-btn > span {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .zo-mailchimp-cta-image {
    display: none;
  }

  .zo-mailchimp-cta-form {
    width: 100%;
    padding: 35px 30px;
  }
  .zo-mailchimp-cta-form h3 {
    font-size: 42px !important;
  }
}
