/* Paper */
.paper_container {
    width: 600px;
    margin-left: 120px;
    margin-right: 120px;
    margin-top: 80px;
    width: 80%;
    position: absolute;  
    z-index: -2;
}
paperSlides img {vertical-align: middle;}

.dotSlides{    
  position: sticky;
  text-align:center;
}

/* Next & previous buttons */
.prev ,.next{
  cursor: pointer;
  position: fixed;
  top: 50%;
  width: auto;
  color:wheat;
  font-weight: bold;
  font-size: 100px;
  transition: 0.6s ease;
  border-radius: 0 6px 6px 0;
  user-select: none;
  margin:0px;
  float: right;
  z-index: 200;
}
/* 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:red;
}

/* 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:blue;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.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}
}

/* On smaller screens, decrease text size */
/*@media only screen and (max-width: 600px) {*/
@media (max-width: 600px) {
  .prev, .next,.text {font-size: 50px}
}