.nak-calendar{
	border: 1px solid #777;
	padding: 5px;
}

.nak-calendar__header {
    background-color: #62972f;
    padding: 5px 0;
    text-align: center;
    color: white;
    font-size: 12px;
    display: flex;
    justify-content: space-around;
}

.nak-calendar__select-button {
    background: none;
	border: none;
	color: #c6efa0;
	padding: 0px;
	cursor: pointer;
}

.nak-calendar__table {
    width: 100%;
    text-align: center;
}

.nak-calendar__table-header {
    font-size: 10px;
    font-weight: 600;
}

.nak-calendar__week-day {
    font-size: 12px;
}

.nak-calendar__week-day a {
    color: inherit;
    padding: 2px 3px;
    border: 1px solid transparent;
}

.nak-calendar__week-day a:hover {
    text-decoration: none;
    border: 1px solid black;
    border-radius: 30px;

}

.nak-calendar__week-day--today a {
    border: 1px solid #62972f;
    border-radius: 30px;
}

.nak-calendar__week-day--opened a {
    border: 1px solid black;
    border-radius: 30px;
}

.nak-calendar__week-day--weekend {
    color: #bf2222;
}

.nak-calendar__week-day--not-curr{
	color: #ccc;
}

.nak-calendar__week-day--weekend.nak-calendar__week-day--not-curr {
    color: #bc7c7c;
}