﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

@keyframes focusPop {
    0% {
        background-color: #D5D6D7;
        border-color: #2E3239FF;
    }
    100% {
        background-color: inherit;
        border-color: #2E323900;
    }
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #C25A3C;
}

a:hover, .btn-link:hover {
    color: #CE7B63;
}

.btn-primary {
    color: #fff;
    background-color: #C25A3C;
    border-color: #92432D;
}

.btn-primary:hover {
    background-color: #CE7B63;
    border-color: #C25A3C;
}

.btn-primary:not(:disabled):not(.disabled):active {
    background-color: #92432D;
    border-color: #6B3121;
}

.btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 0 0 0 .2rem #C25A3C7F;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.spinner-grow:nth-child(2) {
    animation-delay: 250ms;
}

.spinner-grow:nth-child(3) {
    animation-delay: 500ms;
}

#app-loading {
    color: #2E3239;
    display: block;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#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;
    }

#faqIndex .btn.btn-link {
    text-align: left;
}

#faqIndex .btn.btn-link.in-focus {
    font-weight: bold;
}

#faqContent {
    background-color: inherit;
    border-color: #2E323900;
    border-radius: 1rem;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 1.5rem;
    padding: 1rem;
}

#faqContent:focus {
    animation: focusPop 2s;
}

#faqContent .question-text {
    font-weight: bold;
}

#faqContent .answer-text {
    padding-left: 2rem;
}

#faqContent .link-to-top {

}