.heart {
    color: #EB5E28;
    -webkit-animation: hearthing 1s ease infinite;
    animation: hearthing 1s ease infinite;
}

@keyframes hearthing {
    0% { transform: scale( .75 ); }
    20% { transform: scale( 1 ); }
    40% { transform: scale( .75 ); }
    60% { transform: scale( 1 ); }
    80% { transform: scale( .75 ); }
    100% { transform: scale( .75 ); }
}

.first_no_border > tbody > tr:first-child > td {
    border-top: none !important;
}

.first_no_border > thead > tr:first-child > td {
    border-top: none !important;
}

.first_no_border > thead > tr:first-child > th {
    border-top: none !important;
}

.center_center {
    text-align: center;
    vertical-align: middle !important;
}

.left_center {
    text-align: left;
    vertical-align: middle !important;
}

.right_center {
    text-align: right;
    vertical-align: middle !important;
}

.pointer {
    cursor: pointer;
}

.card-shadow{
    transition: 0.4s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.card-shadow:hover{
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.card-hover{
    transition: 0.4s;
}
.card-hover:hover{
    background-color: #eff0f1;
}
.card-hover:before{
    content: '';
    height: 100%;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    width: 6px;
    background-color: #69bc88;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition:  opacity .4s ease-out;
}
.card-hover:hover:before{
    opacity: 1;
}
