/* SOCIAL ICONS BORDER AND HOVER -not necessary- (start) */
.socialIcons a {
  color: #781300;
  background-color: #f7f6f1;
  border: 2px solid #781300;
}

.socialIcons a:hover {
  color: #f7f6f1;
  background-color: #781300;
  border: 2px solid #781300;
}

/* Hide homepage slideshow arrows: */
.block_dd2009f269794ae994336c7738254254 .flex-direction-nav {
  display: none;

}

/* Responsive layout - the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .col-50R,
  .col-50L,
  input[type="submit"] {
    width: 100%;
    margin-top: 0;
  }
  .simple-form-container {
    width: 85%;
  }
  .grid-container {
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-columns: auto;
    padding: 10px;
  }
  .popup-thumbnail {
    width: 150px;
  }
}

.checkHereDiv {
  margin: auto;
  text-align: center;
}
/* AVAILABILITY FORM POPUP (end) */

/* The Modal (background) */
.modal-div {
  display: none;
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #f7f6f1;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.modal-content {
  background-color: #f7f6f1;
  margin: 5% auto;
  padding: 10px 0 0 0;
  border: 2px solid #781300;
  border-radius: 4px;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The close-modal Button */
.close-modal {
  color: #781300;
  float: right;
  padding: 0 10px;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

/* sitewide announcement banner */
.specials-banner {
  background-color: #f7f6f1;
  color: #781300;
  text-align: center;
  padding: 10px;
}

/* Policy tables */
table {
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #333333;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.popup-modal {
  text-align: center;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s;
}

.popup-modal-content {
  position: fixed;
  top: 0;
  background-color: #f7f6f1;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

.close-popup-modal {
  color: #f7f6f1;
  float: right;
  padding: 10px;
  font-size: 28px;
  font-weight: bold;
}

.close-popup-modal:hover,
.close-popup-modal:focus {
  color: #333;
  text-decoration: none;
  cursor: pointer;
}

.popup-modal-header {
  padding: 2px 16px;
  background-color: #781300;
  color: #f7f6f1;
}

.popup-modal-body {
  padding: 2px 16px;
}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.grid-container {
  display: grid;
  column-gap: 10px;
  row-gap: 10px;
  grid-template-columns: 50% 50%;
  padding: 10px;
}

.grid-item {
  border: 2px solid #781300;
  border-radius: 6px;
  padding: 20px;
  font-size: 20px;
  text-align: center;
}

.popup-thumbnail {
  border: 1px solid #781300;
  border-radius: 4px;
  width: 350px;
}

@media screen and (max-width: 800px) {
  .grid-container {
    display: grid;
    column-gap: 10px;
    row-gap: 10px;
    grid-template-columns: auto;
    padding: 10px;
  }
  .popup-thumbnail {
    width: 300px;
  }
}