@charset "euc-kr";
@font-face{
    src: url("/font/MBC_NEW_OTF_L.otf");
    font-family: 'mbcL';
}
@font-face{
    src: url("/font/MBC_NEW_OTF_M.otf");
    font-family: 'mbcM';
}
@font-face{
    src: url("/font/MBC_NEW_OTF_B.otf");
    font-family: 'mbcB';
}

body{
    font-family: 'mbcL';
    position: relative;
}

.controller{
    width: calc(100% - 8px);
    height: 32px;
    margin: 0 4px 4px 4px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    z-index:20;
}
.controller .img-wrap{
    width: 32px;
    height: 32px;
    cursor: pointer;
}
.controller .img-wrap img:last-child{
    display: none;
}
.controller p{
    width: calc(100% - 36px);
    height: 32px;
    font-family: 'mbcM';
    font-size: 14px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 0;
}
.controller p img{
    margin-top: 6px;
    margin-left: 8px;
    margin-right: 4px;
    vertical-align:text-bottom;
}

.controls {
    display: block;
    width: calc(100% - 36px);
    height: 32px;
    -webkit-appearance: none;
    border: 1px solid transparent;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
}
#pac-input {
    font-family: 'mbcM';
    font-size: 14px;
    background-color: #666;
    color: #fff;
    padding: 0 11px 0 13px;
    box-sizing: border-box;
    text-overflow: ellipsis;
    white-space:normal;
    transition:all 0.6s ease;
    position: absolute;
    right: 4px;
    bottom: 4px;
    z-index: 30;
    display: none;
}
#pac-input::placeholder{
    color: rgb(192, 192, 192);
}
#map{
    width: 100%;
    height: 100%;
    transition:all 0.6s ease;
    -webkit-transition:all 0.6s ease;
    -moz-transition:all 0.6s ease;
    -ms-transition:all 0.6s ease;
    -o-transition:all 0.6s ease;
}

td.on{
    background-color: orange;;
}

@media all and (min-width:1028px){
    .controller{
        width: calc(100% - 324px);
        margin-left: 320px;
    }
    .controls {
        width: calc(100% - 356px);
    }
    #map{
        width: calc(100% - 316px);    
        height: 100%;
        margin-left: 316px;
    }
}