html {
    --steps-color-main: #ad2222;
    --steps-color-sub: rgba(173, 34, 34, 0.2);
    --steps-color-hover: #9f2525;
    scroll-behavior: smooth;
}

.steps-widget-section {
    transition: opacity 1s ease-in-out;
    text-align: left !important;
    border: 1px solid #e5e7eb;
    padding: 20px;
    width: 100%;
}

.steps-widget-section a {
    color: var(--steps-color-main) !important;
}

.steps-widget-section h3 {
    color: black !important;
    font-size: 20px !important;
    font-weight: bold;
    margin: 15px 0 !important;
    padding: 0 !important;
}

.steps-widget-section .steps-widget {
    width: 100%;
    counter-reset: list;
    font-size: 18px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.steps-widget-section .steps-widget .steps-widget-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s all;
    margin-right: 5px;
    background: rgb(247, 247, 247);
}

.steps-widget-section .steps-widget .steps-widget-item-visible {
    opacity: 1;
    transform: translateY(0);
}

.steps-widget-section .steps-widget .steps-widget-item::before {
    counter-increment: list;
    content: counter(list);
    color: white;
    background: var(--steps-color-main);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 25px;
    font-size: 14px;
    width: 100%;
    height: 25px;
    font-weight: 900;
}

.steps-widget-section .steps-widget-sub-container {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 3px;
}

.steps-widget-section .steps-widget-sub-container .steps-widget-title {
    margin: 0;
}

.steps-widget-section .steps-widget-sub-container .steps-widget-sub {
    border-radius: 5px;
}

.steps-widget-section .steps-widget-red .steps-widget-sub, .steps-widget-section .steps-widget-red .steps-widget-date {
    color: var(--steps-color-main) !important;
    font-weight: bold;
    white-space: nowrap;
}

@media (max-width: 500px) {
    .steps-widget-section .steps-widget {
        font-size: 16px !important;
    }

    .steps-widget-section h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 450px) {
    .steps-widget-section .steps-widget {
        font-size: 14px !important;
    }

    .steps-widget-section .steps-widget .steps-widget-item::before {
        max-width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

.account-widget .offer-link:hover {
    background: var(--steps-color-hover) !important;
}


@media (max-width: 500px) {
    .offer-link {
        font-size: 16px !important;
    }
}

.steps-flex-container {
    display: flex;
    gap: 5px;
}

.steps-logo {
    max-width: 150px;
}

.steps-widget-section .steps-widget .steps-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: center;
    font-size: 16px !important;
    gap: 5px;
}

.steps-widget-section .steps-widget .steps-flex img {
    max-width: 24px;
}

.steps-widget-section .steps-widget .steps-flex::before {
    content: none;
}

.steps-widget-section .offer-link {
    position: relative;
    background: var(--steps-color-main);
    color: white !important;
    width: 100%;
    display: inline-block;
    padding: 15px;
    font-size: 20px;
    border-radius: 5px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    transition: 0.3s all;
    margin-top: 20px;
    box-sizing: border-box;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.steps-widget-section .offer-link:hover {
    transition: 0.3s all;
    text-decoration: none !important;
    background: var(--steps-color-hover) !important;
    color: white;
}

.offer-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
            to right,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.5) 50%,
            rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    to {
        left: 125%;
    }
}

@media (max-width: 600px) {
    .steps-flex-container {
        flex-direction: column;
        gap: 10px;
    }
}

