@media (max-width: 1600px) {
  .header-is-sidebar .slot__wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1200px) {
  .header-is-sidebar .slot__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 576px) {
  .header-is-sidebar .slot__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .header-is-sidebar .slot__wrap {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.slot {
  margin: 40px 0;
}
.slot:last-child {
  margin-bottom: 0;
}
@media (max-width: 990px) {
  .slot {
    margin: 25px 0;
  }
}
.slot__wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px 10px;
}
@media (max-width: 990px) {
  .slot__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 576px) {
  .slot__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .slot__wrap {
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.slot__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 6px;
  background: var(--slot-item-bg);
}
.slot__img {
  position: relative;
  display: block;
  aspect-ratio: 200/270;
  height: 100%;
}
@media (max-width: 990px) {
  .slot__img {
    aspect-ratio: 200/245;
  }
}
.slot__img:hover .slot__btn {
  opacity: 1;
}
.slot__img:hover::after {
  opacity: 0.45;
}
.slot__img::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  transition: 0.3s;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #000;
  opacity: 0;
  height: 100%;
}
.slot__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 200/270;
  height: 100%;
}
@media (max-width: 990px) {
  .slot__img img {
    aspect-ratio: 200/245;
  }
}
.slot__btn {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 50%;
  z-index: 2;
  transition: 0.3s;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.slot__btn a,
.slot__btn button {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-align: center;
  width: 100%;
  border-radius: var(--button-border-radius, 6px);
  background: var(--button-bg);
  color: var(--button-text-color);
}
.slot__btn a:hover,
.slot__btn button:hover {
  background: var(--button-bg-hover, var(--button-bg));
  color: var(--button-text-color-hover, var(--button-text-color));
}
.slot__btn p {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin: 10px 0;
}
.slot__text {
  padding: 10px;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: normal;
  color: var(--text-color);
}

.slot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.slot-modal.is-open {
  display: flex;
}
.slot-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}
.slot-modal__box {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  height: min(720px, 100vh - 40px);
  background: #000;
}
.slot-modal__close {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slot-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

/*# sourceMappingURL=slot.css.map */
