/*
 * Override CSS
 * Author: Joffrey Tornea, Web Developer, ABBE/Bequik
 * 2022-2023
 */

:root {
	--main-theme-orange: #ffca00;
	--main-theme-dark-bg: #171717;
	--main-theme-light-gray: #eff1f4;
  --main-theme-dark-orange: #cc8033;
}

html, body {
  overflow-x: hidden;
}

body {
  background: #e3e3e3;
  overflow-y: auto;
}

#loaderModal {
  background: linear-gradient(45deg,rgb(255 255 255 / 50%),rgb(255 255 255 / 90%));
}

#loaderModal .modal-dialog {
  transform: translate(10px, 300px);
}

#loaderModal .modal-content {
  background: transparent;
  border: 0;
}

#loaderModal .spinner-border {
  width: 5rem;
  height: 5rem;
}

section.hero-section {
  padding: 2rem;
  margin: 2rem;
  border-radius: 10px;
  background-image: linear-gradient(45deg,rgb(159 108 0 / 50%),rgb(255 188 45 / 90%)),url(https://reception.abbe.com.ph/asset/office-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}

section.hero-section h1 {
  font-size: 5em;
  font-weight: bold;
}

.header-logo img.ab_logo {
  width: 220px;
  height: 84px;
}

.header-logo img.bq_logo {
  max-width: 150px;
}

.header-text {
  transform: translate(0px, 100px);
}

.nav-buttons a {
  color: #000;
  text-decoration: none;
  background: #c9c9c9;
  padding: 1rem;
}

.nav-buttons a:last-child {
  float: right;
}

section.home-content h1 {
  font-size: 4em;
}

section.home-content .current__activity {
  display: none;
}

section.home-content button#reception__checkin {
  border: 0;
  width: 100%;
  /* min-height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  background: linear-gradient(45deg, #cc8033, #feba12);
  flex-direction: row;
  border-radius: 10px;
  text-transform: uppercase;
}

section.home-content button#reception__checkin:hover {
  background: linear-gradient(45deg, #e5994b, #ffc330);
}

section.home-content button.reception__button i {
  font-size: 2em;
  margin: 1rem;
}

section.home-content button#reception__checkout {
  border: 0;
  width: 100%;
  /* min-height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  background: linear-gradient(45deg, #333331, #4b4b4a);
  color: #fff;
  flex-direction: row;
  border-radius: 10px;
  text-transform: uppercase;
}

section.home-content button#reception__checkout:hover {
  background: linear-gradient(45deg, #595957, #757474);
}

section.checkin-form form p {
  font-size: 0.8em;
}

section.checkin-form form input[type="checkbox"] {
  margin: 1rem;
}

section.checkin-form form button#submit {
  width: 100%;
}

section.checkin-form #checkout_screen {
  display: none;
}

section.checkin-form #checkout_screen img {
  max-width: 40%;
  margin: 1rem;
}

section.checkin-form #checkout_screen p {
  font-size: 1.8em;
}

section.checkin-form #checkout_screen a.btn {
  background: linear-gradient(45deg, #cc8033, #feba12);
  color: #fff;
  padding: 1rem 3rem;
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
}

section.checkout-section .checkout-bg-0 {
  display: none;
}

section.checkout-section .checkout-bg-0 img {
  max-width: 50%;
}

section.checkout-section .checkout-bg-0 p {
  font-weight: bold;
}

section.checkout-section #checkout-wrapper img {
  max-width: 60%;
  margin: 2rem;
}

section.checkout-section #checkout-wrapper p {
  font-size: 1.8em;
}

section.checkout-section #checkout-wrapper a.btn {
  background: linear-gradient(45deg, #cc8033, #feba12);
  color: #fff;
  padding: 1rem 3rem;
  font-weight: bold;
  font-size: 1em;
  text-transform: uppercase;
}

footer a {
  color: #6c757d;
  text-decoration: none;
}

/* Media Queries */

@media screen and (max-width: 992px) {

  section.hero-section {
    min-height: 50vh;
  }

  section.hero-section h1 {
    font-size: 3em;
  }

  section.home-content button {
    margin: 1rem;
  }

}

@media screen and (max-width: 600px) {

  section.checkin-form form .form-consent {
    flex-direction: column !important;
  }

  section.checkin-form .form-consent input[type="checkbox"] {
    height: 20px;
    width: 20px;
  }

  section.home-content button#reception__checkin {
    width: 70%;
    font-size: 1em;
  }

  section.home-content button#reception__checkout {
    width: 70%;
    font-size: 1em;
  }

  .nav-buttons a {
    font-size: 0.8em;
  }

  .header-logo img.ab_logo {
    width: 120px;
    height: 46px;
  }

  .header-logo img.bq_logo {
    max-width: 90px;
  }

  .header-text {
    transform: translate(0px, 60px);
  }

  #reception_form {
    max-width: 80%;
    margin: 0 auto;
  }

  section.checkout-section #checkout-wrapper p {
    font-size: 1em;
  }

}
