.ticker_container_outer {
    /* width: 100vw; */
    height: 190px;
    background-color: white;
    position: relative;
    border-top: 1px solid black;
}

@keyframes ticker_keyframes {
    0% {
        /* transform: translate3d(-22rem, 0, 0); */
        transform: translate(-22rem, 0);
    }
    100% {
        /* transform: translate3d(-38.8rem, 0, 0); */
        transform: translate(-38.8rem, 0);
        /* 16.8 */
    }
}

.ticker_container_inner {
    overflow: hidden;
    display: flex;
    height: 100%;
    position: absolute;
    /* animation: ticker_keyframes 2s linear infinite; */
}


/* .ticker_el {
    width: 260px;
    height: 120px;
    background-color: aquamarine;
    margin-right: 40px;
    flex-shrink: 0;
} */

.ticker_el_container {
    display: flex;
    column-gap: 25px;
    margin-left: 25px;
}

.ticker_button_outer {
    width: 394px;
    height: 65px;
    border-radius: 32px;
    margin-top: 63px;
}

.ticker_button {
    width: inherit;
    height: inherit;
    border-radius: inherit;
    border: inherit;
    font-size: 30px;
    font-weight: 500;
    padding-bottom: 5px;
    background-color: var(--red);
    border: 1px solid black;
}

.ticker_button:hover {
    background-color: var(--hover);
}

.ticker_svg {
    width: 63px;
    height: 110px;
    margin-top: 40px;
}

.ticker_text_long,
.ticker_text_short {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500px;
    text-align: center;
    margin-top: 57px;
}

.ticker_text_long {
    width: 350px;
}

.ticker_text_short {
    width: 166px;
}


/* ______________________________________________________________________________________________ */


/* ______________________________________________________________________________________________ */


/* ______________________________________________________________________________________________ */

@media only screen and (max-width: 1280px) {
    .ticker_container_outer {
        height: 132px;
    }
    .ticker_el_container {
        column-gap: 17px;
        margin-left: 17px;
    }
    .ticker_svg {
        width: 44px;
        height: 76px;
        margin-top: 28px;
    }
    .ticker_text_long,
    .ticker_text_short {
        font-size: 21px;
        line-height: 26px;
        margin-top: 40px;
    }
    .ticker_text_long {
        width: 242px;
    }
    .ticker_text_short {
        width: 116px;
    }
    .ticker_button_outer {
        width: 240px;
        height: 45px;
        border-radius: 22px;
        margin-top: 44px;
    }
    .ticker_button {
        font-size: 18px;
        padding-bottom: 4px;
        background-color: #FF5372;
        border: 1px solid black;
    }
}
