/* ==========================================================
   DREAMERS LAYOUT
========================================================== */

.dreamers-main-layout{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:30px;

    align-items:stretch;

    width:100%;

    max-width:1150px;

    margin:0 auto;

}

.dreamers-map-panel{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);

}

.dreamers-result-panel{

    width:100%;

    min-height:450px;

}

#dreamerResult{

    width:100%;

    height:100%;

}

/* ==========================================================
   DIVIDER
========================================================== */

.dreamers-divider{

    display:flex;

    align-items:center;

    gap:20px;

    max-width:1150px;

    margin:42px auto;

}

.dreamers-divider::before,

.dreamers-divider::after{

    content:"";

    flex:1;

    height:1px;

    background:#DCE4EF;

}

.dreamers-divider span{

    color:#8EA2C0;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}