﻿@charset "UTF-8";
/*Generic desibled styles*/
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box; }

body {
  min-width: 320px; }

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit; }

/**
 * Basic styles for links
 */
a {
  color: #434c5f;
  text-decoration: none; }
  a:hover, a:active, a:focus {
    color: #434c5f;
    text-decoration: underline; }

/* roboto-100 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url("../../Fonts/roboto-v19-latin-100.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Thin"), local("Roboto-Thin"), url("../../Fonts/roboto-v19-latin-100.eot?#iefix") format("embedded-opentype"), url("../../Fonts/roboto-v19-latin-100.woff2") format("woff2"), url("../../Fonts/roboto-v19-latin-100.woff") format("woff"), url("../../Fonts/roboto-v19-latin-100.ttf") format("truetype"), url("../../Fonts/roboto-v19-latin-100.svg#Roboto") format("svg");
  /* Legacy iOS */ }

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url("../../Fonts/roboto-v19-latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Light"), local("Roboto-Light"), url("../../Fonts/roboto-v19-latin-300.eot?#iefix") format("embedded-opentype"), url("../../Fonts/roboto-v19-latin-300.woff2") format("woff2"), url("../../Fonts/roboto-v19-latin-300.woff") format("woff"), url("../../Fonts/roboto-v19-latin-300.ttf") format("truetype"), url("../../Fonts/roboto-v19-latin-300.svg#Roboto") format("svg");
  /* Legacy iOS */ }

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url("../../Fonts/roboto-v19-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Roboto"), local("Roboto-Regular"), url("../../Fonts/roboto-v19-latin-regular.eot?#iefix") format("embedded-opentype"), url("../../Fonts/roboto-v19-latin-regular.woff2") format("woff2"), url("../../Fonts/roboto-v19-latin-regular.woff") format("woff"), url("../../Fonts/roboto-v19-latin-regular.ttf") format("truetype"), url("../../Fonts/roboto-v19-latin-regular.svg#Roboto") format("svg");
  /* Legacy iOS */ }

/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url("../../Fonts/roboto-v19-latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../../Fonts/roboto-v19-latin-500.eot?#iefix") format("embedded-opentype"), url("../../Fonts/roboto-v19-latin-500.woff2") format("woff2"), url("../../Fonts/roboto-v19-latin-500.woff") format("woff"), url("../../Fonts/roboto-v19-latin-500.ttf") format("truetype"), url("../../Fonts/roboto-v19-latin-500.svg#Roboto") format("svg");
  /* Legacy iOS */ }

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url("../../Fonts/roboto-v19-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../../Fonts/roboto-v19-latin-700.eot?#iefix") format("embedded-opentype"), url("../../Fonts/roboto-v19-latin-700.woff2") format("woff2"), url("../../Fonts/roboto-v19-latin-700.woff") format("woff"), url("../../Fonts/roboto-v19-latin-700.ttf") format("truetype"), url("../../Fonts/roboto-v19-latin-700.svg#Roboto") format("svg");
  /* Legacy iOS */ }

/**
 * Basic typography style for copy text
 */
body {
  font-family: "Roboto", sans-serif;
  color: #434c5f; }

h4 {
  font-size: 1rem; }

h5 {
  font-size: 0.875rem; }

/* -----------------------------------------------------------------------------*/
/* This file contains CSS helper classes.*/
/* -----------------------------------------------------------------------------*/
/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table; }

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container-small {
  max-width: 1080px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 15px;
  /* 3 */
  padding-right: 15px;
  /* 3 */
  width: 100%;
  /* 1 */ }

.container {
  max-width: 1180px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 15px;
  /* 3 */
  padding-right: 15px;
  /* 3 */
  width: 100%;
  /* 1 */ }

.container-large {
  max-width: 1280px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 15px;
  /* 3 */
  padding-right: 15px;
  /* 3 */
  width: 100%;
  /* 1 */ }

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap; }

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.padding-0 {
  padding: 0 !important; }

.margin-0 {
  margin: 0 !important; }

@media (min-width: 768px) {
  .lg-w100 {
    width: 100%; }
  .lg-padding-y1 {
    padding: 0.4375em 0em 0.4375em 0em; }
  .lg-padding-0 {
    padding: 0; }
  .lg-margin-y1 {
    margin: 0.4375em 0em 0.4375em 0em; }
  .lg-margin-x1 {
    margin: 0em 0.4375em 0em 0.4375em; }
  .lg-margin-0 {
    margin: 0; } }

@media (max-width: 767px) {
  .sm-w100 {
    width: 100%; }
  .sm-padding-y1 {
    padding: 0.4375em 0em 0.4375em 0em; }
  .sm-padding-x1 {
    padding: 0em 0.4375em 0em 0.4375em; }
  .sm-padding-0 {
    padding: 0; }
  .sm-margin-y1 {
    margin: 0.4375em 0em 0.4375em 0em; }
  .sm-margin-x1 {
    margin: 0em 0.4375em 0em 0.4375em; }
  .sm-margin-0 {
    margin: 0; } }

.w100 {
  width: 100%; }

.height-100vh {
  height: 100vh; }

/*bounce: revisar el largo del helper para rediseñar y pasar a mixin */
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite; }

/**
 * TEXT HELPERS
 */
.white-color {
  color: white; }

.chalk-color {
  color: #ececec; }

.semilight-gray-color {
  color: #8e8e93; }

.gray-color {
  color: #586377; }

.default-color {
  color: #434c5f; }

.dark-gray-color {
  color: #262626; }

.black-color {
  color: black; }

.brand-color {
  color: #c62827; }

.white-bg {
  background: white; }

.chalk-bg {
  background: #ececec; }

.gray-bg {
  background: #ececec; }

.default-bg {
  background: #434c5f; }

.dark-gray-bg {
  background: #262626; }

.black-bg {
  background: black; }

.brand-bg {
  background: #c62827; }

.light-gray-bg {
  background: #f6f6f6; }

.lh10 {
  line-height: 0.625em !important; }

.lh11 {
  line-height: 0.6875em !important; }

.lh12 {
  line-height: 0.75em !important; }

.lh13 {
  line-height: 0.8125em !important; }

.lh14 {
  line-height: 0.875em !important; }

.lh15 {
  line-height: 0.9375em !important; }

.lh16 {
  line-height: 1em !important; }

.lh17 {
  line-height: 1.0625em !important; }

.lh19 {
  line-height: 1.1875em !important; }

.lh20 {
  line-height: 1.25em !important; }

.lh24 {
  line-height: 1.5em !important; }

.lh27 {
  line-height: 1.6875em !important; }

.lh50 {
  line-height: 3.125em !important; }

.t10 {
  font-size: 0.625em !important; }

.t11 {
  font-size: 0.6875em !important; }

.t12 {
  font-size: 0.75em !important; }

.t13 {
  font-size: 0.8125em !important; }

.t14 {
  font-size: 0.875em !important; }

.t15 {
  font-size: 0.9375em !important; }

.t16 {
  font-size: 1em !important; }

.t17 {
  font-size: 1.0625em !important; }

.t19 {
  font-size: 1.1875em !important; }

.t20 {
  font-size: 1.25em !important; }

.t24 {
  font-size: 1.5em !important; }

.t27 {
  font-size: 1.6875em !important; }

.t50 {
  font-size: 3.125em !important; }

.blockx2 {
  background-color: #f2f2f2;
  margin: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex: 0 0 47.5%;
  max-width: 47.5%; }

.blockx3 {
  background-color: #f2f2f2;
  margin: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  flex: 0 0 32%;
  max-width: 32%; }

.user-avatar {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyAgZmlsbD0iI2E2YTZhNiIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDU1IDU1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1NSA1NTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZD0iTTU1LDI3LjVDNTUsMTIuMzM3LDQyLjY2MywwLDI3LjUsMFMwLDEyLjMzNywwLDI3LjVjMCw4LjAwOSwzLjQ0NCwxNS4yMjgsOC45MjYsMjAuMjU4bC0wLjAyNiwwLjAyM2wwLjg5MiwwLjc1Mg0KCWMwLjA1OCwwLjA0OSwwLjEyMSwwLjA4OSwwLjE3OSwwLjEzN2MwLjQ3NCwwLjM5MywwLjk2NSwwLjc2NiwxLjQ2NSwxLjEyN2MwLjE2MiwwLjExNywwLjMyNCwwLjIzNCwwLjQ4OSwwLjM0OA0KCWMwLjUzNCwwLjM2OCwxLjA4MiwwLjcxNywxLjY0MiwxLjA0OGMwLjEyMiwwLjA3MiwwLjI0NSwwLjE0MiwwLjM2OCwwLjIxMmMwLjYxMywwLjM0OSwxLjIzOSwwLjY3OCwxLjg4LDAuOTgNCgljMC4wNDcsMC4wMjIsMC4wOTUsMC4wNDIsMC4xNDIsMC4wNjRjMi4wODksMC45NzEsNC4zMTksMS42ODQsNi42NTEsMi4xMDVjMC4wNjEsMC4wMTEsMC4xMjIsMC4wMjIsMC4xODQsMC4wMzMNCgljMC43MjQsMC4xMjUsMS40NTYsMC4yMjUsMi4xOTcsMC4yOTJjMC4wOSwwLjAwOCwwLjE4LDAuMDEzLDAuMjcxLDAuMDIxQzI1Ljk5OCw1NC45NjEsMjYuNzQ0LDU1LDI3LjUsNTUNCgljMC43NDksMCwxLjQ4OC0wLjAzOSwyLjIyMi0wLjA5OGMwLjA5My0wLjAwOCwwLjE4Ni0wLjAxMywwLjI3OS0wLjAyMWMwLjczNS0wLjA2NywxLjQ2MS0wLjE2NCwyLjE3OC0wLjI4Nw0KCWMwLjA2Mi0wLjAxMSwwLjEyNS0wLjAyMiwwLjE4Ny0wLjAzNGMyLjI5Ny0wLjQxMiw0LjQ5NS0xLjEwOSw2LjU1Ny0yLjA1NWMwLjA3Ni0wLjAzNSwwLjE1My0wLjA2OCwwLjIyOS0wLjEwNA0KCWMwLjYxNy0wLjI5LDEuMjItMC42MDMsMS44MTEtMC45MzZjMC4xNDctMC4wODMsMC4yOTMtMC4xNjcsMC40MzktMC4yNTNjMC41MzgtMC4zMTcsMS4wNjctMC42NDgsMS41ODEtMQ0KCWMwLjE4NS0wLjEyNiwwLjM2Ni0wLjI1OSwwLjU0OS0wLjM5MWMwLjQzOS0wLjMxNiwwLjg3LTAuNjQyLDEuMjg5LTAuOTgzYzAuMDkzLTAuMDc1LDAuMTkzLTAuMTQsMC4yODQtMC4yMTdsMC45MTUtMC43NjQNCglsLTAuMDI3LTAuMDIzQzUxLjUyMyw0Mi44MDIsNTUsMzUuNTUsNTUsMjcuNXogTTIsMjcuNUMyLDEzLjQzOSwxMy40MzksMiwyNy41LDJTNTMsMTMuNDM5LDUzLDI3LjUNCgljMCw3LjU3Ny0zLjMyNSwxNC4zODktOC41ODksMTkuMDYzYy0wLjI5NC0wLjIwMy0wLjU5LTAuMzg1LTAuODkzLTAuNTM3bC04LjQ2Ny00LjIzM2MtMC43Ni0wLjM4LTEuMjMyLTEuMTQ0LTEuMjMyLTEuOTkzdi0yLjk1Nw0KCWMwLjE5Ni0wLjI0MiwwLjQwMy0wLjUxNiwwLjYxNy0wLjgxN2MxLjA5Ni0xLjU0OCwxLjk3NS0zLjI3LDIuNjE2LTUuMTIzYzEuMjY3LTAuNjAyLDIuMDg1LTEuODY0LDIuMDg1LTMuMjg5di0zLjU0NQ0KCWMwLTAuODY3LTAuMzE4LTEuNzA4LTAuODg3LTIuMzY5di00LjY2N2MwLjA1Mi0wLjUxOSwwLjIzNi0zLjQ0OC0xLjg4My01Ljg2NEMzNC41MjQsOS4wNjUsMzEuNTQxLDgsMjcuNSw4DQoJcy03LjAyNCwxLjA2NS04Ljg2NywzLjE2OGMtMi4xMTksMi40MTYtMS45MzUsNS4zNDUtMS44ODMsNS44NjR2NC42NjdjLTAuNTY4LDAuNjYxLTAuODg3LDEuNTAyLTAuODg3LDIuMzY5djMuNTQ1DQoJYzAsMS4xMDEsMC40OTQsMi4xMjgsMS4zNCwyLjgyMWMwLjgxLDMuMTczLDIuNDc3LDUuNTc1LDMuMDkzLDYuMzg5djIuODk0YzAsMC44MTYtMC40NDUsMS41NjYtMS4xNjIsMS45NThsLTcuOTA3LDQuMzEzDQoJYy0wLjI1MiwwLjEzNy0wLjUwMiwwLjI5Ny0wLjc1MiwwLjQ3NkM1LjI3Niw0MS43OTIsMiwzNS4wMjIsMiwyNy41eiBNNDIuNDU5LDQ4LjEzMmMtMC4zNSwwLjI1NC0wLjcwNiwwLjUtMS4wNjcsMC43MzUNCgljLTAuMTY2LDAuMTA4LTAuMzMxLDAuMjE2LTAuNSwwLjMyMWMtMC40NzIsMC4yOTItMC45NTIsMC41Ny0xLjQ0MiwwLjgzYy0wLjEwOCwwLjA1Ny0wLjIxNywwLjExMS0wLjMyNiwwLjE2Nw0KCWMtMS4xMjYsMC41NzctMi4yOTEsMS4wNzMtMy40ODgsMS40NzZjLTAuMDQyLDAuMDE0LTAuMDg0LDAuMDI5LTAuMTI3LDAuMDQzYy0wLjYyNywwLjIwOC0xLjI2MiwwLjM5My0xLjkwNCwwLjU1Mg0KCWMtMC4wMDIsMC0wLjAwNCwwLjAwMS0wLjAwNiwwLjAwMWMtMC42NDgsMC4xNi0xLjMwNCwwLjI5My0xLjk2NCwwLjQwMmMtMC4wMTgsMC4wMDMtMC4wMzYsMC4wMDctMC4wNTQsMC4wMQ0KCWMtMC42MjEsMC4xMDEtMS4yNDcsMC4xNzQtMS44NzUsMC4yMjljLTAuMTExLDAuMDEtMC4yMjIsMC4wMTctMC4zMzQsMC4wMjVDMjguNzUxLDUyLjk3LDI4LjEyNyw1MywyNy41LDUzDQoJYy0wLjYzNCwwLTEuMjY2LTAuMDMxLTEuODk1LTAuMDc4Yy0wLjEwOS0wLjAwOC0wLjIxOC0wLjAxNS0wLjMyNi0wLjAyNWMtMC42MzQtMC4wNTYtMS4yNjUtMC4xMzEtMS44OS0wLjIzMw0KCWMtMC4wMjgtMC4wMDUtMC4wNTYtMC4wMS0wLjA4NC0wLjAxNWMtMS4zMjItMC4yMjEtMi42MjMtMC41NDYtMy44OS0wLjk3MWMtMC4wMzktMC4wMTMtMC4wNzktMC4wMjctMC4xMTgtMC4wNA0KCWMtMC42MjktMC4yMTQtMS4yNTEtMC40NTEtMS44NjItMC43MTNjLTAuMDA0LTAuMDAyLTAuMDA5LTAuMDA0LTAuMDEzLTAuMDA2Yy0wLjU3OC0wLjI0OS0xLjE0NS0wLjUyNS0xLjcwNS0wLjgxNg0KCWMtMC4wNzMtMC4wMzgtMC4xNDctMC4wNzQtMC4yMTktMC4xMTNjLTAuNTExLTAuMjczLTEuMDExLTAuNTY4LTEuNTA0LTAuODc2Yy0wLjE0Ni0wLjA5Mi0wLjI5MS0wLjE4NS0wLjQzNS0wLjI3OQ0KCWMtMC40NTQtMC4yOTctMC45MDItMC42MDYtMS4zMzgtMC45MzNjLTAuMDQ1LTAuMDM0LTAuMDg4LTAuMDctMC4xMzMtMC4xMDRjMC4wMzItMC4wMTgsMC4wNjQtMC4wMzYsMC4wOTYtMC4wNTRsNy45MDctNC4zMTMNCgljMS4zNi0wLjc0MiwyLjIwNS0yLjE2NSwyLjIwNS0zLjcxNGwtMC4wMDEtMy42MDJsLTAuMjMtMC4yNzhjLTAuMDIyLTAuMDI1LTIuMTg0LTIuNjU1LTMuMDAxLTYuMjE2bC0wLjA5MS0wLjM5NmwtMC4zNDEtMC4yMjENCgljLTAuNDgxLTAuMzExLTAuNzY5LTAuODMxLTAuNzY5LTEuMzkydi0zLjU0NWMwLTAuNDY1LDAuMTk3LTAuODk4LDAuNTU3LTEuMjIzbDAuMzMtMC4yOTh2LTUuNTdsLTAuMDA5LTAuMTMxDQoJYy0wLjAwMy0wLjAyNC0wLjI5OC0yLjQyOSwxLjM5Ni00LjM2QzIxLjU4MywxMC44MzcsMjQuMDYxLDEwLDI3LjUsMTBjMy40MjYsMCw1Ljg5NiwwLjgzLDcuMzQ2LDIuNDY2DQoJYzEuNjkyLDEuOTExLDEuNDE1LDQuMzYxLDEuNDEzLDQuMzgxbC0wLjAwOSw1LjcwMWwwLjMzLDAuMjk4YzAuMzU5LDAuMzI0LDAuNTU3LDAuNzU4LDAuNTU3LDEuMjIzdjMuNTQ1DQoJYzAsMC43MTMtMC40ODUsMS4zNi0xLjE4MSwxLjU3NWwtMC40OTcsMC4xNTNsLTAuMTYsMC40OTVjLTAuNTksMS44MzMtMS40MywzLjUyNi0yLjQ5Niw1LjAzMmMtMC4yNjIsMC4zNy0wLjUxNywwLjY5OC0wLjczNiwwLjk0OQ0KCWwtMC4yNDgsMC4yODNWMzkuOGMwLDEuNjEyLDAuODk2LDMuMDYyLDIuMzM4LDMuNzgybDguNDY3LDQuMjMzYzAuMDU0LDAuMDI3LDAuMTA3LDAuMDU1LDAuMTYsMC4wODMNCglDNDIuNjc3LDQ3Ljk3OSw0Mi41NjcsNDguMDU0LDQyLjQ1OSw0OC4xMzJ6Ii8+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==);
  background-repeat: no-repeat;
  background-position: center; }

.ckeck-icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5IiBoZWlnaHQ9IjciIHZpZXdCb3g9IjAgMCA5IDciPgogICAgPHBhdGggZmlsbD0iIzNFQ0NDOSIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNMi44OSA2LjM5YS40ODYuNDg2IDAgMCAxLS4zNS4xNTcuNDg2LjQ4NiAwIDAgMS0uMzUzLS4xNTZMMCA0LjIwMy43MDMgMy41IDIuNTQgNS4zMzYgNy40MjIuNDE0bC42NjQuNzAzTDIuODkgNi4zOTF6Ii8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 15px !important; }

/* -----------------------------------------------------------------------------*/
/* This file contains all styles related to the button component.*/
/* -----------------------------------------------------------------------------*/
.btn,
a.btn {
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-decoration: none;
  display: inline-block;
  background-color: transparent;
  border: 1px solid transparent;
  font-size: 1rem;
  padding: 0.625rem .75em;
  transition: all 0.3s ease-in-out 0.6s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /*button sizes*/ }
  .btn.radius-xs,
  a.btn.radius-xs {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px; }
  .btn.radius-full,
  a.btn.radius-full {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px; }
  .btn.disabled,
  .btn fieldset:disabled a.btn,
  a.btn.disabled,
  a.btn fieldset:disabled a.btn {
    cursor: not-allowed;
    opacity: 0.7; }
  .btn:not(:disabled):not(.disabled),
  a.btn:not(:disabled):not(.disabled) {
    cursor: pointer; }
  .btn:focus,
  a.btn:focus {
    outline: none; }
  .btn.transparent,
  a.btn.transparent {
    font-weight: 300;
    color: white;
    text-decoration: none; }
    .btn.transparent.focus, .btn.transparent:focus, .btn.transparent:hover,
    a.btn.transparent.focus,
    a.btn.transparent:focus,
    a.btn.transparent:hover {
      background: #c62827;
      color: white; }
  .btn.brand-color, .btn.info,
  a.btn.info, .btn.warning,
  a.btn.warning,
  a.btn.brand-color,
  a.btn.info,
  a.btn.warning {
    color: white;
    background: #c62827;
    border-color: #c62827; }
    .btn.brand-color.focus, .focus.btn.info, .focus.btn.warning, .btn.brand-color:focus, .btn.info:focus, .btn.warning:focus, .btn.brand-color:hover, .btn.info:hover, .btn.warning:hover,
    a.btn.brand-color.focus,
    a.focus.btn.info,
    a.focus.btn.warning,
    a.btn.brand-color:focus,
    a.btn.info:focus,
    a.btn.warning:focus,
    a.btn.brand-color:hover,
    a.btn.info:hover,
    a.btn.warning:hover {
      color: white;
      background: #9b1f1f; }
  .btn.success,
  a.btn.success {
    background: #2ecede;
    color: white; }
    .btn.success.focus, .btn.success:focus, .btn.success:hover,
    a.btn.success.focus,
    a.btn.success:focus,
    a.btn.success:hover {
      background: #1eadbb;
      color: white !important; }
  .btn.info,
  a.btn.info {
    background: #8e8e93; }
    .btn.info.focus, .btn.info:focus, .btn.info:hover,
    a.btn.info.focus,
    a.btn.info:focus,
    a.btn.info:hover {
      background: #74747a; }
  .btn.warning,
  a.btn.warning {
    background: #d82226; }
    .btn.warning.focus, .btn.warning:focus, .btn.warning:hover,
    a.btn.warning.focus,
    a.btn.warning:focus,
    a.btn.warning:hover {
      background: #ac1b1e; }
  .btn.gray-outline, .btn.brand-outline,
  a.btn.brand-outline,
  a.btn.gray-outline,
  a.btn.brand-outline {
    font-weight: 400;
    border: 1px solid #545454;
    letter-spacing: 0.09375em;
    color: #545454;
    font-weight: 700;
    background: transparent;
    text-decoration: none; }
    .btn.gray-outline.tobrand.focus, .tobrand.focus.btn.brand-outline, .btn.gray-outline.tobrand:focus, .tobrand.btn.brand-outline:focus, .btn.gray-outline.tobrand:hover, .tobrand.btn.brand-outline:hover,
    a.btn.gray-outline.tobrand.focus,
    a.tobrand.focus.btn.brand-outline,
    a.btn.gray-outline.tobrand:focus,
    a.tobrand.btn.brand-outline:focus,
    a.btn.gray-outline.tobrand:hover,
    a.tobrand.btn.brand-outline:hover {
      background: #c62827;
      border: 1px solid #c62827;
      color: white; }
    @media (max-width: 767px) {
      .btn.gray-outline.tobrand, .tobrand.btn.brand-outline,
      a.btn.gray-outline.tobrand,
      a.tobrand.btn.brand-outline {
        font-weight: 400; } }
    .btn.gray-outline.togray.focus, .togray.focus.btn.brand-outline, .btn.gray-outline.togray:focus, .togray.btn.brand-outline:focus, .btn.gray-outline.togray:hover, .togray.btn.brand-outline:hover,
    a.btn.gray-outline.togray.focus,
    a.togray.focus.btn.brand-outline,
    a.btn.gray-outline.togray:focus,
    a.togray.btn.brand-outline:focus,
    a.btn.gray-outline.togray:hover,
    a.togray.btn.brand-outline:hover {
      background: #545454;
      border: 1px solid #545454;
      color: white; }
    @media (max-width: 767px) {
      .btn.gray-outline.togray, .togray.btn.brand-outline,
      a.btn.gray-outline.togray,
      a.togray.btn.brand-outline {
        font-weight: 400; } }
    .btn.gray-outline.togreen, .togreen.btn.brand-outline,
    a.btn.gray-outline.togreen,
    a.togreen.btn.brand-outline {
      font-weight: 400;
      border: 1px solid #c6ccd7;
      letter-spacing: 0.09375em;
      color: black;
      font-weight: 700;
      background: #2ecede;
      text-decoration: none; }
  .btn.brand-outline,
  a.btn.brand-outline {
    border: 1px solid #c62827;
    color: #c62827; }
  .btn.full-light-gray,
  a.btn.full-light-gray {
    color: #434c5f;
    background-color: white;
    font-weight: 500;
    text-decoration: none; }
    .btn.full-light-gray.focus, .btn.full-light-gray:focus, .btn.full-light-gray:hover,
    a.btn.full-light-gray.focus,
    a.btn.full-light-gray:focus,
    a.btn.full-light-gray:hover {
      color: #ececec;
      background-color: #c62827; }
  .btn.full-white,
  a.btn.full-white {
    color: #434c5f;
    background-color: white;
    font-weight: 500; }
    .btn.full-white.focus, .btn.full-white:focus, .btn.full-white:hover,
    a.btn.full-white.focus,
    a.btn.full-white:focus,
    a.btn.full-white:hover {
      color: #ececec;
      background-color: #c62827; }
  .btn.blue,
  a.btn.blue {
    color: white;
    background-color: #005fb9;
    font-weight: 500; }
    .btn.blue.focus, .btn.blue:focus, .btn.blue:hover,
    a.btn.blue.focus,
    a.btn.blue:focus,
    a.btn.blue:hover {
      color: white;
      background: #005aaf; }
  .btn.full-gray,
  a.btn.full-gray {
    color: white;
    background-color: #8e8e93;
    font-weight: 500;
    text-decoration: none; }
    .btn.full-gray.focus, .btn.full-gray:focus, .btn.full-gray:hover,
    a.btn.full-gray.focus,
    a.btn.full-gray:focus,
    a.btn.full-gray:hover {
      background-color: #74747a; }
  .btn.btn-access,
  a.btn.btn-access {
    border-radius: 10px;
    padding: .85rem;
    color: white;
    background: #b11b22;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.18); }
    .btn.btn-access:hover, .btn.btn-access:active, .btn.btn-access:focus,
    a.btn.btn-access:hover,
    a.btn.btn-access:active,
    a.btn.btn-access:focus {
      color: white;
      text-decoration: none;
      background: #a81a20; }
  .btn.xs-btn,
  a.btn.xs-btn {
    font-size: 0.625em;
    padding: 0.5em 2.5em 0.55em 2.5em;
    letter-spacing: 0.09375em; }
    .btn.xs-btn.radius1,
    a.btn.xs-btn.radius1 {
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -o-border-radius: 10px; }
    @media (max-width: 767px) {
      .btn.xs-btn,
      a.btn.xs-btn {
        font-size: 0.8125em; } }
  .btn.sm-btn,
  a.btn.sm-btn {
    font-size: 0.75em;
    padding: 0.5em 2.5em 0.55em 2.5em; }
    .btn.sm-btn.radius1,
    a.btn.sm-btn.radius1 {
      border-radius: 10px;
      -webkit-border-radius: 10px;
      -o-border-radius: 10px; }
    @media (max-width: 767px) {
      .btn.sm-btn,
      a.btn.sm-btn {
        font-size: 0.8125em; } }
  .btn.md-btn,
  a.btn.md-btn {
    font-size: 1.25em;
    font-weight: 300;
    padding: 1em 2em 1em 2em;
    letter-spacing: 0.09375em; }
    .btn.md-btn.radius1,
    a.btn.md-btn.radius1 {
      border-radius: 15px;
      -webkit-border-radius: 15px;
      -o-border-radius: 15px; }
  .btn.lg-btn,
  a.btn.lg-btn {
    font-size: 1.75em;
    font-weight: 400;
    padding: 1.3em 4em 1.3em 4em;
    letter-spacing: 0.03125em; }
    .btn.lg-btn.radius1,
    a.btn.lg-btn.radius1 {
      border-radius: 20px;
      -webkit-border-radius: 20px;
      -o-border-radius: 20px; }
  .btn.btn-block,
  a.btn.btn-block {
    display: block;
    width: 100%; }
  .btn.radius2,
  a.btn.radius2 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px; }
  .btn.no-style,
  a.btn.no-style {
    text-decoration: none;
    padding: 0; }
    .btn.no-style.focus, .btn.no-style:focus, .btn.no-style:hover,
    a.btn.no-style.focus,
    a.btn.no-style:focus,
    a.btn.no-style:hover {
      background-color: inherit;
      color: inherit; }

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer; }

input[type=submit]:disabled {
  cursor: not-allowed;
  opacity: .4; }

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
  font-family: "Roboto",Arial, Helvetica, sans-serif; }

.error {
    font-size: 1rem;
    height: 100vh;
}
  @media (min-width: 1023px) {
    .error {
      margin-top: 0;
      display: flex;
      flex-direction: column;
      justify-content: center; } }
.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.error-illustration-container {
    display: flex;
    align-items: center;
    justify-content: end;
}
@media (max-width:991.98px) {

    .error-illustration-container {
        justify-content: center;
    }
}
  .error-illustration {
    display: block;
    width: 65%; }
    @media (max-width: 575px) {
      .error-illustration {
        width: 90%; } }
    @media (min-width: 1023px) {
        .error-illustration {
            width: 230px;
            margin-bottom: initial;
        } }
.error-title {
    margin-bottom: 0;
    color: #262626;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2125;
    font-size: 48px;
    font-family: Work Sans;
    font-weight: 600;
    margin-top: 30px;
}
@media (max-width: 575px) {
    .error-title {
        font-size: 32px;
    }
}
.error-code {
    margin-bottom: 2rem;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    right: 30px;
    padding: 0.2rem 1rem;
    border: 1px solid #B5B5B5;
    font-size: 12px;
    font-family: Roboto;
    color: #B5B5B5;
}
@media (max-width: 991.98px) {
    .error-code {
        margin-top: 20px;
        margin-left: 1rem;
        margin-bottom: 20px;
        position: inherit;
    }
}
.error-text {
    margin-bottom: 1rem;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #262626;
    font-size: 1rem;
    margin-top: 0.85rem;
    margin-bottom: 1rem;
}
.error-btn-container {
    display: flex;
    justify-content: flex-start;
}
.error-btn {
    border-radius: 28px;
    background: #EE0029;
    font-size: 14px;
    padding: 0 30px;
    line-height: 33px;
    border: 0 none;
    color: #fff;
    width: 100%;
    cursor: pointer;
    text-align: center;
    margin: 5px;
}
    @media (min-width: 575px) {
      .error-btn {
        width: auto;
        margin-right: 2rem; } }
    @media (max-width: 397.98px) {
        .error-btn {
            padding: 0 20px;
        }
    }

.error-btn:hover {
    text-decoration: none;
    color: #ffffff;
}