@charset "UTF-8";
/* Congrats! modal */
.congrats__list {
    padding: 0;
}
[data-congrats] {
    display: flex;
    color: #333333;
    text-decoration: none;
    padding: 24px 2.5%;
    transition: all .1s;
}
[data-congrats]:hover {
    text-decoration: none;
}
@media (any-hover: hover) {
  [data-congrats]:hover *{
    opacity: 0.7;
  }
  .voiceList__label {
    z-index: 3;
  }
}
@media only screen and (max-width: 787px) {
    [data-congrats] {
        flex-direction: column;
        padding: 40px 0;
    }
}

.congrats__modal {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all .2s;
}
.congrats__modal.is-active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
  background: transparent;
  padding: 10px;
  max-width: 100%;
  border-radius: 6px;
  position: relative;
  margin: auto;
}
@media only screen and (max-width: 787px) {
    .modal-content {
        max-width: 90%;
    }
}
@media only screen and (max-width: 667px) and (orientation: landscape) {
    .congrats__modal {
        overflow-x: hidden;
        overflow-y: scroll;
    }
}
.modal-content img {
    height: calc(100vh - 100px);
    display: inline-flex;
}
@media only screen and (max-width: 787px) {
    .modal-content img {
        height: auto;
    }
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 3;
  border: none;
  background-color: transparent;
}
@media only screen and (max-width: 787px) {
    .close-btn {
        right: 0;
    }
}
.close-btn::before,
.close-btn::after {
    content: "";
    display: block;
    width: 1px;
    height: 80%;
    position: absolute;
    top: 0;
    background-color: #fff;
}
.close-btn::before {
    transform: rotate(45deg);
}
.close-btn::after {
    transform: rotate(-45deg);
}
/* slick */
.swiper-navigation-icon path {
    fill: #ffffff;
}
.swiper-button-prev {
    left: 20% !important;
}
.swiper-button-next {
    right: 20% !important;
}
@media only screen and (max-width: 1025px) {
    .swiper-button-prev {
        left: 10% !important;
    }
    .swiper-button-next {
        right: 10% !important;
    }
}
@media only screen and (max-width: 667px) {
    .swiper-button-prev {
        left: 30% !important;
    }
    .swiper-button-next {
        right: 30% !important;
    }
    .swiper-button-prev,
    .swiper-button-next {
        top: 110% !important;
    }
}
.icon-modal {
    position: relative;
    display: inline-block;
    margin-top: 0.5em;
    padding-right: 1.5em;
}
.icon-modal::before,
.icon-modal::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    position: absolute;
}
.icon-modal::before {
    top: 0;
    right: 0;
}
.icon-modal::after {
    top: 4px;
    right: 4px;
}