*{
    margin: 0;
    padding: 0;
}

body{
    overflow-x: hidden;
}

.select-block{
    width: fit-content;
    position: fixed;
    top: 2%;
    left: 2%;
    border-radius: 10%;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 1;
}

.select-item{
    background-color: #fff;
}

label{
    display: block;
    width: fit-content;
}

select{
    width: 100%;
    border-radius: 10%;
}

.bg-image{
    max-width: 100%;
    user-select: none;
    transition: all 300ms ease;
}

.loading{
    max-height: 100%;
    height: 20px;
    display: none;
}

.circle{
    position: absolute;
    width: 2vw;
    height: 2vw;
    top: 40%;
    left: 20%;
    border-radius: 50%;
    border: 5px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 8px #fff;
    transition: all 200ms ease;
}

#circle1{
    top: 40%;
    left: 20%;
}

#circle2{
    top: 70%;
    left: 50%;
}

#circle3{
    top: 30%;
    left: 80%;
}

.image-bg{
    position: relative;
}

.back-button{
    position: fixed;
    background-color: #fff;
    border:  none;
    width: 10vw;
    height: 4vw;
    cursor: pointer;
    bottom: 10%;
    left: 5%;
    border-radius: 5%;
    display: none;
}

.info-tooltip {
    position: fixed;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: none;
    white-space: nowrap;
}