@import url("https://use.typekit.net/gka2csc.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: black;
}

.think-christmas-swiper {
    position: relative;
    width: 100%;
    height: 100%;
}

.think-christmas-desktop,
.think-christmas-mobile {
    position: relative;
    width: 100%;
    height: 100%;
}

.think-christmas-mobile {
    display: none;
}

.think-christmas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.think-christmas-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.think-christmas-prev,
.think-christmas-next {
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s;
}

.think-christmas-next {
    right: 5%;
    background-image: url("/images/next.svg");
}

.think-christmas-prev {
    left: 5%;
    background-image: url("/images/prev.svg");
}

.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-aspect-ratio: 2/3) {
    .think-christmas-desktop {
        display: none;
    }

    .think-christmas-mobile {
        display: flex;
    }

    .think-slide-1 .think-christmas-text {
        width: 60%;
    }

    .think-slide-2 .think-christmas-text,
    .think-slide-4 .think-christmas-text,
    .think-slide-6 .think-christmas-text {
        top: unset;
        bottom: 200px;
        width: 75%;
    }

    .think-slide-2 .think-christmas-text {
        bottom: 250px;
    }

    .think-slide-3 .think-christmas-text,
    .think-slide-5 .think-christmas-text {
        top: 150px;
        width: 75%;
    }

    .think-christmas-prev,
    .think-christmas-next {
        top: unset;
        bottom: 50px;
    }

    .think-christmas-next {
        right: 5%;
    }

    .think-christmas-prev {
        left: 5%;
    }
}
