.cardImg {
  -webkit-animation: anim 10s infinite;
  animation: anim 10s infinite;
}

@keyframes anim {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.card.shadow-sm.cardImg {
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 150px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  /*background-color: #bbb;*/
  color: black;
}

.flip-card-back {
  /*background-color: #2980b9;*/
  color: white;
  transform: rotateY(180deg);
}

#row_security_logo-1 {
  max-width: 100%;
  min-width: 100%;
}

.rangeslider__handle {
  width: 42px;
  height: 42px;
}

@media (max-width: 992px) {
  #cardBodyLogin {
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  #cardBodyLogin {
    padding-top: 30px!important;
    padding-bottom: 10px!important;
  }
}

