/*----------INITIALIZE STYLES----------*/

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
    transition: 0.3s ease;
}
body {
    position:relative;
}
body,html {
    width: 100%;
    height: 100vh;
}
li{
    list-style: none;
    margin:0;
    padding:0;
}
a {
    cursor: pointer;
}
a,nav a,li span,td a {
    text-decoration: none;
}
input:focus,
select:focus,
textarea:focus,
input.form-control:focus,
select.form-control:focus,
a:focus {
    outline:none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

/*------------------------------------*/
/*------------------------------------*/
/*------------------------------------*/

.main-menu-content {
    height: 100%;
    position: fixed;
    top:0;
    left:0;
    z-index:1;
}

.main-content {
    padding:2%;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
}
.content {
    padding-left: 16rem;
}

.user-info {
    background-color: var(--font);
}
.position-relative {
    position: relative;
}

.menuPanel,#spec-tec {
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.collapseElement {
    display: none;
    /*overflow: hidden;*/
    transition: max-height 0.3s ease;
}
.collapseElementShow {
    transition: max-height 0.3s ease;
}
#Main {
    z-index:5;
}


/*----Loading page-----*/


.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 3;
}

.page-overlay .content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

tfoot {
    display: table-row-group;
}


/*---------------------------*/

@media (max-width: 1280px) {
    .content {
        padding-left: 0;
        padding-top: 4.7rem;
    }
}

/* --------- Animations --------- */


.page-opacity-0 {
    opacity: 0;
}

.z-20 {
    z-index: 20;
}