/* basics */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; -ms-box-sizing: border-box; outline: none; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { font-family: sans-serif; line-height: 100%; margin: 0; padding: 0; }
a { color: #3C1F35; text-decoration: none; transition: 0.3s; }
a:focus, a:hover, a:active { outline: 0; }
abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: 700; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
mark { background: #ff0; color: #000; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ''; content: none; }
small { font-size: 75%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
ul, ol { list-style: none; display: block; }
ul.list li { display: list-item; list-style: inside; list-style-type: disc; }
ol.list li { display: list-item; list-style: inside; list-style-type: decimal; }
dd { margin: 0 0 0 40px; }
img { display: block; border: 0; -ms-interpolation-mode: bicubic; max-width: 100%; max-height: 100%; }
svg:not(:root) { overflow: hidden; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
.clr { clear: both; display: block; }
.cf:after, .wrap:after, .clear { clear: both; content: ''; display: block; width: 100%; }

/* FORM */
button, input, select, textarea { border-radius: 0px; -webkit-border-radius: 0px; border: 0px; background: none; font-size: 100%; color: #000; display: block; padding: 0 10px;
	text-transform: none; width: 100%; }
select { box-shadow: none; /*-webkit-appearance:none; -moz-appearance:none; -ms-appearance: none; appearance: none;*/ }
select::-ms-expand { display: none; }
input[type=button], input[type=submit], button { cursor: pointer; -webkit-appearance:none; -moz-appearance:none; -ms-appearance: none; appearance: none; transition: 0.3s; }
textarea { resize: none; padding: 10px; overflow: auto; }
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: 40px; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
/**/
input[type=checkbox], input[type=radio] { width: auto; display:none; }
input[type="checkbox"] + label span { display: inline-block; width: 20px; height: 20px; margin-right: 4px; position: relative; top: -1px; 
	background: #fff; border: 1px solid #6D6E71; vertical-align: middle; border-radius: 5px; text-align: center; cursor: pointer; 
	font-size: 14px; font-weight: bold; line-height: 20px; box-shadow: inset 0 2px 3px rgba(0,0,0,0.2); }
input[type="checkbox"]:checked + label span:before { content: "\2713"; }
input[type="radio"] + label span {display:inline-block; width:16px; height:16px; margin-left: 4px; position: relative; top: -1px; background: #fff; border: 1px solid #a0a0a0; vertical-align: middle; border-radius: 50%; -webkit-border-radius: 50%; cursor: pointer; }
input[type="radio"]:checked + label span:before { content: "\2022"; }
/**/
::-webkit-input-placeholder { color: #6D6D6D; }
:-moz-placeholder { color: #6D6D6D; opacity: 1; }
::-moz-placeholder { color: #6D6D6D; opacity: 1;}
:-ms-input-placeholder { color: #6D6D6D; }
/**/
::-moz-selection { color: #2c5675; background: #fff; }
::selection { color: #2c5675; background: #fff; }
/**/
.tbl { border-collapse: collapse; display: table; width: 100%; }
.tblrow { display: table-row; }
.cell { display: table-cell; vertical-align: middle; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
p { line-height: 1.4; margin-bottom: 20px; } 
p:last-child { margin-bottom: 0px; }

/* DEFAULT */
body { background: #fff; color: #000; font-size: 16px; font-family: sans-serif; font-weight: 400; }
button, input, select, textarea { font-weight: 400; font-family: sans-serif; color: #171A36; }
#wrapper { width: 100%; max-width: 100%; margin: 0 auto; position: relative; overflow: hidden; }
.wrap { width: 100%; margin: 0 auto; position: relative; padding: 0 20px; }
.flex { display: flex; flex-wrap: wrap; justify-content: space-between; }
.flexv-center { align-items: center; }
.flexh-center { justify-content: center; }
.flex-reverse { flex-direction: row-reverse; }
.flex-top { align-items: flex-start; }
.flex-bottom { align-items: flex-end; }
.flex-left { justify-content: flex-start; }
.flex-right { justify-content: flex-end; }