.oninc-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
    display: none;
}

.oninc-popup-wrapper.active {
    display: block;
}

.oninc-popup-wrapper .oninc-popup-container {
    padding: 16px;
    background-color: #f5f5f5;
    width: 80%;
    max-width: 800px;
    margin: 20vh auto;
    position: relative;
    text-align: center;
    border-radius: 3px;
    border: 1px solid #222222;
}

.oninc-popup-wrapper .oninc-popup-container .popup-content {
	padding-bottom: 66px;
}

.oninc-popup-wrapper .oninc-popup-container .button-container {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 16px;
    box-sizing: border-box;
    text-align: center;
}

.oninc-popup-wrapper .oninc-popup-container .close-button {
	display: block;
    border: 1px solid #c0c0c0;
    border-radius: 3px;
    padding: 12px 24px;
    text-transform: uppercase;
    cursor: pointer;
    width: fit-content;
    margin: auto;
}