.onq * {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
}

.onq h1,
.onq h2,
.onq h3,
.onq h4,
.onq h5,
.onq h6,
.onq p {
    margin: 0;
}

/* UTILS */
.onq .hidden {
    display: none;
}

.onq .font-bold {
    font-weight: bold;
}

/* COMPONENTS */
.onq .onq-promo-header {
    background-color: white;
    border-radius: 8px;
    max-width: 718px;
    margin: 10px auto;
    text-align: center;
    padding: 15px;
    box-shadow: 0px 1px 2px 0px #00000014;
}

.onq-modal {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1070;
}

.onq-modal.open {
    display: block;
}

.onq-modal .onq-modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.onq-modal .onq-modal-content {
    max-width: 500px;
    display: block;
    border-radius: 8px;
    background-color: white;
    padding: 30px;
    box-shadow: 0px 10px 15px -3px #0000001A;
}

.onq-modal .onq-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.onq-modal .onq-modal-header .close {
    font-size: 28px;
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.onq-modal .onq-modal-header-title {
    flex: 1;
}