html {
    font-size: 15px;
    position: relative;
    min-height: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.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;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,*/
/*select,
textarea {
    max-width: 280px;
}*/

.required:after {
    content: "*";
    color: red;
}

.bg-camposcuola {
    background-color: #1382dc !important;
}

div.card-header.bg-camposcuola {
    background-color: #4863A0 !important;
}

a.bg-camposcuola:hover, a.bg-camposcuola:focus,
span.bg-camposcuola:hover, span.bg-camposcuola:focus,
div.btn.bg-camposcuola:hover, div.btn.bg-camposcuola:focus,
button.bg-camposcuola:hover, button.bg-camposcuola:focus {
    background-color: #044dc1 !important;
}

div.card-header.bg-grest {
    background-color: #f88f45 !important;
}

.bg-grest {
    background-color: #1382dc !important;
}

a.bg-grest:hover, a.bg-grest:focus,
span.bg-grest:hover, span.bg-grest:focus,
div.btn.bg-grest:hover, div.btn.bg-grest:focus,
button.bg-grest:hover, button.bg-grest:focus {
    background-color: #044dc1 !important;
}

.bg-birra {
    background-color: gold !important;
}

.border-birra {
    border-color: gold !important;
}

.bg-light-success {
    background-color: lightgreen !important;
}

.bg-lightsteelblue {
    background-color: lightsteelblue !important;
}

.border-piatto-selezionato {
    border: 3px solid;
    border-color: black;
}

i.text-primary:hover {
    color: #044dc1 !important;
    background-color: white;
}

.btn-cassa {
    height: 80px;
    text-align: center;
    font-size: xxx-large;
    font-weight: 700;
}

.btn-canc {
    height: 80px;
    text-align: center;
    font-size: x-large;
    font-weight: 700;
}

.card-radius {
    overflow: hidden;
    margin: 10px 10px 10px 0px;
    border-radius: 15px;
    /*border: none;*/
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.align-bottom-0 {
    position: absolute;
    bottom: 0;
}

.text-through {
    text-decoration: line-through;
}

.toast {
    max-width: 900px;
}

.table-fixed {
    table-layout: fixed;
    width: 100%;
}

/* Override the default bootstrap padding for table th and td */
.table th, .table td {
    padding: 0.25rem;
}

.form-group {
    margin-bottom: 0.75rem !important;
}

.card-header {
    padding: 0.25rem 0.75rem !important;
}

.card-body {
    padding: 1.00rem 1.00rem 0.50rem 1.00rem !important;
}

input[type='file'] {
    cursor: pointer !important;
    font-size: 0;
}

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-cell {
    cursor: cell !important;
}

.text-black-20 {
    color: rgba(0, 0, 0, 0.2) !important;
}

.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.disabled-piatto {
    pointer-events: none;
}

.faq-gradient-button {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    border-radius: 30%;
}

    .faq-gradient-button:after {
        content: '';
        display: block;
        z-index: -1;
        position: absolute;
        top: -2rem;
        right: 0;
        bottom: -2rem;
        left: 0;
        background-image: linear-gradient(red, yellow, green);
        animation: rotate-gradient linear 1s infinite;
    }

.table-responsive {
    height: calc(100vh - 110px); /*full height minus header and footer => view horizontal scroolbar on page bottom*/
}

@keyframes rotate-gradient {
    to {
        transform: rotate(360deg)
    }
}

@media print {
    .btn {
        display: none;
    }

    .footer {
        display: none;
    }

    html, body, span, p {
        font-size: 14pt !important;
    }
}

@media (max-width: 767.98px) {
    .bodyHead {
        font-size: 98% !important;
    }
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}