.offers-container {
    --offers-margin: 18px;
    position: fixed;
    top: calc(var(--menu-height, 90px) + var(--wp-admin--admin-bar--height, 0px) + var(--offers-margin, 0px) + 40px);
    right: var(--offers-margin, 0px);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    z-index: 100;
    border-radius: 20px;
    overflow: hidden;

    opacity: 0;
    transform: perspective(500px) rotateX(-2deg) scale(1) translateY(10px);
    transition: all 350ms ease-out;
}

.offers-container.visible {
    opacity: 1;
    transform: perspective(500px) rotateX(0deg) scale(1) translateY(0px);
}

.offer__heading {
    line-height: 1.2;
}

.offer__description {
    line-height: 1.3;
}

.offers-container .offer {
    background: #FFF;
    width: 100vw;
    max-width: 625px;
}

.offers-container .offer {
    display: flex;
    padding: 42px;
    gap: 32px;
}

.offers-container .offer-content {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.offers-container .offer .close-offer {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    transition: background-color 350ms ease-in-out;
}

.offers-container .offer .close-offer:hover,
.offers-container .offer .close-offer:focus {
    background-color: rgba(0,0,0,0.067);
}

.offers-container .offer .close-offer .icon {
    width: 20px;
}

.offers-container .offer .close-offer svg {
    max-width: 100%;
    height: auto;
}

.offers-container img {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin: auto;
}

.offers-container .offer.row {
    display: grid;
    grid-template-columns: auto auto;
}

.offers-container .offer.row img {
    max-width: 100%;
}

.offers-container .offer.row-30 {
    grid-template-columns: 30% auto;
}

.offers-container .offer.column {
    display: grid;
    grid-template-columns: auto;
}