html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Titillium Web', sans-serif;
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  outline: 0;
}

h1, h2, h3, h4, h5, h6, p, .p_l, .p_m, .p_s {
  font-family: 'Titillium Web', sans-serif;
}

h1 {
  font-size: 32px;
  font-weight: normal;
  margin: 20px 0;
}

h1 strong {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  margin: 20px 0;
}

h2 strong {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: normal;
  margin: 20px 0 0 0;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0;
}

h6 {
  font-size: 18px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  margin: 20px 0;
}

p {
  font-weight: normal;
  font-size: 15px;
  line-height: 20px;
}

/*!
 *  Line Awesome 1.1.0 by @icons_8 - https://icons8.com/line-awesome
 *  License - https://icons8.com/good-boy-license/ (Font: SIL OFL 1.1, CSS: MIT License)
 *
 * Made with love by Icons8 [ https://icons8.com/ ] using FontCustom [ https://github.com/FontCustom/fontcustom ]
 *
 * Contacts:
 *    [ https://icons8.com/contact ]
 *
 * Follow Icon8 on
 *    Twitter [ https://twitter.com/icons_8 ]
 *    Facebook [ https://www.facebook.com/Icons8 ]
 *    Google+ [ https://plus.google.com/+Icons8 ]
 *    GitHub [ https://github.com/icons8 ]
 */
@font-face {
  font-family: "LineAwesome";
  src: url("/include/fonts/line-awesome.eot?v=1.1.");
  src: url("/include/fonts/line-awesome.eot??v=1.1.#iefix") format("embedded-opentype"), url("/include/fonts/line-awesome.woff2?v=1.1.") format("woff2"), url("/include/fonts/line-awesome.woff?v=1.1.") format("woff"), url("/include/fonts/line-awesome.ttf?v=1.1.") format("truetype"), url("/include/fonts/line-awesome.svg?v=1.1.#fa") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "LineAwesome";
    src: url("/include/fonts/line-awesome.svg?v=1.1.#fa") format("svg");
  }
}

/* Thanks to http://fontawesome.io @fontawesome and @davegandy */
.la {
  display: inline-block;
  font: normal normal normal 16px/1 "LineAwesome";
  font-size: inherit;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* makes the font 33% larger relative to the icon container */
.la-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.la-2x {
  font-size: 2em;
}

.la-3x {
  font-size: 3em;
}

.la-4x {
  font-size: 4em;
}

.la-5x {
  font-size: 5em;
}

.la-fw {
  width: 1.28571429em;
  text-align: center;
}

.la-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.la-ul > li {
  position: relative;
}

.la-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.la-li.la-lg {
  left: -1.85714286em;
}

.la-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.li.pull-left {
  margin-right: .3em;
}

.li.pull-right {
  margin-left: .3em;
}

.la-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

.la-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.la-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.la-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.la-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.la-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .la-rotate-90,
:root .la-rotate-180,
:root .la-rotate-270,
:root .la-flip-horizontal,
:root .la-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.la-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.la-stack-1x,
.la-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.la-stack-1x {
  line-height: inherit;
}

.la-stack-2x {
  font-size: 2em;
}

.la-inverse {
  color: #ffffff;
}

/* Thanks to http://fontawesome.io @fontawesome and @davegandy */
.la-500px:before {
  content: "\f100";
}

.la-adjust:before {
  content: "\f101";
}

.la-adn:before {
  content: "\f102";
}

.la-align-center:before {
  content: "\f103";
}

.la-align-justify:before {
  content: "\f104";
}

.la-align-left:before {
  content: "\f105";
}

.la-align-right:before {
  content: "\f106";
}

.la-amazon:before {
  content: "\f107";
}

.la-ambulance:before {
  content: "\f108";
}

.la-anchor:before {
  content: "\f109";
}

.la-android:before {
  content: "\f10a";
}

.la-angellist:before {
  content: "\f10b";
}

.la-angle-double-down:before {
  content: "\f10c";
}

.la-angle-double-left:before {
  content: "\f10d";
}

.la-angle-double-right:before {
  content: "\f10e";
}

.la-angle-double-up:before {
  content: "\f10f";
}

.la-angle-down:before {
  content: "\f110";
}

.la-angle-left:before {
  content: "\f111";
}

.la-angle-right:before {
  content: "\f112";
}

.la-angle-up:before {
  content: "\f113";
}

.la-apple:before {
  content: "\f114";
}

.la-archive:before {
  content: "\f115";
}

.la-area-chart:before {
  content: "\f116";
}

.la-arrow-circle-down:before {
  content: "\f117";
}

.la-arrow-circle-left:before {
  content: "\f118";
}

.la-arrow-circle-o-down:before {
  content: "\f119";
}

.la-arrow-circle-o-left:before {
  content: "\f11a";
}

.la-arrow-circle-o-right:before {
  content: "\f11b";
}

.la-arrow-circle-o-up:before {
  content: "\f11c";
}

.la-arrow-circle-right:before {
  content: "\f11d";
}

.la-arrow-circle-up:before {
  content: "\f11e";
}

.la-arrow-down:before {
  content: "\f11f";
}

.la-arrow-left:before {
  content: "\f120";
}

.la-arrow-right:before {
  content: "\f121";
}

.la-arrow-up:before {
  content: "\f122";
}

.la-arrows:before {
  content: "\f123";
}

.la-arrows-alt:before {
  content: "\f124";
}

.la-arrows-h:before {
  content: "\f125";
}

.la-arrows-v:before {
  content: "\f126";
}

.la-asterisk:before {
  content: "\f127";
}

.la-at:before {
  content: "\f128";
}

.la-automobile:before {
  content: "\f129";
}

.la-backward:before {
  content: "\f12a";
}

.la-balance-scale:before {
  content: "\f12b";
}

.la-ban:before {
  content: "\f12c";
}

.la-bank:before {
  content: "\f12d";
}

.la-bar-chart:before {
  content: "\f12e";
}

.la-bar-chart-o:before {
  content: "\f12f";
}

.la-barcode:before {
  content: "\f130";
}

.la-bars:before {
  content: "\f131";
}

.la-battery-0:before {
  content: "\f132";
}

.la-battery-1:before {
  content: "\f133";
}

.la-battery-2:before {
  content: "\f134";
}

.la-battery-3:before {
  content: "\f135";
}

.la-battery-4:before {
  content: "\f136";
}

.la-battery-empty:before {
  content: "\f137";
}

.la-battery-full:before {
  content: "\f138";
}

.la-battery-half:before {
  content: "\f139";
}

.la-battery-quarter:before {
  content: "\f13a";
}

.la-battery-three-quarters:before {
  content: "\f13b";
}

.la-bed:before {
  content: "\f13c";
}

.la-beer:before {
  content: "\f13d";
}

.la-behance:before {
  content: "\f13e";
}

.la-behance-square:before {
  content: "\f13f";
}

.la-bell:before {
  content: "\f140";
}

.la-bell-o:before {
  content: "\f141";
}

.la-bell-slash:before {
  content: "\f142";
}

.la-bell-slash-o:before {
  content: "\f143";
}

.la-bicycle:before {
  content: "\f144";
}

.la-binoculars:before {
  content: "\f145";
}

.la-birthday-cake:before {
  content: "\f146";
}

.la-bitbucket:before {
  content: "\f147";
}

.la-bitbucket-square:before {
  content: "\f148";
}

.la-bitcoin:before {
  content: "\f149";
}

.la-black-tie:before {
  content: "\f14a";
}

.la-bold:before {
  content: "\f14b";
}

.la-bolt:before {
  content: "\f14c";
}

.la-bomb:before {
  content: "\f14d";
}

.la-book:before {
  content: "\f14e";
}

.la-bookmark:before {
  content: "\f14f";
}

.la-bookmark-o:before {
  content: "\f150";
}

.la-briefcase:before {
  content: "\f151";
}

.la-btc:before {
  content: "\f152";
}

.la-bug:before {
  content: "\f153";
}

.la-building:before {
  content: "\f154";
}

.la-building-o:before {
  content: "\f155";
}

.la-bullhorn:before {
  content: "\f156";
}

.la-bullseye:before {
  content: "\f157";
}

.la-bus:before {
  content: "\f158";
}

.la-buysellads:before {
  content: "\f159";
}

.la-cab:before {
  content: "\f15a";
}

.la-calculator:before {
  content: "\f15b";
}

.la-calendar:before {
  content: "\f15c";
}

.la-calendar-check-o:before {
  content: "\f15d";
}

.la-calendar-minus-o:before {
  content: "\f15e";
}

.la-calendar-o:before {
  content: "\f15f";
}

.la-calendar-plus-o:before {
  content: "\f160";
}

.la-calendar-times-o:before {
  content: "\f161";
}

.la-camera:before {
  content: "\f162";
}

.la-camera-retro:before {
  content: "\f163";
}

.la-car:before {
  content: "\f164";
}

.la-caret-down:before {
  content: "\f165";
}

.la-caret-left:before {
  content: "\f166";
}

.la-caret-right:before {
  content: "\f167";
}

.la-caret-square-o-down:before, .la-toggle-down:before {
  content: "\f168";
}

.la-caret-square-o-left:before, .la-toggle-left:before {
  content: "\f169";
}

.la-caret-square-o-right:before, .la-toggle-right:before {
  content: "\f16a";
}

.la-caret-square-o-up:before, .la-toggle-up:before {
  content: "\f16b";
}

.la-caret-up:before {
  content: "\f16c";
}

.la-cart-arrow-down:before {
  content: "\f16d";
}

.la-cart-plus:before {
  content: "\f16e";
}

.la-cc:before {
  content: "\f16f";
}

.la-cc-amex:before {
  content: "\f170";
}

.la-cc-diners-club:before {
  content: "\f171";
}

.la-cc-discover:before {
  content: "\f172";
}

.la-cc-jcb:before {
  content: "\f173";
}

.la-cc-mastercard:before {
  content: "\f174";
}

.la-cc-paypal:before {
  content: "\f175";
}

.la-cc-stripe:before {
  content: "\f176";
}

.la-cc-visa:before {
  content: "\f177";
}

.la-certificate:before {
  content: "\f178";
}

.la-chain:before {
  content: "\f179";
}

.la-chain-broken:before {
  content: "\f17a";
}

.la-check:before {
  content: "\f17b";
}

.la-check-circle:before {
  content: "\f17c";
}

.la-check-circle-o:before {
  content: "\f17d";
}

.la-check-square:before {
  content: "\f17e";
}

.la-check-square-o:before {
  content: "\f17f";
}

.la-chevron-circle-down:before {
  content: "\f180";
}

.la-chevron-circle-left:before {
  content: "\f181";
}

.la-chevron-circle-right:before {
  content: "\f182";
}

.la-chevron-circle-up:before {
  content: "\f183";
}

.la-chevron-down:before {
  content: "\f184";
}

.la-chevron-left:before {
  content: "\f185";
}

.la-chevron-right:before {
  content: "\f186";
}

.la-chevron-up:before {
  content: "\f187";
}

.la-child:before {
  content: "\f188";
}

.la-chrome:before {
  content: "\f189";
}

.la-circle:before {
  content: "\f18a";
}

.la-circle-o:before {
  content: "\f18b";
}

.la-circle-o-notch:before {
  content: "\f18c";
}

.la-circle-thin:before {
  content: "\f18d";
}

.la-clipboard:before {
  content: "\f18e";
}

.la-clock-o:before {
  content: "\f18f";
}

.la-clone:before {
  content: "\f190";
}

.la-close:before {
  content: "\f191";
}

.la-cloud:before {
  content: "\f192";
}

.la-cloud-download:before {
  content: "\f193";
}

.la-cloud-upload:before {
  content: "\f194";
}

.la-cny:before {
  content: "\f195";
}

.la-code:before {
  content: "\f196";
}

.la-code-fork:before {
  content: "\f197";
}

.la-codepen:before {
  content: "\f198";
}

.la-coffee:before {
  content: "\f199";
}

.la-cog:before {
  content: "\f19a";
}

.la-cogs:before {
  content: "\f19b";
}

.la-columns:before {
  content: "\f19c";
}

.la-comment:before {
  content: "\f19d";
}

.la-comment-o:before {
  content: "\f19e";
}

.la-commenting:before {
  content: "\f19f";
}

.la-commenting-o:before {
  content: "\f1a0";
}

.la-comments:before {
  content: "\f1a1";
}

.la-comments-o:before {
  content: "\f1a2";
}

.la-compass:before {
  content: "\f1a3";
}

.la-compress:before {
  content: "\f1a4";
}

.la-connectdevelop:before {
  content: "\f1a5";
}

.la-contao:before {
  content: "\f1a6";
}

.la-copy:before {
  content: "\f1a7";
}

.la-copyright:before {
  content: "\f1a8";
}

.la-creative-commons:before {
  content: "\f1a9";
}

.la-credit-card:before {
  content: "\f1aa";
}

.la-crop:before {
  content: "\f1ab";
}

.la-crosshairs:before {
  content: "\f1ac";
}

.la-css3:before {
  content: "\f1ad";
}

.la-cube:before {
  content: "\f1ae";
}

.la-cubes:before {
  content: "\f1af";
}

.la-cut:before {
  content: "\f1b0";
}

.la-cutlery:before {
  content: "\f1b1";
}

.la-dashboard:before {
  content: "\f1b2";
}

.la-dashcube:before {
  content: "\f1b3";
}

.la-database:before {
  content: "\f1b4";
}

.la-dedent:before {
  content: "\f1b5";
}

.la-delicious:before {
  content: "\f1b6";
}

.la-desktop:before {
  content: "\f1b7";
}

.la-deviantart:before {
  content: "\f1b8";
}

.la-diamond:before {
  content: "\f1b9";
}

.la-digg:before {
  content: "\f1ba";
}

.la-dollar:before {
  content: "\f1bb";
}

.la-dot-circle-o:before {
  content: "\f1bc";
}

.la-download:before {
  content: "\f1bd";
}

.la-dribbble:before {
  content: "\f1be";
}

.la-dropbox:before {
  content: "\f1bf";
}

.la-drupal:before {
  content: "\f1c0";
}

.la-edit:before {
  content: "\f1c1";
}

.la-eject:before {
  content: "\f1c2";
}

.la-ellipsis-h:before {
  content: "\f1c3";
}

.la-ellipsis-v:before {
  content: "\f1c4";
}

.la-empire:before, .la-ge:before {
  content: "\f1c5";
}

.la-envelope:before {
  content: "\f1c6";
}

.la-envelope-o:before {
  content: "\f1c7";
}

.la-envelope-square:before {
  content: "\f1c8";
}

.la-eraser:before {
  content: "\f1c9";
}

.la-eur:before {
  content: "\f1ca";
}

.la-euro:before {
  content: "\f1cb";
}

.la-exchange:before {
  content: "\f1cc";
}

.la-exclamation:before {
  content: "\f1cd";
}

.la-exclamation-circle:before {
  content: "\f1ce";
}

.la-exclamation-triangle:before {
  content: "\f1cf";
}

.la-expand:before {
  content: "\f1d0";
}

.la-expeditedssl:before {
  content: "\f1d1";
}

.la-external-link:before {
  content: "\f1d2";
}

.la-external-link-square:before {
  content: "\f1d3";
}

.la-eye:before {
  content: "\f1d4";
}

.la-eye-slash:before {
  content: "\f1d5";
}

.la-eyedropper:before {
  content: "\f1d6";
}

.la-facebook:before, .la-facebook-f:before {
  content: "\f1d7";
}

.la-facebook-official:before {
  content: "\f1d8";
}

.la-facebook-square:before {
  content: "\f1d9";
}

.la-fast-backward:before {
  content: "\f1da";
}

.la-fast-forward:before {
  content: "\f1db";
}

.la-fax:before {
  content: "\f1dc";
}

.la-female:before {
  content: "\f1dd";
}

.la-fighter-jet:before {
  content: "\f1de";
}

.la-file:before {
  content: "\f1df";
}

.la-file-archive-o:before {
  content: "\f1e0";
}

.la-file-audio-o:before {
  content: "\f1e1";
}

.la-file-code-o:before {
  content: "\f1e2";
}

.la-file-excel-o:before {
  content: "\f1e3";
}

.la-file-image-o:before {
  content: "\f1e4";
}

.la-file-movie-o:before {
  content: "\f1e5";
}

.la-file-o:before {
  content: "\f1e6";
}

.la-file-pdf-o:before {
  content: "\f1e7";
}

.la-file-photo-o:before {
  content: "\f1e8";
}

.la-file-picture-o:before {
  content: "\f1e9";
}

.la-file-powerpoint-o:before {
  content: "\f1ea";
}

.la-file-sound-o:before {
  content: "\f1eb";
}

.la-file-text:before {
  content: "\f1ec";
}

.la-file-text-o:before {
  content: "\f1ed";
}

.la-file-video-o:before {
  content: "\f1ee";
}

.la-file-word-o:before {
  content: "\f1ef";
}

.la-file-zip-o:before {
  content: "\f1f0";
}

.la-files-o:before {
  content: "\f1f1";
}

.la-film:before {
  content: "\f1f2";
}

.la-filter:before {
  content: "\f1f3";
}

.la-fire:before {
  content: "\f1f4";
}

.la-fire-extinguisher:before {
  content: "\f1f5";
}

.la-firefox:before {
  content: "\f1f6";
}

.la-flag:before {
  content: "\f1f7";
}

.la-flag-checkered:before {
  content: "\f1f8";
}

.la-flag-o:before {
  content: "\f1f9";
}

.la-flash:before {
  content: "\f1fa";
}

.la-flask:before {
  content: "\f1fb";
}

.la-flickr:before {
  content: "\f1fc";
}

.la-floppy-o:before {
  content: "\f1fd";
}

.la-folder:before {
  content: "\f1fe";
}

.la-folder-o:before {
  content: "\f1ff";
}

.la-folder-open:before {
  content: "\f200";
}

.la-folder-open-o:before {
  content: "\f201";
}

.la-font:before {
  content: "\f202";
}

.la-fonticons:before {
  content: "\f203";
}

.la-forumbee:before {
  content: "\f204";
}

.la-forward:before {
  content: "\f205";
}

.la-foursquare:before {
  content: "\f206";
}

.la-frown-o:before {
  content: "\f207";
}

.la-futbol-o:before, .la-soccer-ball-o:before {
  content: "\f208";
}

.la-gamepad:before {
  content: "\f209";
}

.la-gavel:before {
  content: "\f20a";
}

.la-gbp:before {
  content: "\f20b";
}

.la-gear:before {
  content: "\f20c";
}

.la-gears:before {
  content: "\f20d";
}

.la-genderless:before {
  content: "\f20e";
}

.la-get-pocket:before {
  content: "\f20f";
}

.la-gg:before {
  content: "\f210";
}

.la-gg-circle:before {
  content: "\f211";
}

.la-gift:before {
  content: "\f212";
}

.la-git:before {
  content: "\f213";
}

.la-git-square:before {
  content: "\f214";
}

.la-github:before {
  content: "\f215";
}

.la-github-alt:before {
  content: "\f216";
}

.la-github-square:before {
  content: "\f217";
}

.la-glass:before {
  content: "\f218";
}

.la-globe:before {
  content: "\f219";
}

.la-google:before {
  content: "\f21a";
}

.la-google-plus:before {
  content: "\f21b";
}

.la-google-plus-square:before {
  content: "\f21c";
}

.la-google-wallet:before {
  content: "\f21d";
}

.la-graduation-cap:before {
  content: "\f21e";
}

.la-gratipay:before, .la-gittip:before {
  content: "\f21f";
}

.la-group:before {
  content: "\f220";
}

.la-h-square:before {
  content: "\f221";
}

.la-hacker-news:before {
  content: "\f222";
}

.la-hand-grab-o:before {
  content: "\f223";
}

.la-hand-lizard-o:before {
  content: "\f224";
}

.la-hand-o-down:before {
  content: "\f225";
}

.la-hand-o-left:before {
  content: "\f226";
}

.la-hand-o-right:before {
  content: "\f227";
}

.la-hand-o-up:before {
  content: "\f228";
}

.la-hand-paper-o:before {
  content: "\f229";
}

.la-hand-peace-o:before {
  content: "\f22a";
}

.la-hand-pointer-o:before {
  content: "\f22b";
}

.la-hand-rock-o:before {
  content: "\f22c";
}

.la-hand-scissors-o:before {
  content: "\f22d";
}

.la-hand-spock-o:before {
  content: "\f22e";
}

.la-hand-stop-o:before {
  content: "\f22f";
}

.la-hdd-o:before {
  content: "\f230";
}

.la-header:before {
  content: "\f231";
}

.la-headphones:before {
  content: "\f232";
}

.la-heart:before {
  content: "\f233";
}

.la-heart-o:before {
  content: "\f234";
}

.la-heartbeat:before {
  content: "\f235";
}

.la-history:before {
  content: "\f236";
}

.la-home:before {
  content: "\f237";
}

.la-hospital-o:before {
  content: "\f238";
}

.la-hotel:before {
  content: "\f239";
}

.la-hourglass:before {
  content: "\f23a";
}

.la-hourglass-1:before {
  content: "\f23b";
}

.la-hourglass-2:before {
  content: "\f23c";
}

.la-hourglass-3:before {
  content: "\f23d";
}

.la-hourglass-end:before {
  content: "\f23e";
}

.la-hourglass-half:before {
  content: "\f23f";
}

.la-hourglass-o:before {
  content: "\f240";
}

.la-hourglass-start:before {
  content: "\f241";
}

.la-houzz:before {
  content: "\f242";
}

.la-html5:before {
  content: "\f243";
}

.la-i-cursor:before {
  content: "\f244";
}

.la-ils:before {
  content: "\f245";
}

.la-image:before {
  content: "\f246";
}

.la-inbox:before {
  content: "\f247";
}

.la-indent:before {
  content: "\f248";
}

.la-industry:before {
  content: "\f249";
}

.la-info:before {
  content: "\f24a";
}

.la-info-circle:before {
  content: "\f24b";
}

.la-inr:before {
  content: "\f24c";
}

.la-instagram:before {
  content: "\f24d";
}

.la-institution:before {
  content: "\f24e";
}

.la-internet-explorer:before {
  content: "\f24f";
}

.la-ioxhost:before {
  content: "\f250";
}

.la-italic:before {
  content: "\f251";
}

.la-joomla:before {
  content: "\f252";
}

.la-jpy:before {
  content: "\f253";
}

.la-jsfiddle:before {
  content: "\f254";
}

.la-key:before {
  content: "\f255";
}

.la-keyboard-o:before {
  content: "\f256";
}

.la-krw:before {
  content: "\f257";
}

.la-language:before {
  content: "\f258";
}

.la-laptop:before {
  content: "\f259";
}

.la-lastfm:before {
  content: "\f25a";
}

.la-lastfm-square:before {
  content: "\f25b";
}

.la-leaf:before {
  content: "\f25c";
}

.la-leanpub:before {
  content: "\f25d";
}

.la-legal:before {
  content: "\f25e";
}

.la-lemon-o:before {
  content: "\f25f";
}

.la-level-down:before {
  content: "\f260";
}

.la-level-up:before {
  content: "\f261";
}

.la-life-bouy:before {
  content: "\f262";
}

.la-life-buoy:before {
  content: "\f263";
}

.la-life-ring:before, .la-support:before {
  content: "\f264";
}

.la-life-saver:before {
  content: "\f265";
}

.la-lightbulb-o:before {
  content: "\f266";
}

.la-line-chart:before {
  content: "\f267";
}

.la-link:before {
  content: "\f268";
}

.la-linkedin:before {
  content: "\f269";
}

.la-linkedin-square:before {
  content: "\f26a";
}

.la-linux:before {
  content: "\f26b";
}

.la-list:before {
  content: "\f26c";
}

.la-list-alt:before {
  content: "\f26d";
}

.la-list-ol:before {
  content: "\f26e";
}

.la-list-ul:before {
  content: "\f26f";
}

.la-location-arrow:before {
  content: "\f270";
}

.la-lock:before {
  content: "\f271";
}

.la-long-arrow-down:before {
  content: "\f272";
}

.la-long-arrow-left:before {
  content: "\f273";
}

.la-long-arrow-right:before {
  content: "\f274";
}

.la-long-arrow-up:before {
  content: "\f275";
}

.la-magic:before {
  content: "\f276";
}

.la-magnet:before {
  content: "\f277";
}

.la-mail-forward:before {
  content: "\f278";
}

.la-mail-reply:before {
  content: "\f279";
}

.la-mail-reply-all:before {
  content: "\f27a";
}

.la-male:before {
  content: "\f27b";
}

.la-map:before {
  content: "\f27c";
}

.la-map-marker:before {
  content: "\f27d";
}

.la-map-o:before {
  content: "\f27e";
}

.la-map-pin:before {
  content: "\f27f";
}

.la-map-signs:before {
  content: "\f280";
}

.la-mars:before {
  content: "\f281";
}

.la-mars-double:before {
  content: "\f282";
}

.la-mars-stroke:before {
  content: "\f283";
}

.la-mars-stroke-h:before {
  content: "\f284";
}

.la-mars-stroke-v:before {
  content: "\f285";
}

.la-maxcdn:before {
  content: "\f286";
}

.la-meanpath:before {
  content: "\f287";
}

.la-medium:before {
  content: "\f288";
}

.la-medkit:before {
  content: "\f289";
}

.la-meh-o:before {
  content: "\f28a";
}

.la-mercury:before {
  content: "\f28b";
}

.la-microphone:before {
  content: "\f28c";
}

.la-microphone-slash:before {
  content: "\f28d";
}

.la-minus:before {
  content: "\f28e";
}

.la-minus-circle:before {
  content: "\f28f";
}

.la-minus-square:before {
  content: "\f290";
}

.la-minus-square-o:before {
  content: "\f291";
}

.la-mobile:before {
  content: "\f292";
}

.la-mobile-phone:before {
  content: "\f293";
}

.la-money:before {
  content: "\f294";
}

.la-moon-o:before {
  content: "\f295";
}

.la-mortar-board:before {
  content: "\f296";
}

.la-motorcycle:before {
  content: "\f297";
}

.la-mouse-pointer:before {
  content: "\f298";
}

.la-music:before {
  content: "\f299";
}

.la-navicon:before {
  content: "\f29a";
}

.la-neuter:before {
  content: "\f29b";
}

.la-newspaper-o:before {
  content: "\f29c";
}

.la-object-group:before {
  content: "\f29d";
}

.la-object-ungroup:before {
  content: "\f29e";
}

.la-odnoklassniki:before {
  content: "\f29f";
}

.la-odnoklassniki-square:before {
  content: "\f2a0";
}

.la-opencart:before {
  content: "\f2a1";
}

.la-openid:before {
  content: "\f2a2";
}

.la-opera:before {
  content: "\f2a3";
}

.la-optin-monster:before {
  content: "\f2a4";
}

.la-outdent:before {
  content: "\f2a5";
}

.la-pagelines:before {
  content: "\f2a6";
}

.la-paint-brush:before {
  content: "\f2a7";
}

.la-paper-plane:before, .la-send:before {
  content: "\f2a8";
}

.la-paper-plane-o:before, .la-send-o:before {
  content: "\f2a9";
}

.la-paperclip:before {
  content: "\f2aa";
}

.la-paragraph:before {
  content: "\f2ab";
}

.la-paste:before {
  content: "\f2ac";
}

.la-pause:before {
  content: "\f2ad";
}

.la-paw:before {
  content: "\f2ae";
}

.la-paypal:before {
  content: "\f2af";
}

.la-pencil:before {
  content: "\f2b0";
}

.la-pencil-square:before {
  content: "\f2b1";
}

.la-pencil-square-o:before {
  content: "\f2b2";
}

.la-phone:before {
  content: "\f2b3";
}

.la-phone-square:before {
  content: "\f2b4";
}

.la-photo:before {
  content: "\f2b5";
}

.la-picture-o:before {
  content: "\f2b6";
}

.la-pie-chart:before {
  content: "\f2b7";
}

.la-pied-piper:before {
  content: "\f2b8";
}

.la-pied-piper-alt:before {
  content: "\f2b9";
}

.la-pinterest:before {
  content: "\f2ba";
}

.la-pinterest-p:before {
  content: "\f2bb";
}

.la-pinterest-square:before {
  content: "\f2bc";
}

.la-plane:before {
  content: "\f2bd";
}

.la-play:before {
  content: "\f2be";
}

.la-play-circle:before {
  content: "\f2bf";
}

.la-play-circle-o:before {
  content: "\f2c0";
}

.la-plug:before {
  content: "\f2c1";
}

.la-plus:before {
  content: "\f2c2";
}

.la-plus-circle:before {
  content: "\f2c3";
}

.la-plus-square:before {
  content: "\f2c4";
}

.la-plus-square-o:before {
  content: "\f2c5";
}

.la-power-off:before {
  content: "\f2c6";
}

.la-print:before {
  content: "\f2c7";
}

.la-puzzle-piece:before {
  content: "\f2c8";
}

.la-qq:before {
  content: "\f2c9";
}

.la-qrcode:before {
  content: "\f2ca";
}

.la-question:before {
  content: "\f2cb";
}

.la-question-circle:before {
  content: "\f2cc";
}

.la-quote-left:before {
  content: "\f2cd";
}

.la-quote-right:before {
  content: "\f2ce";
}

.la-ra:before {
  content: "\f2cf";
}

.la-random:before {
  content: "\f2d0";
}

.la-rebel:before {
  content: "\f2d1";
}

.la-recycle:before {
  content: "\f2d2";
}

.la-reddit:before {
  content: "\f2d3";
}

.la-reddit-square:before {
  content: "\f2d4";
}

.la-refresh:before {
  content: "\f2d5";
}

.la-registered:before {
  content: "\f2d6";
}

.la-renren:before {
  content: "\f2d7";
}

.la-reorder:before {
  content: "\f2d8";
}

.la-repeat:before {
  content: "\f2d9";
}

.la-reply:before {
  content: "\f2da";
}

.la-reply-all:before {
  content: "\f2db";
}

.la-retweet:before {
  content: "\f2dc";
}

.la-rmb:before {
  content: "\f2dd";
}

.la-road:before {
  content: "\f2de";
}

.la-rocket:before {
  content: "\f2df";
}

.la-rotate-left:before {
  content: "\f2e0";
}

.la-rotate-right:before {
  content: "\f2e1";
}

.la-rouble:before {
  content: "\f2e2";
}

.la-rss:before, .la-feed:before {
  content: "\f2e3";
}

.la-rss-square:before {
  content: "\f2e4";
}

.la-rub:before {
  content: "\f2e5";
}

.la-ruble:before {
  content: "\f2e6";
}

.la-rupee:before {
  content: "\f2e7";
}

.la-safari:before {
  content: "\f2e8";
}

.la-save:before {
  content: "\f2e9";
}

.la-scissors:before {
  content: "\f2ea";
}

.la-search:before {
  content: "\f2eb";
}

.la-search-minus:before {
  content: "\f2ec";
}

.la-search-plus:before {
  content: "\f2ed";
}

.la-sellsy:before {
  content: "\f2ee";
}

.la-server:before {
  content: "\f2ef";
}

.la-share:before {
  content: "\f2f0";
}

.la-share-alt:before {
  content: "\f2f1";
}

.la-share-alt-square:before {
  content: "\f2f2";
}

.la-share-square:before {
  content: "\f2f3";
}

.la-share-square-o:before {
  content: "\f2f4";
}

.la-shekel:before {
  content: "\f2f5";
}

.la-sheqel:before {
  content: "\f2f6";
}

.la-shield:before {
  content: "\f2f7";
}

.la-ship:before {
  content: "\f2f8";
}

.la-shirtsinbulk:before {
  content: "\f2f9";
}

.la-shopping-cart:before {
  content: "\f2fa";
}

.la-sign-in:before {
  content: "\f2fb";
}

.la-sign-out:before {
  content: "\f2fc";
}

.la-signal:before {
  content: "\f2fd";
}

.la-simplybuilt:before {
  content: "\f2fe";
}

.la-sitemap:before {
  content: "\f2ff";
}

.la-skyatlas:before {
  content: "\f300";
}

.la-skype:before {
  content: "\f301";
}

.la-slack:before {
  content: "\f302";
}

.la-sliders:before {
  content: "\f303";
}

.la-slideshare:before {
  content: "\f304";
}

.la-smile-o:before {
  content: "\f305";
}

.la-sort:before, .la-unsorted:before {
  content: "\f306";
}

.la-sort-alpha-asc:before {
  content: "\f307";
}

.la-sort-alpha-desc:before {
  content: "\f308";
}

.la-sort-amount-asc:before {
  content: "\f309";
}

.la-sort-amount-desc:before {
  content: "\f30a";
}

.la-sort-asc:before, .la-sort-up:before {
  content: "\f30b";
}

.la-sort-desc:before, .la-sort-down:before {
  content: "\f30c";
}

.la-sort-numeric-asc:before {
  content: "\f30d";
}

.la-sort-numeric-desc:before {
  content: "\f30e";
}

.la-soundcloud:before {
  content: "\f30f";
}

.la-space-shuttle:before {
  content: "\f310";
}

.la-spinner:before {
  content: "\f311";
}

.la-spoon:before {
  content: "\f312";
}

.la-spotify:before {
  content: "\f313";
}

.la-square:before {
  content: "\f314";
}

.la-square-o:before {
  content: "\f315";
}

.la-stack-exchange:before {
  content: "\f316";
}

.la-stack-overflow:before {
  content: "\f317";
}

.la-star:before {
  content: "\f318";
}

.la-star-half:before {
  content: "\f319";
}

.la-star-half-o:before, .la-star-half-full:before, .la-star-half-empty:before {
  content: "\f31a";
}

.la-star-o:before {
  content: "\f31b";
}

.la-steam:before {
  content: "\f31c";
}

.la-steam-square:before {
  content: "\f31d";
}

.la-step-backward:before {
  content: "\f31e";
}

.la-step-forward:before {
  content: "\f31f";
}

.la-stethoscope:before {
  content: "\f320";
}

.la-sticky-note:before {
  content: "\f321";
}

.la-sticky-note-o:before {
  content: "\f322";
}

.la-stop:before {
  content: "\f323";
}

.la-street-view:before {
  content: "\f324";
}

.la-strikethrough:before {
  content: "\f325";
}

.la-stumbleupon:before {
  content: "\f326";
}

.la-stumbleupon-circle:before {
  content: "\f327";
}

.la-subscript:before {
  content: "\f328";
}

.la-subway:before {
  content: "\f329";
}

.la-suitcase:before {
  content: "\f32a";
}

.la-sun-o:before {
  content: "\f32b";
}

.la-superscript:before {
  content: "\f32c";
}

.la-table:before {
  content: "\f32d";
}

.la-tablet:before {
  content: "\f32e";
}

.la-tachometer:before {
  content: "\f32f";
}

.la-tag:before {
  content: "\f330";
}

.la-tags:before {
  content: "\f331";
}

.la-tasks:before {
  content: "\f332";
}

.la-taxi:before {
  content: "\f333";
}

.la-television:before, .la-tv:before {
  content: "\f334";
}

.la-tencent-weibo:before {
  content: "\f335";
}

.la-terminal:before {
  content: "\f336";
}

.la-text-height:before {
  content: "\f337";
}

.la-text-width:before {
  content: "\f338";
}

.la-th:before {
  content: "\f339";
}

.la-th-large:before {
  content: "\f33a";
}

.la-th-list:before {
  content: "\f33b";
}

.la-thumb-tack:before {
  content: "\f33c";
}

.la-thumbs-down:before {
  content: "\f33d";
}

.la-thumbs-o-down:before {
  content: "\f33e";
}

.la-thumbs-o-up:before {
  content: "\f33f";
}

.la-thumbs-up:before {
  content: "\f340";
}

.la-ticket:before {
  content: "\f341";
}

.la-times:before, .la-remove:before {
  content: "\f342";
}

.la-times-circle:before {
  content: "\f343";
}

.la-times-circle-o:before {
  content: "\f344";
}

.la-tint:before {
  content: "\f345";
}

.la-toggle-off:before {
  content: "\f346";
}

.la-toggle-on:before {
  content: "\f347";
}

.la-trademark:before {
  content: "\f348";
}

.la-train:before {
  content: "\f349";
}

.la-transgender:before, .la-intersex:before {
  content: "\f34a";
}

.la-transgender-alt:before {
  content: "\f34b";
}

.la-trash:before {
  content: "\f34c";
}

.la-trash-o:before {
  content: "\f34d";
}

.la-tree:before {
  content: "\f34e";
}

.la-trello:before {
  content: "\f34f";
}

.la-tripadvisor:before {
  content: "\f350";
}

.la-trophy:before {
  content: "\f351";
}

.la-truck:before {
  content: "\f352";
}

.la-try:before {
  content: "\f353";
}

.la-tty:before {
  content: "\f354";
}

.la-tumblr:before {
  content: "\f355";
}

.la-tumblr-square:before {
  content: "\f356";
}

.la-turkish-lira:before {
  content: "\f357";
}

.la-twitch:before {
  content: "\f358";
}

.la-twitter:before {
  content: "\f359";
}

.la-twitter-square:before {
  content: "\f35a";
}

.la-umbrella:before {
  content: "\f35b";
}

.la-underline:before {
  content: "\f35c";
}

.la-undo:before {
  content: "\f35d";
}

.la-university:before {
  content: "\f35e";
}

.la-unlink:before {
  content: "\f35f";
}

.la-unlock:before {
  content: "\f360";
}

.la-unlock-alt:before {
  content: "\f361";
}

.la-upload:before {
  content: "\f362";
}

.la-usd:before {
  content: "\f363";
}

.la-user:before {
  content: "\f364";
}

.la-user-md:before {
  content: "\f365";
}

.la-user-plus:before {
  content: "\f366";
}

.la-user-secret:before {
  content: "\f367";
}

.la-user-times:before {
  content: "\f368";
}

.la-users:before {
  content: "\f369";
}

.la-venus:before {
  content: "\f36a";
}

.la-venus-double:before {
  content: "\f36b";
}

.la-venus-mars:before {
  content: "\f36c";
}

.la-viacoin:before {
  content: "\f36d";
}

.la-video-camera:before {
  content: "\f36e";
}

.la-vimeo:before {
  content: "\f36f";
}

.la-vimeo-square:before {
  content: "\f370";
}

.la-vine:before {
  content: "\f371";
}

.la-vk:before {
  content: "\f372";
}

.la-volume-down:before {
  content: "\f373";
}

.la-volume-off:before {
  content: "\f374";
}

.la-volume-up:before {
  content: "\f375";
}

.la-warning:before {
  content: "\f376";
}

.la-wechat:before {
  content: "\f377";
}

.la-weibo:before {
  content: "\f378";
}

.la-weixin:before {
  content: "\f379";
}

.la-whatsapp:before {
  content: "\f37a";
}

.la-wheelchair:before {
  content: "\f37b";
}

.la-wifi:before {
  content: "\f37c";
}

.la-wikipedia-w:before {
  content: "\f37d";
}

.la-windows:before {
  content: "\f37e";
}

.la-won:before {
  content: "\f37f";
}

.la-wordpress:before {
  content: "\f380";
}

.la-wrench:before {
  content: "\f381";
}

.la-xing:before {
  content: "\f382";
}

.la-xing-square:before {
  content: "\f383";
}

.la-y-combinator:before {
  content: "\f384";
}

.la-y-combinator-square:before {
  content: "\f385";
}

.la-yahoo:before {
  content: "\f386";
}

.la-yc:before {
  content: "\f387";
}

.la-yc-square:before {
  content: "\f388";
}

.la-yelp:before {
  content: "\f389";
}

.la-yen:before {
  content: "\f38a";
}

.la-youtube:before {
  content: "\f38b";
}

.la-youtube-play:before {
  content: "\f38c";
}

.la-youtube-square:before {
  content: "\f38d";
}

/*!
 * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}*/

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/*# sourceMappingURL=bootstrap-reboot.css.map */
#placeholder {
  min-height: 1200px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,2989d8+50,7db9e8+100 */
  background: #1e5799;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #1e5799 0%, #2989d8 50%, #7db9e8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 );
  /* IE6-9 */
}

.transition {
  transition: .5s;
}

#header {
  background-color: #F0F2F6;
  font-family: 'Titillium Web', sans-serif;
  position: relative;
}

@media (max-width: 1023px) {
  #header {
    padding-top: 10px;
    padding-bottom: 0;
  }
}

#header #sandwich, #header #sandwich-close {
  position: absolute;
  right: 20px;
  top: 20px;
  display: none;
  z-index: 2;
}


@media (max-width: 1023px) {
  #header #sandwich {
    display: inline-block;
  }
  #header #sandwich-close {
  display: none;
  }
}

#header #sandwich .kbicon, #header #sandwich-close .kbicon {
  font-size: 26px;
  color: #2a0679;
}

#header #sandwich:hover, #header #sandwich-close:hover {
  text-decoration: none;
}

#header #logo {
  margin: 10px 0;
  position: relative;
  display: inline-block;
}

@media (max-width: 1023px) {
  #header #logo {
    margin-top: 0;
  }
}

#header #logo h1 {
  font-size: 18px;
  line-height: 21px;
  position: absolute;
  left: 100%;
  bottom: 0;
  margin: 0;
  padding-left: 10px;
  color: #4A4A4A;
  font-weight: 400;
  display: inline-block;
}

@media (max-width: 1023px) {
  #header #logo h1 {
    font-size: 16px;
    padding-left: 8px;
  }
}

#homePersonas, #homeEmpresas {
  color: #555555;
  font-size: 16px;
  text-decoration: none;
  margin-top:5px;
  margin-right: 25px !important;
  height: 31px;
  width: 73px;
  display: inline-block;
  font-weight: 400;
  vertical-align: top;
}
#homePersonas:hover, #homePersonas:focus, #homeEmpresas:hover, #homeEmpresas:focus, .homeActive {
  font-weight: 600 !important;
}
.homeActive:before {    
  content: '';
  position: absolute;
  top: 38px;
  margin: 0 17px;
  border-bottom: 13px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  z-index: 10;
}

#header #logo a {
  display: block;
}

#header #logo a img {
  width: 241px;
}



#header #header-firstlevel {
  margin: 10px 0 0;
  display: inline-block;
  text-align: right;
  width: 100%;
}

#header #header-firstlevel div{
  width: max-content;
  display: inline-block;
  height: 31px;
}

#header #header-firstlevel div.header-box {
  width: max-content;
  height: 31px;
}
#header #header-firstlevel .cookies-off{
  text-align: center;
}
#header #header-firstlevel .cookies-off a{
  margin-right: 0;
}
#header #header-firstlevel a.btn-cookie-button{
  position: absolute;
  top: 6px;
  right: 20px;
  margin-right: 0;
  width: 175px;
}
#header #header-firstlevel p, #header #header-firstlevel p span {
  margin:8px 0 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #555555;
  text-align: right;
}

#header #header-firstlevel p{
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

/* estilos header */
@media screen and (min-width:1024px) and (max-width:1199px) {
  #header .container {
    width: 1000px;
    padding-right: 0;
    padding-left: 0;
  }
    #menu .container {
    width: 1000px;
    padding-right: 0;
    padding-left: 0;
  }
}

a.btn-login{
  background: #6a2e92;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 400;
  padding: 6px 0;
  border: none;
  outline: none;
  line-height: 1.2;
  float: right;
  width: 140px;
  text-align: center;
  margin: 12px 0;
}

@media screen and (max-width:1023px) and (min-width:992px) {
  #header #header-firstlevel div.header-box {
    margin-top: 10px;
    background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
    width: 255%;
    border-left: none;
    height: 60px;
    position: absolute;
    right: -6%;
    top: 40px;
  }
}
@media screen and (max-width:991px) and (min-width:801px) {
  #header #header-firstlevel div.header-box {
    margin-top: 10px;
    background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
    width: 320%;
    border-left: none;
    height: 60px;
    position: absolute;
    right: -17%;
    top: 40px;
  }
}
@media screen and (max-width:800px) and (min-width:768px) {
  #header #header-firstlevel div.header-box {
    margin-top: 10px;
    background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
    width: 270%;
    border-left: none;
    height: 60px;
    position: absolute;
    right: -5%;
    top: 40px;
  }
}

@media screen and (max-width: 767px) and (min-width: 576px) {
#header #header-firstlevel div.header-box {
    margin-top: 10px;
    background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
    width: 240%;
    border-left: none;
    height: 60px;
    position: absolute;
    right: 0;
    left: 0;
    top: 40px;
}
}


a.btn-login p{
  padding: 0;
  margin: 0;
}
a.btn-login:hover{
  color: #fff;
  text-decoration: none;
  background: #441364;
}

@media (min-width: 1024px) {
  .col-md-5 {
    flex: 0 0 41.666667%;
    width: 41.666667%;
  }
  .homeActive:before {    
    top: 44px;
  }
  #header #header-firstlevel div.header-buttons {
    display:none;
  }
}

@media (max-width: 1023px) {
  #header #header-firstlevel {
    margin: 7px 0 0;
    width: 100%;
    padding-right: 30px;
  }
  #header #logo a img {
    width: 100%;
    max-width: 241px;
  }
  #header .container {
    max-width: 100%;
  }
  #header .col-md-5 {
    flex: 100%;
    max-width: 100%;
    padding: 0px;
  }
  #header .col-md-7, #header .col-md-5 {
    width: 100%;
  }
  #header #header-firstlevel p {
    line-height: 0.5;
    color: #fff;
    margin: 15px 0 0 20px;
    font-size: 18px;
    font-weight: 400;
    width: 50%;
    float: none;
    text-align: right;
    padding-right: 50px;
    border: none;
  }
  #header #header-firstlevel p span {
    line-height: 1;
    color: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
  }

  #homePersonas, #homeEmpresas {
    font-size: 18px;
    margin-right: 0px !important;
    width: 49%;
    text-align: center;
    padding-bottom: 38px;
  }
  .homeActive:nth-child(1):before {
    border-color: transparent transparent #6a2e92 transparent;
  }
  .homeActive:nth-child(2):before {
    border-color: transparent transparent #232272 transparent;
  }
  
  a.btn-login, a#btn-login-on, a#btn-login-off {
    background: #fff;
    color: #6a2e92;
    font-size: 16px;
    border-radius: 4px;
    font-weight: 600;
    padding: 6px 0;
    border: none;
    outline: none;
    line-height: 1.2;
    float: right;
    width: 140px;
    text-align: center;
    margin: 14px 30px 0 0;
}
  
  a.btn-login:hover{
    background-color: #cdcdcd;
    color: #6a2e92;
  }
  #menu-mobile {
    margin-top:60px;
  }
}

@media (min-width: 1024px) {
#menu-mobile {
    display:none;
}
}

@media (max-width: 575px) {
  #header #header-firstlevel div.header-box {
    margin-top: 10px;
    background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
    width: 100%;
    border-left: none;
    height: 60px;
    position: absolute;
    right: 0%;
    top: 40px;
  }
  
  .homeActive:before{
    top: 38px;
  }
  #header #header-firstlevel p {
    margin: 15px 0 0 20px;
    width: 50%;
    text-align: left;
    float: left;
    padding-right: 20px;
  }
  #header #header-firstlevel p span {
    display: block;
  }
   a.btn-login, a#btn-login-on, a#btn-login-off {
    margin: 15px 20px 0 0;
  }
  #header #header-firstlevel {
    padding: 0;
  }
  #header #header-firstlevel a.btn-cookie-button{
    top: 0;
    left: 50%;
    top: 6px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .responsive{
    width: 100%;
  }
    #menu-mobile {
    margin-top:60px;
  }
}



@media (max-width: 359px) {
  #header #header-firstlevel p {
    margin: 15px 0 0 10px;
  }
  a.btn-login, a#btn-login-on, a#btn-login-off {
    margin: 10% 10% 0 0;
  }
}

#header #header-firstlevel ul {
  padding-left: 0;
  margin-bottom: 0px;
}

#header #header-firstlevel ul li.header-firstlevel-term {
  display: inline-block;
  margin-left: 2px;
  position: relative;
  padding-bottom: 10px;
}

#header #header-firstlevel ul li.header-firstlevel-term:first-child {
  margin-left: 0;
}

#header #header-firstlevel ul li.header-firstlevel-term:last-child li a {
  background-color: #fff;
}

#header #header-firstlevel ul li.header-firstlevel-term:last-child a {
  background-color: #E60D2E;
  color: #fff;
  border-radius: 4px;
  position: relative;
  padding-left: 40px;
  letter-spacing: 0.4px;
}

#header #header-firstlevel ul li.header-firstlevel-term:last-child a .kbicon + .kbicon {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 20px;
  text-decoration: none;
}

#header #header-firstlevel ul li.header-firstlevel-term a {
  display: inline-block;
  font-size: 14px;
  line-height: 21px;
  color: #555555;
  padding: 4px 10px;
}

#header #header-firstlevel ul li.header-firstlevel-term .header-submenu {
  display: none;
  position: absolute;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  background-color: #ffffff;
  min-width: 210px;
  z-index: 5;
  left: 50%;
  top: 38px;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  text-align: left;
  padding: 20px;
}

#header #header-firstlevel ul li.header-firstlevel-term .header-submenu:after {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 7px;
  margin-left: -7px;
}

#header #header-firstlevel ul li.header-firstlevel-term .header-submenu ul {
  list-style-type: square;
  font-size: 6px;
}

#header #header-firstlevel ul li.header-firstlevel-term .header-submenu ul li a {
  font-size: 14px;
  line-height: 21px;
  color: #4a4a4a;
  display: block;
  padding: 0;
  padding-left: 5px;
  position: relative;
}

#header #header-firstlevel ul li.header-firstlevel-term .header-submenu ul li a:hover {
  color: #8c0f9a;
}

#header #header-firstlevel ul li.header-firstlevel-term .header-submenu ul li a .kbicon {
  position: absolute;
}

#header #header-sesion {
  background-color: #fff;
  padding: 4px 15px;
  border-radius: 4px 4px 0 0;
}

@media (max-width: 1023px) {
  #header #header-sesion {
    display: none;
  }
}

#header #header-sesion #shutdown {
  font-size: 14px;
  line-height: 21px;
  color: #555555;
  display: block;
  padding: 10px 0;
  letter-spacing: 0.4px;
  text-align: center;
}

#header #header-sesion #shutdown .kbicon {
  font-size: 16px;
}

#header #header-sesion h6 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: #4a4a4a;
}

#header #header-sesion h6 span {
  color: #2d0b64;
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  padding-left: 5px;
}

#header #header-sesion p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 14px;
  color: #4a4a4a;
}

#header #header-sesion p a {
  text-transform: lowercase;
  color: inherit;
}

.flag-b {
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  padding: 0px 0px 0px 0px;
  display: inline-block;
  width: 227px;
  margin-left: 40px;
}
.flag-b img {
  margin: 0;
  padding: 0;
  width: 54px;
  height: 36px !important;
}

.flag-b a {
  background: url(../img/arrow-group.svg) no-repeat 95% 50%;
  color: #333D47 !important;
  margin: 7px 0px 5px 10px;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
  font-weight: 400;
  width: 159px;
  font-size: 14px !important;
}
.flag-b a:hover{
  text-decoration: none;
  color: #333D47;
}


@media screen and (min-width:1023px) and (max-width:1199px) {
  .flag-b {
    margin-left: 15px;
  }
}
@media screen and (max-width:1023px) {
  .flag-b {
    margin-left: 10px;
    padding: 5px;
    width: auto;
    height: 43px;
  }
  .flag-b img{
    width: 43px;
    height: 31px !important;
  }
  .flag-b a {
    display: none;
  }
  
  .header-box {
	  z-index: 10;
  }
}

@media screen and (max-width:350px) {
  .flag-b {
    display: none;
  }
}
@media screen and (max-width:582px) and (min-width:575px) {
  .flag-b {
    margin-left: 0px;
  }
}

#menu {
  background-color: #fff;
  font-family: 'Titillium Web', sans-serif;
  position: relative;
  z-index: 4;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

a.home {
  font-size: 22px !important;
  color: #555555;
}

@media (max-width: 1023px) {
  #menu {
    display: none;
  }
}



#menu ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

#menu ul li {
  display: inline-block;
  text-align: center;
  width: 16.6%;
}
#menu ul li:first-child {
  text-align: left;
  width: 18%;
}
#menu ul li:last-child {
  text-align: right;
  width: 18%;
}


@media screen and (min-width:1023px) and (max-width:1199px) {
  #menu ul li:first-child {

  }
}

@media screen and (min-width:1023px) and (max-width:1199px) {
	#menu ul li {  
	  width: 15%; 
	} 
	
	#menu ul li:first-child, #menu ul li:last-child { 
	width: 136px; 
	} 
}


#menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: #555555;
}

#menu ul li a.menu-trigger {
  text-decoration: none;
  cursor: pointer;
  padding: 15px 0;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  width: 100%;
}

#menu ul li a.menu-trigger:hover {
  color: #6a2e92;
}

#menu ul li a.menu-trigger:hover span:after,  #menu ul li a.menu-trigger.active span:after {
    content: '';
    position: absolute;
    top: 34px;
    left: 28%;
    border-bottom: 7px solid #441364;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 10;
}

#menu ul li:first-child a.menu-trigger:hover span:after, #menu ul li:first-child a.menu-trigger.active span:after {
    content: '';
    border: none;
}

#menu ul li:last-child a.menu-trigger:hover span:after, #menu ul li:last-child a.menu-trigger.active span:after {
    content: '';
    position: absolute;
    top: 34px;
    left: 37%;
    border-bottom: 7px solid #541e77;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 10;
}

#menu ul li a.menu-trigger span {
  display: inline-block;
  position: relative;
  padding: 7px 0 0;
  padding-right: 18px;
}

#menu ul li a.menu-trigger span .kbicon {
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width:1023px) and (max-width:1199px) {
  #menu ul li a.menu-trigger {
    font-size: 15px;
  }
}


#menufixed {
  position: relative;
  z-index: 11000;
}

#blanket-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 2;
  background-image: linear-gradient(to bottom right, #441364, #6a2e92);
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.3);
}

#blanket-wrapper .col-md-12 {
  min-height: 0;
}

.blanket {
  font-family: 'Titillium Web', sans-serif;
  display: none;
  color: #fff;
}

.blanket .pl0 {
  padding-left: 0;
}

.blanket .pl30 {
  padding-left: 30px;
}

.blanket .pr30 {
  padding-right: 30px;
}

.blanket .submenu ul {
  background-color: #eeeeee;
  min-height: 390px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.blanket .submenu ul li a {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  padding: 21px 20px;
  padding-left: 75px;
  display: block;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.4px;
}

.blanket .submenu ul li a:hover, .blanket .submenu ul li a.active {
  background-color: #ffffff;
  text-decoration: none;
}

.blanket .submenu ul li a .kbicon {
  position: absolute;
  font-size: 24px;
  left: 40px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.blanket .blanket-column {
  padding: 30px 0;
}

@media (max-width: 1200px) {
  .blanket .blanket-column {
    padding-top: 24px;
  }
}

.blanket .blanket-column.pr30 {
  padding-right: 20px;
}

.blanket .blanket-column .blanket-column-link {
  display: inline-block;
}

.blanket .blanket-column .blanket-column-link:hover {
  text-decoration: none;
}

.blanket .blanket-column .blanket-column-link:hover h5 {
  text-decoration: underline;
}

.blanket .blanket-column .blanket-column-link:hover h5 .kbicon {
  text-decoration: none;
}

.blanket .blanket-column .blanket-column-link:hover h6 {
  text-decoration: none;
  color: #fff;
}

.blanket .blanket-column .blanket-column-link h5 {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 15px;
  padding-right: 25px;
  position: relative;
}

.blanket .blanket-column .blanket-column-link h5 .kbicon {
  position: absolute;
  right: 0;
  top: 2px;
}

.blanket .blanket-column .blanket-column-link h6 {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  color: #4a4a4a;
  margin-bottom: 0;
}

.blanket .blanket-column .blanket-column-link h6 span {
  font-weight: 700;
}

.blanket .blanket-column .blanket-box {
  background-color: #FAFAFA;
  border-radius: 3px;
  border: 1px solid #F1F1F1;
  padding: 0;
  height: 157px;
}

.blanket .blanket-column .blanket-box h4 {
  color: #692e91;
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  margin-top: 15px;
}

.blanket .blanket-column .blanket-box h4 .kbicon {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 10px;
}

.blanket .blanket-column .blanket-box p {
  font-size: 16px;
  color: #6a2e92;
  margin: 0;
  line-height: 1.4;
}
.blanket .blanket-column .blanket-box div {
  display: inline-block;
}
.blanket .blanket-column .blanket-box .sac {
  width: 48%;
  height: 155px;
  background-image: url(../img/sac.jpg);
  background-position: center;
  background-repeat: no-repeat;
}

.blanket .blanket-column .blanket-box .image {
  width: 48%;
  height: 155px;
  background-image: url(../img/img-box.jpg);
  background-position: center;
  background-repeat: no-repeat;
}
.blanket .blanket-column .blanket-box div:last-child {
  width: 48%;
  padding: 15px 20px;
  height: 155px;
  vertical-align: top;
}
@media (max-width: 1200px) {
  .blanket .blanket-column .blanket-box div:last-child {
    width: 46%;
    padding: 15px;
    height: 155px;
    vertical-align: top;
  }
  .blanket .blanket-column .blanket-box h4 {
    color: #692e91;
    font-size: 15px;
    line-height: 21px;
    font-weight: 700;
    margin-top: 15px;
  }
}

.blanket .blanket-column .blanket-box div a {
  background: #6a2e92;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  font-weight: 400;
  padding: 6px 0;
  margin: 25px auto 0;
  border: none;
  outline: none;
  line-height: 1.2;
  width: 100% !important;
  float: right;
  text-align: center;
}

.blanket .blanket-column .blanket-box div a:hover {
  background: #441364;
  text-decoration:none;
}

.blanket .blanket-column h3 {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 15px;
  letter-spacing: 0.4px;
}

@media (max-width: 1200px) {
  .blanket .blanket-column h3 {
    padding-bottom: 10px;
  }
}

.blanket .blanket-column h3 a {
  color: #222273;
  display: inline-block;
  padding-right: 25px;
}

.blanket .blanket-column h3 a:hover {
  color: #8c0f9a;
}

.blanket .blanket-column h3 a:hover .kbicon {
  text-decoration: none;
}

.blanket .blanket-column h3 a.target {
  position: relative;
}

.blanket .blanket-column h3 a.target .kbicon {
  position: absolute;
  right: 0;
  top: 2px;
}

.blanket .blanket-column h3 + p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  color: #4a4a4a;
  display: inline-block;
  margin-bottom: 0;
  padding-bottom: 8px;
}

.blanket .blanket-column h3 + p strong {
  font-weight: 700;
}

.blanket .blanket-column ul {
  padding-bottom: 20px;
  padding-left: 12px;
  margin: 0;
  list-style-type: square;
}

@media (max-width: 1200px) {
  .blanket .blanket-column ul {
    padding-bottom: 15px;
  }
}

.blanket .blanket-column ul:last-child {
  padding-bottom: 0;
}

.blanket .blanket-column ul ul {
  padding-bottom: 0px;
  padding-left: 10px;
}

.blanket .blanket-column ul li {
  font-size: 12px;
}
.blanket .blanket-column ul li li {
  font-size: 11px;
}
.blanket .blanket-column ul li ul {
  margin-bottom: 5px;
}

.blanket .blanket-column ul li li a {
  font-size: 14px;
  line-height: 27px;
}
.blanket .blanket-column ul li a i {
  font-size: 22px !important;
}

.blanket .blanket-column ul li a:hover {
  text-decoration: underline;
}

.blanket .blanket-column ul li p, .blanket .blanket-column ul li a {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .blanket .blanket-column ul li p, .blanket .blanket-column ul li a {
    font-size: 13px;
  }
}

.blanket .submenu-content {
  display: none;
}

.blanket .submenu-content.active {
  display: inline-block;
}

.blanket .submenu-content .col-md-8 + .col-md-4 {
  padding-right: 30px;
}

body {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  position: relative;
  height: 100%;
}

#menu-wrapper-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 11;
}

/*#menu-wrapper{
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	min-height: 100vh;
	z-index: 100;
	pointer-events: none;
	display: block;
	&.active{
		pointer-events: auto;
		transform: translate3d(-100%,0,0);
		transition-delay: 0s;
	}
}*/
#menu-mobile {
  z-index: 12;
  width: 100%;
  position: absolute;
  left: 100%;
  max-height: 100vh;
  pointer-events: none;
  display: none;
  overflow-y: scroll;
  font-family: 'Titillium Web', sans-serif;
}

#menu-mobile.active {
  pointer-events: auto;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  transition-delay: 0s;
  display: block;
}

#menu-mobile #menu-mobile-header {
  position: relative;
  padding: 25px;
  padding-top: 30px;
  color: #fff;
  background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
}

#menu-mobile #menu-mobile-header a {
  position: absolute;
  right: 16px;
  top: 19px;
}

#menu-mobile #menu-mobile-header a:hover {
  text-decoration: none;
}

#menu-mobile #menu-mobile-header a .kbicon {
  color: #fff;
  font-size: 26px;
}

#menu-mobile #menu-mobile-header p {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
}

#menu-mobile #menu-mobile-header h2 {
  margin: 0;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
}

#menu-mobile #menu-mobile-firstlevel .table {
  display: table;
  width: 100%;
}

#menu-mobile #menu-mobile-firstlevel .table .tr {
  display: table-row;
}

#menu-mobile #menu-mobile-firstlevel .table .tr .td:last-child p, #menu-mobile #menu-mobile-firstlevel .table .tr .td:last-child .kbicon {
  color: #fa3e3e;
}

#menu-mobile #menu-mobile-firstlevel .table .tr .td {
  display: table-cell;
  width: 33%;
  text-align: center;
  vertical-align: middle;
  padding: 15px;
  border: 1px solid #dbdbdb;
  border-bottom: 2px solid #dbdbdb;
  background-color: #fafafa;
  border-top: none;
}

#menu-mobile #menu-mobile-firstlevel .table .tr .td:hover {
  text-decoration: none;
}

#menu-mobile #menu-mobile-firstlevel .table .tr .td.active {
  border-bottom: 2px solid #fff;
  background-color: #fff;
}

#menu-mobile #menu-mobile-firstlevel .table .tr .td .kbicon {
  color: #2d0b63;
  font-size: 30px;
}

#menu-mobile #menu-mobile-firstlevel .table .tr .td p {
  font-size: 14px;
  line-height: 21px;
  color: #422474;
  margin: 0;
}

#menu-mobile #menu-mobile-firstlevel .menu-mobile-submenu {
  padding: 9px 15px 18px;
  background-color: #fff;
  display: none;
}

#menu-mobile #menu-mobile-firstlevel .menu-mobile-submenu ul {
  margin: 0;
  padding-left: 15px;
  list-style-type: square;
}

#menu-mobile #menu-mobile-firstlevel .menu-mobile-submenu ul li {
  font-size: 12px;
}

#menu-mobile #menu-mobile-firstlevel .menu-mobile-submenu ul li a {
  color: #4a4a4a;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  display: inline-block;
  padding: 9px 0;
}

#menu-mobile #menu-mobile-secondlevel ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level {
  display: none;
  border-bottom: 2px solid #dbdbdb;
  background-color: #fff;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level .mobile-last-level-link {
  display: block;
  font-size: 16px;
  line-height: 1.31;
  font-weight: 400;
  color: #777;
  margin-bottom: 0;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid #dfdfdf;
  padding: 17px 15px 17px 16px;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level .mobile-last-level-link:last-child{
  border-bottom: none;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level .mobile-last-level-link + ul {
  display: none;
  padding: 25px 30px 25px 55px;
  background-image: linear-gradient(288deg, #232272, #2e1d6d 17%, #6a2e92);
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level .mobile-last-level-link .kbicon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  opacity: .5;
  font-size: 12px;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul {
  display: block;
  padding-left: 20px;
  list-style: square;
  font-size: 9px;
  padding-bottom: 15px;
  color: white;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul li {
  padding-bottom: 15px;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul li:last-child {
  padding-bottom: 0;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul li a {
  font-size: 16px;
  font-weight: 400;
  color: white;
  width: max-content;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: -o-max-content;
  padding-bottom: 1px;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul li a:hover{
  border-bottom: 1px solid white;
  padding-bottom: 0px;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul li p {
  font-size: 16px;
  font-weight: 300;
  color: #4a4a4a;
  margin: 0;
}

#menu-mobile #menu-mobile-secondlevel ul .mobile-last-level ul ul {
  padding-bottom: 0;
  padding-top: 15px;
  padding-left: 15px;
}

#menu-mobile #menu-mobile-secondlevel ul li a {
  display: block;
  line-height: 1.17;
}

#menu-mobile #menu-mobile-secondlevel ul li a:hover {
  text-decoration: none;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-primary, .propuesta{
  padding: 16px;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: #555;
  background-color: #e4e6e9;
  border-bottom: 1px solid #cdcdcd;
  position: relative;
  padding-right: 30px;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-primary:hover, #menu-mobile #menu-mobile-secondlevel ul .mobile-last-level .mobile-last-level-link:hover{
  color: #6A2E92;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-primary > .kbicon {
  font-size: 12px;
  position: absolute;
  top: 19px;
  right: 20px;
  color: #555;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-primary + ul {
  display: none;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-secondary {
  padding: 13px 25px;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #2d0b63;
  background-color: #fff;
  border-bottom: 2px solid #dbdbdb;
  position: relative;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-secondary + .mobile-last-level {
  padding-left: 65px;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-secondary .kbicon {
  font-size: 17px;
  margin-right: 8px;
}

#menu-mobile #menu-mobile-secondlevel ul li a.mobile-secondary .kbicon + .kbicon {
  position: absolute;
  top: 13px;
  right: 20px;
  margin-right: 0;
  opacity: .6;
}

#menu-mobile #menu-mobile-secondlevel ul li a#mis-ofertas-mobile {
  background-color: #6a2e92;
  color: #fff;
  border: none;
}

#menu-mobile #menu-mobile-secondlevel ul li a#mis-ofertas-mobile span {
  display: inline-block;
  background-color: #fff;
  color: #2d0b63;
  font-size: 14px;
  line-height: 21px;
  width: 21px;
  border-radius: 50%;
  text-align: center;
  margin-left: 10px;
  font-weight: 700;
}

#menu-mobile #menu-mobile-secondlevel ul li a#shutdown-mobile {
  color: #e98202;
  border: none;
}

#menu-mobile #menu-mobile-secondlevel ul li a#shutdown-mobile .kbicon {
  font-size: 25px;
  color: #e98202;
}

.alerta {
  color: #fff;
  width: 90%;
  text-align: center;
  padding: 4px 5%;
  margin: 0 0 20px 0;
}

.alerta span {
  border: 3px solid #fff;
  padding: 5px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 20px;
}

.accordion_check {
  font-weight: normal;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 15px 0px;
  width: 100%;
  max-width: 700px;
}

.accordion_check h3 {
  font-size: 14px;
  margin: 0px;
  font-weight: 600;
  padding-bottom: 20px;
}

.accordion_check .item {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .accordion_check .radio.pull-left {
    width: 60%;
  }
}

.accordion_check label {
  font-size: 14px;
  font-weight: normal;
  padding-top: 4px;
}

@media (max-width: 767px) {
  .accordion_check label {
    padding-top: 0px;
  }
}

.accordion_check .content {
  padding: 0 35px 10px 35px;
  display: none;
}

.accordion_check .content .options {
  padding: 20px 0;
}

@media (max-width: 767px) {
  .accordion_check .content .options {
    padding: 0px;
  }
}

.accordion_check .content .options a {
  font-size: 14px;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .accordion_check .content .options a {
    width: 100%;
    display: block;
    padding-bottom: 10px;
  }
}

.accordion_check .content .item-account {
  padding: 15px 0;
  border-top: 1px solid #CCCCCC;
}

.collapse .collapse-content.close {
  height: 0;
  overflow: hidden;
}

.collapse .collapse-content.open {
  height: auto;
  overflow: hidden;
}

.accordion {
  margin: auto;
  width: 100%;
}

.accordion h1 {
  text-align: center;
}

.accordion h4 {
  cursor: pointer;
  margin: 0;
  padding: 13px 37px 13px 0;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accordion h4 span {
  color: #D0021B;
  float: left;
  font-size: 30px;
  margin-right: 10px;
}

.accordion h4 span.flecha {
  color: #D0021B;
  position: absolute;
  font-size: 18px;
  left: inherit;
  right: 0;
  top: 16px;
  transition: All .3s ease;
  -webkit-transition: All .3s ease;
  -moz-transition: All .3s ease;
  -o-transition: All .3s ease;
}

.accordion h4 span.flechaActiva {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.accordion .block {
  border-bottom: 1px solid #c3c3c3;
}

.accordion p {
  margin: 0;
  font-size: 12px;
  padding: 20px 0;
}

.banner {
  height: 223px;
  font-weight: 300;
}

.banner .banner-content {
  width: 62%;
  z-index: 1;
  text-align: center;
  color: #fff;
}

@media (max-width: 480px) {
  .banner .banner-content .banner-summary {
    color: #000;
    background-color: #fff;
    padding: 10px;
    font-size: 20px;
    position: absolute;
    bottom: -60px;
    left: 0;
  }
}

.banner .banner-content .banner-summary strong {
  font-weight: 500;
}

.banner .banner-content.banner-content--layer {
  top: 35%;
}

@media (max-width: 992px) {
  .banner .banner-content.banner-content--layer {
    top: 50%;
  }
}

@media (max-width: 992px) {
  .banner .banner-content {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .banner .banner-content {
    height: 70%;
  }
}

.banner h1, .banner .banner-title {
  margin: 0;
  font-weight: 300;
  font-size: 32px;
  line-height: 120%;
}

@media (max-width: 768px) {
  .banner h1, .banner .banner-title {
    font-size: 22px;
  }
}

.banner p {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
  margin: 0 auto;
  max-width: 80%;
}

@media (max-width: 768px) {
  .banner p {
    font-size: 16px;
    max-width: inherit;
  }
}

.banner hr {
  opacity: .4;
}

body {
  box-sizing: border-box;
  font-weight: 400;
  font-family: 'Titillium Web', sans-serif;
}

.menu-content {
  position: fixed;
  box-sizing: border-box;
  width: 200px;
  height: 100%;
  left: 0px;
  top: 0px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.menu-content a {
  transition: all .2s ease-in;
}

.menu-content .top {
  background: #ec0000;
  text-align: center;
  padding: 10px 0px;
}

.menu-content .top img {
  height: 50px;
  margin-left: 10px;
}

.menu-content ul {
  list-style: none;
  margin: 0px;
  padding: 0px 0 0 0px;
}

.menu-content ul li a {
  font-size: 14px;
  text-align: left;
  width: 100%;
  display: block;
  color: #5B5A5B;
  padding: 10px 20px;
  box-sizing: border-box;
}

.menu-content ul li a:hover, .menu-content ul li a.active {
  background: #ec0000;
  color: #fff;
}

.main-content {
  padding: 0 40px 0 240px;
}

.panel-example {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 40px 15px 0px 15px;
  position: relative;
}

.panel-example .title {
  margin: 0px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.btn {
  font-size: 14px;
  border-radius: 2px;
  line-height: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 30px;
  border: none;
  font-weight: 600;
}

.btn-success {
  background-color: #628E37;
}

.btn-success:hover {
  background-color: #466826;
}

.btn-default {
  background-color: #eaeaea;
  color: #555;
}

.btn-default:hover {
  background-color: #ccc;
}

.forms {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.forms h3 {
  color: #444444;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 20px;
  margin-top: 0;
}

.forms.align-center {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.forms.align-center .form-field {
  display: block;
  float: left;
}

.forms.align-center .form-field.three {
  width: 30%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  text-align: center;
}

@media (max-width: 768px) {
  .forms.align-center .form-field.three {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.form-field {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .form-field {
    display: block;
    width: 100%;
    clear: both;
    margin-bottom: 30px;
  }
}

.form-field .msj-small {
  width: 100%;
  float: none;
  padding-top: 5px;
  overflow: hidden;
  display: block;
}

.form-field .form-label {
  width: 100%;
  display: block;
  clear: both;
  color: #444444;
  line-height: 100%;
  margin: 0 0 10px;
  font-size: 14px;
  text-align: left;
}

.form-field .form-input {
  font-size: 14px;
  border-radius: 3px;
  padding: 15px 5% 13px;
  line-height: 100%;
  border: solid 1px #ccc;
  color: #424242;
  width: 90%;
  float: left;
}

@media (max-width: 768px) {
  .form-field .form-input {
    padding: 15px 2% 13px;
    width: 96%;
  }
}

.form-field .form-input::-webkit-input-placeholder {
  color: #9F9F9F;
  padding-top: 17px 0px 13px;
  font-size: 18px;
  font-weight: 300;
  line-height: 17px;
  text-transform: uppercase;
}

.form-field .form-input:-ms-input-placeholder {
  color: #9F9F9F;
  padding-top: 17px 0px 13px;
  font-size: 18px;
  font-weight: 300;
  line-height: 17px;
  text-transform: uppercase;
}

.form-field .form-input::-ms-input-placeholder {
  color: #9F9F9F;
  padding-top: 17px 0px 13px;
  font-size: 18px;
  font-weight: 300;
  line-height: 17px;
  text-transform: uppercase;
}

.form-field .form-input::placeholder {
  color: #9F9F9F;
  padding-top: 17px 0px 13px;
  font-size: 18px;
  font-weight: 300;
  line-height: 17px;
  text-transform: uppercase;
}

.form-field .form-input.amount {
  text-align: right;
  position: relative;
  background-image: url(/include/img/text-usd.jpg);
  background-repeat: no-repeat;
  background-size: 9px 18px;
  background-position: 10px 15px;
}

.form-select {
  width: 100%;
  border-radius: 2px;
  font-size: 14px;
  padding: 10px 20px;
  border: solid 1px #ccc;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAYAAADebrddAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAVdEVYdENyZWF0aW9uIFRpbWUAMS8xMC8xNwUHpKwAAABaSURBVBiVY/iUGf//jRz//9+Xzv/HBn5fOv//jRz//0+Z8f8Z3sjx/38twIBVA0whTJ4BXQCmAZs4AzaJ70vnYzWAAZuVMIzuNAZ8bkT3A4pimIa3uvJYQwcAx6DxlRJQIk0AAAAASUVORK5CYII="), url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAqCAYAAAByfjF8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAVdEVYdENyZWF0aW9uIFRpbWUAMS8xMC8xNwUHpKwAAAAaSURBVAiZYzhz5sx/JgYGBoZhQDD8////PwDq8AewGpmT+wAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: 82% center, 60% center;
  position: relative;
}

@media (max-width: 992px) {
  .form-select {
    background-position: 95.5% center, 90% center;
  }
}

.form-strong .form-label {
  color: #000;
  font-weight: 600;
}

.form-strong .form-field {
  padding: 0 5%;
  width: 90%;
  float: left;
}

.form-strong .form-field:first-child {
  width: 95%;
  padding-left: 0;
}

.form-strong .form-field:last-child {
  width: 95%;
  padding-right: 0;
}

.form-strong .form-field.not-label {
  padding-top: 24px;
}

@media (max-width: 992px) {
  .form-strong .form-field {
    width: 100% !important;
    margin-bottom: 20px;
  }
}

.form-strong .form-select {
  padding: 20px;
}

.form-strong .form-input {
  padding: 20px 5%;
  width: 90%;
}

.form-strong .form-input::-webkit-input-placeholder {
  font-size: 14px;
  text-transform: inherit;
  color: #444444;
}

.form-strong .form-input:-ms-input-placeholder {
  font-size: 14px;
  text-transform: inherit;
  color: #444444;
}

.form-strong .form-input::-ms-input-placeholder {
  font-size: 14px;
  text-transform: inherit;
  color: #444444;
}

.form-strong .form-input::placeholder {
  font-size: 14px;
  text-transform: inherit;
  color: #444444;
}

.form-strong .form-submit {
  height: 58px;
  width: 58px;
  background-color: #fff;
  border-radius: 100%;
  border: solid 1px #ccc;
  margin: 0 auto;
}

.form-strong .form-submit i {
  font-size: 20px;
}

.form-strong .form-submit:hover {
  cursor: pointer;
}

/*!
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    padding-right: 0;
  padding-left: 0;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  min-height: 1px;
  /*
  padding-right: 15px;
  padding-left: 15px;*/
  display: inline-block;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    /*flex: 0 0 auto;*/
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    /*flex: 0 0 8.333333%;*/
    width: 8.333333%;
  }
  .col-lg-2 {
    /*flex: 0 0 16.666667%;*/
    width: 16.666667%;
  }
  .col-lg-3 {
    /*flex: 0 0 25%;*/
    width: 25%;
  }
  .col-lg-4 {
    /*flex: 0 0 33.333333%;*/
    width: 33.333333%;
  }
  .col-lg-5 {
    /*flex: 0 0 41.666667%;*/
    width: 41.666667%;
  }
  .col-lg-6 {
    /*flex: 0 0 50%;*/
    width: 50%;
  }
  .col-lg-7 {
    /*flex: 0 0 58.333333%;*/
    width: 58.333333%;
  }
  .col-lg-8 {
    /*flex: 0 0 66.666667%;*/
    width: 66.666667%;
  }
  .col-lg-9 {
    /*flex: 0 0 75%;*/
    width: 75%;
  }
  .col-lg-10 {
    /*flex: 0 0 83.333333%;*/
    width: 83.333333%;
  }
  .col-lg-11 {
    /*flex: 0 0 91.666667%;*/
    width: 91.666667%;
  }
  .col-lg-12 {
    /*flex: 0 0 100%;*/
    width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/*# sourceMappingURL=bootstrap-grid.css.map */
.overlay-modal{
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 11001;
  display: none;
}
.modal-grupo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-family: "Titillium Web", helvetica, arial, sans-serif;
  font-size: 14px;
  color: #818181;
  -webkit-font-smoothing: antialiased;
  display: none;
  z-index: 11002;
  width: 90%;
  height: 95%;
  margin: auto;
}

.modal-grupo .modal--box {
  background-color: #f5f5f5;
  border-radius: 4px;
  border: solid 1px #DEE4EE;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.42);
  display: inline-block;
  width: 100%;
  overflow:hidden;
  overflow-y: auto;
  height: 100%;
  z-index: 1000;
}

.modal-grupo .modal--box__white {
  background-color: #fff;
}
@media screen and (max-width: 991px){
  .modal-grupo .modal--box{
    height: auto;
    max-height: 98vh;
  }
}
.modal--header {
  padding: 30px 30px 15px 30px;
  text-align: center;
  position: relative;
}

.modal--close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  line-height: 10px;
  text-indent: 9999px;
  overflow: hidden;
  background-image: url("../img/icon-exit.png");
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 10px;
  transition-duration: 0s;
}

.modal--title {
  color: #6A2E92;
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 100%;
}

.modal--title__grey {
  color: #505964;
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 100%;
}

.modal--subtitle {
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  color: #505964;
}

.modal-grupo.activo {
  display: block;
}


.modal--content {
  width: 100%;
  text-align: center;
  background-color: #F5f5f5;
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
}

.modal--footer {
  padding: 20px 20px 30px 20px;
  vertical-align: middle;
}

.modal--footer .box-btn {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .modal--footer .box-btn {
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.flecha {
  content: '';
  display: block;
  position: relative;
  bottom: 13px;
  height: 0;
  width: 0;
  border-bottom: 15px solid white;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  margin: 0 auto;
  left: 0;
  right: 0;
  -webkit-filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.1));
}

.modal--content__sms {
  padding: 40px;
  text-align: center;
  width: 100%;
  background-color: #FFF;
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin-top: -15px;
  z-index: 0;
}

.modal--content__box {
  padding: 0px 25px 0px 25px;
  text-align: center;
  width: 100%;
  z-index: 0;
}

/* Form */
#alerta {
  margin: 20px 10px 0;
  padding: 5px;
  border-radius: 3px;
}

#alerta p {
  color: #e60d2e;
  margin: 0;
}

.o-tab__nav {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 0;
}

.o-tab__list {
  display: inline-block;
  padding: 0;
}

.o-tab__item {
  display: inline-block;
  font-size: 14px;
  vertical-align: top;
  transition: all .3s;
}

.o-tab__item:first-child .o-tab__btn {
  border-right: solid 1px #E0E0E0;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 1px 3px 2px rgba(212, 207, 207, 0.5);
}

.o-tab__item:last-child .o-tab__btn {
  border-radius: 0 5px 5px 0;
}

.o-tab__item.is-active .o-tab__btn {
  background-color: #6A2E92;
}

.o-tab__btn {
  box-shadow: 0 1px 3px 2px rgba(212, 207, 207, 0.5);
  border-radius: 5px;
  background-color: #FFF;
  display: block;
  text-align: center;
  padding: 30px 20px;
  min-width: 170px;
  color: #949494;
}

.o-tab__btn:hover, .o-tab__item.is-active .o-tab__btn {
  text-decoration: none;
  color: #FFF;
  font-weight: 600;
}

.o-tab__btn:hover {
  text-decoration: none;
  background-color: #6A2E92;
}

@media only screen and (max-width: 768px) {
  .o-tab__btn {
    padding: 30px 30px;
    min-width: 130px;
  }
}

@media only screen and (min-width: 1023px){
  #header #header-firstlevel div.header-box a{
    display: none;
  }
  #header #header-firstlevel div:last-child.cookies-off{
    width: auto;
  }
}

.o-tab__icon {
  display: block;
  margin: 0 auto 15px;
  background-repeat: no-repeat;
  background-position: top center;
}

.o-tab__icon--card {
  width: 42px;
  height: 30px;
  background-image: url("/include/img/icon-coordinates_card.png");
}

.o-tab__icon--device {
  width: 42px;
  height: 30px;
  background-image: url("/include/img/icon-number_pass.png");
}

.o-tab__btn:hover .o-tab__icon, .o-tab__item.is-active .o-tab__icon {
  background-position: bottom center;
}

.o-tab__content {
  padding: 40px;
  text-align: center;
  display: none;
  width: 100%;
  background-color: #FFF;
  border: solid 1px rgba(0, 0, 0, 0.1);
  margin-top: -12px;
}

.o-tab__content.is-active {
  display: block;
}

.o-tab__arrow {
  content: '';
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  border-bottom: 15px solid white;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  margin: 0 auto;
  left: 0;
  right: 0;
  -webkit-filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px -1px 1px rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.o-tab__indicator {
  padding-bottom: 15px;
  text-align: center;
  display: block;
  visibility: hidden;
  position: relative;
}

.o-tab__indicator .o-tab__text {
  padding: 15px 0;
  display: block;
}

.o-tab__item.is-active .o-tab__indicator {
  visibility: visible;
}

.o-alert {
  max-width: 683px;
  margin: 60px auto 0;
  display: block;
  border-radius: 5px;
  padding: 30px 50px;
  box-shadow: 0 1px 3px 2px rgba(212, 207, 207, 0.5);
  text-align: center;
  position: relative;
}

.o-alert--icon {
  padding-top: 60px;
}

.o-alert__footer {
  text-align: center;
  padding-top: 40px;
}

.o-alert__footer .o-btn {
  display: inline-block;
}

.o-alert__title {
  font-size: 30px;
  font-weight: 300;
  margin: 0 auto;
  color: #6A2E92;
  margin-bottom: 20px;
}

.o-alert__title--error {
  color: #DD2E44;
}

.o-alert__text {
  font-size: 18px;
  margin: 0 auto;
}

.o-alert__icon {
  position: absolute;
  width: 32px;
  height: 25px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
}

.o-alert__indicator--success .o-alert__icon {
  background-image: url("/include/img/icon-check.png");
}

.o-alert__indicator--error .o-alert__icon {
  background-image: url("/include/img/icon-cross.png");
}

.o-alert__indicator--dispositivo .o-alert__icon {
  background-image: url("/include/img/icon-cross.png");
}

.o-alert__indicator {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  width: 62px;
  height: 62px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 62px;
  -webkit-filter: drop-shadow(0px 2px 4px 0 rgba(0, 0, 0, 0.34));
  filter: drop-shadow(0px 2px 4px 0 rgba(0, 0, 0, 0.34));
}

.o-alert__indicator--success {
  background-color: #6A2E92;
}

.o-alert__indicator--dispositivo {
  background-color: #6A2E92;
}

.o-alert__indicator--error {
  background-color: #DD2E44;
}

.o-form__input {
  background-color: transparent;
}

.o-form__check .o-form__input {
  position: absolute;
  visibility: hidden;
}

.o-form__check .o-form__input:checked + .o-form__label:before {
  background-color: #5CB85C;
  border-color: #479947;
}

.o-form__check .o-form__input:checked + .o-form__label:after {
  left: 18px;
}

.o-form__check .o-form__input:checked[disabled] + .o-form__label:before {
  background-color: #F7F7F7;
  border-color: #D3D3D3;
}

.o-form__check .o-form__label {
  position: relative;
  padding-left: 55px;
  font-weight: 600;
  min-height: 28px;
  display: block;
  color: #777777;
  font-size: 17px;
  white-space: nowrap;
}

.o-form__check .o-form__label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 28px;
  background-color: #F7F7F7;
  border-radius: 23px 25px;
  border: solid 1px #D3D3D3;
  display: block;
}

.o-form__check .o-form__label:after {
  content: "";
  position: absolute;
  cursor: pointer;
  top: 1px;
  left: 1px;
  width: 26px;
  height: 26px;
  background-color: #FFFFFF;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
  display: block;
  border-radius: 28px;
  transition: all .3s ease-in-out;
}

@media only screen and (max-width: 768px) {
  .o-form__check .o-form__label {
    white-space: normal;
    min-height: inherit;
    line-height: 110%;
  }
  .o-form__check .o-form__label span {
    margin-top: 0;
  }
}

.o-form__label .is-error {
  color: #E60D2E;
}

.o-form__label .is-active {
  color: #449D44;
}

.o-form__actions {
  text-align: center;
  padding: 20px 0;
}

.o-form__actions .o-btn {
  margin-left: auto;
  margin-right: auto;
}

.o-form__actions.u-pb0 {
  padding-bottom: 0;
}

.o-form--material {
  margin: 0 auto;
}

.o-form--material .o-form__field {
  padding: 0 10px;
  position: relative;
}

.o-form--material .o-form__field .o-form__input {
  position: relative;
  z-index: 2;
  border: none;
  min-width: inherit;
  width: 50px;
  border-bottom: solid 2px #777777;
  text-align: center;
}

.o-form--material .o-form__field .o-form__input[type="password"] {
  font-size: 16px;
}

.o-form--material .o-form__field .o-form__input:focus {
  outline: none;
}

.o-form--material .o-form__field .o-form__input:focus ~ .o-form__label, .o-form--material .o-form__field .o-form__input:valid ~ .o-form__label {
  top: -30px;
}

.o-form--material .o-form__field .o-form__label {
  position: absolute;
  transition: all .3s;
  left: 0;
  right: 0;
  top: -15px;
  width: 100%;
  z-index: 3;
  color: #5C646C;
  font-size: 13px;
}

.o-form--material .o-form__field.o-form__field--small {
  padding: 0 5px;
}

.o-form--material .o-form__field.o-form__field--small .o-form__input {
  width: 35px;
}

.o-form--inline {
  display: table;
}

.o-form--inline .o-form__field {
  display: table-cell;
  vertical-align: middle;
}

.o-form--inline .o-form__actions {
  display: block;
  clear: both;
}

.alerta-dispositivo {
  display: none;
}

.icon--modal {
  height: 64px;
  width: 64px;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  background-color: #EC7900;
}

.icon--modal .la-exclamation-triangle {
  color: #fff;
  font-size: 36px;
  position: absolute;
  top: 12px;
  left: 15px;
}

.icon--modal__green {
  height: 64px;
  width: 64px;
  margin: 0 auto;
  border-radius: 50px;
  position: relative;
  background-color: #628E37;
}

.icon--modal__green .la-check {
  color: #fff;
  font-size: 36px;
  position: absolute;
  top: 12px;
  left: 15px;
}

.modal--rut__text {
  color: #505964;
  font-size: 20px;
  line-height: normal;
  font-weight: 400;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0;
}

.modal--cuenta {
  font-size: 14px;
  color: #505964;
}

.modal--pregunta {
  font-size: 16px;
  font-weight: 600;
  color: #505964;
}

.fondo {
  background-color: rgba(0, 0, 0, 0.7);
  background-color: #000\*8;
  opacity: 0.7\*8;
  -moz-opacity: 0.7;
  -ms-filter: alpha(opacity=70) \*8;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
}

.fondo.activo {
  display: block;
}

.circle {
  padding-left: 25px;
}

.circle li {
  position: relative;
  list-style: none;
}

.circle li:before {
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -18px;
}

.circle.list-wide li {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 400;
}

/*!
 * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/*a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}*/

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/*# sourceMappingURL=bootstrap-reboot.css.map */
/* pasos */
.steps {
  text-align: center;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .steps {
    overflow: visible;
  }
}

.steps:before {
  content: " ";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0px;
  bottom: 15px;
  background: #D2D2D2;
}

@media (max-width: 992px) {
  .steps:before {
    left: 0px;
    bottom: -10px;
  }
}

.steps .item {
  width: 33%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
}

@media (max-width: 992px) {
  .steps .item {
    display: none;
    width: 100%;
  }
}

.steps .item p {
  font-size: 12px;
  color: #9F9F9F;
  padding-bottom: 10px;
  margin: 0px;
}

@media (max-width: 992px) {
  .steps .item p {
    font-size: 14px;
    text-align: left;
    padding-left: 40px;
    padding-top: 10px;
    color: #000000;
    font-weight: 600;
  }
}

@media (max-width: 992px) {
  .steps .item p span {
    display: none;
  }
}

.steps .item span.paso {
  display: inline-block;
  box-sizing: border-box;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 3px solid #D2D2D2;
  font-size: 14px;
  color: #D2D2D2;
  padding-top: 4px;
  background: #fff;
  z-index: 3;
  position: relative;
}

@media (max-width: 992px) {
  .steps .item span.paso {
    position: absolute;
    text-align: center;
    top: 0px;
    left: 0px;
  }
}

@media (max-width: 992px) {
  .steps .item.active {
    display: block;
  }
}

.steps .item.active:before {
  content: " ";
  display: block;
  width: 50%;
  height: 3px;
  position: absolute;
  left: 0px;
  bottom: 15px;
  background: #38B3BB;
  z-index: 3;
}

@media (max-width: 992px) {
  .steps .item.active:before {
    left: 0px;
    bottom: -10px;
  }
}

.steps .item.two.active:before {
  width: 50%;
}

.steps .item.three.active:before {
  width: 500%;
}

.steps .item.active p,
.steps .item.prev p {
  color: #000000;
}

.steps .item.active span.paso,
.steps .item.prev span.paso {
  color: #38B3BB;
  border: 3px solid #38B3BB;
}

.steps .item.prev:before {
  content: " ";
  display: block;
  width: 110%;
  height: 3px;
  position: absolute;
  left: 0px;
  bottom: 15px;
  background: #38B3BB;
  z-index: 3;
}

.steps .item.prev span {
  text-indent: -999999999999px;
  position: relative;
}

.steps .item.prev:after {
  content: "\e902";
  font-family: 'iconos-santander' !important;
  display: block;
  position: absolute;
  width: 27px;
  height: 25px;
  left: 50%;
  margin-left: -13px;
  bottom: 0px;
  z-index: 222;
  color: #38B3BB;
}

.steps .total {
  display: none;
  font-weight: normal;
}

@media (max-width: 992px) {
  .steps .total {
    color: #595959;
    font-size: 14px;
    position: absolute;
    right: 0px;
    top: 10px;
    display: block;
  }
}

.tables {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.tables.no-border {
  border: none;
}

.tables.no-padding {
  padding: 0;
}

.tables .tables-title {
  background: #E7E7E7;
  width: 96%;
  padding: 15px 2%;
  font-size: 14px;
  color: #444444;
  font-weight: bold;
  margin: 0;
}

.tables .tables-table {
  border-right: 0px;
  border-left: 0px;
  border-bottom: 0px;
  width: 100%;
  border: 1px solid #E0E0E0;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}

@media (max-width: 992px) {
  .tables .tables-table {
    border-left: none;
    border-right: none;
  }
}

.tables .tables-table thead {
  background: #FAFAFA;
  border-bottom: 1px solid #eee;
}

.tables .tables-table thead tr th {
  font-size: 10px;
  color: #999999;
  text-transform: uppercase;
  padding: 10px 20px;
  vertical-align: middle;
  line-height: 120%;
  font-weight: 400;
}

.tables .tables-table tbody {
  background-color: #fff;
}

@media (max-width: 992px) {
  .tables .tables-table tbody tr {
    display: block;
    width: 100%;
  }
  .tables .tables-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
  }
}

.tables .tables-table tbody tr td {
  padding: 15px 20px;
  color: #444444;
  font-size: 14px;
  border-bottom: 1px solid #EEEEEE;
  position: relative;
  font-weight: 400;
}

.tables .tables-table tbody tr td span {
  color: #444444;
}

.tables .tables-table tbody tr td span.term {
  display: none;
}

@media (max-width: 992px) {
  .tables .tables-table tbody tr td span.term {
    display: inline-block;
    width: 50%;
    float: left;
  }
}

@media (max-width: 992px) {
  .tables .tables-table tbody tr td span.value {
    display: inline-block;
    font-weight: 700;
    width: 50%;
    float: right;
    text-align: right;
  }
}

.tables .tables-table tbody tr td span.value-big {
  font-size: 20px;
}

@media (max-width: 992px) {
  .tables .tables-table tbody tr td {
    display: inline-block;
    width: 94%;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media (max-width: 992px) {
  .tables .tables-table.tables-half tr td {
    width: 44%;
    float: left;
    display: inline-block;
    min-height: 40px;
  }
  .tables .tables-table.tables-half tr td .value {
    float: left;
    text-align: left;
    width: 100%;
  }
  .tables .tables-table.tables-half tr td:nth-child(2n) .value {
    float: right;
    text-align: right;
  }
}

.tables.tables-selected .value strong {
  font-size: 18px;
  font-weight: 500;
}

.tables.tables-selected .value .labelRadio {
  padding-top: 4px;
}

@media (max-width: 992px) {
  .tables.tables-selected.tables .tables-table tbody tr {
    display: table-row;
  }
  .tables.tables-selected.tables .tables-table tbody tr:nth-child(odd) {
    background-color: transparent;
  }
  .tables.tables-selected.tables .tables-table tbody tr td {
    display: table-cell;
    width: auto;
  }
  .tables.tables-selected.tables .tables-table tbody tr td .value {
    float: left;
    text-align: left;
    width: 100%;
    font-weight: 500;
  }
  .tables.tables-selected.tables .tables-table tbody tr td .value.text-right {
    text-align: right;
  }
  .tables.tables-selected.tables .tables-table tbody tr td .value.pull-right {
    float: right;
  }
  .tables.tables-selected.tables .tables-table tbody tr td .value .labelRadio {
    padding-top: 0px;
  }
}

.table-summary {
  width: 100%;
  border-collapse: collapse;
}

.table-summary tr td {
  border-bottom: solid 1px #E4E4E4;
  padding: 10px 0;
  text-align: left;
  font-weight: 300;
  font-size: 14px;
}

.table-summary tr td strong {
  clear: both;
  display: block;
  color: #000;
}

.table-summary tr td.inline strong {
  clear: inherit;
  display: inline-block;
}

.table-summary tr td:last-child {
  text-align: right;
}

@media (max-width: 768px) {
  .table-summary tr td:first-child {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .table-summary tr td {
    display: inline-block;
    width: 100%;
    border: none;
  }
  .table-summary tr td > span {
    float: left;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
  }
  .table-summary tr td > span strong {
    display: inline-block !important;
  }
  .table-summary tr td:first-child {
    width: 100%;
  }
}

.table-summary tr:last-child td {
  border-bottom: none;
}

/*tabs*/
ul.tabs_buttons {
  display: block;
  width: 100%;
  margin-bottom: 0px;
  padding: 0;
  border-bottom: 1px solid #dddddd;
}

ul.tabs_buttons li {
  list-style: none;
  display: inline-block;
}

ul.tabs_buttons li a {
  display: block;
  text-transform: uppercase;
  padding: 20px;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  color: #333333;
  transition: All .3s ease;
  -webkit-transition: All .3s ease;
  -moz-transition: All .3s ease;
  -o-transition: All .3s ease;
}

ul.tabs_buttons li a span {
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  background-color: #D0021B;
  transition: All .3s ease;
  -webkit-transition: All .3s ease;
  -moz-transition: All .3s ease;
  -o-transition: All .3s ease;
}

ul.tabs_buttons li a:hover span, ul.tabs_buttons li a.active span {
  width: calc(100% - 40px);
}

ul.tabs_content {
  list-style: none;
  margin-top: 0px;
  padding: 0;
}

/*ul.tabs_buttons li a.active{
	color: #333333;
}*/
div.contenido-tab {
  display: none;
  font-size: 13px;
  padding: 10px;
  width: calc(100% - 20px);
}

/*fin tabs*/
.titles .title-standar {
  font-size: 20px;
  color: #444444;
}

.titles .title-down {
  margin-top: 0;
}

.tooltips {
  width: 33.3333%;
  float: left;
  text-align: center;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip_elemento {
  margin: 0 auto;
  display: inline-block;
  padding: 20px;
  font-size: 12px;
  width: 160px;
  text-align: left;
  background-color: #fff;
  color: #424242;
  transition: All .3s ease;
  -webkit-transition: All .3s ease;
  -moz-transition: All .3s ease;
  -o-transition: All .3s ease;
  box-shadow: 0px 0px 5px #b8b8b8;
  position: absolute;
  z-index: 1;
  top: 180%;
  left: 50%;
  margin-left: -100px;
  transition: All .3s ease;
  -webkit-transition: All .3s ease;
  -moz-transition: All .3s ease;
  -o-transition: All .3s ease;
  visibility: hidden;
  opacity: 0;
}

.tooltip:hover .tooltip_elemento {
  visibility: visible;
  opacity: 100;
}

.tooltip_elemento:before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #fff;
  position: absolute;
  top: -9px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.tooltip_elemento.tooltipRojo:before {
  border: 1px solid #D0021B;
  border-right: 0;
  border-bottom: 0;
}

.tooltipRojo {
  border: 1px solid #D0021B;
}

.tooltip_elemento.tooltipVerde:before {
  border: 1px solid #afbf31;
  border-right: 0;
  border-bottom: 0;
}

.tooltipVerde {
  border: 1px solid #afbf31;
}

.tooltip_elemento.tooltipNaranja:before {
  border: 1px solid #d29b36;
  border-right: 0;
  border-bottom: 0;
}

.tooltipNaranja {
  border: 1px solid #d29b36;
}

/*
		@import "project/box";
		@import "project/inputs";
	*/
  



.content-grupo{
  padding: 40px 50px 0 60px !important;
  color: #555;
  display: block;
}
.modal-content h2{
  font-family: 'Faustina', serif;
  font-size: 32px;
}
.modal-content p{
  font-size: 14px;
  line-height: 21px;
}
@media screen and (max-width: 991px){
  .content-grupo{
    display: none;
  }
}
.box-flag{
  font-family: 'Titillium Web', sans-serif;
  margin-bottom: 45px;
}
.box-flag h4{
  font-size: 21px;
  line-height: 20px;
  color: #6A2E92;
  font-weight: 600;
}
.box-flag p{
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 15px;
}
.box-flag a{
  display: block;
  color: #6A2E92;
  text-decoration: underline;
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
}
.group{
  background-color: #BCC8CA;
  height: 100%;
  padding: 30px 60px;
  text-align: center;
}
.group h2{
  color: #1A1E21;
  font-size: 32px;
  line-height: 40px;
  margin-top: 40px;
}
.group img{
  width: 100%;
  margin-bottom: 20px;
  max-width: 330px;
}
.group a{
  display: block;
}
.group div{
  text-align: right;
}
.group div i{
  font-size: 24px;
  color: #6A2E92;
  position: absolute;
  top: 10px;
  right: 25px;
}
@media screen and (max-width: 991px){
  .group{
    padding: 20px;
  }
  .group h2{
    margin-top: 20px;
  }
}

#close-modal:hover{
  cursor: pointer;
}

#menu-mobile #menu-mobile-secondlevel ul li a.open{
  color: #6A2E92;
}

#modal-group:hover{
  cursor: pointer;
}

/* Estilo para desactivar las cookies {  */
  .cookies-on{
    display: inline-block;
  }
  .cookies-off{
    display: none;
  }
  /* } */