/**
 * Style.
 * 
 * @author  Mario Sakamoto <mskamot@gmail.com>
 * @license MIT http://www.opensource.org/licenses/MIT
 * @see     https://AidaWorks.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 { }

html { }

body { }

div { }

span { }

table { }

	thead { }

	tbody { }

	tfoot { }

		tr { }

			th { }

			td { }
		
form { }

	label { }

	input { }
	
	textarea { }

	select { }
	
		option { }

ul { }

	li { }
	
h1 { }

h2 { }

h3 { }

h4 { }

h5 { }

h6 { }

p { }

img { }

a { }

/**
 * Id
 */

/*
 * Class
 */
.primary-bg { background: #791A69; }

.primary { color: #ffc632; }

.primary-inverse { color: #ffffff; } 

.secondary-bg { background: #D81B60; }

.secondary { color: #D81B60; }

.secondary-inverse { color: #D81B60; }

.link:hover { text-decoration: underline; }

.loop-text { animation: loopText 3s infinite linear; }

@keyframes loopText {

  	from { transform: translateX(0); }

  	to { transform: translateX(-100%); }

}

.underline:hover { border-bottom: solid 4px #000 !important; }