/* body {
  padding: 0;
  background-color: black;
} */
#appointment-modal .checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 25px;
  margin-bottom: unset !important;
}
#appointment-modal .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#appointment-modal .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid transparent;
  background-color: #eee;
}
#appointment-modal .checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}
#appointment-modal .checkbox-container input:checked ~ .checkmark {
  background-color: #333333;
}
#appointment-modal .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#appointment-modal .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
#appointment-modal .checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
@-webkit-keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
#appointment-modal .loading {
  position: relative;
}
#appointment-modal .loading:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-top-color: #8dc3f2;
  -webkit-animation: spinner 0.6s linear infinite;
  animation: spinner 0.6s linear infinite;
}
#appointment-modal .loading:after {
  content: "";
  z-index: 4;
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background: rgba(255, 255, 255, 0.6);
}
#appointment-modal .select-container {
  width: 100%;
}
#appointment-modal .select-container select,
#appointment-modal .select-container option {
  cursor: pointer;
  width: 100%;
  height: fit-content;
  border: none;
  outline: none;
  font-size: 20px;
  padding: 20px;
  font-family: Futura PT;
  background-color: white;
  color: black;
  -webkit-appearance: none; /* for Safari */
  margin: 0;
  border-radius: 0;
}
#appointment-modal .select-container {
  position: relative;
  display: inline-block;
}
#appointment-modal .select-container .arrow {
  position: absolute;
  height: 100%;
  width: 25px;
  top: 0;
  right: 0;
  background-color: white;
  pointer-events: none;
}
#appointment-modal .select-container .arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  left: -10px;
}
#appointment-modal .select-container .arrow::after {
  border-color: black transparent transparent transparent;
  border-width: 8px 8px 0 8px;
  bottom: 40%;
}
#appointment-modal .btn {
  width: calc(100% - 2px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  font: normal normal normal 18px/23px Futura PT;
  letter-spacing: 2.7px;
  height: 62px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#appointment-modal .btn__main {
  color: #ffffff;
  background-color: #333333;
  border: 1px solid #333333;
  text-align: center;
}
#appointment-modal .btn__secondary {
  color: #333333;
  border: 1px solid #333333;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 30px;
}
#appointment-modal #calendar {
  width: 100%;
  height: 300px;
  background-color: #f5f5f5;
  font-family: Futura PT;
}
#appointment-modal #calendar .fc-daygrid-day-events {
  display: none;
}
#appointment-modal #calendar .fc-daygrid-day-frame {
  display: flex;
  justify-content: center;
  align-items: center;
}
#appointment-modal #calendar .fc-scrollgrid {
  border-color: transparent !important;
}
#appointment-modal #calendar .fc-scrollgrid td {
  border-color: transparent !important;
  background-color: rgba(51, 51, 51, 0);
}
#appointment-modal #calendar .fc-scrollgrid td > div {
  cursor: pointer;
}
#appointment-modal #calendar .fc-scrollgrid td > div .fc-daygrid-day-bg {
  cursor: pointer;
}
#appointment-modal #calendar .fc-scrollgrid td > div .fc-daygrid-day-bg > div {
  cursor: pointer;
}
#appointment-modal #calendar .fc-scrollgrid td > div .fc-daygrid-day-bg > div .fc-highlight {
  color: white !important;
}
#appointment-modal #calendar .fc-scrollgrid td > div .fc-daygrid-day-bg > div > div {
  width: 32px;
  height: 32px;
  margin: auto;
  cursor: pointer;
  border: 1px solid #333333;
}
#appointment-modal #calendar .fc-highlight {
  background: #EBCE84 !important; 
}
#appointment-modal #calendar .fc-scrollgrid th {
  border-color: transparent !important;
}
/* header days */
#appointment-modal #calendar .fc-scrollgrid th > div {
  overflow: hidden !important;
  height: 25px !important;
}
#appointment-modal #calendar .fc-scrollgrid th > div > div {
  overflow: hidden !important;
}
#appointment-modal #calendar .fc .fc-bg-event {
  width: 20px;
  margin: auto;
}
#appointment-modal #calendar .fc-toolbar-title {
  font: normal normal normal 18px/32px Futura PT;
  letter-spacing: 0.9px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
}
#appointment-modal #calendar .fc-button {
  background-color: unset;
  color: #333333;
  border: unset;
  font-size: 12px;
}
#appointment-modal #calendar .fc-button:focus {
  box-shadow: unset;
}
#appointment-modal #calendar .fc-scroller-liquid-absolute {
  overflow: hidden !important;
}
#appointment-modal #calendar th {
  font-weight: normal !important;
  font-size: 13px;
  color: #a4a4a4 !important;
}
#appointment-modal .step-three__section .iti {
  height: 62px;
  width: 100%;
  font: normal normal normal 20px/32px Futura PT;
  letter-spacing: 1px;
  color: #333333;
}
#appointment-modal .step-three__section--check {
  flex-direction: column;
  gap: 10px !important;
}
#appointment-modal .step-three__section--check .inputError--text {
  font: normal normal 300 14px/32px Futura PT;
  letter-spacing: 0.7px;
}

#appointment-modal .step-three__section .iti #phone-input {
  height: 62px;
  background: #f5f5f5;
  width: 100%;
  font: normal normal normal 20px/32px Futura PT;
  letter-spacing: 1px;
  color: #333333;
  outline: unset;
  border: 1px solid transparent;
}
#appointment-modal .text-input {
  height: 62px;
  background: #f5f5f5;
  width: 100%;
  font: normal normal normal 20px/32px Futura PT;
  letter-spacing: 1px;
  color: #333333;
  outline: unset;
  padding: 0 20px;
  border: 1px solid transparent;
}
#appointment-modal .text-input--textarea {
  height: unset;
  resize: none;
  text-align: left;
  padding-top: 20px;
}
#appointment-modal .inputError {
  border: 1px solid red !important;
}
#appointment-modal .inputError--text {
  color: red !important;
}

#appointment-modal .inputSelectError {
  border: 1px solid red !important;
}
#appointment-modal .close-button {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  z-index: 10;
}
#appointment-modal .close-button--phone {
  display: none;
}
/*# sourceMappingURL=modal-stylessss.css.map */