.dot-map {
    position: relative;
}

.dot-control {
    margin-bottom: 1rem;
    z-index: 1000;
}

.dot-control small {
    display: block;
    font-size: .8rem;
    margin-bottom: .375rem;
    font-weight: bold;
}

.dot-control a {
    margin-bottom: .375rem;
}

.dot-control .buttons {
    display: flex;
    font-size: .9rem;
    line-height: 1;
}

.dot-control .buttons a {
    margin-right: .5rem;
}


.dot-control a.active {
    font-weight: bold;
}

@media (min-width: 768px) {
    .dot-control {
        margin-bottom: 1rem;
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 1000;
    }

    .dot-control small {
        display: block;
        font-size: .8rem;
        margin-bottom: .375rem;
    }

    .dot-control .buttons {
        display: block;
        font-size: 1.1rem;
    line-height: 1;
    }

    .dot-control a {
        display: block;
        margin-bottom: .375rem;
    }
}

.dot-area {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.dot-area::after {
    content: '';
    padding-top: 100%;
    display: block;
    width: 1px;
}

.dot-area img {
    width: 100%;
    height: auto;
    max-height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    object-fit: contain;
    object-position: center;
}

.dot {
    position: absolute;
    background: rgba(0,0,0,.15);
    width: 1.3rem;
    height: 1.3rem;
    transform: translateX(-50%) translateY(-50%);
    border-radius: 100%;
    border: 2px solid transparent;
    transition: border .2s, background .2s;
    outline: 0px none;
    z-index: 10000;
}

.dot::after {
    background: #fff;
    width: .5rem;
    height: .5rem;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    top: 50%;
    content: '';
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,.55);
    transition: width .2s, height .2s;
}

@media (min-width: 768px) {
    .dot {
        width: 1.7rem;
        height: 1.7rem;
        border: 2px solid transparent;
    }

    .dot::after {
        width: .6rem;
        height: .6rem;
        content: '';
    }							
}

.dot:hover {
    border: 2px solid rgba(255,255,255,.15);
    transition: border .2s;
    background: rgba(14, 128, 160, .15);
    z-index: 100000000;
}

.dot:hover::after {
    width: .5rem;
    height: .5rem;
    transition: width .2s height .2s;
}

.dot .tooltip {
    display: block;
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1.25rem;
    padding: .375rem;
    font-size: .75rem;
    opacity: 0;
    transition: visibility .2s, opacity .2s;
    font-weight: block;
    white-space: nowrap;
    font-weight: bold;
    z-index: 100000;
}

.dot span.tooltip {
    cursor: default;
}

@media (min-width: 768px) {
    .dot .tooltip {
        top: 1.6rem;
    }
}

/*
.dot a.tooltip::after {
    content: '›';
    display: inline-block;
    font-size: 2rem;
    margin-left: .5rem;
    line-height: 1rem;
    vertical-align: bottom;
    font-weight: normal;
    transform: translateY(-6px);
}*/

.dot.align-right .tooltip {
    transform: translateX(-95%);
}

.dot:hover .tooltip,
_.dot:focus .tooltip,
_.dot:focus-within .tooltip {
    visibility: visible;
    opacity: 1;
}