/* Specific stylesheet for front slideshow*/

* {box-sizing: border-box;}
.slideshow-container, .dot-holder {user-select: none;
    -webkit-user-select: none;}
.slideshow-container {
    max-width: 700px;
    position: relative;
    margin: 0px; background-image: url(img/flash.png);
}
.dot-holder {text-align: center;}

.mySlides {
    display: none;
    height: auto;
    border: 1px solid black;
    background: black;    
}
.mySlides img {margin-bottom: -5px;} /* OBS - skal slås fra og laves om til bug fix for ældre browsere !!!!!! */

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    font-size: 25px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0;
    /*text-shadow: 1px 1px 2px black;*/
}

.next {
    right: 0px; /* originally -50px */
    border-radius: 3px 3px 3px 3px
}

.prev {
    left: 0px; /* originally -50px */
    border-radius: 3px 3px 3px 3px
}

.prev:hover, .next:hover {
    color: white;
    background-color: rgba(0, 0, 0, 0.8)
}

.text {
    font-family: Arial;
    color: #f2f2f2;
    font-size: 13px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 10px 2px 5px 2px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color .6s ease-in-out; /*ease*/
    box-shadow: -1px -1px 1px grey;
}

.active, .dot:hover {
    background-color: brown; height: 11px;
    width: 11px; box-shadow: 0px 0px 0px black; margin: 10px 2px 5px 1px; /* margin to balance removed box-shadow */
}
/* Fading animation ---------------------------------------------------*/
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}