.content .dr-niro {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFF;
  border-radius: 10px 0 0 10px;
}
@media only screen and (max-width: 720px) {
  .content .dr-niro {
    height: 15vh;
    flex-direction: row;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .dr-niro {
    height: 15vh;
    flex-direction: row;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .dr-niro {
    font-size: 1.25rem;
  }
}
.content .dr-niro .photo-container {
  display: grid;
  align-items: start;
  height: fit-content;
  border-radius: 20px;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .dr-niro .photo-container {
    height: inherit;
  }
}
@media only screen and (max-width: 720px) {
  .content .dr-niro .photo-container {
    height: inherit;
  }
}
.content .dr-niro .photo-container img {
  width: 100%;
  border-radius: 10px 0 0 0;
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .dr-niro .photo-container img {
    width: auto;
    height: inherit;
    border-radius: 10px 0 0 10px;
  }
}
@media only screen and (max-width: 720px) {
  .content .dr-niro .photo-container img {
    width: auto;
    height: inherit;
    border-radius: 10px 0 0 10px;
  }
}
.content .dr-niro .note {
  display: grid;
  grid-template-columns: auto;
  padding: 1rem;
  align-self: start;
}
@media only screen and (max-width: 720px) {
  .content .dr-niro .note {
    padding: 0.25rem 0.5rem;
    grid-column: 1;
  }
}
.content .dr-niro .note h2 {
  font-family: "Titillium Web";
  color: #2C3E50;
  -webkit-text-fill-color: #2C3E50;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.content .dr-niro .note span {
  display: block;
  font-family: Raleway;
  font-weight: 300;
  color: #6A6A6A;
  -webkit-text-fill-color: #6A6A6A;
  font-size: 1.0625rem;
  text-align: left;
}
@media only screen and (max-width: 720px) {
  .content .dr-niro .note span {
    font-size: 1.125rem;
  }
}

.content {
  margin: 2rem 0;
  animation: fadein 1500ms;
  display: grid;
  grid-template-columns: 20vw auto;
  width: 80vw;
  border-radius: 20px;
  margin: 2rem 0;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.25));
  margin-left: auto;
  margin-right: auto;
  font-family: "Raleway";
}
.content .logo-consultorio {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 1;
  display: none;
}
@media only screen and (max-width: 720px) {
  .content .logo-consultorio {
    display: block;
  }
}
.content .logo-consultorio img.logo-mobile {
  width: 8rem;
  height: 3.41rem;
  display: block;
}
@media only screen and (max-width: 720px) {
  .content {
    grid-template-columns: auto;
    padding: 5rem 0.5rem;
    width: 98%;
    margin: 0 auto;
    grid-row-gap: 1rem;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content {
    width: 95vw;
    grid-template-columns: auto;
    grid-column-gap: 1rem;
    height: auto;
    max-height: 70vh;
    grid-row-gap: 1rem;
  }
}
.content .button button {
  border: none;
  background: #2C3E50;
  padding: 1rem;
  color: #FFF;
  font-family: Raleway;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 10px;
}
.content .button:hover {
  cursor: pointer;
}
.content .result-message {
  width: 80vw;
  border-radius: 10px;
  padding: 2rem;
  display: grid;
  grid-template-columns: auto;
  margin: 0 auto;
  grid-row-gap: 1rem;
  background: rgba(47, 188, 218, 0.15);
  text-align: center;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.25));
}
.content .result-message p {
  font-family: "Titillium Web";
  font-size: 1.25rem;
  display: block;
  margin: 1rem 0;
  color: #2C3E50;
  -webkit-text-fill-color: #2C3E50;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer {
  background: rgba(255, 255, 255, 0);
}

.content .appointment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 3rem;
  padding: 0.5rem 2rem;
  border-radius: 0 10px 10px 0;
  align-items: center;
  background: rgba(47, 188, 218, 0.15);
}
@media only screen and (max-width: 720px) {
  .content .appointment {
    padding: 1rem 2rem;
    grid-template-columns: auto;
    width: 100%;
    grid-row-gap: 0.8rem;
    border-radius: 10px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .appointment {
    padding: 1rem 2rem;
    border-radius: 10px;
    grid-row-gap: 1rem;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .appointment {
    grid-column-gap: 1.5rem;
  }
}
.content .appointment div.form-input.new-line {
  grid-column: 1;
}
.content .appointment label {
  font-weight: bold;
  color: #2C3E50;
  -webkit-text-fill-color: #2C3E50;
  margin-bottom: 0.5rem;
  grid-column: 1/span 2;
  display: block;
}
.content .appointment label.hidden {
  color: #5F5D9E;
}
.content .appointment select.form-input,
.content .appointment input.form-input,
.content .appointment textarea.form-input {
  padding-bottom: 0.2rem;
  font-size: 1.125rem;
}
.content .appointment select.form-input.size-1,
.content .appointment input.form-input.size-1,
.content .appointment textarea.form-input.size-1 {
  width: 9rem;
}
.content .appointment select.form-input.size-1-5,
.content .appointment input.form-input.size-1-5,
.content .appointment textarea.form-input.size-1-5 {
  width: 14rem;
}
.content .appointment select.form-input.size-2,
.content .appointment input.form-input.size-2,
.content .appointment textarea.form-input.size-2 {
  width: 20rem;
}
.content .appointment select.form-input.size-4,
.content .appointment input.form-input.size-4,
.content .appointment textarea.form-input.size-4 {
  width: 43rem;
}
.content .appointment textarea {
  resize: none;
  padding: 0.5rem;
  border-radius: 10px;
  border: none;
  outline: none;
  width: 87%;
}
@media only screen and (min-width: 1024px) and (max-width: 1440px) {
  .content .appointment textarea {
    width: 97%;
  }
}
.content .appointment select {
  color: #6A6A6A;
  -webkit-text-fill-color: #6A6A6A;
  font-family: Questrial;
  font-size: 1rem;
}
.content .appointment input.form-input {
  outline: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #FFF;
  background: #FFF;
  box-shadow: none;
  font-family: Questrial;
  color: #6A6A6A;
  -webkit-text-fill-color: #6A6A6A;
  text-align: center;
}
.content .appointment input.form-input::placeholder {
  color: #929496;
  font-weight: 400;
  font-size: 1rem;
  font-family: Questrial;
}
.content .appointment .document {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 720px) {
  .content .appointment .document {
    grid-template-columns: auto;
  }
}
@media only screen and (max-width: 720px) {
  .content .appointment .document label {
    grid-column: 1;
    grid-row: 1;
  }
  .content .appointment .document select.IDType {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0.8rem;
  }
  .content .appointment .document select.IDType.size-1 {
    width: 20rem;
  }
  .content .appointment .document input.IDNumber {
    grid-column: 1;
    grid-row: 3;
  }
  .content .appointment .document input.IDNumber.size-1 {
    width: 20rem;
  }
}
.content .appointment .comments {
  grid-column: 1/span 2;
}
@media only screen and (max-width: 720px) {
  .content .appointment .comments {
    display: none;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1024px) {
  .content .appointment .comments {
    display: none;
  }
}
.content .appointment div.busy-day {
  display: none;
  align-self: end;
  align-items: end;
}
.content .appointment div.busy-day span {
  display: block;
  font-weight: bold;
  color: #FF2B4B;
  -webkit-text-fill-color: #FF2B4B;
}
.content .appointment div.busy-day.visible {
  display: block;
}
.content .appointment .button {
  box-shadow: 5px 5px 116px -29px rgba(0, 0, 0, 0.75);
}
.content .appointment .button button {
  border: none;
  background: #2C3E50;
  padding: 0.5rem;
  color: #FFF;
  font-family: Raleway;
  font-size: 1.125rem;
  font-weight: bold;
  border-radius: 10px;
}
.content .appointment .button:hover {
  cursor: pointer;
}

.content .appointment .time-picker {
  grid-column: 1/span 2;
  display: grid;
  grid-template-columns: repeat(auto-fill, 4rem);
  grid-column-gap: 0.5rem;
}
@media only screen and (max-width: 720px) {
  .content .appointment .time-picker {
    grid-template-columns: repeat(auto-fill, 3rem);
    grid-column: 1;
  }
}
.content .appointment .time-picker .timeslot-container label .timeslot {
  display: grid;
  padding: 0.25rem;
  border-radius: 10px;
  align-items: center;
  grid-template-columns: auto auto;
}
.content .appointment .time-picker .timeslot-container label .timeslot.free {
  background: #2C3E50;
}
.content .appointment .time-picker .timeslot-container label .timeslot.free:hover {
  cursor: pointer;
}
.content .appointment .time-picker .timeslot-container label .timeslot.busy {
  background: #AAAAAA;
}
.content .appointment .time-picker .timeslot-container label .timeslot span {
  font-family: "Roboto";
  display: block;
  font-size: 1.125rem;
  color: #FFF;
  -webkit-text-fill-color: #FFF;
}
.content .appointment .time-picker .timeslot-container label .timeslot span.h {
  grid-column: 1;
  grid-row: 1/span 2;
  font-size: 2rem;
}
.content .appointment .time-picker .timeslot-container label .timeslot span.i {
  grid-column: 2;
  grid-row: 1;
}
.content .appointment .time-picker .timeslot-container label .timeslot span.i {
  grid-column: 2;
  grid-row: 2;
}
.content .appointment .time-picker .timeslot-container input.check-timeslot {
  display: none;
}
.content .appointment .time-picker .timeslot-container input.check-timeslot:checked + label .timeslot {
  background: #05C1D1;
}
.content .appointment .time-picker span.loading-timeslot-message {
  display: block;
  color: #FFF;
  -webkit-text-fill-color: #FFF;
  font-weight: bold;
  position: absolute;
  visibility: hidden;
}
.content .appointment .time-picker span.loading-timeslot-message.visible {
  visibility: visible;
}

/*# sourceMappingURL=appointments.css.map */
