
/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    max-height: 100%;
    /*height: 500px;*/
    width: 600px;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
    max-height: 100%;
    height: min-content;
    margin-top: 10%;
}
.casino-image {
    max-height: 100%;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: 300;
    font-size: 28px;
    transition: 0.2s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: -30px;
    border-radius: 3px 0 0 3px;
    text-shadow: -1px 1px 1px #1396da,
    1px 1px 1px #1396da,
    1px -1px 1px #1396da,
    -1px -1px 1px #1396da,
    0 0 7px #1396da,
    0 0 10px #1396da,
    0 0 21px #1396da,
    0 0 42px #1396da,
    0 0 82px #1396da
}
.prev {
    left:-30px;
    text-shadow: -1px 1px 1px #1396da,
    1px 1px 1px #1396da,
    1px -1px 1px #1396da,
    -1px -1px 1px #1396da,
    0 0 7px #1396da,
    0 0 10px #1396da,
    0 0 21px #1396da,
    0 0 42px #1396da,
    0 0 82px #1396da
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    /*background-color: rgba(0,0,0,0.8);*/
    text-shadow: -1px 1px 1px #e50258,
    1px 1px 1px #e50258,
    1px -1px 1px #e50258,
    -1px -1px 1px #e50258,
    0 0 7px #e50258,
    0 0 10px #e50258,
    0 0 21px #e50258,
    0 0 42px #e50258,
    0 0 82px #e50258
}
.casino-link {
    text-decoration: none;
    color: transparent;
    cursor: pointer;
}

.hidden {
    display: none;
}

.fade {
    animation-name: fade;
    animation-duration: 5s;
    opacity: 0;
}

.curtain {
    position: absolute;
    width: 100%;
    max-width: 100vw;
    transform: scale(1.5);
    top: 100px;
    margin: 0 auto;
}

.curtain-img {
    max-width: 100%;
    z-index: 10000;
}



@keyframes fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


@media screen and (max-width: 700px) {

    .prev {
        left: 0;
    }
    .next {
        right: 0;
    }

    .slideshow-container {
        height: auto;
    }
}

@media screen and (max-width: 992px) {
    .mySlides {
        margin-top: auto;
    }
    .curtain {
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        transform: scale(1);
        top:0;
    }
}
