/* Slideshow's elements styles */
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
    display: flex;
    justify-content: center;
    width: 95%;
    position: relative;
    margin: auto;
}

.gallery_image {
    border: 3px solid #f2c314;
}

/* Next & previous buttons */
.prev {
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: #dbaf57;
    font-weight: bold;
    font-size: 3em;
    transition: 0.6s ease;
    border-radius: 0.5em 0px 0px 0.5em;
    user-select: none;
    border: 3px solid #f2c314;
    position: relative;
    left: 3px;
}

.next {
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: #dbaf57;
    font-weight: bold;
    font-size: 3em;
    transition: 0.6s ease;
    border-radius: 0px 0.5em 0.5em 0px;
    user-select: none;
    border: 3px solid #f2c314;
    position: relative;
    left: -3px;
}

/* On hover, add a green background color with a little bit see-through */
.prev:hover {
background-color: rgba(0,96,79,0.8);
}

.next:hover {
background-color: rgba(0,96,79,0.8);
}

.text {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: relative;
    bottom: 2em;
    width: 100%;
    text-align: center;
    box-sizing: border-box
}

.numbertext {
color: #dbaf57;
font-size: 1em;
padding: 8px 12px;
position: absolute;
top: 0;
}

/* The dots/bullets/indicators */
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}

.active, .dot:hover {
background-color: #717171;
}

/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}

@-webkit-keyframes fade {
from {opacity: .4} 
to {opacity: 1}
}

@keyframes fade {
from {opacity: .4} 
to {opacity: 1}
}

/* ------------------------ */

@media only screen and (max-width: 768px)	{

}

@media only screen and (max-width: 460px)	{
    .text {font-size: 11px}
    .prev {
        font-size: 1em;
        padding: 10px;
        border-radius: 0.8em 0em 0em 0.8em;
    }
    .next {
        padding: 10px;
        font-size: 1em;
        border-radius: 0em 0.8em 0.8em 0em;
    }
}