@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }
.bounceInRight, .toast-enter--top-right, .toast-enter--bottom-right {
  animation-name: bounceInRight; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight, .toast-exit--top-right, .toast-exit--bottom-right {
  animation-name: bounceOutRight; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }
.bounceInLeft, .toast-enter--top-left, .toast-enter--bottom-left {
  animation-name: bounceInLeft; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft, .toast-exit--top-left, .toast-exit--bottom-left {
  animation-name: bounceOutLeft; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }
.bounceInUp, .toast-enter--bottom-center {
  animation-name: bounceInUp; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp, .toast-exit--top-center {
  animation-name: bounceOutUp; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }
.bounceInDown, .toast-enter--top-center {
  animation-name: bounceInDown; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown, .toast-exit--bottom-center {
  animation-name: bounceOutDown; }

.animated {
  animation-duration: 0.75s;
  animation-fill-mode: both; }

.toastify {
  z-index: 11000;
  position: fixed;
  padding: 4px;
  width: 350px;
  max-width: 98%;
  color: #e27d56;
  box-sizing: border-box; }
  .toastify--top-left {
    top: 1em;
    left: 1em; }
  .toastify--top-center {
    top: 1em;
    left: 50%;
    margin-left: -175px; }
  .toastify--top-right {
    top: 1em;
    right: 2em; }
  .toastify--bottom-left {
    bottom: 1em;
    left: 1em; }
  .toastify--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -175px; }
  .toastify--bottom-right {
    bottom: 1em;
    right: 2em; }
  .toastify__img {
    float: left;
    margin-right: 8px;
    vertical-align: middle; }

.toastify__close {
  position: absolute;
  top: 0px;
  right: 2px;
  width: 16px;
  height: 16px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: #aaa;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  opacity: .5;
  transition: .3s ease; }
  .toastify__close:hover, .toastify__close:focus {
    opacity: 1;
    color: #000000; }

.toastify-content {
  position: relative;
  width: 100%;
  min-height: 62px;
  margin-bottom: 12px;
  padding: 8px;
  background: #ffffff;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05); }
  .toastify-content--info {
    border-left: 6px solid #3498db; }
  .toastify-content--success {
    border-left: 6px solid #07bc0c; }
  .toastify-content--warning {
    border-left: 6px solid #f1c40f; }
  .toastify-content--error {
    border-left: 6px solid #e74c3c; }

.toastify__body {
  font-size: 13px; }

@keyframes track-progress {
  0% {
    width: 100%; }
  100% {
    width: 0; } }
.toastify__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 11000;
  opacity: 0.5;
  animation: track-progress linear 1; }
  .toastify__progress--default {
    background-image: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }
  .toastify__progress--info {
    background-color: #3498db; }
  .toastify__progress--success {
    background-color: #07bc0c; }
  .toastify__progress--warning {
    background-color: #f1c40f; }
  .toastify__progress--error {
    background-color: #e74c3c; }

/*# sourceMappingURL=ReactToastify.css.map */