:root {
    --primary-darkgreen: #0A1C0C;
    --primary-darkgreen-tint04: #142516;
    --primary-darkgreen-tint08: #1E2E1F;
    --primary-darkgreen-tint12: #273729;
    --primary-darkgreen-tint16: #314033;
    --primary-primary-yellow: #FFE100;
    --primary-green: #2d5016;
    --primary-blue: #0A1C0C;

    --Background-Main: #FFFFFF;
    --Background-Secondary: #EFEEEC;
    --Background-Tertiary: #E3E1DE;
    --Background-Alternate: #0A1C0C;
    --Background-Stat: #273729;

    --White: #FFFFFF;
    --Neutral-200: #F8F8F8;
    --Neutral-300: #EFEEEC;
    --Neutral-400: #E3E1DE;
    --Neutral-500: #A8A7A7;
    --Neutral-600: #4D4D4D;
    --Neutral-700: #2C2C2C;
    --Neutral-800: #1F1F1F;
    --Neutral-900: #131313;
    --Dark: #0C0323;

    --Text-Bodytext: #4D4D4D;
    --Text-Bodytext-White: #FFFFFF;
    --Text-Dark: #000000;
    --Text-Placeholder: #D0CFCD;

    --Radius---lg: 8px;
    --Radius---sm: 3px;

    --Button-Background-Primary: #0A1C0C;
    --Button-Background-Secondary: #EEEAD6;
    --Button-Background-Default: #FFFFFF;
    --Button-Background-Link: #FFFFFF;

    --Button-Hover-Primary: #273729;
    --Button-Hover-Secondary: #D1CEBC;
    --Button-Hover-Default: #EFEEEC;
    --Button-Hover-Link: #FFFFFF;

    --Form-Focus-Blue: #BAE0FF;
    --Form-Danger: #FFA39E;

    --Button-Primary-Text: #FFFFFF;
    --Button-Default-Text: #0A1C0C;
    --Button-Disabled-Text: #E3E1DE;
    
    --Borders-Border-Active: #0A1C0C;
    --Borders-Border-Main: #E3E1DE;
    --Borders-Border-Secondary: #D0CFCD;
    --Background-Background-Main: #FFF;

    --color-cat1: #835622;
    --color-cat2: #F5222D;
    --color-cat3: #FAAD14;
    --color-cat4: #1677FF;
    --color-cat5: #52C41A;
}

html {
    scrollbar-width: none;
}

body {
    color: var(--Text-Bodytext);
}

body::-webkit-scrollbar {
    display: none;
}

/*
@media (max-width: 568px) {
    body {
        row-gap: 64px;
    }
}

@media (min-width: 568px) and (max-width: 992px) {
    body {
        row-gap: 96px;
    }
}

@media (min-width: 992px) {
    body {
        row-gap: 136px;
    }
}*/

.cc-bg-main {
    background-color: var(--Background-Main);
}

.cc-bg-primary-darkblue08{
    background-color: var(--primary-darkgreen);
}

/*
.cc-bg-primary-darkblue08-grad{
    background-color: linear-gradient(180deg, var(--primary-darkgreen) 30%, transparent);
}*/

.cc-bg-primary-darkgreen12{
    background-color: var(--primary-darkgreen-tint12);
}

.cc-bg-secondary {
    background-color: var(--Background-Secondary)!important;
}

.cc-bg-tertiary {
    background-color: var(--Background-Tertiary);
}

.cc-bg-alternate {
    background-color: var(--Background-Alternate);
    color: var(--Text-Bodytext-White);
}

.cc-bg-white{
    background-color: var(--White) !important;
    color: var(--Text-Bodytext)
}

.cc-bg-neutral-200{
    background-color: var(--Neutral-200) !important;
    color: var(--Text-Bodytext)
}

.cc-bg-neutral-300{
    background-color: var(--Neutral-300) !important;
    color: var(--Text-Bodytext)
}

.cc-bg-neutral-400{
    background-color: var(--Neutral-400) !important;
    color: var(--Text-Bodytext)
}

.cc-bg-neutral-500{
    background-color: var(--Neutral-500) !important;
    color: white;
}

.cc-bg-neutral-600{
    background-color: var(--Neutral-600) !important;
    color: white;
}

.cc-bg-neutral-700{
    background-color: var(--Neutral-700) !important;
    color: white;
}

.cc-bg-neutral-800{
    background-color: var(--Neutral-800) !important;
    color: white;
}

.cc-bg-neutral-900{
    background-color: var(--Neutral-900) !important;
    color: white;
}

.cc-bg-dark{
    background-color: var(--Dark) !important;
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--Text-Dark);
    font-weight: bold;
    margin: 0;
}



@media (max-width: 568px) {
    h1 {
        font-size: 48px;
        line-height: 120%;
    }

    h2 {
        font-size: 40px;
        line-height: 120%;
    }

    h3 {
        font-size: 28px;
        line-height: 120%;
    }

    h4 {
        font-size: 24px;
        line-height: 120%;
    }

    h5 {
        font-size: 20px;
        line-height: 130%;
    }

    h6 {
        font-size: 14px;
        line-height: 130%;
    }
}

@media (min-width: 568px) {

    h1 {
        font-size: 64px;
        line-height: 120%;
    }

    h2 {
        font-size: 48px;
        line-height: 120%;
    }

    h3 {
        font-size: 36px;
        line-height: 120%;
    }

    h4 {
        font-size: 24px;
        line-height: 120%;
    }

    h5 {
        font-size: 20px;
        line-height: 130%;
    }

    h6 {
        font-size: 16px;
        line-height: 130%;
    }
}

input.cc-control:not([type='checkbox']) {
    display: flex;
    padding: 0 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: var(--Radius---lg);
    border: 1px solid var(--Borders-Border-Secondary);
    background-color: var(--Background-Background-Main);
}

input.cc-control:hover{
    border: 1px solid var(--Form-Focus-Blue);
}

input.cc-control:focus{
    /*border: 1px solid var(--Form-Focus-Blue);
    box-shadow: 0 0 0 2px var(--Form-Focus-Blue);*/
    border: 1px solid var(--Borders-Border-Secondary);
    outline: 0;
}

input.cc-control-dark{
    background-color: var(--primary-darkgreen-tint08)!important;
    border-color: var(--primary-darkgreen-tint16)!important;
    color: var(--Text-Placeholder)!important;
}

input.cc-control:not:valid{
    border: 1px solid var(--Form-Danger);
}

.cc-search-result{
    border-bottom: 1px solid var(--Borders-Border-Secondary);
    padding: 8px 16px 8px 16px;
}

.cc-search-result-last{
    border-bottom: none!important;
}

.cc-top-banner {
    background-color: var(--primary-primary-yellow);
/*height: 40px;
    padding: 8px 0;*/
}

.navbar-nav{
    column-gap: 16px;
    row-gap: 8px;
}

.cc-text-lg{
    font-size: 24px;
    font-style: normal;
    line-height: 160%;
}

.cc-text-md{
    font-size: 18px;
    font-style: normal;
    line-height: 160%;
}

.cc-text-reg{
    font-size: 16px;
    font-style: normal;
    line-height: 160%;
}

.cc-text-sm{
    font-size: 14px;
    font-style: normal;
    line-height: 160%;
}

.cc-text-xs{
    font-size: 14px;
    font-style: normal;
    line-height: 160%;
}

.cc-text-caption{
    font-size: 12px;
    font-style: normal;
    line-height: 130%;
}

.cc-text-body{
    color: var(--Text-Bodytext)!important;
}

.cc-text-white{
    color: var(--Text-Bodytext-White)!important;
}

.cc-text-dark{
    color: var(--Text-Dark)!important;
}

.cc-text-light{
    color: rgba(255, 255, 255, 0.72)!important;
}

.cc-text-n500{
    color: var(--Neutral-500)
}

.cc-text-error{
    color: var(--Text-Bodytext-White)!important;
}

a {
    text-decoration: none;
    color: inherit;
}

.cc-flag-xs {
    height: 14px;
    width: 14px; /* to size popup correctly */
    border-radius: var(--Radius---sm);
}

.cc-flag-sm {
    height: 18px;
    border-radius: var(--Radius---sm);
}

.cc-flag-md {
    height: 24px;
    border-radius: var(--Radius---sm);
}

.cc-flag-lg {
    height: 32px;
    border-radius: var(--Radius---sm);
}

.cc-flag-shadow{
    box-shadow: 2px 2px 8px 2px rgba(255, 255, 255, 0.3);
}

.cc-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.cc-btn:disabled{
    background-color: #FFFFFF;
    opacity: 1;
    border: 1px solid var(--Neutral-300);
    color: var(--Button-Disabled-Text);
}

.cc-control, .cc-control-sm{
    border-radius: var(--Radius---lg);
    font-weight: 400;
    line-height: 160%;
}

@media (max-width: 568px) {
    .cc-control, .cc-control-sm {
        height: 40px;
        padding: 0 16px;
        gap: 12px;
        font-size: 14px;
    }

    .cc-btn-square{
        width: 40px;
    }
}

@media (min-width: 568px) {
    .cc-control{
        height: 48px;
        padding: 0 20px;
        gap: 14px;
        font-size: 16px;
    }

    .cc-control-sm {
        height: 40px;
        padding: 0 16px;
        gap: 12px;
        font-size: 14px;
    }

    .cc-btn-square{
        width: 48px;
    }

    .cc-btn-sm-square{
        width: 40px;
    }
}

@media (min-width: 1600px) {
    .cc-control{
        height: 56px;
        padding: 0 24px;
        gap: 16px;
        font-size: 18px;
    }

    .cc-control-sm{
        height: 48px;
        padding: 0 20px;
        gap: 14px;
        font-size: 16px;
    }

    .cc-btn-square{
        width: 56px;
    }

    .cc-btn-sm-square{
        width: 48px;
    }
}

.cc-btn-primary {
    background-color: var(--Button-Background-Primary);
    color: var(--Button-Primary-Text);
    border: none;
}

.cc-btn-primary:hover:not([disabled]) {
    background-color: var(--Button-Hover-Primary);
    color: var(--Button-Primary-Text);
}

.cc-btn-primary:focus:not([disabled]) {
    background-color: var(--Button-Hover-Primary);
    color: var(--Button-Primary-Text);
    box-shadow: 0 0 0 2px var(--Form-Focus-Blue);
}

.cc-btn-secondary {
    background-color: var(--Button-Background-Secondary);
    color: var(--Button-Default-Text);
    border: 1 px solid var(--Neutral-400);
}

.cc-btn-secondary:hover:not([disabled]) {
    background-color: var(--Button-Hover-Secondary);
    color: var(--Button-Default-Text);
}

.cc-btn-secondary:focus:not([disabled]) {
    background-color: var(--Button-Hover-Secondary);
    color: var(--Button-Default-Text);
    box-shadow: 0 0 0 2px var(--Form-Focus-Blue);
}

.cc-btn-danger {
    background-color: var(--color-cat2);
    color: var(--Text-Bodytext-White);
    border: none;
    opacity: 0.8;
}

.cc-btn-danger:hover:not([disabled]) {
    background-color: var(--color-cat2);
    color: var(--Text-Bodytext-White);
    opacity: 1;
}

.cc-btn-danger:focus:not([disabled]) {
    background-color: var(--color-cat2);
    color: var(--Text-Bodytext-White);
    box-shadow: 0 0 0 2px var(--Form-Focus-Blue);
    opacity: 1;
}

.cc-btn-default {
    background-color: var(--Button-Background-Default)!important;
    border-radius: var(--Radius---lg, 8px)!important;
    color: var(--Button-Default-Text)!important;
    border: 1px solid var(--Neutral-400)!important;
}

.cc-btn-default:hover:not([disabled]), .cc-btn-default:active {
    border: 1px solid var(--Neutral-500)!important;
}

.cc-btn-default:focus:not([disabled]) {
    background-color: var(--Button-Background-Default)!important;
    box-shadow: 0 0 0 2px var(--Form-Focus-Blue);
}

.cc-btn-link {
    background-color: transparent; /* var(--Button-Background-Link);*/
    color: var(--Button-Default-Text);
    border: none;
}

.cc-btn-link:hover:not([disabled]) {
    /*background-color: var(--Button-Hover-Link);*/
    color: var(--Button-Default-Text);
}

.cc-btn-link:focus:not([disabled]) {
    background-color: var(--Button-Hover-Link);
    color: var(--Button-Default-Text);
    box-shadow: 0 0 0 2px var(--Form-Focus-Blue);
}

.cc-login-card {
    border-radius: 16px;
    padding: 40px;
}

.cc-control::placeholder {
    color: var(--Text-Placeholder)!important;
}

::-webkit-datetime-edit-fields-wrapper { color: var(--Text-Bodytext); }

.cc-footer-sponsor{
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cc-stat-frame {
    display: inline-flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: var(--Radius---sm);
    color: var(--Text-Bodytext-White);
    background-color: var(--Background-Stat);
}

.cc-stat-wrapper {
    position: relative;
    font-size: 12px;
}

.cc-stat-badge {
    border-radius: var(--Radius---sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--Neutral-400);
}

.cc-stat-caption {
    width: 40px;
    text-align: center;
    /*padding: 4px 0;*/
    font-size: 1rem;
    color: var(--Text-Bodytext);
    background-color: var(--Background-Secondary);
}

.cc-stat-value-fixed {
    width: 50px;
    text-align: center;
    padding: 4px 0!important;
}

.cc-stat-value {
    padding: 4px 8px;
    color: var(--Text-Bodytext);
    background-color: var(--White);
    border-left-width: 5px;
    border-left-style: solid;
}

.cc-stat-rank{
    width: 15px;
    text-align: end;
}

.cc-top-stat{
    position: absolute;
    right: -0.5rem;
    top: 72%;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    text-align: center;
    border: 1px dotted var(--color-cat2);
    background-color: var(--White);
    color: var(--color-cat2);
    font-weight: bold;
    font-size: 0.75rem;
}

.cc-top-stat-2{
    right: 0.7rem!important;
}

.cc-top-stat-europe{
    background: var(--color-cat2);
    color: white!important;
}

.cc-top-stat-country{
    border-style: solid!important;
}

.cc-top-stat-region{
    border-style: dashed!important;
}

.cc-stat-climbed{
    width: 18px;
}

.cc-stat-region-header{
    margin-bottom: -5px;
}

.cc-col-list {
    list-style: none;
    padding: 0;
}

.cc-form-label-input {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 768px) {
    .cc-row {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cc-row-sm {
        padding-top: 32px!important;
        padding-bottom: 32px!important;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .cc-row {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .cc-row-sm {
        padding-top: 32px!important;
        padding-bottom: 32px!important;
    }
}

@media (min-width: 992px) {
    .cc-row {
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 68px;
        padding-right: 68px;
    }

    .cc-row-sm {
        padding-top: 48px!important;
        padding-bottom: 48px!important;
    }
}

@media (min-width: 1600px) {
    .cc-row {
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 136px;
        padding-right: 136px;
    }

    .cc-row-sm {
        padding-top: 48px!important;
        padding-bottom: 48px!important;
    }
}

.cc-autocomplete {
    position: relative; /* creëert een referentie voor absolute positioning */
}

.cc-autocomplete-results {
    /*=position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 999;   */
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.cc-bottom-radius-0 {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
}
/*
.cc-user-icon {
    position: relative;
    display: inline-block;
    z-index: 0;
    margin-right: 0.3rem;
}
.cc-user-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary-darkgreen-tint12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}*/
.dropdown-toggle::after {
    display: none!important;
}
/*
.dropdown-item.active, .list-group-item.active{
    background-color: var(--Button-Hover-Default)!important;
    color: inherit;
}

.dropdown-item:hover, .list-group-item:hover{
    background-color: var(--Button-Hover-Default)!important;
    color: inherit;
} */

.dropdown-menu-dark {
    background-color: var(--Button-Background-Primary)!important;
    color: var(--Button-Primary-Text)!important;
}
/*
.dropdown-menu-dark:hover:not([disabled]) {
    background-color: var(--Button-Hover-Primary)!important;
    color: var(--Button-Primary-Text)!important;
}*/

.list-group-item{
    border: none!important;
}

.cc-carousel{
    position: relative;
    /*margin-top: -60px;*/
    z-index: 0;
}

/*
.cc-main-photo{
    padding-top: 136px;
    background-color: red;
    position: relative;
    margin-top: -80px;
    z-index: -1;

}*/

.cc-carousel-item{
    position: relative;
    height: 100%;
}

.cc-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0px,        /* 0% transparency at top */
            rgba(0, 0, 0, 0.24) 248px,  /* 76% transparency at 248px */
            rgba(0, 0, 0, 0.24) 100%    /* stays the same below */
    );
    pointer-events: none;
}

.cc-photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-photo-cover {
    border-radius: var(--Radius---lg);
}

.cc-col-map{
    border-radius: var(--Radius---lg);
    height: 100%;
    width: 100%;
    position: relative;
}

@media (max-width: 992px) {
    .cc-col-map{
        min-height: 300px;
    }
}

.cc-col-map-polylines{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 568px) {
    .cc-main-photo, .cc-carousel{
        height: 422px;
    }
}

@media (min-width: 568px) and (max-width: 992px) {
    .cc-main-photo, .cc-carousel{
        height: 582px;
    }
}

@media (min-width: 992px) {
    .cc-main-photo, .cc-carousel{
        height: 742px;
    }
}

.cc-badge-sm{
    font-size: 12px;
    padding: 2px 4px;
    /* display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; */
    border-radius: var(--Radius---sm);
}

.cc-badge-md{
    font-size: 14px;
    padding: 2px 4px;
    /* display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; */
    border-radius: var(--Radius---sm);
}

.cc-badge-lg{
    font-size: 16px;
    padding: 2px 4px;
    /* display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; */
    border-radius: var(--Radius---lg);
}

.cc-badge-new{
    color: var(--primary-blue);
    background-color: var(--primary-primary-yellow);
}

.cc-badge-new-fixed{
    position: absolute;
    z-index: 1;
    top: 0.75rem;
    right: 0.75rem;
    margin-left: auto;
}

.cc-badge-height{
    color: var(--primary-blue);
    background-color: var(--Background-Secondary);
}

.cc-badge-photo{
    background-color: transparent;
    position: absolute;
    z-index: 1000;
    bottom: 0;
    right: 0;
    margin-left: auto;
}

.cc-badge-photo a{
    /*text-shadow: 2px 2px 2px #000000;*/
    color: white
}

.cc-profile-listing{
    font-size: 12px;
    border-bottom: 1px solid var(--Borders-Border-Main);
    color: var(--Text-Bodytext);
    padding-bottom: 8px;
}

.cc-category {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    position: relative;
    z-index: 0;
    color: var(--White);
}

.cc-category::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.cc-category-1::before{
    background-color: var(--color-cat1);
}

.cc-category-2::before{
    background-color: var(--color-cat2);
}

.cc-category-3::before{
    background-color: var(--color-cat3);
}

.cc-category-4::before{
    background-color: var(--color-cat4);
}

.cc-category-5::before{
    background-color: var(--color-cat5);
}

.cc-color-cat1{
    color: var(--color-cat1);
}

.cc-color-cat2{
    color: var(--color-cat2);
}

.cc-color-cat3{
    color: var(--color-cat3);
}

.cc-color-cat4{
    color: var(--color-cat4);
}

.cc-color-cat5{
    color: var(--color-cat5);
}

.cc-bg-cat1{
    background-color: var(--color-cat1);
    color: white;
}

.cc-bg-cat2{
    background-color: var(--color-cat2);
    color: white;
}

.cc-bg-cat3{
    background-color: var(--color-cat3);
    color: white;
}

.cc-bg-cat4{
    background-color: var(--color-cat4);
    color: white;
}

.cc-bg-cat5{
    background-color: var(--color-cat5);
    color: white;
}

.cc-stat-cat0{
    border: none!important;
}

.cc-stat-cat1{
    border-left-color: var(--color-cat1);
}

.cc-stat-cat2{
    border-left-color: var(--color-cat2);
}

.cc-stat-cat3{
    border-left-color: var(--color-cat3);
}

.cc-stat-cat4{
    border-left-color: var(--color-cat4);
}

.cc-stat-cat5{
    border-left-color: var(--color-cat5);
}

.card-header, .card-footer{
    background-color: transparent;
    color: var(--Text-Bodytext);
}

.cc-profile-img-modal{
    max-width: 100%;
    display: block;
    margin: auto;
}

.card{
    background-color: var(--Background-Main);
    border: none;
}

.cc-card{
    background-color: var(--Background-Main);
    border: 1px solid black;
}

.tooltip-inner{
    font-size: 12px;
    background-color: var(--primary-darkgreen);
}

/* Customize the label (the container) */
.cc-chk-container {
    display: block;
    position: relative;
    padding-right: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.cc-chk-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.cc-chk-checkmark {
    position: absolute;
    top: 0;
    /*left: 0;*/
    margin-left: 8px;
    height: 20px;
    width: 20px;
    border: 1px solid var(--Borders-Border-Secondary);
    border-radius: var(--Radius---sm);
}

/* On mouse-over, add a grey background color */
.cc-chk-container:hover input ~ .cc-chk-checkmark {
    border-color: var(--Borders-Border-Active);
}

/* When the checkbox is checked, add a blue background */
.cc-chk-container input:checked ~ .cc-chk-checkmark {
    background-color: var(--Background-Alternate);
}

/* Create the checkmark/indicator (hidden when not checked) */
.cc-chk-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cc-chk-container input:checked ~ .cc-chk-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cc-chk-container .cc-chk-checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid var(--primary-primary-yellow);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*
.leaflet-popup-content-wrapper, .leaflet-popup-tip{
    border-radius: 3px!important;
}

.leaflet-popup-content {
    margin: 3px!important;
}
*/

.cc-area-label {
    background-color: rgb(255,255,255,0.9);
    /*color: var(--White);*/
    padding: 0 3px;
    border-radius: var(--Radius---sm);
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.cc-color-red {
    color: var(--color-cat2);
}

/* ▼ Triangle */
.cc-area-label::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;                  /* moves the triangle below the box */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--White);  /* same as background */
}

.cc-col-marker-no{
    opacity: 0.3;
}

.cc-border-bottom{
    border-bottom: 1px solid var(--Borders-Border-Secondary)
}

.cc-badge-perc{
    background-color: var(--Background-Secondary);
    border-radius: var(--Radius---sm);
}

.cc-icon-strava {
    border-radius: var(--Radius---sm);
}

.cc-bullet-month{
    background-color:var(--color-cat3);
    /*border:1px solid var(--Neutral-600);*/
    cursor: pointer;
    border-radius: 50%;
}

.cc-cols-bar{
    position: absolute;
    height: 4px;
    bottom: 0;
    border-radius: var(--Radius---sm);
    z-index: 1;
}

.cc-cols-bar-upper{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.cc-cols-bar-lg{
    height: 10px;
}

td, th {
    /*padding-top: 0.25rem!important;
    padding-bottom: 0.25rem!important; */
    vertical-align: middle;
}

.cc-card-header-2, .cc-card-body-2{
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

#cookieToast{
    background-color: var(--Button-Background-Primary);
    color: var(--Text-Bodytext-White);
}

.cc-trip-name{
    cursor: pointer;
}

.cc-map-control {
    cursor: pointer;
}

.cc-polyline-link-selected {
    position: relative;
}

.cc-polyline-link {
    transform: translateX(0);
    transition: transform 0.5s ease;
}

.cc-polyline-link.cc-polyline-link-selected {
    transform: translateX(15px);
}

.cc-polyline-link::before {
    content: "";
    position: absolute;
    left: -5px;
    bottom: 0;
    top: 2px;
    height: 15px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--color-cat2);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease;
}

.cc-polyline-link.cc-polyline-link-selected::before {
    opacity: 1;
}

.cc-opacity-0{
    display: none!important;
    opacity: 0;
    transition: display 0.5s, opacity 0.5s;
}

.cc-opacity-1{
    display: inherit;
    opacity: 1;
    transition: display 0.5s, opacity 0.5s;
}

.cc-map-banner{
    z-index: 2147483647!important;
    width: 250px;
}

.cc-map-banner img{
    border-radius: 25% var(--Radius---sm) 25% 25%;
    width: 100%!important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.cc-map-banner-close{
    background-color: var(--primary-darkgreen);
    border: none;
    border-radius: var(--Radius---sm);
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
}

.cc-panel {
    background-color: white;
    border: 4px solid white;
    border-radius: var(--Radius---sm);
    max-width: 50%;"
}

.leaflet-popup-content {
    margin: 5px 8px 5px 8px !important;
}

.leaflet-popup-content-wrapper {
    border-radius: var(--Radius---sm)!important;
}

.leaflet-container a{
    color: inherit!important;
}

.cc-complete{
    padding: 2px 4px;
    border-radius: var(--Radius---sm);
}

.cc-header-stat{
    min-width: 110px;
    border: 1px solid var(--Neutral-400);
    border-radius: var(--Radius---lg);
    background-color: var(--White);
    padding: 1rem;
}

.cc-header-stat-with-perc{
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
    border-bottom: 0!important;
    padding-bottom: 0.5rem!important;
}

#col-cloud {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 260px;
    margin: 0 auto;
}

.col-cloud-item {
    position: absolute;
    height: 60px;
    will-change: transform;
    user-select: none;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.25));
}