.djcalinput {
  position: relative;
  /* display: inline-flex;
   justify-content: space-between;
   align-items: center;        */
}
.djcalinput .calval {
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 10rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: #fff;
  cursor: pointer;
  user-select: none;
}
.djcalinput .calval span {
  flex: 1;
}
.djcalinput .calval:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.djcalinput i {
  transition: all 0.1s ease-in-out;
}
.djcalinput.open i {
  transform: rotate(180deg);
}
.djcalinput.open i:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.djcalinput:hover {
  outline: none;
  border-color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.djcalinput:focus {
  outline: none;
  border: 1px solid #555;
  text-decoration: none;
}
.djcalinput.disabled {
  background: #f9f9f9;
  cursor: pointer;
}
.djcalinput.disabled:hover {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.djcalinput.long .calval {
  width: 18rem;
}

.djcal {
  background: #fff;
  position: absolute;
  opacity: 0;
  z-index: -1000;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1rem -0.5rem rgb(0, 0, 0);
  transition: opacity 0.15s ease-out 0s, z-index 0s linear 0.2s; /*close anim*/
  will-change: opacity;
  font-size: 0.85rem;
}
.djcal .calendar_view {
  position: relative;
  z-index: 10;
  background: #ffffff;
}
.djcal .calendar_view .calhead {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  /*background-color:#f8f8f8;					*/
}
.djcal .calendar_view .calhead a {
  cursor: pointer;
  color: #1a1a1a;
  display: block;
  height: 2rem;
  line-height: 2rem;
}
.djcal .calendar_view .calhead a.mnav {
  text-align: center;
  /*background: #fff;*/
  /*border-radius: 50%;*/
  /*border: 1px solid rgba(0,0,0,0.1);*/
  width: 2rem;
  text-align: center;
}
.djcal .calendar_view .calhead a.mnav:hover {
  background: rgba(0, 0, 0, 0.1);
}
.djcal .calendar_view .calhead .scontainer {
  font-size: 120%;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  user-select: none;
}
.djcal .calendar_view .calhead .scontainer a {
  user-select: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  cursor: pointer;
}
.djcal .calendar_view .calhead .scontainer a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.djcal .calendar_view .calbody {
  padding: 0.5rem;
}
.djcal .calendar_view .calbody table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 0 0.2rem;
  user-select: none;
}
.djcal .calendar_view .calbody table tr {
  user-select: none;
}
.djcal .calendar_view .calbody table th {
  font-weight: 600;
  /*padding: 0.5rem;*/
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  user-select: none;
}
.djcal .calendar_view .calbody table td {
  text-align: center;
}
.djcal .calendar_view .calbody table td.day {
  visibility: hidden;
}
.djcal .calendar_view .calbody table td.day a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 400;
  user-select: none;
  border-radius: 50%;
}
.djcal .calendar_view .calbody table td.day.vis {
  visibility: visible;
}
.djcal .calendar_view .calbody table td.day.sel a {
  background-color: #1a1a1a;
  color: #ffffff;
}
.djcal .calendar_view .calbody table td.day.today a {
  font-weight: 800;
}
.djcal .calendar_view .calbody table td.day.dis a {
  color: #bbb;
}
.djcal .calendar_view .calbody table td.day.pre a, .djcal .calendar_view .calbody table td.day.post a {
  color: #cccccc;
}
.djcal .calendar_view .calbody table td.day:not(.sel):not(.dis):hover a {
  cursor: pointer;
  background-color: #eeeeee;
}
.djcal .calendar_view .calbody .clearcal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.25rem;
}
.djcal .calendar_view .calbody .clearcal a {
  margin: 0;
}
.djcal .monthyr {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: none;
  flex-direction: column;
}
.djcal .monthyr.vis {
  display: flex;
  z-index: 99;
}
.djcal .monthyr .monthyr_head {
  font-size: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 0.5rem;
}
.djcal .monthyr .monthyr_body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.djcal .monthyr .monthyr_body .monthyr_items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  max-height: 15rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0.5rem;
  padding-top: 0.25rem;
}
.djcal .monthyr .monthyr_body .monthyr_items a {
  margin: 0.25rem;
  flex: 0 1 50%;
  max-width: calc(50% - 0.5rem);
  padding-bottom: 0.45rem;
  padding-top: 0.45rem;
}
.djcal .monthyr .monthyr_body .expander {
  flex: 1;
  height: 100%;
}
.djcal .monthyr .monthyr_foot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.djcal .monthyr .monthyr_foot a {
  margin: 0;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.djcal.slide {
  position: absolute;
}
.djcal.vis {
  opacity: 1;
  z-index: 999999999;
  transition: z-index 0s linear 0s, opacity 0.35s ease-out 0.1s; /*open anim*/
}
.djcal.small {
  font-size: 0.7rem;
  min-width: 11rem;
}
.djcal.small .calendar_view .calhead {
  padding: 0.2rem;
}
.djcal.small .calendar_view .calbody table td.day a {
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.2rem;
}
.djcal.small .calendar_view .calbody .clearcal a.todaydate {
  display: none;
}

/*# sourceMappingURL=modules-common-scss-djcal.css.map */
