.card {
  border: none !important;
}
.card__issuers, .card__badge {
  -webkit-box-shadow: -2px -2px 5px rgba(255, 255, 255, 1),
                      3px 3px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -2px -2px 5px rgba(255, 255, 255, 1),
                    3px 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: -2px -2px 5px rgba(255, 255, 255, 1),
              3px 3px 5px rgba(0, 0, 0, 0.1);
}
.card__issuer_image {
  max-height: 50px !important;
  min-height: 50px !important;
}
.card__issuer_image_detail {
  max-height: 150px !important;
  min-height: 50px !important;
}

.card__badge_image {
  padding: 5px;
  margin-top: 5px;
   max-height: 200px !important;
}

.fadedfx {
  background-color: #fe5652;
  visibility: hidden;
}

.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}


.container__badge{
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items:center;
  background: #f3f3f3;
}

.card__badge{
  width: 25rem;
  border-radius: 1rem;
  background: var(--accent-color);
  position : relative;
  color: #434343;
}

.card__badge .card__badge_container{
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 1rem 2rem;
  border-radius: 1rem;
}

/* .card__badge .card__badge_header{
margin-bottom: 1rem;
font-family: 'Playfair Display', serif;
}

.card__badge .card__badge_body{
font-family: 'Roboto', sans-serif;
} */