.djdoubledate {
  user-select: none;
  display: none;
  background: #FFF;
}
.djdoubledate.vis {
  display: block;
}
.djdoubledate .dropdown {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  height: 2.5rem;
  /* width: 20rem;*/
}
.djdoubledate .dropdown:hover {
  border-color: rgba(0, 0, 0, 0.5);
}
.djdoubledate .dropdown.open {
  border-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.2rem 0.2rem 0 0;
}
.djdoubledate .dropdown.open i:last-child {
  transition: all 0.1s ease-in-out;
  transform: rotate(180deg);
}
.djdoubledate .dropdown .layout_pill {
  margin: 0 0.5rem;
}
.djdoubledate .dropdown .placeholder {
  font-weight: 300;
  color: #AAA;
}

.doubledatecontent {
  user-select: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: none;
  border-radius: 0 0.2rem 0.2rem 0.2rem;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #FFF;
}
.doubledatecontent a {
  cursor: pointer;
}
.doubledatecontent.vis {
  display: flex;
}
.doubledatecontent .presets {
  padding: 0.75rem;
}
.doubledatecontent .presets .djpillbox {
  display: flex;
  justify-content: center;
}
.doubledatecontent .presets .preset {
  text-align: center;
  margin: 0.25rem;
}
.doubledatecontent .calendars {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.doubledatecontent .calendars .control {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  /*border: 1px solid rgba(0,0,0,0.1);*/
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem;
  color: #1a1a1a;
}
.doubledatecontent .calendars .control.prev i {
  transform: translateX(-15%);
}
.doubledatecontent .calendars .control.next i {
  transform: translateX(15%);
}
.doubledatecontent .calendars .control:hover {
  background: #333;
  color: #fff;
}
.doubledatecontent .calendars .cal {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0.5rem;
  vertical-align: top;
}
.doubledatecontent .calendars .cal table {
  font-size: 0.75rem;
}
.doubledatecontent .calendars .cal table th {
  color: #000;
  font-weight: bold;
  padding: 4px;
}
.doubledatecontent .calendars .cal table th.monthname {
  text-align: center;
}
.doubledatecontent .calendars .cal table td.day {
  cursor: pointer;
  padding: 0;
  margin: 0;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
}
.doubledatecontent .calendars .cal table td.day a {
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #2196F3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}
.doubledatecontent .calendars .cal table td.day.today {
  font-weight: bold;
}
.doubledatecontent .calendars .cal table td.day.sel a {
  color: #fff;
  background: #2196F3;
}
.doubledatecontent .calendars .cal table td.day.phantom {
  cursor: default;
}
.doubledatecontent .calendars .cal table td.day.phantom a {
  color: rgba(0, 0, 0, 0.3);
}
.doubledatecontent .calendars .cal table td.day.phantom.sel a {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
}
.doubledatecontent .calendars .cal table td.day:hover:not(.phantom) a {
  /*border: 1px solid rgba(0,0,0,0.1);*/
  background: #333;
  /* color:choose-contrast-color($config_button_col);                       */
  color: #fff;
}
.doubledatecontent .calendars .cal table td.day:hover.phantom {
  cursor: default;
}
.doubledatecontent .calendars .cal table td.day.hovered a {
  border: 0; /*1px solid rgba(0,0,0,0.1);*/
  background: #2196F3;
  color: #fff;
}
.doubledatecontent .calendars .cal table td.day.dis {
  opacity: 0.3;
}
.doubledatecontent .buttons {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
}
.doubledatecontent .buttons .button {
  margin: 0;
  margin-left: 1rem;
  display: none;
}
.doubledatecontent .buttons .button.vis {
  display: block;
}
.doubledatecontent.compact {
  border-radius: 0 0 0.2rem 0.2rem;
  width: 20rem;
}
.doubledatecontent.compact .calendars {
  flex-direction: column;
  order: 2;
}
.doubledatecontent.compact .presets {
  display: none;
}
.doubledatecontent.compact .controls {
  display: flex;
  justify-content: space-between;
  order: 1;
}
.doubledatecontent.compact .controls .control {
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  /* border: 1px solid rgba(0,0,0,0.1);*/
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  margin: 0.25rem;
}
.doubledatecontent.compact .buttons {
  order: 3;
}
.doubledatecontent.vertical {
  flex-direction: row;
}
.doubledatecontent.vertical .presets .djpillbox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
}
.doubledatecontent.vertical .presets .djpillbox .layout_pill {
  text-align: center;
  margin: 0.25rem;
}
.doubledatecontent.vertical .calendars {
  flex-direction: column;
}
.doubledatecontent.vertical .control {
  transform: rotate(90deg);
}
.doubledatecontent.vertical .buttons {
  flex-direction: column;
  justify-content: flex-start;
}
.doubledatecontent.slideover {
  z-index: 20000;
  max-width: 95%;
}

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