html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.map-only-page {
    overflow: hidden;
    background: #f7f1e8;
    font-family: Arial, Helvetica, sans-serif;
}

.map-only-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #f7f1e8;
}

.map-only-frame {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #f7f1e8;
}

.map-only-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1e8;
}

.map-only-loader.is-hidden {
    display: none;
}

.map-only-loader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 34px;
    border-radius: 22px;
    background: rgba(255, 250, 244, 0.96);
    border: 1px solid #e0d2c4;
    box-shadow: 0 18px 42px rgba(47, 42, 36, 0.12);
}

.map-only-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #e5c8b4;
    border-top-color: #c65f2d;
    animation: map-only-spin 0.8s linear infinite;
}

.map-only-loader-text {
    margin: 0;
    color: #9f4520;
    font-size: 18px;
    font-weight: 800;
}

@keyframes map-only-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}