/* =============================================================
 * BASE STYLES
 * ============================================================*/
.offerPicker {
  box-sizing: border-box;
  overflow: hidden;
  position: absolute;
  width: 260px;
  z-index: 1;
  border: 1px solid gray;
  border-radius: 7px;
}

.offerPicker--inline {
  position: relative;
}

.offerPicker__inner {
  overflow: hidden;
}

.offerPicker__month {
  border-collapse: collapse;
  text-align: center;
  width: 100%;
}

.offerPicker__month--month2 {
  display: none;
}

.offerPicker__month-day--valid {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.offerPicker__month-day--lastMonth,
.offerPicker__month-day--nextMonth {
  visibility: hidden;
}

.offerPicker__month-button {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.offerPicker__info--feedback {
  display: none;
}

.offerPicker__info--error,
.offerPicker__info--help {
  display: block;
}

.offerPicker__buttons {
  -webkit-user-select: none;
  user-select: none;
}

.offerPicker__close-button,
.offerPicker__clear-button {
  cursor: pointer;
}

.offerPicker__tooltip {
  position: absolute;
}

/* =============================================================
 * THEME
 * ============================================================*/
.offerPicker {
  background-color: #fff;
  color: #000;
  font-size: 14px;
  line-height: 14px;
}

.offerPicker__inner {
  padding: 0px;
}

.offerPicker__month {
  font-size: 12px;
}

.offerPicker__month-caption {
  border-bottom: 1px solid #dcdcdc;
  height: 2.5em;
  vertical-align: middle;
}

.offerPicker__month-name {
  font-weight: 500;
  text-align: center;
  padding: 20px 0;
}

.offerPicker__week-days {
  height: 2em;
  vertical-align: middle;
}

.offerPicker__week-name {
  font-size: 11px;
  font-weight: 400;
  background-color: #f3f4f5;
}

.offerPicker__month-day {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
  padding: 9px 7px;
  border: 1px solid transparent;
}

.offerPicker__month-day:focus {
  outline: none;
  background-color: #aa9471;
}

.offerPicker__month-day--no-checkin {
  position: relative;
}

.offerPicker__month-day--no-checkin:before {
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-bottom: 8px solid red;
  border-right: 8px solid transparent;
}

.offerPicker__month-day--no-checkout {
  position: relative;
}

.offerPicker__month-day--no-checkout:before {
  top: 0;
  content: "";
  display: block;
  right: 0;
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  border-top: 8px solid red;
  border-left: 8px solid transparent;
}

.offerPicker__month-day--no-checkin.offerPicker__month-day--no-checkout:before {
  content: none;
}

.offerPicker__month-day--invalid {
  color: #e8ebf4;
  font-style: italic;
}

.offerPicker__month-day--disabled {
  color: #e8ebf4;
  position: relative;
}

.offerPicker__month-day--disabled:after {
  content: "\00d7";
  left: 50%;
  position: absolute;
  color: red;
  font-size: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.offerPicker__month-day--no-checkin,
.offerPicker__month-day--no-checkout,
.offerPicker__month-day--day-of-week-disabled {
  background-color: rgba(232, 235, 244, 0.5);
}

.offerPicker__month-day--selected {
  background-color: rgba(170, 148, 113, 0.4);
  border-top: 5px solid #fff;
  border-bottom: 5px solid #fff;
  color: #4d4d4f;
}

.offerPicker__month-day--selected:after,
.offerPicker__month-day--selected:before {
  display: none;
}

.offerPicker__month-day--hovering {
  background-color: #aa947166;
  color: #fff;
}

.offerPicker__month-day--today {
  color: #000;
}

.offerPicker__month-day--first-day-selected,
.offerPicker__month-day--last-day-selected {
  background-color: #aa9471;
  color: #fff;
}

.offerPicker__month-day--last-day-selected:after {
  content: none;
}

.offerPicker__month-button {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-indent: -9999px;
  padding: 5px;
}

.offerPicker__month-button:after {
  background-repeat: no-repeat;
  background-position: center;
  float: left;
  text-indent: 0;
  content: "";
  width: 12px;
  height: 12px;
}

.offerPicker__month-button--prev:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid black;
  /* Adjust the color as needed */
  vertical-align: middle;
}


.offerPicker__month-button--next:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid black;
  /* Adjust the color as needed */
  vertical-align: middle;
}


.offerPicker__topbar {
  margin-bottom: 5px;
  position: relative;
  height: 80px;
  background-color: #3a3a3a99;
  display:none;
}

.offerPicker--topbar-bottom .offerPicker__topbar {
  margin-bottom: 0;
  padding-top: 20px;
  border-top: 1px solid #dcdcdc;
}

.offerPicker__info-text {
  font-size: 13px;
}

.offerPicker__info--selected {
  font-size: 11px;
  text-transform: uppercase;
  background: white;
  border-radius: 5px;
  height: 20px;
  position: absolute;
  top: 25%;
  left: 2%;
  padding: 20px;
}

.offerPicker__info--selected-label {
  color: #333;
}

.offerPicker__info-text--selected-days {
  font-size: 11px;
  font-style: normal;
}

.offerPicker__info--error {
  color: red;
  font-size: 13px;
  font-style: italic;
}

.offerPicker__info--help {
  color: #333;
  font-style: italic;
}

.offerPicker__close-button,
.offerPicker__clear-button,
.offerPicker__submit-button {
  transition-duration: 0.2s;
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #3858e9;
  border-radius: 2px;
  border: none;
  box-shadow: none;
  font-size: 10px;
  color: #ffffff;
  margin-top: 20px;
  padding: 7px 13px;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
}

.offerPicker--topbar-top .offerPicker__close-button,
.offerPicker--topbar-top .offerPicker__clear-button,
.offerPicker--topbar-top .offerPicker__submit-button {
  margin-top: 0;
}

.offerPicker__close-button:hover,
.offerPicker__clear-button:hover,
.offerPicker__submit-button:hover {
  background-color: #213fd4;
  color: #ffffff;
}

.offerPicker__close-button:disabled,
.offerPicker__close-button[disabled],
.offerPicker__clear-button:disabled,
.offerPicker__clear-button[disabled],
.offerPicker__submit-button:disabled,
.offerPicker__submit-button[disabled] {
  background-color: #c8c9d0;
  color: #ffffff;
  cursor: not-allowed;
}

.offerPicker__clear-button+.offerPicker__close-button {
  margin-left: 10px;
}

.offerPicker__clear-button+.offerPicker__submit-button {
  margin-left: 10px;
}

.offerPicker__submit-button {
  width: auto;
}

.offerPicker__tooltip {
  background-color: #aa9471;
  border-radius: 1px;
  font-size: 11px;
  margin-top: -5px;
  padding: 5px 10px;
}

.offerPicker__tooltip:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #aa9471;
  bottom: -4px;
  content: "";
  left: 50%;
  margin-left: -4px;
  position: absolute;
}

/* Bottom Bar Styles */

.offerPicker-bottom-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px;
}

.offerPicker-bottom-bar .offerPicker-legends {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.offerPicker-bottom-bar .offerPicker-legends .offerPicker-legend{
  display: flex;
  justify-content: space-around;
  column-gap: 15px;
  align-items: center;
}

.offerPicker-bottom-bar .offerPicker-legends .offerPicker-legend span{
  font-size: 14px;
  line-height: 40px;
  color: #707070;
  width: 100px;
}

.no-check-in-legend-triangle, .no-check-out-legend-triangle {
  display: inline-block;
  width: 40px;
  height: 40px;
}

.closed-date-close-mark {

}

.no-check-in-legend-triangle {
  border-top: solid 20px #aa947166;
  border-left: solid 20px #aa947166;
  border-right: solid 20px transparent;
  border-bottom: solid 20px transparent;
  border-top-left-radius: 5px;
}

.no-check-out-legend-triangle {
  border-bottom: solid 20px #aa947166;
  border-right: solid 20px #aa947166;
  border-left: solid 20px transparent;
  border-top: solid 20px transparent;
  border-bottom-right-radius: 5px;
}

td .no-check-in-legend-triangle, td .no-check-out-legend-triangle {
  display: none;
  position: absolute;
}

td .no-check-in-legend-triangle {
  top: 0;
  left: 0;
}

td .no-check-out-legend-triangle {
  bottom: 0;
  right: 0;
}

.offerPicker-bottom-bar .offerPicker-close-button {
  display: block;
  font-size: 18px;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  background-color: #aa9471;
  margin: unset;
  height: 71px;
  width:auto;
  margin:10px;
}

.offerPicker-bottom-bar .offerPicker-close-button:hover {
  background: #97805f;
  border: 1px solid transparent;
  color: #fff;
}

@media (min-width: 320px) {
  .offerPicker {
    width: 300px;
  }
}

@media (min-width: 480px) {
  .offerPicker {
    width: 460px;
    height: 520px;
    overflow: auto;
  }

  .offerPicker__months {
    overflow: hidden;
    padding: 5px;
  }

  .offerPicker__month--month1 {
    float: left;
  }

  .offerPicker__month--month2 {
    display: table;
  }

  .offerPicker__month-button--disabled {
    visibility: hidden;
  }

  .offerPicker__months {
    position: relative;
    position: relative;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 7px;
    margin-bottom: 0px;
    padding-top: 5px;
  }
}

@media (min-width: 768px) {
  .offerPicker {
    width: 710px;
  }

  .offerPicker__month--month2{
    float: right;
  }

  .offerPicker__month {
    width: 340px;
  }

  .offerPicker--topbar-has-close-button .offerPicker__info,
  .offerPicker--topbar-has-clear-button .offerPicker__info,
  .offerPicker--topbar-has-submit-button .offerPicker__info {
    max-width: 325px;
  }

  .offerPicker__buttons {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .offerPicker__months:before {
    background: #dcdcdc;
    bottom: 0;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 0;
    width: 1px;
  }
}

@media (max-width: 767px) {
  .offerPicker-bottom-bar .offerPicker-close-button{
    margin: 10px;
    padding: 10px 20px;
    height: 50px;
  }
}