

/* -----------------------------------Message Box----------------------------------------------- */
.messages {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin: 1rem 0;

  font-size: 0.9rem;
  width: fit-content();
  padding-right: 40px;
}

.messages.dismiss{
  display: none;
}

.message-warning, .message-error {
  background-color: #ffdddd;
  color: black;
}

.message-success {
  background-color: #d4edda;
  color: #black;
}

.message-info {
  background-color: lightyellow;
  color: black;
}

.messages .message-close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: black;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.messages .errorlist {
  position: relative;
  padding-left: unset;
  list-style-type: none;
}
.messages .errorlist .errorlist {
  position: relative;
  padding-left: 20px;
  list-style-type: disc;
}
.messages .errorlist .errorlist>li::marker {}

@media screen and (min-width: 425px) {}
@media screen and (min-width: 600px) {}
@media screen and (min-width: 769px) {}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
