/*
  ========================================
  ds-modal
  ========================================
*/

.modal {
	background: #fff;
	display: none;
	position: fixed;
	top: 47%;
	left: 50%;
	width: 400px;
	height: 476px;
	margin-left: -200px;
	margin-top: -150px;
	z-index: 5000;
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
	   -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
		    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.modal h2 {
	font-size:20px;
	color:#EB3237;
	font-weight:600;
	margin-bottom:10px;
}

.modal h2 span {
	color:#9D0A0C;
}

.ds-modal-head {
	padding: 15px 30px;
	background: #f1f1f1;
}

.ds-modal-head h1 {
	float: left;
	font-size: 16px;
	font-weight: bold;
}

.ds-modal-head .close-modal,
.ds-modal-head .close-modal2,
.ds-modal-head .close-modal3 {
	float: right;
	margin: 7px 0 0 0;
	width: 14px;
	height: 14px;
	background: url(../img/fechar.png) 0 0;
	cursor: pointer;
}

.ds-modal-conteudo {
	padding: 20px 30px;
}

.ds-modal-conteudo input {
	width: 75%;
}

.ds-modal-conteudo .ds-btn {
	width: 35%;
	padding: 0;
}

.inputs .btn2 {
	float:right;
	width:25%;
	font-size: 15px;
	color:#ffffff;
	font-weight:600;
	font-family: 'Source Sans Pro', sans-serif;
	cursor:pointer;
	transition-duration:500ms;
	outline:none;
	border:1px solid #AA1B17;
	background:#AA1B17;
	padding:11.5px 35px;
	
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.inputs .btn2:hover {
	background:#801411;
	color:#ffffff;
}

@media screen and (max-width: 600px) { /* 640px */
	.ds-modal-conteudo input {
		width: 65%;
	}
	
	.inputs .btn2 {
		width:35%;
	}
}

@media screen and (max-width: 460px) { /* 460px */
	.ds-modal-conteudo input,
	.inputs .btn2 {
		float:none;
		width:100%;
	}
}

@media screen and (min-width: 1025px) { /* 580px */
	.ds-filtro-responsive-btn {
		display:none;
	}
}

@media screen and (max-width: 1025px) { /* 580px */

	.modal {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
	}

 }
 

.ds-filtro-responsive-btn .ds-busca-codigo {
	background: #BBBBBB;
	font-size:15px;
	font-weight:600;
	color:#ffffff;
	padding:9px 0 0 0;
	width:300px;
	display:block;
	min-height:40px;
	text-decoration: none;
	cursor: pointer;
	margin:0 auto;
	margin-top:15px;
	text-align:center;
	position:relative;
	z-index:2;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

@media screen and (max-width: 490px) { /* 580px */

	.ds-filtro-responsive-btn .ds-busca-codigo {
		width:100%;
	}

 }
 

.ds-filtro-responsive-btn .ds-busca-codigo:hover {
	background: #8C8888;
}

/*
  ========================================
  ds-nav
  ========================================
*/

.ds-nav {
	float: right;
	position: relative;
	height: 80px;
}

.ds-navigation .open-modal3 {
	cursor: pointer;
}

.ds-navigation li {
	display: inline;
	margin: 0;
	padding: 0;
	float: left;
	position: relative;
}

.ds-navigation li.divider {
	position: relative;
	width: 1px;
	height: 80px;
}

.ds-navigation li.divider::after {
	position: absolute;
	top: 26px;
	left: 0;
	width: 1px;
	height: 27px;
	background: #896f3d;
	content: "";
}

.ds-navigation li.drop a {
	padding-right: 30px;
}

.ds-navigation li.drop::after {
	position: absolute;
	top: 38px;
	right: 10px;
	width: 6px;
	height: 3px;
	background: url(../img/icons.png) -80px 0;
	content: "";
}

.ds-navigation li a {
	padding: 25.5px 18px;
	display: inline-block;
	border-bottom: 4px solid transparent;
	font-size: 16px;
	color: #373435;
	-webkit-transition: color 0.2s linear, background 0.2s linear, border 0.2s linear;	
	-moz-transition: color 0.2s linear, background 0.2s linear, border 0.2s linear;	
	transition: color 0.2s linear, background 0.2s linear, border 0.2s linear;	
}

.ds-navigation li a:hover,
.ds-navigation li a.active {
	border-color: #fff;
}

.ds-navigation li:hover > a {
	border-color: #fff;
}

.ds-navigation li:hover > ul {
	visibility: visible;
	opacity: 1;
}

.ds-navigation ul, .ds-navigation ul li ul {
	list-style: none;
    margin: 0;
    padding: 0;    
	visibility:hidden;
    position: absolute;
    z-index: 99999;
	width: 200px;
	background: #fff;
	opacity: 0;
	-webkit-transition:opacity 0.2s linear, visibility 0.2s linear; 
	-moz-transition:opacity 0.2s linear, visibility 0.2s linear; 
	-o-transition:opacity 0.2s linear, visibility 0.2s linear; 
	transition:opacity 0.2s linear, visibility 0.2s linear; 	
	-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	   -moz-box-shadow: 0 2px 4px rgba(0,0,0,0.1);
		    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ds-navigation ul {
    top: 80px;
    left: 0;
}

.ds-navigation ul li ul {
    top: 0;
    left: 181px;
}

.ds-navigation ul li {
	clear: both;
	width: 100%;
	border: 0 none;
	border-bottom: 1px solid #f4f4f4;
}

.ds-navigation ul li a {
	background: none;
	padding: 12px 18px;
	font-size: 15px;
	color: #373334;
	text-decoration: none;
	display: inline-block;
	border: 0 none;
	float: left;
	clear: both;
	width: 200px;
}

.ds-navigation ul li a:hover {
	background: #f1f1f1;
}
