/************** Datepicker **************/
.datepickerContainer {
	border: 1px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    padding: 15px 0;
}

.ol-datepicker .ol-datepicker-content {
    display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
    text-align: center;
}
.ol-datepicker .ol-datepicker-head {
    display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
    font-size: 19px;
    font-weight: 700;
    width: 100%;
    padding: 0 18px;
    margin-bottom: 10px;
}
.ol-datepicker .ol-datepicker-week {
    display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
    width: 100%;
}
.ol-datepicker .ol-datepicker-body {
    display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
    width: 100%;
}
.ol-datepicker .ol-datepicker-week > div {
    width: 14.28%;
}
.ol-datepicker .ol-datepicker-body > div {
    font-weight: 700;
    width: 14.28%;
}
.ol-datepicker .ol-datepicker-selectDay {
    display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
    color: var(--white);
    text-decoration: none;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}
.ol-datepicker .ol-datepicker-today .ol-datepicker-selectDay {
    border: 1px solid var(--white);
    border-radius: 50%;
}
.ol-datepicker .ol-datepicker-rangeElem {
    position: relative;
}
.ol-datepicker .ol-datepicker-rangeElem::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
}
.ol-datepicker .ol-datepicker-range::before {
    left: 0;
    width: 100%;
}
.ol-datepicker .ol-datepicker-rangeStart::before {
    right: 0;
    width: 50%;
}
.ol-datepicker .ol-datepicker-rangeEnd::before {
    left: 0;
    width: 50%;
}
.ol-datepicker .ol-datepicker-rangeElem .ol-datepicker-selectDay {
    position: relative;
    z-index: 5;
}
.ol-datepicker .ol-datepicker-day .ol-datepicker-selectDay.ol-datepicker-selected {
    color: var(--purple);
    border-radius: 50%;
    background-color: var(--white);
}
.ol-datepicker .ol-datepicker-controls {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
    gap: 35px;
	padding-top: 12px;
}
.ol-datepicker .ol-datepicker-control::before {
	content: '';
	display: block;
	width: 26px;
	height: 17px;
    background-image: url(../images/icn_next_month.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}
.ol-datepicker .ol-datepicker-prevLine::before {
	transform: scale(-1);
}
.ol-datepicker .ol-datepicker-weekend {
    color: var(--mint_txt);
}