@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: '"proxima-nova-condensed"', Arial, sans-serif;
    background: linear-gradient(to right, #eef2f3, #dae3eb);
}

/*Choice Screening Logo*/
#nav_cs_logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
}

    #nav_cs_logo > a > img {
        padding-left: 2rem;
        display: block;
        position: absolute;
        height: 80%;
        margin-top: -1.5rem;
    }


a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/*Creates a smooth transition for elements that get dynamically added,
    like adding a new Address, Alias, etc. Animations are at the bottom
    of this document. (Could also be used for smooth page transitions and the like)
*/
.dynamic {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-animation: fadeInFromNone 0.5s ease-out;
    animation: fadeInFromNone 0.5s ease-out;
}

.applicant_name {
    color: var(--mud-palette-secondary);
    text-decoration: underline;
}

.t-center {
    text-align: center;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInFromNone {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.mud-grid-spacing-xs-3 {
    width: 100% !important;
}