*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a:link, a:visited, a:hover, a:active { text-decoration: none; }

body {
    overflow-x: hidden;
}
/* Content area */
#content {
    display: flex;

    padding: 0;
    width: 100vw;
    height: 100vh;
    /*min-height: 100vh;*/
    justify-content: center;
    overflow-x: hidden;
}
#content > #content-column {
    display: flex;
    position: relative;
    flex-direction: column;
    align-content: stretch;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    /*overflow-x: scroll;*/
}
#content > #content-column > .content {
    min-height: fit-content;
    height: fit-content;
}
#sidebar {
    position: relative;
    width: 0;
    /*height: 100vh;*/
    transition: all 1.5s ease-out;
    /*transition: width 2s ease-out;*/
    background-color: #0c0c0c;
}
#sidebar > button#toggle-sidebar > i.fas::before {
    content: "\f105";
}
button#toggle-sidebar{
    position: absolute;
    transition: right 1.5s ease-out;
    right: -3rem;
    top: 0.5rem;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.5;
    background-color: #0a53be;
    color: whitesmoke;
    border-radius: 20%;
    border: none;
    z-index: 2000;
}
@media screen and (max-width: 672px){
    #sidebar.active {
        position: absolute;
        left: 0;
        z-index: 1100;
        width: 100vw;
        height: 100vh;
    }
    #sidebar.active > button#toggle-sidebar > i.fas::before {
        content: "\f104";
    }
    #sidebar.active > button#toggle-sidebar {
        /*right: 2rem;*/
    }
}

@media screen and (min-width: 672px) {
    #sidebar.active-dk {
        position: relative;
        width: 20rem;
    }
    #sidebar.active-dk > button#toggle-sidebar > i.fas::before {
        content: "\f104";
    }
}

button#toggle-sidebar::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
#sidemenu {
    overflow: hidden;
}
#sidemenu .side-body > ul > li::marker {
    content: "";
}
#sidemenu .side-body > ul > li > a{
    word-break: keep-all;
    cursor: pointer;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    display: block;
    color: rgba(255, 255, 255, 0.6);
    min-width: max-content;
    width: 100%;
}
#sidemenu .side-body > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
#sidebar .side-body > ul > li > span {
    color: white;
}
#sidemenu .side-body > ul > li.active {
    background-color: #050505;
}
#sidemenu .side-body > ul > li.active > a {
    color: white;
}
#sidemenu .side-top {
    display: flex;
    overflow-x: hidden;
    max-height: max-content;
    height: 6rem;
    padding-right: 1rem;
    background-color: #0a53be;
}
/*#sidemenu .side-top img {
    position: relative;
    height: 80px;
    margin: 1rem;
}*/
/*#sidemenu .side-top > .img-user{
    padding: 1.5rem;
}*/
#sidemenu .side-top > img {
    height: 100%;
    padding: 1rem;
}
#sidemenu .side-top > .info-user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
}
#sidemenu .side-top > .info-user > .info-row h4 {
    margin: 0;
}
.info-permessi {
    cursor: help;
}
.mr-3 {
    margin-right: 0.5rem;
}
.mb-05 {
    margin-bottom: 0.5rem;
}
ul {
    padding: 0;
}

.special-row {
    margin: 0;
    width: 100%;
}
#content-row {
    width: 100%;
    padding-top: 4rem;
    padding-left: 4rem;
}
.content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/*** Spinner ***/
#spinner {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-available;
    width: -webkit-fill-available;
    /*min-width: 100%;*/
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 3.5s ease-out, visibility 0s linear 4s;
    z-index: 1000;
}
@media only screen and (max-width: 600px) {
    #spinner {
        height: 100vh;
        width: 100vw;
    }
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.background-light {
    background-color: gainsboro;
}

section {
    margin-top: 1rem;
}
section > .section-title {
    text-align: left;
    margin-left: 2rem;
    margin-bottom: 1rem;
}
section > .section-title h2 {
    color: #0a53be;
    text-transform: uppercase;
}
.footer {
    margin-top: auto;
    margin-bottom: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
    text-align: center;
    outline: none;
}
@media screen and (max-width: 1400px) {
    li.list-piatti {
        display: none;
    }
}