[id*="pin-info-popup"] {
    display: none;
    position: absolute;
    width: 80%;
    height: 70%;
    max-width: 680px;
    max-height: fit-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 32px 64px -12px rgba(0, 0, 0, 0.14);
    z-index: 10;
    border: 2px solid #00558C;
    overflow: auto;
    min-height: 423px;
}

[id^="pin-info-popup"]::-webkit-scrollbar {
    width: 0;
}

#popup-image-src {
    display: block;
    width: 186px;
    height: 186px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

#popup-title {
    font-size: 28px;
    margin-bottom: 20px;
}

#popup-content {
    font-size: 18px;
    margin-bottom: 20px;
    color: #606261;
}
#popup-content a {
    color: #00558C;
    text-decoration: underline;
    font-weight: 500;
}
#popup-content a:hover {
    text-decoration: none;
}
.find-out-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    gap: 4px;
    line-height: 1;
    transition-duration: 0.3s;
    cursor: pointer;
    width: fit-content;
    box-sizing: border-box;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    min-height: 48px;
    background-color: #00558C;
    color: #FFFFFF;
    background-image: linear-gradient(94deg, #00558C 6.75%, #00A3E0 127.51%);
    margin: auto;
}

.find-out-more-btn:hover {
    background-color: #00558C;
    color: #FFFFFF;
    border: 2px solid #143880;
    background-image: linear-gradient(94deg, #00558C 6.75%, #00A3E0 127.51%);
}

#popup-close {
    cursor:  pointer;
    position: absolute;
    top: 12px;
    right: 12px;
    margin: 0;
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E5EEF0;
    padding: 6px;
}

@media (max-width: 767px) {
    [id^="pin-info-popup"] {
        width: 100%;
        top: auto;
        bottom: 50%;
        transform: translate(-50%, 0);
    }
    #popup-image-src {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    #popup-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    #popup-content {
        margin-bottom: 12px;
    }
}