.sf-full-desc.active {
    opacity: 1;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
}

.sf-full-desc {
    position: fixed;
    right: 0;
    top: 32px;
    bottom: 0px;
    z-index: 99;
    width: 520px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    touch-action: none;
    border-radius: 0 !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-color: #48445c80 !important;
    transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.25s cubic-bezier(0.77, 0.2, 0.05, 1), top 0.3s;
    transform: translateX(100%);
    left: auto;
    color: #fff;
    
    .sf-title-cont {
        position: relative;
        text-align: center;
        height: 36px;
        font-family: 'Poppins';
        background: #00000000;
        color: #ffffff;
        font-size: 16px;
        margin: 0 1em;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        border-bottom: 1.5px solid #ffffff52;
    
        .sf-desc-close {
            top: 11px;
            right: 12px;
            background: url(https://starkframe.store/wp-content/themes/starkframe/assets/images/stark-frame/cross-title.svg);
            background-size: cover;
            width: 14px;
            height: 14px;
            position: absolute;
            cursor: pointer;
        }
    }

    .sf-full-desc-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: hidden;
        height: 100%;
        
        .sf-full-desc-contain {
            overflow-y: scroll;

            > div {
                display: flex;
                flex-direction: column;
                flex-wrap: nowrap;
                background: #00000075;
                padding: 0.5em 1.5em;
                margin: 0.5em 1em;
                border-radius: 10px;
                
            }
        }

        .sf-desc-cart-container {
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            padding: 0;
            z-index: 9;
            margin: 0 1em;
            border-top: 1.5px solid #ffffff52;
        }
    }
}