.sale-widget {
    background: url(./images/bg.jpg) no-repeat;
    background-size: cover;
    padding: 40px 0 25px;
    position: fixed;
    bottom: 0;
    font-family: 'Gotham Pro';
    width: 100%;
    z-index: 1000;
}

.sale-widget__container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sale-widget__info {
    display: flex;
    align-items: center;
}

.sale-widget__icon {
    margin-right: 10px;
}

.sale-widget__title {
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.sale-widget__description {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #e20932;
}

.sale-widget__button {
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    background: #e20932;
    border: 2px solid #e20932;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 20px;
    transition: 200ms ease all;
}

.sale-widget__button:hover {
    background: transparent;
    color: #e20932;
}

.sale-widget__close {
    border-bottom: 2px solid #656c6f;
    padding-bottom: 4px;
    font-weight: bold;
    color: #656c6f;
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 50px;
    transition: 200ms ease all;
}

.sale-widget__close:hover {
    border-color: transparent;
}

.sale-widget__close::after {
    display: inline-block;
    margin-left: 5px;
    width: 10px;
    height: 10px;
    content: '';
    background: url('./images/close.png');
    background-size: cover;
    background-position: center;
}

.sale-widget--hidden {
    display: none;
}

@media screen and (max-width: 989px) {
    .sale-widget__title {
        font-size: 18px;
    }

    .sale-widget__button {
        padding: 10px 25px;
    }
}

@media screen and (max-width: 767px) {
    .sale-widget__info {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .sale-widget__icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .sale-widget__button {
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
        text-align: center;
    }

    .sale-widget__description {
        margin-right: 0;
    }

    .sale-widget__close {
        right: 15px;
        top: 10px;
    }

    .sale-widget__container {
        justify-content: center;
    }
}
