

.feld_gruppe{display: grid;
             grid-template-columns: 1fr 1fr;
			 justify-items: center;
}

.admin_input{font-size: 1.5em;
             height: 60px;
			 width:  400px;
			 border-color: #2b3f49;
			 border-width: 2px;
			 padding: 20px;
			 margin-bottom: 10px;
}

input:required {
  box-shadow: 4px 4px 20px #2b3f49;
}

.center{display: flex;
        align-content: center;
}

tr{height: 10px; 
    font-size: 0.7em;
	line-height: 0.6em;
}
table{border-spacing: 0px;
}

td {height: 14px;
}
.hidden{display: none;
}
.many{display: grid;
      grid-template-columns: repeat(auto-fill, 200px);
	  gap: 30px;
}
.container>.all_subfolders{width: 1200px;
                padding: 20px;
                display: grid;
                grid-template-columns: repeat(auto-fill, 260px);
	             gap: 30px;
				 
} 

ul.files>li{font-size: 0.8em;
          color: blue;
}

.big_button {height: 50px;
             background-color: green;
			 color: white;
			 font-weight: 500;
			 margin-top: 20px;
			 border-radius: 50px;
			 border-color: green;
			 width: 200px;
			 text-align: center;
			 cursor: pointer;
}
.subfolder {border: 1px solid black;
            text-align: center;
			cursor: pointer;
}
body {background-color: #f4f4f4;
}

fico_border{border-color: #48697a;
}
fico_background{background-color: #48697a;
}

                 


.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}