/**
 * WPML Breadcrumb Styles
 * Flatsome theme compatible
 */

.thebread {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.5;
}

.thebread a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.thebread a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.thebread .breadcrumb-current {
    cursor: default;
}

.thebread .breadcrumb-nolink {
    color: inherit;
    cursor: default;
}

/* Flatsome flex-col compatibility */
.flex-col.thebread {
    display: flex;
}

.flex-right.thebread {
    justify-content: flex-end;
    text-align: right;
}

/* Responsive */
@media (max-width: 549px) {
    .thebread {
        justify-content: flex-start;
        text-align: left;
    }

    .flex-right.thebread {
        justify-content: flex-start;
    }
}
