.single-note {
  background: darkgoldenrod;
  padding: .5rem .5rem 0;
  border: solid 1px #fff;
  border-radius: 10px;
  margin-bottom: 5px;
  width: 85%;
  line-height: 20px;
}
.single-note * {
  font-size: 13px;
}
.single-note:nth-child(even) {
  align-self: flex-end;
  margin-right: 10px;
}

.upload-form {
  position: relative;
}
.upload-form ul {
  padding: 0;
  list-style: none;
  font-size: 12px;
  text-align: left;  
}
.upload-form button {
  z-index: 1;
}
.upload-form img {
  border: solid 3px #ccc;
  border-radius: 15px;
}

.upload {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0; 
  left: 0; 
}

.project-notes {
  display: flex;
  flex-direction: column;
  height: calc(100% - 60px);
}

#notes-container {
  flex-grow: 1;
  overflow-y: auto;
  max-height: calc(100vh - 230px);
}

textarea {
  max-height: 80px;
}

.progetto .container-fluid.corpo {
  height: calc(100% - 130px);
  overflow-y: scroll;
}

.select2-selection {
  border: solid 1px #ced4da!important;
  min-height: 30px!important;
  height: 30px!important;
}
.select2-selection__choice {
  font-size: 12px;
}

[class*='_file_list'] a {
  font-size: 14px;
  word-break: break-word;
}

/*SPINNER*/
.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff90;
  z-index: 2
}

.spinner {
  left: 50%;
  margin-left: -4em;
  font-size: 10px;
  border: .8em solid rgba(218, 219, 223, 1);
  border-left: .8em solid #0d6efd;
  animation: spin 1.1s infinite linear;
}

.spinner, .spinner:after {
  border-radius: 50%;
  width: 8em;
  height: 8em;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4.05em;
}

@keyframes spin {
  0% {
      transform: rotate(360deg);
  }

  100% {
      transform: rotate(0deg);
  }
}