#storego-free-shipping-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    z-index: 9999;
    line-height: 1.2em;
    font-weight: bold;
    transform: translateY(100%);
    animation: slideInUp 1s forwards;
}

#storego-free-shipping-close {
    position: absolute;
    top: -10px;
    right: 3px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    background: #fff;
    border: 1px solid #ccc;
    color: #000 !important;
    border-radius: 50%;
    width: 22px;
    height: 22px;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}