
.popup-container {
    position: fixed;
    bottom: 80px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}
.popup-message {
    display: none;
    position: absolute;
    bottom: 85px;
    right: -30px;
    background-color: #336699;
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 220px;
    text-align: left;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-message :after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 88px;
    border-width: 0 20px 30px 0;
    border-style: solid;
    border-color: transparent #336699;
    display: block;
    width: 0;
}

.popup-message p {
    margin: 0;
    color: #ffffff!important;
    font-size: 12px !important;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    line-height: 16px !important;
    font: -webkit-control;
}

.popup-message .popup-close-btn {
    position: absolute;
    top: 4px;
    right: 5px;
    cursor: pointer;
    font-size: 16px;
    border: 1px solid;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    display: flex;
    transition: background 0.2s ease-in-out;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    overflow: hidden;
}

.popup-message .popup-close-btn:hover {
    background-color: rgb(255 44 44 / 70%);
}

.popup-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background-color: #336699;
    background-image: url("/sites/default/files/plan_eu.png");	
    background-size: cover;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.popup-icon:hover {
    transform: scale(1.1);
}

.sonar-wave {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #336699;
    opacity: 0.6;
    z-index: -1;
    animation: sonarWave 1.5s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes sonarWave {
    from {
        transform: scale(1);
        opacity: 0.6;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#popup-casaverde {
    bottom: 280px;
    /*right: auto;*/
    /*left: 40px;*/
    .popup-icon {
        /*width: 80px;*/
        /*height: 80px;*/
        /*background-color: #336699;*/
        background-image: url('../images/eco-home.png');
        /*background-size: cover;*/
        /*background-size: cover;*/
        /*border-radius: 50%;*/
        /*cursor: pointer;*/
        /*display: flex;*/
        /*align-items: center;*/
        /*justify-content: center;*/
        /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
        /*position: relative;*/
        /*transition: transform 0.3s ease-in-out;*/
    }
    .popup-message {
        /*right: auto;*/
        /*left: -30px;*/
    }

}
.block-block-36 h2 {
    display: none;
}