﻿.class1 {
    background-color: white;
}

#featured-dashboard .icon-box {
    padding: 12px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 20px rgba(68, 88, 144, 0.12);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    font-family: "Poppins", Poppins;
    max-width: 25%;
}

    #featured-dashboard .icon-box:hover::before {
        background: #106eea;
        top: 0;
        border-radius: 0px;
    }

    #featured-dashboard .icon-box::before {
        content: "";
        position: absolute;
        background: #cbe0fb;
        right: 0;
        left: 0;
        bottom: 0;
        top: 100%;
        transition: all 0.3s;
        z-index: -1;
    }
