.nao-month {
	--kt-cal-bg: linear-gradient(145deg, #f7fbf9 0%, #edf6f2 55%, #e9f3ee 100%);
	--kt-cal-surface: rgba(255, 255, 255, 0.86);
	--kt-cal-surface-2: rgba(255, 255, 255, 0.8);
	--kt-cal-line: rgba(66, 126, 109, 0.16);
	--kt-cal-text: #1f4f43;
	--kt-cal-muted: #3f7468;
	--kt-cal-accent: #09A764;
	--kt-cal-accent-soft: rgba(9, 167, 100, 0.2);
	--kt-cal-today: #d09b2f;
	position: relative;
	min-width: 280px;
	padding: 12px;
	overflow: hidden;
	background: transparent;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 14px 28px rgba(28, 70, 59, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
	color: var(--kt-cal-text);
}

.nao-month.no-overflow {
	overflow: hidden !important;
	transform: translateZ(0);
}

.nao-month > div + div {
	transition: opacity .5s ease;
	filter: none;
	opacity: 1;
}

.nao-month .month-head {
	position: relative;
	display: block;
	min-height: 48px;
	margin-bottom: 10px;
	padding: 4px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	box-shadow: 0 5px 16px rgba(43, 93, 80, 0.07);
}

.nao-month .month-head button,
.nao-month .month-head div,
.nao-month .month-head span {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	box-shadow: none;
	text-decoration: none;
	position: relative;
	display: block;
	top: 0;
	cursor: pointer;
	background: transparent;
	font-size: 16px;
	line-height: 16px;
}

.nao-month .month-head button {
	float: left;
	z-index: 1;
	width: 36px;
	height: 36px;
	margin: 2px 5px 0 0;
	border: 1px solid var(--kt-cal-line);
	border-radius: 4px;
	color: var(--kt-cal-text);
	background: rgba(255, 255, 255, 0.95);
	transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.nao-month .month-head button:hover {
	border-color: var(--kt-cal-accent);
	box-shadow: 0 0 0 1px var(--kt-cal-accent-soft) inset, 0 8px 14px rgba(57, 123, 106, 0.12);
	transform: translateY(-1px);
}

.nao-month .month-head button:active {
	transform: translateY(0);
}

.nao-month .month-head div {
	position: absolute;
	left: 98px;
	right: 98px;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	height: 18px;
	line-height: 18px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--kt-cal-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nao-month .month-head .ic-arrow-angle-right,
.nao-month .month-head .ic-arrow-angle-right + button {
	float: right;
}

.nao-month table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 4px;
	transform: none;
	filter: none;
	opacity: 1;
	transition: transform .5s ease, opacity .5s ease;
}

.nao-month table thead,
.nao-month table tbody {
	width: 100%;
}

.nao-month table.prev,
.nao-month table.next,
.nao-month table.come {
	position: absolute;
}

.nao-month table.prev {
	transform: translateX(-110%);
}

.nao-month table.prev + table {
	transform: translateX(110%);
}

.nao-month table.next {
	transform: translateX(110%);
}

.nao-month table.next + table {
	transform: translateX(-110%);
}

.nao-month table.come {
	transform: none;
}

.nao-month th,
.nao-month td {
	text-align: center;
	padding: 10px 1px;
	width: 40px;
	text-transform: uppercase;
	border: 1px solid rgba(66, 126, 109, 0.14);
	background: var(--kt-cal-surface-2);
	color: var(--kt-cal-muted);
}

.nao-month th {
	font-size: 11px;
	letter-spacing: .08em;
	background: rgba(255, 255, 255, 0.96);
	color: var(--kt-cal-text);
}

.nao-month td {
	cursor: pointer;
	border-radius: 4px;
	box-shadow: 0 0 0 2px transparent inset;
	transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.nao-month td:hover {
	border-color: var(--kt-cal-accent);
	box-shadow: 0 0 0 1px rgba(68, 165, 145, 0.22) inset;
	color: #1b4a3f;
}

.nao-month td.ripple {
	z-index: 99;
}

.nao-month td.today {
	box-shadow: 0 0 0 2px var(--kt-cal-today) inset;
	color: #6b5325;
	overflow: hidden;
}

.nao-month td.active {
	transition: box-shadow .3s ease .1s;
	box-shadow: 0 0 0 1px var(--kt-cal-accent) inset, 0 6px 12px rgba(68, 165, 145, 0.16);
	background: rgba(239, 250, 246, 0.98);
	color: #1f4f43;
}

.nao-month td:empty {
	cursor: auto;
	background: rgba(248, 251, 250, 0.9);
}

.nao-month td:empty::before {
	content: '•';
	opacity: .28;
	display: inline-block;
}

.nao-month .year-month {
	position: absolute;
	display: block;
	width: calc(100% - 24px);
	height: 0;
	z-index: 3;
	overflow: hidden;
	transition: height 5ms linear .5s, background .5s ease;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(9, 167, 100, 0.1) 40%, rgba(255, 255, 255, 0.6) 90%, rgba(255, 255, 255, 0) 100%);
	border: 0;
	border-radius: 12px;
	box-shadow: none;
}

.nao-month .year-month.visible {
	display: block;
	transition: height 5ms linear 0s;
	height: calc(100% - 24px);
	pointer-events: auto;
}

.nao-month .year-month.visible ~ div,
.nao-month .year-month.visible ~ table {
	filter: blur(2px);
	opacity: .18;
}

.nao-month .year-month > div:first-child {
	margin-top: -100%;
	transition: margin .5s ease;
}

.nao-month .year-month.visible > table,
.nao-month .year-month.visible > div {
	margin-top: 0%;
	transform: none;
}

.nao-month .year-month table {
	height: 70%;
	padding: 0 2px;
	box-sizing: border-box;
}

.nao-month .year-month td {
	overflow: hidden;
	width: 33.333%;
	padding: 6px 2px;
	font-size: 12px;
	letter-spacing: .02em;
	background: rgba(255, 255, 255, 0.94);
	color: var(--kt-cal-text);
}

.nao-month .year-month td.active {
	background: rgba(255, 255, 255, 0.9);
}

.nao-month .year-month > .ic {
	position: absolute;
	display: block;
	bottom: 0;
	right: 0;
	box-sizing: border-box;
	padding: 10px;
	text-align: center;
	width: 100%;
	cursor: pointer;
}

.nao-month .year-footer {
	color: #d64552;
	text-shadow: none;
}

.nao-month .year-footer:hover {
	color: #bf3340;
}

.nao-month .month-head .kt-calendar-today-btn {
	float: left;
	width: auto;
	min-width: 44px;
	height: 36px;
	padding: 0 12px;
	font-family: inherit !important;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	line-height: 34px;
	border: 1px solid rgba(66, 126, 109, 0.26);
	border-radius: 4px;
	background: transparent;
	color: #285b4f;
}

.nao-month .month-head .kt-calendar-today-btn:hover {
	border-color: var(--kt-cal-accent);
	box-shadow: 0 8px 14px rgba(57, 123, 106, 0.12);
}
