/* The Modal (background) */
.menu_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* The Close Button */
  .menu_modal_close {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    margin-top: -15px;
  }
  
  .menu_modal_close:hover,
  .menu_modal_close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* Modal Header */
.modal-img {
    height: 250px;
    background-color: #aaa;
    background-size: cover;
  }
  
  /* Modal Body */
  .menu_modal-body {padding: 2px 16px;}
  
  /* Modal Footer */
  .menu_modal-footer {
    padding: 2px 16px;
    background-color: #ffff;
    color: white;
    
  }
  .btn.btn-outline-secondary {
    
    color: black;
  }
  
  .btn-modal-footer {
    width: 100%;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight:500;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
    background-color: #AB3903 ;
    padding: 5px 0 8px;
    margin-bottom: 10px;
    border: none;
    box-shadow: inset 0 -3em 3em rgba(0, 0, 0, 0.1), 0 0 0 2px rgb(255, 255, 255),
    0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  }

  
  /* Modal Content */
  .menu_modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    overflow: hidden;
    border-radius: 4px;
  }
  
  /* Add Animation */
  @keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
  }

  #modal_menu_price{
    color: #1b1b1b;
    font-weight: bold;
    font-size: 20px;
  }

/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.gallerymodal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.697); /* Black w/ opacity */

}

  .gallerymodal-content {
    position: relative;
    background-color: #1b1b1b;
    margin: auto;
    padding: 0;
    max-height: 80%;
    max-width: 80%;
    overflow: hidden;
    /* display: flex;
    justify-content: center;
    align-items: center; */
  }
  /* The Close Button */
  .gallerymodal_close {
    color: #c93948;
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 35px;
    font-weight: thin;
  }
  
  .gallerymodal_close:hover,
  .gallerymodal_close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
  }

/* Next & previous buttons */
.prev,
.next {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color:#c93948;
  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(93, 11, 14, 0.5);
  color: white;
}