/* blue #30daed */
/* purple #6f3789 rgb(112, 55, 138);*/
/* green #DCE775 */

html {
    box-sizing: border-box;
    font-family: "Open Sans",Arial,sans-serif;
    /* font-family: 'Nanum Gothic'; */
    /* font-family: 'Source Sans Pro', sans-serif; */
    color: #6f3789 ;
}
body {
    padding: 0;
    margin: 0;
    
}

main {
    display: flex;
    flex-direction: column;
}

.map__wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    /* margin-top: 3rem; */
}

.info-bar {
    z-index: 9999;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 3rem;

    text-align: center;

    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: rgb(112, 55, 138, 0.5); */
    /* background: rgb(220, 231, 117, 0.5); */
    /* background: #DCE775; */
    background: #f1f6f8;
    color: black;
    /* opacity: 0.25; */
    /* color: #00ffa2; */
}
.hotel-name__container {
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hotel-logo {
    /* max-height: 4rem; */
    height: 2.5rem;
    /* height: 80%; */
    margin-right: 0.5rem;
}
.hotel-name {
    font-size: 1rem;    
    text-decoration: none;
    color: inherit;
}
.hotel-info__container {
    margin-right: 0.5rem;
}

.hotel-info__address {
    display: none;    
}

.hotel-info__phone-number {
    font-size: 0.75rem;
}
/* .info-bar h3 {
    font-size: 0.75rem;
} */
.map {
    /* width: 100%; */
    height: 100%;
}

.control-bar {
    z-index: 9999;
    /* box-shadow: -2px 2px 2px black; */
    outline: none;
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100vw;

    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    
    background: rgb(111, 55, 137, 0.75);
    /* background: rgb(111, 55, 137, 0.75); */
    /* background: transparent; */
    border: 1px solid black;
}

.toggle__buttons {
    width: 100%;
    height: 2rem;
    /* height: 100%; */
    display: flex;
    justify-content: flex-start;
    align-content: center;

    border-left: 1px solid black;   

    overflow: auto;

    padding-right: 0.75rem;
}

.help__button,
.toggle__button {
    /* border-radius: 0.5rem; */
    outline: none;
    border: none;
    /* padding-right: 0.75rem; */
    /* padding: 0.25rem 0.75rem 0.25rem 0rem; */
    /* margin: 0.25rem 0; */
    /* margin: 0.25rem; */
    /* max-width: 75%; */

    /* box-shadow: 2px 2px 2px black; */
    cursor: pointer;

    /* background: #6f3789; */
    background: transparent;

    /* color: #fefefe; */
    /* color: #6f3789; */
    color:#f6f6f6;
    font-weight: bold;
    /* font-size: 1.5rem; */
    font-size: 1rem;
}

.help__button {
    background: #6f3789;
    padding: 0 1rem;
}

.toggle__button {
    border-right: 1px solid black;
    text-transform: uppercase;
}

.toggle__button--in {
    box-shadow: inset 1px 1px 1px black;
    background: #6f3789;
}

@media screen and (min-width: 1024px) {
    main {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    } 
    .info-bar {
        width: 100vw;
        height: 5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 2px 2px 2px black;
    }
    .hotel-logo {
        height: 4rem;
        margin-right: 1rem;
    }
    .hotel-name {
        text-decoration: none;
        font-size: 2.5rem;
        font-weight: bold;
        color: inherit; 
    }
    .hotel-name:hover {
        color: #30daed;
    }
    .hotel-info__container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;

        margin-right: 1rem;

        font-size: 1rem;
        font-weight: inherit;
    }

    .hotel-info__address {
        display: inline;
    }

    .hotel-info__address,
    .hotel-info__phone-number {
        margin: 0.25rem 0;
        color: inherit;
        font-size: 1.5rem;
    }
    
    .content {
        width: 100vw;
        height: 90vh;
        display: flex;        
    }
    .map__wrapper {
        height: calc(100vh - 5rem);
        width: 100vw;
        margin-top: 5rem;
    }
    .control-bar {
        left: unset;
        right: 0;

        height: calc(100vh - 5rem);
        width: auto;

        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        background: transparent;
        border: none;
    }
    .toggle__buttons {
        height: 100%;
        display: flex;
        flex-direction: column;   
        
        border: none;
        /* overflow: auto; */
    }

    .help__button,
    .toggle__button {
        box-sizing: border-box;
        border-radius: 0.5rem;
        margin: 0.5rem;
        
        padding: 0.5rem;
        background: #f1f6f8;
        color: #6f3789;
        
        border: 1px solid #6f3789;

        box-shadow: 2px 2px 2px black;

        transition: all .2s ease-in-out;
    }

    .toggle__button:hover {
        transform: scale(1.1);
    }


    .toggle__button--in {        
        background: #6f3789;
        color: #fefefe;

        box-shadow: inset 2px 2px 2px black;
    }
}

[v-cloak] {
    opacity: 0;
}