.drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100%;
    z-index: 9;
    display: flex;
    flex-direction: column;

    .drawer__overlay {
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.40);
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .drawer__container {
        margin-top: auto;
        width: 100%;
        background-color: #ffffff;
        position: relative;
        padding: 0px 16px 24px;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        transition: transform .3s ease;

        .drawer__header {
            margin-bottom: 30px;
        }

        .drawer__title {
            color: var(--Base-Dark, #171717);
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            letter-spacing: 0.8px;
            text-align: center;
        }

        .drawer__handle {
            width: 100%;
            height: 30px;
            position: relative;
            display: flex;
            align-items: center;
            opacity: .6;

            &:before {
                content: "";
                display: block;
                width: 40px;
                height: 4px;
                background-color: var(--Gray-6, #9A9AA2);
                border-radius: 12px;
                margin: 0 auto;
            }
        }
    }

    &.visible {
        .drawer__overlay {
            opacity: 1;
        }

        .drawer__container {
            transform: translateY(0%);
        }
    }
}