.tavo-calendar {
  text-align: center;
  font-size: 16px;

  box-shadow: 0 15px 45px rgba(52, 42, 31, 0.1);
  -webkit-box-shadow: 0 15px 45px rgba(52, 42, 31, 0.1);
  -moz-box-shadow: 0 15px 45px rgba(52, 42, 31, 0.1);

  margin-bottom: 15px;
}

.tavo-calendar__info {
  display: none;
  text-align: left;
  margin-bottom: 8px;
  font-size: 12px;
}
.tavo-calendar__info span {
  font-weight: bold;
  background-color: #f1f1f1;
}
.tavo-calendar__info:after {
  content: "";
  display: block;
  clear: both;
}

.tavo-calendar__header {
  display: flex;
  justify-content: center;
  gap: 15px;
  background: rgb(215, 190, 151);
  background: linear-gradient(
    270deg,
    rgba(215, 190, 151, 1) 0%,
    rgba(250, 232, 204, 1) 100%
  );
  border-radius: 8px 8px 0 0;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 16px 8px;
  font-family: basic-sans, sans-serif;
  align-items: center;
  text-transform: capitalize;
}

.tavo-calendar__nav {
  float: left;
  font-size: 1.125em;
  font-weight: bold;
  position: relative;
  padding: 0;
  cursor: pointer;
  fill: white;
}
.tavo-calendar__nav_prev,
.tavo-calendar__nav_next {
  text-align: left;
}
.tavo-calendar__nav_prev svg,
.tavo-calendar__nav_next svg {
  width: 16px;
  height: 16px;
}

.tavo-calendar__nav_prev .arrow,
.tavo-calendar__nav_next .arrow {
  font-size: 17px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  line-height: 1.41;
}

.tavo-calendar__month-label {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  font-family: "PT Serif", serif;
  text-transform: uppercase;
}

.tavo-calendar__code_lock {
  opacity: 0.7;
}

.tavo-calendar__code_lock:hover {
  opacity: 1;
}

.tavo-calendar__code_lock .tavo-calendar__days {
  pointer-events: none;
}

.tavo-calendar__week-names {
  display: flex;
  background-color: #f4deba;
  padding: 0 49px;
  gap: 21px;
}
.tavo-calendar__week-names::after,
.tavo-calendar__week-names::before {
  display: none;
}

.tavo-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 14px 48px 19px;
  row-gap: 19px;
  column-gap: 21px;
  justify-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
}
.tavo-calendar__days::after,
.tavo-calendar__days::before {
  display: none;
}

.tavo-calendar__reset {
  float: right;
}
.tavo-calendar__reset svg {
  height: 16px;
  width: 16px;
}

.tavo-calendar__weekday {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  color: #4e4a42;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.tavo-calendar__day {
  flex: 1;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tavo-calendar__day span {
  width: 28px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  line-height: 25px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  color: #4E4A42;
}
.tavo-calendar__day span:hover {
  color: #ffffff;
  z-index: 1;
}
.tavo-calendar__day span:hover::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: rgb(215, 190, 151);
  background: linear-gradient(
    0deg,
    rgba(215, 190, 151, 1) 0%,
    rgba(250, 232, 204, 1) 100%
  );
  z-index: -1;
}
.tavo-calendar__day_highlight span {
  color: #D6A85D !important;
}
.tavo-calendar__day_abs-today {
  /* background-color: #5aa550; */
  /* border-radius: 4px; */
}

.tavo-calendar__day_rel-future {
  color: #1c2f33;
}

.tavo-calendar__day_abs-today .tavo-calendar__day-inner {
  color: #ffffff;
  z-index: 1;
}
.tavo-calendar__day_abs-today .tavo-calendar__day-inner::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: rgb(215, 190, 151);
  background: linear-gradient(
    0deg,
    rgba(215, 190, 151, 1) 0%,
    rgba(250, 232, 204, 1) 100%
  );
  z-index: -1;
}

.tavo-calendar__day_today:hover span {
  border-radius: 50%;
}
.tavo-calendar__day_off,
.tavo-calendar__day_exp,
.tavo-calendar__day_different-month,
.tavo-calendar__day_lock {
  cursor: default;
  opacity: 0.2;
  background-color: unset;
}
.tavo-calendar__day_off day,
.tavo-calendar__day_off day:hover,
.tavo-calendar__day_exp day,
.tavo-calendar__day_exp day:hover,
.tavo-calendar__day_different-month day,
.tavo-calendar__day_different-month day:hover,
.tavo-calendar__day_lock day,
.tavo-calendar__day_lock day:hover {
  background: unset;
}
.tavo-calendar__day_off span {
  text-decoration: line-through;
}
.tavo-calendar__day_select span {
  background-color: unset;
}
.tavo-calendar__day_select span {
  /* background-color: lightblue; */
  border-radius: unset;
  /* color: #5AA550; */
}
.tavo-calendar__day_select day:hover {
  /* background-color: lightblue; */
}
.tavo-calendar__day_range-select {
  background-color: lightblue;
}
.tavo-calendar__day_select-lock {
  pointer-events: none;
  color: grey;
}
