.sticky-offer-item {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    text-align: center;
    max-width: 1120px;
    width: 100%;
}

.sticky-offer-item.inView {
  display: block;
}
.sticky-offer-item-in {
    position: relative;
    background: #333333;
    border: 1px solid #EFC32DCC;
    border-radius: 4px;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sticky-offer-close {
    position: absolute;
    top: -64px;
    right: 0;
    background: #333333;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: -3px 2px 24px 0px #0a0a0b;
    display: flex;
    align-items: center;
    justify-content: center; 
}
.sticky-offer-close svg {
    width: 15px;
    height: auto;
}
.sticky-offer-item.active {
    transform: none;
    transition: none;
}
.sticky-offer-rating-review {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sticky-offer-logo-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sticky-offer-content {
    display: flex;
    align-items: center;
    gap: 64px;
}
.sticky-offer-content h4 {
    margin: 0;
    text-align: left;
}
.sticky-casino-rating .inline-block {
    display: none;
}
.sticky-casino-rating span {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #fff;
}
.sticky-offer-review {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #E4CC7A;
}
.sticky-offer-cta a {
    opacity: 1;
    padding-top: 14px;
    padding-right: 20px;
    padding-bottom: 14px;
    padding-left: 20px;
    background: #0A8A0F;
    border-radius: 50px;
    color: #FAFAFA;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    width: 100%;
    display: inline-block;
    text-align: center;
    min-width: 232px;
}
.sticky-offer-logo-rating img {
    max-width: 85px;
}
@media (max-width: 1120px) {  
    .sticky-offer-item-in {
        margin: 0 12px;
    }
}
@media (max-width: 768px) {  
    .sticky-offer-item-in {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 8px;
        margin: 0 12px;
    }

    .sticky-offer-content,
    .sticky-offer-cta {
        width: 100%;
    }

    .sticky-offer-cta {
        margin-left: 0;
        margin-top: 10px; 
        text-align: right; 
    }
    .sticky-offer-content {
        gap: 8px;
    }
    .sticky-casino-rating {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .sticky-offer-content h4 {
        font-family: Montserrat;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        width: 100%;
        text-align: center;
    }
}