/**** TOASTS ****/
.generaltoast, .errortoast, .confirmtoast, .infotoast, .warningtoast, .downloadtoast {
  padding: 0.8em 1em 0.8em 1em;
  margin: 0 0 0.4em 0;
  text-align: center;
  font-size: 17px;
  z-index: 6000;
}

.errortoast {
  background: #dc5959;
  border-top: 2px solid #ab2424;
}

.errortoast .message-toast {
  color: white;
}

.confirmtoast {
  background: #46b34b;
  border-top: 2px solid #2a692d;
}

.confirmtoast .message-toast {
  color: #d6efd7;
}

.infotoast {
  background: #1a79d7;
  border-top: 2px solid #145ca4;
}

.infotoast .message-toast {
  color: #edf5fd;
}

.warningtoast {
  background: #f6cb34;
  border-top: 2px solid #e8b70a;
}

.warningtoast .message-toast {
  color: white;
}

.downloadtoast {
  background: #a759cb;
  border-top: 2px solid #8d38b4;
}

.downloadtoast .message-toast {
  color: white;
}

.toast-container {
  position: absolute;
  right: 1%;
  top: 10%;
  z-index: 1000;
}

.ui-widget-content input {
  color: #ffffff;
}

/**** BOXS ****/
.iconebox, .box-confirm i, .box-error i, .box-info i, .box-warning i, .box-download i {
  line-height: 60px;
  min-height: 60px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 40px;
  min-width: 26px;
  width: 42px;
  text-align: center;
}

.box-confirm {
  min-height: 60px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  position: relative;
  margin: 0 0 0 0;
  background: #89c632;
  border-top: 3px solid #73a62a;
}

.box-confirm span {
  color: #d6efd7;
  padding-left: 50px;
}

.box-confirm i {
  color: #628d24;
  text-shadow: 0 1px #c5e598;
}

.box-error {
  min-height: 60px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  position: relative;
  margin: 0 0 0 0;
  background: #f75c43;
  border-top: 3px solid #f53a1b;
}

.box-error span {
  color: white;
  padding-left: 50px;
}

.box-error i {
  color: #e8290a;
  text-shadow: 0 1px #f97e6a;
}

.box-info {
  min-height: 60px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  position: relative;
  margin: 0 0 0 0;
  background: #43b1f7;
  border-top: 3px solid #1ba1f5;
}

.box-info span {
  color: #edf5fd;
  padding-left: 50px;
}

.box-info i {
  color: #0a92e8;
  text-shadow: 0 1px #78c7f9;
}

.box-warning {
  min-height: 60px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  position: relative;
  margin: 0 0 0 0;
  background: #f7cf43;
  border-top: 3px solid #f5c51b;
}

.box-warning span {
  color: white;
  padding-left: 50px;
}

.box-warning i {
  color: #e8b70a;
  text-shadow: 0 1px #fae391;
}

.box-download {
  min-height: 60px;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  position: relative;
  margin: 0 0 0 0;
  background: #ad65cf;
  border-top: 3px solid #9d45c5;
}

.box-download span {
  color: white;
  padding-left: 50px;
}

.box-download i {
  color: #8d38b4;
  text-shadow: 0 1px #ba7cd6;
}
