/*
 * Platz für eigene Änderungen direkt als CSS
 * Die hier gemachten Änderungen überschreiben ggfs. andere Styles, da diese Datei als letzte geladen wird.
 */
#main-wrapper > .container-fluid.opc-Container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.mycotech-fullwidth-slider,
.mycotech-fullwidth-slider .theme-default,
.mycotech-fullwidth-slider .nivoSlider {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

/* ========================================
   MYCOTECH HERSTELLER SLIDER
   ======================================== */

.myco-brand-slider {
    width: 100%;
    overflow: hidden;
    background: #f1f3f4;
    padding: 28px 0;
}

.myco-brand-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: mycoBrandScroll 40s linear infinite;
}

.myco-brand {
    width: 230px;
    height: 70px;
    flex: 0 0 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 25px;
    background: transparent;
}

.myco-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 55px;
    object-fit: contain;
    background: transparent;
}

@keyframes mycoBrandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.myco-brand-slider:hover .myco-brand-track {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .myco-brand {
        width: 190px;
        flex-basis: 190px;
    }

    .myco-brand img {
        max-width: 155px;
        max-height: 50px;
    }
}

@media (max-width: 575px) {
    .myco-brand-slider {
        padding: 20px 0;
    }

    .myco-brand {
        width: 145px;
        height: 60px;
        flex-basis: 145px;
        padding: 5px 15px;
    }

    .myco-brand img {
        max-width: 120px;
        max-height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .myco-brand-track {
        animation: none;
    }
}