/**
 * rome - Customizable date (and time) picker. Opt-in UI, no jQuery!
 * @version v2.1.22
 * @link https://github.com/bevacqua/rome
 * @license MIT
 */
.rd-container {
  width: 100%;
  display: none;
  /*border: 1px solid #333;*/
  background-color: var(--color_3);
  padding: 30px;
  text-align: center;
  border-radius: 30px;
}

.rd-container-attachment {
  position: absolute;
}

.rd-month {
  display: inline-block;
  margin-right: 25px;
}

.rd-month:last-child {
  margin-right: 0;
}

.rd-back,
.rd-next {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0;
}

.rd-back[disabled],
.rd-next[disabled] {
  cursor: default;
}

.rd-back {
  float: left;
  margin-left: 10px;
}

.rd-next {
  float: right;
  margin-right: 10px;
}

.rd-back:before {
  display: block;
  content: '\2190';
}

.rd-next:before {
  display: block;
  content: '\2192';
}

.rd-day-body {
  cursor: pointer;
  text-align: center;
  /* new */
  line-height: 0;
  width: 50px !important;
  height: 50px !important;
}

/* .rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: #f67280;
  color: #fff;
  border-radius: 50%;
} */

.rd-day-prev-month,
.rd-day-next-month {
  /* color: red;
  text-decoration: line-through; */
}

.rd-day-disabled {
  cursor: default;
  color: red;
  text-decoration: line-through;
}

.rd-time {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  min-width: 80px;
}

.rd-time-list {
  display: none;
  position: absolute;
  overflow-y: scroll;
  max-height: 160px;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #333;
}

.rd-time-selected {
  padding: 5px;
}

.rd-time-option {
  padding: 5px;
}

.rd-day-concealed {
  visibility: hidden;
}

.rd-days {
  margin-top: 20px;
}

@media screen and (max-width: 576px) {
  .rd-day-body {
    height: 40px !important;
  }
}