#geo_blocker_app *{
    box-sizing: border-box;
    line-height: initial;
    text-align: center;
}
.geo_blocker_app{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 99999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.geo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #000000b3;
    display: inline-block !important;
}

.geo-popup {
    z-index: 10;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 5px #000;
}

.geo-popup .geo-popup-heading,.geo-popup .geo-popup-body,.geo-popup .geo-popup-footer {
    padding: 10px;
}

.geo-popup .geo-popup-heading h1{
    padding: 0;
    margin: 0;
}

.geo-popup .geo-popup-body {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.geo-popup .geo-popup-footer {
    text-align: right;
}
.geo-popup-footer button {
    border-radius: 5px;
    padding: 7px 13px;
    border: 0;
    cursor: pointer;
}
