.toastcontainer{
  min-width: 200px;
  transition-duration: 300ms;
  background-color: rgb(75,75,75);
  border: 1px rgb(58, 58, 58) solid;
  border-radius: 7px;
  color: white;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 0;
  position: fixed;
  margin: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toastcontainer.bottomright {
  right: 0px;
  bottom: -250px;
}

.toastcontainer.bottomleft {
  left: 0px;
  bottom: -250px;
}

.toastcontainer.bottomcenter {
  left: 50%;
  bottom: -250px;
}

.toastcontainer.topright {
  right: 0px;
  top: -250px;
}

.toastcontainer.topleft {
  left: 0px;
  top: -250px;
}

.toastcontainer.topcenter {
  left: 50%;
  top: -250px;
}

.toasticon {
  float:left;
  width: 30px;
  font-size: 23px;
  padding-top: 5px;
  text-align: left;
}

.toastinfo {
  float:left;
}

.toasttitle {
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
}

.toasttext {
  font-size: 12px;
  color: rgb(200, 200, 200);
}

.toastexit {
  float:right;
  position: absolute;
  top: 5px;
  right: 5px;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
  margin-right: 6px;
}

.toastcontainerbutton {
  padding-top: 15px;
  padding-bottom: 7px;
}

.toastbutton {
  max-height: 32px;
  padding: 8px 20px 6px 20px;
  font-size: 14px;
  font-weight: bold;
  background-color: rgb(75,75,75);
  border: 1px #dadada solid;
  border-radius: 2px;
  text-transform: uppercase;
  max-width: 160px;
  min-width: 100px;
  overflow: hidden;
}

.toastbutton:hover {
  -webkit-box-shadow: inset 10px 10px 218px -173px rgba(252,252,252,1);
  -moz-box-shadow: inset 10px 10px 218px -173px rgba(252,252,252,1);
  box-shadow: inset 10px 10px 218px -173px rgba(252,252,252,1);
  border-color: rgba(100,100,100,1);
  cursor: pointer;
}

.toastbutton:active {
  -webkit-box-shadow: inset 10px 10px 300px -173px rgba(252,252,252,1);
  -moz-box-shadow: inset 10px 10px 300px -173px rgba(252,252,252,1);
  box-shadow: inset 10px 10px 300px -173px rgba(252,252,252,1);
  border-color: rgba(140,140,140,1);
  cursor: pointer;
}
