﻿* {
margin: 0;
padding: 0;
}

p {
margin: 10px 0;
}


body {
    font-family: "Lato", sans-serif;
    /*background: #e6f7ff;*/
    background: #d9d9d9;
}



.sidenav {
    height: 350px;
    width: 350px;
    position: fixed;
    z-index: 1;
    /*top: 76px;
    left: 8px;*/
    top: 67px;


    background-color: #ffa94d;
    /*background-color: #e6f7ff;*/
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 16px;
    display:none;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #4d2800;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus{
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.labelSigla {
    border-color: #804200;
    background-color: #ff8400;
    font-color: #331a00;
    font-size: 25px; 
}
#lbSigla {
    border: 1px solid #808080;
    background-color: #F0E68C;
    font-weight: bold;
    }

#main {
    transition: margin-left .5s;
    /*padding: 16px;*/
}

/*
    ToolTips
*/
.tooltipGSE {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltipGSE .tooltiptextGSE {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltipGSE .tooltiptextGSE::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltipGSE:hover .tooltiptextGSE {
  visibility: visible;
  opacity: 1;
}

/*
    POPUP
*/

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}