.asd__fade-enter-active,
.asd__fade-leave-active {
  transition: all 0.2s ease; }

.asd__fade-enter,
.asd__fade-leave-active {
  opacity: 0; }

.asd__list-complete-enter,
.asd__list-complete-leave-to {
  opacity: 0;
  transform: translateY(30px); }

.asd__list-complete-leave-active {
  position: absolute;
  visibility: hidden; }

*,
*:after,
*:before {
  box-sizing: border-box; }

.datepicker-trigger {
  position: relative;
  overflow: visible; }

.asd__wrapper {
  border: 1px solid rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
  background-color: white; }
  .asd__wrapper--full-screen {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: none;
    z-index: 100; }

.asd__inner-wrapper {
  transition: all 0.3s ease;
  position: relative; }

.asd__datepicker-header {
  position: relative; }

.asd__change-month-button {
  position: absolute;
  top: 12px;
  z-index: 10;
  background: white; }
  .asd__change-month-button--previous {
    left: 10px;
    padding-left: 15px; }
  .asd__change-month-button--next {
    right: 10px;
    padding-right: 15px; }
  .asd__change-month-button > button {
    background-color: white;
    border: 1px solid #e4e7e7;
    border-radius: 3px;
    padding: 4px 8px;
    cursor: pointer; }
    .asd__change-month-button > button:hover {
      border: 1px solid #c4c4c4; }
    .asd__change-month-button > button > svg {
      height: 19px;
      width: 19px;
      fill: #82888a; }

.asd__days-legend {
  position: absolute;
  top: 50px;
  left: 10px;
  padding: 0 10px; }

.asd__day-title {
  display: inline-block;
  width: 14.28571%;
  text-align: center;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.8em;
  margin-left: -1px; }

.asd__month-table {
  border-collapse: collapse;
  border-spacing: 0;
  background: white;
  width: 100%;
  max-width: 100%; }

.asd__month {
  transition: all 0.3s ease;
  display: inline-block;
  padding: 15px; }
  .asd__month--hidden {
    height: 275px;
    visibility: hidden; }

.asd__month-name {
  font-size: 1.3em;
  text-align: center;
  margin: 0 0 30px;
  line-height: 1.4em;
  font-weight: bold; }

.asd__day {
  line-height: 38px;
  height: 38px;
  padding: 0;
  overflow: hidden; }
  .asd__day--enabled {
    border: 1px solid #e4e7e7; }
    .asd__day--enabled:hover {
      background-color: #e4e7e7; }
  .asd__day--disabled, .asd__day--empty {
    opacity: 0.5; }
    .asd__day--disabled button, .asd__day--empty button {
      cursor: default; }
  .asd__day--empty {
    border: none; }
  .asd__day--disabled:hover {
    background-color: transparent; }

.asd__day-button {
  background: transparent;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  color: inherit;
  text-align: center;
  user-select: none;
  font-size: 15px;
  font-weight: inherit;
  padding: 0; }

.asd__action-buttons {
  min-height: 50px;
  padding-top: 10px; }
  .asd__action-buttons button {
    display: block;
    position: relative;
    background: transparent;
    border: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer; }
    .asd__action-buttons button:hover {
      text-decoration: underline; }
    .asd__action-buttons button:nth-child(1) {
      float: left;
      left: 15px; }
    .asd__action-buttons button:nth-child(2) {
      float: right;
      right: 15px; }

.asd__mobile-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 15px 15px 15px 15px !important;
  text-align: center;
  height: 50px; }
  .asd__mobile-header h3 {
    font-size: 20px;
    margin: 0; }

.asd__mobile-only {
  display: none; }
  @media (max-width: 600px) {
    .asd__mobile-only {
      display: block; } }

.asd__mobile-close {
  position: absolute;
  top: 7px;
  right: 5px;
  padding: 5px;
  z-index: 100;
  cursor: pointer; }
  .asd__mobile-close__icon {
    position: relative;
    font-size: 1.6em;
    font-weight: bold;
    padding: 0; }
