/* ---------------------------- Map ---------------------------- */
.outMap{
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    z-index: 10000;
    display: none; 
}
.outMap .btnAll {
    position: relative;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    margin: 5px 5px 5px 15px;
    display: inline-table;
    position: absolute;
    right: 15px;
    top: 10px;
}
.outMap .icon {
    width: 52px;
    height: 52px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.outMap .btnAll .icon.close {
    background-image: url('../image/icon/icon_o_close.svg');
}
.map{
    position: fixed;
    bottom: 0px;
    width: 400px;
    height: 338px;
    background-image: url('../image/map_c.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: none;
}
.map .entrance{
    left: 210px;
    top: 130px;
}
.map .box2{
    left: 55px;
    top: 130px;
}
.map .box3{
    left: 100px;
    top: 201px;
}
.map .box4{
    left: 100px;
    top: 55px;
}
.map .box5{
    left: 150px;
    top: 45px;
}
.map .box6{
    left: 150px;
    top: 210px;
}

.circle{
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: pointer;
}
.circle1,
.circle2,
.circle3{
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 30px;
    background-color: #FFF91F;
}
.orangeDot{
    background-color: #fd9d07;
}
.circle2,
.circle3{
    margin-top: -10px;
}

.circle1 {
    -webkit-animation: circle 3s linear infinite;
    animation: circle 3s linear infinite;
}

.circle2 {
    -webkit-animation: circle 3s linear 0.8s infinite;
    animation: circle 3s linear 0.8s infinite;
}

.circle3 {
    -webkit-animation: circle 3s linear 1.6s infinite;
    /* Safari and Chrome */
    animation: circle 3s linear 1.6s infinite;
}

@-webkit-keyframes circle {

    /* Safari and Chrome */
    from {
        opacity: 1;
        -webkit-transform: scale(0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(3);
    }
}
/* ------------------------------------------------------------- */