@import "https://fonts.googleapis.com/css2?family=Poppins&display=swap";
@import "https://fonts.googleapis.com/css2?family=DM+Sans&display=swap";
/* [project]/styles/Nprogress.css (css) */
#nprogress {
  --primary-color: #4c5df7;
  pointer-events: none;
}
#nprogress .bar {
  background: var(--primary-color);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px var(--primary-color), 0 0 5px var(--primary-color);
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: var(--primary-color);
  border-left-color: var(--primary-color);
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}
.nprogress-custom-parent #nprogress .spinner, 
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* [project]/styles/loading.css (css) */
.loadercontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80vh;
}
.sm-loadercontainer {
  min-height: 50px;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.sm-lds-ring {
  width: 50px;
  height: 50px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 4px solid #000000;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #000000 transparent transparent transparent;
}
.sm-lds-ring div {
  width: 37.5px;
  height: 37.5px;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #000000;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loader {
  border: 5px solid #f3f3f347;
  border-top: 5px solid #2852ec;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* [project]/styles/Signin.css (css) */
.authpage h2 {
  margin: 0;
  text-align: center;
}
.authpage p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}
.autocomplete-dropdown-container > * {
  padding: 10px;
}
.authpage span {
  font-size: 12px;
}
.authpage a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  margin: 15px 0;
}
button.ghost {
  background-color: transparent;
  color: white;
  border-color: #ffffff;
}
.auth-form {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}
.auth-form input, 
.auth-form textarea {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}
.authcontainer {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  margin: auto;
  min-height: 480px;
}
.form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
  color: black;
}
.sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}
.authcontainer.right-panel-active .sign-in-container {
  transform: translatex(100%);
}
.sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}
.authcontainer.right-panel-active .sign-up-container {
  transform: translatex(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}
.error {
  color: red;
}
.usernamestatus {
  width: 100%;
  display: block;
  text-align: left;
}
.usernametaken {
  color: red;
}
.usernameAvailable {
  color: green;
}
@keyframes show {
  0%, 49.99% {
    opacity: 0;
    z-index: 1;
  }
  50%, 100% {
    opacity: 1;
    z-index: 5;
  }
}
.overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 99;
}
.authcontainer.right-panel-active .overlay-container {
  transform: translatex(-100%);
}
.overlay {
  background: #3140f3;
  background: linear-gradient(280deg, #22bce7 -10.53%, #1c28b4 94.3%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #ffffff !important;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translatex(0);
  transition: transform 0.6s ease-in-out;
}
.overlay-panel h1, 
.overlay-panel h2 {
  color: #ffffff !important;
}
.authcontainer.right-panel-active .overlay {
  transform: translatex(50%);
}
.overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translatex(0);
  transition: transform 0.6s ease-in-out;
}
.overlay-left {
  transform: translatex(-20%);
}
.authcontainer.right-panel-active .overlay-left {
  transform: translatex(0);
}
.overlay-right {
  right: 0;
  transform: translatex(0);
}
.authcontainer.right-panel-active .overlay-right {
  transform: translatex(20%);
}
.social-container {
  margin: 20px 0;
}
.social-container a {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
}
.mobile-auth-btns {
  display: none;
}
.changeauthtypelink {
  text-decoration: underline !important;
  color: #e3b414 !important;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .overlay-container {
    display: none !important;
  }
  .sign-up-container, 
  .sign-in-container {
    width: 100%;
  }
  .authcontainer.right-panel-active .sign-up-container {
    transform: translatex(0);
  }
  .authcontainer {
    padding: 0 4%;
    width: 94vw !important;
    max-width: 800px !important;
  }
  .auth-form {
    padding: 0 4%;
  }
  .mobile-auth-btns {
    display: block;
  }
  .activeMobile {
    z-index: 1;
    opacity: 1;
  }
  .notactiveMobile {
    z-index: 0;
    opacity: 0;
  }
  .mobileactiveotp .sign-up-container {
    transform: translatex(0) !important;
  }
  .mobileactiveotp .sign-in-container {
    transform: translatex(0) !important;
  }
  .auth-form {
    padding: 0 30px;
  }
}
@media (max-width: 400px) {
  .auth-form {
    padding: 0 10px;
  }
}
.css-eglki6-MuiLinearProgress-root {
  background-color: #ecddaa !important;
}
.css-5ir5xx-MuiLinearProgress-bar1 {
  background-color: #f5c62d !important;
}
.css-1r8wrcl-MuiLinearProgress-bar2 {
  background-color: #f5c62d !important;
}

/* [project]/styles/contact.css (css) */
.contact-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: #f9f9f9;
  margin-top: 20vh;
}
.contact-form {
  display: flex;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex-wrap: wrap-reverse;
}
.form-section {
  background: linear-gradient(280deg, #1c28b4 -10.53%, #1797ed 94.3%);
  color: white;
  padding: 60px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.form-section input::-moz-placeholder, 
.form-section textarea::-moz-placeholder {
  color: rgb(204, 204, 204);
}
.form-section input::placeholder, 
.form-section textarea::placeholder {
  color: rgb(204, 204, 204);
}
.form-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
}
.form-section form {
  display: flex;
  flex-direction: column;
}
.form-section input, 
.form-section textarea {
  background: transparent;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.form-section button {
  padding: 10px;
  background: #ff4081;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}
.contact-info {
  background: white;
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.contact-info h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
.contact-info p {
  margin-bottom: 20px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.contact-info ul li span {
  margin-right: 10px;
}

/* [project]/styles/dashboard.css (css) */
.dashboard-navbar {
  background-color: white;
}
.dashboard-container {
  background-color: #efefef;
  height: 100dvh;
  padding-bottom: 20px;
  overflow-y: auto;
}
.dashboard-layout {
  display: flex;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}
.dashboard-container {
  width: 100%;
}
.logo-box {
  background-color: #1f68ca;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: grid;
  place-content: center;
}
.sidebar {
  animation: all 2s ease-in-out;
}
.sidebar .nav-item {
  font-size: 15px;
}
.sidebar .nav-link.active {
  background-color: #1f68ca !important;
}
.sidebar .nav-link:hover {
  background-color: #2f6fc4 !important;
}
.sidebar .nav-item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .sidebar {
    width: auto;
    position: fixed;
    z-index: 999;
    height: 100dvh;
    overflow-y: auto;
  }
  .sidebar .nav-link span {
    display: none;
  }
  .sidebar.collapsed {
    width: 0 !important;
    overflow: hidden;
    padding: 0 !important;
  }
}
.toggle-sidebar-btn {
  position: fixed;
  top: 50%;
  left: -5px;
  z-index: 1000;
  opacity: 0.7;
  border: none;
  background-color: transparent;
}
@media (min-width: 769px) {
  .toggle-sidebar-btn {
    display: none;
  }
}
.dashboard-navbar .nav-item:hover {
  border-radius: 5px;
  background-color: #1f68ca !important;
}
.dashboard-navbar .nav-item a:hover {
  color: white !important;
}
.font-light {
  color: #8c8e99;
}
.chart-container {
  max-width: calc(90% - 50px);
  margin: auto;
  margin-top: 20px;
  display: grid;
  padding: 30px;
  border-radius: 10px;
  place-content: center;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table-container {
  max-width: calc(90% - 50px);
  margin: auto;
  padding-top: 10px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .chart-container {
    max-width: 100%;
    padding: 10px;
  }
  .table-container {
    max-width: 100%;
  }
}
.top-companies {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.top-companies thead {}
.top-companies th, 
.top-companies td {
  text-align: left;
}
.badge-pill {
  width: 50px;
  text-align: center;
}
.badge-primary {
  background-color: #007bff;
}
.badge-success {
  background-color: #28a745;
}
.badge-info {
  background-color: #17a2b8;
}
.badge-warning {
  background-color: #ffc107;
}
.d-table-head tr th {
  font-size: 13px;
  color: #96a5b8;
}
.d-table-body tr td {
  font-size: 14px;
}
.top-companies th, 
.top-companies td {
  text-align: left;
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* [project]/styles/footer.css (css) */
.footer {
  padding-top: 40px;
  background: linear-gradient(280deg, #22bce7 -10.53%, #1c28b4 94.3%);
  color: #fff;
}
.footer-logo {
  margin-bottom: 20px;
  width: 150px;
}
.footer h5 {
  color: #fff;
  margin-bottom: 15px;
}
.footer ul {
  list-style-type: none;
  padding-left: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.social-icon {
  margin-right: 10px;
  font-size: 24px;
}
.social-icon:hover {
  color: #7a5af8;
}
@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 20px;
  }
  .social-icon {
    margin-top: 20px;
    display: inline-block;
  }
}
.footer .social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  width: 200px;
  flex-direction: row;
}
.footer .bottom-footer {
  margin-top: 20px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  justify-content: center;
}
.footer .footer-link {
  color: white;
  text-decoration: none;
}
.footer .footer-link:hover {
  color: #1c28b4;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-columns {
    gap: 80px;
  }
}

/* [project]/styles/MainContent.css (css) */
.Landing-section-container {
  background: linear-gradient(280deg, #22bce7 -10.53%, #1c28b4 94.3%);
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.Landing-section {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 10px;
  padding: 15px;
}
.Landing-reverse-section {
  gap: 30px;
}
.Landing-section-data {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.Landing-section-data .big-Head {
  background: linear-gradient(274deg, #f09deb 13.14%, #bdb4fe 86.6%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.96px;
}
.Landing-section-img {
  max-width: 500px;
  margin-top: 10px;
}
.Landing-section-data .description {
  max-width: 400px;
}
.Landing-last-section {
  background: linear-gradient(280deg, #22bce7 -10.53%, #1c28b4 94.3%);
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  color: white;
  padding: 15px;
}
.Landing-last-section h2 {
  max-width: 800px;
  text-align: center;
}
.Landing-last-section .button-group {
  justify-content: center;
}
@media (max-width: 1100px) {
  .Landing-section-img {
    max-width: 350px;
  }
}
@media (max-width: 975px) {
  .Landing-section {
    flex-direction: column-reverse;
    margin-top: 3rem;
  }
  .Landing-section-data .button-group {
    justify-content: center;
  }
  .Landing-reverse-section {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .Landing-section-data h1 {
    font-size: 37px;
  }
}
.Landing-section-data .checklist {
  list-style: none;
  padding: 0;
}
.Landing-section-data .checklist li {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: left;
}
.Landing-section-data .tick-icon {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.placeholder {
  width: 100%;
  height: 20px;
  background-color: #eee;
  margin-bottom: 5px;
  animation: placeholder-animation 1.2s linear infinite;
}
@keyframes placeholder-animation {
  0% {
    background-color: #eee;
  }
  50% {
    background-color: #ddd;
  }
  100% {
    background-color: #eee;
  }
}
.prometheus-input {
  max-width: calc(90% - 50px);
  background-color: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
}
@media (max-width: 450px) {
  .prometheus-input {}
}
@media (max-width: 768px) {
  .prometheus-input {}
}
.prometheus-input input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.prometheus-input .prometheus-input-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1000px) {
  .prometheus-input .prometheus-input-item {
    flex-direction: column;
    gap: 0;
  }
}
.prometheus-input button {
  margin-top: 0.5rem;
  display: block;
  margin-left: auto;
}

/* [project]/styles/Header.css (css) */
.home-navbar {
  transition: top 0.3s;
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(280deg, #22bce7 -10.53%, #1c28b4 94.3%);
}
.navbarHome {
  background: transparent !important;
}
.navbar-visible {
  top: 0;
}
.navbar-hidden {
  top: -500px;
}
.bg-c-light {
  background-color: rgba(11, 99, 171, 0.8) !important;
}
.home-navbar .nav-item:hover {
  border-radius: 5px;
  background-color: rgb(2, 59, 109) !important;
}
@media (max-width: 991px) {
  .bg-c-dark .navbar-collapse {
    background-color: rgb(0 103 188/ 90%) !important;
  }
  .navbar-collapse {
    padding: 10px 20px;
  }
  .nav-item {
    padding: 5px 10px;
  }
}

/* [project]/styles/global.css (css) */
.mainapp {
  font-family: 'DM Sans', sans-serif;
}
.btn-c {
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-c:hover, 
.btn-c:focus {
  transform: scale(1.017);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-c:focus {
  outline: none;
}
.btn-main {
  background: #e82a73;
  color: white;
}
.btn-main:hover, 
.btn-main:focus {
  background-color: #d81b60;
}
.btn-main:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 42, 115, 0.5);
}
.btn-c-secondary {
  background: rgba(244, 243, 255, 0.10);
  color: white;
}
.btn-c-secondary:hover, 
.btn-c-secondary:focus {
  background-color: rgba(244, 243, 255, 0.07);
}
.btn-c-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 243, 255, 0.5);
}
.btn-c-primary {
  color: white;
  background: #7a5af8;
}
.btn-c-primary:hover, 
.btn-c-primary:focus {
  background-color: #6850c8;
}
.btn-c-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 90, 248, 0.5);
}
.main-container {
  min-height: 70vh;
}
.button-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.home-container {
  margin-top: 100px;
}
.font-semibold {
  font-weight: 600;
}

/* [next]/internal/font/google/poppins_d8380a38.module.css (css) */
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTucXtAOvWDSHFF.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTufntAOvWDSHFF.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiGyp8kv8JHgFVrLPTucHtAOvWDSA.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLFj_Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJbecnFHGPezSQ.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLGT9Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLEj6Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLCz7Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDD4Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z11lFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0900-097f, u+1cd0-1cf9, u+200c-200d, u+20a8, u+20b9, u+20f0, u+25cc, u+a830-a839, u+a8e0-a8ff, u+11b00-11b09;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1JlFd2JQEl8qw.woff2) format('woff2');
  unicode-range: u+0100-02ba, u+02bd-02c5, u+02c7-02cc, u+02ce-02d7, u+02dd-02ff, u+0304, u+0308, u+0329, u+1d00-1dbf, u+1e00-1e9f, u+1ef2-1eff, u+2020, u+20a0-20ab, u+20ad-20c0, u+2113, u+2c60-2c7f, u+a720-a7ff;
}
@font-face{
  font-family: '__Poppins_d8380a';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLBT5Z1xlFd2JQEk.woff2) format('woff2');
  unicode-range: u+0000-00ff, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+0304, u+0308, u+0329, u+2000-206f, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd;
}
@font-face{
  font-family: '__Poppins_Fallback_d8380a';
  src: local("Arial");
  ascent-override: 92.33%;
  descent-override: 30.78%;
  line-gap-override: 8.79%;
  size-adjust: 113.73%;
}
.className__poppins_d8380a38__bfb76463 {
  font-family: '__Poppins_d8380a', '__Poppins_Fallback_d8380a';
  font-style: normal;
}

/* [project]/node_modules/.pnpm/react-toastify@9.1.3_react-dom@18.2.0_react@18.2.0__react@18.2.0/node_modules/react-toastify/dist/ReactToastify.css (css) */
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}
.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translatex(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translatex(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, 
  .Toastify__toast-container--top-center, 
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translatex(0);
  }
  .Toastify__toast-container--bottom-left, 
  .Toastify__toast-container--bottom-center, 
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translatex(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1;
}
.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}
.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}
.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}
.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, 
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, 
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, 
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, 
.Toastify__close-button:focus {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scalex(1);
  }
  100% {
    transform: scalex(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}
.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}
@keyframes Toastify__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;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__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;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__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);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__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;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, 
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, 
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}
.Toastify__bounce-exit--top-left, 
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, 
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}
@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}
@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, 
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, 
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}
.Toastify__slide-exit--top-left, 
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, 
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}
@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/*# sourceMappingURL=[root of the server]__7cb948._.css.map*/