
.ribbon {
    position: fixed;
    z-index: 999999;
}

.ribbon--primary {
    background: #fff;
    border: 2px solid #000;
    border-right: 0;
}

.ribbon__content {
    padding: 0.5rem 1rem;
    text-align: center;
    position: relative;
}

.ribbon__content img {
    max-width: 52px;
    margin-top: 14px;
    padding-top: 14px;
    padding-bottom: 15px;
}

.ribbon__content .discount {
    color: #000;
    font-size: 1.25rem; 
    font-weight: bold; 
    letter-spacing: 1px;
}

.close-ribbon {
    font-size: 2rem;
    position: absolute;
    top: -19px;
    content: '';
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    color: #000;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    cursor: pointer;
    padding: 10px;
    z-index: 9999;

}

.close-ribbon .icon-close {
    font-size: 0.75rem;    
}


.close-ribbon:hover {
    background: #000;
    color: #fff;
}
