

/* Start:/local/components/pashkei/floor.plan.viewer/templates/.default/style.css?178006050313203*/
.fpv {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
}

.fpv * {
    box-sizing: border-box;
}

.fpv-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin-bottom: 20px;
}

.fpv-nav__item {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.fpv-nav__label {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.fpv-nav__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    padding: 2px 24px 2px 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
}

.fpv-nav__item::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #666;
    border-bottom: 1.5px solid #666;
    transform: translateY(-60%) rotate(-45deg);
    transition: transform 0.2s;
    pointer-events: none;
}

.fpv-nav__item:has(.fpv-nav__select:focus)::after {
    transform: translateY(-35%) rotate(45deg);
}

.fpv-nav__select:focus {
    color: #009640;
}

.fpv-nav__select:hover {
    color: #009640;
}

.fpv-custom-select {
    display: none;
}

@media (min-width: 769px) {
    .fpv-nav__select {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }

    .fpv-nav__item::after {
        display: none;
    }

    .fpv-custom-select {
        display: block;
        position: relative;
    }
}

.fpv-custom-select__trigger {
    padding: 6px 28px 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    transition: color 0.15s, border-color 0.15s;
}

.fpv-custom-select__trigger::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #666;
    border-bottom: 1.5px solid #666;
    transform: translateY(-60%) rotate(-45deg);
    transition: transform 0.2s;
    pointer-events: none;
}

.fpv-custom-select__trigger--open::after {
    transform: translateY(-35%) rotate(45deg);
}

.fpv-custom-select__trigger:hover {
    color: #009640;
    border-color: #ccc;
}

.fpv-custom-select__options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 4px 0;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
}

.fpv-custom-select__option {
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.1s;
}

.fpv-custom-select__option:hover {
    background: #f5f5f5;
}

.fpv-custom-select__option--selected {
    font-weight: 600;
    color: #009640;
}

.fpv-plan-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.fpv-plan-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.fpv-plan-controls__btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.15s, color 0.15s;
    line-height: 1;
    padding: 0;
}

.fpv-plan-controls__btn:hover {
    background: #f0f0f0;
    color: #333;
}

.fpv-plan-controls__btn--zoomin {
    font-size: 22px;
    font-weight: bold;
}

.fpv-plan-controls__btn--zoomout {
    font-size: 24px;
    font-weight: bold;
}

.fpv-plan-controls__btn--reset {
    font-size: 20px;
}

.fpv-plan-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.fpv-plan-container svg {
    width: 100%;
    height: 100%;
    display: block;
    user-select: none;
    -webkit-user-select: none;
}

[data-plan-id].fpv-inactive {
    cursor: default !important;
    pointer-events: none;
}

[data-plan-id].fpv-inactive [id$="_floor"] {
    fill: none !important;
    opacity: 0 !important;
}

[data-plan-id]:not(.fpv-inactive) [id$="_floor"] {
    opacity: 0.5;
    transition: opacity 0.2s;
}

[data-plan-id]:hover:not(.fpv-inactive) [id$="_floor"],
[data-plan-id].fpv-highlight:not(.fpv-inactive) [id$="_floor"] {
    opacity: 0.8;
}

[data-plan-id].fpv-selected:not(.fpv-inactive) [id$="_floor"] {
    fill: #64B5F6 !important;
    opacity: 0.85;
}

.fpv-plan-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 18px;
}

.fpv-popup {
    position: fixed;
    z-index: 10000;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: fpvPopupIn 0.15s ease-out;
}

@keyframes fpvPopupIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fpv-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
}

.fpv-popup__title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.fpv-popup__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.fpv-popup__close:hover {
    color: #333;
}

.fpv-popup__body {
    padding: 10px 14px;
}

.fpv-popup__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fpv-popup__status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fpv-popup__status-text {
    font-size: 13px;
    color: #666;
}

.fpv-popup__footer {
    padding: 10px 14px;
    border-top: 1px solid #eee;
}

.fpv-popup__link {
    display: inline-block;
    padding: 6px 16px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.15s;
}

.fpv-popup__link:hover {
    background: #43A047;
    color: #fff;
    text-decoration: none;
}

.fpv-objects-list {
    margin-top: 30px;
}

.fpv-objects-list__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #333;
}

.fpv-objects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.fpv-object-card {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.15s, background 0.15s;
    cursor: default;
}

.fpv-object-card--highlight,
.fpv-object-card:hover {
    background: #f0f7f0;
    box-shadow: 0 0 0 2px #4CAF50;
}

.fpv-object-card[data-status="reservation"].fpv-object-card--highlight {
    background: #fffde7;
    box-shadow: 0 0 0 2px #FFC107;
}

.fpv-object-card[data-status="sales"].fpv-object-card--highlight {
    background: #f5f5f5;
    box-shadow: 0 0 0 2px #9E9E9E;
}

.fpv-object-card--selected {
    background: #e3f2fd;
    box-shadow: 0 0 0 2px #1976D2;
}

.fpv-object-card--selected.fpv-object-card--highlight {
    background: #bbdefb;
    box-shadow: 0 0 0 3px #1565C0;
}

.fpv-object-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.fpv-object-card__status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fpv-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.fpv-status-text {
    font-size: 13px;
    color: #666;
}

.fpv-object-card__link {
    display: inline-block;
    font-size: 13px;
    color: #5A5A5A;
    text-decoration: none;
    margin-top: auto;
}

.fpv-object-card__link:hover {
    text-decoration: underline;
}

.fpv-object-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.fpv-object-card__find {
    font-size: 13px;
    color: #5A5A5A;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    outline: none !important;
}

.fpv-object-card__find:hover {
    text-decoration: underline;
}

.fpv-objects-empty {
    padding: 30px;
    text-align: center;
    color: #999;
    font-size: 15px;
}

.fpv-handle {
    display: none;
}

.fpv-plan-controls__btn--fullscreen {
    font-size: 0;
    padding: 0;
}

.fpv-plan-controls__btn--fullscreen svg {
    width: 16px;
    height: 16px;
}

.fpv--fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: #fff;
    display: flex;
    flex-direction: column;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.fpv--fullscreen .fpv-nav {
    display: none;
}

.fpv--fullscreen .fpv-plan-wrapper {
    flex: 1;
    min-height: 0;
    margin-bottom: 0;
    position: relative;
}

.fpv--fullscreen .fpv-plan-container {
    height: 100% !important;
}

.fpv--fullscreen .fpv-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    flex-shrink: 0;
    cursor: row-resize;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.fpv-handle__bar {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #bbb;
}

.fpv--fullscreen .fpv-handle:hover .fpv-handle__bar,
.fpv--fullscreen .fpv-handle--dragging .fpv-handle__bar {
    background: #888;
}

.fpv--fullscreen .fpv-objects-list {
    flex-shrink: 0;
    height: 220px;
    min-height: 60px;
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 0;
    padding: 12px 20px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.fpv--fullscreen .fpv-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    flex-shrink: 0;
    cursor: row-resize;
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    position: relative;
    z-index: 1;
}

.fpv--fullscreen .fpv-popup {
    z-index: 9999999;
}

.fpv-list-opener {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    color: #666;
    transition: color 0.15s, background 0.15s;
}

.fpv-list-opener:hover {
    color: #009640;
    background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
.fpv-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

.fpv {
        padding: 10px;
    }

    .fpv-nav {
        gap: 6px;
        padding: 10px 12px;
    }

    .fpv-nav__select {
        font-size: 13px;
    }

    .fpv-plan-container {
        height: 60vh;
        min-height: 300px;
    }

    .fpv-objects-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 8px;
    }

    .fpv-popup {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .fpv-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .fpv-plan-container {
        height: 50vh;
    }

    .fpv-objects-grid {
        grid-template-columns: 1fr;
    }
}

.fpv--embed .fpv-plan-container {
    height: 60vh;
    min-height: 300px;
}

.fpv--embed .fpv-objects-list {
}

.fpv--fullscreen .fpv-embed-actions {
    display: none;
}

.fpv--embed .fpv-object-card.fpv-card-hidden {
    display: none !important;
}

.fpv .fpv-current [id$="_floor"] {
    opacity: 0.8 !important;
}

.fpv-inactive .fpv-hatch-overlay {
    display: none;
}

.fpv-object-card--current {
    background: #FAFAFA !important;
}

.fpv-object-card__current-label {
    font-size: 13px;
    font-weight: 600;
    color: #5A5A5A;
}

.fpv-embed-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.fpv-all-plans-link {
    font-size: 13px;
    color: #5A5A5A;
    text-decoration: none;
}

.fpv-all-plans-link:hover {
    text-decoration: underline;
}

.fpv-toggle-objects {
    font-size: 13px;
    color: #5A5A5A;
    text-decoration: none;
    cursor: pointer;
}

.fpv-toggle-objects:hover {
    text-decoration: underline;
}

/* End */
/* /local/components/pashkei/floor.plan.viewer/templates/.default/style.css?178006050313203 */
