.hotspot-circle-wrapper {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: all .4s;
}

.hotspot-circle-wrapper:hover .hotspot-circle,
.hotspot-circle-wrapper:focus .hotspot-circle {
    transform: scale(0.8);
}

.hotspot-circle {
    border-radius: 50%;
    background-color: transparent;
    width: 100%;
    height: 100%;
    transition: all .4s;
    border: 2px solid #009877;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hotspot-circle-bullet {
    width: 100%;
    height: 100%;
    background-color: #009877;
    border-radius: 50%;

}

.hotspot-popup-overlay {
    background-color: #0000003d;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hotspot-popup {
    background-color: #fff;
    width: 40%;
    padding: 50px;
    min-height: 50vh;
    border-radius:10px;
    box-shadow:0px 0px 15px rgba(0,0,0,0.5); 
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.hotspot-popup .title-wrapper {
    width: 50%;
}

.hotspot-popup .image-wrapper {
    width: 50%;
}

.hotspot-popup .popup-close {
    position: absolute;
    background-color: #009877;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    padding: 12px;
    top: -22px;
    right: -22px;
    cursor: pointer;
}

.hotspot-popup .popup-close svg {
    width: 28px;
    height: 28px;
    color: #fff;
    fill: #fff;
}

/* .hotspot-circle h2,
.hotspot-circle p,
.hotspot-circle img {
    display: none;
} */


.hotspot-popup h2 {
    font-family: "Roboto", Sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--e-global-color-primary);
}

.hotspot-content {
    bottom: 45px;
    position: absolute;
    width: 240px;
    height: auto;
    padding: 10px 10px;
    box-shadow: 0px 0px 30px -10px rgba(0,0,0,0.5);
    background-color: #fff;
    border-radius: 15px;
    display: none;
}


.hotspot-popup p,
.hotspot-content p {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--e-global-color-text);
}

.hotspot-content::before {
    content: url(https://koukakisfarm2.gr/wp-content/uploads/2025/05/arrowhead-pointing-to-the-right.png);
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 1366px) {
	.hotspot-popup h2 {
    font-size: 24px;
}
	.hotspot-popup p {
		font-size: 16px;
	}
	.hotspot-popup {
    width: 60%!important;
    padding: 40px;
    gap: 20px;
}
	.hotspot-popup .popup-close svg {
    width: 18px;
    height: 18px;
}

}
@media (max-width: 1200px) {
	.hotspot-popup h2 {
    font-size: 22px;
}
	.hotspot-popup p {
		font-size: 15px;
	}
	.hotspot-popup {
    width: 80%!important;
    padding: 30px;
}
	.hotspot-popup .popup-close svg {
    width: 16px;
    height: 16px;
}

}
@media (max-width: 1024px) {
    .hotspot-popup h2 {
        font-size: 20px;
    }
    .hotspot-popup p {
        font-size: 14px;
    }
    .hotspot-popup {
        width: 90%!important;
        padding: 28px;
    }
    .hotspot-popup .popup-close svg {
        width: 14px;
        height: 14px;
    }

    .hotspot-circle-wrapper {
        height: 72px !important;
        width: 72px !important;
        padding: 20px !important;
    }

    .hotspot-content {
        bottom: 70px !important;
    }
}

@media (max-width: 767px) {
	.hotspot-popup h2 {
    font-size: 18px;
}
	.hotspot-popup p {
		font-size: 13px;
	}
	.hotspot-popup {
    width: 94%!important;
    padding: 22px;
}
	.hotspot-popup .popup-close svg {
    width: 14px;
    height: 14px;
}
}
@media (max-width: 650px) {
    .hotspot-popup {
        flex-direction: column-reverse!important;
        gap: 40px;
    }
    .hotspot-popup .title-wrapper, .hotspot-popup .image-wrapper {
        width: 100%!important;
    }

}