.hotspots.hotspots--locations .hotspots__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotspots.hotspots--locations .hotspots__container .hotspot {
    position: absolute;
    background: white;
    width: fit-content;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 40px;
    z-index: 3;
    transform: translate(-50%, -100%);
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup {
    display: none;
    position: relative;
    padding: 20px;
    z-index: 2;
    background: white;
    box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.2);
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background-color: transparent;
    position: absolute;
    top: -1px;
    left: -1px;
    border-top: 3px solid #0a6f9c;
    border-left: 3px solid #0a6f9c;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup::after {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background-color: transparent;
    position: absolute;
    bottom: -1px;
    right: -1px;
    border-right: 3px solid #0a6f9c;
    border-bottom: 3px solid #0a6f9c;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup .location {
    border-top: 1px solid #0a6f9c;
    padding: 0 0 20px 0;
    margin-bottom: 0;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup .location:first-child {
    border-top: none;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup .location:last-child {
    padding: 20px 0 0 0;
    margin-bottom: 0;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup .location .location__logo {
    font-size: 0;
    height: 50px;
    margin-bottom: 15px;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup .location .location__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hotspots.hotspots--locations .hotspots__container .hotspot .hotspot__popup .location .location__title {
    font-size: 20px;
    color: #212529;
    margin-bottom: 10px;
}

