#phys-geoip-popup {
    position: fixed;
    width: calc( 100% - 60px );
    max-width: 800px;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    margin: 0 auto;
    z-index: 10000;
}

#phys-geoip-popup .close-geoip-popup {
    position: absolute;
    right: -12px;
    top: -12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    line-height: 1;
    z-index: 1;
    border-radius: 50%;
    box-shadow: 0px 4px 20px 0px #00000040;
    background-color: #fff;
    cursor: pointer;
}

#phys-geoip-popup .close-geoip-popup svg {
    width: 16px;
} 

.phys-geoip-content {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px #00000040;
    overflow: hidden;
}

.phys-geoip-content img{
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    #phys-geoip-popup {
        bottom: 60px;
    }
}