.best-offer-widget {
    padding: 40px;
    background-color: var(--e-global-color-primary);
    color: #FFFFFF;
}

.best-offer-widget-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.best-offer-widget .buttons_wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.best-offer_icon-arrow-down svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.best-offer_icon-arrow-down {
    display: flex;
}

.best-offer-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4em;
    margin: 0;
}

.best-offer-logo {
    max-width: 240px;
}

.best-offer-button {
    display: flex;
    width: 100%;
    padding: 12px 24px;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid var(--e-global-color-accent);
    background-color: var(--e-global-color-accent);
    transition-duration: 300ms;
    cursor: pointer;
}

.best-offer-button:hover {
    color: #FFFFFF;
    background-color: transparent;
}

.best-offer-button.best-offer-button-disabled {
    border-color: grey;
    background-color: grey;
    cursor: no-drop;
}

.best-offer-deadline {
    display: flex;
    gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.best-offer-deadline-date {
    font-size: 1.6rem;
    background-color: red;
    color: #FFFFFF;
    padding: 18px;
    font-weight: 500;
    min-width: min(100%, 250px);
    width: 100%;
    min-height: 60px;
    display: flex;
    justify-content: center;
}