.elementor-10840 .elementor-element.elementor-element-7725ef2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .neb-protected-content-message, .elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for html, class: .elementor-element-5b9e5c5 *//* REPLACE OLD SIDEBAR CSS WITH THIS */

.map-library-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 32px;
    align-items: start;
}

.map-library-browser {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 26px;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.10),
        0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid rgba(130,37,26,0.10);

    display: flex;
    flex-direction: column;

    height: calc(100vh - 100px);
    min-height: 850px;
}

.map-library-search-wrap {
    margin-bottom: 22px;
}

.map-library-search {
    width: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    height: 58px;
    border-radius: 18px;
    padding: 0 22px;
    font-size: 16px;
    outline: none;
    transition: all .25s ease;
}

.map-library-search:focus {
    border-color: rgba(130,37,26,0.35);
    box-shadow: 0 0 0 4px rgba(130,37,26,0.08);
}

.map-library-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.map-library-tab {
    border: none;
    background: rgba(130,37,26,0.08);
    color: #82251A;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.map-library-tab.active {
    background: #82251A;
    color: #fff;
    box-shadow: 0 10px 24px rgba(130,37,26,0.20);
}

.map-library-grid {
    display: none;
    overflow-y: auto;
    padding-right: 8px;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.map-library-grid.active {
    display: grid;
}

.map-library-grid::-webkit-scrollbar {
    width: 8px;
}

.map-library-grid::-webkit-scrollbar-thumb {
    background: rgba(130,37,26,0.25);
    border-radius: 999px;
}

.map-library-item {
    border: none;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.06),
        0 2px 6px rgba(0,0,0,0.04);
}

.map-library-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 22px 45px rgba(0,0,0,0.12),
        0 6px 14px rgba(0,0,0,0.08);
}

.map-library-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.map-library-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.28);

    color: #fff;
    font-size: 40px;

    transition: all .25s ease;
}

.map-library-item:hover .map-library-play {
    background: rgba(0,0,0,0.15);
}

.map-library-info {
    padding: 18px;
}

.map-library-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 6px;
}

.map-library-item-type {
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-library-audio-thumb {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #82251A,
        #a33728
    );

    color: #fff;
    font-size: 54px;
}

.map-library-empty {
    border: 2px dashed rgba(130,37,26,0.18);
    background: rgba(130,37,26,0.03);
}

.map-library-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(130,37,26,0.05);

    color: #82251A;
    font-size: 52px;
    font-weight: 300;
}

@media (max-width: 1200px) {

    .map-library-main {
        grid-template-columns: 1fr;
    }

    .map-library-browser {
        height: auto;
        min-height: unset;
    }

    .map-library-grid {
        overflow: visible;
    }

}

@media (max-width: 767px) {

    .map-library-grid {
        grid-template-columns: 1fr;
    }

}/* End custom CSS */