.material-frame {
    box-sizing: border-box;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.15);
    border:none;
}

.blue-box {
    box-sizing: border-box;
    box-shadow: none;
    border: solid 3px blue;
}

.green-box {
    box-sizing: border-box;
    box-shadow: none;
    border: solid 3px green;
}

.light-grey-box {
    box-sizing: border-box;
    box-shadow: none;
    border: solid 1px rgb(220,220,220);
}

.red-glow {
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 5px rgba(255,0,0,0.8);
    border:none;
}

.none {
    box-sizing: border-box;
    box-shadow: none;
    border:none;
}
