﻿:root {
    --sth-yellow: #EBC634;
    --sth-blue: #31426B;
    --sth-light-blue: #279AFF;
    --lpx-logo: url('/images/logo/leptonx/icon.svg');
    --lpx-logo-icon: url('/images/logo/leptonx/icon.svg');
}

.text-dark {
    color: black;
}

.text-primary-sth {
    color: var(--sth-blue);
}

.text-info-sth {
    color: var(--sth-light-blue);
}

.text-warning-sth {
    color: var(--sth-yellow);
}

.text-success-sth {
    color: var(--bs-teal);
}

.breadcrumb-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-custom li {
        display: flex;
        align-items: center;
    }

        .breadcrumb-custom li:not(:last-child)::after {
            content: "/";
            margin: 0 8px;
            color: #bbb;
        }

    .breadcrumb-custom a {
        color: #6c757d;
        text-decoration: none;
        transition: 0.2s ease;
    }

        .breadcrumb-custom a:hover {
            color: #0d6efd;
        }

    .breadcrumb-custom .active {
        color: #111;
        font-weight: 600;
    }

a.hover-text-white:hover {
    color: white !important;
}

.tour-detail-content *:not(i) {
    color: black !important;
    font-size: 18px;
}

.divider-sth {
    position: relative;
    height: 32px;
}

    .divider-sth::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        border-top: 1px dashed #ccc;
    }

    .divider-sth::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 32px;
        height: 32px;
        transform: translate(-50%,-50%);
        background: url("/public/suntravelhub-favicon.png") center/contain no-repeat;
        background-color: white; /* sayfa arka planı */
    }
