* {margin: 0; padding: 0; border: 0;}

ul
{
    list-style: none;
}

html, body
{
    width: 100%;
    height: 100%;
}

.wrapper
{
    width: 100%;
    height: 100%;
    background-color: yellowgreen;
    display: flex;
    flex-direction: row;
}

.contents
{
    width: 25%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo
{
    background-color: white;
}
.control
{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
#sortRegionBox
{
    width: 67px;
}
#sortCategoryBox
{
    width: 60px;
}
.searchBar
{
    width: 200px;
    height: 30px;
}
.searchBtn
{
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: white;
}
.searchBtn img {
    width: 40px;
    height: 40px;
}
.contentsList
{
    width: 90%;
    transform: translateX(-120%);
    transition: all 0.5s ease-in-out;
    overflow: scroll;
    
}
.contentsList::-webkit-scrollbar{
    display:none;
}
.list
{
    width: 100%;
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    /* align-items: center; */
    margin: 5px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.list li
{
    line-height: 30px;
}
.list ul :nth-child(1)
{
    font-weight: bold;
}
.list ul :nth-child(5)
{
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
}
.list ul :nth-child(5):hover
{
    color: rgba(0, 0, 0, 0.7);
}
.list ul :nth-child(3)
{
    color: #009900;
}

/* -------------- */
.kakaomap
{
    width: 75%;
    background-color: teal;
}
.map
{
    position: absolute;
    width: 100%;
    height: 100%;
    
}

.roadview
{
    position: absolute;
    right: 0%;
    transform: translateX(100%);
    transition: all 0.5s ease-in;
    z-index: 3;
    width: 30%;
    height: 30%;
    background-color: white;
}