/**
 * Style.
 * 
 * @author  Mario Sakamoto <mskamot@gmail.com>
 * @license MIT http://www.opensource.org/licenses/MIT
 * @see     https://wtag.com.br/divmon
 */

/*
 * Reset
 */
html, body, div, span,
table, thead, tbody, tfoot, tr, th, td,
form, label, input, textarea, select, option, button,
ul, li,
h1, h2, h3, h4, h5, h6, p,
img,
a,
pre, code, 
iframe { 
	font-family: 'Montserrat', sans-serif;
}

html { }

body { }

div { }

span { }

table { }

	thead { }

	tbody { }

	tfoot { }

		tr { }

			th { }

			td { 
				padding: 10px 10px;
				border: solid 1px #dcdcdc;
			}

	table border
		
form { }

	label { }

	input { }
	
	textarea { }

	select { }
	
		option { }

ul { }

	li { }

		li:hover { }

		li ul { 
			position: absolute;
			display: none;
		}

		li:hover ul { display: block; }
		
		li:hover ul li:hover { text-decoration: underline; }

			li ul li ul {
				position: absolute;
				display: none !important;
			}

			li ul li:hover ul { display: inline !important; }
			
			li ul li:hover ul li:hover { text-decoration: underline; }
	
h1 { }

h2 { }

h3 { }

h4 { }

h5 { }

h6 { }

p { }

img { }

a { }

/**
 * Id
 */

/*
 * Class
 */
.primary { color: #E80016; }

.primary-bg { background: #E80016; }

.secondary { color: #7E3D8E; }

.secondary-bg { background: #7E3D8E; }

.tertiary { color: #FE9301; }

.tertiary-bg { background: #FE9301; }

.item { display: block !important; }

.link:hover { border: solid 1px #E80016; }