* {box-sizing:border-box}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    width: auto;
    position: relative;
    top: -28vh;
    color: #f3f3f3;
    font-weight: bold;
    font-size: 18px;
    padding: 2px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: -10%;
    display: inline-block;
    border-radius: 3px 0 0 3px;
}

.prev{
    left: -10%;
    display: inline-block;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    color: #404040;
    text-decoration: none;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dotHolder{
    text-align: center;
    position: relative;
    top: -25vh;
}
.dot {
    height: 70%;
    width: 70%;
    margin-top: 14.9%;
    margin-bottom: 14.9%;
    margin-left: 14.9%;
    margin-right: 14.9%;
    display: inline-block;
    visibility: visible;
    color: #f4f4f4;
    font-size: 15px;
    font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
}
.dotBack {
    cursor: pointer;
    height: 1vw;
    width: 1vw;
    margin: 0 2px;
    display: inline-block;
    color: #f4f4f4;
    font-size: 15px;
    font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
}

.active {
    visibility: hidden;
}
/*
/* Fading animation
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}*/