/*
 * ConditionALL Custom styles
 */

:root {
    --c-all-blue-color: #00679b;
    --c-all-orange-color: #ee7d5a;
}

@font-face {
    font-family: 'DINCONDENSED-BOLD';
    src: url('/auth/assets/DINCONDENSED-BOLD.TTF');
}

/**********************************************
 * Change portal page title using CSS
 * hack based on https://stackoverflow.com/questions/7896402/how-can-i-replace-text-with-css
 **********************************************/
.logo-txt {
    visibility: hidden;
    line-height: 0; /* Collapse the original line */
 }

.logo-txt:after {
    font-family: 'DINCONDENSED-BOLD';
    color: var(--c-all-blue-color) !important;
    content: 'ConditionALL';
    visibility: visible;
    text-indent: 0;
    display: block;
    line-height: initial; /* New content takes up original line height */
}

/* Hide Qr code */
#bookmarks {
    visibility: hidden;
}
