table {
    border:none;
}
#cards {
    zoom: 90%;
    width:380px;
    height: 530px;
}
@media (max-width: 1200px) and (min-width: 767px){
    #cards {
        width:340px;
    }
}
.front,.back, .tab{
    border: 1px solid grey;
    padding: 10px;
    border-radius:10px;
    box-shadow: 3px 3px 2px rgba(152,152,152,0.5);    
}
.form-info, .info-errors{
    font-size: 95%;
    font-style: normal;
    font-weight: normal!important;
    box-shadow: inset 1px -0px 1px 2px rgba(152,152,152,0.3)
}
.has-success {
    color:#008000;
}
.blink {
  animation: blink-animation 2s steps(5, start) infinite;
  -webkit-animation: blink-animation 2s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
.bold{
    font-weight: bold;
    font-size: 120%;
}