#message__content{
  width: max-content;
  position: fixed;
  top: 5rem;
  right: 3rem;
  z-index: 999;
}
.message__content-type{
  margin: 0 0 .5rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  box-shadow: -4px 3px 8px 0px rgba(0,0,0,0.13);
  width: max-content;
  max-width: 15rem;
  cursor: pointer;
  border-radius: 3px;
  z-index: 999;
  background: white;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.message__text{
  margin: 0;
  line-height: 1.2;
  width: max-content;
  max-width: 15rem;
  border-radius: 2px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.message__content-error{
  /*border: 1px solid #e9c2c2;*/
  border-left: 3px solid #b94a48;
  background: #ffe8e8;
}
.message__content-success{
  /*border: 1px solid #71a064;*/
  border-left: 3px solid #40A578;
  background: #9DDE8B;
}
.message-hide{
  opacity: 0;
}