/**
 * Reset 
 * @copyright © 2019, Thay Santos <slatythay@gmail.com>
 *
 */


/**
* RESET 
*/
*, *:before, *:after{
    margin: 0;
    padding: 0;
    outline: 0;
    font-size: 1em;

    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

b, strong{font-weight: bold;}
ol, ul{list-style: none;}
img{border: none; max-width: 100%; vertical-align: middle;}
a{text-decoration: none;}
a img{border: 0;}

body {font-family: 'Arial', sans-serif;}

/**
* CONTAINER 
*/
.container{width: 100%;}
.content{width: 90%; margin: 0 auto;}

/**
* HELPERS 
*/
.radius{-webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;}
.round{-webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;}
.last{margin-right: 0 !important;}
.clear{clear: both;}
.padding-full {padding:1%;}
.padding-top-bottom {padding:1% 0;}
.padding-left-right {padding:0 1%;}
.paddingzero {padding:0;}
.opacity-80 {opacity: .8;}
.opacity-50 {opacity: .5;}
.opacity-20 {opacity: .2;}
.opacity-10 {opacity: .1;}
.font-zero {font-size: 0;}
.box-shadow {  box-shadow: 0px 2px 5px #979696;}

/**
* TEXT 
*/
.text-shadow{text-shadow: 1px 1px 0 #000;}
.text-italic {font-style:italic;}
.text-bold {font-weight:bold !important;}
.text-left{text-align: left;}
.text-right{text-align: right;}
.text-center{text-align: center;}
.text-uppercase {text-transform:uppercase;}
.text-justify {text-align:justify; }
.text-indent {text-indent:5%;}
.text-line-height {line-height: 1.5}

/**
* FLOAT 
*/
.float-left{float: left !important;}
.float-right{float: right !important;}
.float-none{float: none !important;}

/**
* DISPLAY 
*/
.display-block{display: block;}
.display-inblock{display: inline-block;}
.display-inline{display: inline;}
.display-none{display: none !important;}