html {
  width: 100%;
}
body {
  overflow-x: hidden !important;
}
body.show-spinner > main {
  overflow: hidden !important;
}
body.show-spinner > * {
  opacity: 0;
}
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.hiddenInputs {
  border: none;
  background: none;
  font-size: 35px;
  display: none;
}

#detailTitle {
  font-size: 35px;
  margin-left: 20px;
}

#detailDate {
  font-size: 30%;
  margin-left: 20px;
  color: darkgrey;
  font-size: 20px;
}

#modifyTitleButton {
  font-size: 20px;
  color: grey;
  margin-left: 20px;
  border: none;
  background: none;
}

#postModifyTitleButton {
  font-size: 20px;
  color: green;
  margin-left: 20px;
  border: none;
  background: none;
  display: none;
}

#circuloRojo {
  background: #dc3545;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
}

#circuloAzul {
  background: #184f90;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
}

#circuloVerde {
  background: #28a745;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
}

#circuloAmarillo {
  background: #ffc107;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
}

#circuloAmarillo {
  background: #ffc107;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
}

#circuloTotal {
  background: #708090;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
}
