.fieldsets-batch.fieldsets-batch--with-titles .fieldset {
  margin-bottom: 15px !important;
}

.payment-card {
  box-shadow: none !important;
}

.mt-20px {
  margin-top: 20px;
}

.border-none {
  border: none;
}

.snackbar {
  visibility: hidden;
  min-width: 200px;
  margin-left: -125px;
  border: 2px solid #37ba32;
  background-color: #ebf8eb;
  text-align: center;
  border-radius: 20px;
  padding: 5px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 30px;
  font-size: 17px;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.app-header {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  color: #212B36;
}

.main-container {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
}

.app-details {
  width: 50%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.app-img-container {
  width: 50%;
  flex-grow: 1;
}

.app-img {
  max-width: 100% !important;
  max-height: 300px !important;
}

@-webkit-keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    top: 0;
    opacity: 0;
  }

  to {
    top: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    top: 30px;
    opacity: 1;
  }

  to {
    top: 0;
    opacity: 0;
  }
}