/*
Theme Name: Total Child
Theme URI: http://totalwptheme.com
Description: Total WordPress theme example child theme.
Author: AJ Clarke
Author URI: http://totalwptheme.com
Template: Total
Version: 1.1
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
#productlist{
    list-style: none;
    margin: 0;
    padding: 0;
}
#productlist li{
    display: inline-block;
    margin: 0;
}
#productlist li a{
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 10px;
    background-color: #2e4f90;
    color: #ffffff;
    border: 1px solid #2c707c;
    text-align: center;
    min-width: 140px;
    min-height: 80px;
}
#productlist li a:hover{
    background-color: #ffffff;
    color: #3e3e3e;
    -webkit-transition: all 500ms linear;
    -moz-transition: all 500ms linear;
    -ms-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
}
#productlist li:not(:last-child){
    margin-right: 15px;
    margin-bottom: 15px;
}

#productlist li a span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}