:root {
  --main_color: #d35327;
  --main_negro: #36362c;
  --sec: #e2e2dd;
  --sec_oscuro: #9c9c88;

  --tipo: 'Montserrat';
  --tipo_bold: 'MontserratBold';

  --tam_texto_1: 16px;
  --tam_texto_2: 14px;
  --tam_texto_3: 12px;
  --tam_texto_4: 20px;

  --flat_rojo: #ff7675;
  --flat_verde: #8BC34A;
  --flat_naranja: #FFC107;
}


@font-face {
  font-family: 'Montserrat';
  src: url('typo/Montserrat-Regular.woff') format('woff');
}
@font-face {
  font-family: 'MontserratBold';
  src: url('typo/Montserrat-SemiBold.woff') format('woff');
}
@font-face {
  font-family: 'MontserratBlack';
  src: url('typo/Montserrat-Black.woff') format('woff');
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: var(--tipo), sans-serif;
	color: var(--main_negro);
}
a{
	text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-family: 'MontserratBlack';
}
input[type="submit"]{
	/*background-color: unset;*/
}
html,body{
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
}
span{
	font-size: var(--tam_texto_3);
	line-height: calc(var(--tam_texto_3) + 4px);
}
img{
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}
button{
	border: none;
}
h1{
	font-family: var(--tipo_bold);
	margin-bottom: 10px;
	font-size: var(--tam_texto_1);
}
h3{
	font-family: var(--tipo_bold);
	line-height: calc(var(--tam_texto_2) + 4px);
	font-size: var(--tam_texto_2);
}
h4{
	font-family: var(--tipo_bold);
	line-height: calc(var(--tam_texto_3) + 4px);
	font-size: var(--tam_texto_3);
}
p{
	font-size: var(--tam_texto_3);
	line-height: calc(var(--tam_texto_3) + 4px);
}
.uppercase{
	text-transform: uppercase;
}
.wrap_scroll{
	position: relative;
	float: left;
	height: 100%;
}
input{
	border: none;
	font-family: var(--tipo), sans-serif;
	font-size: var(--tam_texto_3);
	line-height: calc(var(--tam_texto_3) + 4px);
}
.input_2{
	font-size: var(--tam_texto_2);
	width: 100%;
	box-sizing: border-box;
	height: 45px;
	float: left;
	padding: 0 15px;
}
.input_oscuro{
	background-color: var(--sec); 
}
.texticon_left{
	float: left;
	margin-right: 10px;
	height: 25px;
}
.texticon_right{
	float: right;
	margin-left: 10px;
	height: 25px;
}
.mayus{
	text-transform: uppercase;
}

/* General Botones */
.boton{
	float: left;
	height: 44px;
	padding: 0 15px;
	background-color: var(--main_negro);
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: uppercase;
	cursor: pointer;
	box-sizing: border-box;
	font-family: var(--tipo_bold);
	font-size: var(--tam_texto_2);
	color: white;
}
.boton img{
	height: 25px;
	margin-left: 15px;
}
.boton.boton_sec{
	background-color: var(--sec_oscuro);
}
.boton.boton_right{
	float: right;
}

.form_logout{
	padding: 0;
}
.form_logout img{
	position: absolute;
	right: 15px;
	pointer-events: none;
}
.form_logout input{
	width: 100%;
	height: 100%;
	font-family: var(--tipo_bold);
	font-size: var(--tam_texto_2);
	color: white;
	background-color: unset;
	padding-left: 15px;
	text-align: left;
	cursor: pointer;
}

/*Checkboxes*/

.checkbox{
	float: left;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	border: 1px solid var(--main_negro);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	cursor: pointer;
}
.checkbox_mark{
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background-color: var(--main_color);
	display: none;
}
.checkbox.activo .checkbox_mark{
	display: block;
}
/*.checkbox.sel_link{
	border: 1px solid var(--sec_oscuro);
	margin-left: 10px;
}
.checkbox.sel_link.activo .checkbox_mark{
	background-color: var(--main_negro);
}*/


/*Ticks*/

.tick{
	float: left;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	border: 1px solid var(--main_negro);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	cursor: pointer;
}
.tick_left{
	margin-right: 10px;
	margin-left: 0;
}
.tick_mark{
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background-color: var(--main_color);
	display: none;
}
.tick.activo .tick_mark{
	display: block;
}
/*.tick.sel_link,.tick.sel_usershared{
	border: 1px solid var(--sec_oscuro);
	margin-left: 10px;
}
.tick.sel_link.activo .tick_mark,.tick.sel_usershared.activo .tick_mark{
	background-color: var(--main_negro);
}*/


/* Pestanyas */

.z_pestanyas,.z_pestanyas_modal{
	width: 100%;
	float: left;
	height: 49px;
}
.pest_cont{
	float: left;
	height: 100%;
	cursor: pointer;
}
.pest_int{
	float: left;
	display: flex;
	align-items: center;
	background-color: var(--sec_oscuro);
	height: 45px;
	margin: 0 5px 0 0;
	padding: 0 20px;
	box-sizing: border-box;	
}
.pest_int h3{
	color: white;
	text-transform: uppercase;
	font-family: var(--tipo_bold);
	font-size: var(--tam_texto_2);
}
.pest_int img{
	height: 25px;
	margin-left: 15px;
}
.pest_cont.shs_active_button{
	background-color: unset;
	border-top: 1px solid var(--sec_oscuro);
	border-left: 1px solid var(--sec_oscuro);
	border-right: 1px solid var(--sec_oscuro);
	margin-right: 5px;
}
.z_pestanyas .pest_cont.shs_active_button{border-bottom: 1px solid var(--sec);}
.z_pestanyas_modal .pest_cont.shs_active_button{border-bottom: 1px solid white;}

.pest_cont.shs_active_button .pest_int{
	background-color: unset;
	padding: 0 14px 0 19px;
}
.pest_cont.shs_active_button .pest_int h3{
	margin-top: -1px;
	color: var(--main_negro);
}
.pest_icon_w{display: block;}
.pest_icon_s{display: none;}
.pest_cont.shs_active_button .pest_icon_w{display: none;}
.pest_cont.shs_active_button .pest_icon_s{display: block;}

.no_pest{
	height: 50px;
	border-bottom: 1px solid var(--sec_oscuro);
}