*, *:before, *:after {
  box-sizing: border-box;
}
/**! 21. Modals **/
.modal-instance .modal-body {
  display: none;
}
.text-center {
  text-align: center;
}
.modal-container {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.modal-container.modal-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.modal-container:before {
  background: rgba(0, 0, 0, 0.85);
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.modal-container .modal-content {
  backface-visibility: hidden;
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  max-height: 100%;
  overflow-y: scroll;
  border: none;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.modal-container .modal-content:not(.height--natural) {
  width: 50%;
  height: 50%;
}

.modal-container .modal-content .modal-close-cross {
  cursor: pointer;
  position: absolute;
  opacity: .5;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  top: 1em;
  right: 1em;
  z-index: 99;
}

.modal-container .modal-content .modal-close-cross:before {
  content: '\00D7';
  font-size: 1.5em;
}

.modal-container .modal-content .modal-close-cross:hover {
  opacity: 1;
}

.modal-container .modal-content.imagebg:not(.image--light) .modal-close-cross:before {
  color: #fff;
}

.modal-container .modal-content iframe {
  width: 100%;
  outline: none;
  border: none;
  height: 100%;
  backface-visibility: hidden;
}

.modal-container .modal-content iframe:first-child + .modal-close-cross:last-child {
  top: -3.71428571em;
}

@media all and (max-width: 767px) {
  .modal-container .modal-content {
    width: 97% !important;
    height: auto !important;
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  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
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * 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 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
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 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 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;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * 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;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 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 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

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 in Chrome and Safari on macOS.
 */

[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 Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* Responsive Grid */

.row-fluid {
  width: 100%;
  *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
  display: table;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 1px;
  *margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .span12 {
  width: 100%;
}
.row-fluid .span11 {
  width: 91.66%;
}
.row-fluid .span10 {
  width: 83.33%;
}
.row-fluid .span9 {
  width: 75%;
}
.row-fluid .span8 {
  width: 66.66%;
}
.row-fluid .span7 {
  width: 58.33%;
}
.row-fluid .span6 {
  width: 50%;
}
.row-fluid .span5 {
  width: 41.66%;
}
.row-fluid .span4 {
  width: 33.33%;
}
.row-fluid .span3 {
  width: 25%;
}
.row-fluid .span2 {
  width: 16.66%;
}
.row-fluid .span1 {
  width: 8.33%;
}

.container-fluid {
  *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
  display: table;
  content: "";
}

.container-fluid:after {
  clear: both;
}

@media (max-width: 767px) {
  .row-fluid {
    width: 100%;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: none;
    width: auto;
    margin-left: 0;
  }
}

.dnd-section > .row-fluid .dnd-column,
.dnd-section > .row-fluid > [class*="span"].dnd-module {
  padding-left: 15px;
  padding-right: 15px;
}
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
  padding-left: 0px;
  padding-right: 0px;
}


@media (min-width: 768px) {
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }

  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }

  .row-fluid:after {
    clear: both;
  }

  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }

  .row-fluid .span12 {
    width: 100%;
  }
  .row-fluid .span11 {
    width: 91.66%;
  }
  .row-fluid .span10 {
    width: 83.33%;
  }
  .row-fluid .span9 {
    width: 75%;
  }
  .row-fluid .span8 {
    width: 66.66%;
  }
  .row-fluid .span7 {
    width: 58.33%;
  }
  .row-fluid .span6 {
    width: 50%;
  }
  .row-fluid .span5 {
    width: 41.66%;
  }
  .row-fluid .span4 {
    width: 33.33%;
  }
  .row-fluid .span3 {
    width: 25%;
  }
  .row-fluid .span2 {
    width: 16.66%;
  }
  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Clearfix */

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* Visibilty Classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.text-right {
    text-align: right;
}
@media (min-width: 768px) and (max-width: 991px){
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px){
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px){
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important ;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 15px;
}
.dnd-section[class*="force-full-width-section"],
[class*="force-full-width-section"]>.row-fluid,
.dnd-section[class*="force-full-width-section"] .dnd-column{
  padding: 0;
}
@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  padding-left: 15px;
    padding-right: 15px;
}

.dnd-section .dnd-column {
  padding: 0 15px;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
@font-face {
  font-family: 'FontAwesome';
  src: url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/fontawesome-webfont.eot);
  src: url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/fontawesome-webfont.eot) format('embedded-opentype'), 
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/FontAwesome.woff) format('woff2'), 
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/fontawesome-webfont.woff2) format('woff'),
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/FontAwesome.ttf) format('truetype'), 
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/FontAwesome.svg) format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'stack-interface';
  src: url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/stack-interface.eot);
  src: url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/stack-interface.eot) format('embedded-opentype'),
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/stack-interface.woff2) format('woff2'),
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/stack-interface.woff) format('woff'),
    url(//19884383.fs1.hubspotusercontent-na1.net/hubfs/19884383/raw_assets/public/TulareCounty_September2022/fonts/stack-interface.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face { font-family: futura-pt; src: url("https://use.typekit.net/af/9b05f3/000000000000000000013365/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/9b05f3/000000000000000000013365/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/9b05f3/000000000000000000013365/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype"); font-style: normal; font-weight: 400; font-stretch: normal; font-display: auto; }
@font-face { font-family: futura-pt; src: url("https://use.typekit.net/af/2cd6bf/00000000000000000001008f/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"), url("https://use.typekit.net/af/2cd6bf/00000000000000000001008f/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"), url("https://use.typekit.net/af/2cd6bf/00000000000000000001008f/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype"); font-style: normal; font-weight: 500; font-stretch: normal; font-display: auto; }
@font-face { font-family: futura-pt; src: url("https://use.typekit.net/af/c4c302/000000000000000000012192/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2"), url("https://use.typekit.net/af/c4c302/000000000000000000012192/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff"), url("https://use.typekit.net/af/c4c302/000000000000000000012192/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("opentype"); font-style: normal; font-weight: 600; font-stretch: normal; font-display: auto; }
@font-face { font-family: futura-pt; src: url("https://use.typekit.net/af/309dfe/000000000000000000010091/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"), url("https://use.typekit.net/af/309dfe/000000000000000000010091/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"), url("https://use.typekit.net/af/309dfe/000000000000000000010091/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype"); font-style: normal; font-weight: 700; font-stretch: normal; font-display: auto; }


html {
  font-size: 87.5%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-family: "futura-pt", sans-serif;
  color: #58595b;
  line-height: 1.85714286em;
  font-size:1em;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0 0 25px;
}
table {
  font-size: 22px;
}
h1, h2 {
    word-break: break-word;
}
/* Anchors */

a {
  cursor: pointer;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  text-decoration: underline;
  cursor: pointer;
  color: #6b7c3e;
  font-weight: normal;
}

a:hover, 
span a:hover, 
label a:hover, 
li a:hover {
  color: #10222b;
  text-decoration: none;
}
/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px;
  font-family: "futura-pt", sans-serif;
  letter-spacing: 0px;
  color: #10222b;
  line-height: 1.36842105em;
}
h1 {
  text-transform: uppercase;
  letter-spacing: 5px;
}
h5{
  font-size: 2em;
  font-weight: 600;
  line-height: 1em; 
}
h2 {
  font-size: 4.5em;
  letter-spacing: -2px;
  font-weight: 500;
}
h3 {
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1.2em;
}
h4 {
  font-size: 2.5em;
}
h6{
  line-height: 2.16666667em;
}
::selection {
  background: #10222b /* WebKit/Blink Browsers */;
  color: #fff;
}
/* Lists */

ul,
ol {
  line-height: 1.85714286em;
  padding-left: 24px;
  margin: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
  list-style: none;
  line-height: 1.85714286em;
  padding-left: 24px;
  margin: 0;
}

ul.no-list {
  list-style: none;
}
p{
  font-family: "futura-pt", sans-serif;
  color: #58595b;
  line-height: 1.6em;
}
/* Code blocks */

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
  font-family: "futura-pt", sans-serif;
  color: #58595b;
  font-size: 22px;
  line-height: 1.6em;
}

/* Horizontal rules */

hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}
p strong {
  color: #252525;
  font-weight: 600;
}

@media (max-width: 1024px){
  html {
    font-size: 80%;
  }
}
@media (max-width: 992px){ 
  h2 {
    font-size: 4.5em !important;
  }
  h5 {
    font-size: 2em !important;
  }
  h4 {
    font-size: 2.5em !important;
  }
}

@media (max-width: 767px){
  h2 {
    font-size: 3.5em !important;
    line-height: 1.5em;
  }
  h3 {
    font-size: 3em !important;
  }
  h5 {
    font-size: 2em !important;
  }
  h4 {
    font-size: 2.5em !important;
  }
  h1{
    font-size: 45px !important;
  }
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  text-decoration: none;
}

button:active,
.button:active {
  text-decoration: none;
}
.button, button {
    font-size: 22px;
    text-decoration: none;
}
/* Form fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  margin-bottom: 0.35rem;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: #FFF;
  border: 2px solid;
  border-radius: 3px;
  display: inline-block;
  padding: 0.7rem;
  width: 100%;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  background: #10222b;
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  border-radius: 6px;
  padding-top: 0.46428571em;
  padding-bottom: 0.46428571em;
  padding-right: 2.78571429em;
  padding-left: 2.78571429em;
  border: 1px solid #252525;
  border-width: 1px;
  font-size: 22px;
  line-height: 1.85714286em;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  display: inline-block;
}
form input[type=submit]:hover,
form .hs-button:hover { 
  background: #fff;
  border: 1px #10222b solid;
}
/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}
/* Header container */
#menu2 {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99;
  padding: 0 0 0 50px;
  width: 100%;
  height: 100px;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 50%);
}
.bar.bar--sm {
  padding: 0.92857143em 0;
}

.container.header {
  width: 100%;
}
#menu2 .logo {
  max-height: 100% !important;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  image-rendering: -webkit-optimize-contrast;
  max-width: none;
}
.hamburger-toggle > i {
  color: #10222b;
}
.icon {
  line-height: 1em;
  font-size: 3.14285714em;
}
.icon--sm {
  font-size: 2.35714286em;
}
#menu1 {
  font-family: "futura-pt", sans-serif;
  text-transform: none;
  display: block;
  padding: 0px;
}
#menu1 .logo {
  max-height: 75% !important;
  top: 0;
  bottom: 0;
  margin: auto;
  image-rendering: -webkit-optimize-contrast;
  position: absolute;
}

nav#menu1 a img {
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  width: auto !important;
  vertical-align: middle;
  max-height: 81%;
  image-rendering: -webkit-optimize-contrast;
  margin-top: 14px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li ul ul {
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
  position: static !important;
}
.fixed-header .row.clearfix {
  margin: 0;
}
.fixed-header {
  min-height: 100px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li:first-child>ul {
  left: 0 !important;
}
.open-form .popup-container.popup-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.popup-container {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.popup-container:before {
  background: rgba(0, 0, 0, 0.85);
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.popup-container .popup-content:not(.height--natural) {
  height: auto;
  width: auto;
}
.popup-container .popup-content {
  max-height: 95%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.popup-container .popup-content {
  backface-visibility: hidden;
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  max-height: 100%;
  border: none;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-height: 95%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.boxed {
  position: relative;
  overflow: hidden;
  padding: 1.85714286em;
  margin-bottom: 30px;
}

.boxed.boxed--lg {
  padding: 2.78571429em;
}
.boxed:not([class*='bg-']) {
  background: #ffffff;
}
.popup-container .popup-content .popup-close-cross {
  cursor: pointer;
  position: absolute;
  opacity: .5;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  top: 1em;
  right: 1em;
  z-index: 99;
}
.popup-container .popup-content .popup-close-cross:before {
  content: '\00D7';
  font-size: 1.5em;
}
.popup-container iframe {
  width: 100%;
  min-height: 350px;
  border: none;
}
.popup-container .popup-content iframe {
  width: 100%;
  outline: none;
  border: none;
  height: 100%;
  backface-visibility: hidden;
}

.open-form .popup-container {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.popup-container .popup-content .popup-close-cross:before {
  font-family: Open Sans;
}
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li.borrow>a {
  cursor: pointer;
}
@media(min-width:768px){

  .custom-menu-primary .hs-menu-wrapper>ul > li> ul >li > ul > li:hover {
    opacity: 1;
  }
  .custom-menu-primary .hs-menu-wrapper>ul li a {
    line-height: 100px;
    padding: 0px 35px;
    display: block;
    text-transform: none;
    color: #58595b;
    font-size: 1.4em;
    transition: 0.2s;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    user-select: none;
    font-family: "futura-pt", sans-serif;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a {
    background: #6b7c3e;
    color: #fff;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:nth-last-of-type(2)>a {
    letter-spacing: normal;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li {
    padding: 25px 10px;
    width: 50%;
    float: left;
    z-index: 999;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    display: block;
    width: auto !important;
    width: 568px !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li ul ul {
    opacity: 1 !important;
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding-left: 25px;
    position: static !important;
    text-align: left;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:not(:first-child)>ul>li {
    width: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul li a {
    padding: 0;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    font-family: "futura-pt", sans-serif;
    color: #58595b;
    margin-bottom: 10px !important;
    letter-spacing: 0px;
    font-weight: 400;
    color: #10222b;
    font-weight: 800;
    font-size: 1.5em;
    padding-left: 25px;
    line-height: 2.16666667em;
    cursor: text;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a:after {
    height: 5px;
    content: "";
    display: block;
    width: 75%;
    margin: 15px 0;
    background-color: #10222b;
  }

  .custom-menu-primary .hs-menu-wrapper>ul > li> ul >li > ul > li {
    visibility: visible !important;
    opacity: .75;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li:not(:last-child) {
    margin-bottom: 0.30952381em;
  }

  .custom-menu-primary .hs-menu-wrapper>ul ul ul li a {
    font-size: 1.3em;
    display: block;
    padding: 5px 0px;
    margin: 0;
    color: #666666;
    font-weight: normal;
    transition: 0.2s;
    list-style: none;
    line-height: 26px;
    letter-spacing: normal;
  }

  .custom-menu-primary .hs-menu-wrapper>ul li a {
    text-decoration: none;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
    -webkit-box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    text-align: left;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    left: auto !IMPORTANT;
    right: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children:hover>ul {
    left: 50% !important;
    transform: translateX(-50%);
  }
}


@media(max-width:1050px) and (min-width:992px){
  .custom-menu-primary .hs-menu-wrapper>ul li a {
    padding: 0 25px;
  } 
}
@media(max-width:991px)  and (min-width:768px) {
  .bar__module img {
    max-height: 81% !important;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  .custom-menu-primary .hs-menu-wrapper>ul li a {
    padding: 0 35px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li ul ul {
    opacity: 1 !important;
    position: static !important;
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    padding-left: 25px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    width: auto !important;
    width: 540px !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul ul li a {
    line-height: 23.7px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    position: static !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    left: 0 !important;
  }
  .bar__module img {
    max-height: 75% !important;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
}
@media(max-width:780px)  and (min-width:768px){
  .custom-menu-primary .hs-menu-wrapper>ul li a {
    padding: 0 25px;
  }
  nav#menu1 a img {
    max-height: 75% !important;
    margin-top: 13px;
  }
}
@media(max-width:767px){
  a#hs-link-header_logo_hs_logo_widget img {
    max-width: 200px;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    image-rendering: -webkit-optimize-contrast;
    width: auto !important;
  }

  [class^="stack-"]:before, [class*=" stack-"]:before {
    font-family: "stack-interface";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: 0.2em;
    text-align: center;
    /* opacity: .8; */
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: 0.2em;
    /* font-size: 120%; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* text-shadow: 1px 1px 1px rgb(127 127 127 / 30%); */
  }
  .stack-menu:before {
    content: '\e80e';
  }
  div#menu2 {
    padding: 0px 25px;
    height: 60px;
  }
  div#menu2  .bar.bar--sm {
    padding: 14px 0;
  }
  div#menu2  .row.clearfix {
    margin: 0;
  }
  .float-left, .float-right {
    float: none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul {
    display: none;
  }

  .custom-menu-primary {
    background: #fff;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    line-height: 70px;
    padding: 0px 30px;
    display: block;
    text-transform: none;
    color: #58595b;
    font-size: 1.4em;
    transition: 0.2s;
    text-align: center;
    color: #58595b !important;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
  }
  .fixed-header {
    min-height: 60px;
  }
  .hamburger-toggle>i {
    color: #10222b;
    display: inline-block;
    position: relative;
    top: 1px;
  }
  .mobile-open .bar.bar--sm {
    display: block !important;
    width: 100%;
  }

  nav#menu1 .float-right.text-right {
    float: none;
  }
  nav#menu1 {
    padding: 0 !important;
    position: relative;
    top: -1px;
  }
  .fixed-header .header .custom-menu-primary .hs-menu-wrapper>ul>li:hover>a {
    background: transparent !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:last-child:hover>a {
    color: #58595b !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:last-child>a {
    color: #fff !important;
  }
  .custom-menu-primary li.hs-menu-item.hs-menu-depth-1.search > a {
    letter-spacing: normal;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li {
    padding: 10px 10px;
    width: 100%;
    float: left;
    z-index: 999;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li ul ul {
    width: 100% !important;
    padding-left: 25px;
    position: static !important;
    text-align: left;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:not(:first-child)>ul>li {
    width: 100%;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul li a {
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    font-family: "futura-pt", sans-serif;
    color: #58595b;
    margin-bottom: 10px !important;
    letter-spacing: 0px;
    font-weight: 400;
    color: #10222b;
    font-weight: 800;
    font-size: 1.5em;
    padding-left: 25px;
    line-height: 2.16666667em;
    cursor: text;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a:after {
    height: 5px;
    content: "";
    display: block;
    width: 100%;
    margin: 15px 0;
    background-color: #10222b;
  }
  .custom-menu-primary .hs-menu-wrapper>ul > li> ul >li > ul > li {
    visibility: visible !important;
    opacity: .75;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li:not(:last-child) {
    margin-bottom: 0.30952381em;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul ul li a {
    font-size: 1.3em;
    display: block;
    padding: 5px 0px;
    margin: 0;
    color: #666666;
    font-weight: normal;
    transition: 0.2s;
    list-style: none;
    line-height: 26px;
    letter-spacing: normal;
  }

  .custom-menu-primary .hs-menu-wrapper>ul li a {
    text-decoration: none;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
    -webkit-box-shadow: 0 0 25px 0 rgb(0 0 0 / 8%);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    text-align: left;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    left: auto !IMPORTANT;
    right: 0;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul {
    opacity: 0 !important;
    visibility: hidden !important;;
    display: none !important;;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.child-open>ul {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  #menu1 {
    overflow-y: auto;
    background: #fff;
    max-height: 90vh;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li {
/*     margin-top: 0.92857143em; */
    text-align: center;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    padding-left: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li ul ul {
    width: 100% !important;
    padding-left: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul ul li a {
    text-align: center;
    line-height: 23.7px;
  }

  .custom-menu-primary .hs-menu-wrapper>ul ul ul li {
    padding: 10px 25px;
    margin: 0;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li {
    margin-bottom: 0 !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    text-align: center;
  }
  .custom-menu-primary .hs-menu-wrapper>ul ul>li:not(:last-child) {
    margin-bottom: 0;
  }
  .bar__module {
/*     margin-bottom: 0.92857143em; */
  }
  .popup-container .popup-content {
    width: 97% !important;
    height: auto !important;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  nav#menu1 { Top -2px }
}
/* note */
.cm-col-xs-1, 
.cm-col-sm-1, 
.cm-col-md-1, 
.cm-col-lg-1, 
.cm-col-xs-2, 
.cm-col-sm-2, 
.cm-col-md-2, 
.cm-col-lg-2, 
.cm-col-xs-3, 
.cm-col-sm-3, 
.cm-col-md-3, 
.cm-col-lg-3, 
.cm-col-xs-4, 
.cm-col-sm-4, 
.cm-col-md-4, 
.cm-col-lg-4, 
.cm-col-xs-5, 
.cm-col-sm-5, 
.cm-col-md-5, 
.cm-col-lg-5, 
.cm-col-xs-6, 
.cm-col-sm-6, 
.cm-col-md-6, 
.cm-col-lg-6, 
.cm-col-xs-7, 
.cm-col-sm-7, 
.cm-col-md-7, 
.cm-col-lg-7, 
.cm-col-xs-8, 
.cm-col-sm-8, 
.cm-col-md-8, 
.cm-col-lg-8, 
.cm-col-xs-9, 
.cm-col-sm-9, 
.cm-col-md-9, 
.cm-col-lg-9, 
.cm-col-xs-10, 
.cm-col-sm-10, 
.cm-col-md-10, 
.cm-col-lg-10, 
.cm-col-xs-11, 
.cm-col-sm-11, 
.cm-col-md-11, 
.cm-col-lg-11, 
.cm-col-xs-12, 
.cm-col-sm-12, 
.cm-col-md-12, 
.cm-col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}



@media (min-width: 768px){
  .cm-col-sm-1, .cm-col-sm-2, .cm-col-sm-3, .cm-col-sm-4, .cm-col-sm-5, .cm-col-sm-6, .cm-col-sm-7, .cm-col-sm-8, .cm-col-sm-9, .cm-col-sm-10, .cm-col-sm-11, .cm-col-sm-12 {
    float: left;
  }
  .cm-col-sm-12 {
    width: 100%;
  }
  .cm-col-sm-3 {
    width: 25%;
  }
}

.footer-main .cm-row {
  margin-left: -15px;
  margin-right: -15px;
}

.cm-row.footer {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .cm-row.footer {
    margin-bottom: 30px;
  }
}

.float-right {
  float: right;
}

.footer-main p {
  font-size: 1.3em;
  opacity: .9;
  margin-top: 0;
  line-height: 1.6em;
/*   margin-bottom: 1.85714286em; */
}

section#footer {
  background: #e9eaeb;
  padding-top: 90px;
  padding-bottom: 40px;
}

.footer-main .cm-row:before,.footer-main .cm-row:after {
  content: '';
  display: block;
}

.footer-main .cm-row:after {
  clear: both;
}

.footer-main .col-xs-12 {
  padding: 0 15px;
}

.footer-bottom {
  margin-top: 50px;
}

.footer-bottom p {
  font-family: "futura-pt", sans-serif;
  color: #58595b;
  font-size: 22px;
  line-height: 1.6em;
/*   margin-bottom: 1.85714286em; */
}

section#footer .content-wrapper {
  padding: 0 15px;
}

.footer-bottom ul li {
  display: inline-block;
  padding: 0 12px 0 7px;
}

.footer-bottom ul {
  list-style: none;
  line-height: 1.85714286em;
  margin-bottom: 1.85714286em;
  padding: 0;
  display: flex;
}

.footer-bottom ul li:not(:last-child) {
  border-right: 1px solid #10222b;
}

.footer-bottom ul li a, .footer-bottom ul li span {
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
  color: #10222b;
  text-decoration: none;
}

.footer-bottom ul li:first-child {
  padding: 0 12px 0 0;
}

.mt--3 {
  margin-top: 5.57142857em;
}

section#footer ul.social li {
  display: inline-block;
  margin-right: 12px;
  padding: 0;
}

section#footer ul.social li {
  display: inline-block;
  margin-right: 15px;
}

section#footer ul.social li {
  display: inline-block;
  margin-right: 15px;
  padding: 0;
}

section#footer ul.social li a {
  display: block;
  transition: 0.2s;
  color: #10222b;
}

.mb--1 {
  margin-bottom: 20px;
}

section#footer img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.footer.text-center p {
  text-align: center;
  font-size: 0.9em;
}

ul.social.text-center-xs {
  padding: 0;
  margin: 0;
}

.footer-main p strong {
  color: #252525;
  font-weight: 600;
}
ul.social.text-center-xs li i {
  transition: 0.2s;
  font-size: 30px;
}

section#footer ul.social li a i:hover {
  color: #6b7c3e;
  transition: 0.2s;
}
.footer-bottom ul {
  display: block;
}
section#pre-footer {
  padding: 40px 0;
  background: #10222b;
  margin-top: 40px;
}



.content-wrapper {
  padding: 0 15px;
}

section#pre-footer ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 20px 10px;
}

section#pre-footer ul li {
/*   width: 25%; */
/*   float: left; */
  text-align: center;
  padding: 0 15px;
}

section#pre-footer ul li a {
  font-size: 1.8em;
  font-weight: 800;
  line-height: 1em;
  color: #fff;
/*   margin-bottom: 10px !important; */
  letter-spacing: 0px;
  text-decoration: none;
  display: block;
}

section#pre-footer ul:after,section#pre-footer ul:before {
  content: '';
  display: table;
  clear: both;
}


@media(max-width:991px){
  section#footer {
    padding-top: 65px;
  }
  section#pre-footer {
    padding: 30px 0;
    margin-top: 30px;
  }
  .footer-bottom {
    margin-top: 40px;
  }
/*   .footer-main .cm-row {
    margin-top: 2.78571429em;
  }  */
  .footer-main .cm-row.mt--3 {
    margin-top: 40px;
  }
  .cm-row.text-center.footer {
    margin: 0;
  }
}
@media(max-width:767px){
  .footer-bottom {
    margin-top: 30px;
  }
  .footer-bottom ul {
    justify-content: center;
  }
  .footer-main .cm-row {
    text-align: center;
  }
  .footer-bottom p {
    text-align: left;
  }
  .footer-main .col-xs-12 {
    margin: 0;
/*     padding-bottom: 1.85714286em; */
  }
  .footer-main .col-xs-12 {
    float: none;
  }
  .footer-main .cm-row.footer>div:first-child {
    padding-bottom: 0;
  }
  section#footer {
    padding: 40px 0 20px;
  }
  section#pre-footer {
    padding: 25px 0;
  }
  section#pre-footer ul {
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
  }
  .footer-bottom ul {
    margin-bottom: 25px;
  }
  .footer-bottom ul {
    flex-wrap: wrap;
  }
  
  .footer-main .cm-row.mt--3 {
    margin-top: 24px;
  }
  .mb--1 {
    margin-bottom: 16px;
  }
  .footer.text-center p {
/*     margin-bottom: 2em; */
  }
}
[class^="icon-"], [class*=" icon-"] {
  font-family: 'iconsmind';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-A-Z:before {
  content: "\e600";
}
.icon-Aa:before {
  content: "\e601";
}
.icon-Add-Bag:before {
  content: "\e602";
}
.icon-Add-Basket:before {
  content: "\e603";
}
.icon-Add-Cart:before {
  content: "\e604";
}
.icon-Add-File:before {
  content: "\e605";
}
.icon-Add-SpaceAfterParagraph:before {
  content: "\e606";
}
.icon-Add-SpaceBeforeParagraph:before {
  content: "\e607";
}
.icon-Add-User:before {
  content: "\e608";
}
.icon-Add-UserStar:before {
  content: "\e609";
}
.icon-Add-Window:before {
  content: "\e60a";
}
.icon-Add:before {
  content: "\e60b";
}
.icon-Address-Book:before {
  content: "\e60c";
}
.icon-Address-Book2:before {
  content: "\e60d";
}
.icon-Administrator:before {
  content: "\e60e";
}
.icon-Aerobics-2:before {
  content: "\e60f";
}
.icon-Aerobics-3:before {
  content: "\e610";
}
.icon-Aerobics:before {
  content: "\e611";
}
.icon-Affiliate:before {
  content: "\e612";
}
.icon-Aim:before {
  content: "\e613";
}
.icon-Air-Balloon:before {
  content: "\e614";
}
.icon-Airbrush:before {
  content: "\e615";
}
.icon-Airship:before {
  content: "\e616";
}
.icon-Alarm-Clock:before {
  content: "\e617";
}
.icon-Alarm-Clock2:before {
  content: "\e618";
}
.icon-Alarm:before {
  content: "\e619";
}
.icon-Alien-2:before {
  content: "\e61a";
}
.icon-Alien:before {
  content: "\e61b";
}
.icon-Aligator:before {
  content: "\e61c";
}
.icon-Align-Center:before {
  content: "\e61d";
}
.icon-Align-JustifyAll:before {
  content: "\e61e";
}
.icon-Align-JustifyCenter:before {
  content: "\e61f";
}
.icon-Align-JustifyLeft:before {
  content: "\e620";
}
.icon-Align-JustifyRight:before {
  content: "\e621";
}
.icon-Align-Left:before {
  content: "\e622";
}
.icon-Align-Right:before {
  content: "\e623";
}
.icon-Alpha:before {
  content: "\e624";
}
.icon-Ambulance:before {
  content: "\e625";
}
.icon-AMX:before {
  content: "\e626";
}
.icon-Anchor-2:before {
  content: "\e627";
}
.icon-Anchor:before {
  content: "\e628";
}
.icon-Android-Store:before {
  content: "\e629";
}
.icon-Android:before {
  content: "\e62a";
}
.icon-Angel-Smiley:before {
  content: "\e62b";
}
.icon-Angel:before {
  content: "\e62c";
}
.icon-Angry:before {
  content: "\e62d";
}
.icon-Apple-Bite:before {
  content: "\e62e";
}
.icon-Apple-Store:before {
  content: "\e62f";
}
.icon-Apple:before {
  content: "\e630";
}
.icon-Approved-Window:before {
  content: "\e631";
}
.icon-Aquarius-2:before {
  content: "\e632";
}
.icon-Aquarius:before {
  content: "\e633";
}
.icon-Archery-2:before {
  content: "\e634";
}
.icon-Archery:before {
  content: "\e635";
}
.icon-Argentina:before {
  content: "\e636";
}
.icon-Aries-2:before {
  content: "\e637";
}
.icon-Aries:before {
  content: "\e638";
}
.icon-Army-Key:before {
  content: "\e639";
}
.icon-Arrow-Around:before {
  content: "\e63a";
}
.icon-Arrow-Back3:before {
  content: "\e63b";
}
.icon-Arrow-Back:before {
  content: "\e63c";
}
.icon-Arrow-Back2:before {
  content: "\e63d";
}
.icon-Arrow-Barrier:before {
  content: "\e63e";
}
.icon-Arrow-Circle:before {
  content: "\e63f";
}
.icon-Arrow-Cross:before {
  content: "\e640";
}
.icon-Arrow-Down:before {
  content: "\e641";
}
.icon-Arrow-Down2:before {
  content: "\e642";
}
.icon-Arrow-Down3:before {
  content: "\e643";
}
.icon-Arrow-DowninCircle:before {
  content: "\e644";
}
.icon-Arrow-Fork:before {
  content: "\e645";
}
.icon-Arrow-Forward:before {
  content: "\e646";
}
.icon-Arrow-Forward2:before {
  content: "\e647";
}
.icon-Arrow-From:before {
  content: "\e648";
}
.icon-Arrow-Inside:before {
  content: "\e649";
}
.icon-Arrow-Inside45:before {
  content: "\e64a";
}
.icon-Arrow-InsideGap:before {
  content: "\e64b";
}
.icon-Arrow-InsideGap45:before {
  content: "\e64c";
}
.icon-Arrow-Into:before {
  content: "\e64d";
}
.icon-Arrow-Join:before {
  content: "\e64e";
}
.icon-Arrow-Junction:before {
  content: "\e64f";
}
.icon-Arrow-Left:before {
  content: "\e650";
}
.icon-Arrow-Left2:before {
  content: "\e651";
}
.icon-Arrow-LeftinCircle:before {
  content: "\e652";
}
.icon-Arrow-Loop:before {
  content: "\e653";
}
.icon-Arrow-Merge:before {
  content: "\e654";
}
.icon-Arrow-Mix:before {
  content: "\e655";
}
.icon-Arrow-Next:before {
  content: "\e656";
}
.icon-Arrow-OutLeft:before {
  content: "\e657";
}
.icon-Arrow-OutRight:before {
  content: "\e658";
}
.icon-Arrow-Outside:before {
  content: "\e659";
}
.icon-Arrow-Outside45:before {
  content: "\e65a";
}
.icon-Arrow-OutsideGap:before {
  content: "\e65b";
}
.icon-Arrow-OutsideGap45:before {
  content: "\e65c";
}
.icon-Arrow-Over:before {
  content: "\e65d";
}
.icon-Arrow-Refresh:before {
  content: "\e65e";
}
.icon-Arrow-Refresh2:before {
  content: "\e65f";
}
.icon-Arrow-Right:before {
  content: "\e660";
}
.icon-Arrow-Right2:before {
  content: "\e661";
}
.icon-Arrow-RightinCircle:before {
  content: "\e662";
}
.icon-Arrow-Shuffle:before {
  content: "\e663";
}
.icon-Arrow-Squiggly:before {
  content: "\e664";
}
.icon-Arrow-Through:before {
  content: "\e665";
}
.icon-Arrow-To:before {
  content: "\e666";
}
.icon-Arrow-TurnLeft:before {
  content: "\e667";
}
.icon-Arrow-TurnRight:before {
  content: "\e668";
}
.icon-Arrow-Up:before {
  content: "\e669";
}
.icon-Arrow-Up2:before {
  content: "\e66a";
}
.icon-Arrow-Up3:before {
  content: "\e66b";
}
.icon-Arrow-UpinCircle:before {
  content: "\e66c";
}
.icon-Arrow-XLeft:before {
  content: "\e66d";
}
.icon-Arrow-XRight:before {
  content: "\e66e";
}
.icon-Ask:before {
  content: "\e66f";
}
.icon-Assistant:before {
  content: "\e670";
}
.icon-Astronaut:before {
  content: "\e671";
}
.icon-At-Sign:before {
  content: "\e672";
}
.icon-ATM:before {
  content: "\e673";
}
.icon-Atom:before {
  content: "\e674";
}
.icon-Audio:before {
  content: "\e675";
}
.icon-Auto-Flash:before {
  content: "\e676";
}
.icon-Autumn:before {
  content: "\e677";
}
.icon-Baby-Clothes:before {
  content: "\e678";
}
.icon-Baby-Clothes2:before {
  content: "\e679";
}
.icon-Baby-Cry:before {
  content: "\e67a";
}
.icon-Baby:before {
  content: "\e67b";
}
.icon-Back2:before {
  content: "\e67c";
}
.icon-Back-Media:before {
  content: "\e67d";
}
.icon-Back-Music:before {
  content: "\e67e";
}
.icon-Back:before {
  content: "\e67f";
}
.icon-Background:before {
  content: "\e680";
}
.icon-Bacteria:before {
  content: "\e681";
}
.icon-Bag-Coins:before {
  content: "\e682";
}
.icon-Bag-Items:before {
  content: "\e683";
}
.icon-Bag-Quantity:before {
  content: "\e684";
}
.icon-Bag:before {
  content: "\e685";
}
.icon-Bakelite:before {
  content: "\e686";
}
.icon-Ballet-Shoes:before {
  content: "\e687";
}
.icon-Balloon:before {
  content: "\e688";
}
.icon-Banana:before {
  content: "\e689";
}
.icon-Band-Aid:before {
  content: "\e68a";
}
.icon-Bank:before {
  content: "\e68b";
}
.icon-Bar-Chart:before {
  content: "\e68c";
}
.icon-Bar-Chart2:before {
  content: "\e68d";
}
.icon-Bar-Chart3:before {
  content: "\e68e";
}
.icon-Bar-Chart4:before {
  content: "\e68f";
}
.icon-Bar-Chart5:before {
  content: "\e690";
}
.icon-Bar-Code:before {
  content: "\e691";
}
.icon-Barricade-2:before {
  content: "\e692";
}
.icon-Barricade:before {
  content: "\e693";
}
.icon-Baseball:before {
  content: "\e694";
}
.icon-Basket-Ball:before {
  content: "\e695";
}
.icon-Basket-Coins:before {
  content: "\e696";
}
.icon-Basket-Items:before {
  content: "\e697";
}
.icon-Basket-Quantity:before {
  content: "\e698";
}
.icon-Bat-2:before {
  content: "\e699";
}
.icon-Bat:before {
  content: "\e69a";
}
.icon-Bathrobe:before {
  content: "\e69b";
}
.icon-Batman-Mask:before {
  content: "\e69c";
}
.icon-Battery-0:before {
  content: "\e69d";
}
.icon-Battery-25:before {
  content: "\e69e";
}
.icon-Battery-50:before {
  content: "\e69f";
}
.icon-Battery-75:before {
  content: "\e6a0";
}
.icon-Battery-100:before {
  content: "\e6a1";
}
.icon-Battery-Charge:before {
  content: "\e6a2";
}
.icon-Bear:before {
  content: "\e6a3";
}
.icon-Beard-2:before {
  content: "\e6a4";
}
.icon-Beard-3:before {
  content: "\e6a5";
}
.icon-Beard:before {
  content: "\e6a6";
}
.icon-Bebo:before {
  content: "\e6a7";
}
.icon-Bee:before {
  content: "\e6a8";
}
.icon-Beer-Glass:before {
  content: "\e6a9";
}
.icon-Beer:before {
  content: "\e6aa";
}
.icon-Bell-2:before {
  content: "\e6ab";
}
.icon-Bell:before {
  content: "\e6ac";
}
.icon-Belt-2:before {
  content: "\e6ad";
}
.icon-Belt-3:before {
  content: "\e6ae";
}
.icon-Belt:before {
  content: "\e6af";
}
.icon-Berlin-Tower:before {
  content: "\e6b0";
}
.icon-Beta:before {
  content: "\e6b1";
}
.icon-Betvibes:before {
  content: "\e6b2";
}
.icon-Bicycle-2:before {
  content: "\e6b3";
}
.icon-Bicycle-3:before {
  content: "\e6b4";
}
.icon-Bicycle:before {
  content: "\e6b5";
}
.icon-Big-Bang:before {
  content: "\e6b6";
}
.icon-Big-Data:before {
  content: "\e6b7";
}
.icon-Bike-Helmet:before {
  content: "\e6b8";
}
.icon-Bikini:before {
  content: "\e6b9";
}
.icon-Bilk-Bottle2:before {
  content: "\e6ba";
}
.icon-Billing:before {
  content: "\e6bb";
}
.icon-Bing:before {
  content: "\e6bc";
}
.icon-Binocular:before {
  content: "\e6bd";
}
.icon-Bio-Hazard:before {
  content: "\e6be";
}
.icon-Biotech:before {
  content: "\e6bf";
}
.icon-Bird-DeliveringLetter:before {
  content: "\e6c0";
}
.icon-Bird:before {
  content: "\e6c1";
}
.icon-Birthday-Cake:before {
  content: "\e6c2";
}
.icon-Bisexual:before {
  content: "\e6c3";
}
.icon-Bishop:before {
  content: "\e6c4";
}
.icon-Bitcoin:before {
  content: "\e6c5";
}
.icon-Black-Cat:before {
  content: "\e6c6";
}
.icon-Blackboard:before {
  content: "\e6c7";
}
.icon-Blinklist:before {
  content: "\e6c8";
}
.icon-Block-Cloud:before {
  content: "\e6c9";
}
.icon-Block-Window:before {
  content: "\e6ca";
}
.icon-Blogger:before {
  content: "\e6cb";
}
.icon-Blood:before {
  content: "\e6cc";
}
.icon-Blouse:before {
  content: "\e6cd";
}
.icon-Blueprint:before {
  content: "\e6ce";
}
.icon-Board:before {
  content: "\e6cf";
}
.icon-Bodybuilding:before {
  content: "\e6d0";
}
.icon-Bold-Text:before {
  content: "\e6d1";
}
.icon-Bone:before {
  content: "\e6d2";
}
.icon-Bones:before {
  content: "\e6d3";
}
.icon-Book:before {
  content: "\e6d4";
}
.icon-Bookmark:before {
  content: "\e6d5";
}
.icon-Books-2:before {
  content: "\e6d6";
}
.icon-Books:before {
  content: "\e6d7";
}
.icon-Boom:before {
  content: "\e6d8";
}
.icon-Boot-2:before {
  content: "\e6d9";
}
.icon-Boot:before {
  content: "\e6da";
}
.icon-Bottom-ToTop:before {
  content: "\e6db";
}
.icon-Bow-2:before {
  content: "\e6dc";
}
.icon-Bow-3:before {
  content: "\e6dd";
}
.icon-Bow-4:before {
  content: "\e6de";
}
.icon-Bow-5:before {
  content: "\e6df";
}
.icon-Bow-6:before {
  content: "\e6e0";
}
.icon-Bow:before {
  content: "\e6e1";
}
.icon-Bowling-2:before {
  content: "\e6e2";
}
.icon-Bowling:before {
  content: "\e6e3";
}
.icon-Box2:before {
  content: "\e6e4";
}
.icon-Box-Close:before {
  content: "\e6e5";
}
.icon-Box-Full:before {
  content: "\e6e6";
}
.icon-Box-Open:before {
  content: "\e6e7";
}
.icon-Box-withFolders:before {
  content: "\e6e8";
}
.icon-Box:before {
  content: "\e6e9";
}
.icon-Boy:before {
  content: "\e6ea";
}
.icon-Bra:before {
  content: "\e6eb";
}
.icon-Brain-2:before {
  content: "\e6ec";
}
.icon-Brain-3:before {
  content: "\e6ed";
}
.icon-Brain:before {
  content: "\e6ee";
}
.icon-Brazil:before {
  content: "\e6ef";
}
.icon-Bread-2:before {
  content: "\e6f0";
}
.icon-Bread:before {
  content: "\e6f1";
}
.icon-Bridge:before {
  content: "\e6f2";
}
.icon-Brightkite:before {
  content: "\e6f3";
}
.icon-Broke-Link2:before {
  content: "\e6f4";
}
.icon-Broken-Link:before {
  content: "\e6f5";
}
.icon-Broom:before {
  content: "\e6f6";
}
.icon-Brush:before {
  content: "\e6f7";
}
.icon-Bucket:before {
  content: "\e6f8";
}
.icon-Bug:before {
  content: "\e6f9";
}
.icon-Building:before {
  content: "\e6fa";
}
.icon-Bulleted-List:before {
  content: "\e6fb";
}
.icon-Bus-2:before {
  content: "\e6fc";
}
.icon-Bus:before {
  content: "\e6fd";
}
.icon-Business-Man:before {
  content: "\e6fe";
}
.icon-Business-ManWoman:before {
  content: "\e6ff";
}
.icon-Business-Mens:before {
  content: "\e700";
}
.icon-Business-Woman:before {
  content: "\e701";
}
.icon-Butterfly:before {
  content: "\e702";
}
.icon-Button:before {
  content: "\e703";
}
.icon-Cable-Car:before {
  content: "\e704";
}
.icon-Cake:before {
  content: "\e705";
}
.icon-Calculator-2:before {
  content: "\e706";
}
.icon-Calculator-3:before {
  content: "\e707";
}
.icon-Calculator:before {
  content: "\e708";
}
.icon-Calendar-2:before {
  content: "\e709";
}
.icon-Calendar-3:before {
  content: "\e70a";
}
.icon-Calendar-4:before {
  content: "\e70b";
}
.icon-Calendar-Clock:before {
  content: "\e70c";
}
.icon-Calendar:before {
  content: "\e70d";
}
.icon-Camel:before {
  content: "\e70e";
}
.icon-Camera-2:before {
  content: "\e70f";
}
.icon-Camera-3:before {
  content: "\e710";
}
.icon-Camera-4:before {
  content: "\e711";
}
.icon-Camera-5:before {
  content: "\e712";
}
.icon-Camera-Back:before {
  content: "\e713";
}
.icon-Camera:before {
  content: "\e714";
}
.icon-Can-2:before {
  content: "\e715";
}
.icon-Can:before {
  content: "\e716";
}
.icon-Canada:before {
  content: "\e717";
}
.icon-Cancer-2:before {
  content: "\e718";
}
.icon-Cancer-3:before {
  content: "\e719";
}
.icon-Cancer:before {
  content: "\e71a";
}
.icon-Candle:before {
  content: "\e71b";
}
.icon-Candy-Cane:before {
  content: "\e71c";
}
.icon-Candy:before {
  content: "\e71d";
}
.icon-Cannon:before {
  content: "\e71e";
}
.icon-Cap-2:before {
  content: "\e71f";
}
.icon-Cap-3:before {
  content: "\e720";
}
.icon-Cap-Smiley:before {
  content: "\e721";
}
.icon-Cap:before {
  content: "\e722";
}
.icon-Capricorn-2:before {
  content: "\e723";
}
.icon-Capricorn:before {
  content: "\e724";
}
.icon-Car-2:before {
  content: "\e725";
}
.icon-Car-3:before {
  content: "\e726";
}
.icon-Car-Coins:before {
  content: "\e727";
}
.icon-Car-Items:before {
  content: "\e728";
}
.icon-Car-Wheel:before {
  content: "\e729";
}
.icon-Car:before {
  content: "\e72a";
}
.icon-Cardigan:before {
  content: "\e72b";
}
.icon-Cardiovascular:before {
  content: "\e72c";
}
.icon-Cart-Quantity:before {
  content: "\e72d";
}
.icon-Casette-Tape:before {
  content: "\e72e";
}
.icon-Cash-Register:before {
  content: "\e72f";
}
.icon-Cash-register2:before {
  content: "\e730";
}
.icon-Castle:before {
  content: "\e731";
}
.icon-Cat:before {
  content: "\e732";
}
.icon-Cathedral:before {
  content: "\e733";
}
.icon-Cauldron:before {
  content: "\e734";
}
.icon-CD-2:before {
  content: "\e735";
}
.icon-CD-Cover:before {
  content: "\e736";
}
.icon-CD:before {
  content: "\e737";
}
.icon-Cello:before {
  content: "\e738";
}
.icon-Celsius:before {
  content: "\e739";
}
.icon-Chacked-Flag:before {
  content: "\e73a";
}
.icon-Chair:before {
  content: "\e73b";
}
.icon-Charger:before {
  content: "\e73c";
}
.icon-Check-2:before {
  content: "\e73d";
}
.icon-Check:before {
  content: "\e73e";
}
.icon-Checked-User:before {
  content: "\e73f";
}
.icon-Checkmate:before {
  content: "\e740";
}
.icon-Checkout-Bag:before {
  content: "\e741";
}
.icon-Checkout-Basket:before {
  content: "\e742";
}
.icon-Checkout:before {
  content: "\e743";
}
.icon-Cheese:before {
  content: "\e744";
}
.icon-Cheetah:before {
  content: "\e745";
}
.icon-Chef-Hat:before {
  content: "\e746";
}
.icon-Chef-Hat2:before {
  content: "\e747";
}
.icon-Chef:before {
  content: "\e748";
}
.icon-Chemical-2:before {
  content: "\e749";
}
.icon-Chemical-3:before {
  content: "\e74a";
}
.icon-Chemical-4:before {
  content: "\e74b";
}
.icon-Chemical-5:before {
  content: "\e74c";
}
.icon-Chemical:before {
  content: "\e74d";
}
.icon-Chess-Board:before {
  content: "\e74e";
}
.icon-Chess:before {
  content: "\e74f";
}
.icon-Chicken:before {
  content: "\e750";
}
.icon-Chile:before {
  content: "\e751";
}
.icon-Chimney:before {
  content: "\e752";
}
.icon-China:before {
  content: "\e753";
}
.icon-Chinese-Temple:before {
  content: "\e754";
}
.icon-Chip:before {
  content: "\e755";
}
.icon-Chopsticks-2:before {
  content: "\e756";
}
.icon-Chopsticks:before {
  content: "\e757";
}
.icon-Christmas-Ball:before {
  content: "\e758";
}
.icon-Christmas-Bell:before {
  content: "\e759";
}
.icon-Christmas-Candle:before {
  content: "\e75a";
}
.icon-Christmas-Hat:before {
  content: "\e75b";
}
.icon-Christmas-Sleigh:before {
  content: "\e75c";
}
.icon-Christmas-Snowman:before {
  content: "\e75d";
}
.icon-Christmas-Sock:before {
  content: "\e75e";
}
.icon-Christmas-Tree:before {
  content: "\e75f";
}
.icon-Christmas:before {
  content: "\e760";
}
.icon-Chrome:before {
  content: "\e761";
}
.icon-Chrysler-Building:before {
  content: "\e762";
}
.icon-Cinema:before {
  content: "\e763";
}
.icon-Circular-Point:before {
  content: "\e764";
}
.icon-City-Hall:before {
  content: "\e765";
}
.icon-Clamp:before {
  content: "\e766";
}
.icon-Clapperboard-Close:before {
  content: "\e767";
}
.icon-Clapperboard-Open:before {
  content: "\e768";
}
.icon-Claps:before {
  content: "\e769";
}
.icon-Clef:before {
  content: "\e76a";
}
.icon-Clinic:before {
  content: "\e76b";
}
.icon-Clock-2:before {
  content: "\e76c";
}
.icon-Clock-3:before {
  content: "\e76d";
}
.icon-Clock-4:before {
  content: "\e76e";
}
.icon-Clock-Back:before {
  content: "\e76f";
}
.icon-Clock-Forward:before {
  content: "\e770";
}
.icon-Clock:before {
  content: "\e771";
}
.icon-Close-Window:before {
  content: "\e772";
}
.icon-Close:before {
  content: "\e773";
}
.icon-Clothing-Store:before {
  content: "\e774";
}
.icon-Cloud--:before {
  content: "\e775";
}
.icon-Cloud-:before {
  content: "\e776";
}
.icon-Cloud-Camera:before {
  content: "\e777";
}
.icon-Cloud-Computer:before {
  content: "\e778";
}
.icon-Cloud-Email:before {
  content: "\e779";
}
.icon-Cloud-Hail:before {
  content: "\e77a";
}
.icon-Cloud-Laptop:before {
  content: "\e77b";
}
.icon-Cloud-Lock:before {
  content: "\e77c";
}
.icon-Cloud-Moon:before {
  content: "\e77d";
}
.icon-Cloud-Music:before {
  content: "\e77e";
}
.icon-Cloud-Picture:before {
  content: "\e77f";
}
.icon-Cloud-Rain:before {
  content: "\e780";
}
.icon-Cloud-Remove:before {
  content: "\e781";
}
.icon-Cloud-Secure:before {
  content: "\e782";
}
.icon-Cloud-Settings:before {
  content: "\e783";
}
.icon-Cloud-Smartphone:before {
  content: "\e784";
}
.icon-Cloud-Snow:before {
  content: "\e785";
}
.icon-Cloud-Sun:before {
  content: "\e786";
}
.icon-Cloud-Tablet:before {
  content: "\e787";
}
.icon-Cloud-Video:before {
  content: "\e788";
}
.icon-Cloud-Weather:before {
  content: "\e789";
}
.icon-Cloud:before {
  content: "\e78a";
}
.icon-Clouds-Weather:before {
  content: "\e78b";
}
.icon-Clouds:before {
  content: "\e78c";
}
.icon-Clown:before {
  content: "\e78d";
}
.icon-CMYK:before {
  content: "\e78e";
}
.icon-Coat:before {
  content: "\e78f";
}
.icon-Cocktail:before {
  content: "\e790";
}
.icon-Coconut:before {
  content: "\e791";
}
.icon-Code-Window:before {
  content: "\e792";
}
.icon-Coding:before {
  content: "\e793";
}
.icon-Coffee-2:before {
  content: "\e794";
}
.icon-Coffee-Bean:before {
  content: "\e795";
}
.icon-Coffee-Machine:before {
  content: "\e796";
}
.icon-Coffee-toGo:before {
  content: "\e797";
}
.icon-Coffee:before {
  content: "\e798";
}
.icon-Coffin:before {
  content: "\e799";
}
.icon-Coin:before {
  content: "\e79a";
}
.icon-Coins-2:before {
  content: "\e79b";
}
.icon-Coins-3:before {
  content: "\e79c";
}
.icon-Coins:before {
  content: "\e79d";
}
.icon-Colombia:before {
  content: "\e79e";
}
.icon-Colosseum:before {
  content: "\e79f";
}
.icon-Column-2:before {
  content: "\e7a0";
}
.icon-Column-3:before {
  content: "\e7a1";
}
.icon-Column:before {
  content: "\e7a2";
}
.icon-Comb-2:before {
  content: "\e7a3";
}
.icon-Comb:before {
  content: "\e7a4";
}
.icon-Communication-Tower:before {
  content: "\e7a5";
}
.icon-Communication-Tower2:before {
  content: "\e7a6";
}
.icon-Compass-2:before {
  content: "\e7a7";
}
.icon-Compass-3:before {
  content: "\e7a8";
}
.icon-Compass-4:before {
  content: "\e7a9";
}
.icon-Compass-Rose:before {
  content: "\e7aa";
}
.icon-Compass:before {
  content: "\e7ab";
}
.icon-Computer-2:before {
  content: "\e7ac";
}
.icon-Computer-3:before {
  content: "\e7ad";
}
.icon-Computer-Secure:before {
  content: "\e7ae";
}
.icon-Computer:before {
  content: "\e7af";
}
.icon-Conference:before {
  content: "\e7b0";
}
.icon-Confused:before {
  content: "\e7b1";
}
.icon-Conservation:before {
  content: "\e7b2";
}
.icon-Consulting:before {
  content: "\e7b3";
}
.icon-Contrast:before {
  content: "\e7b4";
}
.icon-Control-2:before {
  content: "\e7b5";
}
.icon-Control:before {
  content: "\e7b6";
}
.icon-Cookie-Man:before {
  content: "\e7b7";
}
.icon-Cookies:before {
  content: "\e7b8";
}
.icon-Cool-Guy:before {
  content: "\e7b9";
}
.icon-Cool:before {
  content: "\e7ba";
}
.icon-Copyright:before {
  content: "\e7bb";
}
.icon-Costume:before {
  content: "\e7bc";
}
.icon-Couple-Sign:before {
  content: "\e7bd";
}
.icon-Cow:before {
  content: "\e7be";
}
.icon-CPU:before {
  content: "\e7bf";
}
.icon-Crane:before {
  content: "\e7c0";
}
.icon-Cranium:before {
  content: "\e7c1";
}
.icon-Credit-Card:before {
  content: "\e7c2";
}
.icon-Credit-Card2:before {
  content: "\e7c3";
}
.icon-Credit-Card3:before {
  content: "\e7c4";
}
.icon-Cricket:before {
  content: "\e7c5";
}
.icon-Criminal:before {
  content: "\e7c6";
}
.icon-Croissant:before {
  content: "\e7c7";
}
.icon-Crop-2:before {
  content: "\e7c8";
}
.icon-Crop-3:before {
  content: "\e7c9";
}
.icon-Crown-2:before {
  content: "\e7ca";
}
.icon-Crown:before {
  content: "\e7cb";
}
.icon-Crying:before {
  content: "\e7cc";
}
.icon-Cube-Molecule:before {
  content: "\e7cd";
}
.icon-Cube-Molecule2:before {
  content: "\e7ce";
}
.icon-Cupcake:before {
  content: "\e7cf";
}
.icon-Cursor-Click:before {
  content: "\e7d0";
}
.icon-Cursor-Click2:before {
  content: "\e7d1";
}
.icon-Cursor-Move:before {
  content: "\e7d2";
}
.icon-Cursor-Move2:before {
  content: "\e7d3";
}
.icon-Cursor-Select:before {
  content: "\e7d4";
}
.icon-Cursor:before {
  content: "\e7d5";
}
.icon-D-Eyeglasses:before {
  content: "\e7d6";
}
.icon-D-Eyeglasses2:before {
  content: "\e7d7";
}
.icon-Dam:before {
  content: "\e7d8";
}
.icon-Danemark:before {
  content: "\e7d9";
}
.icon-Danger-2:before {
  content: "\e7da";
}
.icon-Danger:before {
  content: "\e7db";
}
.icon-Dashboard:before {
  content: "\e7dc";
}
.icon-Data-Backup:before {
  content: "\e7dd";
}
.icon-Data-Block:before {
  content: "\e7de";
}
.icon-Data-Center:before {
  content: "\e7df";
}
.icon-Data-Clock:before {
  content: "\e7e0";
}
.icon-Data-Cloud:before {
  content: "\e7e1";
}
.icon-Data-Compress:before {
  content: "\e7e2";
}
.icon-Data-Copy:before {
  content: "\e7e3";
}
.icon-Data-Download:before {
  content: "\e7e4";
}
.icon-Data-Financial:before {
  content: "\e7e5";
}
.icon-Data-Key:before {
  content: "\e7e6";
}
.icon-Data-Lock:before {
  content: "\e7e7";
}
.icon-Data-Network:before {
  content: "\e7e8";
}
.icon-Data-Password:before {
  content: "\e7e9";
}
.icon-Data-Power:before {
  content: "\e7ea";
}
.icon-Data-Refresh:before {
  content: "\e7eb";
}
.icon-Data-Save:before {
  content: "\e7ec";
}
.icon-Data-Search:before {
  content: "\e7ed";
}
.icon-Data-Security:before {
  content: "\e7ee";
}
.icon-Data-Settings:before {
  content: "\e7ef";
}
.icon-Data-Sharing:before {
  content: "\e7f0";
}
.icon-Data-Shield:before {
  content: "\e7f1";
}
.icon-Data-Signal:before {
  content: "\e7f2";
}
.icon-Data-Storage:before {
  content: "\e7f3";
}
.icon-Data-Stream:before {
  content: "\e7f4";
}
.icon-Data-Transfer:before {
  content: "\e7f5";
}
.icon-Data-Unlock:before {
  content: "\e7f6";
}
.icon-Data-Upload:before {
  content: "\e7f7";
}
.icon-Data-Yes:before {
  content: "\e7f8";
}
.icon-Data:before {
  content: "\e7f9";
}
.icon-David-Star:before {
  content: "\e7fa";
}
.icon-Daylight:before {
  content: "\e7fb";
}
.icon-Death:before {
  content: "\e7fc";
}
.icon-Debian:before {
  content: "\e7fd";
}
.icon-Dec:before {
  content: "\e7fe";
}
.icon-Decrase-Inedit:before {
  content: "\e7ff";
}
.icon-Deer-2:before {
  content: "\e800";
}
.icon-Deer:before {
  content: "\e801";
}
.icon-Delete-File:before {
  content: "\e802";
}
.icon-Delete-Window:before {
  content: "\e803";
}
.icon-Delicious:before {
  content: "\e804";
}
.icon-Depression:before {
  content: "\e805";
}
.icon-Deviantart:before {
  content: "\e806";
}
.icon-Device-SyncwithCloud:before {
  content: "\e807";
}
.icon-Diamond:before {
  content: "\e808";
}
.icon-Dice-2:before {
  content: "\e809";
}
.icon-Dice:before {
  content: "\e80a";
}
.icon-Digg:before {
  content: "\e80b";
}
.icon-Digital-Drawing:before {
  content: "\e80c";
}
.icon-Diigo:before {
  content: "\e80d";
}
.icon-Dinosaur:before {
  content: "\e80e";
}
.icon-Diploma-2:before {
  content: "\e80f";
}
.icon-Diploma:before {
  content: "\e810";
}
.icon-Direction-East:before {
  content: "\e811";
}
.icon-Direction-North:before {
  content: "\e812";
}
.icon-Direction-South:before {
  content: "\e813";
}
.icon-Direction-West:before {
  content: "\e814";
}
.icon-Director:before {
  content: "\e815";
}
.icon-Disk:before {
  content: "\e816";
}
.icon-Dj:before {
  content: "\e817";
}
.icon-DNA-2:before {
  content: "\e818";
}
.icon-DNA-Helix:before {
  content: "\e819";
}
.icon-DNA:before {
  content: "\e81a";
}
.icon-Doctor:before {
  content: "\e81b";
}
.icon-Dog:before {
  content: "\e81c";
}
.icon-Dollar-Sign:before {
  content: "\e81d";
}
.icon-Dollar-Sign2:before {
  content: "\e81e";
}
.icon-Dollar:before {
  content: "\e81f";
}
.icon-Dolphin:before {
  content: "\e820";
}
.icon-Domino:before {
  content: "\e821";
}
.icon-Door-Hanger:before {
  content: "\e822";
}
.icon-Door:before {
  content: "\e823";
}
.icon-Doplr:before {
  content: "\e824";
}
.icon-Double-Circle:before {
  content: "\e825";
}
.icon-Double-Tap:before {
  content: "\e826";
}
.icon-Doughnut:before {
  content: "\e827";
}
.icon-Dove:before {
  content: "\e828";
}
.icon-Down-2:before {
  content: "\e829";
}
.icon-Down-3:before {
  content: "\e82a";
}
.icon-Down-4:before {
  content: "\e82b";
}
.icon-Down:before {
  content: "\e82c";
}
.icon-Download-2:before {
  content: "\e82d";
}
.icon-Download-fromCloud:before {
  content: "\e82e";
}
.icon-Download-Window:before {
  content: "\e82f";
}
.icon-Download:before {
  content: "\e830";
}
.icon-Downward:before {
  content: "\e831";
}
.icon-Drag-Down:before {
  content: "\e832";
}
.icon-Drag-Left:before {
  content: "\e833";
}
.icon-Drag-Right:before {
  content: "\e834";
}
.icon-Drag-Up:before {
  content: "\e835";
}
.icon-Drag:before {
  content: "\e836";
}
.icon-Dress:before {
  content: "\e837";
}
.icon-Drill-2:before {
  content: "\e838";
}
.icon-Drill:before {
  content: "\e839";
}
.icon-Drop:before {
  content: "\e83a";
}
.icon-Dropbox:before {
  content: "\e83b";
}
.icon-Drum:before {
  content: "\e83c";
}
.icon-Dry:before {
  content: "\e83d";
}
.icon-Duck:before {
  content: "\e83e";
}
.icon-Dumbbell:before {
  content: "\e83f";
}
.icon-Duplicate-Layer:before {
  content: "\e840";
}
.icon-Duplicate-Window:before {
  content: "\e841";
}
.icon-DVD:before {
  content: "\e842";
}
.icon-Eagle:before {
  content: "\e843";
}
.icon-Ear:before {
  content: "\e844";
}
.icon-Earphones-2:before {
  content: "\e845";
}
.icon-Earphones:before {
  content: "\e846";
}
.icon-Eci-Icon:before {
  content: "\e847";
}
.icon-Edit-Map:before {
  content: "\e848";
}
.icon-Edit:before {
  content: "\e849";
}
.icon-Eggs:before {
  content: "\e84a";
}
.icon-Egypt:before {
  content: "\e84b";
}
.icon-Eifel-Tower:before {
  content: "\e84c";
}
.icon-eject-2:before {
  content: "\e84d";
}
.icon-Eject:before {
  content: "\e84e";
}
.icon-El-Castillo:before {
  content: "\e84f";
}
.icon-Elbow:before {
  content: "\e850";
}
.icon-Electric-Guitar:before {
  content: "\e851";
}
.icon-Electricity:before {
  content: "\e852";
}
.icon-Elephant:before {
  content: "\e853";
}
.icon-Email:before {
  content: "\e854";
}
.icon-Embassy:before {
  content: "\e855";
}
.icon-Empire-StateBuilding:before {
  content: "\e856";
}
.icon-Empty-Box:before {
  content: "\e857";
}
.icon-End2:before {
  content: "\e858";
}
.icon-End-2:before {
  content: "\e859";
}
.icon-End:before {
  content: "\e85a";
}
.icon-Endways:before {
  content: "\e85b";
}
.icon-Engineering:before {
  content: "\e85c";
}
.icon-Envelope-2:before {
  content: "\e85d";
}
.icon-Envelope:before {
  content: "\e85e";
}
.icon-Environmental-2:before {
  content: "\e85f";
}
.icon-Environmental-3:before {
  content: "\e860";
}
.icon-Environmental:before {
  content: "\e861";
}
.icon-Equalizer:before {
  content: "\e862";
}
.icon-Eraser-2:before {
  content: "\e863";
}
.icon-Eraser-3:before {
  content: "\e864";
}
.icon-Eraser:before {
  content: "\e865";
}
.icon-Error-404Window:before {
  content: "\e866";
}
.icon-Euro-Sign:before {
  content: "\e867";
}
.icon-Euro-Sign2:before {
  content: "\e868";
}
.icon-Euro:before {
  content: "\e869";
}
.icon-Evernote:before {
  content: "\e86a";
}
.icon-Evil:before {
  content: "\e86b";
}
.icon-Explode:before {
  content: "\e86c";
}
.icon-Eye-2:before {
  content: "\e86d";
}
.icon-Eye-Blind:before {
  content: "\e86e";
}
.icon-Eye-Invisible:before {
  content: "\e86f";
}
.icon-Eye-Scan:before {
  content: "\e870";
}
.icon-Eye-Visible:before {
  content: "\e871";
}
.icon-Eye:before {
  content: "\e872";
}
.icon-Eyebrow-2:before {
  content: "\e873";
}
.icon-Eyebrow-3:before {
  content: "\e874";
}
.icon-Eyebrow:before {
  content: "\e875";
}
.icon-Eyeglasses-Smiley:before {
  content: "\e876";
}
.icon-Eyeglasses-Smiley2:before {
  content: "\e877";
}
.icon-Face-Style:before {
  content: "\e878";
}
.icon-Face-Style2:before {
  content: "\e879";
}
.icon-Face-Style3:before {
  content: "\e87a";
}
.icon-Face-Style4:before {
  content: "\e87b";
}
.icon-Face-Style5:before {
  content: "\e87c";
}
.icon-Face-Style6:before {
  content: "\e87d";
}
.icon-Facebook-2:before {
  content: "\e87e";
}
.icon-Facebook:before {
  content: "\e87f";
}
.icon-Factory-2:before {
  content: "\e880";
}
.icon-Factory:before {
  content: "\e881";
}
.icon-Fahrenheit:before {
  content: "\e882";
}
.icon-Family-Sign:before {
  content: "\e883";
}
.icon-Fan:before {
  content: "\e884";
}
.icon-Farmer:before {
  content: "\e885";
}
.icon-Fashion:before {
  content: "\e886";
}
.icon-Favorite-Window:before {
  content: "\e887";
}
.icon-Fax:before {
  content: "\e888";
}
.icon-Feather:before {
  content: "\e889";
}
.icon-Feedburner:before {
  content: "\e88a";
}
.icon-Female-2:before {
  content: "\e88b";
}
.icon-Female-Sign:before {
  content: "\e88c";
}
.icon-Female:before {
  content: "\e88d";
}
.icon-File-Block:before {
  content: "\e88e";
}
.icon-File-Bookmark:before {
  content: "\e88f";
}
.icon-File-Chart:before {
  content: "\e890";
}
.icon-File-Clipboard:before {
  content: "\e891";
}
.icon-File-ClipboardFileText:before {
  content: "\e892";
}
.icon-File-ClipboardTextImage:before {
  content: "\e893";
}
.icon-File-Cloud:before {
  content: "\e894";
}
.icon-File-Copy:before {
  content: "\e895";
}
.icon-File-Copy2:before {
  content: "\e896";
}
.icon-File-CSV:before {
  content: "\e897";
}
.icon-File-Download:before {
  content: "\e898";
}
.icon-File-Edit:before {
  content: "\e899";
}
.icon-File-Excel:before {
  content: "\e89a";
}
.icon-File-Favorite:before {
  content: "\e89b";
}
.icon-File-Fire:before {
  content: "\e89c";
}
.icon-File-Graph:before {
  content: "\e89d";
}
.icon-File-Hide:before {
  content: "\e89e";
}
.icon-File-Horizontal:before {
  content: "\e89f";
}
.icon-File-HorizontalText:before {
  content: "\e8a0";
}
.icon-File-HTML:before {
  content: "\e8a1";
}
.icon-File-JPG:before {
  content: "\e8a2";
}
.icon-File-Link:before {
  content: "\e8a3";
}
.icon-File-Loading:before {
  content: "\e8a4";
}
.icon-File-Lock:before {
  content: "\e8a5";
}
.icon-File-Love:before {
  content: "\e8a6";
}
.icon-File-Music:before {
  content: "\e8a7";
}
.icon-File-Network:before {
  content: "\e8a8";
}
.icon-File-Pictures:before {
  content: "\e8a9";
}
.icon-File-Pie:before {
  content: "\e8aa";
}
.icon-File-Presentation:before {
  content: "\e8ab";
}
.icon-File-Refresh:before {
  content: "\e8ac";
}
.icon-File-Search:before {
  content: "\e8ad";
}
.icon-File-Settings:before {
  content: "\e8ae";
}
.icon-File-Share:before {
  content: "\e8af";
}
.icon-File-TextImage:before {
  content: "\e8b0";
}
.icon-File-Trash:before {
  content: "\e8b1";
}
.icon-File-TXT:before {
  content: "\e8b2";
}
.icon-File-Upload:before {
  content: "\e8b3";
}
.icon-File-Video:before {
  content: "\e8b4";
}
.icon-File-Word:before {
  content: "\e8b5";
}
.icon-File-Zip:before {
  content: "\e8b6";
}
.icon-File:before {
  content: "\e8b7";
}
.icon-Files:before {
  content: "\e8b8";
}
.icon-Film-Board:before {
  content: "\e8b9";
}
.icon-Film-Cartridge:before {
  content: "\e8ba";
}
.icon-Film-Strip:before {
  content: "\e8bb";
}
.icon-Film-Video:before {
  content: "\e8bc";
}
.icon-Film:before {
  content: "\e8bd";
}
.icon-Filter-2:before {
  content: "\e8be";
}
.icon-Filter:before {
  content: "\e8bf";
}
.icon-Financial:before {
  content: "\e8c0";
}
.icon-Find-User:before {
  content: "\e8c1";
}
.icon-Finger-DragFourSides:before {
  content: "\e8c2";
}
.icon-Finger-DragTwoSides:before {
  content: "\e8c3";
}
.icon-Finger-Print:before {
  content: "\e8c4";
}
.icon-Finger:before {
  content: "\e8c5";
}
.icon-Fingerprint-2:before {
  content: "\e8c6";
}
.icon-Fingerprint:before {
  content: "\e8c7";
}
.icon-Fire-Flame:before {
  content: "\e8c8";
}
.icon-Fire-Flame2:before {
  content: "\e8c9";
}
.icon-Fire-Hydrant:before {
  content: "\e8ca";
}
.icon-Fire-Staion:before {
  content: "\e8cb";
}
.icon-Firefox:before {
  content: "\e8cc";
}
.icon-Firewall:before {
  content: "\e8cd";
}
.icon-First-Aid:before {
  content: "\e8ce";
}
.icon-First:before {
  content: "\e8cf";
}
.icon-Fish-Food:before {
  content: "\e8d0";
}
.icon-Fish:before {
  content: "\e8d1";
}
.icon-Fit-To:before {
  content: "\e8d2";
}
.icon-Fit-To2:before {
  content: "\e8d3";
}
.icon-Five-Fingers:before {
  content: "\e8d4";
}
.icon-Five-FingersDrag:before {
  content: "\e8d5";
}
.icon-Five-FingersDrag2:before {
  content: "\e8d6";
}
.icon-Five-FingersTouch:before {
  content: "\e8d7";
}
.icon-Flag-2:before {
  content: "\e8d8";
}
.icon-Flag-3:before {
  content: "\e8d9";
}
.icon-Flag-4:before {
  content: "\e8da";
}
.icon-Flag-5:before {
  content: "\e8db";
}
.icon-Flag-6:before {
  content: "\e8dc";
}
.icon-Flag:before {
  content: "\e8dd";
}
.icon-Flamingo:before {
  content: "\e8de";
}
.icon-Flash-2:before {
  content: "\e8df";
}
.icon-Flash-Video:before {
  content: "\e8e0";
}
.icon-Flash:before {
  content: "\e8e1";
}
.icon-Flashlight:before {
  content: "\e8e2";
}
.icon-Flask-2:before {
  content: "\e8e3";
}
.icon-Flask:before {
  content: "\e8e4";
}
.icon-Flick:before {
  content: "\e8e5";
}
.icon-Flickr:before {
  content: "\e8e6";
}
.icon-Flowerpot:before {
  content: "\e8e7";
}
.icon-Fluorescent:before {
  content: "\e8e8";
}
.icon-Fog-Day:before {
  content: "\e8e9";
}
.icon-Fog-Night:before {
  content: "\e8ea";
}
.icon-Folder-Add:before {
  content: "\e8eb";
}
.icon-Folder-Archive:before {
  content: "\e8ec";
}
.icon-Folder-Binder:before {
  content: "\e8ed";
}
.icon-Folder-Binder2:before {
  content: "\e8ee";
}
.icon-Folder-Block:before {
  content: "\e8ef";
}
.icon-Folder-Bookmark:before {
  content: "\e8f0";
}
.icon-Folder-Close:before {
  content: "\e8f1";
}
.icon-Folder-Cloud:before {
  content: "\e8f2";
}
.icon-Folder-Delete:before {
  content: "\e8f3";
}
.icon-Folder-Download:before {
  content: "\e8f4";
}
.icon-Folder-Edit:before {
  content: "\e8f5";
}
.icon-Folder-Favorite:before {
  content: "\e8f6";
}
.icon-Folder-Fire:before {
  content: "\e8f7";
}
.icon-Folder-Hide:before {
  content: "\e8f8";
}
.icon-Folder-Link:before {
  content: "\e8f9";
}
.icon-Folder-Loading:before {
  content: "\e8fa";
}
.icon-Folder-Lock:before {
  content: "\e8fb";
}
.icon-Folder-Love:before {
  content: "\e8fc";
}
.icon-Folder-Music:before {
  content: "\e8fd";
}
.icon-Folder-Network:before {
  content: "\e8fe";
}
.icon-Folder-Open:before {
  content: "\e8ff";
}
.icon-Folder-Open2:before {
  content: "\e900";
}
.icon-Folder-Organizing:before {
  content: "\e901";
}
.icon-Folder-Pictures:before {
  content: "\e902";
}
.icon-Folder-Refresh:before {
  content: "\e903";
}
.icon-Folder-Remove-:before {
  content: "\e904";
}
.icon-Folder-Search:before {
  content: "\e905";
}
.icon-Folder-Settings:before {
  content: "\e906";
}
.icon-Folder-Share:before {
  content: "\e907";
}
.icon-Folder-Trash:before {
  content: "\e908";
}
.icon-Folder-Upload:before {
  content: "\e909";
}
.icon-Folder-Video:before {
  content: "\e90a";
}
.icon-Folder-WithDocument:before {
  content: "\e90b";
}
.icon-Folder-Zip:before {
  content: "\e90c";
}
.icon-Folder:before {
  content: "\e90d";
}
.icon-Folders:before {
  content: "\e90e";
}
.icon-Font-Color:before {
  content: "\e90f";
}
.icon-Font-Name:before {
  content: "\e910";
}
.icon-Font-Size:before {
  content: "\e911";
}
.icon-Font-Style:before {
  content: "\e912";
}
.icon-Font-StyleSubscript:before {
  content: "\e913";
}
.icon-Font-StyleSuperscript:before {
  content: "\e914";
}
.icon-Font-Window:before {
  content: "\e915";
}
.icon-Foot-2:before {
  content: "\e916";
}
.icon-Foot:before {
  content: "\e917";
}
.icon-Football-2:before {
  content: "\e918";
}
.icon-Football:before {
  content: "\e919";
}
.icon-Footprint-2:before {
  content: "\e91a";
}
.icon-Footprint-3:before {
  content: "\e91b";
}
.icon-Footprint:before {
  content: "\e91c";
}
.icon-Forest:before {
  content: "\e91d";
}
.icon-Fork:before {
  content: "\e91e";
}
.icon-Formspring:before {
  content: "\e91f";
}
.icon-Formula:before {
  content: "\e920";
}
.icon-Forsquare:before {
  content: "\e921";
}
.icon-Forward:before {
  content: "\e922";
}
.icon-Fountain-Pen:before {
  content: "\e923";
}
.icon-Four-Fingers:before {
  content: "\e924";
}
.icon-Four-FingersDrag:before {
  content: "\e925";
}
.icon-Four-FingersDrag2:before {
  content: "\e926";
}
.icon-Four-FingersTouch:before {
  content: "\e927";
}
.icon-Fox:before {
  content: "\e928";
}
.icon-Frankenstein:before {
  content: "\e929";
}
.icon-French-Fries:before {
  content: "\e92a";
}
.icon-Friendfeed:before {
  content: "\e92b";
}
.icon-Friendster:before {
  content: "\e92c";
}
.icon-Frog:before {
  content: "\e92d";
}
.icon-Fruits:before {
  content: "\e92e";
}
.icon-Fuel:before {
  content: "\e92f";
}
.icon-Full-Bag:before {
  content: "\e930";
}
.icon-Full-Basket:before {
  content: "\e931";
}
.icon-Full-Cart:before {
  content: "\e932";
}
.icon-Full-Moon:before {
  content: "\e933";
}
.icon-Full-Screen:before {
  content: "\e934";
}
.icon-Full-Screen2:before {
  content: "\e935";
}
.icon-Full-View:before {
  content: "\e936";
}
.icon-Full-View2:before {
  content: "\e937";
}
.icon-Full-ViewWindow:before {
  content: "\e938";
}
.icon-Function:before {
  content: "\e939";
}
.icon-Funky:before {
  content: "\e93a";
}
.icon-Funny-Bicycle:before {
  content: "\e93b";
}
.icon-Furl:before {
  content: "\e93c";
}
.icon-Gamepad-2:before {
  content: "\e93d";
}
.icon-Gamepad:before {
  content: "\e93e";
}
.icon-Gas-Pump:before {
  content: "\e93f";
}
.icon-Gaugage-2:before {
  content: "\e940";
}
.icon-Gaugage:before {
  content: "\e941";
}
.icon-Gay:before {
  content: "\e942";
}
.icon-Gear-2:before {
  content: "\e943";
}
.icon-Gear:before {
  content: "\e944";
}
.icon-Gears-2:before {
  content: "\e945";
}
.icon-Gears:before {
  content: "\e946";
}
.icon-Geek-2:before {
  content: "\e947";
}
.icon-Geek:before {
  content: "\e948";
}
.icon-Gemini-2:before {
  content: "\e949";
}
.icon-Gemini:before {
  content: "\e94a";
}
.icon-Genius:before {
  content: "\e94b";
}
.icon-Gentleman:before {
  content: "\e94c";
}
.icon-Geo--:before {
  content: "\e94d";
}
.icon-Geo-:before {
  content: "\e94e";
}
.icon-Geo-Close:before {
  content: "\e94f";
}
.icon-Geo-Love:before {
  content: "\e950";
}
.icon-Geo-Number:before {
  content: "\e951";
}
.icon-Geo-Star:before {
  content: "\e952";
}
.icon-Geo:before {
  content: "\e953";
}
.icon-Geo2--:before {
  content: "\e954";
}
.icon-Geo2-:before {
  content: "\e955";
}
.icon-Geo2-Close:before {
  content: "\e956";
}
.icon-Geo2-Love:before {
  content: "\e957";
}
.icon-Geo2-Number:before {
  content: "\e958";
}
.icon-Geo2-Star:before {
  content: "\e959";
}
.icon-Geo2:before {
  content: "\e95a";
}
.icon-Geo3--:before {
  content: "\e95b";
}
.icon-Geo3-:before {
  content: "\e95c";
}
.icon-Geo3-Close:before {
  content: "\e95d";
}
.icon-Geo3-Love:before {
  content: "\e95e";
}
.icon-Geo3-Number:before {
  content: "\e95f";
}
.icon-Geo3-Star:before {
  content: "\e960";
}
.icon-Geo3:before {
  content: "\e961";
}
.icon-Gey:before {
  content: "\e962";
}
.icon-Gift-Box:before {
  content: "\e963";
}
.icon-Giraffe:before {
  content: "\e964";
}
.icon-Girl:before {
  content: "\e965";
}
.icon-Glass-Water:before {
  content: "\e966";
}
.icon-Glasses-2:before {
  content: "\e967";
}
.icon-Glasses-3:before {
  content: "\e968";
}
.icon-Glasses:before {
  content: "\e969";
}
.icon-Global-Position:before {
  content: "\e96a";
}
.icon-Globe-2:before {
  content: "\e96b";
}
.icon-Globe:before {
  content: "\e96c";
}
.icon-Gloves:before {
  content: "\e96d";
}
.icon-Go-Bottom:before {
  content: "\e96e";
}
.icon-Go-Top:before {
  content: "\e96f";
}
.icon-Goggles:before {
  content: "\e970";
}
.icon-Golf-2:before {
  content: "\e971";
}
.icon-Golf:before {
  content: "\e972";
}
.icon-Google-Buzz:before {
  content: "\e973";
}
.icon-Google-Drive:before {
  content: "\e974";
}
.icon-Google-Play:before {
  content: "\e975";
}
.icon-Google-Plus:before {
  content: "\e976";
}
.icon-Google:before {
  content: "\e977";
}
.icon-Gopro:before {
  content: "\e978";
}
.icon-Gorilla:before {
  content: "\e979";
}
.icon-Gowalla:before {
  content: "\e97a";
}
.icon-Grave:before {
  content: "\e97b";
}
.icon-Graveyard:before {
  content: "\e97c";
}
.icon-Greece:before {
  content: "\e97d";
}
.icon-Green-Energy:before {
  content: "\e97e";
}
.icon-Green-House:before {
  content: "\e97f";
}
.icon-Guitar:before {
  content: "\e980";
}
.icon-Gun-2:before {
  content: "\e981";
}
.icon-Gun-3:before {
  content: "\e982";
}
.icon-Gun:before {
  content: "\e983";
}
.icon-Gymnastics:before {
  content: "\e984";
}
.icon-Hair-2:before {
  content: "\e985";
}
.icon-Hair-3:before {
  content: "\e986";
}
.icon-Hair-4:before {
  content: "\e987";
}
.icon-Hair:before {
  content: "\e988";
}
.icon-Half-Moon:before {
  content: "\e989";
}
.icon-Halloween-HalfMoon:before {
  content: "\e98a";
}
.icon-Halloween-Moon:before {
  content: "\e98b";
}
.icon-Hamburger:before {
  content: "\e98c";
}
.icon-Hammer:before {
  content: "\e98d";
}
.icon-Hand-Touch:before {
  content: "\e98e";
}
.icon-Hand-Touch2:before {
  content: "\e98f";
}
.icon-Hand-TouchSmartphone:before {
  content: "\e990";
}
.icon-Hand:before {
  content: "\e991";
}
.icon-Hands:before {
  content: "\e992";
}
.icon-Handshake:before {
  content: "\e993";
}
.icon-Hanger:before {
  content: "\e994";
}
.icon-Happy:before {
  content: "\e995";
}
.icon-Hat-2:before {
  content: "\e996";
}
.icon-Hat:before {
  content: "\e997";
}
.icon-Haunted-House:before {
  content: "\e998";
}
.icon-HD-Video:before {
  content: "\e999";
}
.icon-HD:before {
  content: "\e99a";
}
.icon-HDD:before {
  content: "\e99b";
}
.icon-Headphone:before {
  content: "\e99c";
}
.icon-Headphones:before {
  content: "\e99d";
}
.icon-Headset:before {
  content: "\e99e";
}
.icon-Heart-2:before {
  content: "\e99f";
}
.icon-Heart:before {
  content: "\e9a0";
}
.icon-Heels-2:before {
  content: "\e9a1";
}
.icon-Heels:before {
  content: "\e9a2";
}
.icon-Height-Window:before {
  content: "\e9a3";
}
.icon-Helicopter-2:before {
  content: "\e9a4";
}
.icon-Helicopter:before {
  content: "\e9a5";
}
.icon-Helix-2:before {
  content: "\e9a6";
}
.icon-Hello:before {
  content: "\e9a7";
}
.icon-Helmet-2:before {
  content: "\e9a8";
}
.icon-Helmet-3:before {
  content: "\e9a9";
}
.icon-Helmet:before {
  content: "\e9aa";
}
.icon-Hipo:before {
  content: "\e9ab";
}
.icon-Hipster-Glasses:before {
  content: "\e9ac";
}
.icon-Hipster-Glasses2:before {
  content: "\e9ad";
}
.icon-Hipster-Glasses3:before {
  content: "\e9ae";
}
.icon-Hipster-Headphones:before {
  content: "\e9af";
}
.icon-Hipster-Men:before {
  content: "\e9b0";
}
.icon-Hipster-Men2:before {
  content: "\e9b1";
}
.icon-Hipster-Men3:before {
  content: "\e9b2";
}
.icon-Hipster-Sunglasses:before {
  content: "\e9b3";
}
.icon-Hipster-Sunglasses2:before {
  content: "\e9b4";
}
.icon-Hipster-Sunglasses3:before {
  content: "\e9b5";
}
.icon-Hokey:before {
  content: "\e9b6";
}
.icon-Holly:before {
  content: "\e9b7";
}
.icon-Home-2:before {
  content: "\e9b8";
}
.icon-Home-3:before {
  content: "\e9b9";
}
.icon-Home-4:before {
  content: "\e9ba";
}
.icon-Home-5:before {
  content: "\e9bb";
}
.icon-Home-Window:before {
  content: "\e9bc";
}
.icon-Home:before {
  content: "\e9bd";
}
.icon-Homosexual:before {
  content: "\e9be";
}
.icon-Honey:before {
  content: "\e9bf";
}
.icon-Hong-Kong:before {
  content: "\e9c0";
}
.icon-Hoodie:before {
  content: "\e9c1";
}
.icon-Horror:before {
  content: "\e9c2";
}
.icon-Horse:before {
  content: "\e9c3";
}
.icon-Hospital-2:before {
  content: "\e9c4";
}
.icon-Hospital:before {
  content: "\e9c5";
}
.icon-Host:before {
  content: "\e9c6";
}
.icon-Hot-Dog:before {
  content: "\e9c7";
}
.icon-Hotel:before {
  content: "\e9c8";
}
.icon-Hour:before {
  content: "\e9c9";
}
.icon-Hub:before {
  content: "\e9ca";
}
.icon-Humor:before {
  content: "\e9cb";
}
.icon-Hurt:before {
  content: "\e9cc";
}
.icon-Ice-Cream:before {
  content: "\e9cd";
}
.icon-ICQ:before {
  content: "\e9ce";
}
.icon-ID-2:before {
  content: "\e9cf";
}
.icon-ID-3:before {
  content: "\e9d0";
}
.icon-ID-Card:before {
  content: "\e9d1";
}
.icon-Idea-2:before {
  content: "\e9d2";
}
.icon-Idea-3:before {
  content: "\e9d3";
}
.icon-Idea-4:before {
  content: "\e9d4";
}
.icon-Idea-5:before {
  content: "\e9d5";
}
.icon-Idea:before {
  content: "\e9d6";
}
.icon-Identification-Badge:before {
  content: "\e9d7";
}
.icon-ImDB:before {
  content: "\e9d8";
}
.icon-Inbox-Empty:before {
  content: "\e9d9";
}
.icon-Inbox-Forward:before {
  content: "\e9da";
}
.icon-Inbox-Full:before {
  content: "\e9db";
}
.icon-Inbox-Into:before {
  content: "\e9dc";
}
.icon-Inbox-Out:before {
  content: "\e9dd";
}
.icon-Inbox-Reply:before {
  content: "\e9de";
}
.icon-Inbox:before {
  content: "\e9df";
}
.icon-Increase-Inedit:before {
  content: "\e9e0";
}
.icon-Indent-FirstLine:before {
  content: "\e9e1";
}
.icon-Indent-LeftMargin:before {
  content: "\e9e2";
}
.icon-Indent-RightMargin:before {
  content: "\e9e3";
}
.icon-India:before {
  content: "\e9e4";
}
.icon-Info-Window:before {
  content: "\e9e5";
}
.icon-Information:before {
  content: "\e9e6";
}
.icon-Inifity:before {
  content: "\e9e7";
}
.icon-Instagram:before {
  content: "\e9e8";
}
.icon-Internet-2:before {
  content: "\e9e9";
}
.icon-Internet-Explorer:before {
  content: "\e9ea";
}
.icon-Internet-Smiley:before {
  content: "\e9eb";
}
.icon-Internet:before {
  content: "\e9ec";
}
.icon-iOS-Apple:before {
  content: "\e9ed";
}
.icon-Israel:before {
  content: "\e9ee";
}
.icon-Italic-Text:before {
  content: "\e9ef";
}
.icon-Jacket-2:before {
  content: "\e9f0";
}
.icon-Jacket:before {
  content: "\e9f1";
}
.icon-Jamaica:before {
  content: "\e9f2";
}
.icon-Japan:before {
  content: "\e9f3";
}
.icon-Japanese-Gate:before {
  content: "\e9f4";
}
.icon-Jeans:before {
  content: "\e9f5";
}
.icon-Jeep-2:before {
  content: "\e9f6";
}
.icon-Jeep:before {
  content: "\e9f7";
}
.icon-Jet:before {
  content: "\e9f8";
}
.icon-Joystick:before {
  content: "\e9f9";
}
.icon-Juice:before {
  content: "\e9fa";
}
.icon-Jump-Rope:before {
  content: "\e9fb";
}
.icon-Kangoroo:before {
  content: "\e9fc";
}
.icon-Kenya:before {
  content: "\e9fd";
}
.icon-Key-2:before {
  content: "\e9fe";
}
.icon-Key-3:before {
  content: "\e9ff";
}
.icon-Key-Lock:before {
  content: "\ea00";
}
.icon-Key:before {
  content: "\ea01";
}
.icon-Keyboard:before {
  content: "\ea02";
}
.icon-Keyboard3:before {
  content: "\ea03";
}
.icon-Keypad:before {
  content: "\ea04";
}
.icon-King-2:before {
  content: "\ea05";
}
.icon-King:before {
  content: "\ea06";
}
.icon-Kiss:before {
  content: "\ea07";
}
.icon-Knee:before {
  content: "\ea08";
}
.icon-Knife-2:before {
  content: "\ea09";
}
.icon-Knife:before {
  content: "\ea0a";
}
.icon-Knight:before {
  content: "\ea0b";
}
.icon-Koala:before {
  content: "\ea0c";
}
.icon-Korea:before {
  content: "\ea0d";
}
.icon-Lamp:before {
  content: "\ea0e";
}
.icon-Landscape-2:before {
  content: "\ea0f";
}
.icon-Landscape:before {
  content: "\ea10";
}
.icon-Lantern:before {
  content: "\ea11";
}
.icon-Laptop-2:before {
  content: "\ea12";
}
.icon-Laptop-3:before {
  content: "\ea13";
}
.icon-Laptop-Phone:before {
  content: "\ea14";
}
.icon-Laptop-Secure:before {
  content: "\ea15";
}
.icon-Laptop-Tablet:before {
  content: "\ea16";
}
.icon-Laptop:before {
  content: "\ea17";
}
.icon-Laser:before {
  content: "\ea18";
}
.icon-Last-FM:before {
  content: "\ea19";
}
.icon-Last:before {
  content: "\ea1a";
}
.icon-Laughing:before {
  content: "\ea1b";
}
.icon-Layer-1635:before {
  content: "\ea1c";
}
.icon-Layer-1646:before {
  content: "\ea1d";
}
.icon-Layer-Backward:before {
  content: "\ea1e";
}
.icon-Layer-Forward:before {
  content: "\ea1f";
}
.icon-Leafs-2:before {
  content: "\ea20";
}
.icon-Leafs:before {
  content: "\ea21";
}
.icon-Leaning-Tower:before {
  content: "\ea22";
}
.icon-Left--Right:before {
  content: "\ea23";
}
.icon-Left--Right3:before {
  content: "\ea24";
}
.icon-Left-2:before {
  content: "\ea25";
}
.icon-Left-3:before {
  content: "\ea26";
}
.icon-Left-4:before {
  content: "\ea27";
}
.icon-Left-ToRight:before {
  content: "\ea28";
}
.icon-Left:before {
  content: "\ea29";
}
.icon-Leg-2:before {
  content: "\ea2a";
}
.icon-Leg:before {
  content: "\ea2b";
}
.icon-Lego:before {
  content: "\ea2c";
}
.icon-Lemon:before {
  content: "\ea2d";
}
.icon-Len-2:before {
  content: "\ea2e";
}
.icon-Len-3:before {
  content: "\ea2f";
}
.icon-Len:before {
  content: "\ea30";
}
.icon-Leo-2:before {
  content: "\ea31";
}
.icon-Leo:before {
  content: "\ea32";
}
.icon-Leopard:before {
  content: "\ea33";
}
.icon-Lesbian:before {
  content: "\ea34";
}
.icon-Lesbians:before {
  content: "\ea35";
}
.icon-Letter-Close:before {
  content: "\ea36";
}
.icon-Letter-Open:before {
  content: "\ea37";
}
.icon-Letter-Sent:before {
  content: "\ea38";
}
.icon-Libra-2:before {
  content: "\ea39";
}
.icon-Libra:before {
  content: "\ea3a";
}
.icon-Library-2:before {
  content: "\ea3b";
}
.icon-Library:before {
  content: "\ea3c";
}
.icon-Life-Jacket:before {
  content: "\ea3d";
}
.icon-Life-Safer:before {
  content: "\ea3e";
}
.icon-Light-Bulb:before {
  content: "\ea3f";
}
.icon-Light-Bulb2:before {
  content: "\ea40";
}
.icon-Light-BulbLeaf:before {
  content: "\ea41";
}
.icon-Lighthouse:before {
  content: "\ea42";
}
.icon-Like-2:before {
  content: "\ea43";
}
.icon-Like:before {
  content: "\ea44";
}
.icon-Line-Chart:before {
  content: "\ea45";
}
.icon-Line-Chart2:before {
  content: "\ea46";
}
.icon-Line-Chart3:before {
  content: "\ea47";
}
.icon-Line-Chart4:before {
  content: "\ea48";
}
.icon-Line-Spacing:before {
  content: "\ea49";
}
.icon-Line-SpacingText:before {
  content: "\ea4a";
}
.icon-Link-2:before {
  content: "\ea4b";
}
.icon-Link:before {
  content: "\ea4c";
}
.icon-Linkedin-2:before {
  content: "\ea4d";
}
.icon-Linkedin:before {
  content: "\ea4e";
}
.icon-Linux:before {
  content: "\ea4f";
}
.icon-Lion:before {
  content: "\ea50";
}
.icon-Livejournal:before {
  content: "\ea51";
}
.icon-Loading-2:before {
  content: "\ea52";
}
.icon-Loading-3:before {
  content: "\ea53";
}
.icon-Loading-Window:before {
  content: "\ea54";
}
.icon-Loading:before {
  content: "\ea55";
}
.icon-Location-2:before {
  content: "\ea56";
}
.icon-Location:before {
  content: "\ea57";
}
.icon-Lock-2:before {
  content: "\ea58";
}
.icon-Lock-3:before {
  content: "\ea59";
}
.icon-Lock-User:before {
  content: "\ea5a";
}
.icon-Lock-Window:before {
  content: "\ea5b";
}
.icon-Lock:before {
  content: "\ea5c";
}
.icon-Lollipop-2:before {
  content: "\ea5d";
}
.icon-Lollipop-3:before {
  content: "\ea5e";
}
.icon-Lollipop:before {
  content: "\ea5f";
}
.icon-Loop:before {
  content: "\ea60";
}
.icon-Loud:before {
  content: "\ea61";
}
.icon-Loudspeaker:before {
  content: "\ea62";
}
.icon-Love-2:before {
  content: "\ea63";
}
.icon-Love-User:before {
  content: "\ea64";
}
.icon-Love-Window:before {
  content: "\ea65";
}
.icon-Love:before {
  content: "\ea66";
}
.icon-Lowercase-Text:before {
  content: "\ea67";
}
.icon-Luggafe-Front:before {
  content: "\ea68";
}
.icon-Luggage-2:before {
  content: "\ea69";
}
.icon-Macro:before {
  content: "\ea6a";
}
.icon-Magic-Wand:before {
  content: "\ea6b";
}
.icon-Magnet:before {
  content: "\ea6c";
}
.icon-Magnifi-Glass-:before {
  content: "\ea6d";
}
.icon-Magnifi-Glass:before {
  content: "\ea6e";
}
.icon-Magnifi-Glass2:before {
  content: "\ea6f";
}
.icon-Mail-2:before {
  content: "\ea70";
}
.icon-Mail-3:before {
  content: "\ea71";
}
.icon-Mail-Add:before {
  content: "\ea72";
}
.icon-Mail-Attachement:before {
  content: "\ea73";
}
.icon-Mail-Block:before {
  content: "\ea74";
}
.icon-Mail-Delete:before {
  content: "\ea75";
}
.icon-Mail-Favorite:before {
  content: "\ea76";
}
.icon-Mail-Forward:before {
  content: "\ea77";
}
.icon-Mail-Gallery:before {
  content: "\ea78";
}
.icon-Mail-Inbox:before {
  content: "\ea79";
}
.icon-Mail-Link:before {
  content: "\ea7a";
}
.icon-Mail-Lock:before {
  content: "\ea7b";
}
.icon-Mail-Love:before {
  content: "\ea7c";
}
.icon-Mail-Money:before {
  content: "\ea7d";
}
.icon-Mail-Open:before {
  content: "\ea7e";
}
.icon-Mail-Outbox:before {
  content: "\ea7f";
}
.icon-Mail-Password:before {
  content: "\ea80";
}
.icon-Mail-Photo:before {
  content: "\ea81";
}
.icon-Mail-Read:before {
  content: "\ea82";
}
.icon-Mail-Removex:before {
  content: "\ea83";
}
.icon-Mail-Reply:before {
  content: "\ea84";
}
.icon-Mail-ReplyAll:before {
  content: "\ea85";
}
.icon-Mail-Search:before {
  content: "\ea86";
}
.icon-Mail-Send:before {
  content: "\ea87";
}
.icon-Mail-Settings:before {
  content: "\ea88";
}
.icon-Mail-Unread:before {
  content: "\ea89";
}
.icon-Mail-Video:before {
  content: "\ea8a";
}
.icon-Mail-withAtSign:before {
  content: "\ea8b";
}
.icon-Mail-WithCursors:before {
  content: "\ea8c";
}
.icon-Mail:before {
  content: "\ea8d";
}
.icon-Mailbox-Empty:before {
  content: "\ea8e";
}
.icon-Mailbox-Full:before {
  content: "\ea8f";
}
.icon-Male-2:before {
  content: "\ea90";
}
.icon-Male-Sign:before {
  content: "\ea91";
}
.icon-Male:before {
  content: "\ea92";
}
.icon-MaleFemale:before {
  content: "\ea93";
}
.icon-Man-Sign:before {
  content: "\ea94";
}
.icon-Management:before {
  content: "\ea95";
}
.icon-Mans-Underwear:before {
  content: "\ea96";
}
.icon-Mans-Underwear2:before {
  content: "\ea97";
}
.icon-Map-Marker:before {
  content: "\ea98";
}
.icon-Map-Marker2:before {
  content: "\ea99";
}
.icon-Map-Marker3:before {
  content: "\ea9a";
}
.icon-Map:before {
  content: "\ea9b";
}
.icon-Map2:before {
  content: "\ea9c";
}
.icon-Marker-2:before {
  content: "\ea9d";
}
.icon-Marker-3:before {
  content: "\ea9e";
}
.icon-Marker:before {
  content: "\ea9f";
}
.icon-Martini-Glass:before {
  content: "\eaa0";
}
.icon-Mask:before {
  content: "\eaa1";
}
.icon-Master-Card:before {
  content: "\eaa2";
}
.icon-Maximize-Window:before {
  content: "\eaa3";
}
.icon-Maximize:before {
  content: "\eaa4";
}
.icon-Medal-2:before {
  content: "\eaa5";
}
.icon-Medal-3:before {
  content: "\eaa6";
}
.icon-Medal:before {
  content: "\eaa7";
}
.icon-Medical-Sign:before {
  content: "\eaa8";
}
.icon-Medicine-2:before {
  content: "\eaa9";
}
.icon-Medicine-3:before {
  content: "\eaaa";
}
.icon-Medicine:before {
  content: "\eaab";
}
.icon-Megaphone:before {
  content: "\eaac";
}
.icon-Memory-Card:before {
  content: "\eaad";
}
.icon-Memory-Card2:before {
  content: "\eaae";
}
.icon-Memory-Card3:before {
  content: "\eaaf";
}
.icon-Men:before {
  content: "\eab0";
}
.icon-Menorah:before {
  content: "\eab1";
}
.icon-Mens:before {
  content: "\eab2";
}
.icon-Metacafe:before {
  content: "\eab3";
}
.icon-Mexico:before {
  content: "\eab4";
}
.icon-Mic:before {
  content: "\eab5";
}
.icon-Microphone-2:before {
  content: "\eab6";
}
.icon-Microphone-3:before {
  content: "\eab7";
}
.icon-Microphone-4:before {
  content: "\eab8";
}
.icon-Microphone-5:before {
  content: "\eab9";
}
.icon-Microphone-6:before {
  content: "\eaba";
}
.icon-Microphone-7:before {
  content: "\eabb";
}
.icon-Microphone:before {
  content: "\eabc";
}
.icon-Microscope:before {
  content: "\eabd";
}
.icon-Milk-Bottle:before {
  content: "\eabe";
}
.icon-Mine:before {
  content: "\eabf";
}
.icon-Minimize-Maximize-Close-Window:before {
  content: "\eac0";
}
.icon-Minimize-Window:before {
  content: "\eac1";
}
.icon-Minimize:before {
  content: "\eac2";
}
.icon-Mirror:before {
  content: "\eac3";
}
.icon-Mixer:before {
  content: "\eac4";
}
.icon-Mixx:before {
  content: "\eac5";
}
.icon-Money-2:before {
  content: "\eac6";
}
.icon-Money-Bag:before {
  content: "\eac7";
}
.icon-Money-Smiley:before {
  content: "\eac8";
}
.icon-Money:before {
  content: "\eac9";
}
.icon-Monitor-2:before {
  content: "\eaca";
}
.icon-Monitor-3:before {
  content: "\eacb";
}
.icon-Monitor-4:before {
  content: "\eacc";
}
.icon-Monitor-5:before {
  content: "\eacd";
}
.icon-Monitor-Analytics:before {
  content: "\eace";
}
.icon-Monitor-Laptop:before {
  content: "\eacf";
}
.icon-Monitor-phone:before {
  content: "\ead0";
}
.icon-Monitor-Tablet:before {
  content: "\ead1";
}
.icon-Monitor-Vertical:before {
  content: "\ead2";
}
.icon-Monitor:before {
  content: "\ead3";
}
.icon-Monitoring:before {
  content: "\ead4";
}
.icon-Monkey:before {
  content: "\ead5";
}
.icon-Monster:before {
  content: "\ead6";
}
.icon-Morocco:before {
  content: "\ead7";
}
.icon-Motorcycle:before {
  content: "\ead8";
}
.icon-Mouse-2:before {
  content: "\ead9";
}
.icon-Mouse-3:before {
  content: "\eada";
}
.icon-Mouse-4:before {
  content: "\eadb";
}
.icon-Mouse-Pointer:before {
  content: "\eadc";
}
.icon-Mouse:before {
  content: "\eadd";
}
.icon-Moustache-Smiley:before {
  content: "\eade";
}
.icon-Movie-Ticket:before {
  content: "\eadf";
}
.icon-Movie:before {
  content: "\eae0";
}
.icon-Mp3-File:before {
  content: "\eae1";
}
.icon-Museum:before {
  content: "\eae2";
}
.icon-Mushroom:before {
  content: "\eae3";
}
.icon-Music-Note:before {
  content: "\eae4";
}
.icon-Music-Note2:before {
  content: "\eae5";
}
.icon-Music-Note3:before {
  content: "\eae6";
}
.icon-Music-Note4:before {
  content: "\eae7";
}
.icon-Music-Player:before {
  content: "\eae8";
}
.icon-Mustache-2:before {
  content: "\eae9";
}
.icon-Mustache-3:before {
  content: "\eaea";
}
.icon-Mustache-4:before {
  content: "\eaeb";
}
.icon-Mustache-5:before {
  content: "\eaec";
}
.icon-Mustache-6:before {
  content: "\eaed";
}
.icon-Mustache-7:before {
  content: "\eaee";
}
.icon-Mustache-8:before {
  content: "\eaef";
}
.icon-Mustache:before {
  content: "\eaf0";
}
.icon-Mute:before {
  content: "\eaf1";
}
.icon-Myspace:before {
  content: "\eaf2";
}
.icon-Navigat-Start:before {
  content: "\eaf3";
}
.icon-Navigate-End:before {
  content: "\eaf4";
}
.icon-Navigation-LeftWindow:before {
  content: "\eaf5";
}
.icon-Navigation-RightWindow:before {
  content: "\eaf6";
}
.icon-Nepal:before {
  content: "\eaf7";
}
.icon-Netscape:before {
  content: "\eaf8";
}
.icon-Network-Window:before {
  content: "\eaf9";
}
.icon-Network:before {
  content: "\eafa";
}
.icon-Neutron:before {
  content: "\eafb";
}
.icon-New-Mail:before {
  content: "\eafc";
}
.icon-New-Tab:before {
  content: "\eafd";
}
.icon-Newspaper-2:before {
  content: "\eafe";
}
.icon-Newspaper:before {
  content: "\eaff";
}
.icon-Newsvine:before {
  content: "\eb00";
}
.icon-Next2:before {
  content: "\eb01";
}
.icon-Next-3:before {
  content: "\eb02";
}
.icon-Next-Music:before {
  content: "\eb03";
}
.icon-Next:before {
  content: "\eb04";
}
.icon-No-Battery:before {
  content: "\eb05";
}
.icon-No-Drop:before {
  content: "\eb06";
}
.icon-No-Flash:before {
  content: "\eb07";
}
.icon-No-Smoking:before {
  content: "\eb08";
}
.icon-Noose:before {
  content: "\eb09";
}
.icon-Normal-Text:before {
  content: "\eb0a";
}
.icon-Note:before {
  content: "\eb0b";
}
.icon-Notepad-2:before {
  content: "\eb0c";
}
.icon-Notepad:before {
  content: "\eb0d";
}
.icon-Nuclear:before {
  content: "\eb0e";
}
.icon-Numbering-List:before {
  content: "\eb0f";
}
.icon-Nurse:before {
  content: "\eb10";
}
.icon-Office-Lamp:before {
  content: "\eb11";
}
.icon-Office:before {
  content: "\eb12";
}
.icon-Oil:before {
  content: "\eb13";
}
.icon-Old-Camera:before {
  content: "\eb14";
}
.icon-Old-Cassette:before {
  content: "\eb15";
}
.icon-Old-Clock:before {
  content: "\eb16";
}
.icon-Old-Radio:before {
  content: "\eb17";
}
.icon-Old-Sticky:before {
  content: "\eb18";
}
.icon-Old-Sticky2:before {
  content: "\eb19";
}
.icon-Old-Telephone:before {
  content: "\eb1a";
}
.icon-Old-TV:before {
  content: "\eb1b";
}
.icon-On-Air:before {
  content: "\eb1c";
}
.icon-On-Off-2:before {
  content: "\eb1d";
}
.icon-On-Off-3:before {
  content: "\eb1e";
}
.icon-On-off:before {
  content: "\eb1f";
}
.icon-One-Finger:before {
  content: "\eb20";
}
.icon-One-FingerTouch:before {
  content: "\eb21";
}
.icon-One-Window:before {
  content: "\eb22";
}
.icon-Open-Banana:before {
  content: "\eb23";
}
.icon-Open-Book:before {
  content: "\eb24";
}
.icon-Opera-House:before {
  content: "\eb25";
}
.icon-Opera:before {
  content: "\eb26";
}
.icon-Optimization:before {
  content: "\eb27";
}
.icon-Orientation-2:before {
  content: "\eb28";
}
.icon-Orientation-3:before {
  content: "\eb29";
}
.icon-Orientation:before {
  content: "\eb2a";
}
.icon-Orkut:before {
  content: "\eb2b";
}
.icon-Ornament:before {
  content: "\eb2c";
}
.icon-Over-Time:before {
  content: "\eb2d";
}
.icon-Over-Time2:before {
  content: "\eb2e";
}
.icon-Owl:before {
  content: "\eb2f";
}
.icon-Pac-Man:before {
  content: "\eb30";
}
.icon-Paint-Brush:before {
  content: "\eb31";
}
.icon-Paint-Bucket:before {
  content: "\eb32";
}
.icon-Paintbrush:before {
  content: "\eb33";
}
.icon-Palette:before {
  content: "\eb34";
}
.icon-Palm-Tree:before {
  content: "\eb35";
}
.icon-Panda:before {
  content: "\eb36";
}
.icon-Panorama:before {
  content: "\eb37";
}
.icon-Pantheon:before {
  content: "\eb38";
}
.icon-Pantone:before {
  content: "\eb39";
}
.icon-Pants:before {
  content: "\eb3a";
}
.icon-Paper-Plane:before {
  content: "\eb3b";
}
.icon-Paper:before {
  content: "\eb3c";
}
.icon-Parasailing:before {
  content: "\eb3d";
}
.icon-Parrot:before {
  content: "\eb3e";
}
.icon-Password-2shopping:before {
  content: "\eb3f";
}
.icon-Password-Field:before {
  content: "\eb40";
}
.icon-Password-shopping:before {
  content: "\eb41";
}
.icon-Password:before {
  content: "\eb42";
}
.icon-pause-2:before {
  content: "\eb43";
}
.icon-Pause:before {
  content: "\eb44";
}
.icon-Paw:before {
  content: "\eb45";
}
.icon-Pawn:before {
  content: "\eb46";
}
.icon-Paypal:before {
  content: "\eb47";
}
.icon-Pen-2:before {
  content: "\eb48";
}
.icon-Pen-3:before {
  content: "\eb49";
}
.icon-Pen-4:before {
  content: "\eb4a";
}
.icon-Pen-5:before {
  content: "\eb4b";
}
.icon-Pen-6:before {
  content: "\eb4c";
}
.icon-Pen:before {
  content: "\eb4d";
}
.icon-Pencil-Ruler:before {
  content: "\eb4e";
}
.icon-Pencil:before {
  content: "\eb4f";
}
.icon-Penguin:before {
  content: "\eb50";
}
.icon-Pentagon:before {
  content: "\eb51";
}
.icon-People-onCloud:before {
  content: "\eb52";
}
.icon-Pepper-withFire:before {
  content: "\eb53";
}
.icon-Pepper:before {
  content: "\eb54";
}
.icon-Petrol:before {
  content: "\eb55";
}
.icon-Petronas-Tower:before {
  content: "\eb56";
}
.icon-Philipines:before {
  content: "\eb57";
}
.icon-Phone-2:before {
  content: "\eb58";
}
.icon-Phone-3:before {
  content: "\eb59";
}
.icon-Phone-3G:before {
  content: "\eb5a";
}
.icon-Phone-4G:before {
  content: "\eb5b";
}
.icon-Phone-Simcard:before {
  content: "\eb5c";
}
.icon-Phone-SMS:before {
  content: "\eb5d";
}
.icon-Phone-Wifi:before {
  content: "\eb5e";
}
.icon-Phone:before {
  content: "\eb5f";
}
.icon-Photo-2:before {
  content: "\eb60";
}
.icon-Photo-3:before {
  content: "\eb61";
}
.icon-Photo-Album:before {
  content: "\eb62";
}
.icon-Photo-Album2:before {
  content: "\eb63";
}
.icon-Photo-Album3:before {
  content: "\eb64";
}
.icon-Photo:before {
  content: "\eb65";
}
.icon-Photos:before {
  content: "\eb66";
}
.icon-Physics:before {
  content: "\eb67";
}
.icon-Pi:before {
  content: "\eb68";
}
.icon-Piano:before {
  content: "\eb69";
}
.icon-Picasa:before {
  content: "\eb6a";
}
.icon-Pie-Chart:before {
  content: "\eb6b";
}
.icon-Pie-Chart2:before {
  content: "\eb6c";
}
.icon-Pie-Chart3:before {
  content: "\eb6d";
}
.icon-Pilates-2:before {
  content: "\eb6e";
}
.icon-Pilates-3:before {
  content: "\eb6f";
}
.icon-Pilates:before {
  content: "\eb70";
}
.icon-Pilot:before {
  content: "\eb71";
}
.icon-Pinch:before {
  content: "\eb72";
}
.icon-Ping-Pong:before {
  content: "\eb73";
}
.icon-Pinterest:before {
  content: "\eb74";
}
.icon-Pipe:before {
  content: "\eb75";
}
.icon-Pipette:before {
  content: "\eb76";
}
.icon-Piramids:before {
  content: "\eb77";
}
.icon-Pisces-2:before {
  content: "\eb78";
}
.icon-Pisces:before {
  content: "\eb79";
}
.icon-Pizza-Slice:before {
  content: "\eb7a";
}
.icon-Pizza:before {
  content: "\eb7b";
}
.icon-Plane-2:before {
  content: "\eb7c";
}
.icon-Plane:before {
  content: "\eb7d";
}
.icon-Plant:before {
  content: "\eb7e";
}
.icon-Plasmid:before {
  content: "\eb7f";
}
.icon-Plaster:before {
  content: "\eb80";
}
.icon-Plastic-CupPhone:before {
  content: "\eb81";
}
.icon-Plastic-CupPhone2:before {
  content: "\eb82";
}
.icon-Plate:before {
  content: "\eb83";
}
.icon-Plates:before {
  content: "\eb84";
}
.icon-Plaxo:before {
  content: "\eb85";
}
.icon-Play-Music:before {
  content: "\eb86";
}
.icon-Plug-In:before {
  content: "\eb87";
}
.icon-Plug-In2:before {
  content: "\eb88";
}
.icon-Plurk:before {
  content: "\eb89";
}
.icon-Pointer:before {
  content: "\eb8a";
}
.icon-Poland:before {
  content: "\eb8b";
}
.icon-Police-Man:before {
  content: "\eb8c";
}
.icon-Police-Station:before {
  content: "\eb8d";
}
.icon-Police-Woman:before {
  content: "\eb8e";
}
.icon-Police:before {
  content: "\eb8f";
}
.icon-Polo-Shirt:before {
  content: "\eb90";
}
.icon-Portrait:before {
  content: "\eb91";
}
.icon-Portugal:before {
  content: "\eb92";
}
.icon-Post-Mail:before {
  content: "\eb93";
}
.icon-Post-Mail2:before {
  content: "\eb94";
}
.icon-Post-Office:before {
  content: "\eb95";
}
.icon-Post-Sign:before {
  content: "\eb96";
}
.icon-Post-Sign2ways:before {
  content: "\eb97";
}
.icon-Posterous:before {
  content: "\eb98";
}
.icon-Pound-Sign:before {
  content: "\eb99";
}
.icon-Pound-Sign2:before {
  content: "\eb9a";
}
.icon-Pound:before {
  content: "\eb9b";
}
.icon-Power-2:before {
  content: "\eb9c";
}
.icon-Power-3:before {
  content: "\eb9d";
}
.icon-Power-Cable:before {
  content: "\eb9e";
}
.icon-Power-Station:before {
  content: "\eb9f";
}
.icon-Power:before {
  content: "\eba0";
}
.icon-Prater:before {
  content: "\eba1";
}
.icon-Present:before {
  content: "\eba2";
}
.icon-Presents:before {
  content: "\eba3";
}
.icon-Press:before {
  content: "\eba4";
}
.icon-Preview:before {
  content: "\eba5";
}
.icon-Previous:before {
  content: "\eba6";
}
.icon-Pricing:before {
  content: "\eba7";
}
.icon-Printer:before {
  content: "\eba8";
}
.icon-Professor:before {
  content: "\eba9";
}
.icon-Profile:before {
  content: "\ebaa";
}
.icon-Project:before {
  content: "\ebab";
}
.icon-Projector-2:before {
  content: "\ebac";
}
.icon-Projector:before {
  content: "\ebad";
}
.icon-Pulse:before {
  content: "\ebae";
}
.icon-Pumpkin:before {
  content: "\ebaf";
}
.icon-Punk:before {
  content: "\ebb0";
}
.icon-Punker:before {
  content: "\ebb1";
}
.icon-Puzzle:before {
  content: "\ebb2";
}
.icon-QIK:before {
  content: "\ebb3";
}
.icon-QR-Code:before {
  content: "\ebb4";
}
.icon-Queen-2:before {
  content: "\ebb5";
}
.icon-Queen:before {
  content: "\ebb6";
}
.icon-Quill-2:before {
  content: "\ebb7";
}
.icon-Quill-3:before {
  content: "\ebb8";
}
.icon-Quill:before {
  content: "\ebb9";
}
.icon-Quotes-2:before {
  content: "\ebba";
}
.icon-Quotes:before {
  content: "\ebbb";
}
.icon-Radio:before {
  content: "\ebbc";
}
.icon-Radioactive:before {
  content: "\ebbd";
}
.icon-Rafting:before {
  content: "\ebbe";
}
.icon-Rain-Drop:before {
  content: "\ebbf";
}
.icon-Rainbow-2:before {
  content: "\ebc0";
}
.icon-Rainbow:before {
  content: "\ebc1";
}
.icon-Ram:before {
  content: "\ebc2";
}
.icon-Razzor-Blade:before {
  content: "\ebc3";
}
.icon-Receipt-2:before {
  content: "\ebc4";
}
.icon-Receipt-3:before {
  content: "\ebc5";
}
.icon-Receipt-4:before {
  content: "\ebc6";
}
.icon-Receipt:before {
  content: "\ebc7";
}
.icon-Record2:before {
  content: "\ebc8";
}
.icon-Record-3:before {
  content: "\ebc9";
}
.icon-Record-Music:before {
  content: "\ebca";
}
.icon-Record:before {
  content: "\ebcb";
}
.icon-Recycling-2:before {
  content: "\ebcc";
}
.icon-Recycling:before {
  content: "\ebcd";
}
.icon-Reddit:before {
  content: "\ebce";
}
.icon-Redhat:before {
  content: "\ebcf";
}
.icon-Redirect:before {
  content: "\ebd0";
}
.icon-Redo:before {
  content: "\ebd1";
}
.icon-Reel:before {
  content: "\ebd2";
}
.icon-Refinery:before {
  content: "\ebd3";
}
.icon-Refresh-Window:before {
  content: "\ebd4";
}
.icon-Refresh:before {
  content: "\ebd5";
}
.icon-Reload-2:before {
  content: "\ebd6";
}
.icon-Reload-3:before {
  content: "\ebd7";
}
.icon-Reload:before {
  content: "\ebd8";
}
.icon-Remote-Controll:before {
  content: "\ebd9";
}
.icon-Remote-Controll2:before {
  content: "\ebda";
}
.icon-Remove-Bag:before {
  content: "\ebdb";
}
.icon-Remove-Basket:before {
  content: "\ebdc";
}
.icon-Remove-Cart:before {
  content: "\ebdd";
}
.icon-Remove-File:before {
  content: "\ebde";
}
.icon-Remove-User:before {
  content: "\ebdf";
}
.icon-Remove-Window:before {
  content: "\ebe0";
}
.icon-Remove:before {
  content: "\ebe1";
}
.icon-Rename:before {
  content: "\ebe2";
}
.icon-Repair:before {
  content: "\ebe3";
}
.icon-Repeat-2:before {
  content: "\ebe4";
}
.icon-Repeat-3:before {
  content: "\ebe5";
}
.icon-Repeat-4:before {
  content: "\ebe6";
}
.icon-Repeat-5:before {
  content: "\ebe7";
}
.icon-Repeat-6:before {
  content: "\ebe8";
}
.icon-Repeat-7:before {
  content: "\ebe9";
}
.icon-Repeat:before {
  content: "\ebea";
}
.icon-Reset:before {
  content: "\ebeb";
}
.icon-Resize:before {
  content: "\ebec";
}
.icon-Restore-Window:before {
  content: "\ebed";
}
.icon-Retouching:before {
  content: "\ebee";
}
.icon-Retro-Camera:before {
  content: "\ebef";
}
.icon-Retro:before {
  content: "\ebf0";
}
.icon-Retweet:before {
  content: "\ebf1";
}
.icon-Reverbnation:before {
  content: "\ebf2";
}
.icon-Rewind:before {
  content: "\ebf3";
}
.icon-RGB:before {
  content: "\ebf4";
}
.icon-Ribbon-2:before {
  content: "\ebf5";
}
.icon-Ribbon-3:before {
  content: "\ebf6";
}
.icon-Ribbon:before {
  content: "\ebf7";
}
.icon-Right-2:before {
  content: "\ebf8";
}
.icon-Right-3:before {
  content: "\ebf9";
}
.icon-Right-4:before {
  content: "\ebfa";
}
.icon-Right-ToLeft:before {
  content: "\ebfb";
}
.icon-Right:before {
  content: "\ebfc";
}
.icon-Road-2:before {
  content: "\ebfd";
}
.icon-Road-3:before {
  content: "\ebfe";
}
.icon-Road:before {
  content: "\ebff";
}
.icon-Robot-2:before {
  content: "\ec00";
}
.icon-Robot:before {
  content: "\ec01";
}
.icon-Rock-andRoll:before {
  content: "\ec02";
}
.icon-Rocket:before {
  content: "\ec03";
}
.icon-Roller:before {
  content: "\ec04";
}
.icon-Roof:before {
  content: "\ec05";
}
.icon-Rook:before {
  content: "\ec06";
}
.icon-Rotate-Gesture:before {
  content: "\ec07";
}
.icon-Rotate-Gesture2:before {
  content: "\ec08";
}
.icon-Rotate-Gesture3:before {
  content: "\ec09";
}
.icon-Rotation-390:before {
  content: "\ec0a";
}
.icon-Rotation:before {
  content: "\ec0b";
}
.icon-Router-2:before {
  content: "\ec0c";
}
.icon-Router:before {
  content: "\ec0d";
}
.icon-RSS:before {
  content: "\ec0e";
}
.icon-Ruler-2:before {
  content: "\ec0f";
}
.icon-Ruler:before {
  content: "\ec10";
}
.icon-Running-Shoes:before {
  content: "\ec11";
}
.icon-Running:before {
  content: "\ec12";
}
.icon-Safari:before {
  content: "\ec13";
}
.icon-Safe-Box:before {
  content: "\ec14";
}
.icon-Safe-Box2:before {
  content: "\ec15";
}
.icon-Safety-PinClose:before {
  content: "\ec16";
}
.icon-Safety-PinOpen:before {
  content: "\ec17";
}
.icon-Sagittarus-2:before {
  content: "\ec18";
}
.icon-Sagittarus:before {
  content: "\ec19";
}
.icon-Sailing-Ship:before {
  content: "\ec1a";
}
.icon-Sand-watch:before {
  content: "\ec1b";
}
.icon-Sand-watch2:before {
  content: "\ec1c";
}
.icon-Santa-Claus:before {
  content: "\ec1d";
}
.icon-Santa-Claus2:before {
  content: "\ec1e";
}
.icon-Santa-onSled:before {
  content: "\ec1f";
}
.icon-Satelite-2:before {
  content: "\ec20";
}
.icon-Satelite:before {
  content: "\ec21";
}
.icon-Save-Window:before {
  content: "\ec22";
}
.icon-Save:before {
  content: "\ec23";
}
.icon-Saw:before {
  content: "\ec24";
}
.icon-Saxophone:before {
  content: "\ec25";
}
.icon-Scale:before {
  content: "\ec26";
}
.icon-Scarf:before {
  content: "\ec27";
}
.icon-Scissor:before {
  content: "\ec28";
}
.icon-Scooter-Front:before {
  content: "\ec29";
}
.icon-Scooter:before {
  content: "\ec2a";
}
.icon-Scorpio-2:before {
  content: "\ec2b";
}
.icon-Scorpio:before {
  content: "\ec2c";
}
.icon-Scotland:before {
  content: "\ec2d";
}
.icon-Screwdriver:before {
  content: "\ec2e";
}
.icon-Scroll-Fast:before {
  content: "\ec2f";
}
.icon-Scroll:before {
  content: "\ec30";
}
.icon-Scroller-2:before {
  content: "\ec31";
}
.icon-Scroller:before {
  content: "\ec32";
}
.icon-Sea-Dog:before {
  content: "\ec33";
}
.icon-Search-onCloud:before {
  content: "\ec34";
}
.icon-Search-People:before {
  content: "\ec35";
}
.icon-secound:before {
  content: "\ec36";
}
.icon-secound2:before {
  content: "\ec37";
}
.icon-Security-Block:before {
  content: "\ec38";
}
.icon-Security-Bug:before {
  content: "\ec39";
}
.icon-Security-Camera:before {
  content: "\ec3a";
}
.icon-Security-Check:before {
  content: "\ec3b";
}
.icon-Security-Settings:before {
  content: "\ec3c";
}
.icon-Security-Smiley:before {
  content: "\ec3d";
}
.icon-Securiy-Remove:before {
  content: "\ec3e";
}
.icon-Seed:before {
  content: "\ec3f";
}
.icon-Selfie:before {
  content: "\ec40";
}
.icon-Serbia:before {
  content: "\ec41";
}
.icon-Server-2:before {
  content: "\ec42";
}
.icon-Server:before {
  content: "\ec43";
}
.icon-Servers:before {
  content: "\ec44";
}
.icon-Settings-Window:before {
  content: "\ec45";
}
.icon-Sewing-Machine:before {
  content: "\ec46";
}
.icon-Sexual:before {
  content: "\ec47";
}
.icon-Share-onCloud:before {
  content: "\ec48";
}
.icon-Share-Window:before {
  content: "\ec49";
}
.icon-Share:before {
  content: "\ec4a";
}
.icon-Sharethis:before {
  content: "\ec4b";
}
.icon-Shark:before {
  content: "\ec4c";
}
.icon-Sheep:before {
  content: "\ec4d";
}
.icon-Sheriff-Badge:before {
  content: "\ec4e";
}
.icon-Shield:before {
  content: "\ec4f";
}
.icon-Ship-2:before {
  content: "\ec50";
}
.icon-Ship:before {
  content: "\ec51";
}
.icon-Shirt:before {
  content: "\ec52";
}
.icon-Shoes-2:before {
  content: "\ec53";
}
.icon-Shoes-3:before {
  content: "\ec54";
}
.icon-Shoes:before {
  content: "\ec55";
}
.icon-Shop-2:before {
  content: "\ec56";
}
.icon-Shop-3:before {
  content: "\ec57";
}
.icon-Shop-4:before {
  content: "\ec58";
}
.icon-Shop:before {
  content: "\ec59";
}
.icon-Shopping-Bag:before {
  content: "\ec5a";
}
.icon-Shopping-Basket:before {
  content: "\ec5b";
}
.icon-Shopping-Cart:before {
  content: "\ec5c";
}
.icon-Short-Pants:before {
  content: "\ec5d";
}
.icon-Shoutwire:before {
  content: "\ec5e";
}
.icon-Shovel:before {
  content: "\ec5f";
}
.icon-Shuffle-2:before {
  content: "\ec60";
}
.icon-Shuffle-3:before {
  content: "\ec61";
}
.icon-Shuffle-4:before {
  content: "\ec62";
}
.icon-Shuffle:before {
  content: "\ec63";
}
.icon-Shutter:before {
  content: "\ec64";
}
.icon-Sidebar-Window:before {
  content: "\ec65";
}
.icon-Signal:before {
  content: "\ec66";
}
.icon-Singapore:before {
  content: "\ec67";
}
.icon-Skate-Shoes:before {
  content: "\ec68";
}
.icon-Skateboard-2:before {
  content: "\ec69";
}
.icon-Skateboard:before {
  content: "\ec6a";
}
.icon-Skeleton:before {
  content: "\ec6b";
}
.icon-Ski:before {
  content: "\ec6c";
}
.icon-Skirt:before {
  content: "\ec6d";
}
.icon-Skrill:before {
  content: "\ec6e";
}
.icon-Skull:before {
  content: "\ec6f";
}
.icon-Skydiving:before {
  content: "\ec70";
}
.icon-Skype:before {
  content: "\ec71";
}
.icon-Sled-withGifts:before {
  content: "\ec72";
}
.icon-Sled:before {
  content: "\ec73";
}
.icon-Sleeping:before {
  content: "\ec74";
}
.icon-Sleet:before {
  content: "\ec75";
}
.icon-Slippers:before {
  content: "\ec76";
}
.icon-Smart:before {
  content: "\ec77";
}
.icon-Smartphone-2:before {
  content: "\ec78";
}
.icon-Smartphone-3:before {
  content: "\ec79";
}
.icon-Smartphone-4:before {
  content: "\ec7a";
}
.icon-Smartphone-Secure:before {
  content: "\ec7b";
}
.icon-Smartphone:before {
  content: "\ec7c";
}
.icon-Smile:before {
  content: "\ec7d";
}
.icon-Smoking-Area:before {
  content: "\ec7e";
}
.icon-Smoking-Pipe:before {
  content: "\ec7f";
}
.icon-Snake:before {
  content: "\ec80";
}
.icon-Snorkel:before {
  content: "\ec81";
}
.icon-Snow-2:before {
  content: "\ec82";
}
.icon-Snow-Dome:before {
  content: "\ec83";
}
.icon-Snow-Storm:before {
  content: "\ec84";
}
.icon-Snow:before {
  content: "\ec85";
}
.icon-Snowflake-2:before {
  content: "\ec86";
}
.icon-Snowflake-3:before {
  content: "\ec87";
}
.icon-Snowflake-4:before {
  content: "\ec88";
}
.icon-Snowflake:before {
  content: "\ec89";
}
.icon-Snowman:before {
  content: "\ec8a";
}
.icon-Soccer-Ball:before {
  content: "\ec8b";
}
.icon-Soccer-Shoes:before {
  content: "\ec8c";
}
.icon-Socks:before {
  content: "\ec8d";
}
.icon-Solar:before {
  content: "\ec8e";
}
.icon-Sound-Wave:before {
  content: "\ec8f";
}
.icon-Sound:before {
  content: "\ec90";
}
.icon-Soundcloud:before {
  content: "\ec91";
}
.icon-Soup:before {
  content: "\ec92";
}
.icon-South-Africa:before {
  content: "\ec93";
}
.icon-Space-Needle:before {
  content: "\ec94";
}
.icon-Spain:before {
  content: "\ec95";
}
.icon-Spam-Mail:before {
  content: "\ec96";
}
.icon-Speach-Bubble:before {
  content: "\ec97";
}
.icon-Speach-Bubble2:before {
  content: "\ec98";
}
.icon-Speach-Bubble3:before {
  content: "\ec99";
}
.icon-Speach-Bubble4:before {
  content: "\ec9a";
}
.icon-Speach-Bubble5:before {
  content: "\ec9b";
}
.icon-Speach-Bubble6:before {
  content: "\ec9c";
}
.icon-Speach-Bubble7:before {
  content: "\ec9d";
}
.icon-Speach-Bubble8:before {
  content: "\ec9e";
}
.icon-Speach-Bubble9:before {
  content: "\ec9f";
}
.icon-Speach-Bubble10:before {
  content: "\eca0";
}
.icon-Speach-Bubble11:before {
  content: "\eca1";
}
.icon-Speach-Bubble12:before {
  content: "\eca2";
}
.icon-Speach-Bubble13:before {
  content: "\eca3";
}
.icon-Speach-BubbleAsking:before {
  content: "\eca4";
}
.icon-Speach-BubbleComic:before {
  content: "\eca5";
}
.icon-Speach-BubbleComic2:before {
  content: "\eca6";
}
.icon-Speach-BubbleComic3:before {
  content: "\eca7";
}
.icon-Speach-BubbleComic4:before {
  content: "\eca8";
}
.icon-Speach-BubbleDialog:before {
  content: "\eca9";
}
.icon-Speach-Bubbles:before {
  content: "\ecaa";
}
.icon-Speak-2:before {
  content: "\ecab";
}
.icon-Speak:before {
  content: "\ecac";
}
.icon-Speaker-2:before {
  content: "\ecad";
}
.icon-Speaker:before {
  content: "\ecae";
}
.icon-Spell-Check:before {
  content: "\ecaf";
}
.icon-Spell-CheckABC:before {
  content: "\ecb0";
}
.icon-Spermium:before {
  content: "\ecb1";
}
.icon-Spider:before {
  content: "\ecb2";
}
.icon-Spiderweb:before {
  content: "\ecb3";
}
.icon-Split-FourSquareWindow:before {
  content: "\ecb4";
}
.icon-Split-Horizontal:before {
  content: "\ecb5";
}
.icon-Split-Horizontal2Window:before {
  content: "\ecb6";
}
.icon-Split-Vertical:before {
  content: "\ecb7";
}
.icon-Split-Vertical2:before {
  content: "\ecb8";
}
.icon-Split-Window:before {
  content: "\ecb9";
}
.icon-Spoder:before {
  content: "\ecba";
}
.icon-Spoon:before {
  content: "\ecbb";
}
.icon-Sport-Mode:before {
  content: "\ecbc";
}
.icon-Sports-Clothings1:before {
  content: "\ecbd";
}
.icon-Sports-Clothings2:before {
  content: "\ecbe";
}
.icon-Sports-Shirt:before {
  content: "\ecbf";
}
.icon-Spot:before {
  content: "\ecc0";
}
.icon-Spray:before {
  content: "\ecc1";
}
.icon-Spread:before {
  content: "\ecc2";
}
.icon-Spring:before {
  content: "\ecc3";
}
.icon-Spurl:before {
  content: "\ecc4";
}
.icon-Spy:before {
  content: "\ecc5";
}
.icon-Squirrel:before {
  content: "\ecc6";
}
.icon-SSL:before {
  content: "\ecc7";
}
.icon-St-BasilsCathedral:before {
  content: "\ecc8";
}
.icon-St-PaulsCathedral:before {
  content: "\ecc9";
}
.icon-Stamp-2:before {
  content: "\ecca";
}
.icon-Stamp:before {
  content: "\eccb";
}
.icon-Stapler:before {
  content: "\eccc";
}
.icon-Star-Track:before {
  content: "\eccd";
}
.icon-Star:before {
  content: "\ecce";
}
.icon-Starfish:before {
  content: "\eccf";
}
.icon-Start2:before {
  content: "\ecd0";
}
.icon-Start-3:before {
  content: "\ecd1";
}
.icon-Start-ways:before {
  content: "\ecd2";
}
.icon-Start:before {
  content: "\ecd3";
}
.icon-Statistic:before {
  content: "\ecd4";
}
.icon-Stethoscope:before {
  content: "\ecd5";
}
.icon-stop--2:before {
  content: "\ecd6";
}
.icon-Stop-Music:before {
  content: "\ecd7";
}
.icon-Stop:before {
  content: "\ecd8";
}
.icon-Stopwatch-2:before {
  content: "\ecd9";
}
.icon-Stopwatch:before {
  content: "\ecda";
}
.icon-Storm:before {
  content: "\ecdb";
}
.icon-Street-View:before {
  content: "\ecdc";
}
.icon-Street-View2:before {
  content: "\ecdd";
}
.icon-Strikethrough-Text:before {
  content: "\ecde";
}
.icon-Stroller:before {
  content: "\ecdf";
}
.icon-Structure:before {
  content: "\ece0";
}
.icon-Student-Female:before {
  content: "\ece1";
}
.icon-Student-Hat:before {
  content: "\ece2";
}
.icon-Student-Hat2:before {
  content: "\ece3";
}
.icon-Student-Male:before {
  content: "\ece4";
}
.icon-Student-MaleFemale:before {
  content: "\ece5";
}
.icon-Students:before {
  content: "\ece6";
}
.icon-Studio-Flash:before {
  content: "\ece7";
}
.icon-Studio-Lightbox:before {
  content: "\ece8";
}
.icon-Stumbleupon:before {
  content: "\ece9";
}
.icon-Suit:before {
  content: "\ecea";
}
.icon-Suitcase:before {
  content: "\eceb";
}
.icon-Sum-2:before {
  content: "\ecec";
}
.icon-Sum:before {
  content: "\eced";
}
.icon-Summer:before {
  content: "\ecee";
}
.icon-Sun-CloudyRain:before {
  content: "\ecef";
}
.icon-Sun:before {
  content: "\ecf0";
}
.icon-Sunglasses-2:before {
  content: "\ecf1";
}
.icon-Sunglasses-3:before {
  content: "\ecf2";
}
.icon-Sunglasses-Smiley:before {
  content: "\ecf3";
}
.icon-Sunglasses-Smiley2:before {
  content: "\ecf4";
}
.icon-Sunglasses-W:before {
  content: "\ecf5";
}
.icon-Sunglasses-W2:before {
  content: "\ecf6";
}
.icon-Sunglasses-W3:before {
  content: "\ecf7";
}
.icon-Sunglasses:before {
  content: "\ecf8";
}
.icon-Sunrise:before {
  content: "\ecf9";
}
.icon-Sunset:before {
  content: "\ecfa";
}
.icon-Superman:before {
  content: "\ecfb";
}
.icon-Support:before {
  content: "\ecfc";
}
.icon-Surprise:before {
  content: "\ecfd";
}
.icon-Sushi:before {
  content: "\ecfe";
}
.icon-Sweden:before {
  content: "\ecff";
}
.icon-Swimming-Short:before {
  content: "\ed00";
}
.icon-Swimming:before {
  content: "\ed01";
}
.icon-Swimmwear:before {
  content: "\ed02";
}
.icon-Switch:before {
  content: "\ed03";
}
.icon-Switzerland:before {
  content: "\ed04";
}
.icon-Sync-Cloud:before {
  content: "\ed05";
}
.icon-Sync:before {
  content: "\ed06";
}
.icon-Synchronize-2:before {
  content: "\ed07";
}
.icon-Synchronize:before {
  content: "\ed08";
}
.icon-T-Shirt:before {
  content: "\ed09";
}
.icon-Tablet-2:before {
  content: "\ed0a";
}
.icon-Tablet-3:before {
  content: "\ed0b";
}
.icon-Tablet-Orientation:before {
  content: "\ed0c";
}
.icon-Tablet-Phone:before {
  content: "\ed0d";
}
.icon-Tablet-Secure:before {
  content: "\ed0e";
}
.icon-Tablet-Vertical:before {
  content: "\ed0f";
}
.icon-Tablet:before {
  content: "\ed10";
}
.icon-Tactic:before {
  content: "\ed11";
}
.icon-Tag-2:before {
  content: "\ed12";
}
.icon-Tag-3:before {
  content: "\ed13";
}
.icon-Tag-4:before {
  content: "\ed14";
}
.icon-Tag-5:before {
  content: "\ed15";
}
.icon-Tag:before {
  content: "\ed16";
}
.icon-Taj-Mahal:before {
  content: "\ed17";
}
.icon-Talk-Man:before {
  content: "\ed18";
}
.icon-Tap:before {
  content: "\ed19";
}
.icon-Target-Market:before {
  content: "\ed1a";
}
.icon-Target:before {
  content: "\ed1b";
}
.icon-Taurus-2:before {
  content: "\ed1c";
}
.icon-Taurus:before {
  content: "\ed1d";
}
.icon-Taxi-2:before {
  content: "\ed1e";
}
.icon-Taxi-Sign:before {
  content: "\ed1f";
}
.icon-Taxi:before {
  content: "\ed20";
}
.icon-Teacher:before {
  content: "\ed21";
}
.icon-Teapot:before {
  content: "\ed22";
}
.icon-Technorati:before {
  content: "\ed23";
}
.icon-Teddy-Bear:before {
  content: "\ed24";
}
.icon-Tee-Mug:before {
  content: "\ed25";
}
.icon-Telephone-2:before {
  content: "\ed26";
}
.icon-Telephone:before {
  content: "\ed27";
}
.icon-Telescope:before {
  content: "\ed28";
}
.icon-Temperature-2:before {
  content: "\ed29";
}
.icon-Temperature-3:before {
  content: "\ed2a";
}
.icon-Temperature:before {
  content: "\ed2b";
}
.icon-Temple:before {
  content: "\ed2c";
}
.icon-Tennis-Ball:before {
  content: "\ed2d";
}
.icon-Tennis:before {
  content: "\ed2e";
}
.icon-Tent:before {
  content: "\ed2f";
}
.icon-Test-Tube:before {
  content: "\ed30";
}
.icon-Test-Tube2:before {
  content: "\ed31";
}
.icon-Testimonal:before {
  content: "\ed32";
}
.icon-Text-Box:before {
  content: "\ed33";
}
.icon-Text-Effect:before {
  content: "\ed34";
}
.icon-Text-HighlightColor:before {
  content: "\ed35";
}
.icon-Text-Paragraph:before {
  content: "\ed36";
}
.icon-Thailand:before {
  content: "\ed37";
}
.icon-The-WhiteHouse:before {
  content: "\ed38";
}
.icon-This-SideUp:before {
  content: "\ed39";
}
.icon-Thread:before {
  content: "\ed3a";
}
.icon-Three-ArrowFork:before {
  content: "\ed3b";
}
.icon-Three-Fingers:before {
  content: "\ed3c";
}
.icon-Three-FingersDrag:before {
  content: "\ed3d";
}
.icon-Three-FingersDrag2:before {
  content: "\ed3e";
}
.icon-Three-FingersTouch:before {
  content: "\ed3f";
}
.icon-Thumb:before {
  content: "\ed40";
}
.icon-Thumbs-DownSmiley:before {
  content: "\ed41";
}
.icon-Thumbs-UpSmiley:before {
  content: "\ed42";
}
.icon-Thunder:before {
  content: "\ed43";
}
.icon-Thunderstorm:before {
  content: "\ed44";
}
.icon-Ticket:before {
  content: "\ed45";
}
.icon-Tie-2:before {
  content: "\ed46";
}
.icon-Tie-3:before {
  content: "\ed47";
}
.icon-Tie-4:before {
  content: "\ed48";
}
.icon-Tie:before {
  content: "\ed49";
}
.icon-Tiger:before {
  content: "\ed4a";
}
.icon-Time-Backup:before {
  content: "\ed4b";
}
.icon-Time-Bomb:before {
  content: "\ed4c";
}
.icon-Time-Clock:before {
  content: "\ed4d";
}
.icon-Time-Fire:before {
  content: "\ed4e";
}
.icon-Time-Machine:before {
  content: "\ed4f";
}
.icon-Time-Window:before {
  content: "\ed50";
}
.icon-Timer-2:before {
  content: "\ed51";
}
.icon-Timer:before {
  content: "\ed52";
}
.icon-To-Bottom:before {
  content: "\ed53";
}
.icon-To-Bottom2:before {
  content: "\ed54";
}
.icon-To-Left:before {
  content: "\ed55";
}
.icon-To-Right:before {
  content: "\ed56";
}
.icon-To-Top:before {
  content: "\ed57";
}
.icon-To-Top2:before {
  content: "\ed58";
}
.icon-Token-:before {
  content: "\ed59";
}
.icon-Tomato:before {
  content: "\ed5a";
}
.icon-Tongue:before {
  content: "\ed5b";
}
.icon-Tooth-2:before {
  content: "\ed5c";
}
.icon-Tooth:before {
  content: "\ed5d";
}
.icon-Top-ToBottom:before {
  content: "\ed5e";
}
.icon-Touch-Window:before {
  content: "\ed5f";
}
.icon-Tourch:before {
  content: "\ed60";
}
.icon-Tower-2:before {
  content: "\ed61";
}
.icon-Tower-Bridge:before {
  content: "\ed62";
}
.icon-Tower:before {
  content: "\ed63";
}
.icon-Trace:before {
  content: "\ed64";
}
.icon-Tractor:before {
  content: "\ed65";
}
.icon-traffic-Light:before {
  content: "\ed66";
}
.icon-Traffic-Light2:before {
  content: "\ed67";
}
.icon-Train-2:before {
  content: "\ed68";
}
.icon-Train:before {
  content: "\ed69";
}
.icon-Tram:before {
  content: "\ed6a";
}
.icon-Transform-2:before {
  content: "\ed6b";
}
.icon-Transform-3:before {
  content: "\ed6c";
}
.icon-Transform-4:before {
  content: "\ed6d";
}
.icon-Transform:before {
  content: "\ed6e";
}
.icon-Trash-withMen:before {
  content: "\ed6f";
}
.icon-Tree-2:before {
  content: "\ed70";
}
.icon-Tree-3:before {
  content: "\ed71";
}
.icon-Tree-4:before {
  content: "\ed72";
}
.icon-Tree-5:before {
  content: "\ed73";
}
.icon-Tree:before {
  content: "\ed74";
}
.icon-Trekking:before {
  content: "\ed75";
}
.icon-Triangle-ArrowDown:before {
  content: "\ed76";
}
.icon-Triangle-ArrowLeft:before {
  content: "\ed77";
}
.icon-Triangle-ArrowRight:before {
  content: "\ed78";
}
.icon-Triangle-ArrowUp:before {
  content: "\ed79";
}
.icon-Tripod-2:before {
  content: "\ed7a";
}
.icon-Tripod-andVideo:before {
  content: "\ed7b";
}
.icon-Tripod-withCamera:before {
  content: "\ed7c";
}
.icon-Tripod-withGopro:before {
  content: "\ed7d";
}
.icon-Trophy-2:before {
  content: "\ed7e";
}
.icon-Trophy:before {
  content: "\ed7f";
}
.icon-Truck:before {
  content: "\ed80";
}
.icon-Trumpet:before {
  content: "\ed81";
}
.icon-Tumblr:before {
  content: "\ed82";
}
.icon-Turkey:before {
  content: "\ed83";
}
.icon-Turn-Down:before {
  content: "\ed84";
}
.icon-Turn-Down2:before {
  content: "\ed85";
}
.icon-Turn-DownFromLeft:before {
  content: "\ed86";
}
.icon-Turn-DownFromRight:before {
  content: "\ed87";
}
.icon-Turn-Left:before {
  content: "\ed88";
}
.icon-Turn-Left3:before {
  content: "\ed89";
}
.icon-Turn-Right:before {
  content: "\ed8a";
}
.icon-Turn-Right3:before {
  content: "\ed8b";
}
.icon-Turn-Up:before {
  content: "\ed8c";
}
.icon-Turn-Up2:before {
  content: "\ed8d";
}
.icon-Turtle:before {
  content: "\ed8e";
}
.icon-Tuxedo:before {
  content: "\ed8f";
}
.icon-TV:before {
  content: "\ed90";
}
.icon-Twister:before {
  content: "\ed91";
}
.icon-Twitter-2:before {
  content: "\ed92";
}
.icon-Twitter:before {
  content: "\ed93";
}
.icon-Two-Fingers:before {
  content: "\ed94";
}
.icon-Two-FingersDrag:before {
  content: "\ed95";
}
.icon-Two-FingersDrag2:before {
  content: "\ed96";
}
.icon-Two-FingersScroll:before {
  content: "\ed97";
}
.icon-Two-FingersTouch:before {
  content: "\ed98";
}
.icon-Two-Windows:before {
  content: "\ed99";
}
.icon-Type-Pass:before {
  content: "\ed9a";
}
.icon-Ukraine:before {
  content: "\ed9b";
}
.icon-Umbrela:before {
  content: "\ed9c";
}
.icon-Umbrella-2:before {
  content: "\ed9d";
}
.icon-Umbrella-3:before {
  content: "\ed9e";
}
.icon-Under-LineText:before {
  content: "\ed9f";
}
.icon-Undo:before {
  content: "\eda0";
}
.icon-United-Kingdom:before {
  content: "\eda1";
}
.icon-United-States:before {
  content: "\eda2";
}
.icon-University-2:before {
  content: "\eda3";
}
.icon-University:before {
  content: "\eda4";
}
.icon-Unlike-2:before {
  content: "\eda5";
}
.icon-Unlike:before {
  content: "\eda6";
}
.icon-Unlock-2:before {
  content: "\eda7";
}
.icon-Unlock-3:before {
  content: "\eda8";
}
.icon-Unlock:before {
  content: "\eda9";
}
.icon-Up--Down:before {
  content: "\edaa";
}
.icon-Up--Down3:before {
  content: "\edab";
}
.icon-Up-2:before {
  content: "\edac";
}
.icon-Up-3:before {
  content: "\edad";
}
.icon-Up-4:before {
  content: "\edae";
}
.icon-Up:before {
  content: "\edaf";
}
.icon-Upgrade:before {
  content: "\edb0";
}
.icon-Upload-2:before {
  content: "\edb1";
}
.icon-Upload-toCloud:before {
  content: "\edb2";
}
.icon-Upload-Window:before {
  content: "\edb3";
}
.icon-Upload:before {
  content: "\edb4";
}
.icon-Uppercase-Text:before {
  content: "\edb5";
}
.icon-Upward:before {
  content: "\edb6";
}
.icon-URL-Window:before {
  content: "\edb7";
}
.icon-Usb-2:before {
  content: "\edb8";
}
.icon-Usb-Cable:before {
  content: "\edb9";
}
.icon-Usb:before {
  content: "\edba";
}
.icon-User:before {
  content: "\edbb";
}
.icon-Ustream:before {
  content: "\edbc";
}
.icon-Vase:before {
  content: "\edbd";
}
.icon-Vector-2:before {
  content: "\edbe";
}
.icon-Vector-3:before {
  content: "\edbf";
}
.icon-Vector-4:before {
  content: "\edc0";
}
.icon-Vector-5:before {
  content: "\edc1";
}
.icon-Vector:before {
  content: "\edc2";
}
.icon-Venn-Diagram:before {
  content: "\edc3";
}
.icon-Vest-2:before {
  content: "\edc4";
}
.icon-Vest:before {
  content: "\edc5";
}
.icon-Viddler:before {
  content: "\edc6";
}
.icon-Video-2:before {
  content: "\edc7";
}
.icon-Video-3:before {
  content: "\edc8";
}
.icon-Video-4:before {
  content: "\edc9";
}
.icon-Video-5:before {
  content: "\edca";
}
.icon-Video-6:before {
  content: "\edcb";
}
.icon-Video-GameController:before {
  content: "\edcc";
}
.icon-Video-Len:before {
  content: "\edcd";
}
.icon-Video-Len2:before {
  content: "\edce";
}
.icon-Video-Photographer:before {
  content: "\edcf";
}
.icon-Video-Tripod:before {
  content: "\edd0";
}
.icon-Video:before {
  content: "\edd1";
}
.icon-Vietnam:before {
  content: "\edd2";
}
.icon-View-Height:before {
  content: "\edd3";
}
.icon-View-Width:before {
  content: "\edd4";
}
.icon-Vimeo:before {
  content: "\edd5";
}
.icon-Virgo-2:before {
  content: "\edd6";
}
.icon-Virgo:before {
  content: "\edd7";
}
.icon-Virus-2:before {
  content: "\edd8";
}
.icon-Virus-3:before {
  content: "\edd9";
}
.icon-Virus:before {
  content: "\edda";
}
.icon-Visa:before {
  content: "\eddb";
}
.icon-Voice:before {
  content: "\eddc";
}
.icon-Voicemail:before {
  content: "\eddd";
}
.icon-Volleyball:before {
  content: "\edde";
}
.icon-Volume-Down:before {
  content: "\eddf";
}
.icon-Volume-Up:before {
  content: "\ede0";
}
.icon-VPN:before {
  content: "\ede1";
}
.icon-Wacom-Tablet:before {
  content: "\ede2";
}
.icon-Waiter:before {
  content: "\ede3";
}
.icon-Walkie-Talkie:before {
  content: "\ede4";
}
.icon-Wallet-2:before {
  content: "\ede5";
}
.icon-Wallet-3:before {
  content: "\ede6";
}
.icon-Wallet:before {
  content: "\ede7";
}
.icon-Warehouse:before {
  content: "\ede8";
}
.icon-Warning-Window:before {
  content: "\ede9";
}
.icon-Watch-2:before {
  content: "\edea";
}
.icon-Watch-3:before {
  content: "\edeb";
}
.icon-Watch:before {
  content: "\edec";
}
.icon-Wave-2:before {
  content: "\eded";
}
.icon-Wave:before {
  content: "\edee";
}
.icon-Webcam:before {
  content: "\edef";
}
.icon-weight-Lift:before {
  content: "\edf0";
}
.icon-Wheelbarrow:before {
  content: "\edf1";
}
.icon-Wheelchair:before {
  content: "\edf2";
}
.icon-Width-Window:before {
  content: "\edf3";
}
.icon-Wifi-2:before {
  content: "\edf4";
}
.icon-Wifi-Keyboard:before {
  content: "\edf5";
}
.icon-Wifi:before {
  content: "\edf6";
}
.icon-Wind-Turbine:before {
  content: "\edf7";
}
.icon-Windmill:before {
  content: "\edf8";
}
.icon-Window-2:before {
  content: "\edf9";
}
.icon-Window:before {
  content: "\edfa";
}
.icon-Windows-2:before {
  content: "\edfb";
}
.icon-Windows-Microsoft:before {
  content: "\edfc";
}
.icon-Windows:before {
  content: "\edfd";
}
.icon-Windsock:before {
  content: "\edfe";
}
.icon-Windy:before {
  content: "\edff";
}
.icon-Wine-Bottle:before {
  content: "\ee00";
}
.icon-Wine-Glass:before {
  content: "\ee01";
}
.icon-Wink:before {
  content: "\ee02";
}
.icon-Winter-2:before {
  content: "\ee03";
}
.icon-Winter:before {
  content: "\ee04";
}
.icon-Wireless:before {
  content: "\ee05";
}
.icon-Witch-Hat:before {
  content: "\ee06";
}
.icon-Witch:before {
  content: "\ee07";
}
.icon-Wizard:before {
  content: "\ee08";
}
.icon-Wolf:before {
  content: "\ee09";
}
.icon-Woman-Sign:before {
  content: "\ee0a";
}
.icon-WomanMan:before {
  content: "\ee0b";
}
.icon-Womans-Underwear:before {
  content: "\ee0c";
}
.icon-Womans-Underwear2:before {
  content: "\ee0d";
}
.icon-Women:before {
  content: "\ee0e";
}
.icon-Wonder-Woman:before {
  content: "\ee0f";
}
.icon-Wordpress:before {
  content: "\ee10";
}
.icon-Worker-Clothes:before {
  content: "\ee11";
}
.icon-Worker:before {
  content: "\ee12";
}
.icon-Wrap-Text:before {
  content: "\ee13";
}
.icon-Wreath:before {
  content: "\ee14";
}
.icon-Wrench:before {
  content: "\ee15";
}
.icon-X-Box:before {
  content: "\ee16";
}
.icon-X-ray:before {
  content: "\ee17";
}
.icon-Xanga:before {
  content: "\ee18";
}
.icon-Xing:before {
  content: "\ee19";
}
.icon-Yacht:before {
  content: "\ee1a";
}
.icon-Yahoo-Buzz:before {
  content: "\ee1b";
}
.icon-Yahoo:before {
  content: "\ee1c";
}
.icon-Yelp:before {
  content: "\ee1d";
}
.icon-Yes:before {
  content: "\ee1e";
}
.icon-Ying-Yang:before {
  content: "\ee1f";
}
.icon-Youtube:before {
  content: "\ee20";
}
.icon-Z-A:before {
  content: "\ee21";
}
.icon-Zebra:before {
  content: "\ee22";
}
.icon-Zombie:before {
  content: "\ee23";
}
.icon-Zoom-Gesture:before {
  content: "\ee24";
}
.icon-Zootool:before {
  content: "\ee25";
}
/*! Flickity v2.0.2
http://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/*!
 *  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
 * -------------------------- */

.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);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-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);
  -ms-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 {
  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;
}
.body-container-wrapper form * {
  font-size: 22px;
}
@media (min-width: 992px) {
  [class*="height-"]#hero {
    min-height: 500px;
  }
}

@media (max-width:991px)  and (min-width:768px) {
  [class*="height-"]#hero {
    min-height: 350px;
  }
}

@media (max-width: 767px) {
  [class*="height-"]#hero {
    min-height: 250px;
  }
}

@media (min-width: 992px) {
  [class*="height-"] {
    min-height: 400px;
  }
}
@media (max-width:991px)  and (min-width:768px) {
  [class*="height-"] {
    min-height: 325px;
  }
}

@media (max-width: 767px) {
  [class*="height-"] {
    min-height: 275px;
  }
}

.height-60 {
  height: 60vh;
}
.height-60{
  padding: 5em 0;
}
@media (max-width: 992px) {
  .height-60 {
    height: 50vh;
  }
}
a:focus {
  text-decoration: none;
  outline: none;
}
.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;
}
.banner-area .dnd-section>.row-fluid {
  padding: 0;
}
.body-container-wrapper ul li, p {
  line-height: 1.6em;
}
.body-container-wrapper p a,
.body-container-wrapper  label a {
  line-height: 1.85714286em;
}
.body-container-wrapper ul, 
.body-container-wrapper ol,
.body-container-wrapper pre,
.body-container-wrapper table,
.body-container-wrapper blockquote {
  margin-bottom: 1.85714286em;
}

.body-container-wrapper .dnd-section {
  padding-bottom: 40px;
}
.banner-section .dnd-section {
  padding-bottom: 0 !important;
}
[data-tooltip]:after {
  transition: all .2s ease;
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 0;
  /* transform: translateX(-50%); */
  background: #252525;
  color: #fff;
  border: 1px solid #e7e7e7;
  padding: 2px 12px;
  pointer-events: none;
  white-space: normal;
  font-size: 11px;
  line-height: 18px;
  font-weight: 600;
  border-radius: 2px;
  z-index: 2;
  font-family: 'Open Sans';
}
[data-tooltip] {
  border-bottom: dotted 1px rgba(0,0,0,0.5);
}

[data-tooltip] {
  position: relative;
  overflow: visible;
}
[data-tooltip]:after {
  text-indent: 0px !important;
  background: #10222b;
  padding: 5px 10px;
  max-width: 80vw;
  width: 300px;
}
[data-tooltip]:not(:hover):after {
  opacity: 0;
}
.hs-button {
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  border-radius: 6px;
  padding-top: 0.46428571em;
  padding-bottom: 0.46428571em;
  padding-right: 2.78571429em;
  padding-left: 2.78571429em;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid #252525;
  border-width: 1px;
  font-size: inherit;
  line-height: 1.85714286em;
  border: 4px #10222b solid;
  background: #10222b;
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  font-size: 1em !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "futura-pt", sans-serif;
  border-color: #252525;
  font-weight: 700;
}
.hs-button:hover {
  background: #fff;
  border: 4px #10222b solid;
}



.row1-full-width table {
  border: #10222b 4px solid;
  font-size: 1.2em;
  text-align: left;
}
.row1-full-width table {
  width: 100%;
  margin-bottom: 1.85714286em;
  border-collapse: separate;
}
.row1-full-width table th {
  background: #fafafa;
  color: #252525;
}
.row1-full-width table thead tr th {
  text-align: left;
  background-color: #10222b;
  color: #fff;
  border: 0;
}
.row1-full-width table th, 
.row1-full-width table td {
  padding: 0.92857143em;
}
.row1-full-width table th p {
  text-align: left;
  color: #fff;
  font-size: 18px;
  margin-bottom: 0;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
}
.notification.notification--dismissed {
  animation: fade-out 0.4s linear 0s forwards;
  -webkit-animation: fade-out 0.4s linear 0s forwards;
  -moz-animation: fade-out 0.4s linear 0s forwards;
  pointer-events: none;
}

.row1-full-width  table th,
.row1-full-width table td {
  padding: 0.92857143em;
  border: 0;
}
.row1-full-width table td p {
  text-align: left;
  font-size: 18px;
  margin-bottom: 0;
  font-family: "futura-pt", sans-serif;
  color: #58595b;
  line-height: 1.6em;
}

.row1-full-width table thead {
  margin: 0;
  padding: 0;
}
.row1-full-width table tbody tr:nth-child(even) {
  background-color: rgba(0,0,0,0.04) !important;
}

@keyframes from-bottom {
  from {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-moz-keyframes from-bottom {
  from {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes from-bottom {
  from {
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes fade-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
img{
  max-width:100%;
  height:auto;
}
.row1-full-width table {
  border-collapse: collapse;
}

.row1-full-width table th, 
.row1-full-width table td {
  vertical-align: middle;
}
.row1-full-width img {
  display: block;
}
.digital-wallet-page.body-container-wrapper p:last-child {
  margin-bottom: 1.85714286em;
}

.digital-wallet-page .vimeo-video-wrapper iframe {
  padding: 0 9px;
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 4px;
}
.row1-full-width img {
  display: block;
  max-width: 100%;
}
.digital-wallet-page .vimeo-video-wrapper {
  text-align: center;
}
[data-overlay="5"]:before {
  opacity: 0.5;
}
[data-overlay]:before {
  position: absolute;
  content: '';
  background: #252525;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
*[class*='hr-'][class*='-after']::after, *[class*='hr-'][class*='-before']::before {
  height: 5px;
  content: "";
  display: block;
  width: 75%;
  margin: 15px 0;
}
[class*='hr-white']::after, [class*='hr-white']::before {
  background-color: #fff;
}
.contact-page p:last-child {
  margin-bottom: 1.85714286em;
}

.row4-contact .span6 p {
  margin: 0;
}

.row4-contact .span6 {
  margin-bottom: 3.71428571em;
}

.contact-page .span4 {
  margin-bottom: 1.85714286em;
}
.about-page p:last-child {
  margin-bottom: 1.85714286em;
}
.row3-about .dnd-section>.row-fluid {
  padding: 0;
}
[data-overlay="8"]:before {
  opacity: 0.8;
}

[data-overlay]:before {
  position: absolute;
  content: '';
  background: #252525;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
div#overflow {
  overflow-x: auto;
}
.row7-contact .dnd-section {
  padding-top: 140px;
}
.digital-wallet-page.body-container-wrapper ul li {
  font-size: 22.4px;
  line-height: 35.5px;
}
.cash-coach-page.body-container-wrapper p, 
.cash-coach-page.body-container-wrapper li {
  margin-bottom: 1.85714286em;
}
.cash-coach-page.body-container-wrapper ol li {
  font-size: 22.4px;
  line-height: 35.7px;
}
.cash-coach-page .container-fluid.row1-full-width {
  padding-bottom: 20px;
}
.cash-coach-page.body-container-wrapper ol li:last-child {
  margin-bottom: 0;
}
.cash-coach-page.body-container-wrapper a {
  transition: 0.2s;
  color: #12303f;
  text-decoration: none;
}
.cash-coach-page.body-container-wrapper ol {
  padding-left: 26px;
}



.pdf-popup.modal-container {
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.pdf-popup.modal-container.modal-active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.pdf-popup.modal-container:before {
  background: rgba(0, 0, 0, 0.85);
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.pdf-popup.modal-container .modal-content {
  backface-visibility: hidden;
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  max-height: 100%;
  overflow-y: scroll;
  border: none;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.pdf-popup.modal-container .modal-content {
  max-height: 95%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
}
.pdf-popup.modal-container .modal-content:not(.height--natural) {
  height: auto;
  width: auto;
}
.pdf-popup .boxed {
  position: relative;
  overflow: hidden;
  padding: 1.85714286em;
  margin-bottom: 30px;
}


.pdf-popup .boxed.boxed--lg {
  padding: 2.78571429em;
}
.pdf-popup .boxed:not([class*='bg-']) {
  background: #ffffff;
}
.pdf-popup.modal-container .modal-content .modal-close-cross {
  cursor: pointer;
  position: absolute;
  opacity: .5;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  top: 1em;
  right: 1em;
  z-index: 99;
}
.pdf-popup.modal-container .modal-content .modal-close-cross:before {
  content: '\00D7';
  font-size: 1.5em;
}
.pdf-popup .color--blue {
  color: #10222b;
}
.pdf-popup *[class*='hr-'][class*='-after']::after,
.pdf-popup  *[class*='hr-'][class*='-before']::before {
  height: 5px;
  content: "";
  display: block;
  width: 75%;
  margin: 15px 0;
}

.pdf-popup [class*='hr-blue']::after,
.pdf-popup  [class*='hr-blue']::before {
  background-color: #10222b;
}
.pdf-popup p{
  margin-bottom: 1.85714286em;
  font-family: "futura-pt", sans-serif;
  color: #58595b;
  font-size: 22px;
  line-height: 1.6em;
}
.pdf-popup p a{
  text-decoration: underline;
  cursor: pointer;
  color: #6b7c3e;
  font-weight: 400;
  line-height: 1.85714286em;
}
.pdf-popup p a:hover {
  color: #10222b;
  text-decoration: none !important;
}
.pdf-popup .btn.btn-green {
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  border-radius: 6px;
  padding-top: 0.46428571em;
  padding-bottom: 0.46428571em;
  padding-right: 2.78571429em;
  padding-left: 2.78571429em;
  border: 1px solid #252525;
  border-width: 1px;
  font-size: inherit;
  line-height: 1.85714286em;
  border: 4px #6b7c3e solid !important;
  background: #6b7c3e !important;
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  color: #fff !important;
  border-color: #252525;
  font-weight: 700;
  font-size: 1em !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "futura-pt", sans-serif;
  display: inline-block;
  text-decoration: none;
  border-radius:0;
}

.pdf-popup .btn.btn-blue {
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  border-radius: 6px;
  padding-top: 0.46428571em;
  padding-bottom: 0.46428571em;
  padding-right: 2.78571429em;
  padding-left: 2.78571429em;
  border: 1px solid #252525;
  border-width: 1px;
  font-size: inherit;
  line-height: 1.85714286em;
  border: 4px #10222b solid !important;
  background: #10222b !important;
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  display: inline-block;
  font-size: 1em !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  color: #fff !important;
  border-radius:0;
}

.pdf-popup .row.text-center.clearfix {
  text-align: center;
}
.pdf-popup .btn.btn-green:hover span {
  color: #6b7c3e !important;
}
.pdf-popup .btn.btn-green:hover {
  border: 4px #6b7c3e solid !important;
  background: #fff !important;
}
.pdf-popup .btn.btn-blue:hover {
  background: #fff !important;
  border: 4px #10222b solid !important;
}
.pdf-popup .btn.btn-blue:hover span {
  color: #10222b !important;
}
.pdf-popup.modal-container ::-webkit-scrollbar {
  width: 0;
}
.balance-transfer-rates-page p:last-child {
  margin-bottom: 1.85714286em;
}

.balance-transfer-rates-page h3 strong {
  font-weight: 400;
}

.row1-balance-transfer-rates h3 {
  margin-top: 10px;
}

.balance-transfer-rates-page.body-container-wrapper li {
  font-size: 22.4px;
  line-height: 35.7px;
}

.balance-transfer-rates-page.body-container-wrapper li a {
  transition: 0.2s;
  color: #10222b;
  text-decoration: none;
}

.row1-balance-transfer-rates .dnd-section {
  margin-bottom: 5em;
}
div[class*="full-width-section"] >.row-fluid {
  padding: 0;
}
.row1-balance-transfer-rates .content-with-background:before {
  opacity: 0.5;
}
.row1-balance-transfer-rates .content-with-background.cover {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 50px;
  min-height: 300px;
  height: 50vh;
  display: flex;
  align-items: center;
}

.row3-balance-transfer-rates .dnd-section {
  padding-bottom: 60px;
}
@media all and (-ms-high-contrast:none) {
  .gallery-slider .pos-vertical-center h3 {
    font-size: 40px !important;
  }
}
.button-link-wrapper a {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Open Sans', 'Helvetica', 'Arial', sans-serif;
  transition: 0.1s linear;
  -webkit-transition: 0.1s linear;
  -moz-transition: 0.1s linear;
  border-radius: 6px;
  padding-top: 0.46428571em;
  padding-bottom: 0.46428571em;
  padding-right: 2.78571429em;
  padding-left: 2.78571429em;
  border: 1px solid #252525;
  border-width: 1px;
  font-size: inherit;
  line-height: 1.85714286em;
  background: transparent;
  border: 2px #fff solid !important;
  border-radius: 0;
  font-size: 1em !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "futura-pt", sans-serif;
  border-color: #252525;
  font-weight: 700;
  text-decoration: none;
}

.row1-balance-transfer-rates .content-with-background.cover.imagebg.parallax.text-center p {
  margin-bottom: 1.85714286em;
}

.row1-balance-transfer-rates .button-link-wrapper a:hover {
  background: #fff;
  color: #10222b !important;
}

.row5-home  .content-with-background.cover.imagebg.parallax.text-center p {
  margin-bottom: 1.85714286em;
}
.row4-home .hs_cos_wrapper_type_rich_text {
  display: block;
  margin-bottom: 5.57142857em;
}
.row4-home h3 {
  text-align: center;
}
.row5-home  .content-with-background:before {
  opacity: 0.5;
}
.row5-home .content-with-background .content-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.row5-home .content-with-background.cover.imagebg.parallax.text-center {
  height: 60vh;
  padding: 5em 0 !important;
}
.body-container-wrapper .row4-home .dnd-section {
  padding: 150px 0;
}
@media (max-width: 1200px) {
  .body-container-wrapper .row4-home .dnd-section {
    padding: 100px 0;
  }
}
@media (max-width: 992px) {
  .body-container-wrapper .row4-home .dnd-section {
    padding: 50px 0;
  }
}
.row1-home .dnd-section {
  padding-top: 100px;
}
@media (max-width: 992px) {
  .row1-home .dnd-section {
    padding-top: 40px;
  }
}
.row1-home .dnd-section p:last-child {
  margin-bottom: 1.85714286em;
}
.row4-home h3 {
  text-align: center;
  margin: 0;
  padding-bottom: 10px !important;
}

.our-servies a {
  text-decoration: none;
}
.body-container--landing-page h1 {
  font-size: 4em;
}
.hamburger-toggle {
  cursor: pointer;
}
.notification--dismissed {
  display: none;
}

 .row1-full-width table{
border-collapse: separate;
border-spacing: 0;
}
@media (max-width: 992px){
  .pdf-popup .color--blue {
    font-size: 3.5em;
  }
  .digital-wallet-page.body-container-wrapper ul li {
    font-size: 1.6em;
    line-height: 1.6em;
    font-family: "futura-pt", sans-serif;
    color: #58595b;
  }
}
@media (min-width: 768px){
  .cm-col-sm-6 {
    width: 50%;
  }
}
@media (min-width: 992px){
  .cm-col-md-4 {
    width: 33.33333333%;
  }
}


@media (max-height: 900px) and (min-width: 992px){
  .body-container-wrapper h2 {
    font-size: 4.5em;
  }
  .body-container-wrapper h5 {
    font-size: 2em;
  }
  .body-container-wrapper h4 {
    font-size: 2.5em;
  }
  .modal-container h3,
  .body-container-wrapper h3 {
    font-size: 3.5em;
  }
  .homepage-banner h1 {
    font-size: 7.5em !important;
  }
}
@media (max-width: 767px){
  .dnd-section > .row-fluid,
  .header__container,
  .page-center,
  .content-wrapper {
    max-width: 100% !important;
  }
  .height-60 {
    padding: 4em 0;
    height: auto;
  }
  .digital-wallet-page .vimeo-video-wrapper iframe {
    padding: 0;
    min-height: 220px;
    height: 100%;
  }
  .contact-page .span4 {
    margin-bottom: 0;
  }
  .pdf-popup.modal-container .modal-content {
    width: 97% !important;
    height: auto !important;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .pdf-popup .boxed.boxed--lg {
    padding: 15px;
    margin-bottom: 15px;
  }
  .balance-transfer-rates-page.body-container-wrapper li {
    font-size: 20.4px;
    line-height: 32.7px;
  }
  .row1-balance-transfer-rates ul {
    padding-left: 26px;
  }
  .row5-home .content-with-background.cover.imagebg.parallax.text-center {
    height: 50vh;
    padding: 4em 0 !important;
    height: auto;
  } 
  .row5-home .content-with-background .content-wrapper {
    position: relative;
    top: 0;
    transform: translateY(00%);
    -webkit-transform: translateY(00%);
  }
}
@media (max-width: 500px){
  [data-tooltip]:after {
    left: auto;
    right: 0;
  }
  .row1-full-width table td p {
    font-size: 13px;
  }

  .row1-full-width table th p {
    font-size: 15px;
  }

  .row1-full-width table th, .row1-full-width table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  .full-width .row1-full-width h2 {
    font-size: 3em !important;
  }
}
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
/*# sourceMappingURL=slick.min.css.map */
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}