/* LOADER RING */

.lds-ring {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 25px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 3px;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ACCOUNT PAGE DASHBOARD */

.header-cards {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.card-account {
    display: flex;
    width: 50%;
    padding: 15px;
    color: #000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.card-account:hover {
    background-color: #f2f2f2;
}

.card-account .account-img {
    background-color: #10493d; 
    width: 80px; 
    height: 80px; 
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.card-account .account-body {
    padding-left: 20px !important;
    height: 80px;
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.card-account .account-body h5,
.card-account .account-body p {
    margin: 0;
}

.card-account .account-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
}

@media only screen and (max-width: 768px) {

    .card-account {
        width: 100%;
    }

}

/* PASSPORT REQUEST MANAGER PAGE */

.passport-requests .passport-counter {
    width: 100%;
    position: relative;
    padding: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.passport-requests .passport-counter h5 {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
}
.passport-requests .passport-counter p {
    color: #fff;
    margin-bottom: 0;
    font-size: 45px;
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
}

.passport-requests .passport-counter svg {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    opacity: 0.5;
    fill: var(--third-color);
}

.passport-requests .passport-counter:not(.total) svg {
    fill: #fff;
}

.passport-requests .passport-counter.total {
    background-color: #0F493D;
}

.passport-requests .passport-counter.requested {
    background-color: #FB7F50;
}

.passport-requests .passport-counter.delivery {
    background-color: #2370B0;
}

.passport-requests .passport-counter.complete {
    background-color: #00A32A;
}

.passport-requests .table-wrapper {
    margin-top: 45px;
}

.passport-requests .table-wrapper .dataTables_filter {
    float: left;
    width: 100%;
    max-width: 450px;
    margin-bottom: 25px;
    position: relative;
}

.passport-requests .dataTables_filter svg {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.passport-requests .dataTables_filter input[type="search"] {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 7px 14px 7px 45px;
    height: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    transition: .25s ease;
    -webkit-transition: .25s ease;
    -moz-transition: .25s ease;
    -ms-transition: .25s ease;
    -o-transition: .25s ease;
}

.passport-requests thead th {
    background-color: #0F493D;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    padding: 10px;
    border: 1px solid #eee;
    vertical-align: middle;
}

.passport-requests tbody td {
    font-weight: 500;
    font-size: 14px;
    text-align: left;
    padding: 10px;
    border: 1px solid #eee;
    vertical-align: middle;
    background-color: #fff;
}

.passport-requests tbody td:nth-child(2) {
    font-weight: 700;
    color: #000;
}

.passport-requests tbody td:nth-last-child(-n + 2) {
    text-align: center;
    padding: 8px 0px;
}

.passport-requests tbody td:last-child a {
    display: inline-block;
    padding: 8px 24px;
    background-color: #0F493C;
    border: 1px solid #0F493C;
    color: #fff;
    font-weight: 600;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.passport-requests tbody td:last-child a:hover {
    background-color: transparent;
    color: #0F493C;
}

.passport-requests .status {
    padding: 6px 10px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.passport-requests .status.request {
    background-color: #FB7F50;
}

.passport-requests .status.delivered {
    background-color: #2370B0;
}

.passport-requests .status.completed {
    background-color: #00A32A;
}

.passport-requests .status.cancelled {
    background-color: #838383;
}

.passport-requests .status.deleted {
    background-color: #B32E2E;
}

.passport-requests .dataTables_wrapper .dataTables_info {
    padding-top: calc(0.755em + 15px);
}

.passport-requests .dataTables_wrapper .dataTables_paginate {
    padding-top: calc(0.25em + 15px);
}

.passport-requests .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.passport-requests .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #0F493D;
    border-color: #0F493D;
    font-weight: 700;
    color: #fff !important;
}

.passport-requests .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #0F493D;
    border-color: #0F493D;
}

.passport-requests .dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.passport-requests .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.passport-requests .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    opacity: 0.5;
}

/* PASSPORT PAGE */

.passport-page .header {
    background-color: #0F493C;
    padding: 20px 32px;
}

.passport-page .header h4 {
    padding: 0;
    margin: 0;
    color: #fff;
    line-height: 1em;
}

.passport-activity form,
.passport-activity .wrapper {
    background-color: #F2F2F2;
    padding: 25px;
}

.passport-activity ul.timeline {
    padding-left: 10px;
}

.passport-activity ul.timeline li {
    border-left: 2px solid #fff;
    padding: 0px 30px 30px 30px;
    position: relative;
}

.passport-activity ul.timeline li:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.passport-activity ul.timeline li::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #0F493C;
    left: -10px;
    top: 1px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.passport-activity ul.timeline strong {
    margin-bottom: 0px;
    margin-top: 0;
    line-height: 1.25em;
    color: #000;
    font-size: 16px;
}

.passport-activity ul.timeline p {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 16px;
}

.passport-activity form h5 {
    margin-top: 0;
}

.passport-activity form textarea {
    margin-bottom: 25px;
}

.passport-activity .submit-group {
    display: flex;
    align-items: center;
}

.passport-activity .submit-group input[type="submit"] {
    margin-right: 10px;
}

.passport-activity .submit-group .lds-ring div {
    border: 3px solid #000;
    border-color: #000 transparent transparent transparent;
}

.passport-activity .output-message {
    padding: 8px 12px;
    color: #fff;
    margin-top: 15px;
    text-align: center;
}

.passport-activity .output-message.success {
    background-color: #00A32A;
}

.passport-activity .output-message.error {
    background-color: #B32E2E;
}

.passport-id {
    margin-bottom: 35px;
}

.passport-id .wrapper {
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.passport-id .avatar {
    width: 80px;
    height: 80px;
    border-radius: 350px;
    -webkit-border-radius: 350px;
    -moz-border-radius: 350px;
    -ms-border-radius: 350px;
    -o-border-radius: 350px;
    background-color: #C5C5C5;
    border: 3px solid #E2CC96;
    display: flex;
    align-items: center;
    justify-content: center;
}

.passport-id .avatar span {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.passport-id h4 {
    margin-bottom: 0;
}

.passport-id h5 {
    margin-top: 0;
}

.passport-id p {
    margin-bottom: 5px;
}

.passport-id a {
    color: var(--primary-color);
}

.passport-id a:hover {
    color: var(--secondary-color);
}

.passport-id .status {
    display: inline-block;
    padding: 4px 8px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.passport-id .status.request {
    background-color: #FB7F50;
}

.passport-id .status.delivered {
    background-color: #2370B0;
}

.passport-id .status.completed {
    background-color: #00A32A;
}

.passport-id .status.cancelled {
    background-color: #838383;
}

.passport-id .status.deleted {
    background-color: #B32E2E;
}

.passport-status .wrapper {
    border: 1px solid #e0e0e0;
    padding: 30px;
}

.passport-status .wrapper .submit-group {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.passport-status .wrapper button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    background: #10493C;
    color: #fff;
    padding: 0 20px;
    line-height: 40px;
    height: 40px;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    outline: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    margin-right: 10px;
}

.passport-status .lds-ring div {
    border: 3px solid #000;
    border-color: #000 transparent transparent transparent;
}

.passport-status .output-message {
    padding: 8px 12px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

.passport-status .output-message.success {
    background-color: #00A32A;
}

.passport-status .output-message.error {
    background-color: #B32E2E;
}

/* Where Stamp and Where Pickup */

.passport-where-pickup,
.passport-where-stamp {
    display: flex;
    flex-direction: column;
}

.passport-where-pickup .filters-container,
.passport-where-stamp .filters-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
    margin-bottom: 35px;
}

.passport-where-pickup .filters-container .filter-item,
.passport-where-stamp .filters-container .filter-item {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ededed;
    margin: 4px;
}

.passport-where-pickup .filters-container .filter-item:hover,
.passport-where-stamp .filters-container .filter-item:hover {
    cursor: pointer;
}

.passport-where-pickup .filter-item input,
.passport-where-stamp .filter-item input {
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    left: -300px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.passport-where-pickup .filter-item.checked,
.passport-where-stamp .filter-item.checked {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.passport-where-pickup .lds-ring,
.passport-where-stamp .lds-ring {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    align-self: center;
}

.passport-where-pickup .lds-ring div,
.passport-where-stamp .lds-ring div {
    border: 4px solid #222222;
    border-color: #222222 transparent transparent transparent;
    margin-left: auto;
    margin-right: auto;
    width: 35px;
    height: 35px;
}

/* Where box */

.where-box .wrapper {
    background-color: #F2F2F2;
    padding: 25px;
    display: flex;
    margin-bottom: 25px;
}

.where-box .image-col {
    width: 250px;
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.where-box .text-col {
    flex: 1;
    padding-left: 25px;
}

.where-box h3 {
    margin-top: 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.where-box h3 a {
    color: var(--fourth-color);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.where-box h3 a:hover {
    color: var(--primary-color);
}

.where-box .type {
    background-color: #E2CC96;
    color: #000;
    padding: 4px;
}

.where-box .address {
    margin-top: 8px;
}

.where-box .schedule h6,
.where-box .contact h6 {
    margin: 0;
    line-height: 1;
}

.where-box .schedule p,
.where-box .contact p {
    margin-top: 0;
    margin-bottom: 8px;
}

.where-box a {
    color: var(--primary-color);
}

.where-box .schedule li {
    margin-bottom: 8px;
}

@media only screen and (max-width: 690px) {

    .where-box .image-col {
        width: 120px;
        height: 120px;
    }

}

@media only screen and (max-width: 480px) {

    .where-box .image-col {
        display: none;
    }

    .where-box .text-col {
        padding-left: 0px;
    }

}

/* LINE ROUTE NAVIGATION */

.line-routes-container .line-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.line-routes-container .line-wrapper::before,
.line-routes-container .line-wrapper::after {
    content: "";
    display: block;
    width: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
    background: rgb(255,255,255);
}

.line-routes-container .line-wrapper::before {
    left: -10px;
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 85%);
}

.line-routes-container .line-wrapper::after {
    right: -10px;
	background: linear-gradient(90deg, rgba(255,255,255,0) 15%, rgba(255,255,255,1) 65%, rgba(255,255,255,1) 100%);
}

.line-routes-container .line-wrapper .col {
    width: 11.111%;
}

.line-routes-container .line-item {
    display: block;
    text-align: center;
    padding: 15px 0;
}

.line-routes-container .line-item .marker-wrapper {
    position: relative;
}

.line-routes-container .line-item .marker-wrapper::before {
    content: "";
    position: absolute;
    height: 6;
    top: 50%;
    left: 0;
    right: 0;
    background-color: #ddd;
    z-index: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.line-routes-container .line-wrapper .col:first-child .line-item .marker-wrapper::before {
    left: 50%;
}

.line-routes-container .line-wrapper .col:last-child .line-item .marker-wrapper::before {
    right: 50%;
}

.line-routes-container .line-item .marker-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    z-index: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 20px solid #000;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.line-routes-container .line-item .icon {
    position: relative;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 6px solid #000;
    border-radius: 100%;
    background-color: #fff;
    z-index: 1;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.line-routes-container .line-item .icon span {
    display: block;
    font-size: 16px;
    line-height: 13px;
    font-weight: 600;
    color: #333333;
}

.line-routes-container .line-item.active .icon,
.line-routes-container .line-item:hover .icon {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.line-routes-container .line-item .title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: initial;
    margin: 15px auto 0 auto;
    padding: 0 15px;
}

.line-routes-container .line-item.active .title {
    font-weight: 700;
}

@media screen and (max-width: 991px) {

    .line-routes-container .line-wrapper .col {
        width: 20%;
    }

}

@media screen and (max-width: 768px) {

    .line-routes-container .line-wrapper::before,
    .line-routes-container .line-wrapper::after {
        display: none;
    }

    .line-routes-container .wrapper {
        overflow-x: auto;
    }

    .line-routes-container .wrapper::-webkit-scrollbar {
        width: 100%;
        height: 6px;
        background-color: #F7F7F7;
    }

    .line-routes-container .wrapper::-webkit-scrollbar-thumb {
        background-color: #DDDDDD;
    }

    .line-routes-container .line-wrapper {
        flex-wrap: nowrap;
        width: calc(130px * 9);
    }

    .line-routes-container .line-wrapper .col {
        width: 130px;
    }

}

/* eMTB GRAND TOUR */

.emtb-accommodations .header .day-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.emtb-accommodations .header .day-filter-list button {
    appearance: none;
    background-color: transparent;
    border: 1px solid var(--fourth-color);
    border-radius: 100px;
    padding: 6.5px 18px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    line-height: 22px;
    outline: none;
}

.emtb-accommodations .header .day-filter-list button.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.emtb-accommodations .header .day-filter-list button:hover {
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.emtb-accommodations .accommodation-grid-item {
    margin-top: 30px; 
}

.accommodation-grid-item button {
    appearance: none;
    background-color: transparent;
    border: none;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.accommodation-grid-item button:hover {
    cursor: pointer;
}

.accommodation-grid-item .img-holder {
    position: relative;
    width: 100%;
    height: 335px;
    overflow: hidden;
    transform: rotate3d(0);
}

.accommodation-grid-item .img-holder > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.accommodation-grid-item button:hover .img-holder > img {
    transform: scale(1.1);
}

.accommodation-grid-item .img-holder .partner-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 65px;
    height: 65px;
    z-index: 99;
}

.accommodation-grid-item .img-holder .safe-clean-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 68px;
    height: 68px;
    z-index: 99;
}

.accommodation-grid-item .img-holder .title-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 60px 25px 25px 25px;
    background: rgb(33,33,33);
    background: linear-gradient(0deg, rgba(33,33,33,1) 0%, rgba(33,33,33,0) 100%);
}

.accommodation-grid-item .img-holder .title-wrapper ul.stars-wrapper {
    display: flex;
    gap: 0 6px;
    margin-bottom: 10px;
}

.accommodation-grid-item .img-holder .title-wrapper ul.stars-wrapper li {
    color: var(--third-color);
}

.accommodation-grid-item .img-holder .title-wrapper h2 {
    font-size: 24px;
    line-height: 34px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.accommodation-grid-item .meta-wrapper {
    width: 100%;
    height: 100%;
    padding: 25px;
    border-left: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    border-right: 1px solid #ededed;
}

.accommodation-grid-item .meta-wrapper ul.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.accommodation-grid-item .meta-wrapper ul.list li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-align: left;
    color: var(--fourth-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.accommodation-grid-item .meta-wrapper ul.list li i {
    font-size: 12px;
    line-height: 36px;
    color: #fff;
    background-color: var(--fourth-color);
    height: 35px;
    width: 35px;
    border-radius: 100%;
    text-align: center;
}

.accommodation-grid-item .meta-wrapper ul.list li span {
    flex: 1;
}

.accommodation-popup-item {
    max-width: 630px;
    margin: 0 auto;
    background-color: #fff;
    position: relative;
}

.accommodation-popup-item .mfp-close {
    top: 0px !important;
    background-color: var(--fifth_color);
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    opacity: 1;
}

.accommodation-popup-item .img-holder {
    position: relative;
    width: 100%;
    height: 335px;
}

.accommodation-popup-item .img-holder > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-popup-item .img-holder .partner-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 65px;
    height: 65px;
    z-index: 99;
}

.accommodation-popup-item .img-holder .safe-clean-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 68px;
    height: 68px;
    z-index: 99;
}

.accommodation-popup-item .img-holder .title-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 60px 25px 25px 25px;
    background: rgb(33,33,33);
    background: linear-gradient(0deg, rgba(33,33,33,1) 0%, rgba(33,33,33,0) 100%);
}

.accommodation-popup-item .img-holder .title-wrapper ul.stars-wrapper {
    display: flex;
    gap: 0 6px;
    margin-bottom: 10px;
}

.accommodation-popup-item .img-holder .title-wrapper ul.stars-wrapper li {
    color: var(--third-color);
}

.accommodation-popup-item .img-holder .title-wrapper h2 {
    font-size: 24px;
    line-height: 34px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

.accommodation-popup-item .img-holder .title-wrapper ul.meta-data {
    display: flex;
    gap: 15px;
}

.accommodation-popup-item .img-holder .title-wrapper ul.meta-data li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.accommodation-popup-item .img-holder .title-wrapper ul.meta-data li svg {
    color: var(--third-color);
}

.accommodation-popup-item .meta-wrapper {
    padding: 25px;
}

.accommodation-popup-item .meta-wrapper h5 {
    margin: 0;
}

.accommodation-popup-item .meta-wrapper .actions {
    display: flex;
    gap: 15px;
}

/* eMTB GRAND TOUR MAP */

.emtb-map .map-container {
    height: 480px;
}

.emtb-map .filters-container {
    margin-bottom: 30px;
}

.emtb-map .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.emtb-map .filters li {
    position: relative;
    overflow: hidden;
}

.emtb-map .filters li input[type="checkbox"] {
    position: absolute;
    left: -3000px;
}

.emtb-map .filters li label {
    display: inline-block;
    border: 1px solid var(--fourth-color);
    border-radius: 100px;
    padding: 6.5px 18px;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
}

.emtb-map .filters li label:hover {
    cursor: pointer;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.emtb-map .filters li label span {
    color: var(--fourth-color);
    transition: all 0.3s ease-in-out;
}

.emtb-map .filters li input[type="checkbox"]:checked ~ label:hover span,
.emtb-map .filters li label:hover span {
    color: #fff;
}

.emtb-map .filters li input[type="checkbox"]:checked ~ label {
    border-color: var(--primary-color);
}

.emtb-map .filters li input[type="checkbox"]:checked ~ label span {
    color: var(--primary-color);
}