/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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;
}

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

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

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

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, 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: bold;
}

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

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

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 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;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

/**
 * 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 and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 1440px;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 40px;
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: 1440px;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section {
    padding: 20px;
  }

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

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

html {
  
}

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: Overpass;
  color: var(--text-dark-80, rgba(14, 14, 30, 0.80));
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  line-height: 150%;
  letter-spacing: 0.16px;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: none;
  color: #7B4CE8;
}

a:hover, a:active {
  color: inherit;
  text-decoration: inherit;
}

/* Headings */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin: 0 0 1.4rem;
  font-family: Poppins;
}

h1, .h1 {
  font-size: 72px;
  line-height: 1.3;
  font-weight: 300;
  font-style: normal;
}

h2, .h2 {
  font-size: 40px;
  font-weight: 300;
}

h3, .h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 128.571%;
  letter-spacing: 0.28px;
}

h4, .h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  letter-spacing: 0.24px;
} 

h5, .h5 {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.2px;
} 

h6, .h6 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; 
  letter-spacing: 0.16px;
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 32px;
  }

  h2, .h2 {
    font-size: 28px;
  }

  h3, .h3 {
    font-size: 24px;
  }

  h4, .h4 {
    font-size: 20px;
  } 

  h5, .h5 {
    font-size: 16px;
  } 

  h6, .h6 {
    font-size: 14px;
  }
}


/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

ul.no-list li {
  margin: 0;
}

li {
  margin-bottom: 10px;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.breadcrumbs.breadcrumbs--center {
    justify-content: center;
    text-align: center;
}

.breadcrumbs.breadcrumbs--right {
    justify-content: flex-end;
}

.breadcrumb {
    font-family: Poppins;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(14, 14, 30, 0.32);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.breadcrumb:after {
    content: '';
    background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/right-arrow.svg);
    background-size: 12px 12px;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    display: inline-block;
}

span.breadcrumb {
    display: inline-flex;
    align-items: center;
    color: #0E0E1E;
}

.breadcrumb:last-child:after {
    display: none;
}

a.breadcrumb:hover {
    text-decoration: underline;
    color: #916dfa;
}

@media (max-width: 768px) {
    .breadcrumbs {
        max-width: 100%;
        gap: 5px;
        justify-content: center;
    }

    .breadcrumb {
        gap: 5px;
    }
}
button,
.button,
.hs-button, .cta a {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  white-space: normal;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 44px;
  border: 0;
  font-family: Poppins;
  font-size: 14px;
  line-height: 170%;
  text-decoration: none;
  font-weight: 500;
  transition: padding-right 0.3s ease;
  background-color: #0E0E1E;
  color: #FAFAFC;
  position: relative;
}

.cta > div {
  display: inline-block;
}

.button.button--light, .cta.cta--light a {
  background-color: #FAFAFC;
  color: #0E0E1E;
}

button:hover,
.button:hover,
.hs-button:hover,
.cta a:hover {
  color: #FAFAFC;
}

.button.button--light:hover, 
.button.button--outlined:hover,
.cta.cta--light a:hover, 
.cta.cta--outlined a:hover {
  color: #0E0E1E;
}

.button.button--gradient:hover,
.cta.cta--gradient a:hover {
  color: #FAFAFC;
}

.button.button--outlined,
.cta.cta--outlined a {
  background-color: transparent;
  color: #0E0E1E;
  border: 1px solid #0E0E1E;
}

.button.button--gradient,
.cta.cta--gradient a {
  background: var(--Gradient-button-safir-iolit-hover, linear-gradient(90deg, #7B4CE8 0%, #5112AD 76%, #000F60 100%));
  color: #FAFAFC;
}

.button.button--light.button--outlined,
.cta.cta--light.cta--outlined a {
  color: #FAFAFC;
  border-color: #FAFAFC;
}

.button--arrow
.cta--arrow a {
  position: relative; 
}

.button--arrow:after,
.cta--arrow a:after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/arrow-right-white.svg);
  background-size: 16px 16px;
  display: block;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  position: absolute;
  right: 12px;
  top: 15px;
}

/* Standardikoner */
.button--arrow.button--outlined:after, 
.button--light:after,
.cta--arrow.cta--outlined a:after, 
.cta--light a:after {
  background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/right-arrow.svg);
}

.button--light.button--arrow.button--outlined:after, 
.button--light.button--gradient:after,
.cta--light.cta--arrow.cta--outlined a:after, 
.cta--light.cta--gradient a:after {
  background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/arrow-right-white.svg);
}






.button--arrow:hover,
.cta--arrow a:hover {
  padding-right: 40px;
}

.button--arrow:hover:after,
.cta--arrow a:hover:after {
  opacity: 1;
  transform: translateX(0);
}

.button--arrow-only {
  width: 48px;
}

.button--arrow-only:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/arrow-right-white.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
}

.button--arrow-only.button--arrow-only--reverse:after {
  transform: rotate(180deg);
}

.button--arrow-only.button--outlined:after, .button--light.button--arrow-only:after {
  background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/right-arrow.svg);
}

.button--light.button--arrow-only.button--outlined:after, .button--light.button--arrow-only.button--gradient:after {
  background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/arrow-right-white.svg);
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: 300;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}


@media (max-width: 768px) {
    button,
  .button,
  .hs-button, .cta a {
    padding: 12px 15px;
  }

  button, .button, .cta, .cta a, .cta > div {
    display: block;
  }

  .button--arrow:after,
  .cta--arrow a:after {
    display: none;
  }

  .button--arrow:hover,
  .cta--arrow a:hover {
    padding-right: 15px;
  }
}
.card {
    min-width: 300px;
    border: 1px solid #e2e2e2;
    padding: 40px 32px 32px 32px;
    border-radius: 16px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: Poppins;
    font-size: 14px;
}

.card img {
    width: 50%;
    margin: 30px auto 50px auto;
}

a.card:hover img {
    filter: brightness(0) invert(1);
}

a.card {
    color: inherit;
    background-size: cover;
    transition: color 0.2s ease;
}

a.card:hover {
    background-image: url("//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/card-hover-bg.png");
}

a.card:hover .card__arrow img {
    content: url("//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/arrow-right-white.svg");
}

a.card {
    transition: color 0.2s ease;
}

a.card:hover, a.card:hover {
    color: white;
}

.card__button {
    padding-top: 20px;
}

a.card:before {
    
}

a.card:after {
    content: '';
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: 1px solid black;
    transition: width 0.2s ease, padding 0.2s ease;
    background-image: url("//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/right-arrow.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center center;
    display: inline-flex;
    align-items: center;
}

a.card:hover:after {
    content: 'Läs mer';
    width: fit-content;
    border-color: white;
    background-image: url("//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/arrow-right-white.svg");
    background-position: center right 15px;
    padding: 0 40px 0 20px;
}
.form--light {
  color: #FAFAFC;
}

.form--light select option {
  color: #0E0E1E;
}


/* Fields */
.hs-form-field {
  margin-bottom: 1.4rem;
  background-color: transparent;
  padding-bottom: 0.7rem; /* Endast padding i botten */
}

/* Labels */
form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: #0E0E1E; 
  opacity: 80%;
}

.form--light label {
  color: #FAFAFC; 
}

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
  color: #0E0E1E;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #0E0E1E; 
  outline: none; 
  transition: border-color 0.3s ease; 
}

.form--light input[type=text],
.form--light input[type=search],
.form--light input[type=email],
.form--light input[type=password],
.form--light input[type=tel],
.form--light input[type=number],
.form--light input[type=file],
.form--light select,
.form--light textarea {
  color: #FAFAFC;
  border-bottom: 1px solid #FAFAFC; 
}


form input[type=text]:focus,
form input[type=search]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: #7B4CE8;
  border-width: 2px;
}

form input[type=text]::placeholder,
form input[type=search]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form textarea::placeholder {
  color: #0E0E1E;
  opacity: 1;
}

.form--light input[type=text]::placeholder,
.form--light input[type=search]::placeholder,
.form--light input[type=email]::placeholder,
.form--light input[type=password]::placeholder,
.form--light input[type=tel]::placeholder,
.form--light input[type=number]::placeholder,
.form--light input[type=file]::placeholder,
.form--light textarea::placeholder {
  color: #FAFAFC;
  opacity: 1;
}

form textarea {
  resize: vertical;
  height: 70px;
}

/* Links in forms */
form a {
  color: #7B4CE8; /* Länkfärg */
  text-decoration: none;
  transition: color 0.3s;
}

form a:hover {
  text-decoration: underline;
  color: #7B4CE8; /* Länkfärg */
}

/* Fields */
.hs-form-field {
  margin-bottom: 1.4rem;

}

/* Labels */
form label {
  display: block;
  font-size: 12px;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 40px;
}

/* Help text */
form legend {
  font-size: 0.875rem;
}

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 - date picker */
.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 {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
  color: color: #0E0E1E;
}

.form--light .hs-richtext,
.form--light .hs-richtext p {
  color: color: #FAFAFC;
}

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;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }


.submitted-message {
    color: var(--form-text-color);
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px 12px 25px;
    border-radius: 8px;
    background: #F4F4F8;
    font-size: 14px;
    font-weight: 500;
    color: #212121;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    max-width: fit-content;
    font-family: Poppins;
}


a.tag:hover {
    background: rgba(140, 134, 219, 0.20);
}


a.tag:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    background-image: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/right-arrow.svg);
    right: 10px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-8px); 
    opacity: 0;
}

a.tag:hover:after {
    opacity: 1; 
    transform: translateX(0); 
}

@media (max-width: 768px) {
    .tag {
        padding: 12px 10px;
    }

    a.tag:after {
        display: none;
    }
}
.image {
    border-radius: 24px;
    width: 550px;
    height: 550px;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.image.image--hover:hover {
    transform: scale(1.03);
}

.image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 600px) {
    .image {
        width: 450px;
        height: 450px;
    }
}

/* Fonts
*/
[class^="ex-icon-"], [class*=" ex-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'exsitec-icons' !important;
  speak: never;
  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;
}

.ex-icon-sign:before {
  content: "\e900";
}
.ex-icon-h-assistance:before {
  content: "\e901";
}
.ex-icon-accept:before {
  content: "\e902";
}
.ex-icon-accept-2:before {
  content: "\e903";
}
.ex-icon-account-error:before {
  content: "\e904";
}
.ex-icon-account-female-setting:before {
  content: "\e905";
}
.ex-icon-add:before {
  content: "\e906";
}
.ex-icon-add-2:before {
  content: "\e907";
}
.ex-icon-add-circle:before {
  content: "\e908";
}
.ex-icon-add-database:before {
  content: "\e909";
}
.ex-icon-add-document:before {
  content: "\e90a";
}
.ex-icon-add-folder:before {
  content: "\e90b";
}
.ex-icon-add-geotag:before {
  content: "\e90c";
}
.ex-icon-add-image:before {
  content: "\e90d";
}
.ex-icon-add-item-to-cart:before {
  content: "\e90e";
}
.ex-icon-add-layer:before {
  content: "\e90f";
}
.ex-icon-add-location:before {
  content: "\e910";
}
.ex-icon-add-location-2:before {
  content: "\e911";
}
.ex-icon-add-map-marker:before {
  content: "\e912";
}
.ex-icon-add-map-pin:before {
  content: "\e913";
}
.ex-icon-add-marker:before {
  content: "\e914";
}
.ex-icon-add-note:before {
  content: "\e915";
}
.ex-icon-add-pin:before {
  content: "\e916";
}
.ex-icon-add-place:before {
  content: "\e917";
}
.ex-icon-address-book:before {
  content: "\e918";
}
.ex-icon-address-book-2:before {
  content: "\e919";
}
.ex-icon-address-book-3:before {
  content: "\e91a";
}
.ex-icon-add-server:before {
  content: "\e91b";
}
.ex-icon-add-square:before {
  content: "\e91c";
}
.ex-icon-add-to-basket:before {
  content: "\e91d";
}
.ex-icon-add-to-cart:before {
  content: "\e91e";
}
.ex-icon-add-to-shopping-cart:before {
  content: "\e91f";
}
.ex-icon-add-to-wishlist:before {
  content: "\e920";
}
.ex-icon-add-user:before {
  content: "\e921";
}
.ex-icon-add-user-2:before {
  content: "\e922";
}
.ex-icon-add-woman-user:before {
  content: "\e923";
}
.ex-icon-add-woman-user-2:before {
  content: "\e924";
}
.ex-icon-adjust-diagonal:before {
  content: "\e925";
}
.ex-icon-adjust-diagonal-2:before {
  content: "\e926";
}
.ex-icon-admin:before {
  content: "\e927";
}
.ex-icon-agenda:before {
  content: "\e928";
}
.ex-icon-aircraft-climb:before {
  content: "\e929";
}
.ex-icon-aircraft-landing:before {
  content: "\e92a";
}
.ex-icon-airplane:before {
  content: "\e92b";
}
.ex-icon-airplane-landing:before {
  content: "\e92c";
}
.ex-icon-airplane-mode:before {
  content: "\e92d";
}
.ex-icon-airplane-takeoff:before {
  content: "\e92e";
}
.ex-icon-airport:before {
  content: "\e92f";
}
.ex-icon-airport-trolley:before {
  content: "\e930";
}
.ex-icon-airship:before {
  content: "\e931";
}
.ex-icon-alarm-clock:before {
  content: "\e932";
}
.ex-icon-alarm-sound:before {
  content: "\e933";
}
.ex-icon-alcohol:before {
  content: "\e934";
}
.ex-icon-alcohol-bottle:before {
  content: "\e935";
}
.ex-icon-alert:before {
  content: "\e936";
}
.ex-icon-align-bottom:before {
  content: "\e937";
}
.ex-icon-align-left:before {
  content: "\e938";
}
.ex-icon-align-right:before {
  content: "\e939";
}
.ex-icon-align-top:before {
  content: "\e93a";
}
.ex-icon-all-caps:before {
  content: "\e93b";
}
.ex-icon-alt-key:before {
  content: "\e93c";
}
.ex-icon-angle-brackets:before {
  content: "\e93d";
}
.ex-icon-angle-brackets-2:before {
  content: "\e93e";
}
.ex-icon-angle-down:before {
  content: "\e93f";
}
.ex-icon-angle-down-circle:before {
  content: "\e940";
}
.ex-icon-angle-left:before {
  content: "\e941";
}
.ex-icon-angle-left-circle:before {
  content: "\e942";
}
.ex-icon-angle-right:before {
  content: "\e943";
}
.ex-icon-angle-right-circle:before {
  content: "\e944";
}
.ex-icon-angle-up:before {
  content: "\e945";
}
.ex-icon-angle-up-circle:before {
  content: "\e946";
}
.ex-icon-angry-emoji:before {
  content: "\e947";
}
.ex-icon-antenna-gps:before {
  content: "\e948";
}
.ex-icon-app-layout:before {
  content: "\e949";
}
.ex-icon-apple:before {
  content: "\e94a";
}
.ex-icon-apple-2:before {
  content: "\e94b";
}
.ex-icon-appointment:before {
  content: "\e94c";
}
.ex-icon-approve-comment:before {
  content: "\e94d";
}
.ex-icon-archive:before {
  content: "\e94e";
}
.ex-icon-archive-2:before {
  content: "\e94f";
}
.ex-icon-archive-box:before {
  content: "\e950";
}
.ex-icon-archive-box-2:before {
  content: "\e951";
}
.ex-icon-archive-folder:before {
  content: "\e952";
}
.ex-icon-archive-folder-2:before {
  content: "\e953";
}
.ex-icon-archive-settings:before {
  content: "\e954";
}
.ex-icon-army:before {
  content: "\e955";
}
.ex-icon-arrow-down:before {
  content: "\e956";
}
.ex-icon-arrow-down-circle:before {
  content: "\e957";
}
.ex-icon-arrow-down-square:before {
  content: "\e958";
}
.ex-icon-arrow-left:before {
  content: "\e959";
}
.ex-icon-arrow-left-circle:before {
  content: "\e95a";
}
.ex-icon-arrow-left-down:before {
  content: "\e95b";
}
.ex-icon-arrow-left-square:before {
  content: "\e95c";
}
.ex-icon-arrow-left-up:before {
  content: "\e95d";
}
.ex-icon-arrow-right:before {
  content: "\e95e";
}
.ex-icon-arrow-right-circle:before {
  content: "\e95f";
}
.ex-icon-arrow-right-down:before {
  content: "\e960";
}
.ex-icon-arrow-right-square:before {
  content: "\e961";
}
.ex-icon-arrow-right-up:before {
  content: "\e962";
}
.ex-icon-arrow-up:before {
  content: "\e963";
}
.ex-icon-arrow-up-circle:before {
  content: "\e964";
}
.ex-icon-arrow-up-square:before {
  content: "\e965";
}
.ex-icon-article:before {
  content: "\e966";
}
.ex-icon-article-2:before {
  content: "\e967";
}
.ex-icon-asian-cuisine:before {
  content: "\e968";
}
.ex-icon-asterisk-bulleted-list:before {
  content: "\e969";
}
.ex-icon-atm:before {
  content: "\e96a";
}
.ex-icon-attachment:before {
  content: "\e96b";
}
.ex-icon-auction:before {
  content: "\e96c";
}
.ex-icon-audio-book:before {
  content: "\e96d";
}
.ex-icon-audio-call:before {
  content: "\e96e";
}
.ex-icon-audio-file:before {
  content: "\e96f";
}
.ex-icon-auto:before {
  content: "\e970";
}
.ex-icon-autobus:before {
  content: "\e971";
}
.ex-icon-automobile:before {
  content: "\e972";
}
.ex-icon-autosave:before {
  content: "\e973";
}
.ex-icon-avatar:before {
  content: "\e974";
}
.ex-icon-back:before {
  content: "\e975";
}
.ex-icon-back-arrow:before {
  content: "\e976";
}
.ex-icon-backpack:before {
  content: "\e977";
}
.ex-icon-backup-archive:before {
  content: "\e978";
}
.ex-icon-backup-error:before {
  content: "\e979";
}
.ex-icon-backup-settings:before {
  content: "\e97a";
}
.ex-icon-bacon:before {
  content: "\e97b";
}
.ex-icon-badge:before {
  content: "\e97c";
}
.ex-icon-bad-reception:before {
  content: "\e97d";
}
.ex-icon-balloon-whisk:before {
  content: "\e97e";
}
.ex-icon-ballpoint-pen:before {
  content: "\e97f";
}
.ex-icon-banana:before {
  content: "\e980";
}
.ex-icon-bank-cards:before {
  content: "\e981";
}
.ex-icon-bank-check:before {
  content: "\e982";
}
.ex-icon-bank-notes:before {
  content: "\e983";
}
.ex-icon-ban-user:before {
  content: "\e984";
}
.ex-icon-bar:before {
  content: "\e985";
}
.ex-icon-barbecue:before {
  content: "\e986";
}
.ex-icon-barbecue-grill:before {
  content: "\e987";
}
.ex-icon-bar-chart:before {
  content: "\e988";
}
.ex-icon-basket:before {
  content: "\e989";
}
.ex-icon-beach:before {
  content: "\e98a";
}
.ex-icon-beach-ball:before {
  content: "\e98b";
}
.ex-icon-beer-bottle:before {
  content: "\e98c";
}
.ex-icon-beer-glass:before {
  content: "\e98d";
}
.ex-icon-beer-pint:before {
  content: "\e98e";
}
.ex-icon-bestseller-book:before {
  content: "\e98f";
}
.ex-icon-bill:before {
  content: "\e990";
}
.ex-icon-bill-2:before {
  content: "\e991";
}
.ex-icon-bills:before {
  content: "\e992";
}
.ex-icon-binocular:before {
  content: "\e993";
}
.ex-icon-birthday:before {
  content: "\e994";
}
.ex-icon-birthday-cake:before {
  content: "\e995";
}
.ex-icon-bitcoin:before {
  content: "\e996";
}
.ex-icon-bitcoin-badge:before {
  content: "\e997";
}
.ex-icon-bitcoin-sign:before {
  content: "\e998";
}
.ex-icon-bitcoin-unit:before {
  content: "\e999";
}
.ex-icon-blender:before {
  content: "\e99a";
}
.ex-icon-block-female-user:before {
  content: "\e99b";
}
.ex-icon-block-user:before {
  content: "\e99c";
}
.ex-icon-bluetooth:before {
  content: "\e99d";
}
.ex-icon-boat:before {
  content: "\e99e";
}
.ex-icon-boiled-egg:before {
  content: "\e99f";
}
.ex-icon-bold:before {
  content: "\e9a0";
}
.ex-icon-bold-text:before {
  content: "\e9a1";
}
.ex-icon-book:before {
  content: "\e9a2";
}
.ex-icon-bookmark:before {
  content: "\e9a3";
}
.ex-icon-bookmark-2:before {
  content: "\e9a4";
}
.ex-icon-bookmark-archive:before {
  content: "\e9a5";
}
.ex-icon-bookmark-ribbon:before {
  content: "\e9a6";
}
.ex-icon-bookmark-ribbon-2:before {
  content: "\e9a7";
}
.ex-icon-books:before {
  content: "\e9a8";
}
.ex-icon-bookshelf:before {
  content: "\e9a9";
}
.ex-icon-boombox:before {
  content: "\e9aa";
}
.ex-icon-boombox-2:before {
  content: "\e9ab";
}
.ex-icon-box:before {
  content: "\e9ac";
}
.ex-icon-boy:before {
  content: "\e9ad";
}
.ex-icon-bread:before {
  content: "\e9ae";
}
.ex-icon-bread-loaf:before {
  content: "\e9af";
}
.ex-icon-brewed-coffee:before {
  content: "\e9b0";
}
.ex-icon-briefcase:before {
  content: "\e9b1";
}
.ex-icon-british-pound-badge:before {
  content: "\e9b2";
}
.ex-icon-british-pound-bill:before {
  content: "\e9b3";
}
.ex-icon-british-pound-sign:before {
  content: "\e9b4";
}
.ex-icon-broccoli:before {
  content: "\e9b5";
}
.ex-icon-brochette:before {
  content: "\e9b6";
}
.ex-icon-broken-link:before {
  content: "\e9b7";
}
.ex-icon-browser-window:before {
  content: "\e9b8";
}
.ex-icon-bubble:before {
  content: "\e9b9";
}
.ex-icon-bug:before {
  content: "\e9ba";
}
.ex-icon-bulleted-list:before {
  content: "\e9bb";
}
.ex-icon-bulleted-list-2:before {
  content: "\e9bc";
}
.ex-icon-bullet-train:before {
  content: "\e9bd";
}
.ex-icon-burst-mode:before {
  content: "\e9be";
}
.ex-icon-bus:before {
  content: "\e9bf";
}
.ex-icon-bus-2:before {
  content: "\e9c0";
}
.ex-icon-businessman:before {
  content: "\e9c1";
}
.ex-icon-businessman-2:before {
  content: "\e9c2";
}
.ex-icon-business-report:before {
  content: "\e9c3";
}
.ex-icon-buy:before {
  content: "\e9c4";
}
.ex-icon-buy-item:before {
  content: "\e9c5";
}
.ex-icon-cabin-baggage:before {
  content: "\e9c6";
}
.ex-icon-cable-car:before {
  content: "\e9c7";
}
.ex-icon-cableway:before {
  content: "\e9c8";
}
.ex-icon-cake:before {
  content: "\e9c9";
}
.ex-icon-calc:before {
  content: "\e9ca";
}
.ex-icon-calculator:before {
  content: "\e9cb";
}
.ex-icon-call-cellular:before {
  content: "\e9cc";
}
.ex-icon-call-contact:before {
  content: "\e9cd";
}
.ex-icon-calls:before {
  content: "\e9ce";
}
.ex-icon-call-store:before {
  content: "\e9cf";
}
.ex-icon-call-support:before {
  content: "\e9d0";
}
.ex-icon-camcorder:before {
  content: "\e9d1";
}
.ex-icon-camera:before {
  content: "\e9d2";
}
.ex-icon-camera-button:before {
  content: "\e9d3";
}
.ex-icon-camera-film:before {
  content: "\e9d4";
}
.ex-icon-camera-flash:before {
  content: "\e9d5";
}
.ex-icon-camera-lens:before {
  content: "\e9d6";
}
.ex-icon-camera-shutter:before {
  content: "\e9d7";
}
.ex-icon-camera-tripod:before {
  content: "\e9d8";
}
.ex-icon-camp-fire:before {
  content: "\e9d9";
}
.ex-icon-camping:before {
  content: "\e9da";
}
.ex-icon-camping-tent:before {
  content: "\e9db";
}
.ex-icon-can:before {
  content: "\e9dc";
}
.ex-icon-cancel:before {
  content: "\e9dd";
}
.ex-icon-cancel-2:before {
  content: "\e9de";
}
.ex-icon-cancel-call:before {
  content: "\e9df";
}
.ex-icon-cancel-cart:before {
  content: "\e9e0";
}
.ex-icon-cancel-document:before {
  content: "\e9e1";
}
.ex-icon-cancel-note:before {
  content: "\e9e2";
}
.ex-icon-candy:before {
  content: "\e9e3";
}
.ex-icon-candy-lolly:before {
  content: "\e9e4";
}
.ex-icon-caps-key:before {
  content: "\e9e5";
}
.ex-icon-car:before {
  content: "\e9e6";
}
.ex-icon-car-2:before {
  content: "\e9e7";
}
.ex-icon-cardboard-box:before {
  content: "\e9e8";
}
.ex-icon-cargo-ship:before {
  content: "\e9e9";
}
.ex-icon-car-light:before {
  content: "\e9ea";
}
.ex-icon-carrot:before {
  content: "\e9eb";
}
.ex-icon-cart:before {
  content: "\e9ec";
}
.ex-icon-cash-dispenser:before {
  content: "\e9ed";
}
.ex-icon-cash-register:before {
  content: "\e9ee";
}
.ex-icon-cash-register-till:before {
  content: "\e9ef";
}
.ex-icon-cassette-tape:before {
  content: "\e9f0";
}
.ex-icon-catalogue:before {
  content: "\e9f1";
}
.ex-icon-cc-creative-commons:before {
  content: "\e9f2";
}
.ex-icon-cd:before {
  content: "\e9f3";
}
.ex-icon-cd-audio:before {
  content: "\e9f4";
}
.ex-icon-cellphone:before {
  content: "\e9f5";
}
.ex-icon-cell-phone:before {
  content: "\e9f6";
}
.ex-icon-cellular-signal:before {
  content: "\e9f7";
}
.ex-icon-celsius:before {
  content: "\e9f8";
}
.ex-icon-center-text:before {
  content: "\e9f9";
}
.ex-icon-cereal-box:before {
  content: "\e9fa";
}
.ex-icon-certificate:before {
  content: "\e9fb";
}
.ex-icon-certificate-2:before {
  content: "\e9fc";
}
.ex-icon-champagne:before {
  content: "\e9fd";
}
.ex-icon-champagne-flute:before {
  content: "\e9fe";
}
.ex-icon-champion:before {
  content: "\e9ff";
}
.ex-icon-championship:before {
  content: "\ea00";
}
.ex-icon-character-kerning:before {
  content: "\ea01";
}
.ex-icon-character-leading:before {
  content: "\ea02";
}
.ex-icon-character-tracking:before {
  content: "\ea03";
}
.ex-icon-charging-battery:before {
  content: "\ea04";
}
.ex-icon-chart:before {
  content: "\ea05";
}
.ex-icon-chart-2:before {
  content: "\ea06";
}
.ex-icon-chat:before {
  content: "\ea07";
}
.ex-icon-chat-app:before {
  content: "\ea08";
}
.ex-icon-chat-bubble:before {
  content: "\ea09";
}
.ex-icon-chat-message:before {
  content: "\ea0a";
}
.ex-icon-chats:before {
  content: "\ea0b";
}
.ex-icon-chats-2:before {
  content: "\ea0c";
}
.ex-icon-check:before {
  content: "\ea0d";
}
.ex-icon-checked-circle:before {
  content: "\ea0e";
}
.ex-icon-checked-database:before {
  content: "\ea0f";
}
.ex-icon-checked-server:before {
  content: "\ea10";
}
.ex-icon-checked-window:before {
  content: "\ea11";
}
.ex-icon-check-in-geotag:before {
  content: "\ea12";
}
.ex-icon-check-in-location:before {
  content: "\ea13";
}
.ex-icon-check-in-map-marker:before {
  content: "\ea14";
}
.ex-icon-check-in-place:before {
  content: "\ea15";
}
.ex-icon-checkmark:before {
  content: "\ea16";
}
.ex-icon-checkmark-to-do-list:before {
  content: "\ea17";
}
.ex-icon-checkout:before {
  content: "\ea18";
}
.ex-icon-checkout-cart:before {
  content: "\ea19";
}
.ex-icon-checkout-shopping-cart:before {
  content: "\ea1a";
}
.ex-icon-check-square:before {
  content: "\ea1b";
}
.ex-icon-cheese:before {
  content: "\ea1c";
}
.ex-icon-chef:before {
  content: "\ea1d";
}
.ex-icon-chef-hat:before {
  content: "\ea1e";
}
.ex-icon-cherry:before {
  content: "\ea1f";
}
.ex-icon-chevron:before {
  content: "\ea20";
}
.ex-icon-chevrons:before {
  content: "\ea21";
}
.ex-icon-chicken-breast:before {
  content: "\ea22";
}
.ex-icon-chili-pepper:before {
  content: "\ea23";
}
.ex-icon-chinese-takeout:before {
  content: "\ea24";
}
.ex-icon-chocolate-bar:before {
  content: "\ea25";
}
.ex-icon-chopper:before {
  content: "\ea26";
}
.ex-icon-cinema-projector:before {
  content: "\ea27";
}
.ex-icon-cinema-reel:before {
  content: "\ea28";
}
.ex-icon-citrus-juicer:before {
  content: "\ea29";
}
.ex-icon-classic-computer:before {
  content: "\ea2a";
}
.ex-icon-clear-clipboard:before {
  content: "\ea2b";
}
.ex-icon-clear-shopping-cart:before {
  content: "\ea2c";
}
.ex-icon-clear-shopping-cart-2:before {
  content: "\ea2d";
}
.ex-icon-clear-weather-sun:before {
  content: "\ea2e";
}
.ex-icon-clipboard:before {
  content: "\ea2f";
}
.ex-icon-clock:before {
  content: "\ea30";
}
.ex-icon-close:before {
  content: "\ea31";
}
.ex-icon-close-square:before {
  content: "\ea32";
}
.ex-icon-close-window:before {
  content: "\ea33";
}
.ex-icon-cloud:before {
  content: "\ea34";
}
.ex-icon-cloud-lightning:before {
  content: "\ea35";
}
.ex-icon-clouds:before {
  content: "\ea36";
}
.ex-icon-cloud-sync:before {
  content: "\ea37";
}
.ex-icon-cloudy:before {
  content: "\ea38";
}
.ex-icon-cloudy-fog:before {
  content: "\ea39";
}
.ex-icon-cloudy-hail:before {
  content: "\ea3a";
}
.ex-icon-cloudy-hailstorm:before {
  content: "\ea3b";
}
.ex-icon-cloudy-heavy-rain:before {
  content: "\ea3c";
}
.ex-icon-cloudy-light-rain:before {
  content: "\ea3d";
}
.ex-icon-cloudy-scattered-showers:before {
  content: "\ea3e";
}
.ex-icon-cloudy-showers:before {
  content: "\ea3f";
}
.ex-icon-cloudy-snow:before {
  content: "\ea40";
}
.ex-icon-cloudy-snowfall:before {
  content: "\ea41";
}
.ex-icon-cloudy-snowflake:before {
  content: "\ea42";
}
.ex-icon-cloudy-thunder:before {
  content: "\ea43";
}
.ex-icon-cloudy-thunderstorm:before {
  content: "\ea44";
}
.ex-icon-cloudy-wind:before {
  content: "\ea45";
}
.ex-icon-cocktail:before {
  content: "\ea46";
}
.ex-icon-cocktail-glass:before {
  content: "\ea47";
}
.ex-icon-code:before {
  content: "\ea48";
}
.ex-icon-code-bug:before {
  content: "\ea49";
}
.ex-icon-code-file:before {
  content: "\ea4a";
}
.ex-icon-code-files:before {
  content: "\ea4b";
}
.ex-icon-code-folder:before {
  content: "\ea4c";
}
.ex-icon-code-window:before {
  content: "\ea4d";
}
.ex-icon-coffee:before {
  content: "\ea4e";
}
.ex-icon-coffee-bean:before {
  content: "\ea4f";
}
.ex-icon-coffee-beans:before {
  content: "\ea50";
}
.ex-icon-coffee-carafe:before {
  content: "\ea51";
}
.ex-icon-coffee-cup:before {
  content: "\ea52";
}
.ex-icon-coffee-jug:before {
  content: "\ea53";
}
.ex-icon-coffee-mug:before {
  content: "\ea54";
}
.ex-icon-coffee-pot:before {
  content: "\ea55";
}
.ex-icon-coffee-to-go:before {
  content: "\ea56";
}
.ex-icon-cogwheel:before {
  content: "\ea57";
}
.ex-icon-coins:before {
  content: "\ea58";
}
.ex-icon-colander:before {
  content: "\ea59";
}
.ex-icon-collapse:before {
  content: "\ea5a";
}
.ex-icon-color-dropper:before {
  content: "\ea5b";
}
.ex-icon-color-palette:before {
  content: "\ea5c";
}
.ex-icon-color-wheel:before {
  content: "\ea5d";
}
.ex-icon-comments:before {
  content: "\ea5e";
}
.ex-icon-compact:before {
  content: "\ea5f";
}
.ex-icon-compact-camera:before {
  content: "\ea60";
}
.ex-icon-compact-disc:before {
  content: "\ea61";
}
.ex-icon-compact-disc-cd:before {
  content: "\ea62";
}
.ex-icon-compass:before {
  content: "\ea63";
}
.ex-icon-compass-2:before {
  content: "\ea64";
}
.ex-icon-compass-direction:before {
  content: "\ea65";
}
.ex-icon-compass-east:before {
  content: "\ea66";
}
.ex-icon-compass-map:before {
  content: "\ea67";
}
.ex-icon-compass-north:before {
  content: "\ea68";
}
.ex-icon-compass-position:before {
  content: "\ea69";
}
.ex-icon-compass-south:before {
  content: "\ea6a";
}
.ex-icon-compass-west:before {
  content: "\ea6b";
}
.ex-icon-compress:before {
  content: "\ea6c";
}
.ex-icon-compress-2:before {
  content: "\ea6d";
}
.ex-icon-compressed-file:before {
  content: "\ea6e";
}
.ex-icon-computer-display:before {
  content: "\ea6f";
}
.ex-icon-condiment:before {
  content: "\ea70";
}
.ex-icon-conference:before {
  content: "\ea71";
}
.ex-icon-conference-desk:before {
  content: "\ea72";
}
.ex-icon-config:before {
  content: "\ea73";
}
.ex-icon-configuration:before {
  content: "\ea74";
}
.ex-icon-confirm:before {
  content: "\ea75";
}
.ex-icon-connect:before {
  content: "\ea76";
}
.ex-icon-connect-phone:before {
  content: "\ea77";
}
.ex-icon-contact:before {
  content: "\ea78";
}
.ex-icon-contact-card:before {
  content: "\ea79";
}
.ex-icon-contacts:before {
  content: "\ea7a";
}
.ex-icon-content-post:before {
  content: "\ea7b";
}
.ex-icon-content-post-2:before {
  content: "\ea7c";
}
.ex-icon-control-ctrl-key:before {
  content: "\ea7d";
}
.ex-icon-conversations:before {
  content: "\ea7e";
}
.ex-icon-cooking-pot:before {
  content: "\ea7f";
}
.ex-icon-copied-to-clipboard:before {
  content: "\ea80";
}
.ex-icon-copy:before {
  content: "\ea81";
}
.ex-icon-copyright:before {
  content: "\ea82";
}
.ex-icon-copy-to-clipboard:before {
  content: "\ea83";
}
.ex-icon-corkscrew:before {
  content: "\ea84";
}
.ex-icon-corn:before {
  content: "\ea85";
}
.ex-icon-corn-dog:before {
  content: "\ea86";
}
.ex-icon-corporal:before {
  content: "\ea87";
}
.ex-icon-coursebook:before {
  content: "\ea88";
}
.ex-icon-credit-card:before {
  content: "\ea89";
}
.ex-icon-crescent-moon:before {
  content: "\ea8a";
}
.ex-icon-crescent-moon-2:before {
  content: "\ea8b";
}
.ex-icon-croissant:before {
  content: "\ea8c";
}
.ex-icon-crop:before {
  content: "\ea8d";
}
.ex-icon-crown:before {
  content: "\ea8e";
}
.ex-icon-crown-2:before {
  content: "\ea8f";
}
.ex-icon-css3:before {
  content: "\ea90";
}
.ex-icon-currency:before {
  content: "\ea91";
}
.ex-icon-cursor:before {
  content: "\ea92";
}
.ex-icon-customer-support:before {
  content: "\ea93";
}
.ex-icon-cut:before {
  content: "\ea94";
}
.ex-icon-cutter:before {
  content: "\ea95";
}
.ex-icon-cutting-board:before {
  content: "\ea96";
}
.ex-icon-cycle:before {
  content: "\ea97";
}
.ex-icon-cycle-2:before {
  content: "\ea98";
}
.ex-icon-data:before {
  content: "\ea99";
}
.ex-icon-data-app:before {
  content: "\ea9a";
}
.ex-icon-database:before {
  content: "\ea9b";
}
.ex-icon-data-content:before {
  content: "\ea9c";
}
.ex-icon-data-file:before {
  content: "\ea9d";
}
.ex-icon-data-storage:before {
  content: "\ea9e";
}
.ex-icon-dawn:before {
  content: "\ea9f";
}
.ex-icon-dead-emoji:before {
  content: "\eaa0";
}
.ex-icon-deadline:before {
  content: "\eaa1";
}
.ex-icon-decrease-indent:before {
  content: "\eaa2";
}
.ex-icon-delete:before {
  content: "\eaa3";
}
.ex-icon-delete-2:before {
  content: "\eaa4";
}
.ex-icon-delete-3:before {
  content: "\eaa5";
}
.ex-icon-delete-chat:before {
  content: "\eaa6";
}
.ex-icon-delete-circle:before {
  content: "\eaa7";
}
.ex-icon-delete-comment:before {
  content: "\eaa8";
}
.ex-icon-delete-conversation:before {
  content: "\eaa9";
}
.ex-icon-delete-database:before {
  content: "\eaaa";
}
.ex-icon-deleted-email:before {
  content: "\eaab";
}
.ex-icon-delete-document:before {
  content: "\eaac";
}
.ex-icon-delete-documents:before {
  content: "\eaad";
}
.ex-icon-delete-email:before {
  content: "\eaae";
}
.ex-icon-delete-female-user:before {
  content: "\eaaf";
}
.ex-icon-delete-file:before {
  content: "\eab0";
}
.ex-icon-delete-folder:before {
  content: "\eab1";
}
.ex-icon-delete-geotag:before {
  content: "\eab2";
}
.ex-icon-delete-image:before {
  content: "\eab3";
}
.ex-icon-delete-key:before {
  content: "\eab4";
}
.ex-icon-delete-location:before {
  content: "\eab5";
}
.ex-icon-delete-location-2:before {
  content: "\eab6";
}
.ex-icon-delete-map-marker:before {
  content: "\eab7";
}
.ex-icon-delete-map-pin:before {
  content: "\eab8";
}
.ex-icon-delete-marker:before {
  content: "\eab9";
}
.ex-icon-delete-note:before {
  content: "\eaba";
}
.ex-icon-delete-pin:before {
  content: "\eabb";
}
.ex-icon-delete-place:before {
  content: "\eabc";
}
.ex-icon-delete-saved-file:before {
  content: "\eabd";
}
.ex-icon-delete-server:before {
  content: "\eabe";
}
.ex-icon-delete-text:before {
  content: "\eabf";
}
.ex-icon-delete-user:before {
  content: "\eac0";
}
.ex-icon-delete-user-2:before {
  content: "\eac1";
}
.ex-icon-delete-window:before {
  content: "\eac2";
}
.ex-icon-delete-woman-user:before {
  content: "\eac3";
}
.ex-icon-delivery-address:before {
  content: "\eac4";
}
.ex-icon-delivery-time:before {
  content: "\eac5";
}
.ex-icon-delivery-time-2:before {
  content: "\eac6";
}
.ex-icon-delivery-truck:before {
  content: "\eac7";
}
.ex-icon-deposit-box:before {
  content: "\eac8";
}
.ex-icon-design:before {
  content: "\eac9";
}
.ex-icon-destination-flag:before {
  content: "\eaca";
}
.ex-icon-destination-map:before {
  content: "\eacb";
}
.ex-icon-detective:before {
  content: "\eacc";
}
.ex-icon-dial-call:before {
  content: "\eacd";
}
.ex-icon-diamond:before {
  content: "\eace";
}
.ex-icon-diary:before {
  content: "\eacf";
}
.ex-icon-digital-camera:before {
  content: "\ead0";
}
.ex-icon-dinner:before {
  content: "\ead1";
}
.ex-icon-diploma:before {
  content: "\ead2";
}
.ex-icon-direction:before {
  content: "\ead3";
}
.ex-icon-direction-arrow-gps:before {
  content: "\ead4";
}
.ex-icon-direction-road-sign:before {
  content: "\ead5";
}
.ex-icon-disable:before {
  content: "\ead6";
}
.ex-icon-disable-database:before {
  content: "\ead7";
}
.ex-icon-disable-server:before {
  content: "\ead8";
}
.ex-icon-disable-window:before {
  content: "\ead9";
}
.ex-icon-disable-woman-account:before {
  content: "\eada";
}
.ex-icon-disconnect-call:before {
  content: "\eadb";
}
.ex-icon-discount:before {
  content: "\eadc";
}
.ex-icon-dish:before {
  content: "\eadd";
}
.ex-icon-dish-radio-antenna:before {
  content: "\eade";
}
.ex-icon-dislike-hand:before {
  content: "\eadf";
}
.ex-icon-dismiss:before {
  content: "\eae0";
}
.ex-icon-dj:before {
  content: "\eae1";
}
.ex-icon-doctor:before {
  content: "\eae2";
}
.ex-icon-document:before {
  content: "\eae3";
}
.ex-icon-document-envelope:before {
  content: "\eae4";
}
.ex-icon-document-error:before {
  content: "\eae5";
}
.ex-icon-documents:before {
  content: "\eae6";
}
.ex-icon-documents-2:before {
  content: "\eae7";
}
.ex-icon-document-saved:before {
  content: "\eae8";
}
.ex-icon-document-stack:before {
  content: "\eae9";
}
.ex-icon-document-stack-2:before {
  content: "\eaea";
}
.ex-icon-dollar-badge:before {
  content: "\eaeb";
}
.ex-icon-dollar-bill:before {
  content: "\eaec";
}
.ex-icon-dollar-sign:before {
  content: "\eaed";
}
.ex-icon-dome-plate-cover:before {
  content: "\eaee";
}
.ex-icon-do-not-disturb:before {
  content: "\eaef";
}
.ex-icon-donut:before {
  content: "\eaf0";
}
.ex-icon-down-key:before {
  content: "\eaf1";
}
.ex-icon-download:before {
  content: "\eaf2";
}
.ex-icon-download-2:before {
  content: "\eaf3";
}
.ex-icon-download-archive:before {
  content: "\eaf4";
}
.ex-icon-download-backup:before {
  content: "\eaf5";
}
.ex-icon-download-cloud:before {
  content: "\eaf6";
}
.ex-icon-download-document:before {
  content: "\eaf7";
}
.ex-icon-download-e-book:before {
  content: "\eaf8";
}
.ex-icon-download-file:before {
  content: "\eaf9";
}
.ex-icon-download-folder-content:before {
  content: "\eafa";
}
.ex-icon-download-manual:before {
  content: "\eafb";
}
.ex-icon-download-note:before {
  content: "\eafc";
}
.ex-icon-download-package:before {
  content: "\eafd";
}
.ex-icon-drag-horizontal:before {
  content: "\eafe";
}
.ex-icon-drag-vertical:before {
  content: "\eaff";
}
.ex-icon-drink:before {
  content: "\eb00";
}
.ex-icon-drizzle:before {
  content: "\eb01";
}
.ex-icon-droplet:before {
  content: "\eb02";
}
.ex-icon-drum:before {
  content: "\eb03";
}
.ex-icon-dslr-camera:before {
  content: "\eb04";
}
.ex-icon-dump-truck:before {
  content: "\eb05";
}
.ex-icon-duplicate-tool:before {
  content: "\eb06";
}
.ex-icon-earth-globe:before {
  content: "\eb07";
}
.ex-icon-e-commerce-3-solid-10-solid:before {
  content: "\eb08";
}
.ex-icon-e-commerce-cart:before {
  content: "\eb09";
}
.ex-icon-edit:before {
  content: "\eb0a";
}
.ex-icon-edit-2:before {
  content: "\eb0b";
}
.ex-icon-edit-3:before {
  content: "\eb0c";
}
.ex-icon-edit-4:before {
  content: "\eb0d";
}
.ex-icon-edit-backup:before {
  content: "\eb0e";
}
.ex-icon-edit-database:before {
  content: "\eb0f";
}
.ex-icon-edit-document:before {
  content: "\eb10";
}
.ex-icon-edit-entry:before {
  content: "\eb11";
}
.ex-icon-edit-folder:before {
  content: "\eb12";
}
.ex-icon-edit-folder-name:before {
  content: "\eb13";
}
.ex-icon-edit-note:before {
  content: "\eb14";
}
.ex-icon-edit-server:before {
  content: "\eb15";
}
.ex-icon-edit-text:before {
  content: "\eb16";
}
.ex-icon-edit-text-2:before {
  content: "\eb17";
}
.ex-icon-edit-user:before {
  content: "\eb18";
}
.ex-icon-edit-window:before {
  content: "\eb19";
}
.ex-icon-edit-woman-account:before {
  content: "\eb1a";
}
.ex-icon-egg:before {
  content: "\eb1b";
}
.ex-icon-egg-beater:before {
  content: "\eb1c";
}
.ex-icon-eggplant:before {
  content: "\eb1d";
}
.ex-icon-eject:before {
  content: "\eb1e";
}
.ex-icon-eject-2:before {
  content: "\eb1f";
}
.ex-icon-electrical-storm:before {
  content: "\eb20";
}
.ex-icon-electricity:before {
  content: "\eb21";
}
.ex-icon-electric-mixer:before {
  content: "\eb22";
}
.ex-icon-email:before {
  content: "\eb23";
}
.ex-icon-email-sent:before {
  content: "\eb24";
}
.ex-icon-employee:before {
  content: "\eb25";
}
.ex-icon-empty-battery:before {
  content: "\eb26";
}
.ex-icon-empty-trash:before {
  content: "\eb27";
}
.ex-icon-end-call:before {
  content: "\eb28";
}
.ex-icon-endless:before {
  content: "\eb29";
}
.ex-icon-enlarge:before {
  content: "\eb2a";
}
.ex-icon-enter-key:before {
  content: "\eb2b";
}
.ex-icon-entrance:before {
  content: "\eb2c";
}
.ex-icon-envelope:before {
  content: "\eb2d";
}
.ex-icon-equalizer:before {
  content: "\eb2e";
}
.ex-icon-eraser:before {
  content: "\eb2f";
}
.ex-icon-e-reader-kindle:before {
  content: "\eb30";
}
.ex-icon-error-bug:before {
  content: "\eb31";
}
.ex-icon-error-cart:before {
  content: "\eb32";
}
.ex-icon-error-database:before {
  content: "\eb33";
}
.ex-icon-error-folder:before {
  content: "\eb34";
}
.ex-icon-error-server:before {
  content: "\eb35";
}
.ex-icon-escalator-down:before {
  content: "\eb36";
}
.ex-icon-escalator-up:before {
  content: "\eb37";
}
.ex-icon-euro:before {
  content: "\eb38";
}
.ex-icon-euro-badge:before {
  content: "\eb39";
}
.ex-icon-euro-bill:before {
  content: "\eb3a";
}
.ex-icon-euro-sign:before {
  content: "\eb3b";
}
.ex-icon-excavator:before {
  content: "\eb3c";
}
.ex-icon-exit:before {
  content: "\eb3d";
}
.ex-icon-exit-2:before {
  content: "\eb3e";
}
.ex-icon-exit-full-screen:before {
  content: "\eb3f";
}
.ex-icon-expand:before {
  content: "\eb40";
}
.ex-icon-expand-2:before {
  content: "\eb41";
}
.ex-icon-expand-3:before {
  content: "\eb42";
}
.ex-icon-expand-diagonal:before {
  content: "\eb43";
}
.ex-icon-expand-horizontal:before {
  content: "\eb44";
}
.ex-icon-expand-vertical:before {
  content: "\eb45";
}
.ex-icon-expand-window:before {
  content: "\eb46";
}
.ex-icon-export-database:before {
  content: "\eb47";
}
.ex-icon-export-server:before {
  content: "\eb48";
}
.ex-icon-extend:before {
  content: "\eb49";
}
.ex-icon-extend-diagonal:before {
  content: "\eb4a";
}
.ex-icon-extend-horizontal:before {
  content: "\eb4b";
}
.ex-icon-extend-horizontal-2:before {
  content: "\eb4c";
}
.ex-icon-extend-vertical:before {
  content: "\eb4d";
}
.ex-icon-extend-vertical-2:before {
  content: "\eb4e";
}
.ex-icon-eye:before {
  content: "\eb4f";
}
.ex-icon-eye-2:before {
  content: "\eb50";
}
.ex-icon-fahrenheit:before {
  content: "\eb51";
}
.ex-icon-fast-forward:before {
  content: "\eb52";
}
.ex-icon-fast-forward-2:before {
  content: "\eb53";
}
.ex-icon-fast-rewind:before {
  content: "\eb54";
}
.ex-icon-favorite:before {
  content: "\eb55";
}
.ex-icon-favorite-archive:before {
  content: "\eb56";
}
.ex-icon-favorite-book:before {
  content: "\eb57";
}
.ex-icon-favorite-document:before {
  content: "\eb58";
}
.ex-icon-favorite-file-save:before {
  content: "\eb59";
}
.ex-icon-favorite-folder:before {
  content: "\eb5a";
}
.ex-icon-favorite-image:before {
  content: "\eb5b";
}
.ex-icon-favorite-location:before {
  content: "\eb5c";
}
.ex-icon-favorite-map-pin:before {
  content: "\eb5d";
}
.ex-icon-favorite-marker:before {
  content: "\eb5e";
}
.ex-icon-favorite-note:before {
  content: "\eb5f";
}
.ex-icon-favorite-pin:before {
  content: "\eb60";
}
.ex-icon-favorite-window:before {
  content: "\eb61";
}
.ex-icon-fax:before {
  content: "\eb62";
}
.ex-icon-female-account-information:before {
  content: "\eb63";
}
.ex-icon-female-account-warning:before {
  content: "\eb64";
}
.ex-icon-female-user:before {
  content: "\eb65";
}
.ex-icon-few-showers:before {
  content: "\eb66";
}
.ex-icon-file:before {
  content: "\eb67";
}
.ex-icon-file-cabinet:before {
  content: "\eb68";
}
.ex-icon-file-error:before {
  content: "\eb69";
}
.ex-icon-file-explorer:before {
  content: "\eb6a";
}
.ex-icon-file-explorer-home:before {
  content: "\eb6b";
}
.ex-icon-file-folder:before {
  content: "\eb6c";
}
.ex-icon-file-loading:before {
  content: "\eb6d";
}
.ex-icon-file-manager:before {
  content: "\eb6e";
}
.ex-icon-files:before {
  content: "\eb6f";
}
.ex-icon-files-2:before {
  content: "\eb70";
}
.ex-icon-file-storage:before {
  content: "\eb71";
}
.ex-icon-filing-cabinet:before {
  content: "\eb72";
}
.ex-icon-filter:before {
  content: "\eb73";
}
.ex-icon-filter-data:before {
  content: "\eb74";
}
.ex-icon-filter-document:before {
  content: "\eb75";
}
.ex-icon-find:before {
  content: "\eb76";
}
.ex-icon-find-document:before {
  content: "\eb77";
}
.ex-icon-find-female-user:before {
  content: "\eb78";
}
.ex-icon-find-notes:before {
  content: "\eb79";
}
.ex-icon-find-notes-2:before {
  content: "\eb7a";
}
.ex-icon-find-saved-file:before {
  content: "\eb7b";
}
.ex-icon-find-user:before {
  content: "\eb7c";
}
.ex-icon-fine-point-marker:before {
  content: "\eb7d";
}
.ex-icon-firewall:before {
  content: "\eb7e";
}
.ex-icon-first-quarter-moon:before {
  content: "\eb7f";
}
.ex-icon-fish:before {
  content: "\eb80";
}
.ex-icon-flag:before {
  content: "\eb81";
}
.ex-icon-flag-2:before {
  content: "\eb82";
}
.ex-icon-flag-3:before {
  content: "\eb83";
}
.ex-icon-flag-4:before {
  content: "\eb84";
}
.ex-icon-flag-5:before {
  content: "\eb85";
}
.ex-icon-flag-6:before {
  content: "\eb86";
}
.ex-icon-flag-7:before {
  content: "\eb87";
}
.ex-icon-flag-8:before {
  content: "\eb88";
}
.ex-icon-flag-9:before {
  content: "\eb89";
}
.ex-icon-flag-10:before {
  content: "\eb8a";
}
.ex-icon-flag-11:before {
  content: "\eb8b";
}
.ex-icon-flag-12:before {
  content: "\eb8c";
}
.ex-icon-flag-13:before {
  content: "\eb8d";
}
.ex-icon-flame:before {
  content: "\eb8e";
}
.ex-icon-flat-tv:before {
  content: "\eb8f";
}
.ex-icon-flip-flops:before {
  content: "\eb90";
}
.ex-icon-floppy-disk:before {
  content: "\eb91";
}
.ex-icon-focus:before {
  content: "\eb92";
}
.ex-icon-fog:before {
  content: "\eb93";
}
.ex-icon-folder:before {
  content: "\eb94";
}
.ex-icon-folder-settings:before {
  content: "\eb95";
}
.ex-icon-folder-sync:before {
  content: "\eb96";
}
.ex-icon-folder-sync-2:before {
  content: "\eb97";
}
.ex-icon-font-size:before {
  content: "\eb98";
}
.ex-icon-font-size-2:before {
  content: "\eb99";
}
.ex-icon-fork:before {
  content: "\eb9a";
}
.ex-icon-fork-2:before {
  content: "\eb9b";
}
.ex-icon-forklift:before {
  content: "\eb9c";
}
.ex-icon-forward:before {
  content: "\eb9d";
}
.ex-icon-forward-arrow:before {
  content: "\eb9e";
}
.ex-icon-fountain-pen:before {
  content: "\eb9f";
}
.ex-icon-fragile:before {
  content: "\eba0";
}
.ex-icon-frame:before {
  content: "\eba1";
}
.ex-icon-freight-train:before {
  content: "\eba2";
}
.ex-icon-french-bread:before {
  content: "\eba3";
}
.ex-icon-french-fries:before {
  content: "\eba4";
}
.ex-icon-fridge:before {
  content: "\eba5";
}
.ex-icon-frying-pan:before {
  content: "\eba6";
}
.ex-icon-full-battery:before {
  content: "\eba7";
}
.ex-icon-full-moon:before {
  content: "\eba8";
}
.ex-icon-full-screen:before {
  content: "\eba9";
}
.ex-icon-full-screen-2:before {
  content: "\ebaa";
}
.ex-icon-full-width-layout:before {
  content: "\ebab";
}
.ex-icon-funnel:before {
  content: "\ebac";
}
.ex-icon-fusion-cuisine:before {
  content: "\ebad";
}
.ex-icon-gameboy:before {
  content: "\ebae";
}
.ex-icon-game-controller:before {
  content: "\ebaf";
}
.ex-icon-gamepad:before {
  content: "\ebb0";
}
.ex-icon-gas-station:before {
  content: "\ebb1";
}
.ex-icon-gastronomy:before {
  content: "\ebb2";
}
.ex-icon-gear:before {
  content: "\ebb3";
}
.ex-icon-gear-knob:before {
  content: "\ebb4";
}
.ex-icon-geo-fence:before {
  content: "\ebb5";
}
.ex-icon-geo-fence-pin:before {
  content: "\ebb6";
}
.ex-icon-geotag:before {
  content: "\ebb7";
}
.ex-icon-geotag-pin:before {
  content: "\ebb8";
}
.ex-icon-giftbox:before {
  content: "\ebb9";
}
.ex-icon-glasses:before {
  content: "\ebba";
}
.ex-icon-glazed-donut:before {
  content: "\ebbb";
}
.ex-icon-globe:before {
  content: "\ebbc";
}
.ex-icon-gps-arrow:before {
  content: "\ebbd";
}
.ex-icon-gps-destination:before {
  content: "\ebbe";
}
.ex-icon-gps-map:before {
  content: "\ebbf";
}
.ex-icon-grab-hand:before {
  content: "\ebc0";
}
.ex-icon-grape:before {
  content: "\ebc1";
}
.ex-icon-grater:before {
  content: "\ebc2";
}
.ex-icon-grid:before {
  content: "\ebc3";
}
.ex-icon-grid-layout:before {
  content: "\ebc4";
}
.ex-icon-grid-layout-2:before {
  content: "\ebc5";
}
.ex-icon-grocery-basket:before {
  content: "\ebc6";
}
.ex-icon-grocery-cart:before {
  content: "\ebc7";
}
.ex-icon-guide:before {
  content: "\ebc8";
}
.ex-icon-guitar:before {
  content: "\ebc9";
}
.ex-icon-hail:before {
  content: "\ebca";
}
.ex-icon-half-battery:before {
  content: "\ebcb";
}
.ex-icon-half-moon:before {
  content: "\ebcc";
}
.ex-icon-half-sun:before {
  content: "\ebcd";
}
.ex-icon-ham:before {
  content: "\ebce";
}
.ex-icon-hamburger:before {
  content: "\ebcf";
}
.ex-icon-hamburger-2:before {
  content: "\ebd0";
}
.ex-icon-handbag:before {
  content: "\ebd1";
}
.ex-icon-handbook:before {
  content: "\ebd2";
}
.ex-icon-hand-luggage:before {
  content: "\ebd3";
}
.ex-icon-hand-purse:before {
  content: "\ebd4";
}
.ex-icon-hand-truck:before {
  content: "\ebd5";
}
.ex-icon-hang-up:before {
  content: "\ebd6";
}
.ex-icon-happy:before {
  content: "\ebd7";
}
.ex-icon-happy-emoji:before {
  content: "\ebd8";
}
.ex-icon-hardcover-book:before {
  content: "\ebd9";
}
.ex-icon-hard-disk-drive-hdd:before {
  content: "\ebda";
}
.ex-icon-headphones:before {
  content: "\ebdb";
}
.ex-icon-headphones-user:before {
  content: "\ebdc";
}
.ex-icon-heart:before {
  content: "\ebdd";
}
.ex-icon-hearts:before {
  content: "\ebde";
}
.ex-icon-heavy-rain:before {
  content: "\ebdf";
}
.ex-icon-heavy-snow:before {
  content: "\ebe0";
}
.ex-icon-helicopter:before {
  content: "\ebe1";
}
.ex-icon-helicopter-landing:before {
  content: "\ebe2";
}
.ex-icon-helmet:before {
  content: "\ebe3";
}
.ex-icon-helpline-24:before {
  content: "\ebe4";
}
.ex-icon-hi-fi:before {
  content: "\ebe5";
}
.ex-icon-high-speed-train:before {
  content: "\ebe6";
}
.ex-icon-highway:before {
  content: "\ebe7";
}
.ex-icon-home:before {
  content: "\ebe8";
}
.ex-icon-home-2:before {
  content: "\ebe9";
}
.ex-icon-home-button:before {
  content: "\ebea";
}
.ex-icon-home-folder:before {
  content: "\ebeb";
}
.ex-icon-homepage:before {
  content: "\ebec";
}
.ex-icon-home-page:before {
  content: "\ebed";
}
.ex-icon-horizontal-text-scale:before {
  content: "\ebee";
}
.ex-icon-horizontal-text-scale-2:before {
  content: "\ebef";
}
.ex-icon-hospitality:before {
  content: "\ebf0";
}
.ex-icon-hot-air-balloon:before {
  content: "\ebf1";
}
.ex-icon-hot-coffee:before {
  content: "\ebf2";
}
.ex-icon-hot-dog:before {
  content: "\ebf3";
}
.ex-icon-hour:before {
  content: "\ebf4";
}
.ex-icon-hourglass:before {
  content: "\ebf5";
}
.ex-icon-house:before {
  content: "\ebf6";
}
.ex-icon-html5:before {
  content: "\ebf7";
}
.ex-icon-humidity:before {
  content: "\ebf8";
}
.ex-icon-ice-cream:before {
  content: "\ebf9";
}
.ex-icon-ice-cream-bowl:before {
  content: "\ebfa";
}
.ex-icon-ice-cream-cone:before {
  content: "\ebfb";
}
.ex-icon-ice-freeze:before {
  content: "\ebfc";
}
.ex-icon-ice-pop:before {
  content: "\ebfd";
}
.ex-icon-ice-whiskey-glass:before {
  content: "\ebfe";
}
.ex-icon-id-card:before {
  content: "\ebff";
}
.ex-icon-idea:before {
  content: "\ec00";
}
.ex-icon-identity:before {
  content: "\ec01";
}
.ex-icon-imac-screen:before {
  content: "\ec02";
}
.ex-icon-image:before {
  content: "\ec03";
}
.ex-icon-image-2:before {
  content: "\ec04";
}
.ex-icon-image-file:before {
  content: "\ec05";
}
.ex-icon-image-files:before {
  content: "\ec06";
}
.ex-icon-image-folder:before {
  content: "\ec07";
}
.ex-icon-image-folder-2:before {
  content: "\ec08";
}
.ex-icon-image-gallery:before {
  content: "\ec09";
}
.ex-icon-images:before {
  content: "\ec0a";
}
.ex-icon-image-saved:before {
  content: "\ec0b";
}
.ex-icon-image-settings:before {
  content: "\ec0c";
}
.ex-icon-image-sync:before {
  content: "\ec0d";
}
.ex-icon-important-chat:before {
  content: "\ec0e";
}
.ex-icon-important-message:before {
  content: "\ec0f";
}
.ex-icon-important-note:before {
  content: "\ec10";
}
.ex-icon-important-warning:before {
  content: "\ec11";
}
.ex-icon-import-database:before {
  content: "\ec12";
}
.ex-icon-import-server:before {
  content: "\ec13";
}
.ex-icon-incoming-call:before {
  content: "\ec14";
}
.ex-icon-incoming-email-server:before {
  content: "\ec15";
}
.ex-icon-increase:before {
  content: "\ec16";
}
.ex-icon-increase-indent:before {
  content: "\ec17";
}
.ex-icon-indent-left-margin:before {
  content: "\ec18";
}
.ex-icon-indent-right-margin:before {
  content: "\ec19";
}
.ex-icon-indicator-down:before {
  content: "\ec1a";
}
.ex-icon-indicator-left:before {
  content: "\ec1b";
}
.ex-icon-indicator-left-down:before {
  content: "\ec1c";
}
.ex-icon-indicator-left-up:before {
  content: "\ec1d";
}
.ex-icon-indicator-right:before {
  content: "\ec1e";
}
.ex-icon-indicator-right-down:before {
  content: "\ec1f";
}
.ex-icon-indicator-right-up:before {
  content: "\ec20";
}
.ex-icon-indicator-up:before {
  content: "\ec21";
}
.ex-icon-infinity:before {
  content: "\ec22";
}
.ex-icon-info-help:before {
  content: "\ec23";
}
.ex-icon-inkpot:before {
  content: "\ec24";
}
.ex-icon-instagram-camera:before {
  content: "\ec25";
}
.ex-icon-invoice:before {
  content: "\ec26";
}
.ex-icon-ipad:before {
  content: "\ec27";
}
.ex-icon-iphone:before {
  content: "\ec28";
}
.ex-icon-ipod-player:before {
  content: "\ec29";
}
.ex-icon-italic:before {
  content: "\ec2a";
}
.ex-icon-italic-text:before {
  content: "\ec2b";
}
.ex-icon-item-grid:before {
  content: "\ec2c";
}
.ex-icon-items-in-cart:before {
  content: "\ec2d";
}
.ex-icon-items-list:before {
  content: "\ec2e";
}
.ex-icon-japanese-yen:before {
  content: "\ec2f";
}
.ex-icon-jet-ski:before {
  content: "\ec30";
}
.ex-icon-journal:before {
  content: "\ec31";
}
.ex-icon-journalism:before {
  content: "\ec32";
}
.ex-icon-joystick:before {
  content: "\ec33";
}
.ex-icon-jug:before {
  content: "\ec34";
}
.ex-icon-juice-jug:before {
  content: "\ec35";
}
.ex-icon-justify:before {
  content: "\ec36";
}
.ex-icon-kettle:before {
  content: "\ec37";
}
.ex-icon-key:before {
  content: "\ec38";
}
.ex-icon-keyboard:before {
  content: "\ec39";
}
.ex-icon-keyboard-2:before {
  content: "\ec3a";
}
.ex-icon-keyhole:before {
  content: "\ec3b";
}
.ex-icon-king:before {
  content: "\ec3c";
}
.ex-icon-kitchen-scale:before {
  content: "\ec3d";
}
.ex-icon-kitchen-stove:before {
  content: "\ec3e";
}
.ex-icon-label:before {
  content: "\ec3f";
}
.ex-icon-label-tag:before {
  content: "\ec40";
}
.ex-icon-ladle:before {
  content: "\ec41";
}
.ex-icon-lady:before {
  content: "\ec42";
}
.ex-icon-landline:before {
  content: "\ec43";
}
.ex-icon-landscape:before {
  content: "\ec44";
}
.ex-icon-landscape-document:before {
  content: "\ec45";
}
.ex-icon-landscape-image:before {
  content: "\ec46";
}
.ex-icon-landscape-orientation:before {
  content: "\ec47";
}
.ex-icon-laptop:before {
  content: "\ec48";
}
.ex-icon-law:before {
  content: "\ec49";
}
.ex-icon-layers:before {
  content: "\ec4a";
}
.ex-icon-layout:before {
  content: "\ec4b";
}
.ex-icon-layout-list:before {
  content: "\ec4c";
}
.ex-icon-left-align-text:before {
  content: "\ec4d";
}
.ex-icon-left-key:before {
  content: "\ec4e";
}
.ex-icon-left-sidebar-layout:before {
  content: "\ec4f";
}
.ex-icon-lemon:before {
  content: "\ec50";
}
.ex-icon-less-indent:before {
  content: "\ec51";
}
.ex-icon-letter:before {
  content: "\ec52";
}
.ex-icon-letter-2:before {
  content: "\ec53";
}
.ex-icon-letter-folder:before {
  content: "\ec54";
}
.ex-icon-lifebelt:before {
  content: "\ec55";
}
.ex-icon-lighthouse:before {
  content: "\ec56";
}
.ex-icon-lightning-bolt:before {
  content: "\ec57";
}
.ex-icon-lightning-drizzle:before {
  content: "\ec58";
}
.ex-icon-lightning-rain:before {
  content: "\ec59";
}
.ex-icon-lightning-strike:before {
  content: "\ec5a";
}
.ex-icon-light-rain:before {
  content: "\ec5b";
}
.ex-icon-like:before {
  content: "\ec5c";
}
.ex-icon-like-2:before {
  content: "\ec5d";
}
.ex-icon-like-hand:before {
  content: "\ec5e";
}
.ex-icon-like-match:before {
  content: "\ec5f";
}
.ex-icon-likes:before {
  content: "\ec60";
}
.ex-icon-like-woman-match:before {
  content: "\ec61";
}
.ex-icon-line:before {
  content: "\ec62";
}
.ex-icon-line-spacing:before {
  content: "\ec63";
}
.ex-icon-link:before {
  content: "\ec64";
}
.ex-icon-link-2:before {
  content: "\ec65";
}
.ex-icon-liquor:before {
  content: "\ec66";
}
.ex-icon-liquor-glass:before {
  content: "\ec67";
}
.ex-icon-list:before {
  content: "\ec68";
}
.ex-icon-list-details:before {
  content: "\ec69";
}
.ex-icon-list-layout:before {
  content: "\ec6a";
}
.ex-icon-loading:before {
  content: "\ec6b";
}
.ex-icon-location-flag:before {
  content: "\ec6c";
}
.ex-icon-location-marker:before {
  content: "\ec6d";
}
.ex-icon-location-pin:before {
  content: "\ec6e";
}
.ex-icon-location-pin-2:before {
  content: "\ec6f";
}
.ex-icon-lock:before {
  content: "\ec70";
}
.ex-icon-lock-2:before {
  content: "\ec71";
}
.ex-icon-lock-database:before {
  content: "\ec72";
}
.ex-icon-locked:before {
  content: "\ec73";
}
.ex-icon-lock-opened:before {
  content: "\ec74";
}
.ex-icon-lock-server:before {
  content: "\ec75";
}
.ex-icon-lock-window:before {
  content: "\ec76";
}
.ex-icon-locomotive:before {
  content: "\ec77";
}
.ex-icon-lol-emoji:before {
  content: "\ec78";
}
.ex-icon-lollipop:before {
  content: "\ec79";
}
.ex-icon-london-bus:before {
  content: "\ec7a";
}
.ex-icon-loop:before {
  content: "\ec7b";
}
.ex-icon-loop-2:before {
  content: "\ec7c";
}
.ex-icon-loop-3:before {
  content: "\ec7d";
}
.ex-icon-loop-4:before {
  content: "\ec7e";
}
.ex-icon-loop-5:before {
  content: "\ec7f";
}
.ex-icon-loudspeaker:before {
  content: "\ec80";
}
.ex-icon-love-location:before {
  content: "\ec81";
}
.ex-icon-love-map-pin:before {
  content: "\ec82";
}
.ex-icon-love-marker:before {
  content: "\ec83";
}
.ex-icon-love-pin:before {
  content: "\ec84";
}
.ex-icon-low-battery:before {
  content: "\ec85";
}
.ex-icon-low-power:before {
  content: "\ec86";
}
.ex-icon-low-signal:before {
  content: "\ec87";
}
.ex-icon-low-volume:before {
  content: "\ec88";
}
.ex-icon-luxury:before {
  content: "\ec89";
}
.ex-icon-magazine:before {
  content: "\ec8a";
}
.ex-icon-mail:before {
  content: "\ec8b";
}
.ex-icon-make-a-call:before {
  content: "\ec8c";
}
.ex-icon-make-call:before {
  content: "\ec8d";
}
.ex-icon-male-user:before {
  content: "\ec8e";
}
.ex-icon-man:before {
  content: "\ec8f";
}
.ex-icon-man-symbol:before {
  content: "\ec90";
}
.ex-icon-manual:before {
  content: "\ec91";
}
.ex-icon-map:before {
  content: "\ec92";
}
.ex-icon-map-location:before {
  content: "\ec93";
}
.ex-icon-map-location-2:before {
  content: "\ec94";
}
.ex-icon-map-marker:before {
  content: "\ec95";
}
.ex-icon-map-marker-2:before {
  content: "\ec96";
}
.ex-icon-map-pin:before {
  content: "\ec97";
}
.ex-icon-map-place:before {
  content: "\ec98";
}
.ex-icon-margarita:before {
  content: "\ec99";
}
.ex-icon-maritime-transport:before {
  content: "\ec9a";
}
.ex-icon-marker:before {
  content: "\ec9b";
}
.ex-icon-marker-location:before {
  content: "\ec9c";
}
.ex-icon-marker-pen:before {
  content: "\ec9d";
}
.ex-icon-markers:before {
  content: "\ec9e";
}
.ex-icon-martini:before {
  content: "\ec9f";
}
.ex-icon-maximize-screen:before {
  content: "\eca0";
}
.ex-icon-maximize-screen-2:before {
  content: "\eca1";
}
.ex-icon-maximize-window:before {
  content: "\eca2";
}
.ex-icon-measuring-cup:before {
  content: "\eca3";
}
.ex-icon-meat:before {
  content: "\eca4";
}
.ex-icon-meat-tenderizer:before {
  content: "\eca5";
}
.ex-icon-medal:before {
  content: "\eca6";
}
.ex-icon-media-content:before {
  content: "\eca7";
}
.ex-icon-medium-signal:before {
  content: "\eca8";
}
.ex-icon-medium-volume:before {
  content: "\eca9";
}
.ex-icon-meeting-geotag:before {
  content: "\ecaa";
}
.ex-icon-meeting-location:before {
  content: "\ecab";
}
.ex-icon-meeting-location-2:before {
  content: "\ecac";
}
.ex-icon-meeting-map-marker:before {
  content: "\ecad";
}
.ex-icon-meeting-map-pin:before {
  content: "\ecae";
}
.ex-icon-meeting-marker:before {
  content: "\ecaf";
}
.ex-icon-meeting-pin:before {
  content: "\ecb0";
}
.ex-icon-meeting-place:before {
  content: "\ecb1";
}
.ex-icon-megaphone:before {
  content: "\ecb2";
}
.ex-icon-memory-sd-card:before {
  content: "\ecb3";
}
.ex-icon-men:before {
  content: "\ecb4";
}
.ex-icon-menu:before {
  content: "\ecb5";
}
.ex-icon-menu-hamburger:before {
  content: "\ecb6";
}
.ex-icon-merchandise-bag:before {
  content: "\ecb7";
}
.ex-icon-merge:before {
  content: "\ecb8";
}
.ex-icon-message:before {
  content: "\ecb9";
}
.ex-icon-message-app:before {
  content: "\ecba";
}
.ex-icon-message-app-2:before {
  content: "\ecbb";
}
.ex-icon-message-bubble:before {
  content: "\ecbc";
}
.ex-icon-message-received:before {
  content: "\ecbd";
}
.ex-icon-messaging:before {
  content: "\ecbe";
}
.ex-icon-messaging-app:before {
  content: "\ecbf";
}
.ex-icon-metro:before {
  content: "\ecc0";
}
.ex-icon-microphone:before {
  content: "\ecc1";
}
.ex-icon-microphone-2:before {
  content: "\ecc2";
}
.ex-icon-microwave:before {
  content: "\ecc3";
}
.ex-icon-milk-carton:before {
  content: "\ecc4";
}
.ex-icon-milkshake:before {
  content: "\ecc5";
}
.ex-icon-minify:before {
  content: "\ecc6";
}
.ex-icon-minimize:before {
  content: "\ecc7";
}
.ex-icon-minimize-2:before {
  content: "\ecc8";
}
.ex-icon-minimize-window:before {
  content: "\ecc9";
}
.ex-icon-minus:before {
  content: "\ecca";
}
.ex-icon-minus-2:before {
  content: "\eccb";
}
.ex-icon-minus-circle:before {
  content: "\eccc";
}
.ex-icon-minus-square:before {
  content: "\eccd";
}
.ex-icon-missed-call:before {
  content: "\ecce";
}
.ex-icon-missile:before {
  content: "\eccf";
}
.ex-icon-mix:before {
  content: "\ecd0";
}
.ex-icon-mixer:before {
  content: "\ecd1";
}
.ex-icon-mobile-phone-signal:before {
  content: "\ecd2";
}
.ex-icon-modem:before {
  content: "\ecd3";
}
.ex-icon-moderate-comment:before {
  content: "\ecd4";
}
.ex-icon-moka-coffee-pot:before {
  content: "\ecd5";
}
.ex-icon-money:before {
  content: "\ecd6";
}
.ex-icon-money-2:before {
  content: "\ecd7";
}
.ex-icon-money-bag:before {
  content: "\ecd8";
}
.ex-icon-money-bag-bitcoin:before {
  content: "\ecd9";
}
.ex-icon-money-bag-euro:before {
  content: "\ecda";
}
.ex-icon-money-bag-pound:before {
  content: "\ecdb";
}
.ex-icon-money-bag-yen:before {
  content: "\ecdc";
}
.ex-icon-money-box:before {
  content: "\ecdd";
}
.ex-icon-moon:before {
  content: "\ecde";
}
.ex-icon-moon-2:before {
  content: "\ecdf";
}
.ex-icon-more:before {
  content: "\ece0";
}
.ex-icon-more-indent:before {
  content: "\ece1";
}
.ex-icon-morning:before {
  content: "\ece2";
}
.ex-icon-mostly-cloudy-lightning:before {
  content: "\ece3";
}
.ex-icon-mostly-cloudy-light-rain:before {
  content: "\ece4";
}
.ex-icon-mostly-cloudy-rain:before {
  content: "\ece5";
}
.ex-icon-motorbike:before {
  content: "\ece6";
}
.ex-icon-motorboat:before {
  content: "\ece7";
}
.ex-icon-motorcycle:before {
  content: "\ece8";
}
.ex-icon-motorcycle-helmet:before {
  content: "\ece9";
}
.ex-icon-mountain:before {
  content: "\ecea";
}
.ex-icon-mouse:before {
  content: "\eceb";
}
.ex-icon-mouse-2:before {
  content: "\ecec";
}
.ex-icon-mouse-3:before {
  content: "\eced";
}
.ex-icon-move:before {
  content: "\ecee";
}
.ex-icon-move-bottom:before {
  content: "\ecef";
}
.ex-icon-move-hand:before {
  content: "\ecf0";
}
.ex-icon-move-horizontal:before {
  content: "\ecf1";
}
.ex-icon-move-left:before {
  content: "\ecf2";
}
.ex-icon-move-object:before {
  content: "\ecf3";
}
.ex-icon-move-right:before {
  content: "\ecf4";
}
.ex-icon-move-tool:before {
  content: "\ecf5";
}
.ex-icon-move-top:before {
  content: "\ecf6";
}
.ex-icon-move-vertical:before {
  content: "\ecf7";
}
.ex-icon-movie:before {
  content: "\ecf8";
}
.ex-icon-movie-camera:before {
  content: "\ecf9";
}
.ex-icon-movie-clapperboard:before {
  content: "\ecfa";
}
.ex-icon-movie-reel-film:before {
  content: "\ecfb";
}
.ex-icon-muffin:before {
  content: "\ecfc";
}
.ex-icon-multiple-files:before {
  content: "\ecfd";
}
.ex-icon-multiple-windows:before {
  content: "\ecfe";
}
.ex-icon-mushroom:before {
  content: "\ecff";
}
.ex-icon-mushroom-slice:before {
  content: "\ed00";
}
.ex-icon-music:before {
  content: "\ed01";
}
.ex-icon-musical-note:before {
  content: "\ed02";
}
.ex-icon-music-file:before {
  content: "\ed03";
}
.ex-icon-music-file-2:before {
  content: "\ed04";
}
.ex-icon-music-files:before {
  content: "\ed05";
}
.ex-icon-music-folder:before {
  content: "\ed06";
}
.ex-icon-music-note:before {
  content: "\ed07";
}
.ex-icon-music-player:before {
  content: "\ed08";
}
.ex-icon-music-player-ipod:before {
  content: "\ed09";
}
.ex-icon-music-playlist:before {
  content: "\ed0a";
}
.ex-icon-music-radio:before {
  content: "\ed0b";
}
.ex-icon-mustard:before {
  content: "\ed0c";
}
.ex-icon-mute:before {
  content: "\ed0d";
}
.ex-icon-mute-2:before {
  content: "\ed0e";
}
.ex-icon-mute-chat:before {
  content: "\ed0f";
}
.ex-icon-mute-mic:before {
  content: "\ed10";
}
.ex-icon-navigation-down:before {
  content: "\ed11";
}
.ex-icon-navigation-left:before {
  content: "\ed12";
}
.ex-icon-navigation-map:before {
  content: "\ed13";
}
.ex-icon-navigation-right:before {
  content: "\ed14";
}
.ex-icon-navigation-up:before {
  content: "\ed15";
}
.ex-icon-network-drive:before {
  content: "\ed16";
}
.ex-icon-neutral-emoji:before {
  content: "\ed17";
}
.ex-icon-new:before {
  content: "\ed18";
}
.ex-icon-new-2:before {
  content: "\ed19";
}
.ex-icon-new-archive:before {
  content: "\ed1a";
}
.ex-icon-new-badge:before {
  content: "\ed1b";
}
.ex-icon-new-chat:before {
  content: "\ed1c";
}
.ex-icon-new-comment:before {
  content: "\ed1d";
}
.ex-icon-new-email:before {
  content: "\ed1e";
}
.ex-icon-new-file:before {
  content: "\ed1f";
}
.ex-icon-new-folder:before {
  content: "\ed20";
}
.ex-icon-new-message:before {
  content: "\ed21";
}
.ex-icon-news:before {
  content: "\ed22";
}
.ex-icon-news-2:before {
  content: "\ed23";
}
.ex-icon-news-article:before {
  content: "\ed24";
}
.ex-icon-news-article-2:before {
  content: "\ed25";
}
.ex-icon-new-save:before {
  content: "\ed26";
}
.ex-icon-newspaper:before {
  content: "\ed27";
}
.ex-icon-new-sticker:before {
  content: "\ed28";
}
.ex-icon-news-website:before {
  content: "\ed29";
}
.ex-icon-new-window:before {
  content: "\ed2a";
}
.ex-icon-new-window-2:before {
  content: "\ed2b";
}
.ex-icon-next:before {
  content: "\ed2c";
}
.ex-icon-next-2:before {
  content: "\ed2d";
}
.ex-icon-next-3:before {
  content: "\ed2e";
}
.ex-icon-night-cloudy:before {
  content: "\ed2f";
}
.ex-icon-night-cloudy-fog:before {
  content: "\ed30";
}
.ex-icon-night-cloudy-lightning:before {
  content: "\ed31";
}
.ex-icon-night-cloudy-rain:before {
  content: "\ed32";
}
.ex-icon-night-cloudy-snow:before {
  content: "\ed33";
}
.ex-icon-night-cloudy-wind-gust:before {
  content: "\ed34";
}
.ex-icon-night-hail:before {
  content: "\ed35";
}
.ex-icon-night-heavy-rain:before {
  content: "\ed36";
}
.ex-icon-night-heavy-snow:before {
  content: "\ed37";
}
.ex-icon-night-lightning-storm:before {
  content: "\ed38";
}
.ex-icon-night-light-rain:before {
  content: "\ed39";
}
.ex-icon-night-rain:before {
  content: "\ed3a";
}
.ex-icon-night-snow:before {
  content: "\ed3b";
}
.ex-icon-night-wind:before {
  content: "\ed3c";
}
.ex-icon-note:before {
  content: "\ed3d";
}
.ex-icon-notebook:before {
  content: "\ed3e";
}
.ex-icon-note-home:before {
  content: "\ed3f";
}
.ex-icon-note-settings:before {
  content: "\ed40";
}
.ex-icon-note-text:before {
  content: "\ed41";
}
.ex-icon-numbers:before {
  content: "\ed42";
}
.ex-icon-num-lock-key:before {
  content: "\ed43";
}
.ex-icon-nurse:before {
  content: "\ed44";
}
.ex-icon-office-phone:before {
  content: "\ed45";
}
.ex-icon-old-cash-register:before {
  content: "\ed46";
}
.ex-icon-online-payment:before {
  content: "\ed47";
}
.ex-icon-on-sale-sticker:before {
  content: "\ed48";
}
.ex-icon-open-24:before {
  content: "\ed49";
}
.ex-icon-open-24-hours:before {
  content: "\ed4a";
}
.ex-icon-open-book:before {
  content: "\ed4b";
}
.ex-icon-open-box:before {
  content: "\ed4c";
}
.ex-icon-open-document:before {
  content: "\ed4d";
}
.ex-icon-open-file:before {
  content: "\ed4e";
}
.ex-icon-open-in-window:before {
  content: "\ed4f";
}
.ex-icon-open-mail:before {
  content: "\ed50";
}
.ex-icon-orange:before {
  content: "\ed51";
}
.ex-icon-orange-2:before {
  content: "\ed52";
}
.ex-icon-orange-slice:before {
  content: "\ed53";
}
.ex-icon-order-completed:before {
  content: "\ed54";
}
.ex-icon-outgoing-call:before {
  content: "\ed55";
}
.ex-icon-outgoing-email-server:before {
  content: "\ed56";
}
.ex-icon-out-of-stock:before {
  content: "\ed57";
}
.ex-icon-oven-mitt:before {
  content: "\ed58";
}
.ex-icon-package-delivered:before {
  content: "\ed59";
}
.ex-icon-page:before {
  content: "\ed5a";
}
.ex-icon-panorama-image:before {
  content: "\ed5b";
}
.ex-icon-paper:before {
  content: "\ed5c";
}
.ex-icon-paper-bag:before {
  content: "\ed5d";
}
.ex-icon-paper-clip:before {
  content: "\ed5e";
}
.ex-icon-paper-cup:before {
  content: "\ed5f";
}
.ex-icon-paper-plane:before {
  content: "\ed60";
}
.ex-icon-paper-stack:before {
  content: "\ed61";
}
.ex-icon-paperwork:before {
  content: "\ed62";
}
.ex-icon-paragraph:before {
  content: "\ed63";
}
.ex-icon-paragraph-symbol:before {
  content: "\ed64";
}
.ex-icon-paragraph-text:before {
  content: "\ed65";
}
.ex-icon-partly-cloudy:before {
  content: "\ed66";
}
.ex-icon-partly-cloudy-drizzle:before {
  content: "\ed67";
}
.ex-icon-partly-cloudy-fog:before {
  content: "\ed68";
}
.ex-icon-partly-cloudy-hail:before {
  content: "\ed69";
}
.ex-icon-partly-cloudy-rain:before {
  content: "\ed6a";
}
.ex-icon-partly-cloudy-snow:before {
  content: "\ed6b";
}
.ex-icon-partly-cloudy-snow-flurry:before {
  content: "\ed6c";
}
.ex-icon-partly-cloudy-thunderstorm:before {
  content: "\ed6d";
}
.ex-icon-partly-cloudy-wind:before {
  content: "\ed6e";
}
.ex-icon-party-drink:before {
  content: "\ed6f";
}
.ex-icon-pass:before {
  content: "\ed70";
}
.ex-icon-passport:before {
  content: "\ed71";
}
.ex-icon-password:before {
  content: "\ed72";
}
.ex-icon-password-2:before {
  content: "\ed73";
}
.ex-icon-pause:before {
  content: "\ed74";
}
.ex-icon-pause-2:before {
  content: "\ed75";
}
.ex-icon-pay-by-card:before {
  content: "\ed76";
}
.ex-icon-pear:before {
  content: "\ed77";
}
.ex-icon-pen:before {
  content: "\ed78";
}
.ex-icon-pencil:before {
  content: "\ed79";
}
.ex-icon-pencil-2:before {
  content: "\ed7a";
}
.ex-icon-people:before {
  content: "\ed7b";
}
.ex-icon-pepper-mill:before {
  content: "\ed7c";
}
.ex-icon-percentage:before {
  content: "\ed7d";
}
.ex-icon-percentage-2:before {
  content: "\ed7e";
}
.ex-icon-person:before {
  content: "\ed7f";
}
.ex-icon-phone:before {
  content: "\ed80";
}
.ex-icon-photo-camera:before {
  content: "\ed81";
}
.ex-icon-photo-gallery:before {
  content: "\ed82";
}
.ex-icon-photos:before {
  content: "\ed83";
}
.ex-icon-physician:before {
  content: "\ed84";
}
.ex-icon-piano:before {
  content: "\ed85";
}
.ex-icon-pickup:before {
  content: "\ed86";
}
.ex-icon-picture:before {
  content: "\ed87";
}
.ex-icon-picture-frame:before {
  content: "\ed88";
}
.ex-icon-pictures:before {
  content: "\ed89";
}
.ex-icon-pie:before {
  content: "\ed8a";
}
.ex-icon-pie-chart:before {
  content: "\ed8b";
}
.ex-icon-pin:before {
  content: "\ed8c";
}
.ex-icon-pin-2:before {
  content: "\ed8d";
}
.ex-icon-pin-3:before {
  content: "\ed8e";
}
.ex-icon-pin-4:before {
  content: "\ed8f";
}
.ex-icon-pinch-diagonal:before {
  content: "\ed90";
}
.ex-icon-pin-cluster:before {
  content: "\ed91";
}
.ex-icon-pin-destination:before {
  content: "\ed92";
}
.ex-icon-pineapple:before {
  content: "\ed93";
}
.ex-icon-pin-location:before {
  content: "\ed94";
}
.ex-icon-pint:before {
  content: "\ed95";
}
.ex-icon-pizza:before {
  content: "\ed96";
}
.ex-icon-pizza-slice:before {
  content: "\ed97";
}
.ex-icon-place:before {
  content: "\ed98";
}
.ex-icon-plane:before {
  content: "\ed99";
}
.ex-icon-plane-arrival:before {
  content: "\ed9a";
}
.ex-icon-plane-departure:before {
  content: "\ed9b";
}
.ex-icon-play:before {
  content: "\ed9c";
}
.ex-icon-play-2:before {
  content: "\ed9d";
}
.ex-icon-play-button:before {
  content: "\ed9e";
}
.ex-icon-playlist:before {
  content: "\ed9f";
}
.ex-icon-play-movie:before {
  content: "\eda0";
}
.ex-icon-play-video:before {
  content: "\eda1";
}
.ex-icon-plug:before {
  content: "\eda2";
}
.ex-icon-plus:before {
  content: "\eda3";
}
.ex-icon-podcast:before {
  content: "\eda4";
}
.ex-icon-podium:before {
  content: "\eda5";
}
.ex-icon-point-and-shoot-camera:before {
  content: "\eda6";
}
.ex-icon-pointer:before {
  content: "\eda7";
}
.ex-icon-point-hand:before {
  content: "\eda8";
}
.ex-icon-point-of-interest:before {
  content: "\eda9";
}
.ex-icon-polaroid-camera:before {
  content: "\edaa";
}
.ex-icon-police:before {
  content: "\edab";
}
.ex-icon-popstar-female:before {
  content: "\edac";
}
.ex-icon-portfolio-grid:before {
  content: "\edad";
}
.ex-icon-portrait-image:before {
  content: "\edae";
}
.ex-icon-postal-box:before {
  content: "\edaf";
}
.ex-icon-post-box:before {
  content: "\edb0";
}
.ex-icon-pos-terminal:before {
  content: "\edb1";
}
.ex-icon-potato:before {
  content: "\edb2";
}
.ex-icon-potato-masher:before {
  content: "\edb3";
}
.ex-icon-power-cord:before {
  content: "\edb4";
}
.ex-icon-presentation:before {
  content: "\edb5";
}
.ex-icon-previous:before {
  content: "\edb6";
}
.ex-icon-previous-2:before {
  content: "\edb7";
}
.ex-icon-price:before {
  content: "\edb8";
}
.ex-icon-price-calculator:before {
  content: "\edb9";
}
.ex-icon-price-tag:before {
  content: "\edba";
}
.ex-icon-print:before {
  content: "\edbb";
}
.ex-icon-priority-warning:before {
  content: "\edbc";
}
.ex-icon-prisoner:before {
  content: "\edbd";
}
.ex-icon-privacy:before {
  content: "\edbe";
}
.ex-icon-private:before {
  content: "\edbf";
}
.ex-icon-private-folder:before {
  content: "\edc0";
}
.ex-icon-private-soldier:before {
  content: "\edc1";
}
.ex-icon-prize:before {
  content: "\edc2";
}
.ex-icon-pro-camcorder:before {
  content: "\edc3";
}
.ex-icon-pro-camera-slr:before {
  content: "\edc4";
}
.ex-icon-processor-cpu:before {
  content: "\edc5";
}
.ex-icon-products-in-cart:before {
  content: "\edc6";
}
.ex-icon-profile:before {
  content: "\edc7";
}
.ex-icon-profile-picture:before {
  content: "\edc8";
}
.ex-icon-profile-settings:before {
  content: "\edc9";
}
.ex-icon-pro-laptop:before {
  content: "\edca";
}
.ex-icon-property:before {
  content: "\edcb";
}
.ex-icon-protect-archive:before {
  content: "\edcc";
}
.ex-icon-protect-file:before {
  content: "\edcd";
}
.ex-icon-protect-file-save:before {
  content: "\edce";
}
.ex-icon-protect-folder:before {
  content: "\edcf";
}
.ex-icon-protect-shield:before {
  content: "\edd0";
}
.ex-icon-pumpkin:before {
  content: "\edd1";
}
.ex-icon-purchase-order:before {
  content: "\edd2";
}
.ex-icon-purse:before {
  content: "\edd3";
}
.ex-icon-puzzle:before {
  content: "\edd4";
}
.ex-icon-puzzle-2:before {
  content: "\edd5";
}
.ex-icon-quality:before {
  content: "\edd6";
}
.ex-icon-quarter-moon:before {
  content: "\edd7";
}
.ex-icon-question-help:before {
  content: "\edd8";
}
.ex-icon-quit:before {
  content: "\edd9";
}
.ex-icon-radar:before {
  content: "\edda";
}
.ex-icon-radio:before {
  content: "\eddb";
}
.ex-icon-radio-set:before {
  content: "\eddc";
}
.ex-icon-radio-tower:before {
  content: "\eddd";
}
.ex-icon-radish:before {
  content: "\edde";
}
.ex-icon-rain:before {
  content: "\eddf";
}
.ex-icon-ram-memory:before {
  content: "\ede0";
}
.ex-icon-random:before {
  content: "\ede1";
}
.ex-icon-random-2:before {
  content: "\ede2";
}
.ex-icon-range-oven:before {
  content: "\ede3";
}
.ex-icon-rank:before {
  content: "\ede4";
}
.ex-icon-rating:before {
  content: "\ede5";
}
.ex-icon-read:before {
  content: "\ede6";
}
.ex-icon-read-email:before {
  content: "\ede7";
}
.ex-icon-reading:before {
  content: "\ede8";
}
.ex-icon-read-receipt-email:before {
  content: "\ede9";
}
.ex-icon-real-estate:before {
  content: "\edea";
}
.ex-icon-receipt:before {
  content: "\edeb";
}
.ex-icon-receive-call:before {
  content: "\edec";
}
.ex-icon-reception:before {
  content: "\eded";
}
.ex-icon-recommended:before {
  content: "\edee";
}
.ex-icon-record:before {
  content: "\edef";
}
.ex-icon-record-2:before {
  content: "\edf0";
}
.ex-icon-record-3:before {
  content: "\edf1";
}
.ex-icon-recording:before {
  content: "\edf2";
}
.ex-icon-record-video:before {
  content: "\edf3";
}
.ex-icon-recurring:before {
  content: "\edf4";
}
.ex-icon-recycle:before {
  content: "\edf5";
}
.ex-icon-recycle-2:before {
  content: "\edf6";
}
.ex-icon-redo:before {
  content: "\edf7";
}
.ex-icon-redo-2:before {
  content: "\edf8";
}
.ex-icon-redo-3:before {
  content: "\edf9";
}
.ex-icon-reference-book:before {
  content: "\edfa";
}
.ex-icon-reflect-tool:before {
  content: "\edfb";
}
.ex-icon-refresh:before {
  content: "\edfc";
}
.ex-icon-refresh-2:before {
  content: "\edfd";
}
.ex-icon-refresh-3:before {
  content: "\edfe";
}
.ex-icon-refresh-4:before {
  content: "\edff";
}
.ex-icon-refresh-cart:before {
  content: "\ee00";
}
.ex-icon-refresh-database:before {
  content: "\ee01";
}
.ex-icon-refresh-document:before {
  content: "\ee02";
}
.ex-icon-refresh-file:before {
  content: "\ee03";
}
.ex-icon-refresh-server:before {
  content: "\ee04";
}
.ex-icon-refresh-shopping-cart:before {
  content: "\ee05";
}
.ex-icon-refresh-window:before {
  content: "\ee06";
}
.ex-icon-refuse-call:before {
  content: "\ee07";
}
.ex-icon-reload:before {
  content: "\ee08";
}
.ex-icon-reload-2:before {
  content: "\ee09";
}
.ex-icon-reload-database:before {
  content: "\ee0a";
}
.ex-icon-reload-server:before {
  content: "\ee0b";
}
.ex-icon-reload-window:before {
  content: "\ee0c";
}
.ex-icon-remote-control:before {
  content: "\ee0d";
}
.ex-icon-remove-archive:before {
  content: "\ee0e";
}
.ex-icon-remove-chat:before {
  content: "\ee0f";
}
.ex-icon-remove-database:before {
  content: "\ee10";
}
.ex-icon-remove-document:before {
  content: "\ee11";
}
.ex-icon-remove-female-user:before {
  content: "\ee12";
}
.ex-icon-remove-file:before {
  content: "\ee13";
}
.ex-icon-remove-file-save:before {
  content: "\ee14";
}
.ex-icon-remove-folder:before {
  content: "\ee15";
}
.ex-icon-remove-from-cart:before {
  content: "\ee16";
}
.ex-icon-remove-from-shopping-cart:before {
  content: "\ee17";
}
.ex-icon-remove-geotag:before {
  content: "\ee18";
}
.ex-icon-remove-image:before {
  content: "\ee19";
}
.ex-icon-remove-link:before {
  content: "\ee1a";
}
.ex-icon-remove-location:before {
  content: "\ee1b";
}
.ex-icon-remove-location-2:before {
  content: "\ee1c";
}
.ex-icon-remove-map-marker:before {
  content: "\ee1d";
}
.ex-icon-remove-map-pin:before {
  content: "\ee1e";
}
.ex-icon-remove-marker:before {
  content: "\ee1f";
}
.ex-icon-remove-note:before {
  content: "\ee20";
}
.ex-icon-remove-pin:before {
  content: "\ee21";
}
.ex-icon-remove-place:before {
  content: "\ee22";
}
.ex-icon-remove-server:before {
  content: "\ee23";
}
.ex-icon-remove-user:before {
  content: "\ee24";
}
.ex-icon-remove-user-2:before {
  content: "\ee25";
}
.ex-icon-remove-woman-user:before {
  content: "\ee26";
}
.ex-icon-repeat:before {
  content: "\ee27";
}
.ex-icon-repeat-2:before {
  content: "\ee28";
}
.ex-icon-repeat-3:before {
  content: "\ee29";
}
.ex-icon-repeat-4:before {
  content: "\ee2a";
}
.ex-icon-repository:before {
  content: "\ee2b";
}
.ex-icon-reset-window:before {
  content: "\ee2c";
}
.ex-icon-resize:before {
  content: "\ee2d";
}
.ex-icon-resize-diagonal:before {
  content: "\ee2e";
}
.ex-icon-resize-horizontal:before {
  content: "\ee2f";
}
.ex-icon-resize-vertical:before {
  content: "\ee30";
}
.ex-icon-restart:before {
  content: "\ee31";
}
.ex-icon-restart-2:before {
  content: "\ee32";
}
.ex-icon-restaurant:before {
  content: "\ee33";
}
.ex-icon-restore:before {
  content: "\ee34";
}
.ex-icon-restore-window:before {
  content: "\ee35";
}
.ex-icon-retail-bag:before {
  content: "\ee36";
}
.ex-icon-retail-bag-2:before {
  content: "\ee37";
}
.ex-icon-retro-camera:before {
  content: "\ee38";
}
.ex-icon-retry:before {
  content: "\ee39";
}
.ex-icon-return-purchase:before {
  content: "\ee3a";
}
.ex-icon-rewind:before {
  content: "\ee3b";
}
.ex-icon-rewind-2:before {
  content: "\ee3c";
}
.ex-icon-rewind-3:before {
  content: "\ee3d";
}
.ex-icon-rewind-4:before {
  content: "\ee3e";
}
.ex-icon-rewind-5:before {
  content: "\ee3f";
}
.ex-icon-rfid-signal:before {
  content: "\ee40";
}
.ex-icon-ribbon:before {
  content: "\ee41";
}
.ex-icon-ribbon-2:before {
  content: "\ee42";
}
.ex-icon-ribbon-add:before {
  content: "\ee43";
}
.ex-icon-ribbon-delete:before {
  content: "\ee44";
}
.ex-icon-right-align-text:before {
  content: "\ee45";
}
.ex-icon-right-key:before {
  content: "\ee46";
}
.ex-icon-right-sidebar-layout:before {
  content: "\ee47";
}
.ex-icon-ring-binders:before {
  content: "\ee48";
}
.ex-icon-roast-chicken:before {
  content: "\ee49";
}
.ex-icon-rocket:before {
  content: "\ee4a";
}
.ex-icon-rocket-2:before {
  content: "\ee4b";
}
.ex-icon-rolling-pin:before {
  content: "\ee4c";
}
.ex-icon-romantic:before {
  content: "\ee4d";
}
.ex-icon-rotate:before {
  content: "\ee4e";
}
.ex-icon-rotate-left:before {
  content: "\ee4f";
}
.ex-icon-rotate-right:before {
  content: "\ee50";
}
.ex-icon-router:before {
  content: "\ee51";
}
.ex-icon-royal:before {
  content: "\ee52";
}
.ex-icon-ruler:before {
  content: "\ee53";
}
.ex-icon-sad-emoji:before {
  content: "\ee54";
}
.ex-icon-safe:before {
  content: "\ee55";
}
.ex-icon-sailboat:before {
  content: "\ee56";
}
.ex-icon-sailing:before {
  content: "\ee57";
}
.ex-icon-salami:before {
  content: "\ee58";
}
.ex-icon-sales-down:before {
  content: "\ee59";
}
.ex-icon-sales-performance-down:before {
  content: "\ee5a";
}
.ex-icon-sales-performance-up:before {
  content: "\ee5b";
}
.ex-icon-sales-up:before {
  content: "\ee5c";
}
.ex-icon-salt-shaker:before {
  content: "\ee5d";
}
.ex-icon-sand-clock:before {
  content: "\ee5e";
}
.ex-icon-sandwich:before {
  content: "\ee5f";
}
.ex-icon-satchel-bag:before {
  content: "\ee60";
}
.ex-icon-satellite:before {
  content: "\ee61";
}
.ex-icon-satellite-2:before {
  content: "\ee62";
}
.ex-icon-sausage:before {
  content: "\ee63";
}
.ex-icon-save:before {
  content: "\ee64";
}
.ex-icon-save-2:before {
  content: "\ee65";
}
.ex-icon-save-file:before {
  content: "\ee66";
}
.ex-icon-save-file-2:before {
  content: "\ee67";
}
.ex-icon-save-to-cart:before {
  content: "\ee68";
}
.ex-icon-saxophone:before {
  content: "\ee69";
}
.ex-icon-schedule-database:before {
  content: "\ee6a";
}
.ex-icon-schedule-server:before {
  content: "\ee6b";
}
.ex-icon-schedule-window:before {
  content: "\ee6c";
}
.ex-icon-schoolbooks:before {
  content: "\ee6d";
}
.ex-icon-scissor:before {
  content: "\ee6e";
}
.ex-icon-scissor-2:before {
  content: "\ee6f";
}
.ex-icon-scooter:before {
  content: "\ee70";
}
.ex-icon-screwdriver:before {
  content: "\ee71";
}
.ex-icon-scroll:before {
  content: "\ee72";
}
.ex-icon-scroll-lock-key:before {
  content: "\ee73";
}
.ex-icon-seafood:before {
  content: "\ee74";
}
.ex-icon-seal:before {
  content: "\ee75";
}
.ex-icon-search:before {
  content: "\ee76";
}
.ex-icon-search-cart:before {
  content: "\ee77";
}
.ex-icon-search-database:before {
  content: "\ee78";
}
.ex-icon-search-email:before {
  content: "\ee79";
}
.ex-icon-search-find:before {
  content: "\ee7a";
}
.ex-icon-search-folder:before {
  content: "\ee7b";
}
.ex-icon-search-inbox:before {
  content: "\ee7c";
}
.ex-icon-search-product:before {
  content: "\ee7d";
}
.ex-icon-search-server:before {
  content: "\ee7e";
}
.ex-icon-search-window:before {
  content: "\ee7f";
}
.ex-icon-secured-account:before {
  content: "\ee80";
}
.ex-icon-secured-backup:before {
  content: "\ee81";
}
.ex-icon-secured-backup-2:before {
  content: "\ee82";
}
.ex-icon-secured-documents:before {
  content: "\ee83";
}
.ex-icon-secured-email:before {
  content: "\ee84";
}
.ex-icon-secured-female-account:before {
  content: "\ee85";
}
.ex-icon-secured-note:before {
  content: "\ee86";
}
.ex-icon-secured-note-2:before {
  content: "\ee87";
}
.ex-icon-secured-purchase:before {
  content: "\ee88";
}
.ex-icon-secure-e-commerce:before {
  content: "\ee89";
}
.ex-icon-secure-payment:before {
  content: "\ee8a";
}
.ex-icon-secure-shopping:before {
  content: "\ee8b";
}
.ex-icon-security-shield:before {
  content: "\ee8c";
}
.ex-icon-sedan:before {
  content: "\ee8d";
}
.ex-icon-selection-tool:before {
  content: "\ee8e";
}
.ex-icon-send-email:before {
  content: "\ee8f";
}
.ex-icon-sent-email:before {
  content: "\ee90";
}
.ex-icon-sergeant:before {
  content: "\ee91";
}
.ex-icon-server:before {
  content: "\ee92";
}
.ex-icon-set-square:before {
  content: "\ee93";
}
.ex-icon-setting:before {
  content: "\ee94";
}
.ex-icon-settings:before {
  content: "\ee95";
}
.ex-icon-settings-2:before {
  content: "\ee96";
}
.ex-icon-settings-3:before {
  content: "\ee97";
}
.ex-icon-settings-4:before {
  content: "\ee98";
}
.ex-icon-settings-database:before {
  content: "\ee99";
}
.ex-icon-settings-e-commerce:before {
  content: "\ee9a";
}
.ex-icon-settings-server:before {
  content: "\ee9b";
}
.ex-icon-settings-window:before {
  content: "\ee9c";
}
.ex-icon-share:before {
  content: "\ee9d";
}
.ex-icon-share-2:before {
  content: "\ee9e";
}
.ex-icon-share-3:before {
  content: "\ee9f";
}
.ex-icon-shared-files:before {
  content: "\eea0";
}
.ex-icon-shared-folder:before {
  content: "\eea1";
}
.ex-icon-sheriff-star:before {
  content: "\eea2";
}
.ex-icon-shield:before {
  content: "\eea3";
}
.ex-icon-shield-2:before {
  content: "\eea4";
}
.ex-icon-shield-crossmark:before {
  content: "\eea5";
}
.ex-icon-shield-security:before {
  content: "\eea6";
}
.ex-icon-shift-key:before {
  content: "\eea7";
}
.ex-icon-shipping-address:before {
  content: "\eea8";
}
.ex-icon-shipping-box:before {
  content: "\eea9";
}
.ex-icon-shipping-time:before {
  content: "\eeaa";
}
.ex-icon-shipping-truck:before {
  content: "\eeab";
}
.ex-icon-shopping-bag:before {
  content: "\eeac";
}
.ex-icon-shopping-bag-2:before {
  content: "\eead";
}
.ex-icon-shopping-basket:before {
  content: "\eeae";
}
.ex-icon-shopping-basket-2:before {
  content: "\eeaf";
}
.ex-icon-shopping-cart:before {
  content: "\eeb0";
}
.ex-icon-shopping-cart-2:before {
  content: "\eeb1";
}
.ex-icon-shopping-cart-error:before {
  content: "\eeb2";
}
.ex-icon-shop-sign:before {
  content: "\eeb3";
}
.ex-icon-shrink:before {
  content: "\eeb4";
}
.ex-icon-shuffle:before {
  content: "\eeb5";
}
.ex-icon-shuffle-2:before {
  content: "\eeb6";
}
.ex-icon-shuffle-3:before {
  content: "\eeb7";
}
.ex-icon-shuffle-4:before {
  content: "\eeb8";
}
.ex-icon-sidebar:before {
  content: "\eeb9";
}
.ex-icon-sidebar-content:before {
  content: "\eeba";
}
.ex-icon-sidebar-layout:before {
  content: "\eebb";
}
.ex-icon-sidebar-left:before {
  content: "\eebc";
}
.ex-icon-sidebar-right:before {
  content: "\eebd";
}
.ex-icon-signal-bars:before {
  content: "\eebe";
}
.ex-icon-silent-mode:before {
  content: "\eebf";
}
.ex-icon-skew-tool:before {
  content: "\eec0";
}
.ex-icon-skip-next:before {
  content: "\eec1";
}
.ex-icon-skip-next-2:before {
  content: "\eec2";
}
.ex-icon-skip-previous:before {
  content: "\eec3";
}
.ex-icon-skip-previous-2:before {
  content: "\eec4";
}
.ex-icon-skull-head:before {
  content: "\eec5";
}
.ex-icon-sleet:before {
  content: "\eec6";
}
.ex-icon-smartphone:before {
  content: "\eec7";
}
.ex-icon-smartphone-2:before {
  content: "\eec8";
}
.ex-icon-smile-emoji:before {
  content: "\eec9";
}
.ex-icon-smiley:before {
  content: "\eeca";
}
.ex-icon-sms-message:before {
  content: "\eecb";
}
.ex-icon-snooze-email:before {
  content: "\eecc";
}
.ex-icon-snow:before {
  content: "\eecd";
}
.ex-icon-snow-flurry:before {
  content: "\eece";
}
.ex-icon-snowmobile:before {
  content: "\eecf";
}
.ex-icon-social:before {
  content: "\eed0";
}
.ex-icon-soda:before {
  content: "\eed1";
}
.ex-icon-soda-bottle:before {
  content: "\eed2";
}
.ex-icon-soda-can:before {
  content: "\eed3";
}
.ex-icon-soda-glass:before {
  content: "\eed4";
}
.ex-icon-software-service:before {
  content: "\eed5";
}
.ex-icon-song:before {
  content: "\eed6";
}
.ex-icon-sorry-emoji:before {
  content: "\eed7";
}
.ex-icon-sorting:before {
  content: "\eed8";
}
.ex-icon-source-code:before {
  content: "\eed9";
}
.ex-icon-space-bar-key:before {
  content: "\eeda";
}
.ex-icon-spacecraft:before {
  content: "\eedb";
}
.ex-icon-spam-email:before {
  content: "\eedc";
}
.ex-icon-spatula:before {
  content: "\eedd";
}
.ex-icon-spatula-2:before {
  content: "\eede";
}
.ex-icon-speaker:before {
  content: "\eedf";
}
.ex-icon-speaker-call:before {
  content: "\eee0";
}
.ex-icon-speech-bubble:before {
  content: "\eee1";
}
.ex-icon-speedboat:before {
  content: "\eee2";
}
.ex-icon-speedometer:before {
  content: "\eee3";
}
.ex-icon-spirit-glass:before {
  content: "\eee4";
}
.ex-icon-split:before {
  content: "\eee5";
}
.ex-icon-split-arrow:before {
  content: "\eee6";
}
.ex-icon-sport-medal:before {
  content: "\eee7";
}
.ex-icon-spread-diagonal:before {
  content: "\eee8";
}
.ex-icon-square-bulleted-list:before {
  content: "\eee9";
}
.ex-icon-ssd-storage:before {
  content: "\eeea";
}
.ex-icon-ssl-e-commerce:before {
  content: "\eeeb";
}
.ex-icon-stack:before {
  content: "\eeec";
}
.ex-icon-star:before {
  content: "\eeed";
}
.ex-icon-star-2:before {
  content: "\eeee";
}
.ex-icon-star-medal:before {
  content: "\eeef";
}
.ex-icon-starred-user:before {
  content: "\eef0";
}
.ex-icon-stars:before {
  content: "\eef1";
}
.ex-icon-station-wagon:before {
  content: "\eef2";
}
.ex-icon-statistic:before {
  content: "\eef3";
}
.ex-icon-statistic-2:before {
  content: "\eef4";
}
.ex-icon-statistics:before {
  content: "\eef5";
}
.ex-icon-statistics-2:before {
  content: "\eef6";
}
.ex-icon-steak:before {
  content: "\eef7";
}
.ex-icon-steam-train:before {
  content: "\eef8";
}
.ex-icon-steering-wheel:before {
  content: "\eef9";
}
.ex-icon-stock:before {
  content: "\eefa";
}
.ex-icon-stock-boxes:before {
  content: "\eefb";
}
.ex-icon-stock-pot:before {
  content: "\eefc";
}
.ex-icon-stop:before {
  content: "\eefd";
}
.ex-icon-stop-2:before {
  content: "\eefe";
}
.ex-icon-stopwatch:before {
  content: "\eeff";
}
.ex-icon-storage-box:before {
  content: "\ef00";
}
.ex-icon-store:before {
  content: "\ef01";
}
.ex-icon-store-helpline:before {
  content: "\ef02";
}
.ex-icon-store-sale:before {
  content: "\ef03";
}
.ex-icon-store-sign:before {
  content: "\ef04";
}
.ex-icon-stovetop-kettle:before {
  content: "\ef05";
}
.ex-icon-strawberry:before {
  content: "\ef06";
}
.ex-icon-stream-video:before {
  content: "\ef07";
}
.ex-icon-street-view:before {
  content: "\ef08";
}
.ex-icon-stretch:before {
  content: "\ef09";
}
.ex-icon-stretch-vertical:before {
  content: "\ef0a";
}
.ex-icon-strikethrough:before {
  content: "\ef0b";
}
.ex-icon-strikethrough-2:before {
  content: "\ef0c";
}
.ex-icon-strong-wind:before {
  content: "\ef0d";
}
.ex-icon-student:before {
  content: "\ef0e";
}
.ex-icon-study:before {
  content: "\ef0f";
}
.ex-icon-subway:before {
  content: "\ef10";
}
.ex-icon-suitcase:before {
  content: "\ef11";
}
.ex-icon-suitcase-2:before {
  content: "\ef12";
}
.ex-icon-sun:before {
  content: "\ef13";
}
.ex-icon-sun-and-moon:before {
  content: "\ef14";
}
.ex-icon-sun-and-moon-2:before {
  content: "\ef15";
}
.ex-icon-sun-lounger:before {
  content: "\ef16";
}
.ex-icon-sunny:before {
  content: "\ef17";
}
.ex-icon-sunny-side-up-egg:before {
  content: "\ef18";
}
.ex-icon-sunny-wind-gust:before {
  content: "\ef19";
}
.ex-icon-sunrise:before {
  content: "\ef1a";
}
.ex-icon-sun-rising:before {
  content: "\ef1b";
}
.ex-icon-sunset:before {
  content: "\ef1c";
}
.ex-icon-sun-setting-down:before {
  content: "\ef1d";
}
.ex-icon-supermarket-basket:before {
  content: "\ef1e";
}
.ex-icon-support:before {
  content: "\ef1f";
}
.ex-icon-surgeon:before {
  content: "\ef20";
}
.ex-icon-surprised-emoji:before {
  content: "\ef21";
}
.ex-icon-survey:before {
  content: "\ef22";
}
.ex-icon-sushi:before {
  content: "\ef23";
}
.ex-icon-sushi-restaurant:before {
  content: "\ef24";
}
.ex-icon-sushi-roll:before {
  content: "\ef25";
}
.ex-icon-suv:before {
  content: "\ef26";
}
.ex-icon-sweet-pepper:before {
  content: "\ef27";
}
.ex-icon-swimming-pool:before {
  content: "\ef28";
}
.ex-icon-switch-camera:before {
  content: "\ef29";
}
.ex-icon-synced-archive:before {
  content: "\ef2a";
}
.ex-icon-synced-book:before {
  content: "\ef2b";
}
.ex-icon-synced-folder:before {
  content: "\ef2c";
}
.ex-icon-synced-note:before {
  content: "\ef2d";
}
.ex-icon-sync-email:before {
  content: "\ef2e";
}
.ex-icon-sync-files:before {
  content: "\ef2f";
}
.ex-icon-sync-files-2:before {
  content: "\ef30";
}
.ex-icon-sync-folder:before {
  content: "\ef31";
}
.ex-icon-synchronize:before {
  content: "\ef32";
}
.ex-icon-synchronize-2:before {
  content: "\ef33";
}
.ex-icon-syncing-document:before {
  content: "\ef34";
}
.ex-icon-syncing-files:before {
  content: "\ef35";
}
.ex-icon-sync-notes:before {
  content: "\ef36";
}
.ex-icon-tab-key:before {
  content: "\ef37";
}
.ex-icon-table-content:before {
  content: "\ef38";
}
.ex-icon-tablet:before {
  content: "\ef39";
}
.ex-icon-taco:before {
  content: "\ef3a";
}
.ex-icon-tag:before {
  content: "\ef3b";
}
.ex-icon-tag-2:before {
  content: "\ef3c";
}
.ex-icon-take-a-photo:before {
  content: "\ef3d";
}
.ex-icon-takeout-box:before {
  content: "\ef3e";
}
.ex-icon-take-video:before {
  content: "\ef3f";
}
.ex-icon-target:before {
  content: "\ef40";
}
.ex-icon-taxi:before {
  content: "\ef41";
}
.ex-icon-tea-cup:before {
  content: "\ef42";
}
.ex-icon-tea-kettle:before {
  content: "\ef43";
}
.ex-icon-team:before {
  content: "\ef44";
}
.ex-icon-tea-mug:before {
  content: "\ef45";
}
.ex-icon-telephone:before {
  content: "\ef46";
}
.ex-icon-telephone-operator:before {
  content: "\ef47";
}
.ex-icon-terminal:before {
  content: "\ef48";
}
.ex-icon-textbook:before {
  content: "\ef49";
}
.ex-icon-text-message:before {
  content: "\ef4a";
}
.ex-icon-text-strikethrough:before {
  content: "\ef4b";
}
.ex-icon-text-strikethrough-2:before {
  content: "\ef4c";
}
.ex-icon-text-underline:before {
  content: "\ef4d";
}
.ex-icon-text-underline-2:before {
  content: "\ef4e";
}
.ex-icon-thermometer:before {
  content: "\ef4f";
}
.ex-icon-thermometer-high:before {
  content: "\ef50";
}
.ex-icon-thermometer-low:before {
  content: "\ef51";
}
.ex-icon-thermometer-maximum:before {
  content: "\ef52";
}
.ex-icon-thermometer-medium:before {
  content: "\ef53";
}
.ex-icon-thief:before {
  content: "\ef54";
}
.ex-icon-third-quarter-moon:before {
  content: "\ef55";
}
.ex-icon-this-way-up:before {
  content: "\ef56";
}
.ex-icon-three-columns:before {
  content: "\ef57";
}
.ex-icon-three-columns-layout:before {
  content: "\ef58";
}
.ex-icon-thunder:before {
  content: "\ef59";
}
.ex-icon-ticket:before {
  content: "\ef5a";
}
.ex-icon-tick-sign:before {
  content: "\ef5b";
}
.ex-icon-time:before {
  content: "\ef5c";
}
.ex-icon-timekeeping:before {
  content: "\ef5d";
}
.ex-icon-time-limit:before {
  content: "\ef5e";
}
.ex-icon-timing:before {
  content: "\ef5f";
}
.ex-icon-toilet:before {
  content: "\ef60";
}
.ex-icon-tomato:before {
  content: "\ef61";
}
.ex-icon-tornado:before {
  content: "\ef62";
}
.ex-icon-total-cart:before {
  content: "\ef63";
}
.ex-icon-tractor:before {
  content: "\ef64";
}
.ex-icon-traffic-light:before {
  content: "\ef65";
}
.ex-icon-trailer:before {
  content: "\ef66";
}
.ex-icon-train:before {
  content: "\ef67";
}
.ex-icon-train-2:before {
  content: "\ef68";
}
.ex-icon-tram:before {
  content: "\ef69";
}
.ex-icon-trash-can:before {
  content: "\ef6a";
}
.ex-icon-travel-map:before {
  content: "\ef6b";
}
.ex-icon-travel-ticket:before {
  content: "\ef6c";
}
.ex-icon-tribunal:before {
  content: "\ef6d";
}
.ex-icon-trolley:before {
  content: "\ef6e";
}
.ex-icon-trolley-truck:before {
  content: "\ef6f";
}
.ex-icon-trophy:before {
  content: "\ef70";
}
.ex-icon-tropical-cocktail:before {
  content: "\ef71";
}
.ex-icon-truck:before {
  content: "\ef72";
}
.ex-icon-truck-2:before {
  content: "\ef73";
}
.ex-icon-tv:before {
  content: "\ef74";
}
.ex-icon-tv-camera:before {
  content: "\ef75";
}
.ex-icon-tv-display:before {
  content: "\ef76";
}
.ex-icon-two-column-layout:before {
  content: "\ef77";
}
.ex-icon-two-columns:before {
  content: "\ef78";
}
.ex-icon-type:before {
  content: "\ef79";
}
.ex-icon-type-tool:before {
  content: "\ef7a";
}
.ex-icon-umbrella:before {
  content: "\ef7b";
}
.ex-icon-unavailable:before {
  content: "\ef7c";
}
.ex-icon-underline:before {
  content: "\ef7d";
}
.ex-icon-underline-2:before {
  content: "\ef7e";
}
.ex-icon-undo:before {
  content: "\ef7f";
}
.ex-icon-undo-2:before {
  content: "\ef80";
}
.ex-icon-undo-3:before {
  content: "\ef81";
}
.ex-icon-undo-4:before {
  content: "\ef82";
}
.ex-icon-unite:before {
  content: "\ef83";
}
.ex-icon-unlike:before {
  content: "\ef84";
}
.ex-icon-unlike-2:before {
  content: "\ef85";
}
.ex-icon-unlock:before {
  content: "\ef86";
}
.ex-icon-unlocked:before {
  content: "\ef87";
}
.ex-icon-update:before {
  content: "\ef88";
}
.ex-icon-update-cart:before {
  content: "\ef89";
}
.ex-icon-update-shopping-cart:before {
  content: "\ef8a";
}
.ex-icon-up-key:before {
  content: "\ef8b";
}
.ex-icon-upload:before {
  content: "\ef8c";
}
.ex-icon-upload-2:before {
  content: "\ef8d";
}
.ex-icon-upload-archive:before {
  content: "\ef8e";
}
.ex-icon-upload-backup:before {
  content: "\ef8f";
}
.ex-icon-upload-folder-content:before {
  content: "\ef90";
}
.ex-icon-upload-note:before {
  content: "\ef91";
}
.ex-icon-upload-package:before {
  content: "\ef92";
}
.ex-icon-upload-to-cloud:before {
  content: "\ef93";
}
.ex-icon-uppercase:before {
  content: "\ef94";
}
.ex-icon-urgent-message:before {
  content: "\ef95";
}
.ex-icon-url:before {
  content: "\ef96";
}
.ex-icon-usb:before {
  content: "\ef97";
}
.ex-icon-usb-connected:before {
  content: "\ef98";
}
.ex-icon-usb-logo:before {
  content: "\ef99";
}
.ex-icon-us-dollar:before {
  content: "\ef9a";
}
.ex-icon-user:before {
  content: "\ef9b";
}
.ex-icon-user-address:before {
  content: "\ef9c";
}
.ex-icon-user-details:before {
  content: "\ef9d";
}
.ex-icon-user-direction-woman:before {
  content: "\ef9e";
}
.ex-icon-user-female-verified:before {
  content: "\ef9f";
}
.ex-icon-user-group:before {
  content: "\efa0";
}
.ex-icon-vault:before {
  content: "\efa1";
}
.ex-icon-vector:before {
  content: "\efa2";
}
.ex-icon-verified-user:before {
  content: "\efa3";
}
.ex-icon-verify-user:before {
  content: "\efa4";
}
.ex-icon-verify-woman-user:before {
  content: "\efa5";
}
.ex-icon-vertical-text-scale:before {
  content: "\efa6";
}
.ex-icon-vertical-text-scale-2:before {
  content: "\efa7";
}
.ex-icon-vespa:before {
  content: "\efa8";
}
.ex-icon-vibrate-phone-silent:before {
  content: "\efa9";
}
.ex-icon-video:before {
  content: "\efaa";
}
.ex-icon-video-call:before {
  content: "\efab";
}
.ex-icon-video-camera:before {
  content: "\efac";
}
.ex-icon-video-camera-2:before {
  content: "\efad";
}
.ex-icon-video-file:before {
  content: "\efae";
}
.ex-icon-video-files:before {
  content: "\efaf";
}
.ex-icon-video-folder:before {
  content: "\efb0";
}
.ex-icon-videogame-controller:before {
  content: "\efb1";
}
.ex-icon-view:before {
  content: "\efb2";
}
.ex-icon-vintage-camera:before {
  content: "\efb3";
}
.ex-icon-vinyl-record:before {
  content: "\efb4";
}
.ex-icon-visible:before {
  content: "\efb5";
}
.ex-icon-vocal-microphone:before {
  content: "\efb6";
}
.ex-icon-volume:before {
  content: "\efb7";
}
.ex-icon-volume-down:before {
  content: "\efb8";
}
.ex-icon-volume-up:before {
  content: "\efb9";
}
.ex-icon-waffle:before {
  content: "\efba";
}
.ex-icon-wall-clock:before {
  content: "\efbb";
}
.ex-icon-wallet:before {
  content: "\efbc";
}
.ex-icon-wallet-2:before {
  content: "\efbd";
}
.ex-icon-wallet-3:before {
  content: "\efbe";
}
.ex-icon-waning-crescent-moon:before {
  content: "\efbf";
}
.ex-icon-waning-gibbous-moon:before {
  content: "\efc0";
}
.ex-icon-warning:before {
  content: "\efc1";
}
.ex-icon-warning-window:before {
  content: "\efc2";
}
.ex-icon-watch:before {
  content: "\efc3";
}
.ex-icon-water:before {
  content: "\efc4";
}
.ex-icon-water-droplet:before {
  content: "\efc5";
}
.ex-icon-water-glass:before {
  content: "\efc6";
}
.ex-icon-watermelon:before {
  content: "\efc7";
}
.ex-icon-waving-flag:before {
  content: "\efc8";
}
.ex-icon-waxing-crescent-moon:before {
  content: "\efc9";
}
.ex-icon-waxing-gibbous-moon:before {
  content: "\efca";
}
.ex-icon-webcam:before {
  content: "\efcb";
}
.ex-icon-wheat:before {
  content: "\efcc";
}
.ex-icon-wheel-loader:before {
  content: "\efcd";
}
.ex-icon-white-wine:before {
  content: "\efce";
}
.ex-icon-wifi:before {
  content: "\efcf";
}
.ex-icon-wifi-modem:before {
  content: "\efd0";
}
.ex-icon-wifi-router:before {
  content: "\efd1";
}
.ex-icon-wifi-signal:before {
  content: "\efd2";
}
.ex-icon-wind:before {
  content: "\efd3";
}
.ex-icon-windsock:before {
  content: "\efd4";
}
.ex-icon-windsock-2:before {
  content: "\efd5";
}
.ex-icon-wind-turbine:before {
  content: "\efd6";
}
.ex-icon-wine:before {
  content: "\efd7";
}
.ex-icon-wine-bottle:before {
  content: "\efd8";
}
.ex-icon-wine-glass:before {
  content: "\efd9";
}
.ex-icon-wink-emoji:before {
  content: "\efda";
}
.ex-icon-wireframe:before {
  content: "\efdb";
}
.ex-icon-wireframe-2:before {
  content: "\efdc";
}
.ex-icon-wireless:before {
  content: "\efdd";
}
.ex-icon-wireless-headphones:before {
  content: "\efde";
}
.ex-icon-wishlist:before {
  content: "\efdf";
}
.ex-icon-woman:before {
  content: "\efe0";
}
.ex-icon-woman-bag:before {
  content: "\efe1";
}
.ex-icon-woman-handbag:before {
  content: "\efe2";
}
.ex-icon-woman-symbol:before {
  content: "\efe3";
}
.ex-icon-women:before {
  content: "\efe4";
}
.ex-icon-worker:before {
  content: "\efe5";
}
.ex-icon-world-map:before {
  content: "\efe6";
}
.ex-icon-wrench:before {
  content: "\efe7";
}
.ex-icon-write-comment:before {
  content: "\efe8";
}
.ex-icon-write-email:before {
  content: "\efe9";
}
.ex-icon-yacht:before {
  content: "\efea";
}
.ex-icon-yen-badge:before {
  content: "\efeb";
}
.ex-icon-yen-bill:before {
  content: "\efec";
}
.ex-icon-yen-sign:before {
  content: "\efed";
}
.ex-icon-zip-file:before {
  content: "\efee";
}
.ex-icon-zoom:before {
  content: "\efef";
}
.ex-icon-zoom-in:before {
  content: "\eff0";
}
.ex-icon-zoom-in-2:before {
  content: "\eff1";
}
.ex-icon-zoom-in-3:before {
  content: "\eff2";
}
.ex-icon-zoom-out:before {
  content: "\eff3";
}
.ex-icon-zoom-out-2:before {
  content: "\eff4";
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  color: white;
  border-radius: 100px;
  transition: all .4s ease;
  padding: 0 10px;
  z-index: 9997;
}


.header a {
  color: inherit;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  color: black;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header--mobile-open {
  transition: none;
  backdrop-filter: none;
  color: black;
}

.header__logo {
  padding-left: 20px;
}

.header__logo__img--scrolled {
  display: none;
}

.header--scrolled .header__logo__img {
  display: none;
}

.header--scrolled .header__logo__img--scrolled {
  display: block;
}


.header__menu {

}

.header__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__right__search, .header__right__search a {
  display: inline-flex;
}

.header__right__contact .button {
  margin: 0;
}

.header__right__mobilemenu {
  display: none;
  height: 40px;
}

.header__right__mobilemenu .header__right__mobilemenu--close {
  position: absolute;
  z-index: 9999;
  right: 10px;
  top: 10px;
  display: none;
}

.header--mobile-open .header__right__mobilemenu .header__right__mobilemenu--close {
  display: block;
}

.header__right__mobilemenu button, .header__right__mobilemenu button:hover {
  background: none;
  padding: 0;
  border: 0;
}

.header__right__mobilemenu--open svg line {
  stroke: white;
}

.header--scrolled .header__right__mobilemenu--open svg line {
  stroke: black;
}
.menu--desktop .menu__submenu__link a:hover {
  color: #7B4CE8;
  transition: color 0.3s ease; /* För en mjuk övergång */
}

.header__mobile--open .header__right__mobilemenu--open {
  display: block;
}

@media (max-width: 1201px) {
  .header__right__mobilemenu {
    display: block;
  }

  .header__right__contact {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 0;
  }
}
.footer {
    background: #0E0E1E;
    color: #FAFAFC;
    min-height: 200px;
    border-radius: 44px 44px 0 0;
    padding: 80px 40px;
    position: relative;
    z-index: 20;
    margin-top: -44px;
}

.footer__content {
    display: flex;
    gap: 100px;
}

.footer__content__logo { 
    grid-area: logo; 
}

.footer__content__logo img {
    width: 150px; /* Öka storleken på loggan för desktop */
    height: auto;
}

.footer__content__menu {
    flex: 1;
}


.footer__content__about { grid-area: about; }
.footer__content__contact { grid-area: contact; }
.footer__content__social { grid-area: social; }
.footer__content__shortcuts { grid-area: shortcuts; }
.footer__content__offering { grid-area: offering; }

.footer__content ul {
    list-style: none; /* Ta bort punkter från listan */
    padding: 0;
    margin: 0;
}

.footer__content ul li {
    margin: 5px 0; /* Skapa mellanrum mellan listobjekt */
}

.footer__content ul li a:hover {
    color: var(--text-light-100, #FAFAFC); /* Ändra färg vid hover */
}

.footer__content h4 {
    color: var(--text-light-100, #FAFAFC);
    margin-bottom: 10px; /* Avstånd mellan rubrik och lista */
}

.footer__content ul li a {
    color: var(--text-light-56, rgba(250, 250, 252, 0.56));
    word-wrap: break-word; /* Hantera långa länkar */
    transition: color 0.3s ease-in-out; /* Smidig hover-effekt */
}

@media (max-width: 768px) {
    .footer {
        padding: 80px 24px; /* Ökad padding uppåt och nedåt */
    }

    .footer__content {
        display: flex;
        flex-direction: column; /* Ändra layouten till en vertikal stapling */
        gap: 20px; /* Skapa mellanrum mellan sektionerna */
    }

    .footer__content__logo {
        text-align: center;
        margin-bottom: 20px; /* Skapa lite mellanrum under logotypen */
    }

    .footer__content__logo img {
        max-width: 150px; /* Anpassa logotypens storlek för mobil */
        height: auto;
    }

    .footer__content__about,
    .footer__content__shortcuts,
    .footer__content__contact,
    .footer__content__social,
    .footer__content__offering {
        text-align: left; /* Vänsterjustera text */
        padding: 0 10px; /* Lägg till sidomarginaler för bättre läsbarhet */
    }
}
.product-header {
    background: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/product-header-bg.png);
    background-size: 100% 100vh;
    background-repeat: no-repeat;
    padding: 140px 80px 80px 80px;
}

.mockup-new {
    display: none;
}

.product-header, .product-header p {
    font-family: Poppins;
}

.product-header__title {
    margin-top: 20px;
    text-align: center;
}

.product-header__title p {
    max-width: 800px;
    margin: auto;
}

.product-header__breadcrumbs:nth-child(2) {
    display: none;
}

.product-header__buttons {
    margin-top: 40px;
}

.product-header__mockup {
    position: relative;
    z-index: 3;
    margin-top: 40px;
}


@media (max-width: 767px) {
    .product-header {
        padding: 140px 20px 40px 20px;
    }

}
.sub-area-header {
    background: url(//2636281.fs1.hubspotusercontent-na1.net/hubfs/2636281/raw_assets/public/exsitec-2025/images/product-header-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 250px 80px 200px 80px;
}

.sub-area-header, .sub-area-header p {
    font-family: Poppins;
}

.sub-area-header__title {
    margin-top: 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.sub-area-header__title p {
    max-width: 800px;
    margin: auto;
}

.sub-area-header__buttons {
    margin-top: 40px;
}

@media (max-width: 767px) {
    .sub-area-header {
        padding: 140px 20px 40px 20px;
    }
}
/* 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;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.color-block > div {
    border-radius: 40px;
    overflow: hidden;
}
.rounded-block {
    border-radius: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(1440px - 40px + 1rem);
}

@media (max-width: 1520px) {
    .rounded-block {
        margin-left: calc(40px + 1rem);
        margin-right: calc(40px + 1rem);
    }
}

@media (max-width: 767px) {
    .rounded-block {
        margin-left: 20px;
        margin-right: 20px;
    }
}
.rounded-header {
    position: relative;
    padding-bottom: 80px;
}

.rounded-header:after {
    content: '';
    background: #fafafc;
    border-radius: 44px 44px 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    z-index: 1;
}
.text-and-tags p {
    font-family: Poppins;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}