.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;
}
.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;
}

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

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

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

select.is-invalid{
    background-position: right calc(0.375em + 0.5rem) center !important;
}

.bootstrap-select{
    border: 1px solid #c5ccd6 !important;
}
.selectpicker + .btn.dropdown-toggle{
    height: 100% !important;
    color: #1f2d41 !important;
    background-color: #fff !important;
    border-color: #fff !important;
}
.selectpicker + .btn.dropdown-toggle::after{
    margin-left: auto;
}

.card-light-shadow{
    transition: 0.4s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}
.card-light-shadow:hover{
    background-color: #fafbfc !important;
    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;
}