﻿#snackbar-suc{
  display: none;
  max-width: 650px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: relative;
  z-index: 1;
  left: 11%;
  bottom:70% !important;
  font-size: 17px;
  background-color: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
  color:#030b23;
  margin-top: 15px;
}
#snackbar-suc-note{
  display: none;
  max-width: 650px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: relative;
  z-index: 1;
  left: 11%;
  bottom:70% !important;
  font-size: 17px;
  background-color: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
  color:#030b23;
  margin-top: 15px;
}
#snackbar-error{
 visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 11%;
  bottom: 150px;
  font-size: 17px;
  background-color: #030b23;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
  color:#31dd95;
  position:relative;
}

#snackbar-suc.show {
  display: block;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#snackbar-error.show {
   display: block;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/*@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 450px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 450px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 450px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 450px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}*/