@media only screen and (min-width: 768px) {
  .lme-nfc-row > .lme-nfc-col {
    flex: 0 0 50%;
    max-width: 45%;
  }
  
  .lme-nfc-row > .lme-nfc-col2 {
    flex: 1 0 50%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .lme-nfc-row > .lme-nfc-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.lme-nfc-row {
    margin-bottom: 5%;
}


.lme-nfc-card {
    text-align: left;
    padding: 5%;
    border-radius: 3%;
  /*  box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;*/
   box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
}


.successing {
    color:#57d98b;
    font-size: 45px;
}

.normal {
    color:#e8cd6f;
    font-size: 40px;
}

.failing {
    color:#dc584e;
    font-size: 35px;
}




.lme-nfc-icons > i {
    background: #6d9cec;
    font-size:22px;
    float:right;
    color: white;
    padding: 5%;
    border-radius: 30%;
}

.lme-nfc-icons > i:hover {
    background-color: white;
    color:#6d9cec;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}


.lme-nfc-card {
    padding:5%;
}























.lme-card {
  width: auto;
  height: 212px;
  border-radius: 15px;
  background-color: var(--global-body-bgcolor);
  /*box-shadow: rgb(50 50 93 / 25%) 0px 13px 27px -5px, rgb(0 0 0 / 30%) 0px 8px 16px -8px;*/
   box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 30%);
  perspective: 1000px;
}

.lme-card__front, .lme-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
}

.lme-card__front {
  transform: rotateY(0deg);
}

.lme-card__back {
  transform: rotateY(180deg);
}

.lme-card__logo {
  width: 80px;
  height: 80px;
  margin: 20px;
}

.lme-card__name {
  font-size: 24px;
  margin: 30px;

}

.lme-card__nfc {
  width: 40px;
  height: 40px;
  margin: 20px;
  float: right;
}


.lme-card__number {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

.lme-card__number-group {
  font-size: 24px;
  font-weight: bold;
  color: #555;
}

.lme-card__expiration {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

.lme-card__expiration-label {
  font-size: 16px;
  color: #555;
}

.lme-card__expiration-date {
  font-size: 24px;
  font-weight: bold;
  color: #555;
}

.lme-card__magnetic-stripe {
  height: 60px;
  background-color: #222;
  margin: 20px;
}

.lme-card__signature {
  height: 40px;
  width: 200px;
  background-color: #fff;
  border: 1px solid #ccc;
  margin: 20px;
}


