* {
  box-sizing: border-box;
}
li{
  list-style-type: none;
}


html {
  width: 100%;
  height: 83%;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: #333;
}
body{

  overflow-y: scroll;
  margin-top: 0px;
  margin-left: 0px;
  height: 100%;
}
tbody{
  height: 100%;

}
table{
  height: 100%;
  display: none;
}
tr{
  height: 100%;
}
td{
  padding-top: 10px;
  width: 450px;
  height: 100%;
}

.espaco{
  width: 20%;
}
.cd-accordion-menu{
  border: 1px solid #ddd;
  padding-top: 2px;
  transition: max-height 0.2s ease-out;
  /*width: 30%;*/
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
}
.cd-accordion-menu .inputItem[type=checkbox] {
  position: absolute;
  opacity: 0;

}
.cd-accordion-menu ul {
  display: none;
  padding-bottom: 5px;
  width: 100%;
  flex-direction: column;
}
.accordion{
  height: 100%;
  display: absolute;
  margin-bottom: 0;
  margin: 0px; 
}
.cd-accordion-menu ul li {
  padding-top: 5px;
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.cd-accordion-menu ul li:hover {
  background-color: #F0F0F0;
  border-left: 1px solid #ddd;
}
.title{
  user-select: none;
  text-align: center;
  padding: 10px; 
  height: 100%;
  font-size: 16px;
  font-family: "Allerta Stencil", Sans-serif;
 /* border: 1px solid #ddd;*/
  position: relative;
}

.title button{
  background-image: url('download.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 25px;
  height: 25px;
  background-color: #FFF;
  position: absolute;
  top: 5px;
  border: none;
  border-radius: 5px;
  right: 0;
  outline:0;
}
.title button:hover{
  background-color: #F0F0F0;
}
.title button:active {
  background-color: #ddd;
}

.cd-accordion-menu .inputItem[type=checkbox]:checked + label + ul{
  animation-name: getItens;
  animation-duration: 0.5s;
  display: flex;
}
#fileinput{
  display: none;
}

ul li .inputItem[type=checkbox] {
  position: absolute;
  cursor: pointer;

  height: 20%;
  z-index: 1;
  opacity: 0;
}
.cd-accordion-menu label {
  position: relative;
  background-position: 95% 50%;
  background-image: url('down.png');
  background-repeat: no-repeat;
  display: block;
  border: 1px solid #ddd;
  margin-top: -1px;
  border-radius: 5px;
  padding: 5px 5px 5px 20px;
}

.cd-accordion-menu .inputItem[type=checkbox]:checked + label {
  animation-name: upItem;
  animation-duration: 0.5s;
  background-image: url('up.png');
}
.cd-accordion-menu .inputItem[type=checkbox]:not(:checked) + label {
  animation-name: downItem;
  animation-duration: 0.5s;
  background-image: url('down.png');
}

#fileinput:valid ~ table{
  display: block;
}


@keyframes downItem {
  0% {
    opacity: 0;
    transform-origin: bottom center;
    transform: rotateX(-90deg);
  }
}
@keyframes upItem {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
}

@keyframes getItens{
  0% {
    opacity: 0;
    transform-origin: bottom top;
    transform: rotateY(20deg);
  }
}
@keyframes hideItens{
  0% {
    opacity: 0;
    transform-origin: top bottom;
    transform: rotateY(20deg);
  }
}


.navbar {
  overflow: hidden;
  display: block;
  background-color: #FFF;
  position: fixed; /* Set the navbar to fixed position */
  top: 0px; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  height: 90px;
  z-index: 10;
  border-bottom: 1px solid #F0F0F0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.025), 0 0.25px 5px 0 rgba(0, 0, 0, 0.19);
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

/* Main content */
.main {
  margin-top: 100px; /* Add a top margin to avoid content overlay */
  height: 100%;
  margin-bottom: 15px;
}
.logo{
  margin-top: 10px;
  margin-left: 10px;
  height: 100%;
  background-image: url('coding.png');
  background-repeat: no-repeat;
}
.logo label{
  padding-left: 80px;
  color: #6D6D6D;
  font-size: 45px;
  text-align: center;
  line-height: 65px;
  font-family: "Allerta Stencil", Sans-serif;
}

#myInput  {
  background-position: 10px 12px;
  background-repeat: no-repeat;
  padding: 10px 10px 5px 10px;
  width: 100%;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.pesquisa{
  position: fixed;
  margin-left: 30%;
  top: 30px;
  width: 50%;
}
.drop_zone{
  border: 5px dashed #ddd;
  height: 100%;
  margin: 15px;
  background-image: url('cloud-storage.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.textFieldEdit{
  width: 100%;
  border-radius: 5px;
  border: 1px solid #0099ff;
  padding: 2px;
  outline: 0;
}
