.msg {
  z-index: 10;
  position: fixed;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  text-align: left;
  font-weight: bold;
  opacity: 0;
  right: 0;
  margin: 0 auto;
  word-break: break-all;
  transition: 0.1s;
  z-index: 1000;
  filter: drop-shadow(6px 6px 8px rgba(0, 0, 0, 0.15));
}
.msg-suc {
  background: rgba(201, 253, 206, 0.918);
  background: rgba(255, 255, 255, 0.95);
}
.msg-suc__text {
  margin: 2rem 2.5rem;
  color: #0028d4;
}
.msg-war {
  background: rgba(253, 252, 201, 0.918);
  background: rgba(255, 255, 255, 0.95);
}
.msg-war__text {
  margin: 2rem 2.5rem;
  color: #BC1E1E;
}
.msg-err {
  display: table;
  background: rgba(255, 255, 255, 0.95);
}
.msg-err__text {
  margin: 2rem 2.5rem;
  color: #ef0000;
}
.msg-err__btn--close {
  text-align: center;
  width: 40px;
  height: 40px;
  font-size: 40px;
  line-height: 1;
  transition: 0.3s;
  cursor: pointer;
  font-weight: 100;
  color: #000000;
  font-weight: 100;
  position: absolute;
  top: 5px;
  right: 5px;
}
@media (min-width: 768px) {
  .msg-suc {
    left: 0;
  }
  .msg-war {
    left: 0;
  }
  .msg-err {
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .msg-suc {
    left: 0;
  }
  .msg-war {
    left: 0;
  }
  .msg-err {
    left: 0;
  }
}

.left-0 {
  left: 0 !important;
}

.hr-custom {
  margin: 10px 0 30px 0;
}
