@import url('/styles/reset.css');
@import url('/styles/layout.css');
@import url('/styles/splash.css');

@import url('/styles/header.css');
@import url('/components/locationItem.css');
@import url('/components/dialog.css');

.header {
    margin-bottom: 8px;
}

.location-list {
    width: 100%;
    height: 90%;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    row-gap: 32px;

    padding: 28px;

    overflow: scroll;
}

.body-wrap {
    position: relative;
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #fff;
}
.body-wrap > div {
    position: absolute;

    width: 100%;
    height: calc(100%);
    overflow: hidden;
}

.body-wrap > div > header {
    width: 100%;
    height: 58px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(206, 206, 206, 1);
}

.body-wrap > div > header > p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 100%;
    border-bottom: 2px solid rgba(45, 139, 255, 1);

    font-size: 16px;
    font-weight: 700;
    line-height: 19px;

    color: rgba(45, 139, 255, 1);
}

.map-wrap {
    display: none;
}

.map-wrap.visible {
    display: flex;
    width: 100%;
    height: 100%;
}
