/* 31-07-2024 */
@import 'calendar23-booking.css';
.calendar23-month,
.calendar23-data-input{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome, Opera and Firefox */

    height: auto !important;
    line-height: 0 !important;
    cursor: pointer;
}

.calendar23-month{
    width: 300px;
    background: #fff;
    position: relative;
    height: auto;
}

.calendar23-month div {
    display: inline-block;
    width: 12.777%;
    float: left;
    text-align: center;
    margin-right: 1.5%;
    height: 40px;
    line-height: 40px;
    margin-bottom: 1.5%;
    background: #fff;
}

div.calendar23-label {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    background: #88b9ff!important;
    color: #fff;
    position: relative;
}

.calendar23-label span{
    cursor: pointer;
    display: inline-block;
    padding: 0 7px;
    /* animation: 7s linear infinite alternate calendar23-flash-border; */
}

.calendar23-label span:hover{
    color: #f1f8ff !important;
}

@keyframes calendar23-flash-border {
    from {
        color: white;
    }
    to {
        color: #dafafd;
    }
}

.calendar23-prev{
    position: absolute;
    left: 3px;
    top: 0;
}

.calendar23-prev::after{
    color: #fff;
    content: '《';
}

.calendar23-next{
    position: absolute;
    right: 3px;
    top: 0;
}

.calendar23-next::after{
    color: #fff;
    content: '》';
}

.calendar23-prev,
.calendar23-next{
    color: #fff;
    text-decoration: none;
}

.calendar23-month .calendar23-big{
    width: 31.7864%;
    height: 50px;
    line-height: 50px;
}

.calendar23-dow {
    font-weight: bold;
    margin-bottom: 10px;
}

.calendar23-day {
    color: #333;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px #eee;
    position: relative;
}

.calendar23-day.calendar23-weekend {
    background: #fafaff;
}
.calendar23-day.calendar23-today {
    background: #dafafd !important;
}
.calendar23-day.calendar23-focused {
    background: #2EB67D !important;
    color: #fff;
}

.calendar23-day:hover {
    background: #ECB22E !important;
    color: #fff;
}

.calendar23-dummy-day {
    background: #f5f5f5 !important;
    color: #ccc;
}

/**************/

.calendar23-selector{
    position: relative;
}

.calendar23-selector input{
    vertical-align: top;
}

.calendar23-calendar-wrapper{
    position: absolute;
    display: none;
    background: #fff;
    z-index: 99999;
}


input.calendar23-time[type="time"] {
    font-size: 1.2em;
    padding: 5px 10px;
    margin: 10px 0;
    border: 2px solid #007BFF;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

inpu.calendar23-timet[type="time"]:hover {
    border-color: #0056b3;
}

input.calendar23-time[type="time"]:focus {
    border-color: #003d7a;
}

a.calendar23-save{
    display: inline-block;
    margin: 10px 0;
}

.calendar23-clear-btn{
    position: absolute;
    right: 5px;
    top: -4px;
    font-size: 11px;
}

