.hotspot-settings {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 10px 0 30px;
}

.hotspot-settings .dialog {
    color: #808080;
    position: absolute;
    border-radius: 10px;
    background: white;
    width: 150px;
    height: 100px;
    top: -45px;
    left: 40px;
    padding: 10px;
    z-index: 999999;
}

[data-dialog="open"] .dialog {
    display: block;
}

[data-dialog="closed"] .dialog {
    display: none;
}

.hotspot-settings .dialog .close {
    text-align: right;
}

.hotspot-settings #map {
    max-width: 100%;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.hotspot-settings .outfit {
    line-height: 0;
    position: relative;
    width: auto;
    height: auto;
    display: inline-block;
}

.hotspot-settings .dot.current {
    background: #e57a3f;
    border: 10px solid #f1b154;
}

.hotspot-settings .dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: #000;
    color: white;
    border: 10px solid #505050;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    line-height: 24px;
    font-size: 12px;
    font-weight: bold;
    transition: box-shadow 0.214s ease-in-out, transform 0.214s ease-in-out, background 0.214s ease-in-out;
}


.hotspot-settings .dot.ui-draggable-dragging {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5);
    transform: scale3d(1.2, 1.2, 1.2);
    background: rgba(241, 177, 84, 0.7);
}


/* HOMEPAGE START */
.producer-map .dot {
    width: 42px;
    margin-top: -12px;
    height: 42px;
}

.producer-map .dot.marker {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dot .marker-icon {
    position: relative;
    top: -35px;
}

.dot .marker-icon.active .cc-map-marker {
    fill: #FF0066;
}

.dot .marker-icon img {
    margin: 0;
    padding: 0;
}

.bounce2 {
    animation: bounce2 2s ease; /*infinite*/
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.bounce-in {
    animation: bounce-in 1s ease; /*infinite*/
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
    }
}

.gelatine {
    animation: gelatine 0.5s; /*infinite;*/
}

@keyframes gelatine {
    from, to {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(0.9, 1.1);
    }
    50% {
        transform: scale(1.1, 0.9);
    }
    75% {
        transform: scale(0.95, 1.05);
    }
}

.pulse {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -12px;
    -webkit-transform: rotateX(55deg);
    -moz-transform: rotateX(55deg);
    -o-transform: rotateX(55deg);
    -ms-transform: rotateX(55deg);
    transform: rotateX(55deg);
    /*z-index: -2;*/
}

.pulse:after {
    content: "";
    border-radius: 50%;
    height: 40px;
    width: 40px;
    position: absolute;
    margin: -13px 0 0 -13px;
    -webkit-animation: pulsate 3s ease-out;
    -moz-animation: pulsate 3s ease-out;
    -o-animation: pulsate 3s ease-out;
    -ms-animation: pulsate 3s ease-out;
    animation: pulsate 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 0 1px 2px #89849b;
    box-shadow: 0 0 1px 2px #89849b;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    animation-delay: 1.1s;
}

@-moz-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-o-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

/* ####### Tooltip ######### */

div.my-custom-theme .tooltipster-content {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: white;
    min-width: 410px;
}

div.my-custom-theme .tooltipster-content > div {
    align-self: center;
}

div.my-custom-theme .tooltipster-content p {
    line-height: 18px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

div.my-custom-theme .tooltipster-content img {
    width: 150px;
    height: 150px;
}

div.my-custom-theme .tooltipster-content h2 {
    font-size: 17px !important;
    line-height: 19px !important;
    font-weight: 800 !important;
    color: #183B56;
}

div.my-custom-theme .tooltipster-box {
    border-radius: 12px;
    box-shadow: 0 0 7px 7px #e1e0e0;
    border: 0;
    background: 0;
}

div.my-custom-theme.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #ffffff;
}

div.my-custom-theme.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #fff;
}

@media only screen and (max-width: 1150px) {

    div.my-custom-theme .tooltipster-box {
        min-width: 260px;
    }
}

@media only screen and (max-width: 900px) {

    .my-custom-theme {
        margin: 20px !important;
    }

    div.my-custom-theme .tooltipster-box {
        min-width: 260px;
        max-width: 600px;
    }
}

