.air-datepicker-cell[class~="red"].red::before {
    display: block;
    position: absolute;
    content: '';
    width: .3em;
    height: .3em;
    bottom: 0px;
    border-radius: 50%;
    background-color: red;
}

.@{prefix-cls} {
    &-wrapper {
        &.sm {
            .picker {
                display: block;
                margin-left: -50px;
            }

            .range {
                width: 100px;
            }
        }

        &.md {
            .picker {
                margin-left: -130px;
            }

            .range {
                width: 260px;
            }
        }

        &.lg {
            .picker {
                margin-left: -160px;
            }

            .range {
                width: 320px;
            }
        }

        .picker {
            display: block;
            position: absolute;
            left: 50%;
            margin-left: -100px;
        }

        .range {
            cursor: pointer;
            width: 200px;
            text-align: center;
            padding: 0;
            border: none;
            background-color: transparent;
            color: @white-color;

            &:focus,
            &:focus-visible,
            &:active,
            &:hover {
                border: none;
                outline: none;
            }

        }

        &.webgl{
            z-index: 3;
            video{
                display: none;
            }
        }
    }
}

.conf-button-classname:disabled {
    cursor: not-allowed;
    color: @light-color;
    &:hover {
        background-color: inherit;
    }
}

.today-button-classname:disabled {
    cursor: not-allowed;
    color: @light-color;
    &:hover {
        background-color: inherit;
    }
}

.datepicker-range{
    &-select{
        margin-top: 3px;
        width: 100%;
        display: flex;
        border-top: 1px solid rgba(255,255,255,.2);
        padding-top: 5px;
        justify-content: space-between;
    }
    &-title{
        font-size: 12px;
        color: #ccc;
    }
    &-handle{
        i{
            cursor: pointer;
            font-style: normal;
            padding: 1px 3px;
        }
    }
    &-cont{
        color: #ccc;
    }
}
