@import "/css/variables.css";
@import "/css/default.css";
/*-----------------------------------*\
       *Head
      \*-----------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--fontFamily), sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
input {
  background: none;
  border: none;
  font: inherit;
}
input {
  width: 100%;
  outline: none;
}
button {
  cursor: pointer;
}
image {
  width: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--rich-black);
  overflow: hidden;
}
/* Form */
.container {
  background-color: var(--milk);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 53px;
  position: relative;
}
.head-title {
  position: absolute;
  top: 80px;
  font-weight: 500;
  font-size: 1.3rem;
  text-shadow: 3px 3px 20px var(--picton-blue), -2px 1px 30px var(--argentinian-blue);
}
.main-img {
  width: 400px;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--picton-blue), var(--argentinian-blue));
  bottom: 62%;
  right: 0;
  transform: translate(-40%, 38%);
  z-index: 1;
}
.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: var(--milk);
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}
.form {
  margin-top: 150px;
  min-height: 61vh;
  background-color: var(--white);
  width: 60%;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.select-reserve {
  width: 85px;
  height: 49px;
  background-color: var(--picton-blue);
  position: absolute;
  top: -35px;
  left: 40px;
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
  color: var(--white);
  z-index: 20;
  transition: 0.4s;
  cursor: pointer;
}
.select-inquiry {
  width: 75px;
  height: 49px;
  background-color: var(--white);
  position: absolute;
  top: 39px;
  left: 460px;
  border-radius: 10px;
  text-align: center;
  padding-top: 10px;
  color: var(--picton-blue);
  z-index: 11;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.3s;
}
.select-inquiry.select {
  top: -35px;
  background-color: var(--picton-blue);
  color: var(--white);
  box-shadow: none;
}
.select-reserve.select {
  top: 39px;
  background-color: var(--white);
  color: var(--picton-blue);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.reservation {
  background-color: var(--picton-blue);
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  position: relative;
  /* width: 580px; */
  height: 100%;
}
.reservation-icon,
.inquiry-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  filter: invert(90%) sepia(56%) saturate(0%) hue-rotate(7deg) brightness(110%) contrast(101%);
}
.sms-icon {
  margin-bottom: 25px;
  filter: invert(90%) sepia(56%) saturate(0%) hue-rotate(7deg) brightness(110%) contrast(101%);
  font-size: 3rem;
}
.sms-note {
  color: var(--white);
}
.reservation:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--picton-blue);
  transform: rotate(-45deg);
  top: 50px;
  right: -13px;
  z-index: 5;
}
form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
}
.fullName {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  gap: 7px;
}
.first-name,
.last-name {
  width: 240px;
}
.input-container {
  position: relative;
}
.input {
  border: 2px solid var(--white);
  background: none;
  padding: 0.6rem 1.2rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}
.custom-input {
  width: 486px;
}
.custom-input::-webkit-outer-spin-button,
.custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea.input {
  width: 486px;
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
  outline: none;
}
.input-container label {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}
.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}
.input-container span {
  position: absolute;
  top: 0;
  right: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}
.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--picton-blue);
  top: 50%;
  transform: translateY(-50%);
}
.input-container span:before {
  left: 50%;
}
.input-container span:after {
  right: 50%;
}
.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  right: 25px;
  font-size: 0.8rem;
}
.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}
.btn {
  padding: 0.6rem 1.3rem;
  background-color: var(--white);
  border: 2px solid var(--white);
  font-size: 1.2rem;
  color: var(--picton-blue);
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  margin: 0;
  transition: 0.3s;
  width: 486px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.btn:hover {
  background-color: transparent;
  color: var(--white);
}
.btn-click p {
  -webkit-animation: rotating 1.5s linear infinite;
  -moz-animation: rotating 1.5s linear infinite;
  -ms-animation: rotating 1.5s linear infinite;
  -o-animation: rotating 1.5s linear infinite;
  animation: rotating 1.5s linear infinite;
}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.inquiry {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.info {
  background-color: var(--white);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 1rem 1.8rem;
  position: relative;
}
.info-icon {
  width: 52px;
  height: 52px;
  filter: invert(64%) sepia(51%) saturate(6602%) hue-rotate(163deg) brightness(97%) contrast(101%);
  margin-bottom: 45px;
  margin-top: 20px;
}
.info-location {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.info p {
  font-size: 1rem;
  font-weight: 500;
}
.info p span {
  color: var(--picton-blue);
}
.info-notice-box {
  border: 2px solid var(--picton-blue);
  width: 100%;
  height: 299.25px;
  border-radius: 12px;
  padding: 10px;
  overflow-y: auto;
}
.info-notice-box p {
  width: 100%;
  height: 250px;
  text-wrap: wrap;
}
.location span {
  color: var(--picton-blue);
}
.notice-box {
  border: 2px solid var(--picton-blue);
  width: 60%;
  height: 143px;
  border-radius: 15px;
  position: relative;
}
.notice-title {
  background-color: var(--milk);
  color: var(--picton-blue);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  position: absolute;
  top: -35px;
  right: 25px;
}
.notice-box ul {
  list-style: decimal;
  position: absolute;
  top: 20px;
  right: 42px;
}
.notice-box ul li {
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
}
.none {
  display: none !important;
}
.countdown {
  font-weight: 500px;
  font-size: 1.3rem;
  color: var(--white);
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  body {
    overflow: auto;
  }
  .form {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    min-height: max-content;
  }
  .btn {
    width: 100%;
  }
  .big-circle {
    display: none;
  }
  .reservation {
    width: 90vw;
    height: max-content;
    border-radius: 0 0 10px 10px !important;
  }
  .info-icon {
    display: none;
  }
  .reservation::before {
    display: none;
  }
  .head-title {
    margin-bottom: 300px;
  }
  .inquiry,
  .info {
    width: 90vw;
    height: max-content;
  }
  .fullName {
    flex-direction: column;
    width: 100%;
    padding: 0 !important;
  }
  .input-container {
    width: 100%;
  }
  .input-container input,
  .input-container textarea {
    width: 100% !important;
    min-height: 50px;
  }
  .select-inquiry {
    right: 40px;
  }
  .info {
    padding: 40px 10px;
    border-radius: 10px 10px 0px 0px !important;
  }
  .one,
  .two {
    display: none;
  }
  .reservation-icon,
  .inquiry-icon {
    width: 34px;
  }
  label,
  p,
  input,
  span,
  .info p,
  .input-container label,
  .notice-box ul li {
    font-size: 14px;
  }
  .notice-box {
    width: 80%;
    height: min-content;
    padding: 14px;
    margin-bottom: 14px;
  }
  .main-img {
    display: none;
  }
  .notice-box ul {
    position: initial;
    width: 100%;
    padding: 14px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1500px) {
  body {
    overflow: auto;
  }
  .form {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
    min-height: max-content;
  }
  .btn {
    width: 100%;
  }
  .big-circle {
    display: none;
  }

  .reservation {
    width: 90vw;
    height: max-content;
    border-radius: 0 0 10px 10px !important;
  }

  .reservation::before {
    display: none;
  }
  .head-title {
    margin-bottom: 300px;
  }
  .inquiry,
  .info {
    width: 90vw;
    height: max-content;
  }
  .fullName {
    flex-direction: column;
    width: 100%;
    padding: 0 !important;
  }
  .first-name {
    margin-bottom: 10px;
  }
  .input-container {
    width: 100%;
  }
  .input-container input,
  .input-container textarea {
    width: 100% !important;
    min-height: 50px;
  }
  .select-inquiry {
    right: 40px;
  }
  .info {
    padding: 40px 10px;
    border-radius: 10px 10px 0px 0px !important;
  }

  .reservation-icon,
  .inquiry-icon {
    width: 34px;
  }
  label,
  p,
  input,
  span,
  .info p,
  .input-container label,
  .notice-box ul li {
    font-size: 14px;
  }
  .notice-box {
    width: 70%;
    height: min-content;
    padding: 14px;
    margin-bottom: 14px;
  }
  .main-img {
    width: 200px;
    position: absolute;
    bottom: 0px;
    left: 0;
  }
  .notice-box ul {
    position: initial;
    width: 100%;
    padding: 14px;
  }
}
