#heading{
	font-family: noori !important;
}


/*Sweet Alert Button */
.showSweetAlert{
	font-family: noori !important;
}

.toast {
  visibility: hidden; /* Default hidden */
  min-width: 250px;
  max-width: 80%;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 12px 20px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 20px;
  font-size: 16px;
  transform: translateX(-50%);
  opacity: 0;
  /* transition: opacity 0.4s ease, bottom 0.4s ease; */
  font-family: monospace;
  direction: ltr;
}
.toast.success {
  background-color: green;
  visibility: visible;
  opacity: 1;
  bottom: 60px; /* تھوڑا اوپر آ کر animate ہوگا */
}
.toast.danger {
  background-color: rgb(180, 31, 31);
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  /* -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s; */
  opacity: 1;
  bottom: 60px; /* تھوڑا اوپر آ کر animate ہوگا */
}
.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px; /* تھوڑا اوپر آ کر animate ہوگا */
}
.toast .download-btn{
	background: #ffffff;
    border-radius: 4px;
    padding: 2px 11px;
    color: #307ecc;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.loader-spin {
  /*width: 48px;*/
  /*height: 48px;*/
  /*border: 5px solid #FFF;*/
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  vertical-align: middle;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}