:root {
    --fc-labelColor: #8194c8;
    --secondary: #00ab55;
    --secondary-darker: #008c44;
}

body {
    color: #efefef;
}

a {
	color: #eee;
}
.h2, .h3 {
	font-size: calc(1.3rem + .6vw);
	margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
	display: block;
}
.btn-success {
    background-color: var(--secondary);
}
.btn-success:hover {
    background-color: var(--secondary-darker);
}
.btn-outline-success {
    color: var(--secondary);
    border-color: var(--secondary);
}
.btn-outline-success:hover {
    background-color: var(--secondary);
}

.submenu ul {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    white-space:nowrap;
}

.badge {
    line-height: 1rem;
}

.footer-legal-info {
    font-size: 12px;
}

.banner__container {
    border-radius: 8px;

    img {
        border-radius: 8px;
        width: 100%;
    }

    img:hover {

    }
}

.footer-bottom__links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scrollmenu {
    width: 100%;
    height: fit-content;

    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.scroll-card {
    float: none;
    display: inline-block;
    margin: 3px;
    cursor: pointer;

    img {
        width: 160px;
        height: 220px;
        object-fit: cover;
        object-position: center;
        border-radius: 4px;
        transition: .5s ease;
    }
}

.scroll-card:hover img {
    opacity: 0.5;
}


.nav-item {
    .js-action-link {
        cursor: pointer;
        margin: 0 10px;
        color: #fff;
    }

    .js-action-link:hover {
        text-decoration: underline;
        text-underline-offset: 8px;
    }
}

.highlight {
    position: relative;
    z-index: 0;
}

@keyframes shine {
    0% { background-position: 0 0; opacity: 1; }
    90% { background-position: -360% 0; opacity: 1; }
    100% { background-position: -400% 0; opacity: 0; }
}
.highlight::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 9px;
    background: linear-gradient(-45deg, transparent 45%, #5dbbff 48%, #bdb3f5 52%, transparent 55%);
    background-size: 400%;
    z-index: -1;
    opacity: 0;
    user-select: none;
    pointer-events: none;
    animation: shine 14s linear infinite;
    will-change: background-position, opacity;
}
.object-fit-cover {
    object-fit: cover;
}
html, body {
    overflow-x: hidden;
}

.scrollmenu,
.submenu ul {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

img {
    max-width: 100%;
    height: auto;
}
.scrollmenu::-webkit-scrollbar,
.submenu ul::-webkit-scrollbar {
    display: none;
}
.banner-content {
	width: 90%;
	background: rgb(0 0 0 / 50%);
    padding: 2rem;
    border-radius: 1rem;
}

.content img {
	display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: auto;
}

.content .post-img {
    float: left;
    max-width: 40%;
    margin: 0 15px 15px 0;
    border-radius: 8px;
    height: auto;
}
 
.js-action-link {
	cursor: pointer;
}

.footer-nav {
    padding: 20px 0;
    text-align: center;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px 20px;
}

.footer-nav li {
    display: inline;
}

.footer-nav a {
    display: inline-block;
    padding: 5px 10px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
    }

    .footer-nav li {
        margin: 10px 0;
    }
	.content .post-img {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    max-width: 80%;
	}
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #eee;
    content: var(--bs-breadcrumb-divider, "/");
}
.breadcrumb-item.active {
    color: #eee;
}
