@-webkit-viewport{width:device-width}
@-moz-viewport{width:device-width}
/* @-ms-viewport{width:device-width} */
@-o-viewport{width:device-width}
@viewport{width:device-width}

@font-face {
	font-family: 'Celine Peach Script';
	src: url('./fonts/celine-peach-script.otf') format('opentype'),
		url('./fonts/celine-peach-script.ttf') format('truetype');
}

* {
	/*Brand Colors */
	--navy-blue: rgba(30, 47, 82, 1);
	--dark-grey: rgba(69, 69, 69, 1);
	--yellow: rgba(235, 201, 130, 1);
    --light-blue: rgba(197, 233, 247, 1);
    /*State Colors */
    --error: rgba(207, 50, 50, 1);
    --warning: rgba(255, 204, 0, 1);
    --info: rgba(69, 69, 69, 1);
    --success: rgba(6, 194, 112, 1);
    /* Dark colors */
    --grey: rgba(151, 151, 151, 1);
    --rose-gold: rgba(223, 175, 144, 1);
    --dark-blue: rgba(0, 178, 220, 1);
    /* Light colors */
    --soft-white: rgba(199, 201, 217, 1);
	--off-white: rgba(241, 242, 242, 1);
	--darker-white: rgba(243, 243, 243, 1);
    --white: rgba(255,255,255,1);
    --pink: rgba(199, 201, 217, 1);
    --orange: rgba(199, 201, 217, 1);
    --secondary-pink: rgba(244, 190, 168,1);
	--red: rgba(207, 50, 50, 1);
	--cream-white: rgba(250, 249, 246, 1);
	--light-blue-bg: rgba(197, 233, 247, .2);
	/*Fonts */
    --proxima-font: proxima-nova, sans-serif;
    --celine-font: 'Celine Peach Script', proxima-nova, sans-serif;
}

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, font, 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,
main, article, aside, figure, footer, header, nav, section, details, summary, figcaption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
  -webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}
sup { font-size: .6em; line-height: 1em; vertical-align: super; }
sub { font-size: .6em; line-height: 1em; vertical-align: sub; }

main, article, aside, figure, footer, header, nav, section, details, summary, figcaption {
  display: block;
  -webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

textarea,
select,
input,
option,
button {
	background: none;
	font-family: proxima-nova, Arial, helvetica sans-serif;
	font-weight: 400;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border: none;
	padding: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active { -webkit-transition: "color 99999999999999s ease-out, background-color 99999999999999s ease-out"; -webkit-transition-delay: 9999999999999s; }
select::-ms-expand,
::-ms-clear { display: none; } /* X en campos */

html { /* Se resetea el texto para que este en 10px */
	color: #343434;
  font: 62.5% proxima-nova, Arial, helvetica sans-serif;
	line-height: 1;
	margin: 0px;
	padding: 0px;
	-webkit-font-smoothing: antialiased;
	/*overflow-wrap: break-word;  Probar
  word-wrap: break-word;
  hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;*/
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
*::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* remember to define focus styles! */
:focus { outline: 0; border: 0px none; }

/* remember to highlight inserts somehow! */
ins { text-decoration: none; }
del { text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; }
* { -webkit-tap-highlight-color: transparent; }
