.ai-content-generator-drawer {
    position: fixed;
    height: 100vh;
    width: 680px;
    top: 0;
    bottom: 0;
    right: -110%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.43, 0.83, 0.54, 1.02), opacity .4s linear;
    z-index: 1506;

    &-mask {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.10);
        z-index: 1505;
    }

    &.show {
        right: 0;
    }

    &.show ~ &-mask {
        display: block;
    }

    .rtl & {
        right: auto;
        left: -110%;

        &.show {
            right: auto;
            left: 0;
        }
    }

    .drawer-content {
        height: calc(100vh - 52px);
        overflow-y: auto;
    }

    .generate-content-easily-card:after {
        content: "";
        position: absolute;
        top: 8px;
        bottom: -8px;
        left: 8px;
        right: 8px;
        z-index: -1;
        border-radius: 16px;
        opacity: 0.2;
        background: var(--primary);
    }

    @media (max-width: $screen-sm-max) {
        width: 100vw;
    }
}

.image-generated-card {
    width: 256px;
    height: 256px;
    border-radius: 8px;
    margin: 12px 12px 0 0;
}


