#spiky-geo--wrapper {
    padding: 50px 40px 50px 50px;
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99999;
    max-height: calc(100vh - 32px);
    display: none;
    width: min(500px, calc(100vw - 32px));
    height: auto;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    overflow-y: auto;
}

#spiky-geo--header {
    margin-bottom: 20px;
}

#spiky-geo--content {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

#spiky-geo--header h2 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4em;
}

#spiky-geo--content p {
    text-align: center;
    white-space: pre-line;
}

#spiky-geo--footer {
    display: flex;
    justify-content: center;
}

#geo-buttons button {
    margin-bottom: 0;
    text-align: center;
    background-color: #35b5d3;
    color: white;
    width: 200px;
    text-wrap: nowrap;
    border-radius: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: .85em;
}

.close {
    position: absolute;
    top: 5%;
    right: 2%;
    font-size: 20px;
}

.lightboxBg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #0b0b0b;
    opacity: .6;
    transition: opacity .3s;
    z-index: 99998;
    display: none;
}

@media (max-width: 900px) {
    #spiky-geo--wrapper {
        width: calc(100vw - 32px);
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    #spiky-geo--wrapper {
        padding: 40px 20px;
    }

    #spiky-geo--footer {
        display: block;
    }
    #spiky-geo--content p,
    #spiky-geo--header {
        text-align: left;
        white-space: unset;
    }

    #spiky-geo--header h2 {
        text-align: left;
    }

    #geo-buttons button {
        width: 100%;
    }
}