
/************************************************************************************
SPRITES
*************************************************************************************/
#sprite-esq{
	bottom: 5%;
	left: 0;
	position: fixed;
	height: auto;
	margin: 10px;
	padding: 5px;
	z-index: 10000;
	background: rgba(36,36,37,0.8);
	box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
	
	display: flex;
	flex-wrap: wrap; /*nowrap*/
	flex-direction: row;	
	justify-content: /*flex-start center space-between space-around*/ center;
	
	/*rounded corner*/
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

#sprite-dir{
	bottom: 5%;
	right: 0px;
	position: fixed;
	height: auto;
	margin: 10px;
	padding: 5px;
	z-index: 10000;
	background: rgba(36,36,37,0.8);
	box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
	
	display: flex;
	flex-wrap: wrap; /*nowrap*/
	flex-direction: row;	
	justify-content: /*flex-start center space-between space-around*/ center;
	
	/*rounded corner*/
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.sprite-menu ul{
	width: 100%;
	margin: 0 0 0 0;
	padding:  0 0 0 0;
}

.sprite-menu li{
	margin: 0px auto;
	padding: 0;
	display: block;
}

.sprite-menu a{
	font-family: "Google Sans Flex", sans-serif;
	color: #FFF;
	font-size: 1.2em;
	font-weight: 300;
	margin: 3px auto;
	padding: 6px 5px;
	display: block;
	text-decoration: none;
	text-align: center;
	
	/* transition */
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
	overflow:hidden;

	background: transparent;
	
	/*rounded corner*/
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

.sprite-menu a:hover{
	color: #FFF;
	background: #fc0000;
}

/***********************strike****************/

a.strike{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 70%;
	cursor: pointer;
	color: #242427;
	margin: 10px auto;
	padding: 0 0 0 20px; 
	font-family: "Google Sans Flex", sans-serif;
	font-size: .8rem;
	font-weight: 500;
    text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	
	/*background*/
	background: #FFF;
	
	/* rounded corner */
	-webkit-border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	border-radius: 50px 50px 50px 50px;
}

a.strike:hover{
	/*color*/
	color:#FFF;
	
	/*background*/
	background: #242427;	
	text-decoration: none;
	
	/*transition*/
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
		
	/*shadom*/
	box-shadow: 0px 0px 20px rgba(148,148,148,0.2);
}

/*************************************/

a.strike-2{
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: auto;
	cursor: pointer;
	color: #242427;
	margin: 25px 2px 10px 2px;
	padding: 0 0 0 20px; 
	font-family: "Google Sans Flex", sans-serif;
	font-size: .8rem;
	font-weight: 500;
    text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	float: right;
	
	/*background*/
	background: #FFF;
	
	/* rounded corner */
	-webkit-border-radius: 0px 3px 3px 0px;
	-moz-border-radius: 0px 3px 3px 0px;
	border-radius: 50px 50px 50px 50px;
}

a.strike-2:hover{
	/*color*/
	color:#FFF;
	
	/*background*/
	background: #fc0000;	
	text-decoration: none;
	
	/*transition*/
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
		
	/*shadom*/
	box-shadow: 0px 0px 20px rgba(148,148,148,0.2);
}

.strike-icon{
	width: auto;
	cursor: pointer;
	color: #FFF;
	margin: 0 0 0 20px;
	padding: 15px 13px; 
	font-family: "Google Sans Flex", sans-serif;
	font-size: .9rem;
	font-weight: 400;
    text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	float: right;
	
	/*background*/
	background: #fc0000;
	
	/* rounded corner */
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius:  50px;
}

/************************************************************************************
MAIN NAVIGATION 980px
*************************************************************************************/

@media all and (max-width: 980px) {


}/***FIM 980px***/

/************************************************************************************
MAIN NAVIGATION 810px
*************************************************************************************/

@media all and (max-width: 810px) {
	
	#sprite-esq{
		bottom: 60%;
		left: 0;
		position: fixed;
		height: auto;
		margin: 10px;
		padding: 5px;
		z-index: 10000;
		background: rgba(36,36,37,0.8);
		box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
		
		display: none;
		flex-wrap: wrap; /*nowrap*/
		flex-direction: row;	
		justify-content: /*flex-start center space-between space-around*/ center;
		
		/*rounded corner*/
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		border-radius: 50px;
	}

	#sprite-dir{
		bottom: 60%;
		right: 0px;
		position: fixed;
		height: auto;
		margin: 10px;
		padding: 5px;
		z-index: 10000;
		background: rgba(36,36,37,0.8);
		box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
		
		display: none;
		flex-wrap: wrap; /*nowrap*/
		flex-direction: row;	
		justify-content: /*flex-start center space-between space-around*/ center;
		
		/*rounded corner*/
		-webkit-border-radius: 50px;
		-moz-border-radius: 50px;
		border-radius: 50px;
	}
	
}/***FIM 810px***/

/************************************************************************************
MAIN NAVIGATION 768px
*************************************************************************************/

@media all and (max-width: 768px) {
	
}/***FIM 768px***/

/************************************************************************************
MAIN NAVIGATION 680px
*************************************************************************************/

@media all and (max-width: 680px) {
	
	a.strike-2{
		display: flex;
		align-items: center;
		justify-content: space-around;
		width: auto;
		cursor: pointer;
		color: #242427;
		margin: 10px 2px 10px 2px;
		padding: 0 0 0 20px; 
		font-size: .8rem;
		font-weight: 500;
		text-decoration: none;
		text-align: center;
		text-transform: uppercase;
		float: right;
		
		/*background*/
		background: transparent;
		
		/* rounded corner */
		-webkit-border-radius: 0px 3px 3px 0px;
		-moz-border-radius: 0px 3px 3px 0px;
		border-radius: 50px 50px 50px 50px;
	}

	a.strike-2:hover{
		/*color*/
		color:#FFF;
		
		/*background*/
		background: transparent;	
		text-decoration: none;
		
		/*transition*/
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
			
		/*shadom*/
		box-shadow: 0px 0px 20px rgba(148,148,148,0.2);
	}
	
}/***FIM 680px***/

/************************************************************************************
MAIN NAVIGATION 510px
*************************************************************************************/

@media all and (max-width: 510px) {

}

/************************************************************************************
MAIN NAVIGATION 480px
*************************************************************************************/

@media all and (max-width: 480px) {

}

/************************************************************************************
MAIN NAVIGATION 480px
*************************************************************************************/

@media all and (max-width: 380px) {

}


