.slot-row {
    display: flex;
    margin: 3rem 0;
    justify-content: center;
}

.slot-content-top {
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.spacer {
    width: 12.5%;
}

.slot-left>.slot-single-top,
.slot-left>.slot-single-bottom {

    border-left: none !important;
}

.slot-right>.slot-single-top,
.slot-right>.slot-single-bottom {

    border-right: none !important;
}

.centered {
    text-align: center;
}

.slot-content {
    text-align: center;
    flex: 1;
}

.slot-desc {
    color: gray;
}

.shadowed {
    box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.35);
}

.myslide{
    display: flex;
    justify-content: center;
}

.inSlide{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    gap: 1rem;
}

.caption h4{
    font-size: 16px;
    color: white;
}

.gallery-swiper{
    height: 100%;
}
.gallery-img{
    max-height: 70%;
    width: auto;
    max-width: 70%;
}

.relative-wrapper{
    position: relative;
    height: 100%;
}
.slot-img {
    max-width: 95%;
    max-height: 20rem;
    cursor: pointer;
}

.absolute-wrapper {
    height: 75vh;
    top: 12.5vh;
    background-color: black;
    width: 100%;
    left: 0;
    position: fixed;
    z-index: 1000;
}

.x-button {
    font-size: 38px;
    color: white;
    text-align: right;
    position: absolute;
    right: 2rem;
    top: 2rem;
    z-index: 10000;
    cursor: pointer;
}

.swiper-button-prev, .swiper-button-next{
    color: white !important;
}

@media only screen and (max-width: 600px) {
    .slot-row {
        display: block;
        margin: 0;
    }

    .slot-content {
        margin-bottom: 4rem;
    }

    .slot-content-top {
        height: auto;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .slot-single {
        width: 100%;
    }

    .slot-last>.slot-single-bottom:after {
        display: none !important;
    }

    .absolute-wrapper {
        height: 100vh;
        top: 0;
        background-color: black;
        width: 100%;
        left: 0;
        position: fixed;
        z-index: 1000;
    }
}