.calendar {
  width: fit-content;
  height: 427px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
  /* ================= HEADER ================= */
}
.calendar .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.calendar .title h4 {
  font-size: 15px;
  margin: 0;
}
.calendar .title .arrow-control {
  border: none;
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.calendar .title .arrow-control:hover {
  background: #000000;
  color: #fff;
}
.calendar {
  /* ================= WEEK ================= */
}
.calendar .week,
.calendar .list {
  display: flex;
  flex-wrap: wrap;
}
.calendar .week .day {
  width: 14.28%;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  height: 43px;
}
.calendar {
  /* ================= DATES ================= */
}
.calendar .list .date {
  width: 14.28%;
  height: 43px;
  margin-top: 4px;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}
.calendar .list .date:hover:not(.disabled) {
  background: #6b6b6b;
  color: #fff;
  transition: 0.3s;
}
.calendar .list .date.fadeout {
  color: #ddd;
  transition: 0.3s;
}
.calendar .list .date.today {
  color: #387eff;
}
.calendar .list .date.today.active {
  color: #fff;
}
.calendar .list .date.active {
  background: #6b6b6b !important;
  color: #fff;
}
.calendar .list .date.disabled {
  color: #ccc;
  cursor: not-allowed;
}
.calendar {
  /* ================= ACTION BUTTONS ================= */
}
.calendar .calendar-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.calendar .calendar-actions button {
  width: 48%;
  padding: 6px 0;
  border-radius: 25px;
  font-size: 13px;
  cursor: pointer;
}
.calendar .calendar-actions .btn-cancel {
  background: #fff;
  border: 1px solid #6b6b6b;
  color: #6b6b6b;
}
.calendar .calendar-actions .btn-done {
  background: #6b6b6b;
  border: 1px solid #6b6b6b;
  color: #fff;
}

/* ================= OUTPUT ================= */
#selectedDate {
  font-weight: bold;
}

/* ================= MAILBOX ================= */
.mailbox {
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  height: fit-content;
  margin-bottom: 43px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.mailbox .main-content {
  display: flex;
}
.mailbox .main-content .mail-img {
  width: 57px;
  height: 57px;
}
.mailbox .main-content .mail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mailbox .main-content .mail-content .mail-head {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0 !important;
}
.mailbox .main-content .mail-content .mail-id {
  color: #618bff !important;
}

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