.pasen_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: rgba(88,87,84,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease;
  padding: 15px;
}

@media screen and (min-width: 365px) {
  .pasen_wrapper {
    padding: 40px;
  }
}

@media screen and (min-width: 700px) {
  .pasen_wrapper {
    padding: 0;
  }
}

.pasen_wrapper.pasen-open {
  opacity: 1;
  visibility: visible;
}

.pasen_popup {
  width: 100%;
  background: white;
  box-shadow: 0 15px 25px 0 rgba(0,0,0,0.5);
  border-radius: 6px;
  display: flex;
  position: relative;
  flex-direction: column-reverse;
  position: relative;
}

@media screen and (min-width: 700px) {
  .pasen_popup {
    flex-direction: row;
    height: 280px;
    max-width: 560px;
  }
}

.pasen_rabbit {
  width: 100%;
  min-width: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #135a6b;
  position: relative;
}

.pasen_rabbit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: white;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

@media screen and (min-width: 700px) {
  .pasen_rabbit {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background: none;
    overflow: inherit;
  }

  .pasen_rabbit::before {
    display: none;
  }
}

.blad1 {
  position: absolute;
  bottom: -14px;
  right: -25px;
  z-index: 2;
  width: 57px;
  height: 80px;
  background-image: url(../images/Blad_1.png);
  background-size: cover;
  pointer-events: none;
}

@media screen and (min-width: 700px) {
  .blad1 {
    right: 180px;
  }
}

.blad2 {
  position: absolute;
  top: 150px;
  left: -50px;
  z-index: 2;
  width: 114px;
  height: 106px;
  background-image: url(../images/Blad_2.png);
  background-size: cover;
  animation: blad2 5s ease infinite;
  transform-origin: bottom center;
  pointer-events: none;
}

@media screen and (min-width: 700px) {
  .blad2 {
    top: -45px;
    left: -40px;
  }
}

@keyframes blad2 {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.blad3 {
  position: absolute;
  top: -42px;
  right: -28px;
  z-index: -1;
  width: 82px;
  height: 84px;
  background-image: url(../images/Blad_3.png);
  background-size: cover;
  pointer-events: none;
}

.beesie {
  position: absolute;
  top: 200px;
  right: 20px;
  z-index: 0;
  width: 43px;
  height: 39px;
  background-image: url(../images/beessie.png);
  background-size: cover;
  animation: beessie 7s ease infinite;
  pointer-events: none;
}

@media screen and (min-width: 700px) {
  .beesie {
    top: -15px;
    right: 216px;
  }
}

@keyframes beessie {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}

.bladgeel {
  position: absolute;
  bottom: 28px;
  left: -26px;
  z-index: 1;
  width: 45px;
  height: 80px;
  background-image: url(../images/Blad_geel.png);
  background-size: cover;
}

.eikel {
  position: absolute;
  bottom: -22px;
  left: -23px;
  z-index: 1;
  width: 58px;
  height: 85px;
  background-image: url(../images/Eikel.png);
  background-size: cover;
  animation: eikel 8s ease infinite;
}

.pasen__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  position: relative;
  min-height: 160px;
  background-size: contain;
}

@media screen and (min-width: 700px) {
  .pasen__inner {
    min-height: inherit;
  }
}

.pasen_content {
  width: 100%;
  max-width: 190px;
  padding: 40px 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (min-width: 700px) {
  .pasen_content {
    width: calc(100% - 250px);
    height: 100%;
    padding: 24px 16px;
    max-width: 100%;
    position: relative;
  }
}

.pasen_title {
  display: block;
  text-align: center;
  width: 100%;
  font-weight: 600;
  color: #CC0237;
  font-size: 20px;
  line-height: 24px;
  font-family: Arial, sans-serif !important;
}

.pasen_innercontent {
  color: #585754;
  font-size: 13px;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 8px;
  font-family: Arial, sans-serif !important;
}

.pasen_close-text {
  display: block;
  width: 100%;
  text-align: center;
  color: #585754;
  font-size: 10px;
  text-decoration: underline;
  margin-top: 7px;
  cursor: pointer;
  font-family: Arial, sans-serif !important;
}

.pasen_close {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 24px;
  cursor: pointer;
}

.pasen_close span {
  color: #585754;
  font-size: 10px;
  font-family: Arial, sans-serif !important;
}

.pasen_close svg {
  width: 10px;
  margin-left: 5px;
}

.pasen_close svg path {
  fill: #CC0237;
}

.sb-scratch-button {
  height: 34px;
  border-radius: 6px;
  background-color: #CC0237 !important;
  font-size: 13px !important;
  color: white !important;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 19px;
  font-family: Arial, sans-serif !important;
}
.sb-scratch-button:hover {
  text-decoration: none;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-image: url(../images/circle.png);
  background-size: cover;
  width: 147px;
  height: 128px;
  animation: rotate 13s linear infinite;
}

@media screen and (min-width: 700px) {
  .circle {
    width: 197px;
    height: 178px;
  }
}

.kerst_cadeau {
  position: absolute;
  background-image: url(../images/kerst/Group18.svg);
  width: 86px;
  height: 106px;
  bottom: -23px;
  left: -31px;
  z-index: 4;
  animation: eikel 4s ease infinite;
}

.snowbackground {
  position: absolute;
  background-image: url(../images/kerst/Group9.svg);
  width: 290px;
  height: 134px;
  z-index: 3;
  top: 20px;
}

.pasen__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #135A6B;
}

.eekhoorn {
  position: absolute;
  background-image: url(../images/kerst/Group7.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: 2;
  min-width: 480px;
}

@media screen and (min-width: 700px) {
  .eekhoorn {
    background-image: url(../images/kerst/Group7.svg);
    width: 90%;
    height: 100%;
    top: 0;
    left: 50%;
    background-position: left;
    min-width: inherit;
    transform: translate(-50%, 0);
  }
}

.cadeau {
  position: absolute;
  top: -45px;
  left: -24px;
  width: 91px;
  height: 108px;
  background-image: url(../images/cadeau.png);
  background-size: cover;
  z-index: 1;
}

.stropdas {
  position: absolute;
  top: 10px;
  left: -20px;
  width: 60px;
  height: 195px;
  background-image: url(../images/stropdas.png);
  background-size: cover;
  z-index: 1;
}

.mustage {
  position: absolute;
  bottom: -35px;
  right: -45px;
  width: 174px;
  height: 94px;
  background-image: url(../images/mustage.png);
  background-size: cover;
  z-index: 2;
}

.pasen_logo {
  height: 60px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pasen_logo img {
  height: 100%;
}

.pasen_konijn {
  height: 120px;
  display: flex;
  align-items: flex-end;
  margin: 23px 0;
}

.pasen_extra {
  font-size: 13px;
  color: #585754;
  margin-top: 15px;
  font-family: Arial, sans-serif !important;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes eikel {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}
