.oculus_error-box {
    padding: 12px 20px;
    border: 2px solid #cc0003;
    color: #cc0003;
    font-family: "Segoe UI", "Open Sans", "Arial", sans-serif;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 40px;
    background-color: #f7f7f7;
    display: none;
    z-index: 1;
}

.oculus_success-box {
    padding: 12px 20px;
    border: 2px solid #1f8000;
    color: #1f8000;
    font-family: "Segoe UI", "Open Sans", "Arial", sans-serif;
    font-size: 16px;
    text-align: center;
    position: absolute;
    top: 40px;
    background-color: #f7f7f7;
    display: none;
}

.oc_button {
    background-color: #0086cb;
    padding: 13px 29px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-family: "Segoe UI", "Open Sans", "Arial", sans-serif;
    text-align: center;
    transition: all 0.25s ease-in-out;
}

.oc_button:hover {
    background-color: #005f99!important;
    color:#fff;
}

.oc_softbreak {
    margin-bottom: 10px;
}

.oc_mb0 {
    margin-bottom:0px!important;
}

.oc_mb5 {
    margin-bottom:5px!important;
}

.oc_mb10 {
    margin-bottom:10px!important;
}

.oc_mt10 {
    margin-top:10px!important;
}

.oc_ul {
    list-style-type: none;
    padding-inline-start: 35px;
    margin: 0px;
}

.oc_ul li {
    position: relative;
    padding: 10px 5px;
}

.oc_ul li::before {
    content: "\f058";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 30px;
    color: #0086cd;
    margin-left: -40px;
    position: absolute;
    top: 0px;
}

.oc_flex_row {
    display:flex;
    flex-direction: row;
}

.oc_flex_column {
    display:flex;
    flex-direction: column;
}

.oc_justify_center {
    justify-content: center;
}

.oc_justify_space_between {
    justify-content: space-between;
}

.oc_justify_end {
    justify-content: flex-end;
}

.oc_align_center {
    align-items: center;
}

.oc_align_end {
    align-items: flex-end;
}