body {
  background: #f2f5f9;
  font: 400 14px / 18px "Poppins",
    Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Poppins UI Emoji",
    "Poppins UI Symbol";
}

.container {
  padding-right: 10%;
  padding-left: 10%;
}

.appointment-card {
  padding: 65px 25px 90px 25px;
  border: 1px solid #ecedef;
  border-radius: 10px;
  margin-top: 60px;
  background: #ffffff;
  box-shadow: 5px 20px 20px #ececec;
}

.calendar-day {
  padding: 13px;
  text-align: center;
  cursor: pointer;
  width: 12%;
  background: #f3f3f3;
  border-radius: 8px;
  font-weight: 500;
}

.calendar-day div {
  line-height: 20px;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  text-transform: inherit;
  text-align: inherit;
  box-sizing: border-box !important;
  outline: none !important;
}

.calendar-day:hover {
  background-color: #f3f3f3;
}

.selected-day {
  background-color: #f7ae46 !important;
  color: white;
  border-radius: 5px;
  font-weight: 500;
}

.time-slot {
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 5px;

  padding: 10px;
  line-height: 20px;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  text-transform: inherit;
  box-sizing: border-box !important;
  outline: none !important;
  display: block;
  font-weight: 500;

  color: #f7f7f7;
  background: #09c6ab;
}

.time-slot:hover {
  background-color: #17c863;
  color: white;
}

div#time-slots {
  margin-top: 20px;
  border-top: 1px solid #eaebee59;
  padding-top: 14px;
}

.time-slot.selected {
  background-color:#f7ae46 !important;
  color: white;
}
.time-slot.disabled {
  background: #e50f2e;
  color: #e4d9d9;
  cursor: not-allowed;
}

.calendar-day div:nth-child(1) {
  margin-bottom: 14px;
}

#prev-week,
#next-week {
  padding: 7px;
  border-radius: 8px;
  border-color: rgba(0, 0, 0, 0);
  line-height: 1.32;
  color: rgb(17, 17, 17);
  font-family: inherit;
  font-weight: normal;
  font-size: 0px;
  font-style: normal;
  background-color: rgba(0, 0, 0, 0);
  border-width: 1px;
}

#prev-week:hover,
#next-week:hover {
  border-radius: calc(7px) !important;
  background-color: rgba(17, 17, 17, 0.1) !important;
}

button:focus {
  outline: unset !important;
}

#prev-week svg,
#next-week svg {
  display: block;
  object-fit: contain;
  width: 16px;
  height: 16px;
  fill: rgb(17, 17, 17);
}

button#prev-week[disabled] svg {
  fill: #d9d9d9 !important;
}

button#prev-week[disabled] {
  cursor: not-allowed !important;
}

p#selected-date-time {
  border-bottom: 1px solid #eceef0;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  .calendar-day {
    width: 20%;
  }

  .media{
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
    margin: 0 auto;
  }
  .media-body{
    -ms-flex: unset !important;
    flex:unset !important;
    margin-top:15px;
    margin-bottom:15px;
  }
  .h5, h5{
    font-size: 15px;
  }
}

.media {
  display: flex;

  align-items: center;

  justify-content: center;
}
.media img {
  width: 200px;
}

.hide {
  display: none;
}

button.btn.dropdown-toggle.btn-light {
  font-weight: 300;
  font-size: 14px;
  color: #212529;
  text-align: left;
  border: 1px solid #eaebed;
  background: white;
}
.form-control:focus,
.btn.focus,
.btn:focus {
  outline: unset !important;
  box-shadow: unset !important;
}

#confirmed svg {
  width: 100px;
  margin: 0 auto;
  display: block;
}
input.error {
  border: 1px solid red !important;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(251 251 251 / 78%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: none;
}

.dropdown.error {
  border: 1px solid red;
}
.bs-tooltip-auto[x-placement^="top"] .arrow::before,
.bs-tooltip-top .arrow::before {
  border-top-color: #a7a7a7;
}

.tooltip-inner {
  background-color: #a7a7a7;
}
