/* The Modal (background) */
.modall {
    display: none;
    position: fixed;
    z-index: 1040;
    padding-top: 48px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: white !important;
  }
  
  /* Modal Content */
  .modall-content {
    position: relative;
    background-color: white;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
   
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    z-index: 1030;
    top: 50px;
    right: 5%;
    color:  rgba(0,0,0,.5) !important;
    background-color: rgba(255, 215, 0, 1);
    opacity: 1;
    width: 40px;
    height: 40px;
    line-height: 1.5;
    border-radius: 50%;
    font-weight: 900;
    font-size: 24px;
    text-shadow: none;
  }
  
  .close:hover,
  .close:focus {
    background-color: rgba(255, 215, 0, 1);
    /* text-decoration: none; */
    /* cursor: pointer; */
  }
  
  /* Hide the slides by default */
  .mySlides {
    position: relative;
    overflow: hidden;
    /* height: 800px; */
  }

  .prev i,
  .next i {
    padding-right: 0 !important;

  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 150px;
    
    /* transform: translateY(-50%); */
    
    width: 40px;
    height: 40px;
    /* padding: -2px 12px; */
    padding-bottom: 2px;
    padding-left: 12px;
    
    /* color: white !important;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease; */
    
    user-select: none;
    -webkit-user-select: none;

    background-color: rgba(255, 215, 0, 1);
    border-radius: 50%;
    color:  rgba(0,0,0,.5) !important;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 5%;
    border-radius: 50%;
  }

  .prev {
    left: 5%;
    border-radius: 50%;
  }

  @media (max-width: 576px){
    .next,
    .close {
        right: 10px;
    }
    .prev {
        left: 10px;
    }
  }

  @media (min-width: 1200px){
    .next,
    .close {
        right: 10%;
    }
    .prev {
        left: 10%;
    }
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(255, 215, 0, 1);
  
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: grey;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    font-size: 1rem;
    /* background-color: #343a40; */
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Caption text */
  .caption-container {
    text-align: center;
    background-color: white;
    padding: 2px 16px;
    color: white;
  }
  
  img.demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }