﻿: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);
}


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ı */
    }


nav.sth-page-breadcrumbs {
	margin-top: 128px !important;
	margin-bottom: 20px;
}


.breadcrumb-custom {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	list-style: none;
	padding: 0;
	margin: 0;

	li {
		display: flex;
		align-items: center;

		:not(:last-child)::after {
			content: "/";
			margin: 0 8px;
			color: var(--sth-yellow);
		}
	}

		li:not(:last-child)::after {
			content: "/";
			margin: 0 8px;
			color: black;
		}

	a {
		font-weight: 600;
		color: var(--sth-yellow);
		text-decoration: none;
		transition: 0.2s ease;
	}

		a:hover {
			color: var(--sth-yellow);
		}

	.active {
		color: var(--sth-light-blue);
		font-weight: bold;
	}
}

.abp-toast-message {
	color: white;
}


.basket-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cartCounter {
	position: absolute;
	bottom: -8px;
	right: -8px;
}

	.cartCounter span {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 18px;
		height: 18px;
		border-radius: 50%;
		font-size: 11px;
		padding: 2px 5px;
		background-color: var(--color-error-2) !important;
	}