
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.form-control:focus, .form-check-input:focus, .form-select:focus{
    outline: 2px solid var(--color-hell);
    outline-offset:1px;
    -webkit-box-shadow: none;
    box-shadow: none;       
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn-no-box-shadow:focus, .btn-no-box-shadow:active, .btn-no-box-shadow:active:focus{
    box-shadow:none;
}

.btn-outline-primary:active{
    background-color: var(--color-hell) !important;
    color:white !important;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-weight:400;
    font-size:17px;
}

.bg-guest{
    background-color: var(--color-bg-guest);
}