body {
    font-family: 'Manrope', sans-serif;
}

.hs{
    display: flex;
}

.hs__POI {
    background: #DBE7EB;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hs__POI img {
    width: 24;
    height: 24;
}

.hs__POI__text-wrapper {
    height: 100%;
    width: fit-content;
    min-width: 0;
    overflow: hidden;
    transition: .8s;
    max-width: 0;
}

.hs__POI__text-wrapper__text {
    background: #FFFFFF;
    color: #000000;
    padding: 8px 10px;
    font-size: 16px;
    line-height: 24px; 
    letter-spacing: 0.32px;
    font-weight: 400;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

.hs.over .hs__POI__text-wrapper {
    transition: .8s;
    cursor: pointer;
    max-width: 100%;
}

.hs__spot {
    background: #ffffff;
    height: 3px;
    width: 3px;
    border-radius: 50%;
    transition: .6s;
}

.hs.over .hs__spot {
    width: 53px;
    height: 19px;
    background: radial-gradient(ellipse at center, 
                #ffffff 0%, 
                rgba(255, 255, 255, 0.8) 20%, 
                rgba(255, 255, 255, 0.3) 60%, 
                rgba(255, 255, 255, 0) 80%);
    border-radius: 50%;
    transition: .6s;
}

.hs__localisation {
    padding: 4px 8px 4px 4px;
    background: rgba(255, 255, 255, 0.4);
    border: solid 0.5px rgba(255, 255, 255, 0.5);
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase; 
}

.hs__localisation img {
    width: 24;
    height: 24;
}

.hs__scale {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: .3s;
    cursor: pointer;
    color: #FFF;
    width: fit-content;
    margin-top: 20px;
}

.hs__scale__picto {
    background: #000099;
    transition: .3s;
}

.hs.over .hs__scale {
    transition: .6s;
}

.hs.over .hs__scale .hs__scale__picto{
    transform: scale(1.5);
    background: #E87000;
    transition: .6s;
}

.hs__scale__text-wrapper {
    overflow: hidden;
    margin-top: 35px
}

.hs__scale__text {
    transform: translateY(100%);
    transition: .6s;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase; 
}

.hs.over .hs__scale .hs__scale__text {
    transform: translateY(0);
    transition: .6s;
}

.hs__sold img {
    width: 80px;
    border: 1px solid rgb(235, 235, 235);
}

.hs__zoom {
    background: #000099;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .6s;
    cursor: pointer; 
    z-index: 2;
    pointer-events: all;
}

.hs__zoom::before {
    content: '';
    opacity: 0;
    width: 53px;
    height: 19px;
    background: radial-gradient(ellipse at center, 
                #000099 0%, 
                rgba(0, 0, 153, 0.8) 20%, 
                rgba(0, 0, 153, 0.3) 60%, 
                rgba(0, 0, 153, 0) 80%);
    border-radius: 50%;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    transition: .6s;
}

.hs__group.open .hs__zoom,
.hs.over .hs__zoom {    
    transform: translateY(-10px);
    transition: .6s;
}

.hs__group.open .hs__zoom::before,
.hs.over .hs__zoom::before {
    opacity: 1;
    transition: .6s;
    bottom: -25px;
}

.hs__group {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column-reverse;
    margin-right: 4px;
}

.hs__details {
    width: 350px;
    height: fit-content;
    background: #FFFFFF;
    position: relative;
    bottom: -10px;
    display: none;
}

.hs__group.open .hs__details{
    display:initial;
}

.hs__close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: #FFFFFF;
    position: absolute;
    top: 11px;
    right: 11px;
    pointer-events: all;
}

.hs__details__text {
    padding: 12px 20px 32px 20px;
    color: #676767;
}

.hs__details__titre {
    font-size: 20px;
    color:#000099;
    font-weight: 700;
    margin: 0;
}

.hs__details__legende {
    font-size: 10px;
    letter-spacing: 0.2px;
    color: #889FA8;
    margin: 0;
}

.hs__details__liste {
    padding: 0;
    margin: 0;
    padding-top: 8px;
    border-top: solid #DBE7EB 1px;
    margin-top: 4px
}

.hs__details__liste li {
    list-style-type: none;
    gap: 5px;
    padding-block: 4px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
}

.hs__details__label {
    font-weight: 600;
}

.hs__details__label::after {
    content: ' : ';
}
