﻿@charset "UTF-8";

.map {
    margin-top: 20px;
}

    .map svg {
        width: 98%;
        vertical-align: top;
        margin: 0 auto;
        padding: 0;
        display: block;
        max-height: 100%;
        min-height: 430px;
    }

    .map .area {
        fill: #24ACBC;
        stroke: #fff;
        cursor: pointer !important;
        -webkit-transition: all 250ms ease;
        -moz-transition: all 250ms ease;
        -o-transition: all 250ms ease;
        transition: all 250ms ease;
        -webkit-transition-timing-function: ease;
        -moz-transition-timing-function: ease;
        -o-transition-timing-function: ease;
        transition-timing-function: ease;
    }

        .map .area:hover {
            fill: #607D8B !important;
            position: relative;
        }

    .map circle {
        fill: white;
        stroke: #f2513e;
        stroke-width: .5;
    }

.maphover {
    fill: #607D8B !important;
    background: #607D8B !important;
    position: relative;
}

.othercity li {
    font-weight: normal !important;
}

.city {
    margin-top: 20px;
}

    .city hr {
        clear: both;
        margin: 0;
        padding-top: 13px;
        height: 9px;
        background: url(../img/shadow.png) 5% 100% no-repeat;
        border: none;
    }

@media screen and (max-width:992px) {
    .city {
        margin-top: 10px;
    }
}

@media screen and (max-width:1199px) {
    .city {
        margin-top: 10px;
        padding: 0 !important;
    }
}

@media screen and (max-width:1199px) {
    .city .col-md-6 {
        padding-right: 5px;
    }
}

.city ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .city ul li {
        font-size: 12px;
        font-size: .85714rem;
        padding: 5px 7px;
        font-weight: bold;
    }

        .city ul li a {
            color: #454545;
            text-decoration: none;
            display: block;
        }

            .city ul li a.activearea {
                color: #0078c1;
                position: relative;
            }

                .city ul li a.activearea:before {
                    position: absolute;
                    display: block;
                    content: '';
                    right: -20px;
                    bottom: 4px;
                    width: 14px;
                    height: 22px;
                    transition: all ease .25s;
                    background-image: url('../img/pin.png');
                }

@media screen and (max-width:991px) {
    .city ul li {
        font-size: 18px;
        font-size: 1.28571rem;
        padding: 10px 20px 10px 0 !important;
        border-bottom: 2px #eee solid;
    }

        .city ul li:hover {
            background: #eee;
        }
}

.maptip {
    position: absolute;
    left: 20px;
    top: 390px;
}

@media screen and (max-width:1199px) {
    .maptip {
        top: 370px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .tooltip.in {
        opacity: .9;
        filter: alpha(opacity=90);
    }

    .tooltip.top {
        margin-top: -3px;
        padding: 5px 0;
    }

    .tooltip.right {
        margin-left: 3px;
        padding: 0 5px;
    }

    .tooltip.bottom {
        margin-top: 3px;
        padding: 5px 0;
    }

    .tooltip.left {
        margin-left: -3px;
        padding: 0 5px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #333;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #333;
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    left: 5px;
    border-width: 5px 5px 0;
    border-top-color: #333;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    right: 5px;
    border-width: 5px 5px 0;
    border-top-color: #333;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #333;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #333;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #333;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    left: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #333;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    right: 5px;
    border-width: 0 5px 5px;
    border-bottom-color: #333;
}

.popover {
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060; /* display:none; */
    max-width: 370px;
    padding: 1px;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    white-space: normal;
}

    .popover.top {
        margin-top: -10px;
    }

    .popover.right {
        margin-left: 10px;
    }

    .popover.bottom {
        margin-top: 10px;
    }

    .popover.left {
        margin-left: -10px;
    }

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    background-color: #b6d9ee;
    border-bottom: 1px solid #a1cee9;
    border-radius: 7px 7px 0 0;
    display: none;
}

.popover-content {
    padding: 9px 14px;
    font-family: tahoma;
    font-size: 12px;
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

    .popover > .arrow:after {
        border-width: 10px;
        content: "";
    }

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #ccc;
    border-top-color: #ddd;
    bottom: -11px;
}

    .popover.top > .arrow:after {
        content: " ";
        bottom: 1px;
        margin-left: -10px;
        border-bottom-width: 0;
        border-top-color: #fff;
    }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #ccc;
    border-right-color: #ddd;
}

    .popover.right > .arrow:after {
        content: " ";
        left: 1px;
        bottom: -10px;
        border-left-width: 0;
        border-right-color: #fff;
    }

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #ccc;
    border-bottom-color: #ddd;
    top: -11px;
}

    .popover.bottom > .arrow:after {
        content: " ";
        top: 1px;
        left: -10px;
        border-top-width: 0;
        border-bottom-color: #fff;
    }

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #ccc;
    border-left-color: #ddd;
}

    .popover.left > .arrow:after {
        content: " ";
        right: 1px;
        border-right-width: 0;
        border-left-color: #fff;
        bottom: -10px;
    }
    .popover.top>.arrow:after {
    margin-right: -10px;
    margin-left: 0;
}
.popover.top>.arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff;
}
.popover>.arrow:after {
    border-width: 10px;
    content: "";
}
.popover>.arrow, .popover>.arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}