@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;1,200;1,300;1,700&display=swap");
.__frenchy-toast-container {
  position: fixed;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
  font-family: "Source Sans Pro", sans-serif;
  z-index: 999999;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: .5rem;
}

.__frenchy-toast-container .__frenchy-card.simple {
  width: max-content;
  max-width: 35rem;
  height: auto;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin: .5rem 1rem;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  background-color: #fff;
  -webkit-box-shadow: 0.5px 0.5px 20px #00000031;
          box-shadow: 0.5px 0.5px 20px #00000031;
}

.__frenchy-toast-container .__frenchy-card.simple p {
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.2rem !important;
  font-weight: 400 !important;
}

.__frenchy-toast-container .__frenchy-card.simple.active {
  opacity: 1;
  pointer-events: auto !important;
}

.__frenchy-toast-container .__frenchy-card.simple.show {
  -webkit-animation: show_slide 1s ease forwards;
          animation: show_slide 1s ease forwards;
}

.__frenchy-toast-container .__frenchy-card.simple.hide {
  -webkit-animation: hide_slide 0.75s ease forwards;
          animation: hide_slide 0.75s ease forwards;
}

.__frenchy-toast-container .__frenchy-card.simple.radius-5 {
  border-radius: 5px;
}

.__frenchy-toast-container .__frenchy-card.simple.radius-10 {
  border-radius: 10px;
}

.__frenchy-toast-container .__frenchy-card.simple.warning {
  border-left: 0.4rem solid  #e67e22 ;
}

.__frenchy-toast-container .__frenchy-card.simple.warning p{
  color:  #e67e22  !important;
}

.__frenchy-toast-container .__frenchy-card.simple.danger {
  border-left: 0.4rem solid #af0a0a;
}

.__frenchy-toast-container .__frenchy-card.simple.danger p{
  color: #af0a0a !important;
}

.__frenchy-toast-container .__frenchy-card.simple.success {
  border-left: 0.4rem solid #0e9409;
}

.__frenchy-toast-container .__frenchy-card.simple.success p{
  color: #0e9409 !important;
}

@media screen and (max-width: 1000px) {
  .__frenchy-toast-container .__frenchy-card.simple {
    max-width: 25rem;
  }
}

@-webkit-keyframes show_slide {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  40% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes hide_slide {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  70% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  100% {
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
}
