/* Month group alternating backgrounds are now handled per-module in frontend.css.php
   using the configurable slider_background_color setting. */

/* Marker group item styling */
[id^="vhc-event-marker-group_"] li {
    text-align: center;
    color: #333;
}

/* Handle button styling */
[id^="vhc-event-handle-start_"],
[id^="vhc-event-handle-end_"] {
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s;
}

[id^="vhc-event-handle-start_"]:hover,
[id^="vhc-event-handle-end_"]:hover {
    transform: scale(1.1);
}

[id^="vhc-event-handle-start_"]:active,
[id^="vhc-event-handle-end_"]:active {
    transform: scale(0.95);
}

/* ── Date range label (above calendar toggle button in toolbar) ──────────── */
.vhc-range-label {
    display: block;
    font-size: 20px;
    font-weight: 200;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    margin-bottom: 2px;
    opacity: 0.7;
    letter-spacing: 0.02em;
}

/* ── Calendar Date-Range Picker ────────────────────────────────────────────── */

[id^="vhc-cal-picker_"] {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 600;
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 6px 12px 14px;
}

.vhc-cal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 4px 8px;
    gap: 8px;
}

.vhc-cal-toolbar-label {
    font-size: 12px;
    color: #888;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vhc-cal-months-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vhc-cal-month-panel {
    flex: 1 1 180px;
    min-width: 220px;
}

@media (max-width: 576px) {
    .vhc-cal-months-wrap .vhc-cal-month-panel:last-child {
        display: none;
    }
}

.vhc-cal-month-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* Month header doubles as a quick-snap button */
.vhc-cal-month-snap {
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.12s, background 0.12s;
    padding: 2px 6px;
    user-select: none;
}

.vhc-cal-month-snap:hover {
    color: #0f323c;
    background: rgba(150, 229, 202, 0.3);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vhc-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.vhc-cal-dow {
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    color: #aaa;
    padding: 2px 0 4px;
    text-transform: uppercase;
}

.vhc-cal-day {
    position: relative;
    text-align: center;
    font-size: 11px;
    padding: 0;
    cursor: pointer;
    border: none;
    background: transparent;
    color: inherit;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.1s, color 0.1s;
    line-height: 1;
}

.vhc-cal-day:hover:not(:disabled):not(.vhc-cal-other-month) {
    background: rgba(150, 229, 202, 0.35);
}

.vhc-cal-other-month {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}

.vhc-cal-day:disabled {
    color: #ddd;
    cursor: not-allowed;
    border: 0;
    background-color: unset;
}

/* Today dot */
.vhc-cal-day.vhc-cal-today::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #17a2b8;
}

/* In-range fill (pill strip) */
.vhc-cal-day.vhc-cal-in-range {
    background: rgba(150, 229, 202, 0.28);
    border-radius: 0;
}

/* Start / End endpoints */
.vhc-cal-day.vhc-cal-range-start,
.vhc-cal-day.vhc-cal-range-end {
    background: #95e5ca;
    color: #0f323c;
    font-weight: 700;
    border-radius: 50%;
    z-index: 1;
}

/* Connected pill: blend endpoint circle into the strip */
.vhc-cal-day.vhc-cal-range-start.vhc-cal-in-range {
    border-radius: 50% 0 0 50%;
}

.vhc-cal-day.vhc-cal-range-end.vhc-cal-in-range {
    border-radius: 0 50% 50% 0;
}

/* Nav buttons (prev / next) */
.vhc-cal-nav-btn {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 12px;
    padding: 3px 8px;
    color: #666;
    border-radius: 4px;
    line-height: 1.4;
    transition: background 0.1s, border-color 0.1s;
}

.vhc-cal-nav-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Close (X) button */
.vhc-cal-close-btn {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 12px;
    color: #aaa;
    padding: 3px 7px;
    border-radius: 4px;
    line-height: 1.4;
    transition: background 0.1s, color 0.1s;
}

.vhc-cal-close-btn:hover {
    color: #444;
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Calendar Bottom Navigation Footer */
.vhc-cal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px 2px;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Selecting state cursor on day cells */
[id^="vhc-cal-picker_"].vhc-cal-selecting .vhc-cal-day:not(:disabled):not(.vhc-cal-other-month) {
    cursor: crosshair;
}

/* ── Calendar Grid View (calview) ─────────────────────────────────────────── */

/* Horizontal scroll track — hides scrollbar, snaps per panel */
.vhc-calview-track {
    display: flex;
    overflow-x: auto;
    overflow-y: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: fit-content;
    scrollbar-width: none;
}

.vhc-calview-track::-webkit-scrollbar {
    display: none;
}

/* Month panel — default width: 100% (overridden per-module via frontend.css.php at all breakpoints) */
.vhc-calview-month-panel {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 4px 6px 4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: fit-content;
}

/* Month heading row with prev/next scroll buttons */
.vhc-calview-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0 5px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    flex-shrink: 0;
}

.vhc-calview-month-name {
    flex: 1;
    text-align: center;
}

.vhc-calview-nav-btn {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    color: #666;
    line-height: 1.5;
    transition: background 0.1s, border-color 0.1s;
    flex-shrink: 0;
}

.vhc-calview-nav-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.1);
}

.vhc-calview-nav-btn.cv-invisible {
    visibility: hidden;
    pointer-events: none;
}

/* 7-col calendar grid */
.vhc-calview-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    flex: 1;
    height: fit-content;
}

/* Day-of-week header cells */
.vhc-calview-dow {
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    color: #bbb;
    padding: 1px 0 3px;
    text-transform: uppercase;
}

/* Individual day cell */
.vhc-calview-day {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 3px;
    padding: 2px 2px 1px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.1s;
}

.vhc-calview-day:not(.vhc-calview-blank):not(.vhc-calview-out-of-range):hover {
    border-color: #95e5ca;
}

.vhc-calview-blank {
    background: transparent;
    border-color: transparent;
}

.vhc-calview-out-of-range {
    background: rgba(0, 0, 0, 0.02);
    opacity: 0.38;
}

.vhc-calview-empty {
    background: rgba(0, 0, 0, 0.01);
}

/* Day number — sits above any absolutely-positioned thumb containers */
.vhc-calview-day-num {
    font-size: 8px;
    font-weight: 700;
    color: #999;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

/* ── Thumbnail layout modifiers ──────────────────────────────────────────── */

/* Base thumbs container */
.vhc-calview-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
}

/* 1 event: single image fills all remaining cell space */
.vhc-calview-thumbs.cv-fill {
    position: absolute;
    inset: 14px 2px 2px 2px;
    /* 14px top clears the day number */
    flex-wrap: nowrap;
}

.vhc-calview-thumbs.cv-fill .vhc-calview-thumb {
    width: 100%;
    height: 100%;
    border-radius: 2px;
}

/* 2 events: stacked vertically at full width */
.vhc-calview-thumbs.cv-stack2 {
    position: absolute;
    inset: 14px 2px 2px 2px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1px;
}

.vhc-calview-thumbs.cv-stack2 .vhc-calview-thumb {
    width: 100%;
    flex: 1;
    min-height: 0;
    /* lets flex children shrink below content size */
    border-radius: 2px;
}

/* 3–4 events and 5+ growing cells: small square grid (default sizes) */
.vhc-calview-thumbs.cv-grid {
    flex-wrap: wrap;
}

/* Base thumb */
.vhc-calview-thumb {
    width: 46%;
    /* height: 28px; */
    object-fit: cover;
    border-radius: 2px;
    cursor: pointer;
    flex: 2 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s, opacity 0.1s;
    background: #e8f8f3;
}

.vhc-calview-thumb:hover {
    transform: scale(1.12);
    opacity: 0.88;
    z-index: 2;
    position: relative;
}

/* No-photo placeholder */
.vhc-calview-thumb-nophoto {
    background: linear-gradient(135deg, #95e5ca 0%, #5dcfb0 100%);
    color: #0f323c;
    font-size: 9px;
}

/* Overflow "+N" badge */
.vhc-calview-overflow {
    background: rgba(0, 0, 0, 0.09);
    color: #555;
    font-size: 8px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
}

.vhc-calview-overflow:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* ── Calview Event Detail Modal ─────────────────────────────────────────────── */
.vhc-calview-modal {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.25s ease;
}

.vhc-calview-modal.show {
    display: flex;
}

.vhc-calview-modal-dialog {
    position: relative;
    width: 92%;
    max-width: 400px;
    max-height: 800px;
    overflow: visible;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    animation: cvModalIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cvModalIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}
.vhc-calview-modal-close:active {

    position: absolute;
}
.vhc-calview-modal-close:focus {
    outline: none;
    position: absolute;
}

.vhc-calview-modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 1070;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    padding: 0;
}

.vhc-calview-modal-close:hover {
    background: #f8f9fa;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.vhc-calview-modal-close:active {
    transform: scale(0.95);
}

/* Modal body scrolls; dialog frame (and close btn) stays fixed */
.vhc-calview-modal-body {
    overflow-y: auto;
    max-height: 80vh;
    padding: 24px;
    border-radius: 12px;
    box-sizing: border-box;
}

/* Responsive Modal Dialog override */
@media (max-width: 576px) {
    .vhc-calview-modal-dialog {
        width: 95%;
        max-height: 95vh;
        margin: 10px auto;
    }

    .vhc-calview-modal-body {
        max-height: 85vh;
        padding: 16px;
    }

    .vhc-calview-modal-close {
        top: 8px;
        right: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

/* ── Premium 3D Card Flip CSS System ────────────────────────────────────────── */
.vhc-modal-events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

/* Precise CSS Grid matches for calendar layouts */
.vhc-modal-events-grid.vhc-grid-layout-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-2 .vhc-modal-grid-item {
    max-width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-3 .vhc-modal-grid-item {
    max-width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-3 .vhc-modal-grid-item:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
    width: 50%;

}

.vhc-modal-events-grid.vhc-grid-layout-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-4 .vhc-modal-grid-item {
    max-width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-5,
.vhc-modal-events-grid.vhc-grid-layout-6,
.vhc-modal-events-grid.vhc-grid-layout-7,
.vhc-modal-events-grid.vhc-grid-layout-8,
.vhc-modal-events-grid.vhc-grid-layout-9,
.vhc-modal-events-grid.vhc-grid-layout-10,
.vhc-modal-events-grid.vhc-grid-layout-11,
.vhc-modal-events-grid.vhc-grid-layout-12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.vhc-modal-events-grid.vhc-grid-layout-5 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-6 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-7 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-8 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-9 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-10 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-11 .vhc-modal-grid-item,
.vhc-modal-events-grid.vhc-grid-layout-12 .vhc-modal-grid-item {
    max-width: 100%;
}

.vhc-modal-grid-item {
    flex: 1 1 280px;
    max-width: 380px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
}

.vhc-flip-container {
    perspective: 1000px;
    width: 100%;
    height: fit-content;
    position: relative;
}

@media (max-width: 576px) {

    .vhc-modal-events-grid.vhc-grid-layout-2,
    .vhc-modal-events-grid.vhc-grid-layout-3,
    .vhc-modal-events-grid.vhc-grid-layout-4,
    .vhc-modal-events-grid.vhc-grid-layout-5,
    .vhc-modal-events-grid.vhc-grid-layout-6,
    .vhc-modal-events-grid.vhc-grid-layout-7,
    .vhc-modal-events-grid.vhc-grid-layout-8,
    .vhc-modal-events-grid.vhc-grid-layout-9,
    .vhc-modal-events-grid.vhc-grid-layout-10,
    .vhc-modal-events-grid.vhc-grid-layout-11,
    .vhc-modal-events-grid.vhc-grid-layout-12 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .vhc-modal-events-grid.vhc-grid-layout-3 .vhc-modal-grid-item:nth-child(3) {
        grid-column: span 2 !important;
        width: 100% !important;
    }

    .vhc-flip-container {
        /*  height: 200px !important;*/
        /* Shorter card height on smaller mobile displays to make them look beautifully square-like */
    }

    .vhc-card-front-title {
        font-size: 0.95rem !important;
        /* Scaled typography for mobile grids */
    }

    .vhc-card-front-meta {
        font-size: 0.75rem !important;
    }
}

.vhc-flip-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vhc-flip-container.flipped .vhc-flip-card {
    transform: rotateY(180deg);
}

.vhc-flip-front,
.vhc-flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Front Cover Visual Card */
.vhc-flip-front {
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transform: rotateY(0deg);
}

.vhc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vhc-flip-container:hover .vhc-card-img {
    transform: scale(1.05);
}

.vhc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.vhc-card-front-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    color: #ffffff;
    z-index: 2;
    pointer-events: none;
}

.vhc-card-front-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
    color: rgba(255, 255, 255, .8)
}

.vhc-card-front-meta {
    font-size: 0.85rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.vhc-card-front-badge {
    background: #95e5ca;
    color: #0f323c;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vhc-card-front-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.vhc-card-front-date i {
    font-size: 0.8rem;
    color: #95e5ca;
}

/* Flip Back (Listing Card) */
.vhc-flip-back {
    transform: rotateY(180deg);
    background: #ffffff;
    overflow-y: auto;
    z-index: 1;
}

/* Make sure the nested Beaver Builder card template fits cleanly inside .vhc-flip-back */
.vhc-flip-back .pb-2.px-1 {
    width: 100% !important;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.vhc-flip-back .card {
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: none !important;
}

/* ── Premium Master Flip Multi-Event Styles ───────────────────────────────── */
.vhc-modal-master-flip {
    height: fit-content;
    margin: 0 auto;
    width: 100%;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vhc-multi-list-face,
.vhc-multi-detail-face {
    background: #ffffff;
    box-shadow: none !important;
    overflow-y: auto;
    height: 100%;
    padding: 5px;
}

.vhc-multi-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 5px 0;
}

.vhc-multi-event-item {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 50, 60, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vhc-multi-event-item:hover {
    background: rgba(149, 229, 202, 0.06);
    border-color: rgba(15, 50, 60, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 50, 60, 0.06);
}

.vhc-multi-event-item:active {
    transform: translateY(0);
}

.vhc-multi-event-marker {
    width: 4px;
    height: 32px;
    border-radius: 2px;
    margin-right: 12px;
    flex-shrink: 0;
}

.vhc-multi-event-info {
    flex: 1;
    min-width: 0;
    /* allows text truncation */
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vhc-multi-event-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f323c;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vhc-multi-event-date {
    font-size: 0.78rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vhc-multi-event-date i {
    color: #95e5ca;
    font-size: 0.8rem;
}

.vhc-multi-event-arrow {
    color: #b0bfc2;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    margin-left: 8px;
    flex-shrink: 0;
}

.vhc-multi-event-item:hover .vhc-multi-event-arrow {
    transform: translateX(3px);
    color: #0f323c;
}

.vhc-btn-back-to-list {
    background: transparent;
    border: 1px solid #0f323c;
    color: #0f323c;
    border-radius: 4px;
    padding: 6px 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.vhc-btn-back-to-list:hover {
    background: #0f323c;
    color: #ffffff !important;
}