﻿.sidebar {
    background-color: #f2f5f7;
    padding: 2rem 1rem;
}

    .sidebar .nav-link {
        color: #1c5d99;
        font-weight: 500;
        font-size: 1.25rem;
    }

        .sidebar .nav-link.active,
        .sidebar .nav-link:hover {
            font-weight: bold;
            position: relative;
        }

            .sidebar .nav-link.active::before,
            .sidebar .nav-link:hover::before {
                content: '';
                position: absolute;
                left: -15px;
                top: 0;
                bottom: 0;
                width: 10px;
                background-color: #e7542f;
            }



.question-topline {
    border-top: 1px solid #e3b8aa;
}

.question {
    border-bottom: 1px solid #e3b8aa;
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .question a:hover {
        font-weight: bold;
    }

    .question a {
        text-decoration: none;
        color: #1c5d99;
        font-weight: 500;
    }

.arrow {
    color: #1c5d99;
    font-size: 1.5rem;
    font-weight: bold;
}


.go-back-link {
    background-color: #f2f5f7;
    padding: 2rem 1rem;
    text-decoration: none;
}

    .go-back-link:hover {
        text-decoration: none;
    }


@media (min-width: 992px) {

    .question-menu {
       top:120px;
    }
   
}