
/* Hide the images by default */
.mySlides {

  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor_1 {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev_1,
  .next_1 {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.8);

  }
  
  /* Position the "next button" to the right */
  .next_1 {
    right: 31%;
    border-radius: 3px 0 0 3px;
  }
  
  @media only screen and (max-width: 760px){
    .next_1{
        right: 8%;
    }
}

  
  /* Number text (1/3 etc) */
  .numbertext_1 {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  
  .row_1:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column_1 {
    float: top;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumbnail images */
  .demo_1 {
    opacity: 0.6;
  }
  
  .active,
  .demo_1:hover {
    opacity: 1;
  }