.toast {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
#toast-container {
  display: block;
  position: fixed;
  z-index: 1001; }
  @media only screen and (max-width : 600px) {
    #toast-container {
      min-width: 100%;
      top: 10%;
      right: 1%; } }
  @media only screen and (min-width : 601px) and (max-width : 992px) {
    #toast-container {
      min-width: 30%;
      top: 10%;
      right: 1%; } }
  @media only screen and (min-width : 993px) {
    #toast-container {
      min-width: 8%;
      top: 10%;
      right: 1%; } }

.toast {
  text-align: center;
  border-radius: 2px;
  top: 0;
  /*width: 180px;*/
  clear: both;
  margin-top: 10px;
  position: relative;
  max-width: 100%;
  /*height: 30px;*/
  line-height: 12px;
  /*background-color: #323232;*/
  padding: 20px;
  font-size: 1.3rem;
  font-weight: 300;
  /*color: #fff;*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between; }
  .toast .btnt, .toast .btnt-large, .toast .btnt-flat {
    margin: 0;
    margin-left: 3rem; }
  .toast.rounded {
    border-radius: 24px; }
  @media only screen and (max-width : 600px) {
    .toast {
      width: 100%;
      border-radius: 0; } }
  @media only screen and (min-width : 601px) and (max-width : 992px) {
    .toast {
      float: left; } }
  @media only screen and (min-width : 993px) {
    .toast {
      float: right; } }