/* 
    Created on : 18 juil. 2018, 17:00:51
    Author     : Luc DJOSSA
*/

#db_info_box{
    display: block;
    width: 90%;
    margin: auto;
    min-height: 200px;
    border: 0px solid black;
    margin-top: 10px;
    border: 1px solid rgba(53, 44, 34, 0.9);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

#db_info_box:hover{
    box-shadow: 0 0 10px 0px rgba(53, 44, 34, 0.9);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#db_info_box span{
    display: block;
    border-bottom: 1px solid rgba(53, 44, 34, 0.9);
    max-height: 50px;
    text-align: center;
    padding: 5px;
    text-transform: uppercase;
    font-weight: bold;
    background: -moz-linear-gradient(top, rgba(243, 135, 42, 1) 0%, rgba(206, 115, 35,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(243, 135, 42,1)), color-stop(100%,rgba(206, 115, 35,1)));
    background: -webkit-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(243, 135, 42,1) 100%);
    background: -o-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: -ms-linear-gradient(top, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
    background: linear-gradient(to bottom, rgba(243, 135, 42,1) 0%,rgba(206, 115, 35,1) 100%);
}

#db_info_box table td{
    font-size: 20px;
    text-align: left;
    padding: 5px;
    /*text-shadow: 0.5px 0.5px 0.5px rgba(55, 15, 25, 15);*/
}

