.button1-widget.style1 {
    height: 180px;    
    border-right: 1px solid #242732;
    a {
        display: flex;                
        align-items: center;
        justify-content: space-around;
        height: 100%;        
        padding: 10px 15px;        
        background-color: var(--e-global-color-astglobalcolor6);    
        transition: all 0.2s ease-in-out;                    
        .button1-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            .button1-title {
                font-size: 28px;
                color: #edecec;
                font-weight: 600;
            }
            .button1-subtitle {
                font-size: 16px;
                color: #ddd;
                font-weight: normal;
                padding-top: 5px;
                margin-top: 12px;
                border-top: 1px solid #dddddd54; 
            }            
        }
    }
    a:hover {
        background-color: #ddd;
        .button1-content {
            .button1-title {
                color: #222;
            }
            .button1-subtitle {
                color: #444;
            }
        }   
    }
    img {
        width: 70px;
        height: auto;
        border-radius: 10px;
    }

}

.button1-widget.style2 {
    height: 180px;
    border-right: 1px solid #ddd;
    a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        height: 100%;
        background-color: var(--e-global-color-astglobalcolor5);
        transition: all 0.2s ease-in-out;
        svg {
            width: 50px;
            height: auto;            
        }              
        .button2-title {
            font-size: 18px;
            color: var(--e-global-color-astglobalcolor6);
            font-weight: 600;
        }
    }
    a:hover {
        background-color: #555;
        .button2-title {
            color: #eee;
        }
    }
}

.button1-widget.style3 {    
    a {
        padding: 10px;
        display: flex;        
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        height: 100%;
        background-color: #fff;
        transition: all 0.2s ease-in-out;         
        .button3-title {
            font-size: 18px;
            color: #000;
            font-weight: 600;
        }
        .button3-subtitle {
            color: silver;
        }
    }
    a:hover {
        background-color: var(--e-global-color-astglobalcolor5);
        .button2-title {
            color: #eee;
        }
    }
}



@media screen and (max-width: 1200px) {
    .button1-widget.style1 {
        height: 160px;
        .button1-title {
            font-size: 24px;
        }
        .button1-subtitle {
            font-size: 15px;
        }
        img {
            width: 60px;
        }
    }
    .button1-widget.style2 {
        height: 160px;
        .button2-title {
            font-size: 24px;
        }
    }
}


@media screen and (max-width: 650px) {
    .button1-widget.style1 {
        border-bottom: 1px solid #555;
    }
    .e-con-inner {
        max-width: 100%; 
        > div:nth-child(3) {
            min-width: 0px !important;
        }     
        .e-grid.e-con-full {
            --e-con-grid-template-columns: repeat(2, 1fr) !important;             
        }
    }
    
}
