.ns_popup_container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #00000080;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: wrap row;
    flex-flow: wrap row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ns_popup {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    max-width: 750px;
    width: 100%;
    margin: 0 15px;
    max-height: 90vh;
    height: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: nowrap column;
    flex-flow: nowrap column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.ns_popup-buttons {
    padding: 10px;
    -webkit-box-shadow: 0 0px 3px 0 #0000005e;
    box-shadow: 0 0px 3px 0 #0000005e;
    background: #c5142c;
    text-align: center;
    color: white;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    opacity: 0.5;
}

.ns_popup-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
    padding: 20px;
}

.ns_popup-buttons.active {
    pointer-events: all;
    opacity: 1;
}

.ns_popup-content p,
.ns_popup-content li {
    margin-bottom: 5px;
    text-align: justify;
    color: #555;
}

#conditions-to-approve ul {
    display: flex;
    flex-flow: wrap column-reverse;
}

#footer .ns_popup p {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    margin: inherit;
}

#footer .ns_popup a {
    color: #c5142c;
}