@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/*  overflow-x:hidden; 
    -webkit-overflow-scrolling:touch;*/

.innerWrapper {
  -webkit-overflow-scrolling: touch;
}

body {
  position: absolute;
  width: 100vw;
  height: 100%;
  overflow-x: hidden;
}

:root {
  --primary: #19ebeb;
  --dark: #003366;
  --login: #19ebeb;
  --bg-blue-light: #eaf7ff;
  --headbg: #ffffff;
  --header-height: 120px;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

/*-----------navigatin--------------*/
.avail-text {
  position: relative;
  font-weight: bold;
  color: var(--dark);
}

nav {
  background: rgb(255, 255, 255);
  padding: 0 15px;
}

a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.menu,
.submenu {
  list-style-type: none;
}

.logo {
  font-size: 20px;
  /* padding: 7.5px 10px 7.5px 0; */
  position: relative;
  right: 40px;
}

.item {
  padding: 10px;
}

.item.button {
  padding: 9px 5px;
}

.item:not(.button) a:hover,
.item a:hover::after {
  color: #ccc;
}

/* Mobile menu */

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.menu li a {
  display: block;
  padding: 15px 5px;
}

.menu li.subitem a {
  padding: 15px;
}

.toggle {
  order: 1;
  font-size: 20px;
}

.item.button {
  order: 2;
}

.item {
  order: 3;
  width: 100%;
  text-align: center;
  display: none;
}

.active .item {
  display: block;
}

.button.secondary {
  /* divider between buttons and menu links */
  border-bottom: 1px #444 solid;
}

/* Submenu up from mobile screens */

.submenu {
  display: none;
}

.submenu-active .submenu {
  display: block;
}

.has-submenu i {
  font-size: 12px;
}

.has-submenu > a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f078";
  color: white;
  padding-left: 5px;
}

.subitem a {
  padding: 10px 15px;
}

.submenu-active {
  background-color: #111;
  border-radius: 3px;
}

/* Tablet menu */

@media all and (min-width: 700px) {
  .menu {
    justify-content: center;
    margin-top: 1rem;
  }

  .logo {
    flex: 1;
    position: relative;
    right: 70px;
  }

  .logo-img {
    height: 4rem;
    margin-top: -0.6rem;
    width: 150px !important;
  }

  .item.button {
    width: auto;
    order: 1;
    display: block;
  }

  .toggle {
    margin-left: 1rem;
    text-align: right;
    order: 2;
  }

  /* Button up from tablet screen */
  .menu li.button a {
    padding: 10px 15px;
    margin: 5px 0;
  }

  .button a {
    background: var(--primary);
    border-radius: 5px;
  }

  .button.secondary {
    border: 0;
  }

  .button.secondary a {
    background: var(--dark);
    color: white;
  }

  .button.secondary:hover {
    transform: scale(1.1);
  }

  .button a:hover {
    text-decoration: none;
  }

  .button:not(.secondary) a:hover {
    transform: scale(1.1);
  }
}

/* Desktop menu */

@media all and (min-width: 960px) {
  .menu {
    align-items: flex-start;
    flex-wrap: nowrap;
    background: none;
  }

  .logo {
    order: 0;
  }

  .item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
  }

  .button {
    order: 2;
  }

  .submenu-active .submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 68px;
    background: #111;
  }

  .toggle {
    display: none;
  }

  .submenu-active {
    border-radius: 0;
  }
}

/*--------------header-----------------*/

header#hero {
  /* height: auto; */
  height: calc(100% - 117px);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  background-position: initial;
  position: relative;
  align-items: center;
  /* background-color: rgba(0, 234, 234, 0.5); */
  /* z-index: -1; */
}

.white-bg-box {
  z-index: 100 !important;
}

header#hero #bg-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: red;
  z-index: -999;
  background: url(images/herobgfinal.png);
  background-size: cover;
  background-position: center;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

header#hero h1 {
  margin: 0;
  margin-bottom: 0.5vh;
  font-size: 3.6em;
  font-weight: 700;
}
header#hero h2 {
  margin-bottom: 2vh;
}
header#hero p {
  font-size: 1.2em;
}

header#hero .box {
  width: 60%;
}

.box {
  text-align: center;
}

.box p {
  margin-bottom: 2vh !important;
}
/* 
.white-bg-box {
  width: 100vw !important;
  overflow-x: hidden;
  margin-top: -5.5vw;
} */

/* .white-bg-box img {
  width: 150vw;
  margin-left: -30%;
} */

/*------------button----------*/

button {
  padding: 0.9em 1em;
  border-radius: 5px;
  font-size: 1em;
  border: none;
}

button:hover {
  transform: scale(1.1);
}

.prime-btn {
  background: var(--primary);
}

.sec-btn {
  background: var(--dark);
  color: white;
}

.outline-btn {
  background: white;
  border: 4px solid #19ebeb;
  transform: scale(0.84);
  border-left: 0px;
  margin-left: -10px;
}

.right-rad {
  border-radius: 0 10px 10px 0;
}

.left-rad {
  border-radius: 10px;
  z-index: 1;
}

.left-rad:hover {
  transform: scale(1);
}

.right-rad:hover {
  transform: scale(0.84);
}

.white-btn {
  background: white;
  color: black;
}

.btn-set {
  margin-bottom: 10px;
}

.activity-toggle-btn {
  border-radius: 10px !important;
  background: white;
  border: 4px solid #19ebeb;
  transform: scale(0.8);
  width: 147px;
}

.activity-toggle-btn:hover {
  transform: none;
}

.activity-toggle-btn.active {
  background: var(--dark);
  color: white;
  border: none;
  transform: scale(1.1);
  z-index: 2;
}

/*-----------------features--------------*/

#features h2 {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.2em;
  font-size: 3em;
  font-weight: 700;
}

#features p {
  text-align: center;
  font-size: 1em;
}

/*center diagram*/

#features {
  margin-bottom: 10em;
}

#features .top {
  display: flex;
  justify-content: center;
  margin-top: 4vw;
}

#features .middle {
  display: flex;
  justify-content: center;
  margin-top: -9vw;
  margin-bottom: -9vw;
  z-index: -300;
  position: relative;
  padding: 4rem;
}

#features .middle img {
  width: 24vw;
  height: auto;
}

#features .bottom {
  display: flex;
  justify-content: center;
}

#features .soak {
  display: flex;
  justify-content: flex-end;
}

#features .scuba {
  display: flex;
  justify-content: flex-start;
}

#features .text {
  padding: 1vw;
}

#features h5 {
  font-size: 3rem;
  color: var(--primary);
}

#features .soak h5 {
  text-align: end;
}

.features-gap {
  width: 15vw;
}

.elements {
  width: 25vw;
}

/* .elements:hover {
transform: scale(1.1);
} */

/*----------about----------------------*/

#about {
  background: #eaf7ff;
  padding-top: 3vw;
}

/* #about .image{
position: relative;
width:100vw;
overflow-x: hidden;



} */

/* #about .image img{
width: 90%;
margin-top:8vw;

} */

#about .text-box {
  flex-direction: column;
}

#about .text-box h2 {
  font-weight: 600;
  font-size: 3.5em;
  text-align: left !important;
  align-self: flex-start;
}

#about .text-box p {
  /* margin-bottom: 4vw; */
  width: 70%;
  font-size: 1em;
  line-height: 1.3em;
  align-self: flex-start;
}

.about-bot {
  background: #eaf7ff;
}

.about-bot img {
  width: 100%;
}

/*------gallery section----------------*/

#gallery {
  background: #19ebeb;
  margin-top: -5px;
}

#gallery h2 {
  font-weight: 700;
  font-size: 4em;
  text-align: center;
  margin-bottom: 1vw;
}

#gallery p {
  font-size: 1em;
  text-align: center;
  margin-bottom: 5vw;
}

#gallery video {
  width: 93%;
  margin-left: 4%;
}

#gallery img {
  width: 80%;
  margin-left: 10%;
}

#gallery .row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */

#gallery .column {
  flex: 25%;
  max-width: 33.3%;
  padding: 0 4px;
}

#gallery .column1 {
  flex: 25%;
  max-width: 33.3%;
  padding: 0 4px;
}

#gallery .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  filter: grayscale(1) brightness(0.7);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.1s linear;
}

#gallery .column img:hover {
  filter: grayscale(0);
  transform: scale(1.01);
}
.book-btn {
  height: 76px;
  width: 200px;
  font-size: 120%;
  position: relative;
  padding: 0;
}
@media screen and (max-width: 800px) {
  .book-btn {
    height: 60px;
    width: 160px;
  }
  #gallery .column {
    flex: 50%;
    max-width: 50%;
  }

  #gallery .column1 {
    flex: 50%;
    max-width: 50%;
  }
  header#hero .box {
    width: 100%;
  }
  header#hero h1 {
    font-size: 2.4rem;
    margin-top: 20px;
  }
  .hm-stead {
    font-size: 150% !important;
  }
  /* .box p {
    margin-bottom: 0;
    font-size: 1em;
  } */
  /* header#hero p {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: .5rem;
} */
  /* #hero{
    margin-top: 80px !important;
  } */
  nav ul {
    margin-bottom: 0px;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {
  header#hero {
    height: calc(100% - 80px);
  }
  #gallery img {
    width: 100%;
    margin-left: 3%;
  }

  #gallery .column {
    flex: 100%;
    max-width: 100%;
  }

  #gallery .column1 {
    flex: 100%;
    max-width: 100%;
  }

  #gallery .column img {
    filter: grayscale(0) brightness(1);
  }
}

#gallery .mason {
  margin-left: 0%;
  width: 95%;
  padding-bottom: 3vw;
}

/*-------------------open hours-----------------*/

#open-hours {
  background: #eaf7ff;
  text-align: center;
  padding-bottom: 3vw;
}

#open-hours h2 {
  padding-top: 8vw;
  padding-bottom: 1vw;
  font-weight: 700;
  font-size: 3em;
}

#open-hours h3 {
  margin-top: 4vw;
  font-size: 4em;
  color: var(--primary);
}

#open-hours hr {
  margin-top: 0.5vw;
  margin-bottom: 2vw;
  width: 40%;
  margin-left: 30%;
  height: 0.1em;
  border: 0.16em solid var(--dark);
  border-radius: 100%;
}

#open-hours h4 {
  margin-bottom: 2vw;
  margin-top: 3vw;
  font-size: 1.8em;
}

#open-hours p {
  font-size: 1.3em;
}

/*---------------contact-----------------------*/

#contact {
  background: #eaf7ff;
  display: grid;
  padding: 10vw;
}

#contact .main {
  /* place-self: center;
display: grid;
grid-template-columns: 40% 50%; */
  border-radius: 20px;
  background: url(/images/getintouch.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
}

/*left*/

#contact .left {
  padding-left: 3vw;
}

#contact .left h2 {
  font-size: 3em;
  margin-top: 7vw;
  margin-bottom: 1vw;
  font-weight: 700;
}

#contact .left .tag {
  font-size: 1em;
}

#contact .detail {
  margin-top: 3vw;
}

#contact .detail div {
  display: flex;
  margin-bottom: 1vw;
}

#contact .detail p {
  margin-top: 0.3em;
  padding: 0 2vw;
}

#contact .detail i {
  margin-right: 0.5vw;
}

#contact .social {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin-left: 2vw;
  margin-top: 1vw;
}

#contact .social i {
  background: white;
  padding: 0.9vw;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact .social i:hover {
  transform: scale(1.1);
  cursor: pointer;
  box-shadow: 0 1px 1px 1px rgba(1, 1, 0, 0.2);
}

/*right*/

#contact .fields {
  background: var(--dark);
  padding: 2vw;
  /* padding-bottom: 0.5rem; */
  margin: 3vw;
  margin-bottom: 0.3rem;
  border-radius: 20px;
  /* margin-top: -4vw; */
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
}

#contact .right .fields input,
textarea {
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  padding: 14px;
  border: none;
  box-shadow: 0 1px 1px 1px rgba(1, 1, 0, 0.2);
}

#contact .right .fields input {
  height: 40px;
}

#contact textarea {
  height: 150px;
}

#contact .agree {
  display: inline-grid;
  grid-template-columns: 1fr 5fr;
  width: 100%;
}

#contact .agree input {
  margin-left: 4vw;
  margin-top: 6px;
  cursor: pointer;
  transform: scale(2);
}

#contact .right button {
  margin-left: 3vw;
  margin-top: 1vw;
  margin-bottom: 3vw;
}

/*----------------footer-----------*/

.footer-top {
  background: #eaf7ff;
  width: 100vw;
  overflow-x: hidden;
}

footer {
  background: #19ebeb;
  /* margin-top: -21px; */
  width: 100vw;
  color: var(--dark);
}

footer h4 {
  font-weight: 700;
}

footer .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* padding: 0 32px; */
  /* margin-top: -5vw; */
  /* width: 18vw; */
  text-align: center !important;
}

footer .sub {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  /* width: 25vw; */
  border-radius: 20px;
}

footer .sub:hover {
  transform: scale(1.05);
}

.copy {
  display: flex;
  background: var(--dark);
  color: white;
  justify-content: center;
}

.copy p {
  margin-right: 10%;
  margin-top: 6px;
}

.copy i {
  /* margin-top: 4px;margin-left: 5%; */
  color: black;
  background: white;
  /* border-radius: 100%; */
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  border-radius: 50%;
}

footer .sub .sub-input input {
  height: 3em;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 70%;
}

/*-----------misc----------------*/

.mr-10 {
  margin-right: 10%;
}

.bold {
  font-weight: 600;
}

.mobile {
  display: none;
}

/*>>>>>>>>>>>>>>>>Media Queries<<<<<<<<<<<<<<<<<<<<<<<<*/

@media screen and (max-width: 600px) {
  .features-gap {
    width: 1vw;
  }

  #features h5 {
    font-size: 2rem;
  }

  #features .middle img {
    display: none;
  }

  header#hero .box {
    width: 90%;
  }

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
    width: 100vw;
    margin-top: 77px;
  }
}

@media screen and (max-width: 700px) {
  .logo .logo-img {
    width: 70px !important;
  }

  #features .middle {
    display: none;
  }

  .features-gap {
    width: 1vw;
  }

  .avail-m {
    display: block !important;
  }
}

@media screen and (max-width: 1000px) {
  /* header#hero {
    height: calc(100% - 80px);
  } */
  #features .middle img {
    width: 26vw;
    margin-top: -3vw;
    margin-bottom: -3vw;
  }
}
ul.menu {
  margin-bottom: none !important;
}
@media screen and (max-height: 500px) {
  .menu ul {
    margin-bottom: none !important;
  }
  header#hero {
    height: fit-content !important;
  }
  header#hero p {
    font-size: 1em;
  }
  /* header#hero h1{
    margin-top: 30px;
  } */
  .hm-stead {
    font-size: 144% !important;
  }
  .menu {
    margin-top: 0.4rem;
  }
  header#hero .box {
    width: 95%;
  }
  .box p {
    /* margin-bottom: .5em; */
  }
  .book-btn {
    height: 66px;
    width: 160px;
  }
  .slots-table .col {
    width: 60px !important;
  }
  #slots-table-container h3 {
    font-size: 95% !important;
  }
}
h1,
h2,
h3 {
  color: var(--dark);
}

/* ......................animations.........................*/

[data-scroll] {
  transition: all 1s;
}

.top-left[data-scroll="in"] {
  transition: 2s;
  transform: translateX(0);
  opacity: 1;
}

.top-left[data-scroll="out"] {
  transition: 2s;
  transform: translateX(-40%);
  opacity: 0;
}

.bottom-left[data-scroll="in"] {
  transition-delay: 2s;
  transition: 2s;
  transform: translateX(0);
  opacity: 1;
}

.bottom-left[data-scroll="out"] {
  transition-delay: 2s;
  transition: 2s;
  transform: translateX(-40%);
  opacity: 0;
}

.top-right[data-scroll="in"] {
  transition: 2s;
  transform: translateX(0);
  opacity: 1;
}

.top-right[data-scroll="out"] {
  transition: 2s;
  transform: translateX(40%);
  opacity: 0;
}

.bottom-right[data-scroll="in"] {
  transition-delay: 2s;
  transition: 2s;
  transform: translateX(0);
  opacity: 1;
}

.bottom-right[data-scroll="out"] {
  transition-delay: 2s;
  transition: 2s;
  transform: translateX(40%);
  opacity: 0;
}

.fmiddle[data-scroll="in"] {
  transition: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.fmiddle[data-scroll="out"] {
  transition: 0.5s;
  transform: scale(0.8);
  opacity: 0;
}

.top-anime[data-scroll="in"] {
  transition: 2s;
  transform: translateY(0);
  opacity: 1;
}

.top-anime[data-scroll="out"] {
  transition: 2s;
  transform: translateY(-40%);
  opacity: 0.5;
}

/* Available time page*/

.aqua-light-bg {
  background: #f0f0f0;
}

.aqua-dark-bg {
  background: #003366d7 !important;
  color: white !important;
  z-index: 3;
}

.aqua-dark-bg h3 {
  color: white !important;
}

header.slots .year-text,
header.slots .month-text {
  color: var(--dark);
}

header.slots .year-text i,
header.slots .month-text i {
  color: var(--primary);
}

header.slots .year-text .text {
  font-size: 250%;
}

header.slots .year-text i {
  font-size: 250%;
  cursor: pointer;
}

header.slots .month-text .text {
  font-size: 250%;
}

header.slots .month-text i {
  font-size: 250%;
  cursor: pointer;
}

@media (max-width: 959px) {
  nav {
    position: absolute;
    width: 100%;
    z-index: 99;
  }

  .web {
    margin-top: 127px;
  }

  #hero {
    margin-top: 110px;
  }
}

@media (max-width: 700px) {
  header.slots.web {
    display: none !important;
  }

  header.slots.mobile {
    display: flex !important;
  }

  main.slots {
    padding-left: 0px !important;
    padding: 0 !important;
  }
}
.swim {
  width: auto !important;
  padding-left: 3px;
  padding-right: 3px;
}
main.slots {
  padding: 0 30px;
  padding-left: 30px;
}

.aside-cell,
.header-cell,
.table-body-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #19ebeb;
}

.aside-cell {
  background-color: #22418f !important;
  height: 35px;
  border-right: none;
}

.aqua-light-bg .table-body-cell {
  border-right: 1px solid transparent;
}

.aside-cell h3 {
  color: white !important;
}

header.web.slots {
  padding-right: 10px !important;
  padding-left: 30px;
}

div.top-bar {
  height: 40px;
  background-color: #003366 !important;
  max-width: 1710px;
}

div.top-bar .date-range-box {
  display: flex;
  align-items: center;
}

div.top-bar .date-range-box .col-auto {
  padding: 0 10px;
}

div.top-bar .date-range-box #date-range-text {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
}

div.top-bar .date-range-box .right-arrow,
div.top-bar .date-range-box .left-arrow {
  cursor: pointer;
}

div.top-bar .monthYearSelectBox {
  display: flex;
  align-items: center;
}

div.top-bar #monthYearSelect {
  width: 220px;
  /*height: 55px;*/
  background: #ffffff;
  border-radius: 5px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 33px;
  color: #000000;
}

div.top-bar #monthYearSelect:focus {
  outline: none;
}

div.top-bar .toggle-box {
  display: flex;
  align-items: center;
}

div.top-bar .toggle-container {
  display: flex;
  flex-direction: row;
  width: 311.63px;
  /* height: 55.5px; */
  background-color: white;
  border-radius: 5px;
}

div.top-bar .toggle-container .toggle-btn {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 29px;
  display: flex;
  align-items: center;
  text-align: center;
  font-feature-settings: "tnum" on, "lnum" on;
  color: #003366;
}

div.top-bar .toggle-container .toggle-btn.swim {
  height: 100%;
  width: 220.69px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

div.top-bar .toggle-container .toggle-btn.dive {
  height: 100%;
  width: calc(100% - 220.69px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

div.top-bar .toggle-container .toggle-btn.active {
  background: #00eaea;
}

header.slots.mobile .toggle-box {
  display: flex;
  align-items: center;
  justify-content: left;
}

header.slots.mobile .toggle-container {
  display: flex;
  flex-direction: row;

  height: 2rem;
  background-color: #c4c4c4;
  border-radius: 5px;
}

header.slots.mobile .toggle-container .toggle-btn {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  display: flex;
  align-items: center;
  text-align: center;
  font-feature-settings: "tnum" on, "lnum" on;
  color: #003366;
}

header.slots.mobile .toggle-container .toggle-btn.swim {
  height: 100%;
  padding-left: 7px;
  padding-right: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

header.slots.mobile .toggle-container .toggle-btn.dive {
  height: 100%;
  width: calc(100% - 220.69px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

header.slots.mobile .toggle-container .toggle-btn.active {
  background: #003366;
  color: white;
}
.mobile {
  margin-top: 95px;
}

header.slots.mobile #monthYearSelectMobile {
  width: 120px;
  height: 2rem;
  background: #ffffff;
  border-radius: 5px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;

  line-height: 33px;
  color: #000000;
  text-align: center;
}

header.slots.mobile #monthYearSelectMobile:focus {
  outline: none;
}

header.slots.mobile .date-range-box .date-range-text-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 220px;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
}
#th-date {
  position: sticky;
  top: 0px;
  z-index: 19;
}
#header-row {
  width: 1710px;
}
#header-row h3 {
  font-size: 85%;
}
#header-row .col {
  flex: none;
  width: 55px;
}
.header-cell {
  position: sticky;
  /* position: wabsolute; */
  top: 0px;
  height: 35px;
  background-color: #00eaea !important;
}

.sticky-col {
  display: flex;
  flex-direction: column;
  z-index: 4;
}

.slots-table > div.row {
  height: 35px;
  width: 1710px !important;
}

.slots-table {
  /* width: fit-content !important; */

  overflow-x: scroll;
}
#date-row {
  overflow-x: scroll;
}
#date-row::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#date-row {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
#slots-table-container {
  /* width: 100vw;
    overflow-y: scroll; */
  padding: 0 !important;
  height: fit-content !important;
  max-width: 1710px;
}

main.slots {
  width: 100vw;
  /* height: 577px; */
  position: relative;
  height: calc(100vh - 60px) !important;
  max-height: 665px;
  overflow-y: scroll;
}

.slots-table h3 {
  font-size: 110%;
}

#slots-table-container h3 {
  font-size: 95%;
  font-weight: 700 !important;
}

.arrows-box i {
  font-size: 200%;
  cursor: pointer;
  color: #003366;
}

.table-body-cell h3 {
  font-weight: bold !important;
}

.pay-btn {
  border: solid 5px var(--primary);
  height: 140px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: #f0f0f0;
  font-weight: bolder;
}

.pay-btn h3 {
  font-weight: bold;
  font-size: 230%;
}

.pay-btn img {
  width: 30%;
}

h3 {
  margin-bottom: 0 !important;
}

.header-spacer {
  background-color: #22418f !important;
  position: -webkit-sticky;
  left: -12px;
  z-index: 9;
}

.header-spacer-cover {
  height: 40px;
  width: 70px;
  background: #22418f;
  position: absolute;
  top: 0%;
  left: 0;
  z-index: 999;
  display: none;
}
.table-body-cell:hover {
  font-size: 130%;
  font-weight: 500;
  background: #00eaea;
}
.hm-stead {
  font-size: 244%;
}
@media only screen and (max-width: 575.8px) {
  .hm-stead {
    font-size: 130%;
  }
  header#hero h1 {
    font-size: 2rem;
    font-weight: 700;
  }
  header#hero p {
    font-size: 1.1em;
  }
  #hero {
    margin-top: 79px;
  }

  .modal-content {
    font-size: 0.9rem;
  }

  .modal-content h5 {
    font-size: 1.05rem !important;
  }

  .mobile {
    margin-top: 80px;
  }

  main {
    padding-bottom: 3rem !important;
  }

  .aside-cell {
    background-color: #22418f !important;
    z-index: 1;
  }

  main#home {
    overflow-x: hidden;
    width: 100vw;
  }

  header.slots.mobile .date-range-box .date-range-text-container {
    border: 1px solid black;
    border-radius: 5px;
    width: fit-content !important;
    padding: 5px;
  }

  header.slots.mobile #monthYearSelectMobile {
    text-align: center;
  }

  header.slots.mobile .toggle-container {
    width: auto;
    height: 1.8rem;
  }

  .slots-table {
    padding-bottom: 3rem;
    -webkit-overflow-scrolling: touch;
  }

  header.slots.mobile #monthYearSelectMobile {
    height: 1.8rem;
  }

  main.slots {
    padding-left: 0px !important;
    padding: 0 !important;
  }

  ul {
    margin-bottom: 0;
  }

  .slots-table > div.row {
    width: 1710px !important;
  }

  b {
    font-size: 1.2rem;
  }
}

b {
  font-size: 1.4rem;
  font-weight: 400 !important;
  color: black !important;
}

.header-spacer {
  height: 100% !important;
  min-width: 71px;
}

#monthYearSelect {
  text-align: center;
}

.slots-table .col {
  flex: none;
  width: 55px !important;
}

.aside-cell {
  min-width: 70px;
}

.hvr:hover {
  background: #00eaea4b !important;
}

.avail-m {
  display: none;
}

.sw-icon {
  transform: scaleX(-1);
}

.text-dark-red {
  color: #a30010;
}

.text-dark-green {
  color: #0e4e30;
}

/* #0e4e30  dark green color */
/* #a30010  dark red color*/
.ar {
  height: 1.2rem;
  padding: 0;
  background: none;
  color: white;
  font-size: 120%;
}
#th-date {
  max-width: 1710px;
}

/* people popup styles */
.peopleAddButton {
  font-size: 200%;
  cursor: pointer;
}
.peopleDeleteButton {
  font-size: 150%;
  cursor: pointer;
}
.modal-footer {
  border: none;
}


main.faqs {
  background-color: #ebffff;
}

main.pricing{
  padding: 10px;
  background-color: #ebffff;

}

@media all and (max-width: 960px) {
  main.pricing{
    margin-top: 119px;
  }
}
@media (max-width: 700px) {
  main.pricing{
    margin-top: 80px;
  }
}
#loader {
  position: absolute;
  z-index: 999;
  height: 100%;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  padding: 10px;
  padding-top: 50px;
}
#loader img{
  max-width: 300px;
  width: 100%;
}
#loader .loader-text{
  font-size: 200%;
  font-weight: 700;
  color: #003366;
}