body {
  background-color: #231f20;
  position: relative;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  color: silver;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  padding-bottom: 10px;
}
footer img {
  width: 90px;
}
footer a {
  color: #231f20;
  display: flex;
}
footer a:hover {
  text-decoration: none;
  color: black;
}
footer a span {
  font-size: 10pt;
  margin-top: 8px;
  margin-right: 5px;
}

body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 35px 0;
  color: white;
}
header .title {
  padding: 15px 0 30px;
  letter-spacing: 3px;
  font-family: "Roboto Mono", monospace;
}
@media (max-width: 480px) {
  header .title {
    font-size: 14pt;
  }
}
header img {
  max-width: 350px;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  header img {
    max-width: 300px;
  }
}

main {
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #d1d2d4;
  align-items: center;
  justify-content: start;
  position: relative;
}
main .menu {
  position: relative;
  top: -30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
main .menu li {
  margin-bottom: 15px;
}
main .menu li a {
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: row;
  background-color: white;
}
main .menu li a:hover {
  text-decoration: none;
}
main .menu li a:hover .icon {
  background-color: rgb(0, 0, 0);
}
main .menu li a:hover .icon img {
  filter: contrast(0);
}
main .menu li a .icon {
  transition: 0.5s;
  padding: 12px;
  background-color: #fec30f;
}
main .menu li a .icon img {
  max-width: 64px;
}
main .menu li a .text {
  display: flex;
  width: 300px;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
}
@media (max-width: 480px) {
  main .menu li a .text {
    width: 250px;
  }
}
main .menu li a .text .small {
  color: #231f20;
  font-size: 13pt;
}
main .menu li a .text .label {
  font-size: 18pt;
  color: #adaeb0;
}
main .menu li a .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  color: silver;
  opacity: 0.9;
}

.modal-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.modal-body ul.items__select {
  max-height: 65vh;
  overflow: scroll;
  height: 65vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}
.modal-body ul.items__select li label {
  width: 100%;
  display: flex;
  border-bottom: dotted 1px silver;
  justify-content: space-between;
  padding: 10px 0;
}
.modal-body ul.items__select li label span.title {
  flex-grow: 1;
}
.modal-body ul.items__select li label span.price {
  padding-right: 10px;
}
.modal-body ul.items__professonals {
  margin-bottom: 50px;
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  grid-gap: 5px;
  gap: 5px;
}
.modal-body ul.items__professonals li {
  padding-bottom: 35px;
}
.modal-body ul.items__professonals li label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal-body ul.items__professonals li label input:checked + img {
  border: 2px solid red;
}
.modal-body ul.items__professonals li label input[type=radio] {
  display: none;
}
.modal-body ul.items__professonals li img {
  max-width: 84px;
  border-radius: 100%;
}
.modal-body ul.items__professonals li span {
  font-size: 10pt;
  font-weight: bold;
}
.modal-body ul.hours {
  max-height: 40vh;
  overflow: scroll;
  height: 40vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 50);
  margin-top: 25px;
  margin-bottom: 30px;
  display: flex;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  grid-gap: 5px;
  gap: 5px;
}
.modal-body ul.hours li {
  padding: 20px;
  margin-bottom: 10px;
  background-color: #fec30f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  height: 60px;
  width: 80%;
}
.modal-body ul.hours li label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  width: 100%;
  height: 55px;
}
.modal-body ul.hours li label img {
  transition: 0.5s;
}
.modal-body ul.hours li label input[type=radio] {
  display: none;
}
.modal-body ul.hours li span {
  margin: 0;
  padding: 0;
}
.modal-body ul.hours li span.hour {
  font-size: 12pt;
  font-weight: bold;
}
.modal-body ul.hours li span.name {
  font-size: 10pt;
  font-weight: 100;
}
.modal-body ul.hours li span.price {
  font-size: 16pt;
  font-weight: bolder;
}
.modal-body ul.links_utils li {
  margin-bottom: 15px;
}
.modal-body ul.links_utils li a {
  overflow: hidden;
  border-radius: 5px;
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: row;
  background-color: rgb(190, 190, 190);
}
.modal-body ul.links_utils li a:hover {
  text-decoration: none;
}
.modal-body ul.links_utils li a:hover .icon {
  background-color: rgb(0, 0, 0);
}
.modal-body ul.links_utils li a:hover .icon img {
  filter: contrast(0);
}
.modal-body ul.links_utils li a .icon {
  transition: 0.5s;
  padding: 12px;
  background-color: #fec30f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-body ul.links_utils li a .icon img {
  max-width: 32px;
}
.modal-body ul.links_utils li a .text {
  display: flex;
  width: 300px;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
}
@media (max-width: 480px) {
  .modal-body ul.links_utils li a .text {
    width: 250px;
  }
}
.modal-body ul.links_utils li a .text .small {
  color: #231f20;
  font-size: 10pt;
}
.modal-body ul.links_utils li a .text .label {
  font-size: 14pt;
  color: #343434;
}
.modal-body ul.links_utils li a .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px;
  color: silver;
  opacity: 0.9;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(100%);
}

#schedule_modal .carousel-inner .carousel-item {
  background-color: silver;
  padding: 12px;
  text-align: center;
}

.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 100000;
  background-color: rgba(62, 62, 62, 0.959);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
}
.loading div.spinner-border {
  width: 3rem;
  height: 3rem;
}

main {
  min-height: 60vh;
}

.modal-body ul.hours {
  max-height: 90vh !important;
}
.modal-body ul.hours li {
  width: 95%;
  padding: 8px;
  display: inline-flex;
}
.modal-body ul.hours li .promotional {
  background: green;
  padding: 3px;
  right: -5px;
  font-size: 10pt;
  color: white;
  border-radius: 6px;
  height: auto;
  display: flex;
  max-width: 100%;
  bottom: 11px;
  top: inherit;
}
.modal-body ul.hours li label {
  align-items: start;
}

.modal-body ul.hours {
  padding-top: 10px !important;
}

.modal-body ul.hours li span.name {
  font-size: 8pt;
  font-weight: 600;
}
@media (max-width: 356px) {
  .modal-body ul.hours li span.name {
    font-size: 7pt;
  }
}

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