* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    text-align: center;
}

.is-hide{
    display:none; 
   }
.loading{
    position:fixed;
    text-align: center;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background:rgba(0,0,0,.5);
}
.loading::before{
    content:"";
    display:block;
    position:fixed;
    left:50%;
    top:50%;
    width:50px;
    height:50px;
    text-align: center;
    border-radius:5px;
    margin-top:-19px;
    margin-left:-19px;
    background:white;
}
.loading::after{
    content:"";
    display:block;
    position:fixed;
    text-align: center;
    left:50%;
    top:50%;
    width:32px;
    height:32px;
    border-radius:20px;
    margin-top:-10px;
    margin-left:-10px;
    border:4px solid #60ABB9;
    border-right:4px solid white;
    animation: rotate 1s infinite linear;
}
@keyframes rotate {
    0%    { transform: rotate(0deg); }
    100%  { transform: rotate(360deg); }
}

.map {
    width: 100%;
    height:600px;
    text-align: center;
    margin-left:auto;
    margin-right:auto;
    -webkit-box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
    box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
}

@media screen and (max-width: 480px) {
    .map {
        width: 100%;
        height:350px;
        text-align: center;
        margin-left:auto;
        margin-right:auto;
        -webkit-box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
        box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
    }
 }


#result {
    background: #fff;
    padding: 5px;
    height: calc(100% - 150px);
    left: 0;
    bottom: 0;
    width: 100%;
    margin:10px;
    margin-left:auto;
    margin-right:auto;
    -webkit-box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
    box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
}

#result input[type='text'] {
    width: 260px;
}
.left, .right {
    float: left;
    width: 50%;
}

.image_viewer {
    background: #fff;
    padding: 5px;
    height: calc(100% - 150px);
    left: 0;
    bottom: 0;
    width: 100%;
    margin:10px;
    margin-left:auto;
    margin-right:auto;
    -webkit-box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
    box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
}

.netprint {
    background: #fff;
    padding: 5px;
    height: calc(100% - 150px);
    left: 0;
    bottom: 0;
    width: 100%;
    margin:10px;
    margin-left:auto;
    margin-right:auto;
    -webkit-box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
    box-shadow: 0 -1px 15px rgba(0,0,0, 0.2);
}