.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;
	border: none;
}

.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: 0;
	z-index: 10;
	background: transparent;
}

.asd__change-month-button--previous {
	left: 0;
	padding-left: 0;
	border-color: var(--primary-ljs-highlight-color);
}

.asd__change-month-button--next {
	right: 0;
	padding-right: 0;
}

.asd__change-month-button>button {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	border: 1px solid var(--primary-ljs-highlight-color);
	border-radius: 3px;
	padding: 4px 8px;
	height: 34px;
	cursor: pointer;
}

.asd__change-month-button>button:hover {
	border: 1px solid #c4c4c4;
}

.asd__change-month-button>button>svg {
	height: 19px;
	width: 19px;
	fill: var(--primary-ljs-highlight-color);
}

.asd__days-legend {
	position: absolute;
	top: 35px;
	padding: 0;
	margin-top: 5px;
	display: flex;
	justify-content: space-between;
	font-weight: 500;
}

.asd__day-title {
	display: inline-block;
	text-align: center;
	margin-bottom: 4px;
	color: var(--primary-color);
	font-size: 0.8em;
	margin-left: -1px;
}

.asd__month-table {
	border-collapse: collapse;
	border-spacing: 0;
	background: var(--primary-background-color);
	width: 100%;
	max-width: 100%;
}

.asd__month table {
	background: inherit;
	margin-bottom: auto;
	border: none;
}

.asd__month table tr.even,
.asd__month table tr.alt,
.asd__month table tr:nth-of-type(even) {
	background: inherit;
}

.asd__day--disabled button,
.asd__day--empty button {
	background-color: var(--primary-background-color) !important;
	color: var(--primary-ljs-highlight-color);
}

.asd__day--disabled button:hover,
.asd__day--empty button:hover {
	color: var(--primary-ljs-highlight-color) !important;
}

.asd__wrapper button {
	font-family: inherit;
	margin: auto;
	background-color: inherit;
}

.asd__action-buttons button {
	outline: none;
}

.asd__wrapper button:hover:not(.asd__day--in-range button.asd__day-button, .asd__day--selected button.asd__day-button),
.asd__wrapper .button:hover:not(.asd__day--in-range button.asd__day-button, .asd__day--selected button.asd__day-button) {
	color: var(--primary-ljs-highlight-color);
	background-color: var(--gray-5);
}

.asd__wrapper button:focus,
.asd__wrapper .button:focus {
	color: inherit;
	background-color: transparent;
}

.asd__month button {
	line-height: inherit;
}

.asd__month {
	transition: all 0.3s ease;
	display: inline-block;
	padding: 0;
}

.asd__month--hidden {
	height: 275px;
	visibility: hidden;
}

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

.asd__month-name span {
	padding: 0 5px;
	font-family: var(--font-family-body);
}

.asd__day {
	line-height: 30px;
	height: 30px;
	padding: 0;
	overflow: hidden;
}

.asd__day--in-range button.asd__day-button,
.asd__day--selected button.asd__day-button {
	font-family: var(--font-family-body);
	letter-spacing: 0.02em;
}

.asd__day--enabled {
	border: 1px solid var(--primary-ljs-highlight-color);
}

.asd__day--enabled:hover {
	background-color: var(--primary-ljs-highlight-color);
}

.asd__day--disabled,
.asd__day--empty {
	opacity: 1;
	border-color: var(--primary-ljs-highlight-color) !important;
}

.asd__day--disabled button,
.asd__day--empty button {
	cursor: default;
}

.asd__day--empty {
	border: none;
}

.asd__day--disabled:hover {
	background-color: transparent;
}

.asd__day--enabled {
	background-color: var(--primary-background-color);
}

.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;
}