
/** RESET **/

html, body, body * {
	background: transparent;
	background-repeat: no-repeat;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #656565;
	cursor: default;
	font-family: 'Roboto', "Segoe UI", sans-serif;
    font-size: 10px;
	padding: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	outline: none;
	text-decoration: none;
    text-align: left;
	z-index: 0;
}

body, body * {
	color: inherit;
	cursor: inherit;
	font-family: inherit;
    font-size: inherit;
	font-style: inherit;
    font-weight: inherit;
	line-height: inherit;
	text-align: inherit;
	-khtml-user-select: inherit;
	-moz-user-select: inherit;
	-ms-user-select: inherit;
	-o-user-select: inherit;
	-webkit-user-select: inherit;
	-webkit-touch-callout: inherit;
	-webkit-tap-highlight-color: inherit;
	user-select: inherit;
	vertical-align: baseline;
}

header, main, footer {
    font-size: 1.5rem;
}

span, strong {
	display: inline;
}

b {
	font-weight: bold;
}

strong {
	font-weight: bolder;
}

script, style, head, head * {
	display: none;
}

body {
    line-height: 1;
    min-height: 100vh;
	overflow-x: hidden;
    scroll-behavior: smooth;
}

ol, ul {
	list-style: none;
}

img {
	display: block;
    max-height: 100%;
	max-width: 100%;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th {
	font-weight: bold;
}

th, td {
	white-space: nowrap;
}

a, button, input {
	display: block;
	cursor: pointer;
}

/** GENERAL **/

body {
	background-color: #F9F9F9;
    background-image: url(../../svg/fondo_ondulado.svg);
    background-position-x: center;
	background-repeat: repeat;
    background-size: 10rem;
}

.max_width {
    margin: auto;
    max-width: 120rem;
    height: 100%;
    width: 100%;
}

/** PLACEHOLDER **/

::placeholder {
	color: #A9A9A9;
}

::-webkit-input-placeholder {
	color: #A9A9A9;
}

::-moz-placeholder {
	color: #A9A9A9;
}

:-ms-input-placeholder {
	color: #A9A9A9;
}

:-moz-placeholder {
	color: #A9A9A9;
}

/** SELECTION **/

::selection {
	background: #F02004;
	color: #FFFFFF;
}

::-moz-selection {
	background: #F02004;
	color: #FFFFFF;
}

.selectable {
	-khtml-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	-o-user-select: text;
	-webkit-user-select: text;
	-webkit-touch-callout: default;
	user-select: text;
}

.unselectable {
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: #00000000;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

.hightlight {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: #00000000;
	-webkit-tap-highlight-color: transparent;
}

/** SEARCH **/

::-webkit-search-cancel-button, ::-webkit-clear-button {
	background-color: #C9C9C9;
	background-image: url("../../svg/cancel.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
    border-radius:1rem;
	cursor: pointer;
	position:relative;
    -webkit-appearance: none;
	-webkit-transition: background 0.25s ease;
	-moz-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
    transition: background 0.25s ease;
	height: 2rem;
    width: 2rem;
}

::-webkit-search-cancel-button:hover, ::-webkit-clear-button:hover {
	background-color: #F02004;
}

/** DATE **/

::-webkit-calendar-picker-indicator {
	background-color: #C9C9C9;
	background-image: url("../../svg/calendar.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	border-radius:1.1rem;
	cursor: pointer;
	margin-left: 0.5rem;
	padding: 0;
    -webkit-appearance: none;
	-webkit-transition: background 0.25s ease;
	-moz-transition: background 0.25s ease;
	-o-transition: background 0.25s ease;
    transition: background 0.25s ease;
	height: 2.2rem;
    width: 2.2rem;
}

::-webkit-calendar-picker-indicator:hover {
	background-color: #F02004;
}

input[type="date"] {
	padding-right: 1.2rem !important;
}