::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(247, 236, 69, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(247, 236, 69, 0.8);
}

div#Notifications {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70%;
}
div#Notifications ul#WrapperNotification {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em;
  border: 1px solid #F7EC45;
  border-radius: 1em;
}
div#Notifications ul#WrapperNotification li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1em;
  width: 100%;
}
div#Notifications ul#WrapperNotification li label {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 0.2em;
}
div#Notifications ul#WrapperNotification li label.Error {
  color: red;
  font-size: 1em;
  margin-top: 0.2em;
}
div#Notifications ul#WrapperNotification li input, div#Notifications ul#WrapperNotification li textarea {
  border: none;
  border-radius: 0.5em;
  background-color: #c2c2c2;
  font-size: 1.3em;
  padding: 0.3em 0.8em;
  font-family: "Dosis", sans-serif !important;
}
div#Notifications ul#WrapperNotification li button {
  border-radius: 0.5em;
  padding: 0.5em;
  color: #FFFFFF;
  border: 1px solid #F7EC45;
  background-color: #000000;
  cursor: pointer;
  font-size: 1.1em;
}
