
/* mixins */



/* POP UP */
@keyframes pop {
  0% {
    height: 0%;
  }
  100% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes show-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.pop-up {
  animation: pop 0.8s ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  height: 0;
  position: fixed;
  overflow: hidden;
  width: 100%;
  z-index: 9998;
}
.pop-up .content {
  align-self: center;
  padding: 100px;
  /*width: 500px;*/
}
/* POP UP close button */
input[type="checkbox"] {
  display: none;
}
.close{
  animation: show-text 0.3s ease 55s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  color: white;
  cursor: pointer;
  font-size: 24px;
  right: 30px;
  opacity: 0;
  position: fixed;
  top: 100px;
  z-index: 9999;
}
input[type="checkbox"]:checked ~ div.pop-up {
  display: none;
}
input[type="checkbox"]:checked ~ label {
  display: none;
}
