 
.fadeInUp-bigDivs,.fadeInUp-bigDivs2 {
  animation-name: fadeInUp-bigDivs;
  animation-duration: 1100ms;
  visibility: hidden;
  animation-fill-mode:forwards;
  animation-timing-function: ease;
} 
.fadeInUp-bigDivs2 {
  animation-delay: 500ms;
} 

.fadeIn{
  animation-name: fadeIn;
  animation-duration: 800ms;
  visibility: hidden;
  animation-fill-mode: forwards;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

.fadeInUp-bottomLeft {
  animation-name: fadeInUp-bottomLeft;
  animation-duration: 1500ms;
  visibility: hidden;
  animation-fill-mode: forwards;
}

.fadeInDown, .overlay {
  animation-name: fadeInDown;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}

.fadeIn2 {
  animation-name: fadeIn2;
  animation-duration: 1000ms;
}
.direction {
  animation-name: direction;
  animation-duration: 800ms;
  animation-iteration-count: infinite;
  /* animation-fill-mode: forwards; */
}

.emptyInput {
  animation-name: emptyInput;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  /* animation-fill-mode: forwards; */
}
.active{
  display: flex !important;
}
.loader-container {
  display: none;
  justify-content: center; align-items: center;
  /* background-color: #e6e6e6; */
  background-color: var(--bg-color);
  z-index: 200; position: fixed; top:0 ; width: 100%; height: 100vh;
}

.loader-container2 {
  display: none;
  justify-content: center; align-items: center;
  background-color: rgba(0, 0, 0, 0.267);
  z-index: 200; position: fixed; top:0 ; width: 100%; height: 100%;
}

.inner-cont{
  width: 300px; height: 100px;
  display: flex; align-items: center; background-color: var(--bg-color); padding: 10px 12px;
  font-weight: normal; border-radius: 5px; font-size: 1.3em; position: relative;
}

.inner-cont .x{
  position: absolute; top:0; right:0; 
}
.inner-cont > div{
  margin: 5px;
}

.general {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.forSection {
  position: absolute;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 77%;
  height: calc(100vh - 60px);
  right: 0;
  top: 60px;
  /* width:100%; */
}

.inactiveButton:disabled {
  cursor: not-allowed;
  background-color: rgba(201, 201, 201, 0.781) !important;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 186, 97, 0.295);
  border-top: 4px solid rgb(255, 79, 35);
  border-radius: 50%;
  animation: loader 500ms linear infinite forwards;
}
.loader2 {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 186, 97, 0.349);
  border-top: 2px solid rgb(255, 79, 35);
  border-radius: 50%;
  animation: loader2 600ms linear infinite forwards;
}

@media screen and (max-width: 500px) {
  .forSection {
    position: absolute;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: calc(100vh - 60px);
    top: 60px;
    right: 0;
  }
}

.springZoomIn {
  animation-name: springZoomIn;
  animation-duration: 500ms;
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 350ms;
}
.zoomIn2 {
  animation-name: zoomIn2;
  animation-duration: 800ms;
  animation-fill-mode: forwards;
}
.zoomOut {
  animation-name: zoomOut;
  animation-duration: 200ms;
}
.slideIn {
  animation-name: slideIn;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
.slideDown {
  animation-name: slideDown;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}
.slideDown2 {
  animation-name: slideDown2;
  animation-duration: 800ms;
  animation-fill-mode: forwards;
}

.slideInTop {
  animation-name: slideInTop;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}
.flyInTop {
  animation-name: flyInTop;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
.slideInBottom {
  animation-name: slideInBottom;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

.slideInRight-slow {
  animation-name: slideInRight-slow;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.slideInRight {
  animation-name: slideInRight;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.slideInRight2 {
  animation-name: slideInRight2;
  animation-duration: 200ms;
  animation-fill-mode: forwards;
}

.slideOutRight{
  animation-name: slideOutRight;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
}
.slideOutRight-slow{
  animation-name: slideOutRight-slow;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
}

.slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 1.1s;
  animation-fill-mode: forwards;
}

.slideOutLeft {
  animation-name: slideOutLeft;
  animation-duration: 400ms;
  animation-fill-mode: forwards;
}
.slideOut {
  animation-name: slideOut;
  animation-duration: 250ms;
}

.spin{
  animation: spin 60s linear infinite forwards;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}

@keyframes loader {
  from {
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}
@keyframes loader2 {
  from {
    transform: rotate(0deg);
    transform-origin: center center;
  }
  to {
    transform: rotate(360deg);
    transform-origin: center center;
  }
}

@keyframes springZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.1, 1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95, 0.95);
  }
  to {
    opacity: 1;
    transform: scale(1, 1);
  }
}
@keyframes zoomIn2 {
  from {
    opacity: 0;
    transform: scale(0.8, 0.8);
  }
  to {
    opacity: 1;
    transform: scale(1, 1);
    opacity: 80%;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
    transform: scale(1, 1);
  }
  to {
    opacity: 0;
    transform: scale(1.8, 1.8);
  }
}

@keyframes fadeIn2 {
  from {
    filter: brightness(10%);
    opacity: .5;
  }
  to {
    opacity: 1;
    filter: brightness(30%);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
  }
}
@keyframes fadeInUp-bottomLeft {
  from {
    opacity: 0;
    transform: translate(-80%,200%);
  }
  to {
    opacity: 1;
    transform: translate(0%,0%);
    visibility: visible;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}


@keyframes fadeInUp-bigDivs {
  from {
    opacity: 0;
    transform: translateY(70%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes slideDown2 {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-120%);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes flyInTop {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(120%);
  }
  to {
    opacity: 1;
    transform: translateY(50%);
  }
}

@keyframes slideInRight-slow {
  from {
    opacity: 0;
    transform: translateX(100%);
    visibility: visible ;
  }
  to {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(300%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideInRight2 {
  from {
    
    transform: translateX(200%);
  }
  to {
    
    transform: translateX(0%);
  }
}

@keyframes slideOutRight-slow {
from {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
  
  to {
    opacity: 0;
    transform: translateX(200%);
  }
}


@keyframes slideOutRight {
  0% {
    transform: translateX(-5%);
  }
  20% {
    transform: translateX(-8%);
    
  }40% {
    transform: translateX(-10%);
    
  }
  50% {
    transform: translateX(-10%);
    
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0%);
  }
  to {
    opacity: 0;
    transform: translateX(-200%);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(-50%);
  }
  to {
    opacity: 0;
    transform: translateY(-100%);
  }
}

@keyframes direction {
  from {
    transform: translateY(-20%);
  }
  to {
    transform: translateY(80%);
  }
}
@keyframes emptyInput {
  from {
    /* opacity: 0; */
    /* border: 2px solid rgba(240, 71, 71, 0.993) !important; */
    /* outline:2px solid  tomato; */
    border-color:red;

  }
  to {
    /* outline:2px solid  tomato; */
    border: none;
    /* opacity: 1; */
   
  }
}

.magicbutton {
  font-size: large;
  border: none;
  background: rgb(0, 46, 68);
  color: #ffffff;
  width: 100px;
  height: 40px;
  border-radius: 5px;
  margin-left: 100%;
  transform: translateX(-100%);
  cursor: pointer;
}

.magicbox {
  width: 100%;
  /* height: 50px; */
  border: none;
  border-radius: 5px;
  padding-left: 20px;
  font-size: 16pt;
  box-shadow: 0px 0.3px 1px rgb(160, 160, 160);
  transition: ease-in-out 200ms;
  box-sizing: border-box;
  background-color: #ffffff;
}
.magicbox:focus {
  outline: none;
  box-shadow: 0px 0px 3px rgb(175, 175, 175);
}
.magicbox:hover {
  box-shadow: 4px 8px 10px rgb(173, 173, 173);
}

.magicbutton2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 10px;
  width: 82px;
  height: 35.5px;
  border-radius: 3px;
  box-shadow: 0 0.3px 1px rgba(0, 0, 0, 0.671);
  transition: ease-in-out 200ms;
  cursor: pointer;
}
.magicbutton2:hover {
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.267);
  /* color:#ffffff; */
  /* background-color: inherit !important; */
}

.magicInputLabel input:focus ~ label,
.magicInputLabel textarea:focus ~ label,
.magicInputLabel textarea:valid ~ label,
.magicInputLabel input:valid ~ label,
.magicInputLabel input:read-only ~ label {
  color: #ffffff;
  top: -13px;
  font-size: 13px;
  background-color: rgb(42, 93, 170);
  padding: 2px 4px;
  border-radius: 2px;
  left: 10px;
}
.magicInputLabel {
  position: relative;
  margin-top: 15px;
}

input:disabled ~ label {
  color: grey;
}

.default-off{
  border:none; background-color: inherit; cursor: pointer; border-radius: 0;
}
.default-off:focus{
  outline: none;
}

.flex{
  display: flex; justify-content: center; align-items: center; 
}
.flex-left{
  display: flex; justify-content: flex-start; align-items: center; 
}
.flex-space{
  display: flex; justify-content: space-between; align-items: center; 
}
.flex-top-space{
  display: flex; justify-content: space-between; align-items: flex-start; 
}
.flex-space-around{
  display: flex; justify-content: space-around; align-items: center; 
}
.flex-space-evenly{
  display: flex; justify-content: space-evenly; align-items: center; 
}

.flex-col{
  display: flex; justify-content: center; align-items: center; flex-direction: column;
}

.flex-col-left{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.flex-col-right{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.flex-col-start{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.radio-card{
  margin:10px 0;
  
}
.radio-card div{
  margin: 5px 0;
}
.radio-card > label{
  font-weight: 600; margin-bottom: 5px; font-size: 0.9rem;

}


/* SCROLLBAR STYLES */

.scroll::-webkit-scrollbar {
  width: 10px;border-radius: 5px;
}


/* Track */
.scroll::-webkit-scrollbar-track {
  background: #f1f1f100; 
  border-radius: 10px;
}

/* Handle */
.scroll::-webkit-scrollbar-thumb {
  background: rgba(189, 189, 189, 0.603);
  border-radius: 10px;
}

/* Handle on hover */
.scroll::-webkit-scrollbar-thumb:hover {
  background: #555; border-radius: 10px;
}

.uploadCon{
  background-color: grey; border-radius: 5px; box-shadow:  0 0 1px grey;
}
.uploadCon:hover{
  box-shadow:  0 0 10px lightgrey;
}



@keyframes current {
  from{
      opacity: 0;
      transform: scale(1,1);  
      width: 550px;
      /* transition: width ease-in 0ms, transform ease-in 0ms; */
      
      
    }
    to{
      opacity: 1;
      /* transition: width ease-in 600ms, transform ease-in 0ms; */
       transition: width ease-in 600ms;
       transform: scale(1.2, 1.2);  
       width: calc(550px + 200px); 

  }
}


@keyframes next {
  from{
      opacity: 0;
      /* transform: translateX(0%); */
       transition: transform ease-in 0ms;
      
      
  }
  to{
      opacity: 1;
      transform: translateX(-30%);
       /* transition: transform ease-in 600ms; */

  }
}

@keyframes prev {
  from{
      opacity: 0;
      transform: translateX(0%);
       /* transition: transform ease-in 0ms; */
      
      
  }
  to{
      opacity: 1;
      transform: translateX(30%);
       /* transition: transform ease-in 600ms; */

  }
}

.move{
  animation-name: progress;
  animation-duration: 20000ms;
  animation-timing-function: linear;
  animation-fill-mode: backwards;
  animation-iteration-count: infinite;
  animation-delay: 50ms;
}

@keyframes progress{
  from{
    width: 0;
  }
  to{
    width: 100%;
  }
}


@-webkit-keyframes zoomInRight {
  from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
     opacity: 0;
     -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
     animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
     -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
     animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomOutLeft {
  40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
     opacity: 0;
     -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
     transform: scale(0.1) translate3d(-2000px, 0, 0);
     -webkit-transform-origin: left center;
     transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
     opacity: 1;
     -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
     transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
     opacity: 0;
     -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
     transform: scale(0.1) translate3d(-2000px, 0, 0);
     -webkit-transform-origin: left center;
     transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

.slideInRightNew{
  animation-name: slideInRight2;
  animation-timing-function: ease-out;
}

.animate{
  animation-duration: 0.6s;
}

@keyframes bounce {
  from{
    opacity: 0;
  }
  20%,
  53%,
  80%,
  to {
     -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
     animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
     -webkit-transform: translate3d(0, 0, 0);
     transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
     -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
     animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
     -webkit-transform: translate3d(0, -30px, 0);
     transform: translate3d(0, -30px, 0);
     opacity: 1;
  }

  70% {
     -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
     animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
     -webkit-transform: translate3d(0, -15px, 0);
     transform: translate3d(0, -15px, 0);
  }

  90% {
     -webkit-transform: translate3d(0, -4px, 0);
     transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInNew {
  from {
     opacity: 0;
  }

  to {
     opacity: 1;
  }
}

@keyframes fadeInNew {
  from {
     opacity: 0;
  }

  to {
     opacity: 1;
  }
}

.fadeInNew {
  -webkit-animation-name: fadeInNew;
  animation-name: fadeInNew;
  animation-timing-function: ease;
  animation-duration: 3s;
}

.delay-1-2s{
  animation-delay: 2s;
}