/* Подключение локальных Bootstrap Icons */
@font-face {
    font-family: "bootstrap-icons";
    src: url("fonts/bootstrap-icons.woff2") format("woff2"),
         url("fonts/bootstrap-icons.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
.bi {
    font-family: "bootstrap-icons" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    letter-spacing: normal;
    display: inline-block;
    text-decoration: inherit;
    text-align: center;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Крупные кнопки для мобильных */
.btn-lg, .form-select {
    font-size: 1.2rem;
}
/* Для копирования результата */
.user-select-all {
    user-select: all;
}
/* Адаптивность видео и сканера */
@media (max-width: 600px) {
    #scanner-block video {
        width: 100vw;
        height: 40vw;
        max-width: 100vw;
        max-height: 60vw;
    }
    .card {
        margin: 0 -10px;
    }
    .container {
        padding-left: 2px;
        padding-right: 2px;
    }
}
/* Убрать outline при клике мышью */
button:focus, select:focus, input:focus {
    outline: none !important;
    box-shadow: 0 0 0 .2rem rgba(13,110,253,.2) !important;
}
