.date-select-modal {
    position: fixed;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    padding: 32px 16px;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #282828;
    transition: all 0.3s ease-in-out;

    .header {
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 32px;

        button {
            position: absolute;
            top: 6px;
            left: 0;
            margin: 0;
            width: auto;
            height: auto;
            background: transparent;
            border: none;

            img {
                width: 14px;
                height: 14px;
                transform: rotate(180deg);
            }
        }

        h2 {
            font-family: "Bebas Neue", sans-serif;
            font-size: 28px;
        }
    }

    .calendar {
        height: 100%;
        overflow: auto;
    }

    .calendar #date-select-modal-calendar {
        height: 0;
        overflow: hidden;
    }

    .apply {
        margin-top: 24px;
        height: 46px;
        font-size: 20px;
    }
}