
/* is this needed if already set in main page ? */
/* * {box-sizing:border-box}*/

.slideshow-container {
/*  max-width: 100%;*/
/*  position: relative;*/
/*  margin: auto;*/
/*    text-align: center;*/
}

/* ----------- The dots/bullets/indicators ------------- */

.pageslidedots{
    text-align: center;
/*    margin-top:1.5em;*/
    padding-bottom:1em;
}

.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;
}

.activeslide, .dot:hover {
  background-color: #717171;
}


/* ----------- slide content ------------- */

.mySlides {
  display: none;
  text-align: center;

/*  white text on blue background*/
    background-color:#336799;
    color:white;

/*    Blue on white with blue border*/
/*    color:#336799;*/
/*    border:20px solid;*/

    border-radius:20px;
    padding: 25px 0px 35px 0px;
}

.new {
    display:inline-block;
    padding: 10px;
    background-color:#3D9B76;
    color:white;
    font-size: 40px;
    border-radius:20px;
    transform: rotate(-20deg);
    margin-bottom:0.5rem;
}

.mySlides.fontsize1{
    font-size: 25px;
}
.mySlides.fontsize2{
    font-size: 30px;
}
.mySlides.fontsize3{
    font-size: 35px;
}
.mySlides.fontsize4{
    font-size: 40px;
}

.mySlides.lineheight1{
    line-height: 1.1;
}
.mySlides.lineheight2{
    line-height: 1.2;
}
.mySlides.lineheight3{
    line-height: 1.3;
}
.mySlides.lineheight4{
    line-height: 1.4;
}


/* --------- slide links ------------- */
.slidelink:link {
/*    color:white;*/
/*    color:#336799;*/
    color:lightgrey;
}

.slidelink:hover {
    background-color:#3D9B76;
    color:white;
}

.slidelink:visited {
/*    color:lightgrey;*/
    color:grey;
}

.slidelink:active {
    color:#3D9B76;
    background-color:lightgrey;
}



/* -------------- Fading animation  ------------- */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1s;
  animation-name: fade;
  animation-duration: 1s;
}

@-webkit-keyframes fade {
  from {opacity: .5}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .5}
  to {opacity: 1}
}



/* -------------- Next & previous buttons  -----------------------*/
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  /*color: white;*/
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  color: white;
  background-color: rgba(0,0,0,0.8);
}

