@import url("define.css");

div.sidemsg {
  position: fixed;
  z-index: 1000;
  top: 10%;
  right: 0.5%;
  background: var(--mbg3);
  width: unset;
  min-width: 150px;
  max-width: 500px;
  padding: 10px;
  padding-top: 20px;
  border: 1px solid var(--mbg);
  border-radius: 5px;
  color: var(--mco);
  text-align: justify;
  display: none;
}

div.sidemsg>b {
  position: absolute;
  top: 3px;
  right: 10px;
  color: red;
  text-shadow: 0 0 10px var(--mco);
  cursor: pointer;
}

div.sidemsg p {
  color: var(--white);
  margin: 5px;
}


div.sidemsg p.err {
  color: var(--red);
}

div.sidemsg p.suc {
  color: var(--green);
}

div.sidemsg p a {
  color: var(--blur);
  text-decoration: underline;
}

@media only screen and (max-device-width: 450px), only screen and (max-width: 450px) {
 div.sidemsg {
    min-width: 50%;
  }
}