﻿.partner-ticker-container {
    padding-block: 24px;
    background-color: var(--surface-primary);
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.partner-ticker-width-wrapper {
    max-width: 1440px;
    overflow: hidden;
    display: flex;
}
.partner-ticker-container::-webkit-scrollbar {
    display: none;

}

.partner-logo-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 8em;
    animation: slide 30s linear infinite;
    padding-right: 8em;
    height: 113px;
}


.partner-logo-wrapper .partner-logo {
    flex: 0 0 8em;
    width: 170px;
    height: 100px;
    display: flex;
    align-content: center;
    justify-content: center;
}

.partner-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media screen and (max-width: 64em) {
    .partner-logo-wrapper {
        gap: 4em;
        padding-right: 4em;
    }
}

@keyframes slide {
    from {
        translate: 0;
    }

    to {
        translate: -100%
    }
}
