#datepicker-box {
    width: 245px;
}

#datepicker-input {
    width: 250px;
    height: 30px;
    display: none;
    outline: none;
    border: none;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow:  0 0 50px 0 rgba(0, 0, 0, .1);

    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}


#datepicker-text {
    cursor: pointer;
    
    font-size: 20px;
    font-weight: 800;
}

.datepicker-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 7px;
}

.datepicker-arrows {
    color: #252525;
    cursor: pointer;
    border-radius: 100%;

    transition: all;
    transition-duration: 200ms;
}

.datepicker-arrows:hover {
    background-color: #25252525;
}

.datepicker-arrows:active {
    color: #359cf9;
}

.datepicker-weekday-row {
    border-bottom: 1px solid #252525;
}

.datepicker-day {
    display: inline-block;
    width: 30px !important;
    height: 30px !important;
    padding: 0;
    margin: 2px;
    cursor: pointer;
    
    color: #252525;
    text-align: center;
    line-height: 30px;
    
    transition: all;
    transition-duration: 300ms;
    transition-property: background-color, border-radius;
}

.datepicker-day:hover {
    border-radius: 100%;
    background-color: #25252525;
}

.datepicker-day:active {
    border-radius: 20%;
    background-color: #25252535;
    font-weight: 600;

    transition-duration: 150ms;
}

.datepicker-weekday {
    cursor: default;

    font-weight: 600;
    color: #252525;
    text-align: center;
    line-height: 30px;
}

.datepicker-weekday:hover {
    border-radius: 0%;
    background-color: #00000000;
}

.datepicker-day-inactive { 
    cursor: default;
    opacity: .7;
}

.datepicker-day-inactive:hover {
    border-radius: 100%;
    background-color: #ffffff00 !important;
}

.datepicker-day-selected {
    border-radius: 20%;
    background-color: #25252535;
    color: #252525;
    cursor: default;
    font-weight: 600;
}

.datepicker-day-selected:hover {
    border-radius: 20%;
    background-color: #25252535;
    font-weight: 600;
}

#datepicker-months {
    display: flex;
    width: 245px;
    height: 254px;
    align-items: center;
    justify-content: center;
}

.datepicker-hidden {
    display: none !important;
}

.datepicker-month {
    width: 80px;
    height: 80px;
    display: inline-block;
    padding: 0;

    text-align: center;
    line-height: 80px;
}

.datepicker-month {
    width: 65px;
    height: 65px;
    margin: 2px;
    display: inline-block;
    padding: 0;
    cursor: pointer;

    text-align: center;
    line-height: 65px;

    transition-property: all;
    transition-duration: 300ms;
}

.datepicker-month:hover {
    border-radius: 100%;
    background-color: #25252525;
}

.datepicker-month:active {
    border-radius: 15%;
    font-weight: 600;
    background-color: #25252535;
}

.datepicker-month-selected {
    border-radius: 20%;
    background-color: #25252535;
    border: none !important;
    color: #252525;
    cursor: pointer;
    font-weight: 600;
}

.datepicker-month-selected:hover {
    border-radius: 20%;
    background-color: #25252535;
    font-weight: 600;
}

.datepicker-month-opened {
    margin: 0;
    border-radius: 20%;
    border: 2px solid #25252535;
}

.datepicker-month-opened:hover {
    border: 2px solid #25252500;
}