/* cashback-sticky */
#cashback-sticky-wrapper {
    width: 100%;
    height: 32px;
    background: linear-gradient(to right, #FFD06400, #F7931E, #F7931E00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#cashback-sticky-body {
    width: 100%;
}

.cashback-sticky-header {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.cashback-sticky-header a,
.cashback-sticky-header a:hover {
    color: #fff;
    text-decoration: none;
}

.sticky-close-button {
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    margin: 0 0 4px 10px;
}

.sticky-close-button:hover {
    text-shadow: 1px 1px 1px #494949;
}

.cashback-sticky-header a:hover{
    color: #e3e3e3;
}

.sticky-close-button {
    border: none;
    background: transparent;
}

/* popup-free-delivery */

#popup-free-delivery {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 1px 5px 5px -1px rgba(0,0,0,0.26);
    min-width: 300px;
    z-index: 999;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

#popup-free-delivery.show {
    opacity: 1;
    pointer-events: all;
}

#popup-free-delivery.closed {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%) translateY(-50%);
}



#popup-free-delivery .popup-content {
    background: #F7F7F7;
    border-radius: 8px;
    width: 100%;
    display: flex;
    padding: 5px 5px 7px 5px;
    flex-grow: 3;
    font-size: 12px;
    min-width: 320px;
    min-height: 120px;
}

#popup-free-delivery .popup-content .popup-text {
    margin: 10px 0 0 10px;
    min-height: 100px;
}

#popup-free-delivery .popup-content .popup-text strong {
    color: #BF6703E3;
}

#popup-free-delivery .popup-content .popup-image {
    width: 116px;
    height: 87px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 10px;
    display: block;
}

.popup-close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #BF6703E3;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
}
.popup-close-button:hover {
    color: #CCC;
}


#popup-free-delivery.closed {
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%) translateY(-50%);
}


@media only screen and (max-width: 768px) {

    #popup-free-delivery {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: auto;
        transform: translateX(-120%) translateY(0);
        min-width: 120px;
        min-height: 87px;
    }

    #popup-free-delivery.show {
        transform: translateX(0) translateY(0);
    }


  #popup-free-delivery.closed {
        transform: translateX(-120%) translateY(0);
    }

}

@media only screen and (max-width: 500px) {

    #cashback-sticky-body {
        background: linear-gradient(to right, #F7A440, #F7931E, #F77C00);
    }

    .popup-header {
        font-size: 13px;
    }

    .sticky-close-button {
        font-size: 22px;
    }
}

@media only screen and (max-width: 400px) {

    .cashback-sticky-header {
        font-size: 12px;
    }
    .popup-header {
        font-size: 12px;
    }
}
