﻿.card-boxes {
    border: 0;
    -ms-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0 3px 0px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    padding: 2.25rem 0;
    position: relative;
    -webkit-will-change: transform;
    -moz-will-change: transform;
    -o-will-change: transform;
    will-change: transform;
    border-color: #17a2b8;
    border-style: solid;
    border-width: 1px;
    background-color: white;
}

.card-boxes:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.card-boxes:hover {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 20px 35px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-width: 0;
}

.card-boxes:hover:after {
    width: 100%;
}

.card-boxes .card-header {
    background-color: white;
    padding-left: 2rem;
    border-bottom: 0px;
    margin-left: 1px;
    margin-right: 1px;
}