.map-container {
    width: 100%;
    background-color: #fff;
    position: relative;
}
.map-overflow {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}
.map-main {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.map-capiton {
    position: absolute;
    z-index: 6;
    left: calc(50% - 163px);
    top: 0;
    width: 325px;
}
.map-c-cont {
    margin: 20px auto 0 auto;
    width: 325px;
    position: relative;
}
.map-c-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
    z-index: 4;
    border-radius: 10px;
}
.map-c-win {
    z-index: 5;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
    padding: 20px 25px;
    box-sizing: border-box;
    text-align: center;
}
.map-c-win .header {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: unset;
}
.map-c-win .desc {
    font-size: 13px;
    font-weight: 100;
}
.map-c-win .back {
    font-size: 13px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}
.map-c-win .back > div:first-child {
    margin-right: 7px;
    background-color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.map-c-win .back i {
    color: #000;
    font-size: 12px;
}
.map-c-win .helper {
    font-size: 13px;
    font-weight: 400;
    color: #999;
    text-align: left;
    line-height: 15px;
    border-top: 1px #666 solid;
    border-bottom: 1px #666 solid;
    padding: 10px 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-c-win .helper > div {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.map-c-win .helper > div:last-child {
     justify-content: flex-end;
 }
.map-c-win .helper .green, .map-c-win .helper .blue {
    margin-right: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    min-width: 16px;
    min-height: 16px;
}
.map-c-win .helper .green {
    background-color: #98C230;
}
.map-c-win .helper .blue {
    background-color: #005FC5;
}
.map-lowq {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.map-lowq img {
    display: block;
    width: 100%;
}
.map-lowq .loader-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.map-lowq .loader-container > div {
    margin-top: 200px;
}
.map-img {
    position: relative;
    z-index: 2;
    width: 100%;
}
.map-img img {
    display: block;
    width: 100%;
}
.map-svg {
    position: absolute;
    z-index: 3;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-svg svg {
    width: 100%;
    height: 100%;
}
.map-svg .map-item polygon.fill {
    opacity: 0.3;
    transition: ease all .4s;
}
.map-svg .map-item:hover polygon.fill {
    opacity: 0.5;
    transition: ease all .4s;
}
.map-svg .map-item polygon.fill.white {
    opacity: 0;
    transition: ease all .4s;
}
.map-svg .map-item:hover polygon.fill.white {
    opacity: 0.4;
    transition: ease all .4s;
}
.map-labels {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.map-labels .label {
    display: block;
    position: absolute;
    background-color: #98C230;
    padding: 5px 10px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.map-main .k {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-main .k > div {
    position: relative;
    width: 54px;
    height: 54px;
}
.map-main .k > div > div {
    position: absolute;
}
.map-main .k > div > div:first-child {
    z-index: 4;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.5;
    border-radius: 50%;
    left: 0;
    right: 0;
}
.map-main .k .kk {
    z-index: 5;
    left: 0;
    right: 0;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    margin: 4px;
    border-radius: 50%;
    padding-left: 1px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: ease all 0.2s;
}

.map-main .k.green .kk {
    background-color: #98C230;
}
.map-main .k.green .kk:hover {
    background-color: #83a929;
}
.map-main .k.blue .kk {
    background-color: #005FC5;
}
.map-main .k.blue .kk:hover {
    background-color: #0a5aa5;
}
.map-main .k .kk::after {
    content: "";
    background-image: url("../img/k.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 23px;
    height: 27px;
}

.map-content {
    display: none;
}
.map-tip-content {
    padding: 15px 10px;
}
.map-tip-content .header {
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 4px;
    border-bottom: 1px #e1e1e1 solid;
    line-height: unset;
    letter-spacing: 1px;
}
.map-tip-content .rooms table {
    border: 0;
    font-weight: 100;
}
.map-tip-content .rooms span {
    font-size: 13px;
    display: block;
    margin-top: 15px;
    white-space: nowrap;
}
.map-tip-content .rooms table td {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
    color: #000000;
    white-space: nowrap;
}
.map-tip-content .rooms table td.m {
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 400;
    color: #0A5AA5;
    text-decoration: underline;
    cursor: pointer;
    transition: ease all .4s;
}
.map-tip-content .rooms table td.m:hover {
    color: #98c230;
    transition: ease all .4s;
 }

.map-tip-content .content-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 12px;
}
.map-tip-content .content-link a {
    padding: 6px 12px;
    background-color: #0A5AA5;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    transition: ease all .4s;
}
.map-tip-content .content-link a:hover {
    background-color: #98c230;
    transition: ease all .4s;
}

.mapper-object {
    display: block;
    text-align: center;
    position: relative;
    min-width: 240px;
}
.mapper-object.default {
    display: none;
}
.mapper-object .obj-pic {
    position: relative;
    margin-top: 8px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    width: 100%;
    height: 190px;
    overflow: hidden;
}
.mapper-object .obj-pic.clone {
    position: absolute;
    margin-top: 0;
    top: 0;
    display: none;
    z-index: 20;
}
.mapper-object .obj-pic.big {
    width: 392px;
    height: 250px;
}
.mapper-object .obj-pic.super {
    width: 492px;
    height: 313px;
}
.mapper-object .obj-pic .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 11;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(30%, rgba(255,255,255,0)), to(rgba(0,0,0,1)));
    background: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,1) 100%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 30%, rgba(0,0,0,1) 100%);
}
.mapper-object .obj-pic .loading {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 12;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.mapper-object .obj-pic.nopic {
    width: auto;
    height: auto;
}
.mapper-object .obj-pic.nopic .overlay, .mapper-object .obj-pic.nopic .loading {
    display: none;
}
.mapper-object .obj-pic.nopic .capiton {
    position: relative;
    padding: 0;
}
.mapper-object .obj-pic.nopic .header {
    margin: 8px 0 0 0;
    color: #000;
    line-height: unset;
    letter-spacing: 0;
}
.mapper-object .obj-pic .capiton {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 12;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mapper-object .obj-pic .header {
    font-size: 22px;
    line-height: 35px;
    color: #fff;
}
.mapper-object .obj-pic .gallery-controls {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 13;
    color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mapper-object .obj-pic .gallery-controls div {
    padding: 10px;
    cursor: pointer;
}
.mapper-object .obj-desc {
    color: #000;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 100;
    line-height: 16px;
}
.mapper-object .obj-link {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 8px;
    border: 2px #005FC5 solid;
    color: #005FC5;
    font-size: 14px;
    text-transform: uppercase;
    transition: ease all .4s;
}
.mapper-object .obj-link:hover {
    border-color: #98C230;
    color: #98C230;
}
.mapper-object .obj-link.hidden {
    display: none;
}
.mapper-object .ch-date.hidden span {
    display: none;
}


.loader {
    width: 48px;
    height: 48px;
    border: 5px solid;
    border-color: #0A5AA5 transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 1500px) {
    .map-main .k > div {
        width: 40px;
        height: 40px;
    }
    .map-main .k .kk::after {
        width: 15px;
        height: 17px;
    }
    .mapper-object .obj-pic .header {
        line-height: 32px;
    }
}
@media (max-width: 1360px) {
    .map-labels .label {
        font-size: 12px;
    }
    .map-c-win .header {
        margin-bottom: 10px;
    }
    .map-c-win .helper {
        border-bottom: 0;
        padding: 10px 0 0 0;
        margin-bottom: 0;
    }
    .map-c-win .desc {
        display: none;
    }

    .mapper-object .obj-pic .header {
        line-height: 22px;
    }
}
@media (max-width: 1200px) {
    .map-overflow {
        cursor: move;
    }
}
@media (max-width: 1000px) {
    .map-labels .label {
        padding: 3px 7px;
        font-size: 11px;
    }

    .map-main .k > div {
        width: 30px;
        height: 30px;
    }
    .map-main .k .kk::after {
        width: 11px;
        height: 12px;
    }
}
@media (max-width: 750px) {
    .map-c-overlay {
        background-color: #fff;
    }
    .map-c-win {
        color: #000;
    }
    .map-capiton {
        position: relative;
        z-index: 4;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #ededed;
        padding: 15px 0;
        box-sizing: border-box;
    }
    .map-c-win .back {
        color: #0A5AA5;
    }
    .map-c-win .back > div:first-child {
        background-color: #0A5AA5;
    }
    .map-c-win .back i {
        color: #fff;
    }
    .map-c-cont {
        margin: 0 auto;
    }
    .map-c-win .header {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .map-c-win .desc {
        font-size: 12px;
    }
    .map-c-win {
        padding: 10px 15px;
    }
    .map-main .k > div {
        width: 20px;
        height: 20px;
    }
    .map-main .k .kk {
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        margin: 2px;
    }
    .map-main .k > div > div:first-child {
        opacity: 1;
    }
    .map-main .k .kk::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .map-tip-content .content-link a {
        padding: 4px 10px;
        font-size: 12px;
    }
    .map-c-overlay {
        border-radius: 0;
    }
    .map-c-cont {
        width: 320px;
    }
    .map-c-win .helper {
        font-size: 12px;
    }

    .map-labels .label {
        padding: 3px 3px;
        font-size: 9px;
    }
}