/*------------------------------------*\
  Generic > Box Sizing
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  box-sizing: border-box; }
*,
*:before,
*:after {
  box-sizing: border-box; }
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  font-size: 16px;
  font-size: 100%; }
@media only screen and (max-width: 1365px) {
  html {
    font-size: 75%; } }
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }
/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: border-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }
/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }
/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }
/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }
/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }
/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }
sub {
  bottom: -0.25em; }
sup {
  top: -0.5em; }
/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }
/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }
/**
 * Remove "X" in IE.
 */
input::-ms-clear {
  display: none;
  height: 0;
  width: 0; }
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }
/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }
/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }
/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }
/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }
/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }
/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }
/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }
/**
 * Add the correct display in IE.
 */
template {
  display: none; }
/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }
/*------------------------------------*\
  Generic > Reset
\*------------------------------------*/
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0; }
/**
 *
 */
ul {
  list-style: none; }
/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0; }
/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }
/*------------------------------------*\
  Generic > Shared
\*------------------------------------*/
/**
 * Shared declarations for certain elements.
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 16px; }
/**
 * Consistent indentation for lists.
 */
dd, ol, ul {
  margin-left: 16px; }
/*------------------------------------*\
  Vendor > Syntax highlighting
\*------------------------------------*/
.highlight {
  background: #fff; }
.highlighter-rouge .highlight {
    background: #FAFAFA; }
.highlight .c {
    color: #998;
    font-style: italic; }
.highlight .err {
    color: #a61717;
    background-color: #e3d2d2; }
.highlight .k {
    font-weight: bold; }
.highlight .o {
    font-weight: bold; }
.highlight .cm {
    color: #998;
    font-style: italic; }
.highlight .cp {
    color: #999;
    font-weight: bold; }
.highlight .c1 {
    color: #998;
    font-style: italic; }
.highlight .cs {
    color: #999;
    font-weight: bold;
    font-style: italic; }
.highlight .gd {
    color: #000;
    background-color: #fdd; }
.highlight .gd .x {
    color: #000;
    background-color: #faa; }
.highlight .ge {
    font-style: italic; }
.highlight .gr {
    color: #a00; }
.highlight .gh {
    color: #999; }
.highlight .gi {
    color: #000;
    background-color: #dfd; }
.highlight .gi .x {
    color: #000;
    background-color: #afa; }
.highlight .go {
    color: #888; }
.highlight .gp {
    color: #555; }
.highlight .gs {
    font-weight: bold; }
.highlight .gu {
    color: #aaa; }
.highlight .gt {
    color: #a00; }
.highlight .kc {
    font-weight: bold; }
.highlight .kd {
    font-weight: bold; }
.highlight .kp {
    font-weight: bold; }
.highlight .kr {
    font-weight: bold; }
.highlight .kt {
    color: #458;
    font-weight: bold; }
.highlight .m {
    color: #099; }
.highlight .s {
    color: #d14; }
.highlight .na {
    color: #008080; }
.highlight .nb {
    color: #0086B3; }
.highlight .nc {
    color: #458;
    font-weight: bold; }
.highlight .no {
    color: #008080; }
.highlight .ni {
    color: #800080; }
.highlight .ne {
    color: #900;
    font-weight: bold; }
.highlight .nf {
    color: #900;
    font-weight: bold; }
.highlight .nn {
    color: #555; }
.highlight .nt {
    color: #000080; }
.highlight .nv {
    color: #008080; }
.highlight .ow {
    font-weight: bold; }
.highlight .w {
    color: #bbb; }
.highlight .mf {
    color: #099; }
.highlight .mh {
    color: #099; }
.highlight .mi {
    color: #099; }
.highlight .mo {
    color: #099; }
.highlight .sb {
    color: #d14; }
.highlight .sc {
    color: #d14; }
.highlight .sd {
    color: #d14; }
.highlight .s2 {
    color: #d14; }
.highlight .se {
    color: #d14; }
.highlight .sh {
    color: #d14; }
.highlight .si {
    color: #d14; }
.highlight .sx {
    color: #d14; }
.highlight .sr {
    color: #009926; }
.highlight .s1 {
    color: #d14; }
.highlight .ss {
    color: #990073; }
.highlight .bp {
    color: #999; }
.highlight .vc {
    color: #008080; }
.highlight .vg {
    color: #008080; }
.highlight .vi {
    color: #008080; }
.highlight .il {
    color: #099; }
/*------------------------------------*\
  Elements > Page
\*------------------------------------*/
body {
  color: #222222;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 27px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
*::-moz-selection {
  color: white;
  background: #207cdf; }
*::selection {
  color: white;
  background: #207cdf; }
/*------------------------------------*\
  Elements > Fonts
\*------------------------------------*/
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  src: local("Roboto Thin Italic"), local("Roboto-ThinItalic"), url('Roboto-ThinItalic.6232f43d15b0e7a0bf0f.woff2') format("woff2"), url('Roboto-Regular.bafb105baeb22d965c70.woff') format("woff"), url('Roboto-ThinItalic.0fc25386220a58203994.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 300;
  src: local("Roboto Light Italic"), local("Roboto-LightItalic"), url('Roboto-LightItalic.d69924b98acd849cdeba.woff2') format("woff2"), url('Roboto-LightItalic.210a7c781f5a354a0e49.woff') format("woff"), url('Roboto-LightItalic.d1efcd4d126837fe0dcf.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: local("Roboto Italic"), local("Roboto-Italic"), url('Roboto-Italic.d8bcbe724fd6f4ba44d0.woff2') format("woff2"), url('Roboto-Italic.42bbe4eefcde1297b11d.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: local("Roboto Medium Italic"), local("Roboto-MediumItalic"), url('Roboto-MediumItalic.510dec37fa69fba39593.woff2') format("woff2"), url('Roboto-MediumItalic.de8b7431b74642e830af.woff') format("woff"), url('Roboto-MediumItalic.bd19ad60600a1537c00d.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: local("Roboto Bold Italic"), local("Roboto-BoldItalic"), url('Roboto-BoldItalic.010c1aeee3c6d1cbb1d5.woff2') format("woff2"), url('Roboto-BoldItalic.ffcc050b2d92d4b14a4f.woff') format("woff"), url('Roboto-BoldItalic.1eb7a893589ddce89d81.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  src: local("Roboto Black Italic"), local("Roboto-BlackItalic"), url('Roboto-BlackItalic.7b770d6c53423deb1a8e.woff2') format("woff2"), url('Roboto-BlackItalic.bc833e725c137257c2c4.woff') format("woff"), url('Roboto-BlackItalic.50705c5ed1205b63efdb.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: local("Roboto Thin"), local("Roboto-Thin"), url('Roboto-Thin.987b84570ea69ee66045.woff2') format("woff2"), url('Roboto-Thin.e9dbbe8a693dd275c16d.woff') format("woff"), url('Roboto-Thin.94998475f6aea65f5584.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local("Roboto Light"), local("Roboto-Light"), url('Roboto-Light.55536c8e9e9a532651e3.woff2') format("woff2"), url('Roboto-Light.a1471d1d6431c893582a.woff') format("woff"), url('Roboto-Light.46e48ce0628835f68a73.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url('Roboto-Regular.5d4aeb4e5f5ef754e307.woff2') format("woff2"), url('Roboto-Regular.bafb105baeb22d965c70.woff') format("woff"), url('Roboto-Regular.df7b648ce5356ea1ebce.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url('Roboto-Medium.285467176f7fe6bb6a9c.woff2') format("woff2"), url('Roboto-Medium.fc78759e93a6cac50458.woff') format("woff"), url('Roboto-Medium.894a2ede85a483bf9bed.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url('Roboto-Bold.037d830416495def72b7.woff2') format("woff2"), url('Roboto-Bold.dc81817def276b4f2139.woff') format("woff"), url('Roboto-Bold.e31fcf1885e371e19f57.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local("Roboto Black"), local("Roboto-Black"), url('Roboto-Black.19b7a0adfdd4f808b53a.woff2') format("woff2"), url('Roboto-Black.8c2ade503b34e31430d6.woff') format("woff"), url('Roboto-Black.ec4c9962ba54eb91787a.ttf') format("truetype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('MaterialIcons-Regular.e79bfd88537def476913.eot');
  src: local("Material Icons"), local("MaterialIcons-Regular"), url('MaterialIcons-Regular.570eb83859dc23dd0eec.woff2') format("woff2"), url('MaterialIcons-Regular.012cf6a10129e2275d79.woff') format("woff"), url('MaterialIcons-Regular.a37b0c01c0baf1888ca8.ttf') format("truetype"); }
.material-icons {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga'; }
/*------------------------------------*\
  Elements > Links
\*------------------------------------*/
a {
  text-decoration: none;
  color: #222222; }
a:hover, a:active, a:focus {
    text-decoration: underline; }
/*------------------------------------*\
  Elements > img
\*------------------------------------*/
img {
  display: block;
  max-width: 100%;
  font-style: italic; }
/*------------------------------------*\
  Elements > hr
\*------------------------------------*/
hr {
  height: 1px;
  margin: 32px 0;
  border: 0;
  background-color: #ecf0f1; }
/*------------------------------------*\
  Elements > code & pre
\*------------------------------------*/
pre,
code {
  font-family: "Courier", monospace;
  background-color: #fafafa; }
pre {
  overflow: auto;
  padding: 32px;
  font-size: 14px;
  line-height: 22px;
  white-space: pre-wrap;
  word-wrap: break-word; }
p code {
  padding: 3px 6px; }
.wrapper {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto; }
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 0rem;
  padding-left: 0rem; }
.row {
  box-sizing: border-box;
  display: -moz-flex;
  display: flex;
  -moz-flex: 0 1 auto;
  flex: 0 1 auto;
  -moz-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-right: 0;
  margin-left: 0; }
.row.reverse {
  -moz-flex-direction: row-reverse;
  flex-direction: row-reverse; }
.col.reverse {
  -moz-flex-direction: column-reverse;
  flex-direction: column-reverse; }
.col-xs {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: auto; }
.col-xs-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 4.16666667%;
  max-width: 4.16666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 12.5%;
  max-width: 12.5%;
  box-sizing: border-box;
  display: block; }
.col-xs-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 20.83333333%;
  max-width: 20.83333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 25%;
  max-width: 25%;
  box-sizing: border-box;
  display: block; }
.col-xs-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 29.16666667%;
  max-width: 29.16666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 37.5%;
  max-width: 37.5%;
  box-sizing: border-box;
  display: block; }
.col-xs-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 45.83333333%;
  max-width: 45.83333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 50%;
  max-width: 50%;
  box-sizing: border-box;
  display: block; }
.col-xs-13 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 54.16666667%;
  max-width: 54.16666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-14 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-15 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 62.5%;
  max-width: 62.5%;
  box-sizing: border-box;
  display: block; }
.col-xs-16 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-17 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 70.83333333%;
  max-width: 70.83333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-18 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 75%;
  max-width: 75%;
  box-sizing: border-box;
  display: block; }
.col-xs-19 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 79.16666667%;
  max-width: 79.16666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-20 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-21 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 87.5%;
  max-width: 87.5%;
  box-sizing: border-box;
  display: block; }
.col-xs-22 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
  box-sizing: border-box;
  display: block; }
.col-xs-23 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 95.83333333%;
  max-width: 95.83333333%;
  box-sizing: border-box;
  display: block; }
.col-xs-24 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  flex-basis: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block; }
.col-xs-offset-0 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 0; }
.col-xs-offset-1 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 4.16666667%; }
.col-xs-offset-2 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 8.33333333%; }
.col-xs-offset-3 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 12.5%; }
.col-xs-offset-4 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 16.66666667%; }
.col-xs-offset-5 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 20.83333333%; }
.col-xs-offset-6 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 25%; }
.col-xs-offset-7 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 29.16666667%; }
.col-xs-offset-8 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 33.33333333%; }
.col-xs-offset-9 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 37.5%; }
.col-xs-offset-10 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 41.66666667%; }
.col-xs-offset-11 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 45.83333333%; }
.col-xs-offset-12 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 50%; }
.col-xs-offset-13 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 54.16666667%; }
.col-xs-offset-14 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 58.33333333%; }
.col-xs-offset-15 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 62.5%; }
.col-xs-offset-16 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 66.66666667%; }
.col-xs-offset-17 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 70.83333333%; }
.col-xs-offset-18 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 75%; }
.col-xs-offset-19 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 79.16666667%; }
.col-xs-offset-20 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 83.33333333%; }
.col-xs-offset-21 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 87.5%; }
.col-xs-offset-22 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 91.66666667%; }
.col-xs-offset-23 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 95.83333333%; }
.col-xs-offset-24 {
  box-sizing: border-box;
  -moz-flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
  padding-right: 0;
  padding-left: 0;
  margin-left: 100%; }
.col-xs {
  -moz-flex-grow: 1;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%; }
.start-xs {
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left; }
.center-xs {
  -moz-justify-content: center;
  justify-content: center;
  text-align: center; }
.end-xs {
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right; }
.stretch-xs {
  -moz-align-items: stretch;
  align-items: stretch; }
.top-xs {
  -moz-align-items: flex-start;
  align-items: flex-start; }
.middle-xs {
  -moz-align-items: center;
  align-items: center; }
.bottom-xs {
  -moz-align-items: flex-end;
  align-items: flex-end; }
.around-xs {
  -moz-justify-content: space-around;
  justify-content: space-around; }
.between-xs {
  -moz-justify-content: space-between;
  justify-content: space-between; }
.first-xs {
  order: -1; }
.last-xs {
  order: 1; }
@media only screen and (min-width: 48em) {
  .container {
    width: 46rem; }
  .col-sm {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: auto; }
  .col-sm-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 4.16666667%;
    max-width: 4.16666667%; }
  .col-sm-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-sm-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-sm-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-sm-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 20.83333333%;
    max-width: 20.83333333%; }
  .col-sm-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 29.16666667%;
    max-width: 29.16666667%; }
  .col-sm-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-sm-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-sm-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-sm-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 45.83333333%;
    max-width: 45.83333333%; }
  .col-sm-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-13 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 54.16666667%;
    max-width: 54.16666667%; }
  .col-sm-14 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-sm-15 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-sm-16 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-sm-17 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 70.83333333%;
    max-width: 70.83333333%; }
  .col-sm-18 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-19 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 79.16666667%;
    max-width: 79.16666667%; }
  .col-sm-20 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-sm-21 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-sm-22 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-sm-23 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 95.83333333%;
    max-width: 95.83333333%; }
  .col-sm-24 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0; }
  .col-sm-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 4.16666667%; }
  .col-sm-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 8.33333333%; }
  .col-sm-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 12.5%; }
  .col-sm-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 16.66666667%; }
  .col-sm-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 20.83333333%; }
  .col-sm-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 25%; }
  .col-sm-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 29.16666667%; }
  .col-sm-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 33.33333333%; }
  .col-sm-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 37.5%; }
  .col-sm-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 41.66666667%; }
  .col-sm-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 45.83333333%; }
  .col-sm-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 50%; }
  .col-sm-offset-13 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 54.16666667%; }
  .col-sm-offset-14 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 58.33333333%; }
  .col-sm-offset-15 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 62.5%; }
  .col-sm-offset-16 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 66.66666667%; }
  .col-sm-offset-17 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 70.83333333%; }
  .col-sm-offset-18 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 75%; }
  .col-sm-offset-19 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 79.16666667%; }
  .col-sm-offset-20 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 83.33333333%; }
  .col-sm-offset-21 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 87.5%; }
  .col-sm-offset-22 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 91.66666667%; }
  .col-sm-offset-23 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 95.83333333%; }
  .col-sm-offset-24 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 100%; }
  .col-sm {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%; }
  .start-sm {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left; }
  .center-sm {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-sm {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right; }
  .top-sm {
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-sm {
    -moz-align-items: center;
    align-items: center; }
  .bottom-sm {
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-sm {
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-sm {
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-sm {
    order: -1; }
  .last-sm {
    order: 1; } }
@media only screen and (min-width: 62em) {
  .container {
    width: 61rem; }
  .col-md {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: auto; }
  .col-md-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 4.16666667%;
    max-width: 4.16666667%; }
  .col-md-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-md-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-md-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-md-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 20.83333333%;
    max-width: 20.83333333%; }
  .col-md-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 29.16666667%;
    max-width: 29.16666667%; }
  .col-md-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-md-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-md-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-md-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 45.83333333%;
    max-width: 45.83333333%; }
  .col-md-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-13 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 54.16666667%;
    max-width: 54.16666667%; }
  .col-md-14 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-md-15 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-md-16 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-md-17 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 70.83333333%;
    max-width: 70.83333333%; }
  .col-md-18 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-19 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 79.16666667%;
    max-width: 79.16666667%; }
  .col-md-20 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-md-21 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-md-22 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-md-23 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 95.83333333%;
    max-width: 95.83333333%; }
  .col-md-24 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0; }
  .col-md-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 4.16666667%; }
  .col-md-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 8.33333333%; }
  .col-md-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 12.5%; }
  .col-md-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 16.66666667%; }
  .col-md-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 20.83333333%; }
  .col-md-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 25%; }
  .col-md-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 29.16666667%; }
  .col-md-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 33.33333333%; }
  .col-md-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 37.5%; }
  .col-md-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 41.66666667%; }
  .col-md-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 45.83333333%; }
  .col-md-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 50%; }
  .col-md-offset-13 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 54.16666667%; }
  .col-md-offset-14 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 58.33333333%; }
  .col-md-offset-15 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 62.5%; }
  .col-md-offset-16 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 66.66666667%; }
  .col-md-offset-17 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 70.83333333%; }
  .col-md-offset-18 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 75%; }
  .col-md-offset-19 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 79.16666667%; }
  .col-md-offset-20 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 83.33333333%; }
  .col-md-offset-21 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 87.5%; }
  .col-md-offset-22 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 91.66666667%; }
  .col-md-offset-23 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 95.83333333%; }
  .col-md-offset-24 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 100%; }
  .col-md {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%; }
  .start-md {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left; }
  .center-md {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-md {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right; }
  .top-md {
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-md {
    -moz-align-items: center;
    align-items: center; }
  .bottom-md {
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-md {
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-md {
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-md {
    order: -1; }
  .last-md {
    order: 1; } }
@media only screen and (min-width: 75em) {
  .container {
    width: 71rem; }
  .col-lg {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: auto; }
  .col-lg-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 4.16666667%;
    max-width: 4.16666667%; }
  .col-lg-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-lg-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 12.5%;
    max-width: 12.5%; }
  .col-lg-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-lg-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 20.83333333%;
    max-width: 20.83333333%; }
  .col-lg-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 29.16666667%;
    max-width: 29.16666667%; }
  .col-lg-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-lg-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 37.5%;
    max-width: 37.5%; }
  .col-lg-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-lg-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 45.83333333%;
    max-width: 45.83333333%; }
  .col-lg-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-13 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 54.16666667%;
    max-width: 54.16666667%; }
  .col-lg-14 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-lg-15 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 62.5%;
    max-width: 62.5%; }
  .col-lg-16 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-lg-17 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 70.83333333%;
    max-width: 70.83333333%; }
  .col-lg-18 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-19 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 79.16666667%;
    max-width: 79.16666667%; }
  .col-lg-20 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-lg-21 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 87.5%;
    max-width: 87.5%; }
  .col-lg-22 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-lg-23 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 95.83333333%;
    max-width: 95.83333333%; }
  .col-lg-24 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-0 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 0; }
  .col-lg-offset-1 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 4.16666667%; }
  .col-lg-offset-2 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 8.33333333%; }
  .col-lg-offset-3 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 12.5%; }
  .col-lg-offset-4 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 16.66666667%; }
  .col-lg-offset-5 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 20.83333333%; }
  .col-lg-offset-6 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 25%; }
  .col-lg-offset-7 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 29.16666667%; }
  .col-lg-offset-8 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 33.33333333%; }
  .col-lg-offset-9 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 37.5%; }
  .col-lg-offset-10 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 41.66666667%; }
  .col-lg-offset-11 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 45.83333333%; }
  .col-lg-offset-12 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 50%; }
  .col-lg-offset-13 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 54.16666667%; }
  .col-lg-offset-14 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 58.33333333%; }
  .col-lg-offset-15 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 62.5%; }
  .col-lg-offset-16 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 66.66666667%; }
  .col-lg-offset-17 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 70.83333333%; }
  .col-lg-offset-18 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 75%; }
  .col-lg-offset-19 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 79.16666667%; }
  .col-lg-offset-20 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 83.33333333%; }
  .col-lg-offset-21 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 87.5%; }
  .col-lg-offset-22 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 91.66666667%; }
  .col-lg-offset-23 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 95.83333333%; }
  .col-lg-offset-24 {
    box-sizing: border-box;
    -moz-flex-grow: 0;
    flex-grow: 0;
    flex-shrink: 0;
    padding-right: 0;
    padding-left: 0;
    margin-left: 100%; }
  .col-lg {
    -moz-flex-grow: 1;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%; }
  .start-lg {
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left; }
  .center-lg {
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-lg {
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right; }
  .top-lg {
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-lg {
    -moz-align-items: center;
    align-items: center; }
  .bottom-lg {
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-lg {
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-lg {
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-lg {
    order: -1; }
  .last-lg {
    order: 1; } }
.box-row {
  position: relative;
  box-sizing: border-box;
  min-height: 2.25rem;
  margin-bottom: 0;
  background: rgba(41, 75, 105, 0.1);
  border: 1px solid #FFF;
  overflow: hidden;
  text-align: center;
  color: #294b69;
  border: 1px solid #6f9dc7; }
/*------------------------------------*\
  Components > Header
\*------------------------------------*/
.c-header {
  margin-bottom: 32px;
  padding: 16px 0;
  background-color: #fafafa; }
.is-home .c-header,
  .is-theme .c-header {
    margin-bottom: 0;
    border-bottom: 1px solid #ecf0f1; }
.c-header__logo {
    transition: 0.4s; }
.c-header__logo:hover, .c-header__logo:active, .c-header__logo:focus {
      text-decoration: none;
      color: #207cdf; }
/*------------------------------------*\
  Components > Theme Features
\*------------------------------------*/
.c-theme-features {
  padding: 0 16px;
  background-color: #fafafa; }
.c-theme-features__item {
    position: relative;
    padding: 16px 24px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 14px; }
.c-theme-features__item:last-child {
      border-bottom: 0; }
.c-theme-features__item:after {
      position: absolute;
      top: 50%;
      left: 0;
      display: block;
      content: '';
      width: 6px;
      height: 12px;
      border: solid #207cdf;
      border-width: 0 1px 1px 0;
      -webkit-transform: rotate(45deg) translate(0, -50%);
      transform: rotate(45deg) translate(0, -50%); }
.c-theme-features__icon {
    vertical-align: top; }
/*------------------------------------*\
  Components > Inputs
\*------------------------------------*/
.fields {
  position: relative; }
.fields__label {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 12px;
    line-height: 0.75rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    display: block;
    text-transform: uppercase; }
.fields__arrowIcon {
    float: right;
    background: url(/assets/img/arrowDown.svg) center right no-repeat;
    height: 100%;
    width: 24px; }
.fields__arrowIcon-rotate {
      background-position-x: right;
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
.fields__input, .fields__select {
    width: 100%;
    font-family: Roboto;
    background-color: transparent;
    direction: ltr;
    border: 0px solid;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
.fields__select::-ms-expand {
    display: none; }
.fields__option {
    direction: ltr; }
.fields__content:not(.readonly) {
    display: flex;
    flex-direction: row;
    border-bottom: 0.075rem solid rgba(102, 102, 102, 0.25); }
.fields__content:not(.readonly):focus-within {
      border-bottom: 1px solid #28ff52 !important; }
.fields__searchbar {
    position: relative;
    width: 90%;
    height: 2px;
    height: 0.125rem; }
.fields__searchbar__line {
      position: relative;
      width: 10%;
      height: 2px;
      height: 0.125rem;
      background-color: #28ff52; }
.input-default2__input, .input-default2__select {
  font-size: 16px;
  font-size: 1rem;
  line-height: 48px;
  line-height: 3rem;
  height: 48px;
  height: 3rem;
  font-weight: normal; }
.input-default2__dropbox {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  top: 0;
  float: left; }
.input-default2__select {
  padding-right: 24px; }
.input-default2__optionList {
  scrollbar-face-color: #28FF52;
  scrollbar-arrow-color: #28FF52;
  scrollbar-shadow-color: inset 0 0 2px rgba(0, 0, 0, 0.3);
  scrollbar-track-color: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -ms-scrollbar-face-color: #28FF52;
  -ms-scrollbar-arrow-color: #28FF52;
  -ms-scrollbar-shadow-color: inset 0 0 2px rgba(0, 0, 0, 0.3);
  -ms-scrollbar-track-color: inset 0 0 2px rgba(0, 0, 0, 0.3);
  height: 200px;
  overflow-y: auto;
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 60px;
  top: 3.75rem;
  width: 100%;
  z-index: 1; }
.input-default2__optionList__ul {
    margin: 0; }
.input-default2__optionList__li {
    height: 60px;
    height: 3.75rem;
    padding-top: 9px;
    padding-top: 0.5625rem;
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
    padding-right: 12px;
    padding-right: 0.75rem;
    padding-left: 12px;
    padding-left: 0.75rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer; }
.input-default2__optionList__li:hover {
    background-color: rgba(0, 0, 0, 0.05); }
.input-default2__optionList::-webkit-scrollbar {
  width: 0.3em; }
.input-default2__optionList::-webkit-scrollbar-track {
  --webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); }
.input-default2__optionList::-webkit-scrollbar-thumb {
  background-color: #28ff52;
  outline: 1px solid slategrey; }
.input-default__input, .input-default__select {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 48px;
  line-height: 3rem;
  height: 48px;
  height: 3rem;
  font-weight: normal; }
.input-default__dropbox {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  top: 0;
  float: left; }
.input-default__select {
  padding-right: 24px; }
.input-default__optionList {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 60px;
  top: 3.75rem;
  width: 100%;
  z-index: 1; }
.input-default__optionList__ul {
    margin: 0; }
.input-default__optionList__li {
    height: 49px;
    height: 3.0625rem;
    padding-top: 12px;
    padding-top: 0.75rem;
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
    padding-right: 12px;
    padding-right: 0.75rem;
    padding-left: 12px;
    padding-left: 0.75rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer; }
.input-default__optionList__li:hover {
    background-color: rgba(0, 0, 0, 0.05); }
.select-default__input, .select-default__select {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 48px;
  line-height: 3rem;
  height: 48px;
  height: 3rem;
  font-weight: normal; }
.select-default__dropbox {
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  top: 0;
  float: left; }
.select-default__select {
  margin-top: -3%;
  padding-right: 24px;
  font-family: Roboto;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.87); }
.select-default__optionList {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.13);
  position: absolute;
  top: 60px;
  top: 3.75rem;
  width: 100%;
  z-index: 1; }
.select-default__optionList__ul {
    margin: 0; }
.select-default__optionList__li {
    height: 49px;
    height: 3.0625rem;
    padding-top: 12px;
    padding-top: 0.75rem;
    padding-bottom: 10px;
    padding-bottom: 0.625rem;
    padding-right: 12px;
    padding-right: 0.75rem;
    padding-left: 12px;
    padding-left: 0.75rem;
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.9);
    cursor: pointer; }
.select-default__optionList__li:hover {
    background-color: rgba(0, 0, 0, 0.05); }
.input-theme1__input {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  height: 2rem; }
.input-theme1__select {
  background: url("/assets/img/seta-selectbox-down.png") 94%/10% no-repeat; }
.input-theme1__select:input:not(disabled):focus {
    border-bottom: 0.08rem solid #666666;
    outline: none; }
.input-theme1__select:input:not(disabled):active {
    border-bottom: 0.08rem solid #666666;
    outline: none; }
.input-theme1__select, .input-theme1__input:not([type="button"]):not([type="submit"]) {
  font-size: 14px;
  font-size: 0.875rem;
  height: 2rem;
  color: rgba(0, 0, 0, 0.9); }
.input-theme1__input:not([type="button"]):not([type="submit"]):input:not([readonly]):focus {
  border-bottom: 0.08rem solid #666666 !important;
  outline: none; }
.input-theme1__input:not([type="button"]):not([type="submit"])active:input:not([readonly]) {
  border-bottom: 0.08rem solid rgba(102, 102, 102, 0.6) !important; }
.input-theme1__required input:not([type="button"]):not([type="submit"]) {
  border-bottom: 1px solid #28ff52 !important; }
.input-theme1__required input:not([type="button"]):not([type="submit"]):focus {
    border-bottom: 0.075rem solid rgba(102, 102, 102, 0.25); }
.input-theme1__input-border-bottom input:not([type="button"]):not([type="password"]):not([type="submit"]) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4) !important; }
.input-search__input {
  font-family: Roboto;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 33px;
  line-height: 2.0625rem;
  height: 52px;
  height: 3.25rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.8); }
.input-search__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2); }
.input-search__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2); }
.input-search__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2); }
.input-search__input::placeholder {
  color: rgba(0, 0, 0, 0.2); }
.input-search__content .iconClass {
  width: 25px;
  width: 1.5625rem;
  background-image: url(/assets/img/BuscaRed.svg); }
/*------------------------------------*\
  Components > Buttons
\*------------------------------------*/
.svgIcon {
  fill: #fff;
  stroke: none; }
.svgIcon #Falta-de-Energia {
  fill: #fff;
  stroke: none; }
.svgIcon:checked #Falta-de-Energia {
  fill: #fff;
  stroke: none; }
.btn {
  display: inline-block;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.4s;
  text-align: center;
  vertical-align: middle;
  outline: none;
  border: 0;
  border-radius: 8px;
  border-radius: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem; }
.btn:hover, .btn:active, .btn:focus {
    text-decoration: none; }
.btn-sm--primary, .btn-sm--secondary, .btn-sm--secondary:active, .btn-sm--secondary__active {
    padding: 5px 15px;
    padding: 0.3125rem 0.9375rem;
    color: white;
    border-radius: 5px;
    border-radius: 0.3125rem;
    background-color: #28ff52; }
.btn-sm--secondary:active, .btn-sm--secondary__active {
    background-color: black;
    border: 1px solid black; }
.btn-sm--secondary:active:hover, .btn-sm--secondary__active:hover {
      background-color: rgba(0, 0, 0, 0.8);
      border: 1px solid #333; }
.btn--ternary {
    padding: 14px 42px 14px 42px;
    padding: 0.875rem 2.625rem 0.875rem 2.625rem;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.43px;
    letter-spacing: 0.026875rem;
    line-height: 16px;
    line-height: 1rem;
    color: #AFAFAF;
    background-color: white;
    border: #AFAFAF 1px solid;
    text-transform: uppercase;
    font-family: Roboto;
    font-weight: normal;
    text-align: center; }
.btn--ternary:hover, .btn--ternary:active, .btn--ternary:focus {
      color: #7F7F7F;
      background-color: white;
      border: #7F7F7F 1px solid; }
.btn--ternary:active, .btn--ternary:enabled, .btn--ternary__active {
      padding: 14px 42px 14px 42px;
      padding: 0.875rem 2.625rem 0.875rem 2.625rem;
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 0.43px;
      letter-spacing: 0.026875rem;
      line-height: 16px;
      line-height: 1rem;
      color: white;
      background-color: #28ff52;
      border: none;
      text-transform: uppercase;
      font-family: Roboto;
      font-weight: normal;
      text-align: center; }
.btn--ternary:active:hover, .btn--ternary:active:active, .btn--ternary:active:focus, .btn--ternary:enabled:hover, .btn--ternary:enabled:active, .btn--ternary:enabled:focus, .btn--ternary__active:hover, .btn--ternary__active:active, .btn--ternary__active:focus {
        color: white;
        background-color: limegreen;
        border: none; }
.btn--smallBtn {
    padding: 16px 28px 16px 28px;
    padding: 1rem 1.75rem 1rem 1.75rem;
    font-size: 10px;
    font-size: 0.625rem;
    letter-spacing: 0.43px;
    letter-spacing: 0.026875rem;
    line-height: 16px;
    line-height: 1rem;
    color: #AFAFAF;
    background-color: white;
    border: #AFAFAF 1px solid;
    text-transform: uppercase;
    font-family: Roboto;
    font-weight: normal;
    text-align: center; }
.btn--smallBtn:hover, .btn--smallBtn:active, .btn--smallBtn:focus {
      color: #7F7F7F;
      background-color: white;
      border: #7F7F7F 1px solid; }
.btn--smallBtn:active, .btn--smallBtn:enabled, .btn--smallBtn__active {
      padding: 16px 26px 16px 26px;
      padding: 1rem 1.625rem 1rem 1.625rem;
      font-size: 10px;
      font-size: 0.625rem;
      letter-spacing: 0.43px;
      letter-spacing: 0.026875rem;
      line-height: 16px;
      line-height: 1rem;
      color: white;
      background-color: #28ff52;
      border: none;
      text-transform: uppercase;
      font-family: Roboto;
      font-weight: normal;
      text-align: center; }
.btn--smallBtn:active:hover, .btn--smallBtn:active:active, .btn--smallBtn:active:focus, .btn--smallBtn:enabled:hover, .btn--smallBtn:enabled:active, .btn--smallBtn:enabled:focus, .btn--smallBtn__active:hover, .btn--smallBtn__active:active, .btn--smallBtn__active:focus {
        color: white;
        background-color: limegreen;
        border: none; }
.btn--back {
    padding: 18px 46px 18px 46px;
    padding: 1.125rem 2.875rem 1.125rem 2.875rem;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.43px;
    letter-spacing: 0.026875rem;
    line-height: 16px;
    line-height: 1rem;
    color: #999;
    background-color: #1f1c1c;
    border: #AFAFAF 1px solid;
    text-transform: uppercase;
    font-family: Roboto;
    font-weight: normal;
    text-align: center; }
.btn--back:hover, .btn--back:active, .btn--back:focus {
      color: #999;
      background-color: white;
      border: #7F7F7F 1px solid; }
.btn--back:active, .btn--back:enabled, .btn--back__active {
      padding: 18px 46px 18px 46px;
      padding: 1.125rem 2.875rem 1.125rem 2.875rem;
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 0.43px;
      letter-spacing: 0.026875rem;
      line-height: 16px;
      line-height: 1rem;
      color: #999;
      background-color: #FFF !important;
      border: #7F7F7F 1px solid;
      text-transform: uppercase;
      font-family: Roboto;
      font-weight: normal;
      text-align: center; }
.btn--back:active:hover, .btn--back:active:active, .btn--back:active:focus, .btn--back:enabled:hover, .btn--back:enabled:active, .btn--back:enabled:focus, .btn--back__active:hover, .btn--back__active:active, .btn--back__active:focus {
        color: #0a0000;
        background-color: #FFF !important;
        border: #7F7F7F 1px solid; }
.btn--back:disabled {
      padding: 18px 46px 18px 46px;
      padding: 1.125rem 2.875rem 1.125rem 2.875rem;
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 0.43px;
      letter-spacing: 0.026875rem;
      line-height: 16px;
      line-height: 1rem;
      color: rgba(12, 3, 3, 0.096);
      background-color: rgba(0, 0, 0, 0.01) !important;
      border: #7F7F7F 1px solid;
      border: none;
      text-transform: uppercase;
      font-family: Roboto;
      font-weight: normal;
      text-align: center; }
.btn--primary {
    padding: 18px 46px 18px 46px;
    padding: 1.125rem 2.875rem 1.125rem 2.875rem;
    font-size: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.43px;
    letter-spacing: 0.026875rem;
    line-height: 16px;
    line-height: 1rem;
    color: #AFAFAF;
    background-color: white;
    border: #AFAFAF 1px solid;
    text-transform: uppercase;
    font-family: Roboto;
    font-weight: normal;
    text-align: center; }
.btn--primary:hover, .btn--primary:active, .btn--primary:focus {
      color: #7F7F7F;
      background-color: white;
      border: #7F7F7F 1px solid; }
.btn--primary:active, .btn--primary:enabled, .btn--primary__active {
      padding: 18px 46px 18px 46px;
      padding: 1.125rem 2.875rem 1.125rem 2.875rem;
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 0.43px;
      letter-spacing: 0.026875rem;
      line-height: 16px;
      line-height: 1rem;
      color: #242e3e;
      background-color: #28ff52 !important;
      border: none;
      text-transform: uppercase;
      font-family: Roboto;
      font-weight: normal;
      text-align: center; }
.btn--primary:active:hover, .btn--primary:active:active, .btn--primary:active:focus, .btn--primary:enabled:hover, .btn--primary:enabled:active, .btn--primary:enabled:focus, .btn--primary__active:hover, .btn--primary__active:active, .btn--primary__active:focus {
        color: #242e3e;
        background-color: limegreen !important;
        border: none; }
.btn--primary:disabled {
      padding: 18px 46px 18px 46px;
      padding: 1.125rem 2.875rem 1.125rem 2.875rem;
      font-size: 12px;
      font-size: 0.75rem;
      letter-spacing: 0.43px;
      letter-spacing: 0.026875rem;
      line-height: 16px;
      line-height: 1rem;
      color: #c0c0c0;
      background-color: rgba(0, 0, 0, 0.1) !important;
      border: none;
      text-transform: uppercase;
      font-family: Roboto;
      font-weight: normal;
      text-align: center; }
.btn--secondary, .btn--secondary:hover, .btn--secondary:active, .btn--secondary__active, .btn--secondary__disabled {
    padding: 18px 0px;
    padding: 1.125rem 0rem;
    border-radius: 8px;
    border-radius: 0.5rem;
    letter-spacing: 0.5px;
    letter-spacing: 0.03125rem;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    line-height: 1.0625rem;
    width: 100%;
    background-color: #FFF;
    font-family: Roboto;
    font-weight: normal;
    text-align: center; }
.btn--secondary {
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: #999; }
.btn--secondary:hover {
      border: 1px solid rgba(0, 0, 0, 0.6);
      color: #666; }
.btn--secondary:active, .btn--secondary__active {
      background-color: black;
      color: #FFF;
      border: 1px solid black; }
.btn--secondary:active:hover, .btn--secondary__active:hover {
        background-color: rgba(0, 0, 0, 0.8);
        border: 1px solid #333; }
.btn--secondary__disabled {
      background-color: rgba(0, 0, 0, 0.01);
      border: 1px solid #e5e5e5;
      cursor: default;
      color: rgba(0, 0, 0, 0.2); }
/*------------------------------------*\
  Components > Table
\*------------------------------------*/
.data-table {
  font-family: Roboto;
  border-collapse: collapse;
  width: 100%; }
.data-table--header {
  height: 53px;
  height: 3.3125rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 500; }
.data-table--header input {
    display: block;
    width: 150px; }
.data-table--filters {
  padding: 10px 0px;
  padding: 0.625rem 0rem;
  margin: 0px 5px;
  margin: 0rem 0.3125rem; }
.data-table--col {
  padding: 8px;
  padding: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  font-weight: normal; }
.data-table--row:nth-child(odd) {
  background-color: #f4f4f4; }
.data-table--row:nth-child(odd) .data-table--col:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px; }
.data-table--row:nth-child(odd) .data-table--col:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px; }
.data-table--row:nth-child(even) {
  background-color: white; }
.data-table--row:nth-child(even) .data-table--col:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px; }
.data-table--row:nth-child(even) .data-table--col:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px; }
/** components do ng6-data table **/
.pagination {
  font-family: Roboto;
  border-collapse: collapse;
  padding-top: 20px;
  padding-top: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 500; }
.pagination .active a {
    color: white !important; }
.pagination a {
    color: rgba(0, 0, 0, 0.4) !important; }
.pagination li {
    display: inline;
    margin-right: 5px;
    margin-right: 0.3125rem;
    padding: 5px 10px;
    padding: 0.3125rem 0.625rem;
    border-radius: 5px;
    border-radius: 0.3125rem;
    border: 1px solid rgba(0, 0, 0, 0.4); }
.pagination li.active {
    border: 1px solid #28ff52 !important;
    background-color: #28ff52 !important; }
/*------------------------------------*\
  Components > Doc Card
\*------------------------------------*/
.c-doc-card {
  display: block;
  margin-bottom: 32px;
  padding: 32px 32px 32px 80px;
  transition: 0.4s;
  border: 1px solid #ecf0f1;
  background-repeat: no-repeat;
  background-position: 32px center;
  background-size: 32px; }
.c-doc-card:hover, .c-doc-card:active, .c-doc-card:focus {
    text-decoration: none;
    color: #207cdf;
    background-color: #fafafa; }
.c-doc-card--ghost {
    background-image: url("/images/assets/ghost-logo.png"); }
.c-doc-card--jekyll {
    background-image: url("/images/assets/jekyll-logo.png"); }
.c-doc-card--wordpress {
    background-image: url("/images/assets/wordpress-logo.png"); }
/*------------------------------------*\
  Components > Testimonial
\*------------------------------------*/
.c-testimonial {
  position: relative;
  height: calc(100% - 32px);
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid #ecf0f1;
  background-color: #fafafa; }
.c-testimonial:before, .c-testimonial:after {
    position: absolute;
    left: 0;
    bottom: -16px;
    content: '';
    border: solid transparent; }
.c-testimonial:before {
    left: -1px;
    border-top-color: #ecf0f1;
    border-width: 16px 16px 0 0; }
.c-testimonial:after {
    border-top-color: #fafafa;
    border-width: 16px 14px 0 0; }
.c-testimonial__author {
    margin-bottom: 0;
    font-style: italic; }
/*------------------------------------*\
  Components > Heading
\*------------------------------------*/
.c-heading {
  position: relative;
  margin: 32px 0;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  line-height: 0; }
.c-heading:after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    content: '';
    border-bottom: 1px solid #ecf0f1; }
.c-heading__title {
    position: relative;
    z-index: 1;
    padding: 0 8px;
    background-color: white; }
/*------------------------------------*\
  Components > Content
\*------------------------------------*/
.c-content a:not(.c-btn) {
  transition: 0.4s;
  text-decoration: underline; }
.c-content a:not(.c-btn):hover, .c-content a:not(.c-btn):active, .c-content a:not(.c-btn):focus {
    color: #207cdf; }
.c-content img {
  padding: 16px;
  border: 1px solid #ecf0f1;
  text-align: center;
  background-color: #fafafa; }
.modal {
  /* This way it could be display flex or grid or whatever also. */
  border-radius: 3px;
  border-radius: 0.1875rem;
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #fff; }
.modal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); }
.modal-header {
  padding: 15px;
  padding: 0.9375rem;
  min-height: 16.43px;
  min-height: 1.026875rem;
  border-bottom: 1px solid #e5e5e5; }
.modal-header .modal-title {
    line-height: 1.42857143;
    opacity: 0.5; }
.modal-header h4 {
    font-weight: 300; }
.modal-header .close {
    font-size: 19.5px;
    font-size: 1.21875rem;
    margin-top: 13px;
    margin-top: 0.8125rem;
    height: 18px;
    width: 18px;
    float: right;
    font-weight: 700;
    line-height: 1;
    color: black;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    padding: 0;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    cursor: pointer; }
.modal-header .close:hover {
      color: #000;
      text-decoration: none;
      cursor: pointer;
      opacity: 0.5;
      filter: alpha(opacity=50); }
.modal-header .close img {
      height: 18px;
      width: 18px; }
.modal-body {
  padding: 15px;
  padding: 0.9375rem; }
.modal-body h2 {
    margin-top: 69px;
    margin-top: 4.3125rem;
    margin-bottom: 62px;
    margin-bottom: 3.875rem; }
.modal-footer {
  padding: 15px;
  padding: 0.9375rem;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-left: 0.3125rem;
    margin-bottom: 0px;
    margin-bottom: 0rem; }
.steps .title h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 38px;
  line-height: 2.375rem;
  color: black;
  font-family: Roboto;
  font-weight: lighter; }
.divMessageBox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100000; }
.MessageBoxContainer {
  top: 35%;
  color: white;
  position: relative;
  width: 100%;
  background-color: #222222;
  padding: 20px;
  padding: 1.25rem; }
.MessageBoxMiddle {
  position: relative;
  left: 20%;
  width: 60%; }
.MsgTitle {
  letter-spacing: -1px;
  letter-spacing: -0.0625rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300; }
.MessageBoxMiddle .pText {
  font-size: 13px;
  font-size: 0.8125rem; }
.MessageBoxButtonSection {
  height: 30px;
  height: 1.875rem;
  width: 100%; }
.MessageBoxButtonSection button {
  margin-right: 7px;
  margin-right: 0.4375rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
  float: right;
  font-weight: 700; }
.message {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 21px;
  line-height: 1.3125rem;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px 0 rgba(201, 201, 201, 0.5);
  color: #FFFFFF;
  font-size: 12px;
  line-height: 21px; }
.message.message-warning {
    background-color: #f4a622; }
.message.message-success {
    background-color: #00af3f; }
.message.message-info {
    background-color: #317090; }
.message.message-danger {
    background-color: #ff001e; }
.message.message-dismissible .close {
    position: relative;
    top: -.75rem;
    right: -1.25rem;
    padding: .75rem 1.25rem;
    color: inherit; }
.message .close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: black;
    text-shadow: 0 1px 0 white;
    opacity: .5; }
.message strong {
    font-weight: bold; }
.card {
  box-sizing: border-box;
  min-height: 260px;
  min-height: 16.25rem;
  height: auto;
  width: 100%;
  border: 1px solid rgba(181, 182, 179, 0.3);
  border-radius: 8px;
  background-color: #FFF;
  box-shadow: 0px 0px 1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden; }
.card--disabled {
    background-color: rgba(0, 0, 0, 0.01); }
.card__hover, .card__hover-area {
    border-radius: 8px;
    position: absolute;
    width: 100%;
    height: 100%; }
.card__hover {
    background: black;
    color: white;
    z-index: 99;
    padding: 30px;
    padding: 1.875rem; }
.card__hover-area {
      z-index: 991; }
.card__content {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 30px;
    padding: 1.875rem; }
.notify-alert {
  width: 525px;
  width: 32.8125rem;
  margin-top: 135px;
  margin-top: 8.4375rem;
  margin-left: 125px;
  margin-left: 7.8125rem;
  background-color: #FF1931 !important;
  min-width: 525px;
  min-height: 0px !important; }
.notify {
  display: flex;
  flex-direction: column;
  z-index: 9999;
  padding: 18px 22px 7px 22px;
  padding: 1.125rem 1.375rem 0.4375rem 1.375rem;
  border-radius: 8px;
  border-radius: 0.5rem;
  width: 390px;
  width: 24.375rem;
  min-height: 125px;
  min-height: 7.8125rem;
  background-color: #29282e;
  color: white;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  overflow: hidden; }
.notify a {
    color: white; }
.notify footer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    float: right; }
.notify .notify__title {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: -1px;
    letter-spacing: -0.0625rem;
    padding: 2px 0px 0px;
    padding: 0.125rem 0rem 0rem;
    margin-bottom: 18px;
    margin-bottom: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    font-weight: 500;
    display: block; }
.notify .notify__content {
    flex: 1;
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0px 0px 8px;
    margin: 0rem 0rem 0.5rem;
    line-height: 30px;
    line-height: 1.875rem;
    font-weight: 500; }
.notify .notifyicon {
    font-size: 30px;
    font-size: 1.875rem;
    top: -4px;
    top: -0.25rem;
    text-align: left;
    position: absolute;
    z-index: 0; }
.notify .notifynumber {
    font-size: 25px;
    font-size: 1.5625rem;
    width: 100%;
    text-align: right; }
.notify .notify__close,
  .notify .notify__button {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    align-items: flex-end;
    font-family: Roboto;
    font-weight: 500;
    letter-spacing: 0.85px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    float: right;
    font-size: 13px; }
.notify .notify__close a,
    .notify .notify__button a {
      text-decoration: none; }
.notify .notify__close {
    opacity: .5; }
.notify--modal {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 20px;
  top: 0;
  left: 0;
  z-index: 2000; }
.notify--modal .notify__overlay {
    width: 100%;
    height: 100vh;
    background-color: white;
    opacity: 0.5;
    z-index: 0;
    position: absolute; }
.notify--top {
  justify-content: flex-start; }
.notify--bottom {
  justify-content: flex-end; }
.notify--center {
  justify-content: center; }
.notify--left {
  align-items: flex-start; }
.notify--right {
  align-items: flex-end; }
.notify--default {
  right: 10px;
  right: 0.625rem;
  bottom: 10px;
  bottom: 0.625rem;
  position: absolute;
  z-index: 2000; }
.modal-overlay {
  z-index: 99 !important; }
.modal-overlay .hidden {
    display: none; }
.modal-overlay .visible {
    display: block; }
.modal-overlay .animated {
    position: relative;
    float: right;
    height: 100%;
    width: 95%; }
.modal-overlay .scrollBar {
    width: 4px;
    width: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: rgba(181, 182, 179, 0.5);
    z-index: 3; }
.modal-overlay .scrollBar .redBar {
      width: 100%;
      height: 1px;
      background-color: #28ff52;
      transition: 0.6s linear;
      transition-property: height; }
.modal-overlay .modal-main {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -ms-overflow-style: none; }
.modal-overlay .main-content {
    z-index: 1 !important;
    position: relative;
    -ms-overflow-style: none; }
.modal-overlay .modal-header {
    font-family: Roboto;
    padding: 15px 0px;
    padding: 0.9375rem 0rem;
    color: rgba(0, 0, 0, 0.6);
    position: relative; }
.modal-overlay .modal-header .close {
      font-size: 50px;
      font-size: 3.125rem;
      margin-right: 49px;
      margin-right: 3.0625rem;
      color: #b90000;
      font-family: serif;
      font-weight: lighter;
      z-index: 99 !important; }
.modal-overlay .modal-header .modal-title, .modal-overlay .modal-header .modal-client {
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 24px;
      line-height: 1.5rem;
      margin: 0;
      color: black;
      font-family: Roboto; }
.modal-overlay .modal-header .modal-client {
      font-weight: bold; }
.modal-overlay .modal-header .modal-installation {
      font-size: 11px;
      font-size: 0.6875rem;
      letter-spacing: 1px;
      letter-spacing: 0.0625rem;
      line-height: 11px;
      line-height: 0.6875rem;
      padding-top: 8px;
      padding-top: 0.5rem;
      font-weight: lighter;
      color: rgba(0, 0, 0, 0.6);
      font-family: Roboto;
      margin: 0; }
.modal-overlay .modal-header .header--steps {
      display: -moz-flex;
      display: flex; }
.modal-overlay .modal-header .header--form {
      font-size: 24px;
      font-size: 1.5rem;
      color: rgba(0, 0, 0, 0.9);
      font-family: Roboto;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.17;
      letter-spacing: 0.5px; }
.modal-overlay .modal-header-success {
    padding: 34px 15px 34px;
    padding: 2.125rem 0.9375rem 2.125rem;
    background: #00af3f;
    z-index: 2;
    position: relative; }
.modal-overlay .modal-header-success .icon {
      height: 56px;
      height: 3.5rem;
      width: 56px;
      width: 3.5rem;
      border-radius: 28px;
      border-radius: 1.75rem;
      margin-top: 1px;
      margin-top: 0.0625rem;
      background-color: rgba(255, 255, 255, 0.1); }
.modal-overlay .modal-header-success .icon span {
        height: 44px;
        height: 2.75rem;
        width: 44px;
        width: 2.75rem;
        border-radius: 22px;
        border-radius: 1.375rem;
        position: relative;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        display: block;
        background: url("/assets/img/Check.svg") 50%/50% no-repeat;
        background-color: white; }
.modal-overlay .modal-header-success h4 {
      font-size: 24px;
      font-size: 1.5rem;
      letter-spacing: 0.26px;
      letter-spacing: 0.01625rem;
      line-height: 31px;
      line-height: 1.9375rem;
      color: white;
      font-family: Roboto;
      margin: 0; }
.modal-overlay .modal-header-success h4 strong {
        color: black; }
.modal-overlay .modal-scroll .modal-header {
    height: 50px;
    height: 3.125rem;
    background-color: white;
    border: 0; }
.modal-overlay .modal-body {
    padding: 15px 0px;
    padding: 0.9375rem 0rem;
    -ms-overflow-style: none; }
.modal-overlay .modal-body .modal-steps {
      margin-top: 69px;
      margin-top: 4.3125rem;
      width: 36px;
      width: 2.25rem;
      text-align: center; }
.modal-overlay .modal-body .modal-steps .modal-stepStart {
        font-size: 16px;
        font-size: 1rem;
        line-height: 24px;
        line-height: 1.5rem;
        color: black;
        font-family: Roboto; }
.modal-overlay .modal-body .modal-steps .modal-stepLine {
        margin: 13px 0px;
        margin: 0.8125rem 0rem;
        box-sizing: border-box;
        border-top: 1px solid #666;
        opacity: 0.48; }
.modal-overlay .modal-body .modal-steps .modal-stepEnd {
        font-size: 11px;
        font-size: 0.6875rem;
        letter-spacing: 1px;
        letter-spacing: 0.0625rem;
        line-height: 24px;
        line-height: 1.5rem;
        color: rgba(0, 0, 0, 0.6);
        font-family: Roboto; }
.icon-info-list .content {
  margin-top: 60px;
  margin-top: 3.75rem; }
.icon-info-list .row {
  margin-left: 20px;
  margin-left: 1.25rem; }
.icon-info-list .defaulticoncolor {
  color: #28ff52; }
.icon-info-list .labelinfo {
  color: rgba(0, 0, 0, 0.87);
  font-family: Roboto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem; }
.icon-info-list hr {
  margin-top: 32px;
  margin-top: 2rem;
  height: 1px;
  height: 0.0625rem;
  box-sizing: border-box;
  border-top: 1px solid rgba(0, 0, 0, 0.16); }
.icon-info-list .spacefromicon {
  margin-left: 29px;
  margin-left: 1.8125rem; }
.icon-info-list .imagesize {
  width: 24px;
  width: 1.5rem; }
.error-div {
  margin-bottom: 0px;
  margin-bottom: 0rem; }
.custom-selectbox-wrapper .modal-wrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8) !important;
  width: 100vw;
  height: 100vh;
  z-index: 99; }
.custom-selectbox-wrapper .modal-wrapper .main-content {
    opacity: 1 !important;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: black !important;
    width: 55vw;
    height: 68.5vh;
    z-index: 999;
    border: 0px;
    border-radius: 14px;
    border-radius: 0.875rem; }
/*------------------------------------*\
  Trumbs > Hide
\*------------------------------------*/
.hidden {
  display: none; }
.hidden-visually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }
/*------------------------------------*\
  Trumbs > Align
\*------------------------------------*/
.text-left {
  text-align: left; }
.text-right {
  text-align: right; }
.text-center {
  text-align: center; }
.text-justify {
  text-align: justify; }
/*------------------------------------*\
  Elements > Page
\*------------------------------------*/
.inline {
  display: inline; }
.block {
  display: block; }
.inline-block {
  display: inline-block; }
.left {
  float: left; }
.right {
  float: right; }
.bottom-shadow {
  box-shadow: -1px 0px 9px 0px rgba(0, 0, 0, 0.1); }
/*------------------------------------*\
  Trumbs > Clearfix
\*------------------------------------*/
.u-clearfix::after {
  display: block;
  clear: both;
  content: ""; }
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both !important;
  animation-fill-mode: both !important; }
.animated .fast {
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s; }
.infinite {
  -webkit-animation-iteration-count: infinite !important;
  animation-iteration-count: infinite; }
.alternate {
  -webkit-animation-direction: alternate !important;
  animation-direction: alternate; }
.delay1 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important; }
.delay2 {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important; }
.delay3 {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important; }
.delay-05 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important; }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing !important;
  animation-name: swing !important; }
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); } }
.flash {
  -webkit-animation-name: flash !important;
  animation-name: flash !important; }
@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }
@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1; }
  25%,
  75% {
    opacity: 0; } }
.shake {
  -webkit-animation-name: shake !important;
  animation-name: shake !important; }
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }
.bounce {
  -webkit-animation-name: bounce !important;
  animation-name: bounce !important; }
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }
.tada {
  -webkit-animation-name: tada !important;
  animation-name: tada !important; }
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }
.wobble {
  -webkit-animation-name: wobble !important;
  animation-name: wobble !important; }
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg); }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg); }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); } }
.pulse {
  -webkit-animation-name: pulse !important;
  animation-name: pulse !important; }
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.flip {
  -webkit-transform: translateY(visible);
  transform: translateY(visible);
  -webkit-animation-name: flip !important;
  animation-name: flip !important; }
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.flipInX {
  -webkit-transform: translateY(visible);
  transform: translateY(visible);
  -webkit-animation-name: flipInX !important;
  animation-name: flipInX !important; }
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }
.flipOutX {
  -webkit-animation-name: flipOutX !important;
  animation-name: flipOutX !important;
  -webkit-transform: translateY(visible);
  transform: translateY(visible); }
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }
.flipInY {
  -webkit-transform: translateY(visible);
  transform: translateY(visible);
  -webkit-animation-name: flipInY !important;
  animation-name: flipInY !important; }
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg); }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }
.flipOutY {
  -webkit-transform: translateY(visible);
  transform: translateY(visible);
  -webkit-animation-name: flipOutY !important;
  animation-name: flipOutY !important; }
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }
.fadeIn {
  -webkit-animation-name: fadeIn !important;
  animation-name: fadeIn !important; }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp !important;
  animation-name: fadeInUp !important; }
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDown {
  -webkit-animation-name: fadeInDown !important;
  animation-name: fadeInDown !important; }
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft !important;
  animation-name: fadeInLeft !important; }
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRight {
  -webkit-animation-name: fadeInRight !important;
  animation-name: fadeInRight !important; }
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    max-width: 0%;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    max-width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    max-width: 0%;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 1;
    max-width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig !important;
  animation-name: fadeInUpBig !important; }
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig !important;
  animation-name: fadeInDownBig !important; }
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig !important;
  animation-name: fadeInLeftBig !important; }
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
/** JEFERSON **/
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig !important;
  animation-name: fadeInRightBig !important; }
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut !important;
  animation-name: fadeOut !important; }
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp !important;
  animation-name: fadeOutUp !important; }
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); } }
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown !important;
  animation-name: fadeOutDown !important; }
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); } }
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft !important;
  animation-name: fadeOutLeft !important; }
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    max-width: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    max-width: 0%;
    overflow-y: hidden;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); } }
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    max-width: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    max-width: 0%;
    overflow-y: hidden;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight !important;
  animation-name: fadeOutRight !important; }
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig !important;
  animation-name: fadeOutUpBig !important; }
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig !important;
  animation-name: fadeOutDownBig !important; }
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig !important;
  animation-name: fadeOutLeftBig !important; }
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig !important;
  animation-name: fadeOutRightBig !important; }
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05); }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }
.bounceIn {
  -webkit-animation-name: bounceIn !important;
  animation-name: bounceIn !important; }
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
@keyframes slideLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); } }
.slideLeft {
  -webkit-animation-name: slideLeft !important;
  animation-name: slideLeft !important; }
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.slideInDown {
  -webkit-animation-name: slideInDown !important;
  animation-name: slideInDown !important; }
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft !important;
  animation-name: slideInLeft !important; }
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.slideInRight {
  -webkit-animation-name: slideInRight !important;
  animation-name: slideInRight !important; }
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft !important;
  animation-name: slideOutLeft !important; }
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight !important;
  animation-name: slideOutRight !important; }
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp !important;
  animation-name: slideOutUp !important; }
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp !important;
  animation-name: bounceInUp !important; }
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px); }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
.bounceInDown {
  -webkit-animation-name: bounceInDown !important;
  animation-name: bounceInDown !important; }
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px); }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft !important;
  animation-name: bounceInLeft !important; }
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px); }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.bounceInRight {
  -webkit-animation-name: bounceInRight !important;
  animation-name: bounceInRight !important; }
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut !important;
  animation-name: bounceOut !important; }
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp !important;
  animation-name: bounceOutUp !important; }
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown !important;
  animation-name: bounceOutDown !important; }
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft !important;
  animation-name: bounceOutLeft !important; }
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight !important;
  animation-name: bounceOutRight !important; }
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn !important;
  animation-name: rotateIn !important; }
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft !important;
  animation-name: rotateInUpLeft !important; }
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft !important;
  animation-name: rotateInDownLeft !important; }
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight !important;
  animation-name: rotateInUpRight !important; }
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight !important;
  animation-name: rotateInDownRight !important; }
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut !important;
  animation-name: rotateOut !important; }
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft !important;
  animation-name: rotateOutUpLeft !important; }
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft !important;
  animation-name: rotateOutDownLeft !important; }
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight !important;
  animation-name: rotateOutUpRight !important; }
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1; }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight !important;
  animation-name: rotateOutDownRight !important; }
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out; }
  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge !important;
  animation-name: hinge !important; }
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); } }
.rollIn {
  -webkit-animation-name: rollIn !important;
  animation-name: rollIn !important; }
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg); } }
.rollOut {
  -webkit-animation-name: rollOut !important;
  animation-name: rollOut !important; }
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn !important;
  animation-name: lightSpeedIn !important;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s; }
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut !important;
  animation-name: lightSpeedOut !important;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s; }
.fade {
  opacity: 0;
  transition: opacity 0.15s linear; }
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@-webkit-keyframes increaseHeight {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes increaseHeight {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.increaseHeight {
  -webkit-animation-name: increaseHeight !important;
  animation-name: increaseHeight !important; }
@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }
.placeHolderShimmer {
  -webkit-animation-name: placeHolderShimmer !important;
  animation-name: placeHolderShimmer !important; }
.custom-class-example {
  color: #ccc; }
.custom-class-example .c-token {
  background: #38d574 !important; }
.custom-class-example .pure-checkbox label::before {
  border-color: #38d574 !important; }
.custom-class-example .pure-checkbox input[type="checkbox"]:checked + label[_ngcontent-c1]:before {
  background: #38d574 !important; }
.custom-class-combo-single {
  color: #ccc; }
.custom-class-combo-single .pure-checkbox input[type=checkbox] + label:after {
  border-color: transparent;
  content: none; }
.custom-class-combo-single .pure-checkbox input[type=checkbox] + label:before {
  content: none; }
.custom-class-combo-single .pure-checkbox input[type="checkbox"] + label {
  padding-left: 0px !important; }
.custom-class-combo-single .c-btn {
  color: #000;
  line-height: 1.3 !important;
  border: solid 0,5px #4c4e4a !important;
  position: relative !important;
  width: 312px;
  height: 40px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  margin-top: 7px;
  outline: 0; }
.custom-class-combo-single .c-btn .c-angle-down {
  margin-top: 4px !important;
  margin-right: -17px; }
.custom-class-combo-single .c-btn .c-angle-up {
  margin-top: 4px !important;
  margin-right: -17px; }
.custom-class-combo-single .c-btn .c-angle-up svg,
.custom-class-combo-single .c-btn .c-angle-down svg {
  fill: #263CC8 !important; }
.custom-class-combo-single .c-btn span {
  margin-top: 10px !important;
  margin-left: 9px !important; }
.custom-class-combo-single .cuppa-dropdown ul li {
  padding: 11px;
  cursor: pointer;
  text-align: left;
  height: auto; }
.custom-class-combo-single .cuppa-dropdown .list-area .ng-star-inserted {
  overflow: hidden !important; }
.custom-class-combo-single .cuppa-dropdown .list-area .lazyContainer {
  overflow: auto !important;
  max-height: 300px !important; }
.custom-class-combo-single .cuppa-dropdown .list-area .lazyContainer::-webkit-scrollbar {
  width: 0.3em !important; }
.custom-class-combo-single .cuppa-dropdown .list-area .lazyContainer::-webkit-scrollbar-track {
  --webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important; }
.custom-class-combo-single .cuppa-dropdown .list-area .lazyContainer::-webkit-scrollbar-thumb {
  background-color: #28FF52 !important;
  outline: 1px solid slategrey !important; }
.custom-class .cuppa-dropdown .dropdown-list .list-area .lazyContainer {
  -ms-overflow-style: scrollbar;
  -ms-scrollbar-face-color: #28FF52;
  -ms-scrollbar-base-color: #dcdcdc; }
.custom-class-combo-single .cuppa-dropdown .dropdown-list {
  position: absolute !important;
  padding-top: 14px !important;
  width: 100% !important;
  margin-top: 15px !important;
  z-index: 9999 !important; }
.custom-class .cuppa-dropdown .selected-list .c-btn {
  outline: none !important;
  border-bottom: 1px solid #b5b6b3 !important; }
.custom-class .cuppa-dropdown .selected-list .c-angle-down svg,
.custom-class .cuppa-dropdown .selected-list .c-angle-up svg {
  fill: #263CC8 !important; }
.custom-class .cuppa-dropdown .selected-list .c-list .c-token {
  background: none !important; }
.custom-class .cuppa-dropdown .dropdown-list .list-area .lazyContainer {
  overflow: auto !important;
  max-height: 300px !important; }
.custom-class .cuppa-dropdown .dropdown-list .list-area .lazyContainer::-webkit-scrollbar {
  width: 0.3em !important; }
.custom-class .cuppa-dropdown .dropdown-list .list-area .lazyContainer::-webkit-scrollbar-track {
  --webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important; }
.custom-class .cuppa-dropdown .dropdown-list .list-area .lazyContainer::-webkit-scrollbar-thumb {
  background-color: #28FF52 !important;
  outline: 1px solid slategrey !important; }
.ng2-pdf-viewer-container {
  overflow-x: visible !important; }
.autocomplete-container {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0), 0 1px 1px 0 rgba(0, 0, 0, 0), 0 2px 1px -1px rgba(0, 0, 0, 0.12) !important;
  position: relative;
  overflow: visible;
  height: 40px; }
.autocomplete {
  color: 0; }
.hiddenList .dropdown-list {
  display: none !important; }
body.dialog-open {
  overflow: hidden; }
.nsm-dialog-btn-close {
  border: 0;
  background: none;
  color: #2d2d2d;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.2em;
  cursor: pointer; }
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: background-color 500ms;
  background-color: transparent;
  z-index: 999; }
.overlay.nsm-overlay-open {
    background-color: rgba(0, 0, 0, 0.5); }
.overlay.transparent {
    background-color: transparent; }
.nsm-dialog {
  position: relative;
  opacity: 1;
  visibility: visible;
  min-height: 200px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  pointer-events: none; }
.nsm-dialog.nsm-dialog-close {
    opacity: 0; }
.nsm-dialog.nsm-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - (1.75rem * 2)); }
.nsm-content {
  position: relative;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-clip: padding-box;
  background-color: #fff;
  border-radius: 2px;
  padding: 1rem;
  margin: 1.75rem;
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 13px 19px 2px rgba(0, 0, 0, 0.14), 0 5px 24px 4px rgba(0, 0, 0, 0.12);
  outline: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
.nsm-body {
  position: relative;
  flex: 1 1 auto; }
/* *************************
* Animations
* *************************/
.nsm-dialog[class*=nsm-dialog-animation-] {
  transition: opacity 500ms, -webkit-transform 500ms ease-in-out;
  transition: transform 500ms ease-in-out, opacity 500ms;
  transition: transform 500ms ease-in-out, opacity 500ms, -webkit-transform 500ms ease-in-out; }
.nsm-dialog-animation-ltr {
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0); }
.nsm-dialog-animation-ltr.nsm-dialog-open {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-ltr.nsm-dialog-close {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0); }
.nsm-dialog-animation-rtl {
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0); }
.nsm-dialog-animation-rtl.nsm-dialog-open {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-rtl.nsm-dialog-close {
    -webkit-transform: translate3d(50%, 0, 0);
            transform: translate3d(50%, 0, 0); }
.nsm-dialog-animation-ttb {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0); }
.nsm-dialog-animation-ttb.nsm-dialog-open {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-ttb.nsm-dialog-close {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0); }
.nsm-dialog-animation-btt {
  -webkit-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0); }
.nsm-dialog-animation-btt.nsm-dialog-open {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
.nsm-dialog-animation-btt.nsm-dialog-close {
    -webkit-transform: translate3d(0, 50%, 0);
            transform: translate3d(0, 50%, 0); }
html, body {
  scroll-behavior: smooth;
  width: 100%;
  min-height: 100%;
  height: 100vh;
  background-color: white;
  overflow: hidden; }
html > .container,
  html > .container-fluid,
  html > .row,
  html > section, body > .container,
  body > .container-fluid,
  body > .row,
  body > section {
    min-height: 100%; }
.custom-row .row {
  justify-content: center !important;
  margin-top: -2 !important; }
.relative {
  position: relative; }
.color-gray {
  background-color: #f6f6f6; }
.steps > * {
  align-items: stretch;
  position: relative; }
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2); }
.last-visible, edp-flux-control {
  height: 20px;
  width: 100%;
  position: absolute;
  bottom: 0rem; }
.protocolpadding span {
  font-weight: bold !important; }
.container-loader {
  min-width: 100%;
  min-height: 100%;
  position: relative; }
.iconClass {
  width: 30px !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
  top: -1px;
  top: -0.0625rem; }
edp-input-field.ng-valid.ng-dirty .iconClass {
  background-image: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2213px%22 height%3D%2210px%22 viewBox%3D%220 0 13 10%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A sketchtool 51.2 (57519) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EA578D828-6169-4B0A-AC7C-BF83B0DF5666%3C%2Ftitle%3E    %3Cdesc%3ECreated with sketchtool.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Religa%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%224-%E2%80%94-Religa%22 transform%3D%22translate(-1119.000000%2C -393.000000)%22%3E            %3Cg id%3D%22Modal%22 transform%3D%22translate(398.000000%2C -2.000000)%22%3E                %3Cg id%3D%22Icon-%2F-Small-Copy%22 transform%3D%22translate(715.000000%2C 387.000000)%22%3E                    %3Cg id%3D%22icon-%2F-small%22 fill-rule%3D%22nonzero%22%3E                        %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2225%22 height%3D%2225%22%3E%3C%2Frect%3E                    %3C%2Fg%3E                    %3Cpolygon id%3D%22Shape%22 fill%3D%22%2300AF3F%22 points%3D%2210.3181818 15.6402363 7.45454545 12.8193408 6.5 13.7596393 10.3181818 17.5208333 18.5 9.46113184 17.5454545 8.52083333%22%3E%3C%2Fpolygon%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E"); }
edp-input-field.ng-invalid.ng-dirty .iconClass {
  background-image: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2216px%22 height%3D%2216px%22 viewBox%3D%220 0 16 16%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A sketchtool 52.2 (67145) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3ECD2267A4-B561-4E0F-A3C7-81C84776F3AD%3C%2Ftitle%3E    %3Cdesc%3ECreated with sketchtool.%3C%2Fdesc%3E    %3Cg id%3D%22Home--%E2%9A%A1%EF%B8%8F%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%228_Home-Hover-Copy%22 transform%3D%22translate(-725.000000%2C -454.000000)%22 stroke%3D%22%23FF1931%22%3E            %3Cg id%3D%22Card%2FInstala%C3%A7%C3%A3o-Ativa%22 transform%3D%22translate(683.000000%2C 220.000000)%22%3E                %3Cg id%3D%22Icon-%2F-Attention%22 transform%3D%22translate(38.000000%2C 230.000000)%22%3E                    %3Cg id%3D%22Attention%22 transform%3D%22translate(5.000000%2C 5.000000)%22%3E                        %3Cpath d%3D%22M7%2C3.5 L7%2C8.17103608%22 id%3D%22Shape%22 stroke-width%3D%221.16666667%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E                        %3Ccircle id%3D%22circle%22 stroke-width%3D%220.972222222%22 fill-rule%3D%22nonzero%22 cx%3D%227%22 cy%3D%227%22 r%3D%227%22%3E%3C%2Fcircle%3E                        %3Cpath d%3D%22M7%2C11.1759479 L7%2C11.1819137%22 id%3D%22Shape%22 stroke-width%3D%221.55555556%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E                    %3C%2Fg%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E"); }
edp-input-field.ng-invalid.ng-dirty .fields__content {
  border-bottom: 1px solid #28ff52 !important; }
.scroll::-webkit-scrollbar {
  width: 0.3em; }
.scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }
.scroll::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 20px; }
.containerCheckbox .informationlabel {
  padding-left: 40px;
  width: 100%; }
.containerCheckbox .boxcheck {
  z-index: 1; }
.flex-content {
  display: flex; }
.icon-Call2 {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22233px%22 viewBox%3D%220 0 232 233%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.2 (67145) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Small Copy%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(0.000000%2C -644.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221268%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-atendimento-telefone-atual%22 transform%3D%22translate(100.000000%2C 745.000000)%22 fill-rule%3D%22nonzero%22%3E                %3Cpath d%3D%22M15.5%2C0 L15.5%2C0 C24.0604136%2C-1.57252247e-15 31%2C6.93958638 31%2C15.5 L31%2C15.5 C31%2C24.0604136 24.0604136%2C31 15.5%2C31 L15.5%2C31 C6.93958638%2C31 1.04834831e-15%2C24.0604136 0%2C15.5 L0%2C15.5 C-1.04834831e-15%2C6.93958638 6.93958638%2C1.57252247e-15 15.5%2C0 Z%22 id%3D%22Rectangle-3-Copy-3%22 stroke%3D%22%23B5B6B3%22 stroke-width%3D%221%22 fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E                %3Ccircle id%3D%22Oval-5-Copy-6%22 stroke%3D%22%2300AF3F%22 stroke-width%3D%221.51219512%22 fill%3D%22%2300AF3F%22 cx%3D%2215.5%22 cy%3D%2215.5%22 r%3D%2215.5%22%3E%3C%2Fcircle%3E                %3Cpath d%3D%22M12.6331314%2C18.1846797 C14.8307698%2C20.8996636 20.1863591%2C23.5015233 21.4790875%2C22.9170475 C22.771816%2C22.3325718 23.0488292%2C21.0693501 22.9934266%2C20.4848744 C22.9380239%2C19.9003987 20.0016836%2C18.1092635 19.2629816%2C17.7698905 C18.5242797%2C17.4305175 17.6747724%2C18.5240527 17.2684863%2C18.9954041 C16.8437327%2C19.4479014 15.2185883%2C18.0715553 14.5168215%2C17.3739553 C14.5168215%2C17.3739553 12.6700665%2C15.2623011 13.0948202%2C14.8098038 C13.5195738%2C14.3573065 14.5722241%2C13.4523118 14.2028731%2C12.7170037 C13.8335221%2C11.9816955 11.9682997%2C9.0404629 11.3773381%2C9.00275479 C10.8048441%2C8.96504667 9.58598582%2C9.30441967 9.06889444%2C10.6430576 C8.55180306%2C11.9816955 11.0264547%2C17.0911445 13.7781195%2C19.2216527%22 id%3D%22Path%22 fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Atendimento_telefone {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22233px%22 height%3D%22233px%22 viewBox%3D%220 0 233 233%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.2 (67145) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F atendimento telefone %3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-113.000000%2C -644.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221268%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-atendimento-telefone-%22 transform%3D%22translate(214.000000%2C 745.000000)%22 fill-rule%3D%22nonzero%22%3E                %3Cpath d%3D%22M15.5%2C0 L15.5%2C0 C24.0604136%2C-1.57252247e-15 31%2C6.93958638 31%2C15.5 L31%2C15.5 C31%2C24.0604136 24.0604136%2C31 15.5%2C31 L15.5%2C31 C6.93958638%2C31 1.04834831e-15%2C24.0604136 0%2C15.5 L0%2C15.5 C-1.04834831e-15%2C6.93958638 6.93958638%2C1.57252247e-15 15.5%2C0 Z%22 id%3D%22Rectangle-3-Copy-3%22 stroke%3D%22%23B5B6B3%22 stroke-width%3D%221%22 fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E                %3Cpath d%3D%22M12.6331314%2C18.1846797 C14.8307698%2C20.8996636 20.1863591%2C23.5015233 21.4790875%2C22.9170475 C22.771816%2C22.3325718 23.0488292%2C21.0693501 22.9934266%2C20.4848744 C22.9380239%2C19.9003987 20.0016836%2C18.1092635 19.2629816%2C17.7698905 C18.5242797%2C17.4305175 17.6747724%2C18.5240527 17.2684863%2C18.9954041 C16.8437327%2C19.4479014 15.2185883%2C18.0715553 14.5168215%2C17.3739553 C14.5168215%2C17.3739553 12.6700665%2C15.2623011 13.0948202%2C14.8098038 C13.5195738%2C14.3573065 14.5722241%2C13.4523118 14.2028731%2C12.7170037 C13.8335221%2C11.9816955 11.9682997%2C9.0404629 11.3773381%2C9.00275479 C10.8048441%2C8.96504667 9.58598582%2C9.30441967 9.06889444%2C10.6430576 C8.55180306%2C11.9816955 11.0264547%2C17.0911445 13.7781195%2C19.2216527%22 id%3D%22Path%22 fill%3D%22%23EE162D%22%3E%3C%2Fpath%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-3dots {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 19%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-231.000000%2C -1035.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Edit-2-Copy%22 transform%3D%22translate(331.000000%2C 1135.000000)%22 fill%3D%22%23605751%22%3E                %3Cpath d%3D%22M13.984375%2C11.9921875 C13.984375%2C12.5546903 13.7890645%2C13.031248 13.3984375%2C13.421875 C13.0078105%2C13.812502 12.5390652%2C14.0078125 11.9921875%2C14.0078125 C11.4453098%2C14.0078125 10.9765645%2C13.812502 10.5859375%2C13.421875 C10.1953105%2C13.031248 10%2C12.5546903 10%2C11.9921875 C10%2C11.4453098 10.1953105%2C10.9765645 10.5859375%2C10.5859375 C10.9765645%2C10.1953105 11.4453098%2C10 11.9921875%2C10 C12.5390652%2C10 13.0078105%2C10.1953105 13.3984375%2C10.5859375 C13.7890645%2C10.9765645 13.984375%2C11.4453098 13.984375%2C11.9921875 Z M5.9921875%2C10 C6.53906523%2C10 7.00781055%2C10.1953105 7.3984375%2C10.5859375 C7.78906445%2C10.9765645 7.984375%2C11.4453098 7.984375%2C11.9921875 C7.984375%2C12.5546903 7.78906445%2C13.031248 7.3984375%2C13.421875 C7.00781055%2C13.812502 6.53906523%2C14.0078125 5.9921875%2C14.0078125 C5.44530977%2C14.0078125 4.97656445%2C13.812502 4.5859375%2C13.421875 C4.19531055%2C13.031248 4%2C12.5546903 4%2C11.9921875 C4%2C11.4453098 4.19531055%2C10.9765645 4.5859375%2C10.5859375 C4.97656445%2C10.1953105 5.44530977%2C10 5.9921875%2C10 Z M17.9921875%2C10 C18.5390652%2C10 19.0078105%2C10.1953105 19.3984375%2C10.5859375 C19.7890645%2C10.9765645 19.984375%2C11.4453098 19.984375%2C11.9921875 C19.984375%2C12.5546903 19.7890645%2C13.031248 19.3984375%2C13.421875 C19.0078105%2C13.812502 18.5390652%2C14.0078125 17.9921875%2C14.0078125 C17.4453098%2C14.0078125 16.9765645%2C13.812502 16.5859375%2C13.421875 C16.1953105%2C13.031248 16%2C12.5546903 16%2C11.9921875 C16%2C11.4453098 16.1953105%2C10.9765645 16.5859375%2C10.5859375 C16.9765645%2C10.1953105 17.4453098%2C10 17.9921875%2C10 Z%22 id%3D%22icon%22%3E%3C%2Fpath%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Attanch {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F Attanch%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-346.000000%2C -246.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Attanch%22 transform%3D%22translate(446.000000%2C 346.000000)%22 stroke%3D%22%23005A8B%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                %3Cpath d%3D%22M10.6363636%2C9.66666667 L10.6363636%2C13.4 C10.6363636%2C14.4313333 11.45%2C15.2666667 12.4545455%2C15.2666667 C13.4590909%2C15.2666667 14.2727273%2C14.4313333 14.2727273%2C13.4 L14.2727273%2C8.73333333 C14.2727273%2C6.6716 12.6445455%2C5 10.6363636%2C5 C8.62818182%2C5 7%2C6.6716 7%2C8.73333333 L7%2C13.8666667 C7%2C16.7021333 9.23818182%2C19 12%2C19 C14.7618182%2C19 17%2C16.7021333 17%2C13.8666667 L17%2C8.73333333%22 id%3D%22Shape%22%3E%3C%2Fpath%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Attention {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Attention%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-Attention%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22Attention%22 transform%3D%22translate(5.000000%2C 5.000000)%22 stroke%3D%22%23FF1931%22%3E            %3Cpath d%3D%22M7%2C3.5 L7%2C8.17103608%22 id%3D%22Shape%22 stroke-width%3D%221.16666667%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E            %3Ccircle id%3D%22circle%22 stroke-width%3D%220.972222222%22 fill-rule%3D%22nonzero%22 cx%3D%227%22 cy%3D%227%22 r%3D%227%22%3E%3C%2Fcircle%3E            %3Cpath d%3D%22M7%2C11.1759479 L7%2C11.1819137%22 id%3D%22Shape%22 stroke-width%3D%221.55555556%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E%3C%2Fpath%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Barcode {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Barcode%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-Barcode%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cpath d%3D%22M5.93333333%2C16 L5.93333333%2C8 L5%2C8 L5%2C16 L5.93333333%2C16 Z M10.6%2C8 L9.66666667%2C8 L9.66666667%2C16 L10.6%2C16 L11.5333333%2C16 L11.5333333%2C8 L10.6%2C8 Z M13.4%2C16 L13.4%2C8 L12.4666667%2C8 L12.4666667%2C16 L13.4%2C16 Z M19%2C16 L19%2C8 L18.0666667%2C8 L18.0666667%2C16 L19%2C16 Z M16.2%2C8 L15.2666667%2C8 L15.2666667%2C16 L16.2%2C16 L17.1333333%2C16 L17.1333333%2C8 L16.2%2C8 Z M7.8%2C8 L6.86666667%2C8 L6.86666667%2C16 L7.8%2C16 L8.73333333%2C16 L8.73333333%2C8 L7.8%2C8 Z%22 id%3D%22Shape%22 fill%3D%22%23000000%22 fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Calendar {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Calendar%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-Calendar%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22icon-%2F-small%22 fill-rule%3D%22nonzero%22%3E            %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E        %3C%2Fg%3E        %3Cg id%3D%22calendar-57-outline-64%22 transform%3D%22translate(5.000000%2C 5.000000)%22 stroke%3D%22%2328FF52%22 stroke-linecap%3D%22square%22%3E            %3Cpath d%3D%22M14%2C4.9 L0%2C4.9%22 id%3D%22Shape%22%3E%3C%2Fpath%3E            %3Crect id%3D%22Rectangle-path%22 x%3D%220%22 y%3D%221.4%22 width%3D%2214%22 height%3D%2212.6%22%3E%3C%2Frect%3E            %3Cpath d%3D%22M7%2C0 L7%2C2.8%22 id%3D%22Shape%22%3E%3C%2Fpath%3E            %3Cpath d%3D%22M3.5%2C0 L3.5%2C2.8%22 id%3D%22Shape%22%3E%3C%2Fpath%3E            %3Cpath d%3D%22M10.5%2C0 L10.5%2C2.8%22 id%3D%22Shape%22%3E%3C%2Fpath%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Cell {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22221px%22 height%3D%22224px%22 viewBox%3D%220 0 221 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 5%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-579.000000%2C -526.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Call%22 transform%3D%22translate(679.000000%2C 626.000000)%22 stroke%3D%22%23000000%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22phone-outline-24%22 transform%3D%22translate(4.000000%2C 4.000000)%22%3E                    %3Cpath d%3D%22M12.1904762%2C9.9047619 L9.9047619%2C12.1904762 L3.80952381%2C6.0952381 L6.0952381%2C3.80952381 L2.28571429%2C0 L0%2C2.28571429 C0%2C9.85980952 6.14019048%2C16 13.7142857%2C16 L16%2C13.7142857 L12.1904762%2C9.9047619 Z%22 id%3D%22Shape%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Check {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Check%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-Check%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22icon-%2F-small%22 fill-rule%3D%22nonzero%22%3E            %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E        %3C%2Fg%3E        %3Cpolygon id%3D%22Shape%22 fill%3D%22%2300AF3F%22 points%3D%229.45454545 15.2288557 6.11363636 11.5721393 5 12.7910448 9.45454545 17.6666667 19 7.21890547 17.8863636 6%22%3E%3C%2Fpolygon%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Close {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Close%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-Close%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22mais%22 transform%3D%22translate(5.000000%2C 5.000000)%22 fill%3D%22%23212E3E%22 fill-rule%3D%22nonzero%22%3E            %3Crect id%3D%22Rectangle-5%22 transform%3D%22translate(7.000000%2C 7.000000) rotate(45.000000) translate(-7.000000%2C -7.000000) %22 x%3D%22-1.4%22 y%3D%226.475%22 width%3D%2216.8%22 height%3D%221.05%22%3E%3C%2Frect%3E            %3Crect id%3D%22Rectangle-2%22 transform%3D%22translate(7.000000%2C 7.000000) rotate(45.000000) translate(-7.000000%2C -7.000000) %22 x%3D%226.475%22 y%3D%22-1.4%22 width%3D%221.05%22 height%3D%2216.8%22%3E%3C%2Frect%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Edit2 {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 18%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-116.000000%2C -1035.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Edit%22 transform%3D%22translate(216.000000%2C 1135.000000)%22 stroke%3D%22%23005A8B%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22i-edit-outline-12%22 transform%3D%22translate(6.000000%2C 6.000000)%22%3E                    %3Cpath d%3D%22M0.541666667%2C12.4583333 L12.4583333%2C12.4583333%22 id%3D%22Path%22%3E%3C%2Fpath%3E                    %3Cpolygon id%3D%22Path%22 points%3D%229.20833333 0.541666667 11.375 2.70833333 4.875 9.20833333 1.625 10.2916667 2.70833333 7.04166667%22%3E%3C%2Fpolygon%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Energy {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22232px%22 viewBox%3D%220 0 232 232%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 10%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-116.000000%2C -774.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Religa%22 transform%3D%22translate(216.000000%2C 874.000000)%22 fill%3D%22%2328FF52%22%3E                %3Cg id%3D%22flash-21-colored-48%22 transform%3D%22translate(8.000000%2C 7.000000)%22%3E                    %3Cpath d%3D%22M6.31558316%2C17.6842105 C6.24773895%2C17.6842105 6.17927579%2C17.6677642 6.11636632%2C17.6340463 C5.94675368%2C17.5427621 5.86061053%2C17.3478611 5.90728%2C17.1609768 L7.46073263%2C10.9473684 L0.421052632%2C10.9473684 C0.254113684%2C10.9473684 0.102795789%2C10.8486821 0.0355663158%2C10.6959284 C-0.0316631579%2C10.5429684 -0.00205473684%2C10.3649263 0.110610526%2C10.2417768 L9.37376842%2C0.136513684 C9.50411368%2C-0.00554947368 9.71402526%2C-0.04112 9.88363789%2C0.0501642105 C10.0532505%2C0.141448421 10.1393937%2C0.336349474 10.0927242%2C0.523233684 L8.53926737%2C6.73684211 L15.5789474%2C6.73684211 C15.7458863%2C6.73684211 15.8972042%2C6.83552842 15.9644337%2C6.98828211 C16.0316632%2C7.14124211 16.0020589%2C7.31928421 15.8893937%2C7.44243368 L6.62623579%2C17.5476968 C6.54420211%2C17.6369263 6.43071579%2C17.6842105 6.31558316%2C17.6842105 Z%22 id%3D%22Path%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Energy22 {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22225px%22 height%3D%22225px%22 viewBox%3D%220 0 225 225%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 16%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-347.000000%2C -900.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Talk-Copy-2%22 transform%3D%22translate(447.000000%2C 1000.000000)%22%3E                %3Cg id%3D%22icon-%2F-small%22%3E                    %3Crect id%3D%22Rectangle%22 fill-rule%3D%22nonzero%22 x%3D%220%22 y%3D%220%22 width%3D%2225%22 height%3D%2225%22%3E%3C%2Frect%3E                    %3Cpath d%3D%22M10.7367235%2C19.6843042 C10.6858402%2C19.6843042 10.6344928%2C19.6715779 10.5873106%2C19.6454866 C10.4601009%2C19.5748499 10.3954935%2C19.4240334 10.4304956%2C19.2794204 L11.595587%2C14.4712635 L6.31581848%2C14.4712635 C6.19061407%2C14.4712635 6.07712547%2C14.394899 6.02670328%2C14.2766966 C5.97628109%2C14.1583345 5.99848744%2C14.0205636 6.08298653%2C13.9252692 L13.0303661%2C6.10570824 C13.1281252%2C5.99577824 13.2855592%2C5.96825339 13.4127688%2C6.03889009 C13.5399785%2C6.10952679 13.604586%2C6.26034332 13.5695838%2C6.40495632 L12.4044893%2C11.2131131 L17.6842578%2C11.2131131 C17.8094622%2C11.2131131 17.9229508%2C11.2894777 17.973373%2C11.4076801 C18.0237952%2C11.5260422 18.001592%2C11.6638131 17.9170929%2C11.7591075 L10.9697133%2C19.5786684 C10.908188%2C19.6477152 10.8230731%2C19.6843042 10.7367235%2C19.6843042 Z%22 id%3D%22Path%22 stroke%3D%22%23000000%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Exit {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22232px%22 viewBox%3D%220 0 232 232%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 11%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-225.000000%2C -774.000000)%22%3E            %3Crect fill%3D%22none%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Sair%22 transform%3D%22translate(325.000000%2C 874.000000)%22%3E                %3Cg id%3D%22circle-out-colored-48%22 transform%3D%22translate(16.000000%2C 16.500000) scale(-1%2C 1) translate(-16.000000%2C -16.500000) translate(2.000000%2C 7.000000)%22%3E                    %3Cpath d%3D%22M17.6666667%2C0 C12.4282437%2C0 8.16666667%2C4.26157706 8.16666667%2C9.5 C8.16666667%2C14.7384229 12.4282437%2C19 17.6666667%2C19 C22.9050896%2C19 27.1666667%2C14.7384229 27.1666667%2C9.5 C27.1666667%2C4.26157706 22.9050896%2C0 17.6666667%2C0 Z%22 id%3D%22Path%22 fill%3D%22%23E1E1E1%22 opacity%3D%220.630812872%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M19.5659722%2C7.82717297 L5.03125%2C7.82717297 L5.03125%2C5.3451322 C5.03125%2C5.10274851 4.90404882%2C4.88277765 4.70587906%2C4.78128079 C4.50770931%2C4.67978394 4.27405247%2C4.71613963 4.10863615%2C4.87399122 L0.195441701%2C8.59705238 C0.0715164236%2C8.71491208 0%2C8.88701059 0%2C9.06819336 C0%2C9.24937613 0.0715164236%2C9.42147463 0.195441701%2C9.53933434 L4.10863615%2C13.2623955 C4.2118159%2C13.3605602 4.34119729%2C13.4117647 4.47222222%2C13.4117647 C4.55138056%2C13.4117647 4.63108674%2C13.3929819 4.70587906%2C13.3551059 C4.90404882%2C13.2536091 5.03125%2C13.0336382 5.03125%2C12.7912545 L5.03125%2C10.3092137 L19.5659722%2C10.3092137 C19.8747121%2C10.3092137 20.125%2C10.0313989 20.125%2C9.68870355 L20.125%2C8.44768316 C20.125%2C8.10498779 19.8747121%2C7.82717297 19.5659722%2C7.82717297 Z%22 id%3D%22Path%22 fill%3D%22%2328FF52%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Falta {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22232px%22 viewBox%3D%220 0 232 232%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 14%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-568.000000%2C -774.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Falta-de-energia%22 transform%3D%22translate(668.000000%2C 874.000000)%22%3E                %3Cg id%3D%22power-level-colored-48%22 transform%3D%22translate(6.000000%2C 6.000000)%22%3E                    %3Cpath d%3D%22M12.2560818%2C17.4516136 C12.1309045%2C16.4284409 9.37411364%2C9.28355455 9.06028182%2C8.47234545 C8.98326818%2C8.27348182 8.78063182%2C8.15607273 8.56800455%2C8.18692273 C8.35737727%2C8.21888182 8.19735455%2C8.39310909 8.18292727%2C8.60573636 C8.125%2C9.46111818 7.62073636%2C16.9924091 7.74391818%2C18.0027091 C7.88463182%2C19.1537227 8.86718636%2C20.0002227 9.99866818%2C20.0002227 C10.0901091%2C20.0002227 10.1824409%2C19.9946727 10.2754364%2C19.9833545 C11.5194409%2C19.8313227 12.4078909%2C18.6956227 12.2560818%2C17.4516136 Z%22 id%3D%22Path%22 fill%3D%22%2328FF52%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M19.8992364%2C5.01731364 C17.5936591%2C1.87566364 13.8929318%2C0 10%2C0 L10%2C4.54545455 C12.4513955%2C4.54545455 14.7822727%2C5.72731818 16.2349091%2C7.70685455 C16.3061545%2C7.80406818 16.4131318%2C7.86887727 16.5323182%2C7.88707273 C16.6526136%2C7.90549545 16.77335%2C7.87553182 16.8703409%2C7.80428636 L19.8018045%2C5.65274091 C20.0042182%2C5.50426364 20.0477182%2C5.21972727 19.8992364%2C5.01731364 Z%22 id%3D%22Path%22 fill%3D%22%23E1E1E1%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M0.0994318182%2C5.01930909 C-0.04905%2C5.22172273 -0.00532727273%2C5.50603636 0.197086364%2C5.65451818 L3.12899545%2C7.80561818 C3.20734091%2C7.86332273 3.30166818%2C7.89373182 3.39777273%2C7.89373182 C3.42063182%2C7.89373182 3.44371364%2C7.89195455 3.4668%2C7.88840455 C3.58598636%2C7.87020455 3.69296364%2C7.80517273 3.76420909%2C7.70796364 C5.21706364%2C5.72775909 7.54816364%2C4.54545455 10%2C4.54545455 L10%2C0 C6.10617727%2C0 2.40500909%2C1.87633182 0.0994318182%2C5.01930909 Z%22 id%3D%22Path%22 fill-opacity%3D%220.438292572%22 fill%3D%22%23000000%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Mais {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F mais%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-mais%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22mais%22 transform%3D%22translate(6.000000%2C 6.000000)%22 fill%3D%22%2328FF52%22 fill-rule%3D%22nonzero%22%3E            %3Crect id%3D%22Rectangle-5%22 x%3D%220%22 y%3D%225.625%22 width%3D%2212%22 height%3D%221%22%3E%3C%2Frect%3E            %3Crect id%3D%22Rectangle-2%22 x%3D%225.625%22 y%3D%220%22 width%3D%221%22 height%3D%2212%22%3E%3C%2Frect%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Mais2 {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F Small Copy 3%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(0.000000%2C -903.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-more%22 transform%3D%22translate(100.000000%2C 1003.000000)%22%3E                %3Cpath d%3D%22M12%2C3 L12%2C3 C16.9705627%2C3 21%2C7.02943725 21%2C12 L21%2C12 C21%2C16.9705627 16.9705627%2C21 12%2C21 L12%2C21 C7.02943725%2C21 3%2C16.9705627 3%2C12 L3%2C12 C3%2C7.02943725 7.02943725%2C3 12%2C3 Z%22 id%3D%22Rectangle-3-Copy-3%22 fill-opacity%3D%220.9%22 fill%3D%22%23000000%22 fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E                %3Cg id%3D%22Icon-%2F-mais%22 stroke-width%3D%221%22 fill-rule%3D%22evenodd%22 transform%3D%22translate(7.500000%2C 7.500000)%22 fill%3D%22%23FFFFFF%22%3E                    %3Cpolygon id%3D%22Rectangle-5%22 fill-rule%3D%22nonzero%22 points%3D%220 3.75 9 3.75 9 5.25 0 5.25%22%3E%3C%2Fpolygon%3E                    %3Cpolygon id%3D%22Rectangle-2%22 fill-rule%3D%22nonzero%22 points%3D%223.75 0 5.25 0 5.25 9 3.75 9%22%3E%3C%2Fpolygon%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Money {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F Money%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-Money%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22icon-%2F-small%22 fill-rule%3D%22nonzero%22%3E            %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E        %3C%2Fg%3E        %3Cg id%3D%22money-13-outline-64%22 transform%3D%22translate(5.000000%2C 6.000000)%22 stroke%3D%22%23000000%22%3E            %3Crect id%3D%22Rectangle-path%22 stroke-linejoin%3D%22round%22 x%3D%220%22 y%3D%222.4%22 width%3D%2214%22 height%3D%229.6%22%3E%3C%2Frect%3E            %3Cpath d%3D%22M9.96969697%2C4.8 L4.03030303%2C4.8 C4.03030303%2C5.57468571 3.29190909%2C6.17142857 2.33333333%2C6.17142857 L2.33333333%2C8.22857143 C3.29190909%2C8.22857143 4.03030303%2C8.82531429 4.03030303%2C9.6 L9.96969697%2C9.6 C9.96969697%2C8.82531429 10.7080909%2C8.22857143 11.6666667%2C8.22857143 L11.6666667%2C6.17142857 C10.7080909%2C6.17142857 9.96969697%2C5.57468571 9.96969697%2C4.8 Z%22 id%3D%22Shape%22%3E%3C%2Fpath%3E            %3Cpolyline id%3D%22Shape%22 stroke-linejoin%3D%22round%22 points%3D%221.61538462 1.89964591 1.61538462 0 12.3846154 0 12.3846154 1.89964591%22%3E%3C%2Fpolyline%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-NewYear {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22232px%22 viewBox%3D%220 0 232 232%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 15%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-231.000000%2C -894.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-feliz-ano-novo%22 transform%3D%22translate(331.000000%2C 994.000000)%22%3E                %3Cpath d%3D%22M16%2C0 L16%2C0 C24.836556%2C-1.623249e-15 32%2C7.163444 32%2C16 L32%2C16 C32%2C24.836556 24.836556%2C32 16%2C32 L16%2C32 C7.163444%2C32 1.082166e-15%2C24.836556 0%2C16 L0%2C16 C-1.082166e-15%2C7.163444 7.163444%2C1.623249e-15 16%2C0 Z%22 id%3D%22Rectangle-3-Copy-3%22 fill%3D%22%23FFFFFF%22 fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E                %3Cimage id%3D%22image%22 x%3D%225%22 y%3D%224%22 width%3D%2224%22 height%3D%2224%22 xlink%3Ahref%3D%22data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAAC0AAAAtCAYAAAA6GuKaAAAABGdBTUEAALGOfPtRkwAACltJREFUWAnNWH9sVlcZfs%2F9vq8U%2BmP8aEu7UQoyUWC6CBMkbskW%2F9H9gTiByB%2FDxMWRGDPcNCzRmbAYTMS4BBbjjyyZYogJLXPD6LIQGbo4JzJJNjcSso1C7UppSwttv5%2F33uPzvOfej6%2FtbfvB0Hng3nPOe95z7nOe85z3nK8i%2F8V0qbXj5UttHa%2FsEfFu5mdu6mAJwJaKmLt3tnZ8PqHthk0fCPTgopV7B5o%2BPso8CYGV8JBBg2dle1L7jdoSQVuRNJ7UbINa4z0CUPXMk3ytlcMYR4yRzyW136htAmjbvPpreE5L85q8tKzO2pY1f7WLVn9xusGNDQ8A1BjzJJ%2B%2F9PecsWJzxpi2%2FpaWxUk%2BN2Lj6mmyzat%2BJcb7alyfkNvwCTNwJlECE%2FwSKv2ty97wjHyiVAo%2Bfetgz6kEF3lLpKa5bdk%2BEbuDgKyYgwN93bvXiBST%2FJVpMuwA26KE9jsynm1FzzYti81jfe9K6lyNLTC2WIJjkLZ10%2FkD8I%2FRtgtCWsAHwHe5SST3SDuzcZq0drcZPLNfbeP6%2FoltWPlrGc1cTe4%2BuxUzTufgBhkxS0xjYh%2BMo2IOntwHSDvwfEtLk17ccAR%2Bh9qL4wcntYsZPTs42Xaq4dYmL2Xrjo709ewRCSe3V9TNsLUrsIrij9t3K%2BwTiu%2BIEQ%2B7lQmbV3duwU4%2FLOUBCdmAHapJ77S0H0nXmkteJtV9f9OSgVeb2p45Nr%2F5U0l9%2F9y85Pa8l6rPWbm0YbR3KMmHtn7xDp5DzqcbG6Ab%2BfueN4VAmDXBRQDYvK61mjouyUzJZK3dhGhgSqCkJMHCgrUPZVLpf760YPHvft%2FY%2FNHKzoVU%2BgH4S94zxyvtk8sn%2B957%2FH0j%2By%2BKDHeLGT5vzP5jve%2FtnuwX13VNNKylzPMgPS95c5u5%2Btbl2KEy72%2Fp2Dhgg1epO4Iu6lpii3MCWkdRgr1vjAz%2BEP3Cu9qW%2FwurvcqGdvOm%2Fu4XKsf6IGXdiGbo7RcQ8r6PKLFOrhbcFkwa1chWnjjFIATLLilgTsJJssa33pO3NzbdH9bO7RzxvFXW2gvv9p97MWm4G7W5T1XX2wy0LTs%2FHobt3UFJNwzeYJhMh9hKRrh5fIzFLZSfWw%2Bj8QB6x8N9535T3Seq84pC3uzOFxcv2wB87fM8T2oDI6MEHEIi6ErAZNyHQwj71do6CY3neT5EMzbeMfvo1%2Behh0s1XYzYbfGyIN4pu0UAZGJOtgl4EICz6bQUQtRy46Yk4Q%2Beq289PrjoYz18Li1Y%2BYVqvjeTT7VMgzezhRAJvBFs1yH2lgCUDMfy6J07T4qptBhoviE7pitB7a%2BtabiPtyYmdP0lsnatTPPaJ82tc0QajAS5y3L54h5R1ZW9qwJ9cfFtKg1%2BVrkFgBWZjJzM5zVqIAJKEcwiHkvgB9KUHZWQm5VRpfwpV4BLvGDllj0i8xZmmr8CmW3Hiq7DBHGcM6WlyTYHT4s5gy%2BfCK19bpc%2FeGLKAM554rt%2FccdTYPpRBYymGHyf78ubRQIXBxAg2aoRBXr3MUVa2kyN3Fd7i9ZO5K68%2BWJuYENndKwfqGnabqz3NOa9KP4qNu8I6uNiTQbDtcR25vjEa9WA1qiBj%2BuSxh0cPJHTYLvbLylQtmk0AevMuS7xBiXrTMwLQfhH32Y3fzLTAhJlJ%2B0wn8QUf%2BGXwpcek6Fe2pgOyMJGSafuRBzaBHF9GY44h2ZJiBqfSXnyN8weq4bFoz8BoMwUoHw8Oy4jYJaAipoj6KFd5RHZyTmjC%2FdBKQykPVV7Zr43ZxXMWcScXd8sDT6jA1bxqiJ62G28mIQAoXlUZizmw4vORmxAj6wqw25yGg6jeiXgIgDXeWkhYBABBfmbrwcwPjnrr2TjI2oQbPzw8GC5MofeZT2AcxIUvGObzDpJMFeGwTLXp9XU0lP%2BHeRTp%2Fxcg1au4zUj0%2BdwoABgOyNA%2FBTw2TzY1ZxlPD6e%2BYgm99TVSRDLBADdpoyiCBimxCgZbtDR0JcB6xsvnXr2Qaldfh2YZ2Yan93Gm3sejwMZgeeHQZke49QqQHPjLcrUyMb6ujLDZJcsUxLUuJ6YiO9ngyyenBhsFs94jTWZzG%2Fvdff6KdgPfXb93kN3rx9lHjfOxLTJURqqZbJ5TRKBgsR9DjnbC5hAAe15TKC5Zo7c09CAX2rcdA4wN3AJ%2Blb5wI%2FHvgfABicriixvWFHb%2BN0Y1ITcCH9V1cPP%2FbpCZVrQr0MaWMZ2jcEAQ3kQIHOCi5nPk3UA5JJzEiFAtNXOkXtvaVQ5oKonI%2B4iKMWAUyAegCl5jIl7laQ973s75zROuI9rB4uoh1%2F88C3%2F4ueYiQmgn8LaPUoZMGnIIy34D5z8VtnOgoZDglAkrt5XKMqx4cuCm6F2gBTALkCSYSQtw4aj3dWN9%2FzPxoa%2B5GrTv6NPT3Ewr7QtP4%2FGdkUXo2TORMRaJktuQlwFTZN8xwD4T0NDMhwEThJgmCFQ5aGTwHD8x8lgjNA3a3%2BeHTjtBkt%2BuylPansZBwpGecxiEDJMqFpmPSrzShrrnBuRNzxqln48cBCtNbanUF8%2Bdy7uJVaucEJIXopaNpICxQTKMi6ymmNO6X8UskfVcZpXoqYDz2xlZCAoariAQaldfVBnNGGs1gMHbQhm5cOHfWinxllWX4Bc29go6xASM9yAaCdgTFHLBEybPmIoj0RcsGuK1jSuOtsfIA2M0B6LV%2FWMQTWRLZajvLKNE2GdiQDitjinfRyXrLcLORlAznEUMCegw7IOEkKz7Kcjfefpn5SmXE2P8EAx7nLEz1MQLneAYjAcjDp2ECuG5oSQ1C82wxb3q8mk5Y50gwzhktVdLMo4JslJcZOqRPCZUmCm%2F52KMaeAtmnZVrIRq9wcEWyyiFGJXBmC%2BVpZbXRQI%2BxxG3UfMR73Y47EE%2FTOdEau4OAZBOvcsNgPfp1nju653DvlD0TaKXpNBm0C620hK9SjW9aIaeBhnSlmzU0takcTS5wc25lm60%2Bfei%2FVU58xXSXPdj7Ue%2F41dqN9pjQB9LOQRhHSmAJOAbthHKB4Iu76yZZ4IuUVmGK71h%2Fj9%2Fg27DKhHP56f%2Fff0TIrUNfbvSeADj1vq17eSRSHiZnlEuMftK42NimZuuSoEKmWIylM6u9CovR4xnZZPzj8jSqA8gcwNiV%2FT0oY2odbhs%2BW%2F3ZSCdpgabfwewrCuIsQaw6ba3FM0go7Hmo%2BLqkBddW%2FM%2FfYCOgjVQDlmHFSwMYsYR1bacKP4TLoA5SGZ5bSyREcgUQ9kiibYkLLOS9FTPTRkpUe%2FBmsy4bh4W9fJ1AdqIpXGXQAaQTu%2B2UA12BfA8vDRknEK86BtgfywdKHhx%2B%2FSUApiYhhlUflXGJcZl%2FbR7qxJEsjaSqTusyxtyKMESvgHmyoTj8MO5%2B4SUDjT82WK9M%2FgjRCAMafPB197BVPp2IENHPpOwMAffJ%2FDLQChjtccpCG4YFSCTQSKLILYLQLa%2FShAp0CGjJ4oAwYKK0NLwB%2FVwigez9ERiuBVpZVHoHxLgCpAaNHuPT7%2Fg%2BBVoL%2BD%2BYTPFrGzLhiAAAAAElFTkSuQmCC%22%3E%3C%2Fimage%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-NotFound {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2250px%22 height%3D%2250px%22 viewBox%3D%220 0 50 50%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xemoticons-24px-outline_sad%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-99.000000%2C -1253.000000)%22 id%3D%22emoticons-24px-outline_sad%22 stroke%3D%22%23000000%22 stroke-width%3D%222%22%3E            %3Cg transform%3D%22translate(100.000000%2C 1254.000000)%22%3E                %3Cg id%3D%22Group%22%3E                    %3Ccircle id%3D%22Oval%22 cx%3D%2224%22 cy%3D%2224%22 r%3D%2224%22%3E%3C%2Fcircle%3E                    %3Cpath d%3D%22M15.2727273%2C37.0909091 C15.2727273%2C32.2909091 19.2%2C28.3636364 24%2C28.3636364 C28.8%2C28.3636364 32.7272727%2C32.2909091 32.7272727%2C37.0909091%22 id%3D%22Shape%22%3E%3C%2Fpath%3E                    %3Ccircle id%3D%22Oval%22 cx%3D%2215.2727273%22 cy%3D%2217.4545455%22 r%3D%222.18181818%22%3E%3C%2Fcircle%3E                    %3Ccircle id%3D%22Oval%22 cx%3D%2232.7272727%22 cy%3D%2217.4545455%22 r%3D%222.18181818%22%3E%3C%2Fcircle%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Online {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22223px%22 height%3D%22224px%22 viewBox%3D%220 0 223 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F mais Copy 5%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-577.000000%2C -385.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Laptop%22 transform%3D%22translate(677.000000%2C 485.000000)%22 stroke%3D%22%23000000%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22laptop-1-outline-64%22 transform%3D%22translate(5.000000%2C 6.000000)%22%3E                    %3Cpath d%3D%22M0.875%2C8 L0.875%2C1 C0.875%2C0.44775 1.33207813%2C0 1.89583333%2C0 L12.1041667%2C0 C12.6679219%2C0 13.125%2C0.44775 13.125%2C1 L13.125%2C8%22 id%3D%22Shape%22 stroke-width%3D%220.897435897%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M6.5625%2C2 L7.875%2C2%22 id%3D%22Shape%22 stroke-width%3D%220.897435897%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M8.86666667%2C10 L5.13333333%2C10 L0%2C10 C0%2C11.1045 0.8358%2C12 1.86666667%2C12 L12.1333333%2C12 C13.1642%2C12 14%2C11.1045 14%2C10 L8.86666667%2C10 Z%22 id%3D%22Shape%22 stroke-width%3D%220.897435897%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Online2 {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22233px%22 height%3D%22233px%22 viewBox%3D%220 0 233 233%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 8%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-457.000000%2C -644.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-atendimento-virtual%22 transform%3D%22translate(558.000000%2C 745.000000)%22%3E                %3Cpath d%3D%22M15.5%2C0 L15.5%2C0 C24.0604136%2C-1.57252247e-15 31%2C6.93958638 31%2C15.5 L31%2C15.5 C31%2C24.0604136 24.0604136%2C31 15.5%2C31 L15.5%2C31 C6.93958638%2C31 1.04834831e-15%2C24.0604136 0%2C15.5 L0%2C15.5 C-1.04834831e-15%2C6.93958638 6.93958638%2C1.57252247e-15 15.5%2C0 Z%22 id%3D%22Rectangle-3-Copy-3%22 stroke%3D%22%23B5B6B3%22 fill%3D%22%23FFFFFF%22 fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E                %3Cg id%3D%22laptop-1-glyph-64%22 fill-rule%3D%22evenodd%22 transform%3D%22translate(7.000000%2C 9.000000)%22%3E                    %3Cpath d%3D%22M15.3663594%2C9.68085106 L14.2880184%2C9.68085106 L2.42626728%2C9.68085106 L1.34792627%2C9.68085106 L1.34792627%2C1.65957447 C1.34792627%2C0.744319149 2.07338018%2C0 2.96543779%2C0 L13.7488479%2C0 C14.6409055%2C0 15.3663594%2C0.744319149 15.3663594%2C1.65957447 L15.3663594%2C9.68085106 Z%22 id%3D%22Path%22 fill%3D%22%2300AF3F%22%3E%3C%2Fpath%3E                    %3Cellipse id%3D%22Oval%22 fill%3D%22%23FFFFFF%22 cx%3D%228.35714286%22 cy%3D%221.4893617%22 rx%3D%221%22 ry%3D%221%22%3E%3C%2Fellipse%3E                    %3Cpath d%3D%22M16.4447005%2C10.2340426 L10.5138249%2C10.2340426 L10.5138249%2C11.0638298 L6.20046083%2C11.0638298 L6.20046083%2C10.2340426 L0.269585253%2C10.2340426 C0.120504608%2C10.2340426 0%2C10.3579574 0%2C10.5106383 C0%2C11.8831064 1.08831567%2C13 2.42626728%2C13 L14.2880184%2C13 C15.62597%2C13 16.7142857%2C11.8831064 16.7142857%2C10.5106383 C16.7142857%2C10.3579574 16.5937811%2C10.2340426 16.4447005%2C10.2340426 Z%22 id%3D%22Path%22 fill%3D%22%2300AF3F%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Paper {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 3%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-347.000000%2C -526.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Regras%22 transform%3D%22translate(447.000000%2C 626.000000)%22 stroke%3D%22%23000000%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22single-content-02-outline-16%22 transform%3D%22translate(6.000000%2C 5.000000)%22%3E                    %3Cpolygon id%3D%22Shape%22 points%3D%226.8 13.4782609 0.4 13.4782609 0.4 0.434782609 10.8 0.434782609 10.8 9.13043478%22%3E%3C%2Fpolygon%3E                    %3Cpolyline id%3D%22Shape%22 points%3D%226.8 13.4782609 6.8 9.13043478 10.8 9.13043478%22%3E%3C%2Fpolyline%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Plus2 {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22232px%22 viewBox%3D%220 0 232 232%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 13%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-459.000000%2C -774.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Outros%22 transform%3D%22translate(559.000000%2C 874.000000)%22 fill%3D%22%2328FF52%22%3E                %3Cpolygon id%3D%22%2B%22 points%3D%2217.2265625 15.1879883 22.1826172 15.1879883 22.1826172 17.3242188 17.2265625 17.3242188 17.2265625 22.9394531 14.9560547 22.9394531 14.9560547 17.3242188 10 17.3242188 10 15.1879883 14.9560547 15.1879883 14.9560547 10 17.2265625 10%22%3E%3C%2Fpolygon%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Printer {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F Attanch Copy%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-231.000000%2C -246.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Print%22 transform%3D%22translate(331.000000%2C 346.000000)%22 stroke%3D%22%23005A8B%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22print-outline-16%22 transform%3D%22translate(5.000000%2C 5.000000)%22%3E                    %3Cpolyline id%3D%22Shape%22 points%3D%223.0625 3.0625 3.0625 0.4375 10.9375 0.4375 10.9375 3.0625%22%3E%3C%2Fpolyline%3E                    %3Cpolyline id%3D%22Shape%22 points%3D%223.0625 10.9375 0.4375 10.9375 0.4375 4.8125 13.5625 4.8125 13.5625 10.9375 10.9375 10.9375%22%3E%3C%2Fpolyline%3E                    %3Crect id%3D%22Rectangle-path%22 x%3D%223.0625%22 y%3D%228.3125%22 width%3D%227.875%22 height%3D%225.25%22%3E%3C%2Frect%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Search {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 4%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-462.000000%2C -526.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Busca%22 transform%3D%22translate(562.000000%2C 626.000000)%22 fill%3D%22%23000000%22 fill-opacity%3D%220.8%22%3E                %3Cpath d%3D%22M15.4369354%2C9.93768224 L14.7105775%2C9.93768224 L14.4580903%2C10.1883254 C15.3500286%2C11.2284032 15.89251%2C12.5767538 15.89251%2C14.054085 C15.89251%2C17.3380596 13.2304174%2C20 9.946255%2C20 C6.66209262%2C20 4%2C17.3380596 4%2C14.054085 C4%2C10.7701103 6.66209262%2C8.10816992 9.946255%2C8.10816992 C11.4236707%2C8.10816992 12.7711835%2C8.64970556 13.8113208%2C9.54067806 L14.0638079%2C9.29003488 L14.0638079%2C8.565548 L18.6360206%2C4 L20%2C5.36390144 L15.4369354%2C9.93768224 L15.4369354%2C9.93768224 Z M9.946255%2C9.93768224 C7.67204117%2C9.93768224 5.82961692%2C11.7800011 5.82961692%2C14.054085 C5.82961692%2C16.327254 7.67204117%2C18.1704877 9.946255%2C18.1704877 C12.219554%2C18.1704877 14.0628931%2C16.327254 14.0628931%2C14.054085 C14.0628931%2C11.7800011 12.219554%2C9.93768224 9.946255%2C9.93768224 L9.946255%2C9.93768224 Z%22 id%3D%22Mask%22 transform%3D%22translate(12.000000%2C 12.000000) scale(1%2C -1) translate(-12.000000%2C -12.000000) %22%3E%3C%2Fpath%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Street {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F Small%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(0.000000%2C -526.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Service%22 transform%3D%22translate(100.000000%2C 626.000000)%22%3E                %3Cg id%3D%22icon-%2F-small%22%3E                    %3Crect id%3D%22Rectangle%22 fill-rule%3D%22nonzero%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E                    %3Cg id%3D%22delivery-fast-outline-16-copy%22 transform%3D%22translate(6.000000%2C 6.000000)%22 stroke%3D%22%23000000%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                        %3Cpolyline id%3D%22Shape%22 points%3D%228.625 10.125 11.625 10.125 11.625 5.25 9 4.5 7.5 0.375 0.375 0.375 0.375 10.125 1.875 10.125%22%3E%3C%2Fpolyline%3E                        %3Ccircle id%3D%22Oval%22 cx%3D%225.25%22 cy%3D%229.75%22 r%3D%221.875%22%3E%3C%2Fcircle%3E                        %3Cpolyline id%3D%22Shape%22 points%3D%224.125 1.875 4.125 4.875 7.125 4.875%22%3E%3C%2Fpolyline%3E                    %3C%2Fg%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Talk {
  background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E    %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cpath fill-rule%3D%22nonzero%22 d%3D%22M0 0h24v24H0z%22%2F%3E        %3Cg stroke%3D%22%23000%22 stroke-linejoin%3D%22round%22%3E            %3Cpath d%3D%22M7.625 12v6.563l3.5-3.5h7.438V7.625H12%22%2F%3E            %3Cpath stroke-linecap%3D%22round%22 d%3D%22M7.625 5.438v4.375M9.813 7.625H5.436%22%2F%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Telefone {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22233px%22 viewBox%3D%220 0 232 233%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F Small Copy%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(0.000000%2C -644.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-atendimento-telefone-atual%22 transform%3D%22translate(100.000000%2C 745.000000)%22 fill-rule%3D%22nonzero%22%3E                %3Cpath d%3D%22M15.5%2C0 L15.5%2C0 C24.0604136%2C-1.57252247e-15 31%2C6.93958638 31%2C15.5 L31%2C15.5 C31%2C24.0604136 24.0604136%2C31 15.5%2C31 L15.5%2C31 C6.93958638%2C31 1.04834831e-15%2C24.0604136 0%2C15.5 L0%2C15.5 C-1.04834831e-15%2C6.93958638 6.93958638%2C1.57252247e-15 15.5%2C0 Z%22 id%3D%22Rectangle-3-Copy-3%22 stroke%3D%22%23B5B6B3%22 stroke-width%3D%221%22 fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E                %3Ccircle id%3D%22Oval-5-Copy-6%22 stroke%3D%22%2300AF3F%22 stroke-width%3D%221.51219512%22 fill%3D%22%2300AF3F%22 cx%3D%2215.5%22 cy%3D%2215.5%22 r%3D%2215.5%22%3E%3C%2Fcircle%3E                %3Cpath d%3D%22M12.6331314%2C18.1846797 C14.8307698%2C20.8996636 20.1863591%2C23.5015233 21.4790875%2C22.9170475 C22.771816%2C22.3325718 23.0488292%2C21.0693501 22.9934266%2C20.4848744 C22.9380239%2C19.9003987 20.0016836%2C18.1092635 19.2629816%2C17.7698905 C18.5242797%2C17.4305175 17.6747724%2C18.5240527 17.2684863%2C18.9954041 C16.8437327%2C19.4479014 15.2185883%2C18.0715553 14.5168215%2C17.3739553 C14.5168215%2C17.3739553 12.6700665%2C15.2623011 13.0948202%2C14.8098038 C13.5195738%2C14.3573065 14.5722241%2C13.4523118 14.2028731%2C12.7170037 C13.8335221%2C11.9816955 11.9682997%2C9.0404629 11.3773381%2C9.00275479 C10.8048441%2C8.96504667 9.58598582%2C9.30441967 9.06889444%2C10.6430576 C8.55180306%2C11.9816955 11.0264547%2C17.0911445 13.7781195%2C19.2216527%22 id%3D%22Path%22 fill%3D%22%23FFFFFF%22%3E%3C%2Fpath%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Three {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22225px%22 height%3D%22225px%22 viewBox%3D%220 0 225 225%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 17%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-462.000000%2C -900.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Talk-Copy%22 transform%3D%22translate(562.000000%2C 1000.000000)%22%3E                %3Cg id%3D%22icon-%2F-small%22%3E                    %3Crect id%3D%22Rectangle%22 fill-rule%3D%22nonzero%22 x%3D%220%22 y%3D%220%22 width%3D%2225%22 height%3D%2225%22%3E%3C%2Frect%3E                %3C%2Fg%3E                %3Cg id%3D%22tree-03-outline-48%22 transform%3D%22translate(7.000000%2C 6.000000)%22 stroke%3D%22%23000000%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                    %3Cpolygon id%3D%22Path%22 stroke-width%3D%220.7%22 points%3D%2212 10.9268293 0 10.9268293 6 0%22%3E%3C%2Fpolygon%3E                    %3Cpath d%3D%22M2.47058824%2C13.6585366 L9.52941176%2C13.6585366%22 id%3D%22Path%22 stroke-width%3D%220.7%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M6%2C4.56174581 L6%2C13.6585366%22 id%3D%22Path%22 stroke-width%3D%220.7%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M6%2C10.2439024 L7.76470588%2C8.53658537%22 id%3D%22Path%22 stroke-width%3D%220.7%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M4.23529412%2C6.82926829 L6%2C8.53658537%22 id%3D%22Path%22 stroke-width%3D%220.7%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Time {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 2%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-116.000000%2C -903.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Onsite%22 transform%3D%22translate(216.000000%2C 1003.000000)%22 stroke%3D%22%23EE162D%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22hourglass-outline-16%22 transform%3D%22translate(5.000000%2C 4.000000)%22%3E                    %3Cpath d%3D%22M11.5%2C15.5 C11.5%2C15.5 11.5%2C14.716 11.5%2C14.5 C11.5%2C11.657 10.545%2C9.11 9%2C8 C10.545%2C6.89 11.5%2C4.343 11.5%2C1.5 C11.5%2C1.284 11.5%2C0.5 11.5%2C0.5%22 id%3D%22Path%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M2.5%2C15.5 C2.5%2C15.5 2.5%2C14.716 2.5%2C14.5 C2.5%2C11.657 3.455%2C9.11 5%2C8 C3.455%2C6.89 2.5%2C4.343 2.5%2C1.5 C2.5%2C1.284 2.5%2C0.5 2.5%2C0.5%22 id%3D%22Path%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M0.5%2C0.5 L13.5%2C0.5%22 id%3D%22Path%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M0.5%2C15.5 L13.5%2C15.5%22 id%3D%22Path%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Tranf {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22232px%22 height%3D%22232px%22 viewBox%3D%220 0 232 232%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 12%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-344.000000%2C -774.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Tranferencia%22 transform%3D%22translate(444.000000%2C 874.000000)%22%3E                %3Cg id%3D%22shuffle-98-colored-48%22 transform%3D%22translate(6.000000%2C 8.000000)%22%3E                    %3Cpath d%3D%22M19.8446364%2C13.0696 L16.2082727%2C16.2514182 C16.0746591%2C16.3681636 15.8833455%2C16.3970136 15.7213227%2C16.3228864 C15.5588591%2C16.2491955 15.4545455%2C16.0876227 15.4545455%2C15.9091773 L15.4545455%2C13.63645 L14.3465909%2C13.63645 C13.0581364%2C13.63645 11.8302318%2C13.0895773 10.9683136%2C12.1318636 L4.95339091%2C5.44841364 C4.43616818%2C4.87370909 3.69932727%2C4.54553636 2.92614545%2C4.54553636 L0.454545455%2C4.54553636 C0.203509091%2C4.54553636 0%2C4.34203182 0%2C4.09099091 L0%2C3.1819 C0%2C2.93085909 0.203509091%2C2.72735455 0.454545455%2C2.72735455 L2.92613636%2C2.72735455 C4.21459091%2C2.72735455 5.44249545%2C3.27422727 6.30441364%2C4.23194091 L12.3193318%2C10.9153773 C12.8365591%2C11.4900864 13.5734091%2C11.8182636 14.3465955%2C11.8182636 L15.4545455%2C11.8182636 L15.4545455%2C9.54553636 C15.4545455%2C9.36709091 15.5588591%2C9.20551364 15.7213227%2C9.13182727 C15.78125%2C9.10430455 15.8456136%2C9.09099091 15.9090909%2C9.09099091 C16.0169545%2C9.09099091 16.1239364%2C9.12960909 16.2082727%2C9.20329545 L19.8446364%2C12.3851136 C19.9436273%2C12.4716773 20%2C12.5964091 20%2C12.7273591 C20%2C12.8583091 19.9436273%2C12.9830409 19.8446364%2C13.0696 Z%22 id%3D%22Path%22 fill%3D%22%23CECDCD%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M19.8446364%2C3.29412273 L16.2082727%2C0.112304545 C16.0746591%2C-0.00444090909 15.8833455%2C-0.0332909091 15.7213227%2C0.0408363636 C15.5588591%2C0.114522727 15.4545455%2C0.2761 15.4545455%2C0.454545455 L15.4545455%2C2.72727273 L14.3465864%2C2.72727273 C13.0581364%2C2.72727273 11.8302318%2C3.27414545 10.9683136%2C4.23185909 L4.95339091%2C10.9153045 C4.43616818%2C11.4900136 3.69932727%2C11.8181818 2.92614545%2C11.8181818 L0.454545455%2C11.8181818 C0.203509091%2C11.8181818 0%2C12.0216909 0%2C12.2727273 L0%2C13.1818182 C0%2C13.4328545 0.203509091%2C13.6363636 0.454545455%2C13.6363636 L2.92613182%2C13.6363636 C4.21459091%2C13.6363636 5.44249545%2C13.0894909 6.30441364%2C12.1317773 L12.3193318%2C5.44833636 C12.8365545%2C4.87362727 13.5734045%2C4.54545455 14.3465864%2C4.54545455 L15.4545455%2C4.54545455 L15.4545455%2C6.81818182 C15.4545455%2C6.99662727 15.5588591%2C7.15820455 15.7213227%2C7.23189091 C15.78125%2C7.25940909 15.8456136%2C7.27272727 15.9090909%2C7.27272727 C16.0169545%2C7.27272727 16.1239364%2C7.23410909 16.2082727%2C7.16042273 L19.8446364%2C3.97860455 C19.9436273%2C3.89204545 20%2C3.76731364 20%2C3.63636364 C20%2C3.50541364 19.9436273%2C3.38068182 19.8446364%2C3.29412273 Z%22 id%3D%22Path%22 fill%3D%22%2328FF52%22%3E%3C%2Fpath%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Trash {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22224px%22 height%3D%22224px%22 viewBox%3D%220 0 224 224%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F Small Copy 4%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(0.000000%2C -1035.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-Trash%22 transform%3D%22translate(100.000000%2C 1135.000000)%22 stroke%3D%22%23005A8B%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E                %3Cg id%3D%22trash-can-outline-16%22 transform%3D%22translate(4.000000%2C 4.000000)%22%3E                    %3Cpath d%3D%22M2.5%2C6.5 L2.5%2C13.5 C2.5%2C14.605 3.395%2C15.5 4.5%2C15.5 L11.5%2C15.5 C12.605%2C15.5 13.5%2C14.605 13.5%2C13.5 L13.5%2C6.5%22 id%3D%22Path%22%3E%3C%2Fpath%3E                    %3Cpath d%3D%22M0.5%2C3.5 L15.5%2C3.5%22 id%3D%22Path%22%3E%3C%2Fpath%3E                    %3Cpolyline id%3D%22Path%22 points%3D%225.5 3.5 5.5 0.5 10.5 0.5 10.5 3.5%22%3E%3C%2Fpolyline%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-User {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%2224px%22 height%3D%2224px%22 viewBox%3D%220 0 24 24%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 51.3 (57544) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3EIcon %2F User%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E%3C%2Fdefs%3E    %3Cg id%3D%22Icon-%2F-User%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg id%3D%22icon-%2F-small%22 fill-rule%3D%22nonzero%22%3E            %3Crect id%3D%22Rectangle%22 x%3D%220%22 y%3D%220%22 width%3D%2224%22 height%3D%2224%22%3E%3C%2Frect%3E        %3C%2Fg%3E        %3Cg id%3D%22single-02-outline-16%22 transform%3D%22translate(5.000000%2C 5.000000)%22 stroke%3D%22%2328ff52%22 stroke-linecap%3D%22round%22 stroke-linejoin%3D%22round%22%3E            %3Cpath d%3D%22M8.5%2C9.55769231 L5.5%2C9.55769231 C2.73857625%2C9.55769231 0.5%2C11.3657731 0.5%2C13.5961538 L13.5%2C13.5961538 C13.5%2C12.5250873 12.9732158%2C11.4978888 12.0355339%2C10.7405303 C11.097852%2C9.98317186 9.82608245%2C9.55769231 8.5%2C9.55769231 Z%22 id%3D%22Shape%22%3E%3C%2Fpath%3E            %3Ccircle id%3D%22Oval%22 cx%3D%227%22 cy%3D%223.5%22 r%3D%223.5%22%3E%3C%2Fcircle%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }
.icon-Userr {
  background: url("data:image/svg+xml,%3C%3Fxml version%3D%221.0%22 encoding%3D%22UTF-8%22%3F%3E%3Csvg width%3D%22233px%22 height%3D%22233px%22 viewBox%3D%220 0 233 233%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E    %3C!-- Generator%3A Sketch 52.3 (67297) - http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch --%3E    %3Ctitle%3E%402xIcon %2F User Copy 7%3C%2Ftitle%3E    %3Cdesc%3ECreated with Sketch.%3C%2Fdesc%3E    %3Cdefs%3E        %3Cpath d%3D%22M15.5%2C0 L15.5%2C0 C24.0604136%2C-1.57252247e-15 31%2C6.93958638 31%2C15.5 L31%2C15.5 C31%2C24.0604136 24.0604136%2C31 15.5%2C31 L15.5%2C31 C6.93958638%2C31 1.04834831e-15%2C24.0604136 0%2C15.5 L0%2C15.5 C-1.04834831e-15%2C6.93958638 6.93958638%2C1.57252247e-15 15.5%2C0 Z%22 id%3D%22path-1%22%3E%3C%2Fpath%3E    %3C%2Fdefs%3E    %3Cg id%3D%22Icones%22 stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E        %3Cg transform%3D%22translate(-342.000000%2C -644.000000)%22%3E            %3Crect fill%3D%22%23FFFFFF%22 x%3D%220%22 y%3D%220%22 width%3D%22800%22 height%3D%221519%22%3E%3C%2Frect%3E            %3Cg id%3D%22Icon-%2F-atendimento-presencial%22 transform%3D%22translate(443.000000%2C 745.000000)%22%3E                %3Cmask id%3D%22mask-2%22 fill%3D%22white%22%3E                    %3Cuse xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E                %3C%2Fmask%3E                %3Cuse id%3D%22Rectangle-3-Copy-3%22 stroke%3D%22%23B5B6B3%22 stroke-width%3D%221%22 fill%3D%22%23FFFFFF%22 fill-rule%3D%22nonzero%22 xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E                %3Cg id%3D%22noun_person_113116%22 stroke-width%3D%221%22 fill-rule%3D%22evenodd%22 mask%3D%22url(%23mask-2)%22 fill%3D%22%2300AF3F%22%3E                    %3Cg transform%3D%22translate(4.000000%2C 8.000000)%22 fill-rule%3D%22nonzero%22 id%3D%22Shape%22%3E                        %3Cpath d%3D%22M23.1178434%2C18.3915278 C20.9033219%2C22.9054481 16.5762281%2C25.9763689 11.5912661%2C25.9998648 C6.60294547%2C26.0233764 2.25874077%2C22.9792096 0.0162985262%2C18.4750349 C1.50746468%2C17.6061266 4.08585608%2C16.1335517 4.89006869%2C16.0118752 C5.99000793%2C15.8676449 7.71324606%2C15.6873569 8.00656319%2C15.2186083 C8.29988032%2C14.7498596 8.5565328%2C12.8388074 8.5565328%2C12.8388074 C8.5565328%2C12.8388074 7.85990462%2C12.2979435 7.78657534%2C11.4325614 C7.71324606%2C10.5671793 7.56658749%2C9.80996991 7.56658749%2C9.80996991 C7.56658749%2C9.80996991 7.01661788%2C9.73785473 6.9432886%2C9.23304849 C6.86995931%2C8.76429983 6.61330683%2C7.86286011 6.5033129%2C7.61045698 C6.39331898%2C7.39411145 6.17333113%2C6.42055655 6.86995931%2C6.63690208 C6.61330683%2C5.55517441 6.39331898%2C3.71623738 6.53997754%2C3.21143113 C6.68663611%2C2.70662489 6.79663003%2C1.91335793 7.16327644%2C1.62489722 C7.52992285%2C1.37249409 7.93323391%2C1.37249409 7.93323391%2C1.37249409 C7.93323391%2C1.37249409 8.15322175%2C0.759515081 9.14316706%2C0.47105437 C10.1331124%2C0.182593658 10.9397345%2C-0.105867054 11.7096919%2C0.0383633021 C12.4796494%2C0.182593658 13.9828997%2C0.507111959 14.6428632%2C0.939803026 C14.8628511%2C1.08403338 15.1195036%2C1.37249409 15.3761561%2C1.73306998 C15.7428025%2C2.0215307 15.9261257%2C2.74268247 16.0361196%2C3.17537354 C16.1827782%2C3.68017979 15.9994549%2C5.55517441 15.7428025%2C6.60084449 C16.4394306%2C6.38449896 16.2194428%2C7.32199627 16.1094489%2C7.5743994 C15.9994549%2C7.79074493 15.7428025%2C8.69218465 15.6694732%2C9.1969909 C15.5961439%2C9.70179714 15.0461743%2C9.80996991 15.0461743%2C9.80996991 C15.0461743%2C9.80996991 14.8995157%2C10.5671793 14.8261864%2C11.4325614 C14.7528572%2C12.2979435 14.0928936%2C12.8388074 14.0928936%2C12.8388074 C14.0928936%2C12.8388074 14.3862107%2C14.713802 14.6428632%2C15.2186083 C14.8995157%2C15.6873569 16.6594185%2C15.8315873 17.7593577%2C15.9758176 C18.7501587%2C16.1102171 21.8668979%2C17.7332623 23.1178434%2C18.3915278 Z%22%3E%3C%2Fpath%3E                    %3C%2Fg%3E                %3C%2Fg%3E            %3C%2Fg%3E        %3C%2Fg%3E    %3C%2Fg%3E%3C%2Fsvg%3E") center center no-repeat; }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('fontawesome-webfont.674f50d287a8c48dc19b.eot?v=4.7.0');
  src: url('fontawesome-webfont.674f50d287a8c48dc19b.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('fontawesome-webfont.af7ae505a9eed503f8b8.woff2?v=4.7.0') format('woff2'), url('fontawesome-webfont.fee66e712a8a08eef580.woff?v=4.7.0') format('woff'), url('fontawesome-webfont.b06871f281fee6b241d6.ttf?v=4.7.0') format('truetype'), url('fontawesome-webfont.912ec66d7572ff821749.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-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);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.c-btn {
  color: #f4f4f4;
  line-height: 0.95 !important;
  border: solid 0,5px #4c4e4a !important;
  position: relative !important;
  width: 312px;
  height: 40px; }

.Line-5 {
  width: 342px;
  height: 2px;
  opacity: 0.5;
  border: solid 1px #b5b6b3; }

.line {
  width: 342px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.08); }

.selected-list .c-list .c-token {
  background: #f4f4f4; }

.selected-list .c-list .c-token .c-label {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.87); }

.selected-list .c-list .c-token .c-remove svg {
  fill: #181717 !important; }

.selected-list .c-btn {
  padding: 5px !important;
  border: solid 0,5px #6c6d6b !important;
  height: 40px;
  margin-left: -5px; }

.selected-list {
  height: 40px;
  margin-left: -5px; }

.modalJustificativa .cuppa-dropdown {
  margin-top: -15px;
  height: auto; }

.modalJustificativa .selected-list {
  width: 400px !important;
  height: auto; }

.modalJustificativa .selected-list .c-btn {
  height: auto !important;
  background-color: transparent !important; }

.c-btn.disabled {
  /* background: #ccc; */
  background-color: #f4f4f4 !important;
  box-shadow: 0 0 black; }

.cuppa-dropdown {
  height: 40px;
  margin-left: -5px; }

.c {
  height: 40px; }

.countplaceholder {
  color: #000; }

.selected-list .c-angle-down svg, .selected-list .c-angle-up svg {
  fill: #000; }

.dropdown-list ul li:hover {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.87); }

.dropdown-list ul li {
  font-family: Roboto;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: rgba(0, 0, 0, 0.87); }

.pure-checkbox {
  height: 40px; }

.arrow-up, .arrow-down {
  border-bottom: 15px solid #000; }

.arrow-2 {
  border-bottom: 15px solid #ccc; }

.list-area {
  border: 1px solid #ccc;
  background: #fff;
  box-shadow: 0px 1px 5px #ccc; }

.select-all {
  border-bottom: 1px solid #ccc; }

.list-filter {
  border-bottom: 1px solid #ccc; }

.list-filter .c-search svg {
  fill: #000; }

.list-filter .c-clear svg {
  fill: #000; }

.pure-checkbox input[type="checkbox"]:focus + label:before, .pure-checkbox input[type="checkbox"]:hover + label:before {
  border-color: #f4f4f4;
  background-color: #6c6d6b;
  font-size: 12px; }

.pure-checkbox input[type="checkbox"] + label {
  color: #000; }

.pure-checkbox input[type="checkbox"] + label:before {
  color: #f4f4f4;
  border: 2px solid #f4f4f4; }

.pure-checkbox input[type="checkbox"] + label:after {
  background-color: #f4f4f4; }

.pure-checkbox input[type="checkbox"]:disabled + label:before {
  border-color: #cccccc; }

.pure-checkbox input[type="checkbox"]:disabled:checked + label:before {
  background-color: #cccccc; }

.pure-checkbox input[type="checkbox"] + label:after {
  border-color: #ffffff; }

.pure-checkbox input[type="radio"]:checked + label:before {
  background-color: white; }

.pure-checkbox input[type="checkbox"]:checked + label:before {
  background: #000; }

.selected-item {
  background: #f4f4f4; }

.btn-iceblue {
  background: #000;
  border: 1px solid #ccc;
  color: #fff; }

.toug::-webkit-scrollbar-thumb {
  background-color: #000;
  outline: 1px solid slategrey; }

/*** spacings ***/
/*** font size css **/
/*flexible width*/
/*flexible height*/
/*setting font size line height and color together*/
/***** image viewer css *****/
#iv-container {
  position: fixed;
  background: #0d0d0d;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000; }
.iv-container {
  overflow: hidden; }
.iv-close {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-shadow: 0px 0px 3px #6d6d6d;
  transition: all ease 200ms; }
.iv-close:after,
.iv-close:before {
  content: "";
  height: 4px;
  width: 32px;
  background: #d1dcdf;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px; }
.iv-close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }
.iv-close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }
.iv-close:hover {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }
/***** snap view css *****/
.iv-snap-view {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 20px;
  left: 20px;
  border: 1px solid #666;
  background: black;
  z-index: 100;
  box-sizing: content-box;
  transition: all ease 400ms;
  opacity: 0; }
.iv-snap-image-wrap {
  display: inline-block;
  position: absolute;
  max-width: 150px;
  max-height: 150px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden; }
.iv-snap-image {
  position: relative; }
.iv-snap-handle {
  position: absolute;
  border: 1px solid #ccc;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  box-shadow: 0px 0px 0px 200px rgba(0, 0, 0, 0.5); }
/*** zoom slider ***/
.iv-zoom-slider {
  width: 100%;
  box-sizing: content-box;
  border: 1px solid #666;
  border-top: 0;
  background: rgba(204, 204, 204, 0.1);
  height: 15px;
  position: absolute;
  top: 150px;
  left: -1px; }
.iv-zoom-handle {
  width: 20px;
  height: 15px;
  background: #ccc;
  position: absolute; }
/**** snap view css end *****/
.iv-image-view {
  position: absolute;
  height: 100%;
  width: 100%; }
.iv-image-wrap {
  display: inline-block; }
.iv-image-wrap:active {
  cursor: move; }
.iv-large-image {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
.iv-loader {
  position: absolute;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  z-index: 100; }
/****** CSS loader by http://projects.lukehaas.me/css-loaders/ *****/
.iv-loader {
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 100;
  margin-top: -16px;
  margin-left: -16px;
  font-size: 5px;
  position: absolute;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.4) !important;
  border-right: 1.1em solid rgba(0, 0, 0, 0.4) !important;
  border-bottom: 1.1em solid #feca37 !important;
  border-left: 1.1em solid #0176bd !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }
.iv-fullscreen {
  position: fixed;
  background: #0d0d0d;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000; }
.iv-fullscreen-container {
  position: relative;
  height: 100%;
  width: 100%; }
.iv-fullscreen-close {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 10px;
  top: 10px;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  text-shadow: 0px 0px 3px #6d6d6d;
  transition: all ease 200ms; }
.iv-fullscreen-close:after, .iv-fullscreen-close:before {
  content: "";
  height: 4px;
  width: 24px;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
.iv-fullscreen-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg); }
.iv-fullscreen-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg); }
.iv-fullscreen-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%; }
.iv-loader:after {
  width: 10em;
  height: 10em;
  border-radius: 50%; }
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
/** loader css end **/
@media screen and (max-width: 767px) {
  .iv-snap-view {
    z-index: -1;
    visibility: hidden; } }
/****** demo and page css ******/
#iv-container {
  z-index: 10000; }
#image-gallery-1 {
  max-width: 800px; }
#image-gallery-1 .gallery-items {
  float: left;
  height: 200px;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer; }
/** Gallery 2 css **/
.image-gallery-2 {
  width: 100%;
  position: relative;
  height: 700px;
  background: #000;
  margin-top: 60px;
  margin-bottom: 15px; }
.image-gallery-2 .image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
  background-color: #e2e2e2;
  border: 0.1px solid rgba(0, 0, 0, 0.3); }
.image-gallery-2 .prev,
.image-gallery-2 .next {
  position: absolute;
  height: 32px;
  margin-top: -66px;
  top: 50%;
  font-size: xx-large;
  color: #757575; }
.image-gallery-2 .prev {
  cursor: pointer;
  left: 20px;
  transition: linear 0.3s; }
.image-gallery-2 .prev:hover {
    left: 25px;
    transition: linear 0.3s; }
.image-gallery-2 .next {
  right: 20px;
  cursor: pointer;
  transition: linear 0.3s; }
.image-gallery-2 .next:hover {
    right: 25px;
    transition: linear 0.3s; }
.image-gallery-2 .footer-info {
  position: absolute;
  height: 50px;
  width: 100%;
  left: 0;
  bottom: 0;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center; }
/** Image gallery 3 **/
.pannable-image {
  width: 700px; }
.footer-icon {
  margin-top: 7px;
  margin-right: 5px;
  cursor: pointer;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  color: white; }
.footer-icon:hover {
    color: #feca37 !important;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out; }
.inline-icon {
  display: flex;
  justify-content: space-between;
  position: relative;
  float: right;
  padding-left: 5px;
  width: 100%;
  margin-top: -45px; }
.inline-pdf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 93%;
  width: 88%;
  margin-left: 6%;
  margin-right: 6%; }
.pdf-button {
  display: flex;
  justify-content: center;
  cursor: pointer; }
.pdf-button-active {
  width: 258px;
  text-align: center;
  height: 57px;
  line-height: 56px;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out; }
.pdf-button-active:hover {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out; }
.filterTooltip {
  display: flex;
  justify-content: space-around;
  width: 160px !important;
  right: 10% !important;
  left: 0% !important; }
.filterTooltip span {
    margin-left: 10px; }
.filterTooltip i {
    margin-right: 10px;
    font-size: 20px; }

