﻿.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,123,255,.25);
}


.qa_question {
    color: #212529;
    text-decoration: none;
    transition: color .5s;
    padding-right: 5px;
    white-space: normal;
    text-align: left;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
}

.qa_question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.qa_row {
    background-color: transparent;
    border: 0;
    height: auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    margin-bottom: 10px;
}

.qa_question {
    background-color: #eaedf0;
    border-left: 4px solid #005191;
    color: #005191;
    cursor: pointer;
    font-weight: bold;
}

.qa_answer {
    display: none;
    margin-top: 10px;
    padding: 0.75em;
}

    .qa_answer p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .qa_answer a {
        color: #005191;
        font-weight: bold;
        text-decoration: underline;
    }

.qa_question.plus {
    font-weight: normal;
}


    .qa_question.plus::after {
        content: "+";
        transition: transform .25s linear;
        transform: rotate(180deg);
        line-height: 25px;
        margin-right: 10px;
        font-family: Arial;
        font-size: 25px;
    }

.qa_question.minus {
    font-weight: bold;
}

    .qa_question.minus::after {
        content: "-";
        transition: transform .25s linear;
        transform: rotate(180deg);
        line-height: 25px;
        margin-right: 10px;
        font-family: Arial;
        font-size: 25px;
    }
