/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.logo-ticker__viewport {
    overflow: hidden;
    width: 100%;
}

.logo-ticker__track {
    display: flex;
    width: max-content;
    animation-name: dfs-logo-ticker-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.logo-ticker[data-direction="ltr"] .logo-ticker__track {
    animation-direction: reverse;
}

.logo-ticker__set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-ticker__item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--gap, 40px);
}

.logo-ticker__item img {
    height: var(--h, 60px);
    width: auto;
    display: block;
}

@keyframes dfs-logo-ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.dfs-more-link-wrap {
    margin-top: 16px;
}

.dfs-more-link-wrap .dfs-more-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.dfs-more-icon {
    display: inline-block !important;
    width: 14px !important;
    height: 8px !important;
    max-width: 14px !important;
    max-height: 8px !important;
    flex: 0 0 14px;
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.dfs_text_read_more.is-expanded .dfs-more-icon {
    transform: rotate(0deg);
}

.dfs-more-button-blue.dfs-more-button,
.dfs-more-button-blue.dfs-more-button .fusion-button-text {
    color: #0431ff;
}

.dfs-more-button-neon.dfs-more-button,
.dfs-more-button-neon.dfs-more-button .fusion-button-text {
    color: #e9ff1a;
}