/*!
 * Toast.js v1.0
 * Copyright (c) 2024, Malik akee

 */
.matoast-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

.matoast {
  padding: 16px 12px;
  margin: 6px;
  font-family: 'Arial';
  font-size: 10pt;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  width: 256px;
  box-shadow: 0 2px 0 rgba(180, 180, 180, 0.7);
  display: flex;
}

.matoast .icon {
  width: 28px;
  display: inline-block;
  vertical-align: top;
  top: -50%;
}

.matoast .text {
  width: 210px;
  display: inline-block;
  position: relative;
  left: 4px;
}

.matoast .fa {
  font-size: 14pt;
  margin-right: 8px;
}

.matoast.success {
  background: #22c55e;
  box-shadow: 0 4px 7px -1px rgba(0,0,0,.11),0 2px 4px -1px rgba(0,0,0,.07);
}

.matoast.success:not(.fading):hover {
  background: rgb(56.1,202.8,110.1);
}
.matoast.info {
  background: #17a2b8 !important;
  box-shadow: 0 4px 7px -1px rgba(0,0,0,.11),0 2px 4px -1px rgba(0,0,0,.07);
}

.matoast.info:not(.fading):hover {
  background:#138496 !important
}
.matoast.warning {
  background: #ffc107  !important;
  box-shadow: 0 4px 7px -1px rgba(0,0,0,.11),0 2px 4px -1px rgba(0,0,0,.07);
}

.matoast.warning:not(.fading):hover {
  background:#c29305  !important
}

.matoast.error {
  background: #ef4444;
  box-shadow: 0 4px 7px -1px rgba(0,0,0,.11),0 2px 4px -1px rgba(0,0,0,.07);
}

.matoast.error:not(.fading):hover {
  background:rgb(240.6,86.7,86.7);
}
