﻿* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 24% ;
    padding: 10px;
    height: auto;
    
}
.column-remove {
    float: left;
    width: 23%;
    padding: 10px;
    height: auto;
}


/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
/* Style the buttons */
.btnLg {
    border: none;
    outline: none;
    padding: 2px 2px;
    background-color: transparent;
    cursor: pointer;
}

    .btnLg:hover {
        background-color: transparent;
    }

    .btnLg.active {
        background-color: #666;
        color: white;
    }
.column:hover {
    box-shadow: 0 5px 5px #383230;
    color:#383230;
    transition: box-shadow .4s ease-in-out;

}

.column-remove:hover {
    box-shadow: 0 5px 10px #383230;
    margin-bottom: 5px;
    transition: box-shadow .3s ease-in-out;
}