.date-input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    outline: none;
    padding: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-calendar4' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    padding-right: 34px;
}

.aava-calendar-container {
    padding: 10px;
    border-radius: 4px;
    max-width: 320px;
    position: absolute;
    z-index: 1000;
    font-family: "Open Sans", sans-serif;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    background: #fff;
}

.aava-ht {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.aava-ht a {
    font-size: 15px;
}

.aava-hb {
    margin-bottom: 10px;
}

.aava-hb a {
    font-size: 14px;
    gap: 6px;
    align-items: center;
}

.aava-hb button.nav-btn {
    height: var(--size);
    width: var(--size);
    --size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    transition: all .3s ease-in-out;
}

.aava-hb button.nav-btn:hover {
    background: #d4d4d4;
}

.aava-calendar {
    width: 100%;
}

.aava-calendar th {
    font-size: 12px;
    text-align: center;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 35px;
}

.aava-calendar .td {
    height: 40px;
    /* width: 45px; */
    position: relative;
}

.aava-calendar td span {
    font-size: 14px;
    width: 100%;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #605f61;
}

.aava-calendar td small {
    font-size: 10px;
    color: #7e7e7e;
    bottom: -2px;
    right: 0;
    position: absolute;
}

.aava-calendar td:last-child span {
    color: #ff453c;
}

.aava-calendar td:last-child small {
    color: #ff463c8f;
}

.aava-c-bottom {
    font-size: 14px;
    padding-top: 8px;
    border-top: 1px solid #d9d9d9;
    margin-top: 8px;
}

.aava-c-bottom a {
    color: #006ec1;
}




.cust-switch {
    display: inline-block;
    position: relative;
    background-color: #006ec1;
    padding: 3px;
    border-radius: 21px
}

.cust-switch input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}

.cust-switch-text {
    display: flex;
    gap: 0;
}

.cust-switch-text>div {
    font-size: 13px;
    line-height: 11px;
    height: 22px;
    max-height: 22px;
    padding: 5px 7px;
    color: #fff;
    border-radius: 19px;
    transition: 150ms;
    background-color: transparent;
}

.cust-switch input:checked+.cust-switch-text>div:first-child,
.cust-switch input:not(:checked)+.cust-switch-text>div:last-child {
    color: #000;
    background-color: #ffffff;
}

.aava-calendar-months {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    border-right: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
}

.aava-calendar-months li {
    width: 33.33%;

    border-left: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.aava-calendar-months li a {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.aava-calendar-months li a:hover {
    background: #efefef;
}

td.today span {
    background: #a6c9ec61;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

/* td.selected-date {
    background: #006ec1;
} */
td.selected-date span {
    color: #fff;
    background: #006ec1;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

/* td.selected-date small{
    color: rgba(255, 255, 255, .5);
} */