html {
    font-size: 14px;
    position: relative;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    background-color: transparent;
    max-width: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.fontstyle {
    font-size: 14px;
    font-family: 'Segoe UI';
}

.fontstylemenu {
    font-size: 18px;
    font-family: 'Segoe UI';
    font-weight: bold;
}

.buttoncoolor, .borderbuttoncolor {
    background-color: #FF8A00;
}


.navbar, navbar-expand-lg, bg-body-tertiary {
    background-color: transparent !important;
}

    /*#FF8A00*/


/*    $$$$$$$$$$$$   */


.accordion-button .bi-chevron-down {
    transition: transform 0.3s ease;
}

/* Поворот стрілки вгору, коли елемент розкритий */
.accordion-button:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

.fixed-arrow {
    right: 10px;
}

.accordion-button::after {
    /* Видаляємо стандартну іконку */
    background-image: none !important;
}

.bottom-line {
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

    .bottom-line::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: #FF8A00;
        bottom: 0;
        left: 50%;
        transition: all 0.3s ease;
    }

    .bottom-line:hover::after {
        width: 100%;
        left: 0;
    }


