#FAQBorder {
    padding: 50px 0;

    ol {
        list-style: none;
        padding-left: 0;
    }

    .faqControls {
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        width: 50%;
        margin: -50px auto 0;
        height: 45px;
        text-align: center;
        padding: 0;
        border-radius: 50px;
        z-index: 999;
        position: relative;
    }


    .faq:hover .faqControls,
    .faq:focus .faqControls {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn {
        margin-left: 10px;
    }

    .weight800 {
        font-weight: 800 !important;
    }

    .pytanie {
        font-weight: 400;
        border-radius: 50px;
        padding: 15px;
        margin-top: 20px;
        margin-bottom: 0;
        position: relative;
        cursor: pointer;
        border-style: solid;
        z-index: 2;
    }

    .odpowiedz {
        display: none;
        font-weight: 400;
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
        width: 100%;
        padding: 35px 15px 15px 15px;
        margin-top: -25px;
        z-index: 0;
        position: relative;
    }
}