
body {
    font-family: Tahoma, Geneva, sans-serif;
  }

  /* The Modal (background) */
  .modal {
    display: block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    background-color: #575a4a;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    width: 100%;
    margin:0px;padding:0px;
    position:absolute;
    top:50px;bottom:50px;
    background-color: red;
  }

  div.reel-icon {
    position: absolute;
    height:100%;
    top: 0px;
    bottom: 0px;
    width:32px;
    margin:0;
    padding:0;
    opacity:0.5;
    z-index: 2;
    -webkit-transform: translate3d(0,0,0);
  }

div.reel-icon:hover,
div.reel-icon:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
    opacity:0.9;
  }

  #reel-details {
    left:10px;
    background-image:url('details.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  #reel-fb {
    right:10px;
    background-image:url('facebook.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  #reel-pin {
    right:50px;
    background-image:url('pinterest.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
    display: none;
    position:absolute
    width: 100%;
    top:0px;bottom:0px;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-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 {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Caption text */
  .caption-container {
    text-align: center;
    background-color: #575a4a;
    padding: 2px 16px;
    position:absolute;
    bottom:0px;
    left: 0px;
    right: 0px;
    height:50px;
    color: white;
  }
  
  .image {
    position:absolute;
    width: 100%;
    top:0px;bottom:0px;
  }

  #myTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .popuptext {
    display: none;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 8px;
    position: absolute;
    z-index: 1;
    bottom: 60px;
    left: 10px;
    line-height: 1.4;
  }