.widget-card-wrapper {
    position: fixed;
    width: 450px;
    bottom: 20px;
    left: -100%;
    opacity: 0;
    transition: left 0.5s cubic-bezier(0.67, 0.05, 0.46, 1.16), opacity 0.4s cubic-bezier(0.67, 0.05, 0.46, 1.16);
    z-index: 100;
}
.widget-card-wrapper--show {
    opacity: 1;
    left: 20px;
    transition: left 0.7s cubic-bezier(0.67, 0.05, 0.46, 1.16), opacity 1.2s cubic-bezier(0.67, 0.05, 0.46, 1.16);
}

.widget-card {
    width: 100%;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.widget-card__content {
    position: relative;
    width: 100%;
    background: rgba(35, 31, 32, 0.75);
    color: var(--color-text);
    border-radius: 20px;
    padding: 30px;
}

.widget-card__title {
    font-family: var(--font-family-secondary);
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 15px;
}
.widget-card__description {
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 20px;
}

.widget-card__close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    border: 0;
    padding: 0;
}
.widget-card__close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text);
}

@media (max-width: 485px) {
    .widget-card-wrapper {
        width: 100%;
        bottom: 0;
        padding: 10px;
    }

    .widget-card-wrapper--show {
        left: 0;
    }
}
