/* basic style from figma text, icon, etc. */

.obpro-title-h3 {
    color: #000000 !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 32px !important;
}

.obpro-title-h3.lte {
    font-size: 24px !important;
    line-height: 26px !important;
}

.obpro-title-sub-h3 { 
    color: #ED925A !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 26px !important;
}

.obpro-title-sub-h3.lte { 
    font-size: 18px !important;
    line-height: 20px !important;
}

.obpro-title-h4 { 
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
}

.obpro-title-sub-h4 { 
    color: #969696 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
}

.obpro-title-h6 { 
    color: #000000 !important;
    font-weight: 600 !important;
    line-height: 14px !important;
}

.obpro-icon-primary {
    color: #ED925A !important;
}

.obpro-title-h2 {
    color: #000000 !important;
    font-size: 45px !important;
    font-weight: 700 !important;
    line-height: 16px !important;
}

.obpro-badge {
    padding: 10px 5px !important;
}

/* app loader */

#obpro-app-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#obpro-app-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#obpro-app-loader img {
    height: 60px;
    animation: fade-blink 2s ease-in-out infinite;
    opacity: 1;
}

@keyframes fade-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media screen and (max-width: 402px) {
    #obpro-app-loader img {
        height: 40px;
    }
}