.fa-spin-fast {
    -webkit-animation: fa-spin-fast 0.2s infinite linear;
    animation: fa-spin-fast 0.2s infinite linear;
}

@-webkit-keyframes fa-spin-fast {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin-fast {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.material-card {
    position: relative;
    height: 0;
    padding-bottom: calc(100%);
    margin-bottom: 11em;
}

.material-card h2 {
    position: absolute;
    top: calc(100% - 16px);
    left: 0;
    width: 100%;
    padding: 10px 16px;
    color: #fff;
    font-size: 1.1em;
    line-height: 1.6em;
    margin: 0;
    z-index: 10;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.material-card h2 span {
    display: block;
}

.material-card h2 strong {
    font-weight: 400;
    display: block;
    font-size: .8em;
}

.material-card h2:before,
.material-card h2:after {
    content: ' ';
    position: absolute;
    left: 0;
    top: -16px;
    width: 0;
    border: 8px solid;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.material-card h2:after {
    top: auto;
    bottom: 0;
}

@media screen and (max-width: 767px) {
    .material-card.mc-active {
        padding-bottom: 0;
        height: auto;
    }
}

.material-card.mc-active h2 {
    top: 0;
    padding: 10px 16px 10px 90px;
}

.material-card.mc-active h2:before {
    top: 0;
}

.material-card.mc-active h2:after {
    bottom: -16px;
}

.material-card .mc-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: -16px;
    left: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.material-card .mc-btn-action {
    position: absolute;
    right: 16px;
    top: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 5px solid;
    width: 54px;
    height: 54px;
    line-height: 44px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    z-index: 20;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.material-card.mc-active .mc-btn-action {
    top: 65px;
}

.material-card .mc-description {
    position: absolute;
    top: 100%;
    right: 30px;
    left: 30px;
    bottom: 44px;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -ms-transition: all 1.2s;
    -o-transition: all 1.2s;
    transition: all 1.2s;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.material-card .mc-footer {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.material-card .mc-footer h4 {
    position: absolute;
    top: 200px;
    left: 30px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: all 1.4s;
    -moz-transition: all 1.4s;
    -ms-transition: all 1.4s;
    -o-transition: all 1.4s;
    transition: all 1.4s;
}

.material-card .mc-footer a {
    display: block;
    float: left;
    position: relative;
    width: 32px;
    height: 32px;
    margin-left: 5px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #fff;
    line-height: 32px;
    text-decoration: none;
    top: 200px;
}

.material-card .mc-footer a:nth-child(1) {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.material-card .mc-footer a:nth-child(2) {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.material-card .mc-footer a:nth-child(3) {
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}

.material-card .mc-footer a:nth-child(4) {
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.material-card .mc-footer a:nth-child(5) {
    -webkit-transition: all 0.9s;
    -moz-transition: all 0.9s;
    -ms-transition: all 0.9s;
    -o-transition: all 0.9s;
    transition: all 0.9s;
}

.material-card .mc-footer a:nth-child(6) {
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -ms-transition: all 1.0s;
    -o-transition: all 1.0s;
    transition: all 1.0s;

    margin-right: 25px !important;
    float: right;
}

.material-card .img-container {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.material-card.mc-active .img-container {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    left: 0;
    top: 12px;
    width: 60px;
    height: 60px;
    z-index: 20;
    background-position: center center;
}

.material-card.mc-active .mc-content {
    padding-top: 5.6em;
}

@media screen and (max-width: 767px) {
    .material-card.mc-active .mc-content {
        position: relative;
        margin-right: 16px;
    }
}

.material-card.mc-active .mc-description {
    top: 50px;
    padding-top: 5.6em;
    opacity: 1;
    filter: alpha(opacity=100);
}

@media screen and (max-width: 767px) {
    .material-card.mc-active .mc-description {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        padding: 50px 30px 70px 30px;
        bottom: 0;
    }
}

.material-card.mc-active .mc-footer {
    overflow: visible;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 0;
    height: 62px;
    padding-top: 15px;
    padding-left: 25px;
}

.material-card.mc-active .mc-footer a {
    top: 0;
}

.material-card.mc-active .mc-footer h4 {
    top: -22px;
}

.material-card.Blue100 h2 {
    background-color: #bbdefb;
}

.material-card.Blue100 h2:after {
    border-top-color: #bbdefb;
    border-right-color: #bbdefb;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue100 h2:before {
    border-top-color: transparent;
    border-right-color: #90caf9;
    border-bottom-color: #90caf9;
    border-left-color: transparent;
}

.material-card.Blue100.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #bbdefb;
    border-bottom-color: #bbdefb;
    border-left-color: transparent;
}

.material-card.Blue100.mc-active h2:after {
    border-top-color: #90caf9;
    border-right-color: #90caf9;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue100 .mc-btn-action {
    background-color: #bbdefb;
}

.material-card.Blue100 .mc-btn-action:hover {
    background-color: #90caf9;
}

.material-card.Blue100 .mc-footer h4 {
    color: #90caf9;
}

.material-card.Blue100 .mc-footer a {
    background-color: #bbdefb;
}

.material-card.Blue100 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue100.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue100.mc-active .mc-footer {
    background-color: #90caf9;
}

.material-card.Blue100.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue200 h2 {
    background-color: #90caf9;
}

.material-card.Blue200 h2:after {
    border-top-color: #90caf9;
    border-right-color: #90caf9;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue200 h2:before {
    border-top-color: transparent;
    border-right-color: #64b5f6;
    border-bottom-color: #64b5f6;
    border-left-color: transparent;
}

.material-card.Blue200.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #90caf9;
    border-bottom-color: #90caf9;
    border-left-color: transparent;
}

.material-card.Blue200.mc-active h2:after {
    border-top-color: #64b5f6;
    border-right-color: #64b5f6;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue200 .mc-btn-action {
    background-color: #64b5f6;
}

.material-card.Blue200 .mc-btn-action:hover {
    background-color: #42a5f5;
}

.material-card.Blue200 .mc-footer h4 {
    color: #64b5f6;
}

.material-card.Blue200 .mc-footer a {
    background-color: #90caf9;
}

.material-card.Blue200 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue200.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue200.mc-active .mc-footer {
    background-color: #64b5f6;
}

.material-card.Blue200.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue300 h2 {
    background-color: #64b5f6;
}

.material-card.Blue300 h2:after {
    border-top-color: #64b5f6;
    border-right-color: #64b5f6;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue300 h2:before {
    border-top-color: transparent;
    border-right-color: #42a5f5;
    border-bottom-color: #42a5f5;
    border-left-color: transparent;
}

.material-card.Blue300.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #64b5f6;
    border-bottom-color: #64b5f6;
    border-left-color: transparent;
}

.material-card.Blue300.mc-active h2:after {
    border-top-color: #42a5f5;
    border-right-color: #42a5f5;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue300 .mc-btn-action {
    background-color: #42a5f5;
}

.material-card.Blue300 .mc-btn-action:hover {
    background-color: #2196f3;
}

.material-card.Blue300 .mc-footer h4 {
    color: #90caf9;
}

.material-card.Blue300 .mc-footer a {
    background-color: #64b5f6;
}

.material-card.Blue300 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue300.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue300.mc-active .mc-footer {
    background-color: #bbdefb;
}

.material-card.Blue300.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue400 h2 {
    background-color: #42a5f5;
}

.material-card.Blue400 h2:after {
    border-top-color: #42a5f5;
    border-right-color: #42a5f5;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue400 h2:before {
    border-top-color: transparent;
    border-right-color: #2196f3;
    border-bottom-color: #2196f3;
    border-left-color: transparent;
}

.material-card.Blue400.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #42a5f5;
    border-bottom-color: #42a5f5;
    border-left-color: transparent;
}

.material-card.Blue400.mc-active h2:after {
    border-top-color: #2196f3;
    border-right-color: #2196f3;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue400 .mc-btn-action {
    background-color: #42a5f5;
}

.material-card.Blue400 .mc-btn-action:hover {
    background-color: #2196f3;
}

.material-card.Blue400 .mc-footer h4 {
    color: #64b5f6;
}

.material-card.Blue400 .mc-footer a {
    background-color: #42a5f5;
}

.material-card.Blue400 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue400.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue400.mc-active .mc-footer {
    background-color: #90caf9;
}

.material-card.Blue400.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue500 h2 {
    background-color: #2196f3;
}

.material-card.Blue500 h2:after {
    border-top-color: #2196f3;
    border-right-color: #2196f3;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue500 h2:before {
    border-top-color: transparent;
    border-right-color: #1e88e5;
    border-bottom-color: #1e88e5;
    border-left-color: transparent;
}

.material-card.Blue500.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #2196f3;
    border-bottom-color: #2196f3;
    border-left-color: transparent;
}

.material-card.Blue500.mc-active h2:after {
    border-top-color: #1e88e5;
    border-right-color: #1e88e5;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue500 .mc-btn-action {
    background-color: #2196f3;
}

.material-card.Blue500 .mc-btn-action:hover {
    background-color: #1e88e5;
}

.material-card.Blue500 .mc-footer h4 {
    color: #2196f3;
}

.material-card.Blue500 .mc-footer a {
    background-color: #2196f3;
}

.material-card.Blue500 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue500.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue500.mc-active .mc-footer {
    background-color: #64b5f6;
}

.material-card.Blue500.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue600 h2 {
    background-color: #1e88e5;
}

.material-card.Blue600 h2:after {
    border-top-color: #1e88e5;
    border-right-color: #1e88e5;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue600 h2:before {
    border-top-color: transparent;
    border-right-color: #1976d2;
    border-bottom-color: #1976d2;
    border-left-color: transparent;
}

.material-card.Blue600.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #1e88e5;
    border-bottom-color: #1e88e5;
    border-left-color: transparent;
}

.material-card.Blue600.mc-active h2:after {
    border-top-color: #1976d2;
    border-right-color: #1976d2;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue600 .mc-btn-action {
    background-color: #1e88e5;
}

.material-card.Blue600 .mc-btn-action:hover {
    background-color: #1976d2;
}

.material-card.Blue600 .mc-footer h4 {
    color: #1e88e5;
}

.material-card.Blue600 .mc-footer a {
    background-color: #1e88e5;
}

.material-card.Blue600 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue600.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue600.mc-active .mc-footer {
    background-color: #42a5f5;
}

.material-card.Blue600.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue h2 {
    background-color: #2196f3;
}

.material-card.Blue h2:after {
    border-top-color: #2196f3;
    border-right-color: #2196f3;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue h2:before {
    border-top-color: transparent;
    border-right-color: #0d47a1;
    border-bottom-color: #0d47a1;
    border-left-color: transparent;
}

.material-card.Blue.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #2196f3;
    border-bottom-color: #2196f3;
    border-left-color: transparent;
}

.material-card.Blue.mc-active h2:after {
    border-top-color: #0d47a1;
    border-right-color: #0d47a1;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue .mc-btn-action {
    background-color: #2196f3;
}

.material-card.Blue .mc-btn-action:hover {
    background-color: #0d47a1;
}

.material-card.Blue .mc-footer h4 {
    color: #0d47a1;
}

.material-card.Blue .mc-footer a {
    background-color: #0d47a1;
}

.material-card.Blue .mc-footer a:nth-child(6) {
    color: #0d47a1;
    background-color: inherit;
}

.material-card.Blue.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue.mc-active .mc-footer {
    background-color: #bbdefb;
}

.material-card.Blue.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue700 h2 {
    background-color: #1976d2;
}

.material-card.Blue700 h2:after {
    border-top-color: #1976d2;
    border-right-color: #1976d2;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue700 h2:before {
    border-top-color: transparent;
    border-right-color: #1565c0;
    border-bottom-color: #1565c0;
    border-left-color: transparent;
}

.material-card.Blue700.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #1976d2;
    border-bottom-color: #1976d2;
    border-left-color: transparent;
}

.material-card.Blue700.mc-active h2:after {
    border-top-color: #1565c0;
    border-right-color: #1565c0;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue700 .mc-btn-action {
    background-color: #1976d2;
}

.material-card.Blue700 .mc-btn-action:hover {
    background-color: #1565c0;
}

.material-card.Blue700 .mc-footer h4 {
    color: #01579b;
}

.material-card.Blue700 .mc-footer a {
    background-color: #01579b;
}

.material-card.Blue700 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue700.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue700.mc-active .mc-footer {
    background-color: #2196f3;
}

.material-card.Blue700.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue800 h2 {
    background-color: #1565c0;
}

.material-card.Blue800 h2:after {
    border-top-color: #1565c0;
    border-right-color: #1565c0;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue800 h2:before {
    border-top-color: transparent;
    border-right-color: #0d47a1;
    border-bottom-color: #0d47a1;
    border-left-color: transparent;
}

.material-card.Blue800.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #1565c0;
    border-bottom-color: #1565c0;
    border-left-color: transparent;
}

.material-card.Blue800.mc-active h2:after {
    border-top-color: #0d47a1;
    border-right-color: #0d47a1;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue800 .mc-btn-action {
    background-color: #1565c0;
}

.material-card.Blue800 .mc-btn-action:hover {
    background-color: #0d47a1;
}

.material-card.Blue800 .mc-footer h4 {
    color: #1565c0;
}

.material-card.Blue800 .mc-footer a {
    background-color: #1565c0;
}

.material-card.Blue800 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue800.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue800.mc-active .mc-footer {
    background-color: #1e88e5;
}

.material-card.Blue800.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Blue900 h2 {
    background-color: #0d47a1;
}

.material-card.Blue900 h2:after {
    border-top-color: #0d47a1;
    border-right-color: #0d47a1;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue900 h2:before {
    border-top-color: transparent;
    border-right-color: #283593;
    border-bottom-color: #283593;
    border-left-color: transparent;
}

.material-card.Blue900.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #0d47a1;
    border-bottom-color: #0d47a1;
    border-left-color: transparent;
}

.material-card.Blue900.mc-active h2:after {
    border-top-color: #283593;
    border-right-color: #283593;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue900 .mc-btn-action {
    background-color: #0d47a1;
}

.material-card.Blue900 .mc-btn-action:hover {
    background-color: #0d47a1;
}

.material-card.Blue900 .mc-footer h4 {
    color: #0d47a1;
}

.material-card.Blue900 .mc-footer a {
    background-color: #0d47a1;
}

.material-card.Blue900 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.Blue900.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.Blue900.mc-active .mc-footer {
    background-color: #1976d2;
}

.material-card.Blue900.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.BlueA100 h2 {
    background-color: #82b1ff;
}

.material-card.BlueA100 h2:after {
    border-top-color: #82b1ff;
    border-right-color: #82b1ff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA100 h2:before {
    border-top-color: transparent;
    border-right-color: #448aff;
    border-bottom-color: #448aff;
    border-left-color: transparent;
}

.material-card.BlueA100.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #82b1ff;
    border-bottom-color: #82b1ff;
    border-left-color: transparent;
}

.material-card.BlueA100.mc-active h2:after {
    border-top-color: #448aff;
    border-right-color: #448aff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA100 .mc-btn-action {
    background-color: #82b1ff;
}

.material-card.BlueA100 .mc-btn-action:hover {
    background-color: #448aff;
}

.material-card.BlueA100 .mc-footer h4 {
    color: #82b1ff;
}

.material-card.BlueA100 .mc-footer a {
    background-color: #82b1ff;
}

.material-card.BlueA100 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.BlueA100.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.BlueA100.mc-active .mc-footer {
    background-color: #2196f3;
}

.material-card.BlueA100.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.BlueA200 h2 {
    background-color: #448aff;
}

.material-card.BlueA200 h2:after {
    border-top-color: #448aff;
    border-right-color: #448aff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA200 h2:before {
    border-top-color: transparent;
    border-right-color: #2979ff;
    border-bottom-color: #2979ff;
    border-left-color: transparent;
}

.material-card.BlueA200.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #448aff;
    border-bottom-color: #448aff;
    border-left-color: transparent;
}

.material-card.BlueA200.mc-active h2:after {
    border-top-color: #2979ff;
    border-right-color: #2979ff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA200 .mc-btn-action {
    background-color: #448aff;
}

.material-card.BlueA200 .mc-btn-action:hover {
    background-color: #2979ff;
}

.material-card.BlueA200 .mc-footer h4 {
    color: #448aff;
}

.material-card.BlueA200 .mc-footer a {
    background-color: #448aff;
}

.material-card.BlueA200 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.BlueA200.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.BlueA200.mc-active .mc-footer {
    background-color: #1976d2;
}

.material-card.BlueA200.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.BlueA400 h2 {
    background-color: #2979ff;
}

.material-card.BlueA400 h2:after {
    border-top-color: #2979ff;
    border-right-color: #2979ff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA400 h2:before {
    border-top-color: transparent;
    border-right-color: #2962ff;
    border-bottom-color: #2962ff;
    border-left-color: transparent;
}

.material-card.BlueA400.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #2979ff;
    border-bottom-color: #2979ff;
    border-left-color: transparent;
}

.material-card.BlueA400.mc-active h2:after {
    border-top-color: #2962ff;
    border-right-color: #2962ff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA400 .mc-btn-action {
    background-color: #2979ff;
}

.material-card.BlueA400 .mc-btn-action:hover {
    background-color: #0d47a1;
}

.material-card.BlueA400 .mc-footer h4 {
    color: #2979ff;
}

.material-card.BlueA400 .mc-footer a {
    background-color: #2979ff;
}

.material-card.BlueA400 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.BlueA400.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.BlueA400.mc-active .mc-footer {
    background-color: #82b1ff;
}

.material-card.BlueA400.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.BlueA700 h2 {
    background-color: #2962ff;
}

.material-card.BlueA700 h2:after {
    border-top-color: #2962ff;
    border-right-color: #2962ff;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA700 h2:before {
    border-top-color: transparent;
    border-right-color: #1976d2;
    border-bottom-color: #1976d2;
    border-left-color: transparent;
}

.material-card.BlueA700.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #2962ff;
    border-bottom-color: #2962ff;
    border-left-color: transparent;
}

.material-card.BlueA700.mc-active h2:after {
    border-top-color: #1976d2;
    border-right-color: #1976d2;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.BlueA700 .mc-btn-action {
    background-color: #2962ff;
}

.material-card.BlueA700 .mc-btn-action:hover {
    background-color: #1976d2;
}

.material-card.BlueA700 .mc-footer h4 {
    color: #2962ff;
}

.material-card.BlueA700 .mc-footer a {
    background-color: #2962ff;
}

.material-card.BlueA700 .mc-footer a:nth-child(6) {
    color: white;
    background-color: inherit;
}

.material-card.BlueA700.mc-active .mc-content {
    background-color: #e3f2fd;
}

.material-card.BlueA700.mc-active .mc-footer {
    background-color: #448aff;
}

.material-card.BlueA700.mc-active .mc-btn-action {
    border-color: #e3f2fd;
}

.material-card.Amber h2 {
    background-color: #ffc107;
}

.material-card.Amber h2:after {
    border-top-color: #ffc107;
    border-right-color: #ffc107;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Amber h2:before {
    border-top-color: transparent;
    border-right-color: #ff6f00;
    border-bottom-color: #ff6f00;
    border-left-color: transparent;
}

.material-card.Amber.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #ffc107;
    border-bottom-color: #ffc107;
    border-left-color: transparent;
}

.material-card.Amber.mc-active h2:after {
    border-top-color: #ff6f00;
    border-right-color: #ff6f00;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Amber .mc-btn-action {
    background-color: #ffc107;
}

.material-card.Amber .mc-btn-action:hover {
    background-color: #ff6f00;
}

.material-card.Amber .mc-footer h4 {
    color: #ff6f00;
}

.material-card.Amber .mc-footer a {
    background-color: #ff6f00;
}

.material-card.Amber .mc-footer a:nth-child(6) {
    color: #ff6f00;
    background-color: inherit;
}

.material-card.Amber.mc-active .mc-content {
    background-color: #fff8e1;
}

.material-card.Amber.mc-active .mc-footer {
    background-color: #ffecb3;
}

.material-card.Amber.mc-active .mc-btn-action {
    border-color: #fff8e1;
}

.material-card.Orange h2 {
    background-color: #ff9800;
}

.material-card.Orange h2:after {
    border-top-color: #ff9800;
    border-right-color: #ff9800;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Orange h2:before {
    border-top-color: transparent;
    border-right-color: #e65100;
    border-bottom-color: #e65100;
    border-left-color: transparent;
}

.material-card.Orange.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #ff9800;
    border-bottom-color: #ff9800;
    border-left-color: transparent;
}

.material-card.Orange.mc-active h2:after {
    border-top-color: #e65100;
    border-right-color: #e65100;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Orange .mc-btn-action {
    background-color: #ff9800;
}

.material-card.Orange .mc-btn-action:hover {
    background-color: #e65100;
}

.material-card.Orange .mc-footer h4 {
    color: #e65100;
}

.material-card.Orange .mc-footer a {
    background-color: #e65100;
}

.material-card.Orange .mc-footer a:nth-child(6) {
    color: #e65100;
    background-color: inherit;
}

.material-card.Orange.mc-active .mc-content {
    background-color: #fff3e0;
}

.material-card.Orange.mc-active .mc-footer {
    background-color: #ffe0b2;
}

.material-card.Orange.mc-active .mc-btn-action {
    border-color: #fff3e0;
}

.material-card.Deep-Orange h2 {
    background-color: #ff5722;
}

.material-card.Deep-Orange h2:after {
    border-top-color: #ff5722;
    border-right-color: #ff5722;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Deep-Orange h2:before {
    border-top-color: transparent;
    border-right-color: #bf360c;
    border-bottom-color: #bf360c;
    border-left-color: transparent;
}

.material-card.Deep-Orange.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #ff5722;
    border-bottom-color: #ff5722;
    border-left-color: transparent;
}

.material-card.Deep-Orange.mc-active h2:after {
    border-top-color: #bf360c;
    border-right-color: #bf360c;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Deep-Orange .mc-btn-action {
    background-color: #ff5722;
}

.material-card.Deep-Orange .mc-btn-action:hover {
    background-color: #bf360c;
}

.material-card.Deep-Orange .mc-footer h4 {
    color: #bf360c;
}

.material-card.Deep-Orange .mc-footer a {
    background-color: #bf360c;
}

.material-card.Deep-Orange .mc-footer a:nth-child(6) {
    color: #bf360c;
    background-color: inherit;
}

.material-card.Deep-Orange.mc-active .mc-content {
    background-color: #fbe9e7;
}

.material-card.Deep-Orange.mc-active .mc-footer {
    background-color: #ffccbc;
}

.material-card.Deep-Orange.mc-active .mc-btn-action {
    border-color: #fbe9e7;
}

.material-card.Brown h2 {
    background-color: #795548;
}

.material-card.Brown h2:after {
    border-top-color: #795548;
    border-right-color: #795548;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Brown h2:before {
    border-top-color: transparent;
    border-right-color: #3e2723;
    border-bottom-color: #3e2723;
    border-left-color: transparent;
}

.material-card.Brown.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #795548;
    border-bottom-color: #795548;
    border-left-color: transparent;
}

.material-card.Brown.mc-active h2:after {
    border-top-color: #3e2723;
    border-right-color: #3e2723;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Brown .mc-btn-action {
    background-color: #795548;
}

.material-card.Brown .mc-btn-action:hover {
    background-color: #3e2723;
}

.material-card.Brown .mc-footer h4 {
    color: #3e2723;
}

.material-card.Brown .mc-footer a {
    background-color: #3e2723;
}

.material-card.Brown .mc-footer a:nth-child(6) {
    color: #3e2723;
    background-color: inherit;
}

.material-card.Brown.mc-active .mc-content {
    background-color: #efebe9;
}

.material-card.Brown.mc-active .mc-footer {
    background-color: #d7ccc8;
}

.material-card.Brown.mc-active .mc-btn-action {
    border-color: #efebe9;
}

.material-card.Grey h2 {
    background-color: #9e9e9e;
}

.material-card.Grey h2:after {
    border-top-color: #9e9e9e;
    border-right-color: #9e9e9e;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Grey h2:before {
    border-top-color: transparent;
    border-right-color: #212121;
    border-bottom-color: #212121;
    border-left-color: transparent;
}

.material-card.Grey.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #9e9e9e;
    border-bottom-color: #9e9e9e;
    border-left-color: transparent;
}

.material-card.Grey.mc-active h2:after {
    border-top-color: #212121;
    border-right-color: #212121;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Grey .mc-btn-action {
    background-color: #9e9e9e;
}

.material-card.Grey .mc-btn-action:hover {
    background-color: #212121;
}

.material-card.Grey .mc-footer h4 {
    color: #212121;
}

.material-card.Grey .mc-footer a {
    background-color: #212121;
}

.material-card.Grey .mc-footer a:nth-child(6) {
    color: #212121;
    background-color: inherit;
}

.material-card.Grey.mc-active .mc-content {
    background-color: #fafafa;
}

.material-card.Grey.mc-active .mc-footer {
    background-color: #f5f5f5;
}

.material-card.Grey.mc-active .mc-btn-action {
    border-color: #fafafa;
}

.material-card.Blue-Grey h2 {
    background-color: #607d8b;
}

.material-card.Blue-Grey h2:after {
    border-top-color: #607d8b;
    border-right-color: #607d8b;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue-Grey h2:before {
    border-top-color: transparent;
    border-right-color: #263238;
    border-bottom-color: #263238;
    border-left-color: transparent;
}

.material-card.Blue-Grey.mc-active h2:before {
    border-top-color: transparent;
    border-right-color: #607d8b;
    border-bottom-color: #607d8b;
    border-left-color: transparent;
}

.material-card.Blue-Grey.mc-active h2:after {
    border-top-color: #263238;
    border-right-color: #263238;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.material-card.Blue-Grey .mc-btn-action {
    background-color: #607d8b;
}

.material-card.Blue-Grey .mc-btn-action:hover {
    background-color: #263238;
}

.material-card.Blue-Grey .mc-footer h4 {
    color: #263238;
}

.material-card.Blue-Grey .mc-footer a {
    background-color: #263238;
}

.material-card.Blue-Grey .mc-footer a:nth-child(6) {
    color: #263238;
    background-color: inherit;
}

.material-card.Blue-Grey.mc-active .mc-content {
    background-color: #eceff1;
}

.material-card.Blue-Grey.mc-active .mc-footer {
    background-color: #cfd8dc;
}

.material-card.Blue-Grey.mc-active .mc-btn-action {
    border-color: #eceff1;
}
