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

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

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

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

@media (max-width: 767px) {
  .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. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* 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 {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

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

/* 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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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 10px;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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;
  margin-top: 4px;
}

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

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

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

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

/* Header DND sections */

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

.header .row-fluid-wrapper{
  width: 100%;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

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

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
    /* V1 lang switcher updates to keep "in line" w/ v0 mobile styles */
    .header__language-switcher .hs-language-switcher__menu {
        display: block;
        box-shadow:none!important;
        background: transparent;
    }
    .header__language-switcher .hs-language-switcher__menu a {
        font-size: 20px!important;
    }
    .header__language-switcher .hs-language-switcher__button {
        display: none;
    }
  }

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* 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%;
}

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


/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif
}

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

audio,canvas,progress,video {
  display: inline-block;
  vertical-align: baseline
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden],template {
  display: none
}

a {
  background-color: transparent
}

a:active,a:hover {
  outline: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b,strong {
  font-weight: 700
}

dfn {
  font-style: italic
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

mark {
  background: #ff0;
  color: #000
}

small {
  font-size: 80%
}

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

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

figure {
  margin: 1em 40px
}

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

pre {
  overflow: auto
}

code,kbd,pre,samp {
  font-family: monospace,monospace;
  font-size: 1em
}

button,input,optgroup,select,textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button {
  overflow: visible
}

button,select {
  text-transform: none
}

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

button[disabled],html input[disabled] {
  cursor: default
}

button::-moz-focus-inner,input::-moz-focus-inner {
  border: 0;
  padding: 0
}

input {
  line-height: normal
}

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

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

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

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

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em
}

legend {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto
}

optgroup {
  font-weight: 700
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,th {
  padding: 0
}

.scontainer {
  max-width: 1200px
}

.maxcontainer,.scontainer {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  width: 98%
}

.column,.columns {
  box-sizing: border-box;
  float: left;
  width: 100%
}

@media (min-width: 960px) {
  .scontainer {
    width:98%
  }

  .maxcontainer {
    width: 95%
  }

  /*
  .column,.columns {
  margin-left: 1%
}
  */

  .column:first-child,.columns:first-child {
    margin-left: 0
  }

  .one.column,.one.columns {
    width: 7.416%
  }

  .two.columns {
    width: 15.832%
  }

  .three.columns {
    width: 23.248%
  }

  .four.columns {
    width: 32.664%
  }

  .five.columns {
    width: 41.08%
  }

  .six.columns {
    width: 49.496%
  }

  .seven.columns {
    width: 57.912%
  }

  .eight.columns {
    width: 66.328%
  }

  .nine.columns {
    width: 74.744%
  }

  .ten.columns {
    width: 83.16%
  }

  .eleven.columns {
    width: 91.576%
  }

  .twelve.columns {
    margin-left: 0;
    width: 100%
  }

  .threediv.columns {
    width: 24.25%
  }

  .one-third.column {
    width: 32.6666%
  }

  .two-thirds.column {
    width: 66%
  }

  .one-half.column {
    width: 49.5%
  }

  .offset-by-one.column,.offset-by-one.columns {
    margin-left: 8.416%
  }

  .offset-by-two.column,.offset-by-two.columns {
    margin-left: 15.83%
  }

  .offset-by-three.column,.offset-by-three.columns {
    margin-left: 25.248%
  }

  .offset-by-four.column,.offset-by-four.columns {
    margin-left: 33.664%
  }

  .offset-by-five.column,.offset-by-five.columns {
    margin-left: 42.08%
  }

  .offset-by-six.column,.offset-by-six.columns {
    margin-left: 50.496%
  }

  .offset-by-seven.column,.offset-by-seven.columns {
    margin-left: 58.912%
  }

  .offset-by-eight.column,.offset-by-eight.columns {
    margin-left: 67.328%
  }

  .offset-by-nine.column,.offset-by-nine.columns {
    margin-left: 75.744%
  }

  .offset-by-ten.column,.offset-by-ten.columns {
    margin-left: 84.16%
  }

  .offset-by-eleven.column,.offset-by-eleven.columns {
    margin-left: 92.576%
  }

  .offset-by-one-third.column,.offset-by-one-third.columns {
    margin-left: 34.6666666667%
  }

  .offset-by-two-thirds.column,.offset-by-two-thirds.columns {
    margin-left: 69.3333333333%
  }

  .offset-by-one-half.column,.offset-by-one-half.columns {
    margin-left: 52%
  }
}

@media (min-width: 1500px) {
  .maxcontainer {
    max-width:1500px;
    width: 95%
  }
}

html {
  font-size: 62.5%
}

body {
  color: #222;
  font-family: Catamaran,sans-serif;
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.6
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0
}

h1 {
  font-size: 3.6rem;
  line-height: 1.2
}

h1,h2 {
  letter-spacing: -.1rem
}

h2 {
  font-size: 3rem;
  line-height: 1.25
}

h2.like-h4 {
  font-size: 2.4rem!important;
  letter-spacing: -.08rem!important;
  line-height: 1.35!important
}

h3 {
  font-size: 2rem;
  letter-spacing: -.02rem;
  line-height: 1.3
}

h4 {
  font-size: 2.4rem;
  letter-spacing: -.02rem;
  line-height: 1.35
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -.02rem;
  line-height: 1.5
}

h6 {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.6
}

@media (min-width: 960px) {
  h1 {
    font-size:4.2rem
  }

  h2 {
    font-size: 3.6rem
  }

  h3 {
    font-size: 3rem
  }

  h4 {
    font-size: 2.8rem
  }

  h5 {
    font-size: 2.4rem
  }

  h6 {
    font-size: 2rem
  }
}

p {
  margin-top: 0
}

a,a:hover {
  color: #0076d1
}

a:hover {
  text-decoration: underline
}

a:active,a:hover {
  outline: #333!important
}

.button,button,input[type=button],input[type=reset],input[type=submit] {
  background-color: transparent;
  border: 1px solid #bbb;
  border-radius: 15px;
  box-sizing: border-box;
  color: #555;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 32px;
  letter-spacing: normal;
  line-height: 32px;
  padding: 0 12px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap
}

.button:focus,.button:hover,button:focus,button:hover,input[type=button]:focus,input[type=button]:hover,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:focus,input[type=submit]:hover {
  border-color: #888;
  color: #333;
  outline: 0;
  transition: background-color .15s linear
}

.button:focus,button:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus {
  outline: 3px solid #000
}

.button.button-primary,button.button-primary,input[type=button].button-primary,input[type=reset].button-primary,input[type=submit].button-primary {
  background-color: #ff7e00;
  border-color: #ff7e00;
  color: #fff;
  transition: background-color .15s linear
}

.button.button-primary:focus,.button.button-primary:hover,button.button-primary:focus,button.button-primary:hover,input[type=button].button-primary:focus,input[type=button].button-primary:hover,input[type=reset].button-primary:focus,input[type=reset].button-primary:hover,input[type=submit].button-primary:focus,input[type=submit].button-primary:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
  transition: background-color .15s linear
}

.button.button-primary:focus,button.button-primary:focus,input[type=button].button-primary:focus,input[type=reset].button-primary:focus,input[type=submit].button-primary:focus {
  outline: 3px solid #000
}

.button.button-large,button.button-large,input[type=button].button-large,input[type=reset].button-large,input[type=submit].button-large {
  background-color: #ff7e00;
  border: #ff7e00;
  border-color: #999;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  margin: 15px 0;
  padding: 0 25px
}

.button.button-large-secondary,button.button-large-secondary,input[type=button].button-large-secondary,input[type=reset].button-large-secondary,input[type=submit].button-large-secondary {
  background-color: #333;
  border-color: #333;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  margin-top: 15px;
  padding: 0 25px
}

.button.button-large:focus,.button.button-large:hover,button.button-large:focus,button.button-large:hover,input[type=button].button-large:focus,input[type=button].button-large:hover,input[type=reset].button-large:focus,input[type=reset].button-large:hover,input[type=submit].button-large:focus,input[type=submit].button-large:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
  transition: background-color .15s linear
}

.button.button-large-secondary:focus,.button.button-large-secondary:hover,button.button-large-secondary:focus,button.button-large-secondary:hover,input[type=button].button-large-secondary:focus,input[type=button].button-large-secondary:hover,input[type=reset].button-large-secondary:focus,input[type=reset].button-large-secondary:hover,input[type=submit].button-large-secondary:focus,input[type=submit].button-large-secondary:hover {
  background-color: #ddd;
  border-color: #ccc;
  color: #333;
  transition: background-color .15s linear
}

.secondary {
  background: hsla(0,0%,100%,.4)!important
}

input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],select,textarea {
  background-color: #fff;
  background: #fff;
  border: 1px solid #929292;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 15px!important;
  height: 45px;
  padding: 4px 10px
}

input[type=email],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=url],textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

textarea {
  min-height: 65px;
  padding-bottom: 6px;
  padding-top: 6px
}

input[type=checkbox]:focus,input[type=email]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=url]:focus,select:focus,textarea:focus {
  outline: 3px solid #000
}

label,legend {
  display: inline-block
}

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

input[type=checkbox],input[type=radio] {
  display: inline
}

label>.label-body {
  display: inline-block;
  font-weight: 400;
  margin-left: .5rem
}

.reg {
  font-size: 22px!important;
  height: 58px!important
}

ul {
  list-style: circle inside
}

ol {
  list-style: decimal inside
}

ol,ul {
  margin-top: 0;
  padding-left: 0
}

ol ol,ol ul,ul ol,ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem
}

li {
  margin-bottom: 1rem
}

code {
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  font-size: 90%;
  margin: 0 .2rem;
  padding: .2rem .5rem;
  white-space: nowrap
}

pre>code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre
}

td,th {
  border-bottom: 1px solid #e1e1e1;
  padding: 12px 15px;
  text-align: left
}

td:first-child,th:first-child {
  padding-left: 0
}

td:last-child,th:last-child {
  padding-right: 0
}

.button,button {
  margin-bottom: 1rem
}

.button:last-child,button:last-child {
}

fieldset,input,select,textarea {
  margin-bottom: 0
}

fieldset:last-child,input:last-child,select:last-child,textarea:last-child {
  margin-bottom: 0
}

blockquote,dl,figure,form,ol,p,pre,table,ul {
  margin-bottom: 0
}

.u-full-width {
  box-sizing: border-box;
  width: 100%
}

.u-full-width-20 {
  margin-right: 10px;
  width: calc(100% - 35px)
}

.u-max-full-width {
  box-sizing: border-box;
  max-width: 100%
}

.u-pull-right {
  float: right
}

.u-pull-left {
  float: left
}

hr {
  border-width: 0;
  border-top: 1px solid #e1e1e1;
  margin-bottom: 3.5rem;
  margin-top: 3rem
}

.row:after,.scontainer:after,.u-cf {
  clear: both;
  content: "";
  display: table
}

@media (min-width: 960px) {
  .navib,[canvas=fixfoot],[canvas=messagefoot] {
    display:none
  }
}

@media (max-width: 960px) {
  .home {
    padding-top:0!important
  }

  .nav {
    padding: 7px 3px 5px!important
  }

  .h {
    display: none!important
  }

  .nav {
    height: 50px!important
  }

  .navitems {
    display: none!important
  }

  .navadd {
    float: left!important;
    margin-top: 10px!important
  }

  .logo img {
    height: 20px!important;
    margin-top: 8px!important
  }

  .main {
    margin: 0 auto!important;

  }

  .mainh {
    padding-bottom: 300px!important;
    padding-top: 100px!important
  }

  .footer {
    margin-top: 0!important;
    text-align: center!important
  }

  .footer,main:after {
    height: auto!important
  }

  .searchbox {
    margin: 4px!important;
    width: auto!important
  }

  .tabs-menu li {
    border-radius: 0!important;
    border-top: 0 solid #ccc!important;
    border-top-left-radius: 4px!important;
    border-top-right-radius: 4px!important;
    padding-bottom: 0!important;
    width: 49%!important
  }

  .tabs-menu li.current {
    background: #eee;
    border-bottom: 2px solid #ff7e00;
    border-radius: 5px!important
  }

  .tabs-menu li:first-child {
    border-left: none!important;
    margin-right: 0!important
  }

  .tabs-menu li:last-child {
    border-right: none!important
  }

  .oppblock,.tab-content {
    padding: 10px!important
  }

  .feedbox {
    padding: 0!important
  }

  .oppbtn,.oppbtns {
    padding-top: 5px!important
  }

  .oppbtns .w25 {
    width: 20px!important
  }

  .bigopppic,.opppic {
    padding-right: 10px!important;
    width: 50px!important
  }

  .opppic img {
    padding: 10px!important
  }

  .pt50 {
    padding-top: 20px!important
  }

  .pb50 {
    padding-bottom: 20px!important
  }

  .pt100 {
    padding-top: 40px!important
  }

  .pb100 {
    padding-bottom: 40px!important
  }

  .pt200 {
    padding-top: 40px!important
  }

  .pb200 {
    padding-bottom: 40px!important
  }

  .profilepic {
    display: inline-block!important;
    float: none!important;
    margin-bottom: 20px!important;
    max-width: 100%!important;
    text-align: center!important;
    width: 100%!important
  }

  .profilepic img {
    display: block
  }

  .profilepic a,.profilepic img {
    max-width: 200px!important
  }

  .profilecontent {
    text-align: center!important
  }

  .editprofilecontent,.profilecontent {
    float: none!important;
    width: 100%!important
  }

  .profilebuttons {
    border-bottom: 1px dashed #ccc;
    float: none!important;
    padding-bottom: 10px!important
  }

  .profilebuttons a {
    display: inline-block;
    float: none!important
  }

  .profilebuttons .rating {
    display: block;
    padding-bottom: 10px
  }

  .profilecontent {
    padding-top: 10px!important
  }

  .edithalfform {
    margin: 0 auto!important;
    width: 100%!important
  }

  .edithalfform,.frlm {
    float: none!important
  }

  .frlm {
    text-align: left!important
  }

  .breadcrumb {
    display: none!important
  }

  [canvas=messagefoot] {
    margin: 0 auto 50px!important
  }

  .threadcontent {
    height: 90px!important
  }

  .mobpb10 {
    padding-bottom: 10px!important
  }

  .searchfilterm {
    display: none!important
  }

  .profilebuttons {
    margin: 0 auto!important;
    text-align: center!important;
    width: 100%!important
  }

  .profilebutton,.profilebuttonsub {
    float: none!important;
    margin: 0 auto 5px!important;
    text-align: center!important;
    width: 200px!important
  }

  .profilebuttonsub {
    margin-bottom: 10px!important
  }

  .mobico {
    display: inline-block!important;
    max-width: 100px!important
  }

  .mobtc {
    text-align: center!important
  }

  .oppcopy,.opphead {
    font-size: 14px!important
  }

  .oppcopy {
    line-height: 17px!important
  }

  .add {
    bottom: 100px!important;
    box-shadow: 0 2px 5px #555!important;
    font-size: 24px!important;
    height: 50px!important;
    line-height: 50px!important;
    width: 50px!important
  }

  .mobonly {
    display: block!important
  }

  .horizontalblock {
    overflow-x: auto!important
  }

  .oppblockhorizontal {
    width: 220px!important
  }

  .mobblock {
    display: block!important;
    width: 100%!important
  }

  .eventpic {
    max-width: 150px
  }

  .business {
    background: url(https://cdn.pushfar.com/assets/static/bg11.jpg) no-repeat 0 fixed!important
  }

  .businessmob {
    padding-left: 20px!important;
    padding-right: 20px!important
  }

  .businessmob.bbg {
    padding-bottom: 30px!important;
    padding-top: 30px!important
  }

  .businesslogos {
    margin: 50px auto 0!important
  }

  .businesslogos img {
    margin-bottom: 50px!important;
    max-width: 150px!important;
    width: 24%!important
  }

  .businesslogos img,.businesslogos img:first-child {
  }

  .businesslogos img:last-child {
  }

  .brandlogos:first-child {
    margin: 50px auto 0!important
  }

  .brandlogos img {
    width: 32%!important
  }

  .eventh {
    border-radius: 3px!important;
    margin-bottom: 10px!important;
    max-height: none!important
  }

  .eventh,.eventh img {
    height: auto!important
  }

  .eventh img {
    width: 100%!important
  }

  .ytcontainer {
    margin-left: 0!important
  }

  .businessform {
    float: none!important;
    margin: 0 auto!important
  }

  .businessformalt input {
    float: none!important;
    margin-right: 0;
    max-width: 100%!important;
    text-align: center!important;
    width: 100%!important
  }

  .landing {
    background: url(https://cdn.pushfar.com/assets/static/bg11.jpg) no-repeat 0 0 fixed!important
  }

  .mentorstat {
    float: none!important;
    width: auto!important
  }

  .home-creative {
    float: none!important;
    margin: 40px auto 0!important;
    overflow: hidden;
    text-align: center!important
  }

  .home-creative form label{
    text-align: left;
  }

  .home-creative img {
    max-width: 450px!important;
    text-align: center!important
  }

  .mobnbg {
    background: none!important
  }

  .articlesbox {
    margin-bottom: 50px!important
  }

  .webinar {
    display: none!important
  }

  .imageright,.imageright img {
    float: none!important
  }

  .imageright img {
    max-width: none!important;
    width: calc(100% - 40px)!important
  }

  .resourcesbox {
    width: 46.5%!important
  }
}

@media (max-width: 470px) {
  .onethirdtwo {
    width:49%!important
  }

  .eventpic {
    display: table-row!important;
    float: none!important;
    max-width: 100%!important
  }

  .eventpic,.eventpic img {
    height: auto;
    margin-bottom: 10px!important;
    margin-right: 0!important;
    width: 100%!important
  }

  .eventpic img {
    display: block!important
  }

  h1.locked {
    font-size: 20pt;
    text-align: center
  }
}

ul.checkbox-list {
  list-style-type: none;
  margin-bottom: 0
}

ul.checkbox-list li {
  margin-right: 0;
  width: 32%
}

a:focus {
  outline: 3px solid #000
}

.c100.p100 .slice,.c100.p51 .slice,.c100.p52 .slice,.c100.p53 .slice,.c100.p54 .slice,.c100.p55 .slice,.c100.p56 .slice,.c100.p57 .slice,.c100.p58 .slice,.c100.p59 .slice,.c100.p60 .slice,.c100.p61 .slice,.c100.p62 .slice,.c100.p63 .slice,.c100.p64 .slice,.c100.p65 .slice,.c100.p66 .slice,.c100.p67 .slice,.c100.p68 .slice,.c100.p69 .slice,.c100.p70 .slice,.c100.p71 .slice,.c100.p72 .slice,.c100.p73 .slice,.c100.p74 .slice,.c100.p75 .slice,.c100.p76 .slice,.c100.p77 .slice,.c100.p78 .slice,.c100.p79 .slice,.c100.p80 .slice,.c100.p81 .slice,.c100.p82 .slice,.c100.p83 .slice,.c100.p84 .slice,.c100.p85 .slice,.c100.p86 .slice,.c100.p87 .slice,.c100.p88 .slice,.c100.p89 .slice,.c100.p90 .slice,.c100.p91 .slice,.c100.p92 .slice,.c100.p93 .slice,.c100.p94 .slice,.c100.p95 .slice,.c100.p96 .slice,.c100.p97 .slice,.c100.p98 .slice,.c100.p99 .slice,.rect-auto {
  clip: rect(auto,auto,auto,auto)
}

.c100 .bar,.c100.p100 .fill,.c100.p51 .fill,.c100.p52 .fill,.c100.p53 .fill,.c100.p54 .fill,.c100.p55 .fill,.c100.p56 .fill,.c100.p57 .fill,.c100.p58 .fill,.c100.p59 .fill,.c100.p60 .fill,.c100.p61 .fill,.c100.p62 .fill,.c100.p63 .fill,.c100.p64 .fill,.c100.p65 .fill,.c100.p66 .fill,.c100.p67 .fill,.c100.p68 .fill,.c100.p69 .fill,.c100.p70 .fill,.c100.p71 .fill,.c100.p72 .fill,.c100.p73 .fill,.c100.p74 .fill,.c100.p75 .fill,.c100.p76 .fill,.c100.p77 .fill,.c100.p78 .fill,.c100.p79 .fill,.c100.p80 .fill,.c100.p81 .fill,.c100.p82 .fill,.c100.p83 .fill,.c100.p84 .fill,.c100.p85 .fill,.c100.p86 .fill,.c100.p87 .fill,.c100.p88 .fill,.c100.p89 .fill,.c100.p90 .fill,.c100.p91 .fill,.c100.p92 .fill,.c100.p93 .fill,.c100.p94 .fill,.c100.p95 .fill,.c100.p96 .fill,.c100.p97 .fill,.c100.p98 .fill,.c100.p99 .fill,.pie {
  clip: rect(0,.5em,1em,0);
  border: .08em solid #307bbb;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  height: .84em;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  width: .84em
}

.c100.p100 .bar:after,.c100.p100 .fill,.c100.p51 .bar:after,.c100.p51 .fill,.c100.p52 .bar:after,.c100.p52 .fill,.c100.p53 .bar:after,.c100.p53 .fill,.c100.p54 .bar:after,.c100.p54 .fill,.c100.p55 .bar:after,.c100.p55 .fill,.c100.p56 .bar:after,.c100.p56 .fill,.c100.p57 .bar:after,.c100.p57 .fill,.c100.p58 .bar:after,.c100.p58 .fill,.c100.p59 .bar:after,.c100.p59 .fill,.c100.p60 .bar:after,.c100.p60 .fill,.c100.p61 .bar:after,.c100.p61 .fill,.c100.p62 .bar:after,.c100.p62 .fill,.c100.p63 .bar:after,.c100.p63 .fill,.c100.p64 .bar:after,.c100.p64 .fill,.c100.p65 .bar:after,.c100.p65 .fill,.c100.p66 .bar:after,.c100.p66 .fill,.c100.p67 .bar:after,.c100.p67 .fill,.c100.p68 .bar:after,.c100.p68 .fill,.c100.p69 .bar:after,.c100.p69 .fill,.c100.p70 .bar:after,.c100.p70 .fill,.c100.p71 .bar:after,.c100.p71 .fill,.c100.p72 .bar:after,.c100.p72 .fill,.c100.p73 .bar:after,.c100.p73 .fill,.c100.p74 .bar:after,.c100.p74 .fill,.c100.p75 .bar:after,.c100.p75 .fill,.c100.p76 .bar:after,.c100.p76 .fill,.c100.p77 .bar:after,.c100.p77 .fill,.c100.p78 .bar:after,.c100.p78 .fill,.c100.p79 .bar:after,.c100.p79 .fill,.c100.p80 .bar:after,.c100.p80 .fill,.c100.p81 .bar:after,.c100.p81 .fill,.c100.p82 .bar:after,.c100.p82 .fill,.c100.p83 .bar:after,.c100.p83 .fill,.c100.p84 .bar:after,.c100.p84 .fill,.c100.p85 .bar:after,.c100.p85 .fill,.c100.p86 .bar:after,.c100.p86 .fill,.c100.p87 .bar:after,.c100.p87 .fill,.c100.p88 .bar:after,.c100.p88 .fill,.c100.p89 .bar:after,.c100.p89 .fill,.c100.p90 .bar:after,.c100.p90 .fill,.c100.p91 .bar:after,.c100.p91 .fill,.c100.p92 .bar:after,.c100.p92 .fill,.c100.p93 .bar:after,.c100.p93 .fill,.c100.p94 .bar:after,.c100.p94 .fill,.c100.p95 .bar:after,.c100.p95 .fill,.c100.p96 .bar:after,.c100.p96 .fill,.c100.p97 .bar:after,.c100.p97 .fill,.c100.p98 .bar:after,.c100.p98 .fill,.c100.p99 .bar:after,.c100.p99 .fill,.pie-fill {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg)
}

.c100 {
  background-color: #ccc;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  float: left;
  font-size: 120px;
  height: 1em;
  margin-bottom: 10px;
  margin-left: 10px;
  position: relative;
  width: 1em
}

.c100 *,.c100 :after,.c100 :before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box
}

.c100.center {
  float: none;
  margin: 0 auto
}

.c100.big {
  font-size: 240px
}

.c100.small {
  font-size: 80px
}

.c100>span {
  color: #333;
  font-size: .2em;
  font-weight: 700;
  left: 0;
  line-height: 5em;
  text-align: center;
  top: 0;
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  white-space: nowrap;
  width: 100%;
  width: 5em;
  z-index: 1
}

.c100:after,.c100>span {
  display: block;
  position: absolute
}

.c100:after {
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  content: " ";
  height: .84em;
  left: .08em;
  top: .08em;
  -webkit-transition-duration: .2s;
  -moz-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  width: .84em
}

.c100 .slice {
  clip: rect(0,1em,1em,.5em);
  height: 1em;
  position: absolute;
  width: 1em
}

.c100.p1 .bar {
  -webkit-transform: rotate(3.6deg);
  -moz-transform: rotate(3.6deg);
  -ms-transform: rotate(3.6deg);
  -o-transform: rotate(3.6deg);
  transform: rotate(3.6deg)
}

.c100.p2 .bar {
  -webkit-transform: rotate(7.2deg);
  -moz-transform: rotate(7.2deg);
  -ms-transform: rotate(7.2deg);
  -o-transform: rotate(7.2deg);
  transform: rotate(7.2deg)
}

.c100.p3 .bar {
  -webkit-transform: rotate(10.8deg);
  -moz-transform: rotate(10.8deg);
  -ms-transform: rotate(10.8deg);
  -o-transform: rotate(10.8deg);
  transform: rotate(10.8deg)
}

.c100.p4 .bar {
  -webkit-transform: rotate(14.4deg);
  -moz-transform: rotate(14.4deg);
  -ms-transform: rotate(14.4deg);
  -o-transform: rotate(14.4deg);
  transform: rotate(14.4deg)
}

.c100.p5 .bar {
  -webkit-transform: rotate(18deg);
  -moz-transform: rotate(18deg);
  -ms-transform: rotate(18deg);
  -o-transform: rotate(18deg);
  transform: rotate(18deg)
}

.c100.p6 .bar {
  -webkit-transform: rotate(21.6deg);
  -moz-transform: rotate(21.6deg);
  -ms-transform: rotate(21.6deg);
  -o-transform: rotate(21.6deg);
  transform: rotate(21.6deg)
}

.c100.p7 .bar {
  -webkit-transform: rotate(25.2deg);
  -moz-transform: rotate(25.2deg);
  -ms-transform: rotate(25.2deg);
  -o-transform: rotate(25.2deg);
  transform: rotate(25.2deg)
}

.c100.p8 .bar {
  -webkit-transform: rotate(28.8deg);
  -moz-transform: rotate(28.8deg);
  -ms-transform: rotate(28.8deg);
  -o-transform: rotate(28.8deg);
  transform: rotate(28.8deg)
}

.c100.p9 .bar {
  -webkit-transform: rotate(32.4deg);
  -moz-transform: rotate(32.4deg);
  -ms-transform: rotate(32.4deg);
  -o-transform: rotate(32.4deg);
  transform: rotate(32.4deg)
}

.c100.p10 .bar {
  -webkit-transform: rotate(36deg);
  -moz-transform: rotate(36deg);
  -ms-transform: rotate(36deg);
  -o-transform: rotate(36deg);
  transform: rotate(36deg)
}

.c100.p11 .bar {
  -webkit-transform: rotate(39.6deg);
  -moz-transform: rotate(39.6deg);
  -ms-transform: rotate(39.6deg);
  -o-transform: rotate(39.6deg);
  transform: rotate(39.6deg)
}

.c100.p12 .bar {
  -webkit-transform: rotate(43.2deg);
  -moz-transform: rotate(43.2deg);
  -ms-transform: rotate(43.2deg);
  -o-transform: rotate(43.2deg);
  transform: rotate(43.2deg)
}

.c100.p13 .bar {
  -webkit-transform: rotate(46.8deg);
  -moz-transform: rotate(46.8deg);
  -ms-transform: rotate(46.8deg);
  -o-transform: rotate(46.8deg);
  transform: rotate(46.8deg)
}

.c100.p14 .bar {
  -webkit-transform: rotate(50.4deg);
  -moz-transform: rotate(50.4deg);
  -ms-transform: rotate(50.4deg);
  -o-transform: rotate(50.4deg);
  transform: rotate(50.4deg)
}

.c100.p15 .bar {
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  transform: rotate(54deg)
}

.c100.p16 .bar {
  -webkit-transform: rotate(57.6deg);
  -moz-transform: rotate(57.6deg);
  -ms-transform: rotate(57.6deg);
  -o-transform: rotate(57.6deg);
  transform: rotate(57.6deg)
}

.c100.p17 .bar {
  -webkit-transform: rotate(61.2deg);
  -moz-transform: rotate(61.2deg);
  -ms-transform: rotate(61.2deg);
  -o-transform: rotate(61.2deg);
  transform: rotate(61.2deg)
}

.c100.p18 .bar {
  -webkit-transform: rotate(64.8deg);
  -moz-transform: rotate(64.8deg);
  -ms-transform: rotate(64.8deg);
  -o-transform: rotate(64.8deg);
  transform: rotate(64.8deg)
}

.c100.p19 .bar {
  -webkit-transform: rotate(68.4deg);
  -moz-transform: rotate(68.4deg);
  -ms-transform: rotate(68.4deg);
  -o-transform: rotate(68.4deg);
  transform: rotate(68.4deg)
}

.c100.p20 .bar {
  -webkit-transform: rotate(72deg);
  -moz-transform: rotate(72deg);
  -ms-transform: rotate(72deg);
  -o-transform: rotate(72deg);
  transform: rotate(72deg)
}

.c100.p21 .bar {
  -webkit-transform: rotate(75.6deg);
  -moz-transform: rotate(75.6deg);
  -ms-transform: rotate(75.6deg);
  -o-transform: rotate(75.6deg);
  transform: rotate(75.6deg)
}

.c100.p22 .bar {
  -webkit-transform: rotate(79.2deg);
  -moz-transform: rotate(79.2deg);
  -ms-transform: rotate(79.2deg);
  -o-transform: rotate(79.2deg);
  transform: rotate(79.2deg)
}

.c100.p23 .bar {
  -webkit-transform: rotate(82.8deg);
  -moz-transform: rotate(82.8deg);
  -ms-transform: rotate(82.8deg);
  -o-transform: rotate(82.8deg);
  transform: rotate(82.8deg)
}

.c100.p24 .bar {
  -webkit-transform: rotate(86.4deg);
  -moz-transform: rotate(86.4deg);
  -ms-transform: rotate(86.4deg);
  -o-transform: rotate(86.4deg);
  transform: rotate(86.4deg)
}

.c100.p25 .bar {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg)
}

.c100.p26 .bar {
  -webkit-transform: rotate(93.6deg);
  -moz-transform: rotate(93.6deg);
  -ms-transform: rotate(93.6deg);
  -o-transform: rotate(93.6deg);
  transform: rotate(93.6deg)
}

.c100.p27 .bar {
  -webkit-transform: rotate(97.2deg);
  -moz-transform: rotate(97.2deg);
  -ms-transform: rotate(97.2deg);
  -o-transform: rotate(97.2deg);
  transform: rotate(97.2deg)
}

.c100.p28 .bar {
  -webkit-transform: rotate(100.8deg);
  -moz-transform: rotate(100.8deg);
  -ms-transform: rotate(100.8deg);
  -o-transform: rotate(100.8deg);
  transform: rotate(100.8deg)
}

.c100.p29 .bar {
  -webkit-transform: rotate(104.4deg);
  -moz-transform: rotate(104.4deg);
  -ms-transform: rotate(104.4deg);
  -o-transform: rotate(104.4deg);
  transform: rotate(104.4deg)
}

.c100.p30 .bar {
  -webkit-transform: rotate(108deg);
  -moz-transform: rotate(108deg);
  -ms-transform: rotate(108deg);
  -o-transform: rotate(108deg);
  transform: rotate(108deg)
}

.c100.p31 .bar {
  -webkit-transform: rotate(.31turn);
  -moz-transform: rotate(.31turn);
  -ms-transform: rotate(.31turn);
  -o-transform: rotate(.31turn);
  transform: rotate(.31turn)
}

.c100.p32 .bar {
  -webkit-transform: rotate(.32turn);
  -moz-transform: rotate(.32turn);
  -ms-transform: rotate(.32turn);
  -o-transform: rotate(.32turn);
  transform: rotate(.32turn)
}

.c100.p33 .bar {
  -webkit-transform: rotate(.33turn);
  -moz-transform: rotate(.33turn);
  -ms-transform: rotate(.33turn);
  -o-transform: rotate(.33turn);
  transform: rotate(.33turn)
}

.c100.p34 .bar {
  -webkit-transform: rotate(.34turn);
  -moz-transform: rotate(.34turn);
  -ms-transform: rotate(.34turn);
  -o-transform: rotate(.34turn);
  transform: rotate(.34turn)
}

.c100.p35 .bar {
  -webkit-transform: rotate(126deg);
  -moz-transform: rotate(126deg);
  -ms-transform: rotate(126deg);
  -o-transform: rotate(126deg);
  transform: rotate(126deg)
}

.c100.p36 .bar {
  -webkit-transform: rotate(.36turn);
  -moz-transform: rotate(.36turn);
  -ms-transform: rotate(.36turn);
  -o-transform: rotate(.36turn);
  transform: rotate(.36turn)
}

.c100.p37 .bar {
  -webkit-transform: rotate(.37turn);
  -moz-transform: rotate(.37turn);
  -ms-transform: rotate(.37turn);
  -o-transform: rotate(.37turn);
  transform: rotate(.37turn)
}

.c100.p38 .bar {
  -webkit-transform: rotate(.38turn);
  -moz-transform: rotate(.38turn);
  -ms-transform: rotate(.38turn);
  -o-transform: rotate(.38turn);
  transform: rotate(.38turn)
}

.c100.p39 .bar {
  -webkit-transform: rotate(.39turn);
  -moz-transform: rotate(.39turn);
  -ms-transform: rotate(.39turn);
  -o-transform: rotate(.39turn);
  transform: rotate(.39turn)
}

.c100.p40 .bar {
  -webkit-transform: rotate(144deg);
  -moz-transform: rotate(144deg);
  -ms-transform: rotate(144deg);
  -o-transform: rotate(144deg);
  transform: rotate(144deg)
}

.c100.p41 .bar {
  -webkit-transform: rotate(.41turn);
  -moz-transform: rotate(.41turn);
  -ms-transform: rotate(.41turn);
  -o-transform: rotate(.41turn);
  transform: rotate(.41turn)
}

.c100.p42 .bar {
  -webkit-transform: rotate(.42turn);
  -moz-transform: rotate(.42turn);
  -ms-transform: rotate(.42turn);
  -o-transform: rotate(.42turn);
  transform: rotate(.42turn)
}

.c100.p43 .bar {
  -webkit-transform: rotate(154.8deg);
  -moz-transform: rotate(154.8deg);
  -ms-transform: rotate(154.8deg);
  -o-transform: rotate(154.8deg);
  transform: rotate(154.8deg)
}

.c100.p44 .bar {
  -webkit-transform: rotate(.44turn);
  -moz-transform: rotate(.44turn);
  -ms-transform: rotate(.44turn);
  -o-transform: rotate(.44turn);
  transform: rotate(.44turn)
}

.c100.p45 .bar {
  -webkit-transform: rotate(162deg);
  -moz-transform: rotate(162deg);
  -ms-transform: rotate(162deg);
  -o-transform: rotate(162deg);
  transform: rotate(162deg)
}

.c100.p46 .bar {
  -webkit-transform: rotate(165.6deg);
  -moz-transform: rotate(165.6deg);
  -ms-transform: rotate(165.6deg);
  -o-transform: rotate(165.6deg);
  transform: rotate(165.6deg)
}

.c100.p47 .bar {
  -webkit-transform: rotate(.47turn);
  -moz-transform: rotate(.47turn);
  -ms-transform: rotate(.47turn);
  -o-transform: rotate(.47turn);
  transform: rotate(.47turn)
}

.c100.p48 .bar {
  -webkit-transform: rotate(172.8deg);
  -moz-transform: rotate(172.8deg);
  -ms-transform: rotate(172.8deg);
  -o-transform: rotate(172.8deg);
  transform: rotate(172.8deg)
}

.c100.p49 .bar {
  -webkit-transform: rotate(.49turn);
  -moz-transform: rotate(.49turn);
  -ms-transform: rotate(.49turn);
  -o-transform: rotate(.49turn);
  transform: rotate(.49turn)
}

.c100.p50 .bar {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg)
}

.c100.p51 .bar {
  -webkit-transform: rotate(.51turn);
  -moz-transform: rotate(.51turn);
  -ms-transform: rotate(.51turn);
  -o-transform: rotate(.51turn);
  transform: rotate(.51turn)
}

.c100.p52 .bar {
  -webkit-transform: rotate(.52turn);
  -moz-transform: rotate(.52turn);
  -ms-transform: rotate(.52turn);
  -o-transform: rotate(.52turn);
  transform: rotate(.52turn)
}

.c100.p53 .bar {
  -webkit-transform: rotate(.53turn);
  -moz-transform: rotate(.53turn);
  -ms-transform: rotate(.53turn);
  -o-transform: rotate(.53turn);
  transform: rotate(.53turn)
}

.c100.p54 .bar {
  -webkit-transform: rotate(.54turn);
  -moz-transform: rotate(.54turn);
  -ms-transform: rotate(.54turn);
  -o-transform: rotate(.54turn);
  transform: rotate(.54turn)
}

.c100.p55 .bar {
  -webkit-transform: rotate(198deg);
  -moz-transform: rotate(198deg);
  -ms-transform: rotate(198deg);
  -o-transform: rotate(198deg);
  transform: rotate(198deg)
}

.c100.p56 .bar {
  -webkit-transform: rotate(201.6deg);
  -moz-transform: rotate(201.6deg);
  -ms-transform: rotate(201.6deg);
  -o-transform: rotate(201.6deg);
  transform: rotate(201.6deg)
}

.c100.p57 .bar {
  -webkit-transform: rotate(.57turn);
  -moz-transform: rotate(.57turn);
  -ms-transform: rotate(.57turn);
  -o-transform: rotate(.57turn);
  transform: rotate(.57turn)
}

.c100.p58 .bar {
  -webkit-transform: rotate(208.8deg);
  -moz-transform: rotate(208.8deg);
  -ms-transform: rotate(208.8deg);
  -o-transform: rotate(208.8deg);
  transform: rotate(208.8deg)
}

.c100.p59 .bar {
  -webkit-transform: rotate(.59turn);
  -moz-transform: rotate(.59turn);
  -ms-transform: rotate(.59turn);
  -o-transform: rotate(.59turn);
  transform: rotate(.59turn)
}

.c100.p60 .bar {
  -webkit-transform: rotate(216deg);
  -moz-transform: rotate(216deg);
  -ms-transform: rotate(216deg);
  -o-transform: rotate(216deg);
  transform: rotate(216deg)
}

.c100.p61 .bar {
  -webkit-transform: rotate(.61turn);
  -moz-transform: rotate(.61turn);
  -ms-transform: rotate(.61turn);
  -o-transform: rotate(.61turn);
  transform: rotate(.61turn)
}

.c100.p62 .bar {
  -webkit-transform: rotate(.62turn);
  -moz-transform: rotate(.62turn);
  -ms-transform: rotate(.62turn);
  -o-transform: rotate(.62turn);
  transform: rotate(.62turn)
}

.c100.p63 .bar {
  -webkit-transform: rotate(.63turn);
  -moz-transform: rotate(.63turn);
  -ms-transform: rotate(.63turn);
  -o-transform: rotate(.63turn);
  transform: rotate(.63turn)
}

.c100.p64 .bar {
  -webkit-transform: rotate(.64turn);
  -moz-transform: rotate(.64turn);
  -ms-transform: rotate(.64turn);
  -o-transform: rotate(.64turn);
  transform: rotate(.64turn)
}

.c100.p65 .bar {
  -webkit-transform: rotate(234deg);
  -moz-transform: rotate(234deg);
  -ms-transform: rotate(234deg);
  -o-transform: rotate(234deg);
  transform: rotate(234deg)
}

.c100.p66 .bar {
  -webkit-transform: rotate(.66turn);
  -moz-transform: rotate(.66turn);
  -ms-transform: rotate(.66turn);
  -o-transform: rotate(.66turn);
  transform: rotate(.66turn)
}

.c100.p67 .bar {
  -webkit-transform: rotate(241.2deg);
  -moz-transform: rotate(241.2deg);
  -ms-transform: rotate(241.2deg);
  -o-transform: rotate(241.2deg);
  transform: rotate(241.2deg)
}

.c100.p68 .bar {
  -webkit-transform: rotate(.68turn);
  -moz-transform: rotate(.68turn);
  -ms-transform: rotate(.68turn);
  -o-transform: rotate(.68turn);
  transform: rotate(.68turn)
}

.c100.p69 .bar {
  -webkit-transform: rotate(248.4deg);
  -moz-transform: rotate(248.4deg);
  -ms-transform: rotate(248.4deg);
  -o-transform: rotate(248.4deg);
  transform: rotate(248.4deg)
}

.c100.p70 .bar {
  -webkit-transform: rotate(252deg);
  -moz-transform: rotate(252deg);
  -ms-transform: rotate(252deg);
  -o-transform: rotate(252deg);
  transform: rotate(252deg)
}

.c100.p71 .bar {
  -webkit-transform: rotate(.71turn);
  -moz-transform: rotate(.71turn);
  -ms-transform: rotate(.71turn);
  -o-transform: rotate(.71turn);
  transform: rotate(.71turn)
}

.c100.p72 .bar {
  -webkit-transform: rotate(.72turn);
  -moz-transform: rotate(.72turn);
  -ms-transform: rotate(.72turn);
  -o-transform: rotate(.72turn);
  transform: rotate(.72turn)
}

.c100.p73 .bar {
  -webkit-transform: rotate(.73turn);
  -moz-transform: rotate(.73turn);
  -ms-transform: rotate(.73turn);
  -o-transform: rotate(.73turn);
  transform: rotate(.73turn)
}

.c100.p74 .bar {
  -webkit-transform: rotate(.74turn);
  -moz-transform: rotate(.74turn);
  -ms-transform: rotate(.74turn);
  -o-transform: rotate(.74turn);
  transform: rotate(.74turn)
}

.c100.p75 .bar {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg)
}

.c100.p76 .bar {
  -webkit-transform: rotate(.76turn);
  -moz-transform: rotate(.76turn);
  -ms-transform: rotate(.76turn);
  -o-transform: rotate(.76turn);
  transform: rotate(.76turn)
}

.c100.p77 .bar {
  -webkit-transform: rotate(.77turn);
  -moz-transform: rotate(.77turn);
  -ms-transform: rotate(.77turn);
  -o-transform: rotate(.77turn);
  transform: rotate(.77turn)
}

.c100.p78 .bar {
  -webkit-transform: rotate(.78turn);
  -moz-transform: rotate(.78turn);
  -ms-transform: rotate(.78turn);
  -o-transform: rotate(.78turn);
  transform: rotate(.78turn)
}

.c100.p79 .bar {
  -webkit-transform: rotate(284.4deg);
  -moz-transform: rotate(284.4deg);
  -ms-transform: rotate(284.4deg);
  -o-transform: rotate(284.4deg);
  transform: rotate(284.4deg)
}

.c100.p80 .bar {
  -webkit-transform: rotate(288deg);
  -moz-transform: rotate(288deg);
  -ms-transform: rotate(288deg);
  -o-transform: rotate(288deg);
  transform: rotate(288deg)
}

.c100.p81 .bar {
  -webkit-transform: rotate(.81turn);
  -moz-transform: rotate(.81turn);
  -ms-transform: rotate(.81turn);
  -o-transform: rotate(.81turn);
  transform: rotate(.81turn)
}

.c100.p82 .bar {
  -webkit-transform: rotate(.82turn);
  -moz-transform: rotate(.82turn);
  -ms-transform: rotate(.82turn);
  -o-transform: rotate(.82turn);
  transform: rotate(.82turn)
}

.c100.p83 .bar {
  -webkit-transform: rotate(298.8deg);
  -moz-transform: rotate(298.8deg);
  -ms-transform: rotate(298.8deg);
  -o-transform: rotate(298.8deg);
  transform: rotate(298.8deg)
}

.c100.p84 .bar {
  -webkit-transform: rotate(.84turn);
  -moz-transform: rotate(.84turn);
  -ms-transform: rotate(.84turn);
  -o-transform: rotate(.84turn);
  transform: rotate(.84turn)
}

.c100.p85 .bar {
  -webkit-transform: rotate(306deg);
  -moz-transform: rotate(306deg);
  -ms-transform: rotate(306deg);
  -o-transform: rotate(306deg);
  transform: rotate(306deg)
}

.c100.p86 .bar {
  -webkit-transform: rotate(309.6deg);
  -moz-transform: rotate(309.6deg);
  -ms-transform: rotate(309.6deg);
  -o-transform: rotate(309.6deg);
  transform: rotate(309.6deg)
}

.c100.p87 .bar {
  -webkit-transform: rotate(.87turn);
  -moz-transform: rotate(.87turn);
  -ms-transform: rotate(.87turn);
  -o-transform: rotate(.87turn);
  transform: rotate(.87turn)
}

.c100.p88 .bar {
  -webkit-transform: rotate(.88turn);
  -moz-transform: rotate(.88turn);
  -ms-transform: rotate(.88turn);
  -o-transform: rotate(.88turn);
  transform: rotate(.88turn)
}

.c100.p89 .bar {
  -webkit-transform: rotate(320.4deg);
  -moz-transform: rotate(320.4deg);
  -ms-transform: rotate(320.4deg);
  -o-transform: rotate(320.4deg);
  transform: rotate(320.4deg)
}

.c100.p90 .bar {
  -webkit-transform: rotate(324deg);
  -moz-transform: rotate(324deg);
  -ms-transform: rotate(324deg);
  -o-transform: rotate(324deg);
  transform: rotate(324deg)
}

.c100.p91 .bar {
  -webkit-transform: rotate(.91turn);
  -moz-transform: rotate(.91turn);
  -ms-transform: rotate(.91turn);
  -o-transform: rotate(.91turn);
  transform: rotate(.91turn)
}

.c100.p92 .bar {
  -webkit-transform: rotate(331.2deg);
  -moz-transform: rotate(331.2deg);
  -ms-transform: rotate(331.2deg);
  -o-transform: rotate(331.2deg);
  transform: rotate(331.2deg)
}

.c100.p93 .bar {
  -webkit-transform: rotate(.93turn);
  -moz-transform: rotate(.93turn);
  -ms-transform: rotate(.93turn);
  -o-transform: rotate(.93turn);
  transform: rotate(.93turn)
}

.c100.p94 .bar {
  -webkit-transform: rotate(.94turn);
  -moz-transform: rotate(.94turn);
  -ms-transform: rotate(.94turn);
  -o-transform: rotate(.94turn);
  transform: rotate(.94turn)
}

.c100.p95 .bar {
  -webkit-transform: rotate(342deg);
  -moz-transform: rotate(342deg);
  -ms-transform: rotate(342deg);
  -o-transform: rotate(342deg);
  transform: rotate(342deg)
}

.c100.p96 .bar {
  -webkit-transform: rotate(345.6deg);
  -moz-transform: rotate(345.6deg);
  -ms-transform: rotate(345.6deg);
  -o-transform: rotate(345.6deg);
  transform: rotate(345.6deg)
}

.c100.p97 .bar {
  -webkit-transform: rotate(.97turn);
  -moz-transform: rotate(.97turn);
  -ms-transform: rotate(.97turn);
  -o-transform: rotate(.97turn);
  transform: rotate(.97turn)
}

.c100.p98 .bar {
  -webkit-transform: rotate(.98turn);
  -moz-transform: rotate(.98turn);
  -ms-transform: rotate(.98turn);
  -o-transform: rotate(.98turn);
  transform: rotate(.98turn)
}

.c100.p99 .bar {
  -webkit-transform: rotate(.99turn);
  -moz-transform: rotate(.99turn);
  -ms-transform: rotate(.99turn);
  -o-transform: rotate(.99turn);
  transform: rotate(.99turn)
}

.c100.p100 .bar {
  -webkit-transform: rotate(1turn);
  -moz-transform: rotate(1turn);
  -ms-transform: rotate(1turn);
  -o-transform: rotate(1turn);
  transform: rotate(1turn)
}

.c100:hover {
  cursor: default
}

.c100:hover>span {
  color: #307bbb;
  font-size: .3em;
  line-height: 3.33em;
  width: 3.33em
}

.c100:hover:after {
  height: .92em;
  left: .04em;
  top: .04em;
  width: .92em
}

.c100.orange .bar,.c100.orange .fill {
  border-color: #009d2f!important
}

.c100.orange:hover>span {
  color: #ff7e00
}

.c100.orange.dark .bar,.c100.orange.dark .fill {
  border-color: #ff7e00!important
}

.c100.orange.dark:hover>span {
  color: #ff7e00
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  overflow-y: scroll
}

body {
  background: url(https://cdn.pushfar.com/assets/static/bg.jpg) no-repeat bottom;
  background-color: #efefef;
  margin: 0;
  min-height: 100%;
  position: relative
}

.nbg {
  background-image: none!important
}

.bbg {
  background: rgba(0,0,0,.7)
}

.bbg,.otbg {
  box-sizing: border-box;
  color: #fff;
  padding: 100px 0
}

.otbg {
  background: #ff7e00
}

.otbg .button-primary {
  background-color: #000;
  border: 0;
  font-size: 16px;
  height: 50px;
  line-height: 50px;
  vertical-align: top
}

.blbg {
  background: rgba(0,140,255,.7)
}

.blbg,.gtbg {
  box-sizing: border-box;
  color: #fff;
  padding: 100px 0
}

.gtbg {
  background: rgba(0,157,47,.7)
}

.fl {
  float: left!important
}

.fr {
  float: right!important
}

[canvas=container],[off-canvas] {
  padding: 10px 20px
}

[class*=js-] {
  cursor: pointer
}

[canvas],[off-canvas*=push] {
  z-index: 1
}

[off-canvas*=reveal],[off-canvas*=shift] {
  z-index: 0
}

[canvas=container],[off-canvas],body,html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

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

[canvas=messagefoot] {
  background-color: #fff;
  bottom: 0;
  box-shadow: 0 0 5px #999;
  height: auto;
  left: 0;
  margin: 0 auto;
  margin-bottom: 0!important;
  padding: 10px 5px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 999
}

[canvas=container] {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow-y: auto;
  position: relative;
  width: 100%
}

[canvas=container]:after,[canvas=container]:before {
  clear: both;
  content: "";
  display: table
}

[off-canvas] {
  -webkit-overflow-scrolling: touch;
  background-color: #000;
  color: #fff;
  display: none;
  overflow: hidden;
  overflow-y: auto;
  position: fixed
}

[off-canvas*=right] {
  height: 100%;
  right: 0;
  top: 0;
  width: 255px
}

[off-canvas*=overlay] {
  z-index: 9999
}

[canvas],[off-canvas] {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s
}

[off-canvas*=shift][off-canvas*=right] {
  -webkit-transform: translate(-50%);
  transform: translate(-50%)
}

@media print {
  [canvas] {
    -webkit-transform: translate(0)!important;
    -ms-transform: translate(0)!important;
    transform: translate(0)!important
  }

  [off-canvas] {
    display: none!important
  }
}

body {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover
}

[canvas=fixfoot] {
  background-color: #333;
  bottom: 0;
  box-shadow: 0 0 5px #999;
  height: 55px;
  padding-bottom: 5px;
  padding-top: 5px;
  position: fixed;
  width: 100%;
  z-index: 999
}

.home {
  padding-top: 5vh
}

.threadcontent {
  height: 0
}

.nav {
  background: hsla(0,0%,100%,.9);
  box-shadow: 0 0 1px #999;
  box-sizing: border-box;
  height: 60px;
  padding: 2px 3px;
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 30px;
}

.navitem:first-child {
  margin-left: 0
}

.navtext {
  float: left;
  padding-top: 14px
}

.navib img {
  height: 24px;
  margin-top: 5px;
  width: 24px
}

.logo {
  float: left
}

.logo img {
  height: 26px;
  margin-top: 12px;
  width: auto
}

.navadd {
  color: #ffa400;
  float: right;
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  text-transform: uppercase
}

.navadd img {
  height: auto;
  margin-left: 5px;
  margin-right: 20px;
  padding-bottom: 4px;
  vertical-align: middle;
  width: 32px
}

.navadd img,a {
  border: 0;
  color: inherit;
  text-decoration: none
}

a:hover {
  color: inherit
}

.navadd a:hover {
  color: #555
}

.footer {
  background: #ff7e00;
  box-shadow: inset 0 0 10px #964d00;
  box-sizing: border-box;
  color: #fff;
  padding: 60px 0 50px;
  text-align: left;
  width: 100%
}

.footer a {
  color: #fff;
  text-decoration: none
}

.footer a:hover {
  color: #fff;
  text-decoration: underline
}

.footer img {
  border: 0;
  height: auto;
  margin: 15px 10px 0;
  width: 32px
}

.footerlogo img {
  height: auto;
  margin: 0 auto 10px;
  width: 150px
}

.social img {
  border: 0;
  height: auto;
  margin: 5px 10px 0;
  width: 42px
}

.nlmenu {
  font-size: 18px;
  padding-top: 9px;
  text-align: right
}

.nlmenu a {
  margin: 0 20px
}

.menu img {
  height: 32px;
  margin-left: 32px;
  margin-top: 14px;
  width: auto
}

.menu img:first-child {
  margin-left: 0
}



.main,.mainh {
  min-height: 100%;
}

.mainh {
  padding-top: 160px
}

.main:after,.mainh:after {
  content: "";
  display: block
}

.footer,main:after,mainh:after {
  height: 330px
}

.breadcrumb {
  color: #777;
  font-size: 12px;
  text-transform: capitalize
}

.bread {
  color: #333;
  display: inline-block;
  margin: 0 15px 20px
}

.bread:first-child {
  display: inline-block;
  margin-left: 0
}

.bread:last-child {
  display: inline-block;
  margin-right: 0
}

.bread-sep {
  display: inline-block;
  margin: 0 15px
}

.onethird {
  display: inline-block;
  float: left;
  margin-right: 2%;
  width: 32%
}

.twothirds {
  display: inline-block;
  float: right;
  width: 64%
}

.onethird:last-child {
  float: right;
  margin-right: 0
}

.onethirdtwo {
  display: inline-block;
  margin: 5px auto;
  width: 32.5%
}

.onethirdtwo:last-child {
  margin-right: 0
}

.onehalf {
  box-sizing: border-box;
  float: left;
  margin-right: 2%;
  width: 49%
}

.onehalf:last-child {
  float: right;
  margin-right: 0
}

.fixfootset {
  border-right: 1px solid #555;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  margin-left: .2%;
  margin-right: .2%;
  position: relative;
  text-align: center;
  width: 18%
}

.fixfootset:last-child {
  border-right: none
}

.fixfootset img {
  height: 18px;
  margin-top: 6px
}

.mobindicator {
  bottom: 34px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px
}

.deskindicator,.mobindicator {
  background-color: #c50003;
  border-radius: 50%;
  box-shadow: 0 0 2px #000;
  color: #fff;
  display: none;
  height: 22px;
  left: 56%;
  position: absolute;
  text-align: center;
  width: 22px
}

.deskindicator {
  bottom: 26px;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px
}

.mobmenu {
  border-bottom: 1px solid #333;
  font-size: 16px;
  font-weight: 700;
  padding: 20px 10px 20px 20px;
  text-align: left
}

.mobmenu a {
  color: #fff;
  text-decoration: none
}

.mobmenu a:focus {
  outline: 3px solid grey
}

.mobmenu img {
  display: inline-block;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
  width: 18px
}

.spacer {
  clear: both;
  display: block;
  width: 100%
}

.splitter {
  border-top: 1px dashed #999;
  margin-bottom: 20px;
  margin-top: 20px
}

.splitter,.ssplitter {
  clear: both;
  display: block;
  height: 1px;
  width: 100%
}

.ssplitter {
  border-top: 1px solid #ddd
}

.box {
  box-shadow: 0 1px 2px #ccc;
  padding: 15px
}

.box,.feedbox {
  background: hsla(0,0%,100%,.9);
  border-radius: 15px;
  box-sizing: border-box;
  margin-bottom: 0;
  overflow: hidden;
  width: 100%
}

.feedbox {
  padding: 10px
}

.feedbox,.formbox {
  box-shadow: 0 0 3px #ccc
}

.formbox {
  background: hsla(0,0%,100%,.9);
  border-radius: 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 15px;
  width: 100%
}

.boxhead {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  overflow: hidden;
  padding-bottom: 5px;
  text-transform: capitalize;
  vertical-align: baseline
}

.searchbox {
  background: #efefef;
  border-radius: 5px;
  box-shadow: 0 1px 2px #ccc;
  box-sizing: border-box;
  cursor: pointer;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 15px;
  width: 100%
}

#searchfilters {
  border-top: 1px solid #ccc;
  display: block;
  margin-top: 5px;
  padding-top: 5px
}

.searchfilterd {
  display: none
}

#meetingtoggle {
  cursor: pointer
}

#meetingtoggle .boxhead {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0
}

#meetingfilters {
  display: none
}

.meetingfilters {
  display: block!important;
  margin-top: 5px;
  padding-top: 5px;
  position: relative
}

.dbg {
  background-color: #666e76;
  color: #fff
}

.dbg select,.wbg {
  color: #333
}

.wbg {
  background: hsla(0,0%,100%,.7)
}

.gbg {
  background: rgba(30,30,30,.7);
  color: #fff
}

.lobg {
  background-color: #ffefe0
}

.lgbg {
  background-color: #fafafa;
  box-shadow: 0 0 2px 0 #ccc
}

.obg {
  background: #ff7e00;
  color: #fff
}

.obg a {
  font-weight: 700
}

.obg a:hover {
  color: #333;
  text-decoration: underline
}

.tb {
  font-weight: 600
}

.tn {
  font-weight: 300
}

.tc {
  text-align: center
}

.tr {
  text-align: right
}

.tl {
  text-align: left
}

.to {
  color: #ff7e00
}

.td {
  color: #333
}

.tw {
  color: #fff
}

.tg {
  color: #008528
}

.frlm {
  float: right;
  text-align: right
}

.cp {
  cursor: pointer
}

.noresult {
  font-size: 24px;
  font-weight: 200;
  line-height: 40px;
  padding: 20px 0;
  text-align: center
}

.noresult,.noresult a,.noresults,.noresults a {
  color: #595959
}

.noresult a:hover,.noresults a:hover {
  color: #595959;
  text-decoration: underline
}

.noresult img {
  border-radius: 5px;
  height: auto;
  width: 75px
}

.noresults img {
  height: auto;
  opacity: .6;
  transition: transform .2s;
  width: 75px
}

.noresults img:hover {
  height: auto;
  opacity: 1;
  transform: scale(1.1);
  width: 75px
}

.noresults {
  color: #595959;
  font-size: 16px;
  font-weight: 200;
  line-height: 18px;
  padding: 20px 0;
  text-align: center
}

.t18 {
  font-size: 18px
}

.t16 {
  font-size: 16px
}

.t12 {
  font-size: 12px
}

.lh18 {
  line-height: 21px
}

.iconbox {
  border-radius: 5px;
  box-sizing: border-box;
  margin: 7px 0;
  padding-bottom: 10px;
  width: 100%
}

.iconbox.u-pull-right {
  margin-left: 20px
}

.iconbox.u-pull-left {
  margin-right: 20px
}

.iconbox img {
  height: auto;
  width: 60px
}

.w14 {
  width: 14px
}

.w14,.w18 {
  display: inline-block;
  height: auto;
  margin-right: 5px;
  vertical-align: middle
}

.w18 {
  width: 18px
}

.w20 {
  width: 20px
}

.w20,.w24 {
  display: inline-block;
  height: auto;
  vertical-align: middle
}

.w24 {
  margin-right: 5px;
  width: 24px
}

.w25 {
  width: 25px
}

.w25,.w32 {
  display: inline-block;
  height: auto;
  vertical-align: middle
}

.w32 {
  width: 32px
}

.w50 {
  display: inline-block;
  width: 50px
}

.w50,.w70 {
  height: auto;
  vertical-align: middle
}

.w70 {
  width: 70px
}

.w100 {
  height: auto;
  width: 100px
}

.w100pci {
  width: 100%!important
}

.w120 {
  height: auto;
  width: 120px
}

.w200 {
  height: auto;
  width: 200px
}

.w100pc {
  height: auto;
  width: 100%
}

.h20 {
  height: 20px
}

.h30 {
  height: 30px
}

.h85 {
  height: 85px
}

.h100 {
  height: 300px;
  width: auto
}

.h110 {
  height: 110px
}

.p10 {
  padding: 10px
}

.p20 {
  padding: 20px
}

.pt10 {
  padding-top: 10px
}

.pt15 {
  padding-top: 15px
}

.pt20 {
  padding-top: 20px
}

.pt5 {
  padding-top: 5px
}

.pt50 {
  padding-top: 50px
}

.pt100 {
  padding-top: 100px
}

.pt200 {
  padding-top: 20vh
}

.pb5 {
  padding-bottom: 5px
}

.pb10 {
  padding-bottom: 10px
}

.pb10i {
  padding-bottom: 10px!important
}

.pb20 {
  padding-bottom: 20px
}

.pb20i {
  padding-bottom: 20px!important
}

.pb30 {
  padding-bottom: 30px
}

.pb40 {
  padding-bottom: 40px
}

.pb50 {
  padding-bottom: 50px
}

.pb100 {
  padding-bottom: 100px
}

.pb200 {
  padding-bottom: 20vh
}

.pr10 {
  margin-right: 10px
}

.pr20 {
  margin-right: 20px
}

.pr5 {
  padding-right: 5px
}

.pr5i {
  padding-right: 5px!important
}

.pl5 {
  padding-left: 5px
}

.pl5i {
  padding-left: 5px!important
}

.nmb {
  margin-bottom: 0
}

.mb10 {
  margin-bottom: 10px
}

.mb15,.mt15 {
  margin-bottom: 15px
}

.mb20 {
  margin-bottom: 20px
}

.mb10i {
  margin-bottom: 10px!important
}

.mb20i {
  margin-bottom: 20px!important
}

.mt5 {
  margin-top: 5px
}

.mt10 {
  margin-top: 10px
}

.mt10i {
  margin-top: 10px!important
}

.tabs-menu {
  border-bottom: 1px solid #ddd;
  clear: both;
  display: block;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%
}

.tabs-menu ul {
  border-bottom: 1px solid #ccc;
  list-style-type: none;
  margin-left: auto;
  padding: 0;
  width: 100%
}

.tabs-menu li {
  color: #333;
  display: block;
  float: left;
  font-size: 16px;
  list-style-position: inside;
  list-style-type: none;
  margin-bottom: 0!important;
  padding: 5px 15px;
  text-align: center;
  width: auto
}

.tabs-menu li:first-child {
  margin-right: 1%
}

.tabs-menu li.current {
  border-bottom: 5px solid #ff7e00;
  font-weight: 600;
  position: relative;
  z-index: 5
}

.tabs-menu li a {
  display: block;
  text-decoration: none
}

.tabs-menu .current a {
  color: #333
}

.tab {
  float: left;
  width: auto
}

.tab-content {
  display: none
}

#tab-1 {
  display: block
}

.smalloppblock {
  padding: 10px 5px 5px
}

.oppblock,.smalloppblock {
  border-bottom: 1px solid #ccc;
  display: table;
  width: 100%
}

.oppblock {
  font-size: 11px;
  padding: 15px 10px
}

.oppblock,.oppblock img {
  border-radius: 3px
}

.oppblock.overdue {
  background-color: #ffe0df
}

.oppblock.completed {
  background-color: #eaffeb
}

.unreadblock {
  background-color: #ddd
}

.oppblock:last-child,.smalloppblock:last-child {
  border-bottom: 0
}

.oppblock:hover,.smalloppblock:hover {
  background-color: #eee;
  cursor: pointer;
  transition: background-color .15s linear
}

.oppblock.nobg {
  cursor: inherit
}

.oppblock.nobg:hover {
  background-color: #fff!important;
  cursor: inherit!important
}

.bigopppic,.inboxbtn,.opp,.oppbtn,.opppic,.smallopppic {
  display: table-cell
}

.smallopppic {
  width: 50px
}

.bigopppic,.smallopppic {
  box-sizing: content-box;
  padding-right: 15px
}

.bigopppic {
  width: 80px
}

.opppic {
  box-sizing: content-box;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
  padding-right: 15px;
  text-align: center;
  width: 50px
}

.bigopppic img,.opppic img,.smallopppic img {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 2px #ccc;
  height: auto;
  width: 100%
}

.opppic img {
  padding: 15px
}

.opppicprofile img {
  border-radius: 15px;
  padding: 0!important
}

.opp {
  font-size: 12px;
  padding-right: 10px;
  vertical-align: top
}

.opp.ba {
  word-break: break-all
}

.opphead {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px
}

.opphead .fr {
  color: #595959;
  font-weight: 400
}

.positionsub {
  border-bottom: 1px dashed #ccc;
  font-size: 15px;
  line-height: 17px;
  margin-bottom: 5px;
  padding-bottom: 5px
}

.oppsub {
  border-top: 1px dashed #ccc;
  font-size: 12px;
  line-height: 17px;
  margin-top: 5px;
  padding-top: 10px
}

.inboxbtn {
  text-align: right;
  width: auto
}

.inboxbtn,.oppbtn {
  vertical-align: top
}

.oppbtn {
  height: 50px;
  width: 50px
}

.oppbtn.button:focus {
  outline: 3px solid #333
}

.iziModal-button:focus {
  opacity: 1!important;
  outline: 3px solid #333!important
}

.oppbtns {
  background-color: #008528;
  border-radius: 3px;
  box-shadow: 0 1px 0 #999;
  box-sizing: border-box;
  color: #fff;
  font-size: 10px;
  line-height: 13px;
  margin-bottom: 5px;
  margin-left: 10px;
  padding-bottom: 7px;
  padding-top: 7px;
  text-align: center;
  width: 50px
}

.oppbtns:last-child {
  margin-bottom: 0
}

.hide {
  background-color: #757575;
  border-radius: 3px;
  box-shadow: 0 1px 0 #757575;
  color: #fff;
  font-size: 10px;
  line-height: 12px;
  margin-left: 10px;
  padding: 5px 0;
  text-align: center;
  width: 50px
}

.hide:hover {
  background-color: #be0000;
  cursor: pointer;
  transition: background-color .15s linear
}

.oppbtn img {
  opacity: .9
}

.oppbtn:hover img {
  opacity: 1
}

.oppicon {
  margin-right: 5px;
  vertical-align: middle;
  width: 16px
}

.oppbtns a {
  color: #fff;
  text-decoration: none
}

.oppbtns:hover {
  background-color: #232528;
  transition: background-color .15s linear
}

.smalldrop {
  font-size: 10px!important;
  height: 22px!important;
  padding: 0 4px!important
}

.texticon {
  margin-right: 5px;
  vertical-align: middle;
  width: 20px
}

.profilepicsmall {
  border-radius: 15px;
  box-shadow: 0 1px 2px #999;
  height: auto;
  margin-left: 10px;
  width: 75px
}

.profilepic {
  float: left;
  margin: 0 20px 0 0;
  padding: 0;
  position: relative;
  width: 10%
}

.profilepic img {
  border-radius: 15px;
  box-shadow: 0 1px 2px #999;
  display: inline-block;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%
}

.profilecontent {
  box-sizing: border-box;
  float: left;
  width: calc(90% - 240px)
}

.editprofilecontent {
  box-sizing: border-box;
  float: right;
  width: calc(90% - 40px)
}

.profilename {
  font-size: 22px;
  font-weight: 700
}

.profilesub {
  font-size: 18px
}

.profilebuttons {
  float: right;
  margin-left: 20px;
  width: 200px
}

.profilebutton {
  background-color: #ff7e00;
  border: none;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 10px;
  padding: 8px 20px;
  text-align: center;
  text-transform: capitalize;
  width: 100%
}

.profilebutton:disabled {
  background-color: #666e76
}

.profilebutton:focus,.profilebutton:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  text-shadow: none
}

.profilebuttonsub {
  background: #eee;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
  width: 100%
}

.profilebuttonsub:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  text-shadow: none
}

.profilebutton img {
  height: 18px;
  margin-right: 10px;
  margin-top: 0;
  vertical-align: top;
  width: auto
}

.editarea {
  height: 150px;
  margin-bottom: 0;
  width: 100%
}

.rating {
  text-align: center
}

.rating img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  width: 32px
}

.connbox {
  box-sizing: border-box;
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  margin-left: .1%;
  margin-right: .1%;
  max-width: 100px;
  position: relative;
  width: 18.6%
}

.connbox,.connboxt {
  overflow: hidden;
  text-align: center
}

.connboxt {
  background: linear-gradient(180deg,transparent,#000);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  bottom: 5px;
  color: #fff;
  height: 22px;
  padding: 5px 0;
  position: absolute;
  text-shadow: 0 0 5px #000;
  width: 100%
}

.connbox a {
  border: 0;
  font-weight: 700
}

.connbox a:hover {
  color: inherit;
  text-decoration: none
}

.connbox img {
  border-radius: 5px;
  margin-bottom: 2px;
  max-width: 100px;
  width: 100%
}

.box .connbox:hover {
  border: 2px solid #fff
}

.dbg .connbox:hover {
  border: 2px solid #666e76
}

.connbox:hover {
  color: #555;
  cursor: pointer
}

.social {
  display: inline-block;
  height: auto;
  margin-right: 5px;
  width: 24px
}

.editbutton {
  background-color: #ff7e00;
  border: 1px solid #999;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 5px 0;
  text-align: center;
  text-shadow: 0 -1px 0 1px #555;
  text-transform: uppercase;
  width: auto
}

.editbutton:hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  text-shadow: none
}

.editform {
  width: 100%
}

.editform,.edithalfform {
  color: #333;
  margin-bottom: 10px!important
}

.edithalfform {
  margin-right: 4%;
  width: 48%
}

.edithalfform:last-child {
  margin-right: 0
}

.addconn,.addconn .addconnmsg {
  border: 1px solid grey;
  color: red;
  height: 5px;
  line-height: 5px;
  padding: 10px;
  width: 65px
}

.addconn {
  cursor: pointer;
  float: left
}

.addconn .addconnmsg {
  display: none;
  margin-left: -11px
}

.addconn .addconnmsg:first-child {
  margin-top: 10px
}

.lightboxnone {
  display: none
}

.welcome a:hover {
  text-decoration: underline
}

.welcomepage {
  box-sizing: border-box;
  color: #777;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  padding: 0 0 20px;
  text-align: center
}

.welcomepage h1 {
  border-bottom: 1px dashed #ccc;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px
}

.welcomepage img {
  width: 124px
}

.welcomepage img,.welcomepage img.small {
  height: auto;
  padding-top: 10px;
  transition: transform .2s
}

.welcomepage img.small {
  width: 85px
}

.welcomepage .onethird:hover img {
  transform: scale(1.1)
}

.welcomepage .onethird:hover {
  font-weight: 500
}

.button-small {
  background-color: #ff7e00;
  border-radius: 4px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  height: 32px;
  letter-spacing: .1rem;
  line-height: 32px;
  margin-top: 10px;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap
}

.button-small:hover {
  color: #333
}

.update textarea {
  height: 85px;
  margin: 0 auto;
  width: 100%
}

.update {
  padding-bottom: 10px
}

.register textarea {
  height: 110px;
  margin: 0 auto;
  width: 100%
}

.navitem {
  cursor: pointer;
  display: inline-block;
  margin: 12px 15px 0;
  opacity: 1;
  position: relative
}

.navitem img {
  height: 28px;
  opacity: .6;
  width: auto
}

.navitem img:hover {
  opacity: 1;
  transition: opacity .15s linear
}

.navitem .tooltiptext {
  background-color: #222;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  left: 50%;
  margin-left: -45px;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: 125%;
  transition: opacity .2s;
  visibility: hidden;
  width: 90px;
  z-index: 1
}

.navitem .tooltiptext:after {
  border: 5px solid transparent;
  border-bottom-color: #222;
  bottom: 100%;
  content: "";
  left: 50%;
  margin-left: -5px;
  position: absolute
}

.navitem:hover .tooltiptext {
  opacity: 1;
  visibility: visible
}

.goaltypeform {
  display: none;
  margin-left: 5px
}

.goaltypeform input {
  width: 250px
}

.thread {
  border-bottom: 1px dashed #ccc;
  box-sizing: border-box;
  overflow: hidden;
  padding: 10px
}

.thread .fr {
  display: none
}

.thread:hover .fr {
  display: inline-block
}

.threadunread {
  background-color: #ccc
}

.thread:hover {
  background-color: #eee;
  cursor: pointer
}

.thread:last-child {
  border-bottom: 0
}

.threadimg {
  float: left;
  height: auto;
  width: 60px
}

.threadimg img {
  border-radius: 15px;
  box-shadow: 0 1px 2px #333;
  height: auto;
  max-height: 50px;
  max-width: 50px;
  width: 100%
}

.threadinfo {
  width: 100%
}

.msgtext,.threadtext {
  line-height: 22px
}

.msgattach {
  background: #efefef;
  border-radius: 3px;
  border-top: 1px dotted #aaa;
  box-sizing: border-box;
  margin-top: 5px;
  overflow: hidden;
  padding: 5px 10px;
  vertical-align: middle
}

.msgattach img {
  background: #999;
  height: 32px;
  margin-right: 10px;
  padding: 5px;
  vertical-align: middle
}

.attachdownload {
  display: inline
}

.attachdownload img {
  background: none
}

.msgonline {
  color: #32ad00;
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  line-height: 16px;
  margin-left: 5px;
  vertical-align: text-bottom
}

.threadspace,.threadunspace {
  height: 0
}

.morecontent span {
  display: none
}

.morelink {
  color: #999;
  display: inline-block
}

.morelink a:hover {
  text-decoration: underline
}

.notification {
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  overflow: hidden;
  padding: 10px;
  width: 100%
}

.notification:last-child {
  border-bottom: 0
}

.notification:hover {
  background-color: #efefef;
  text-decoration: underline
}

.notification .far,.notification .fas {
  color: #000
}

.nottype {
  color: #525454;
  float: left;
  font-size: 12px;
  margin-right: 2%;
  text-align: center;
  width: 32px
}

.nottype img {
  display: inline-block;
  height: auto;
  margin-bottom: 5px;
  width: 24px
}

.notcontent {
  float: left;
  width: 82%
}

.nottime {
  color: #999;
  float: right;
  text-align: right;
  width: 10%
}

.notpic img {
  border-radius: 15px;
  box-shadow: 0 1px 2px #999;
  display: inline-block;
  height: auto;
  margin-right: 10px;
  width: 55px
}

.nothead,.notsec {
  font-size: 14px
}

.notsec {
  color: #999
}

.settings input {
  margin-bottom: 20px
}

.settings input[type=submit] {
  margin-bottom: 10px
}

.settings input[type=checkbox],.settings input[type=radio] {
  margin-left: 10px
}

.settings input[type=number] {
  width: 150px
}

#progbar,.settinglabel {
  font-weight: 700;
  width: 100%
}

#progbar {
  height: 24px;
  margin: 10px 0 0;
  position: relative
}

.chart-container {
  height: auto;
  position: relative
}

.upload {
  box-sizing: border-box;
  color: #999;
  font-size: 22px;
  font-weight: 200;
  padding: 70px 0;
  text-align: center;
  width: 100%
}

.upload a {
  text-decoration: none
}

.upload a:hover {
  text-decoration: underline
}

.background-overlay {
  background-color: rgba(0,0,0,.5);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 1000
}

.background-overlay .textHolder {
  position: relative;
  text-align: center;
  top: 50%
}

.background-overlay .textHolder .text {
  background-color: #fff;
  display: block;
  font-size: 10pt;
  margin: auto;
  padding: 20px;
  width: fit-content
}

.background-overlay>.textHolder>.text>.loadingImage {
  float: left;
  margin-right: 10px;
  width: 20px
}

.fr {
  float: right
}

.fl {
  float: left
}

.jobicon {
  height: 80px;
  line-height: 80px
}

.jobicon img {
  line-height: 80px;
  vertical-align: middle
}

.star-ratings-css {
  color: #c5c5c5;
  font-size: 25px;
  height: 25px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-shadow: 0 1px 0 #a2a2a2;
  unicode-bidi: bidi-override;
  width: 125px
}

.star-ratings-css-top {
  color: #e7711b;
  display: block;
  left: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 1
}

.star-ratings-css-bottom {
  display: block;
  padding: 0;
  z-index: 0
}

.secondaryNotification {
  cursor: pointer
}

.loadingAction {
  height: 20px;
  margin-top: 7px
}

.h10 {
  height: 10px
}

.loadingFollowAction {
  height: 10px;
  margin-bottom: 0!important;
  margin-top: 0
}

.homearticles .fr {
  font-size: 18px;
  line-height: 32px
}

.homearticles a:hover {
  color: #000;
  text-decoration: none
}

.homearticles img {
  border-radius: 5px;
  box-sizing: border-box
}

.homearticles img:hover {
  box-shadow: 0 2px 10px #aaa;
  box-sizing: border-box
}

.homearticles h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 40px
}

.articlesbox {
  box-sizing: border-box;
  margin-bottom: 100px;
  overflow: hidden;
  padding-right: 10px;
  width: 100%
}

.articlesbox:hover {
  color: #666;
  cursor: pointer
}

.articlesbox:hover.articlesbox img {
  border-bottom: 4px solid #999;
  cursor: pointer
}

.articlesbox:hover.articlesbox h5 {
  color: #ff7e00;
  font-weight: 700
}

.articlesbox h4 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden
}

.articlesbox h5 {
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px
}

.articlesbox h6 {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden
}

.articlesbox strong {
  line-height: 20px
}

.articlesbox img {
  border-bottom: 4px solid #ff7e00;
  border-radius: 3px;
  display: block;
  margin: 10px auto
}

.articlebox,.articlesbox img {
  box-sizing: border-box;
  width: 100%
}

.articlebox {
  background: hsla(0,0%,100%,.9);
  border-radius: 10px;
  box-shadow: 0 0 3px #ccc;
  font-size: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 20px
}

.articlebox img {
  border-radius: 10px;
  box-shadow: 0 5px 5px #ccc;
  float: right;
  height: auto;
  margin: 0 0 20px 20px!important;
  max-width: 40%
}

input[type=email]:disabled,input[type=email]:read-only,input[type=text]:disabled,input[type=text]:read-only {
  background-color: #eee
}

.seo {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 28px;
  padding: 20px;
  width: 100%
}

.seo p {
  margin-bottom: 40px;
  margin-top: 0
}

.seo ul {
  margin-left: 40px
}

.imageright {
  float: right
}

.imageright img {
  border-radius: 5px;
  box-shadow: 0 0 3px #999;
  float: right;
  height: auto;
  margin-bottom: 10px;
  margin-left: 10px;
  max-width: 400px;
  width: 100%
}

.imageleft {
  float: left
}

.imageleft img {
  border-radius: 5px;
  box-shadow: 0 0 3px #999;
  float: left;
  height: auto;
  margin-bottom: 10px;
  margin-right: 10px;
  max-width: 400px;
  width: 100%
}

.show-more {
  background-color: #e7e7e7;
  clear: both;
  cursor: pointer;
  font-size: 8pt;
  padding: 10px;
  text-align: center;
  text-transform: uppercase
}

.resource img {
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
  max-width: 400px;
  width: 100%
}

.resource video {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 20px;
  padding-bottom: 20px
}

.homeprofile {
  border-radius: 5px;
  box-shadow: 0 1px 2px #333;
  height: auto;
  margin-bottom: 0;
  max-width: 60px;
  padding-bottom: 0;
  width: 100%
}

.add {
  bottom: 50px;
  position: fixed!important;
  right: 50px;
  z-index: 999
}

.add,.addwelcome {
  background-color: #ff7e00;
  border-radius: 50%;
  box-shadow: 0 0 5px #999;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  height: 70px;
  line-height: 70px;
  text-align: center;
  width: 70px
}

.addwelcome {
  margin: 10px auto 40px
}

.boxhead.filter {
  border-bottom: 2px solid #ddd;
  height: 35px
}

.filter ul {
  list-style: none;
  margin: 0 0 0 5px;
  padding: 0;
  z-index: 5
}

.filter ul li {
  background: #fff;
  color: #333;
  cursor: pointer;
  float: left;
  margin-right: 5px;
  padding: 10px 15px 0;
  position: relative;
  text-align: center;
  z-index: 1
}

.filter ul li:before {
  border: 1.5px solid #ddd;
  border-radius: 8px 0 0 0;
  border-right-width: 0;
  left: 0;
  -webkit-transform: skewX(0deg);
  -moz-transform: skewX(0deg);
  -o-transform: skewX(0deg);
  transform: skewX(0deg)
}

.filter ul li:after,.filter ul li:before {
  background-color: inherit;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 70%;
  z-index: -1
}

.filter ul li:after {
  border: 1.5px solid #ddd;
  border-left-width: 0;
  border-radius: 0 8px 0 0;
  right: 0;
  -webkit-transform: skewX(10deg);
  -moz-transform: skewX(10deg);
  -o-transform: skewX(10deg);
  transform: skewX(10deg)
}

.filter ul li.active {
  color: #ff7e00;
  z-index: 10
}

.filter ul li.active:after,.filter ul li.active:before {
  background-color: #fff;
  border-bottom-color: #fff
}

.filter ul li:not([class=active]):hover:after,.filter ul li:not([class=active]):hover:before {
  background-color: #efefef
}

.homeupdate textarea {
  font-size: 16px!important;
  height: 44px!important;
  line-height: 22px!important;
  margin: 0 auto;
  min-height: inherit!important;
  padding: 10px!important;
  width: 100%
}

.homeupdate {
  padding-bottom: 10px
}

.homeupdate textarea:focus {
  height: 100px!important
}

.homeupdate input,select {
  margin-bottom: 0!important;
  padding-bottom: 0!important
}

.oppcopy {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px
}

.oppbtnsunticked {
  background-color: #999;
  border-radius: 4px;
  box-shadow: 0 1px 2px #999;
  box-sizing: border-box;
  color: #fff;
  font-size: 10px;
  line-height: 13px;
  margin-bottom: 5px;
  margin-left: 10px;
  padding-bottom: 7px;
  padding-top: 7px;
  text-align: center;
  width: 50px
}

.oppbtnsunticked a {
  color: #fff;
  text-decoration: none
}

.oppbtnsunticked:hover {
  background-color: #009d2f;
  color: #000
}

.dbg .connbox img {
  box-shadow: 0 1px 2px #333
}

.dbg .profilepic img,.dbg .profilepicsmall {
  box-shadow: 0 1px 2px #333!important
}

.dbg .connbox:hover {
  color: #ff7e00!important
}

.faqtoggleinner {
  display: none
}

.faqtoggleinner strong {
  line-height: 24px!important
}

.faqtoggle-title {
  cursor: pointer
}

.faqtoggle {
  border-bottom: 1px dashed #999;
  margin: 10px 0;
  padding: 10px 0
}

.faqtoggle:first-child {
  margin-top: 0;
  padding-top: 0
}

.faqtoggle:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0
}

.promobox {
  background: hsla(0,0%,100%,.8);
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 20px;
  text-align: left
}

.promobox img {
  float: right;
  height: auto;
  margin: 0 0 20px 20px!important;
  width: 80px
}

.public {
  padding: 20px
}

.public .button-primary {
  background-color: #fff;
  color: #333;
  text-decoration: none
}

.public h1 {
  font-size: 24px!important;
  font-weight: 700!important
}

.public h2 {
  font-size: 20px!important;
  margin-top: 5px
}

.mt0 {
  margin-top: 0
}

.mobonly {
  display: none
}

.menubar {
  display: inline-block;
  font-size: 16px;
  margin-left: 50px;
  margin-top: 15px;
  text-align: left;
  vertical-align: top
}

.menubaritem {
  border-right: 1px solid #ccc;
  display: inline-block;
  margin-right: 20px;
  padding-right: 20px
}

.menubaritem:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0
}

.mobico {
  max-width: 100px
}

h2 .texticon {
  width: 32px
}

.mac {
  margin-bottom: 100px
}

.jobpic {
  float: right;
  height: auto;
  margin-bottom: 0;
  width: 160px
}

.jobpic img {
  background: #fff;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 1px 2px #ccc;
  box-shadow: 0 0 5px #ccc;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  width: 100%
}

.jobpic .button-primary {
  background-color: #008528;
  border: none
}

.jobdesc {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  border-top: 1px dashed #ccc;
  display: -webkit-box;
  margin-top: 5px;
  overflow: hidden;
  padding-top: 5px
}

.eventpic {
  float: left;
  height: auto;
  margin-bottom: 0!important;
  margin-right: 20px;
  width: 250px
}

.eventpic img {
  background: #fff;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 1px 2px #ccc;
  box-shadow: 0 0 5px #ccc;
  box-sizing: border-box;
  height: auto;
  width: 100%
}

.eventpic .button-primary {
  background-color: #008528;
  border: none
}

.homebox .smalloppblock:hover {
  background-color: inherit
}

.homebox .smallopppic {
  width: 48px
}

.homebox .opphead {
  font-size: 14px;
  line-height: 18px
}

.homebox .opp {
  font-size: 12px;
  line-height: 15px
}

.homebox .u-pull-right {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  vertical-align: text-top
}

.homebox .u-pull-right img {
  clear: both;
  margin-bottom: 0;
  text-align: center;
  width: 20px
}

.connboxf:hover {
  color: #fff!important
}

.mr0 {
  margin-right: 0
}

.mr5 {
  margin-right: 5px
}

.mr10 {
  margin-right: 10px
}

.mr20 {
  margin-right: 20px
}

.mb0 {
  margin-bottom: 0
}

.oppblockalt {
  border-bottom: 1px solid #ccc;
  border-radius: 3px;
  display: table;
  padding: 15px 10px;
  width: 100%
}

.oppblockalt:nth-child(2n) {
  background-color: #efefef
}

.oppblockalt:last-child {
  border-bottom: 0
}

.oppblockalt:hover {
  background-color: #dedede
}

.horizontalblock {
  -webkit-overflow-scrolling: touch;
  display: flex;
  display: -webkit-flex;
  flex-wrap: nowrap;
  overflow-x: hidden
}

.oppblockhorizontal {
  display: inline-block;
  flex: 0 0 auto;
  float: left;
  padding: 15px 10px;
  width: 20%
}

.oppblockhorizontal:last-child {
  border-bottom: 0
}

.oppblockhorizontal:hover {
  background-color: #dedede
}

.oppblockhorizontal .eventpic {
  width: 100%
}

.oppblockhorizontal:nth-child(2n) {
  background-color: #efefef
}

.mentorreport {
  vertical-align: middle
}

.mentor {
  display: inline-block;
  font-size: 12px;
  text-align: center;
  vertical-align: text-top;
  width: 30%
}

.mentor img {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 2px #ccc;
  box-sizing: content-box;
  height: auto;
  margin-bottom: 5px;
  max-width: 70px;
  padding: 0;
  vertical-align: middle;
  width: 100%
}

.arrow {
  display: inline-block;
  font-size: 12px;
  margin-left: 2%;
  margin-right: 2%;
  padding-top: 20px;
  text-align: center;
  vertical-align: top;
  width: 33%
}

.arrow img {
  border: none;
  box-shadow: none;
  max-width: 24px;
  text-align: center;
  width: 100%
}

.pr {
  position: relative
}

.oh {
  overflow: hidden
}

.has-tooltip {
  background-color: #333;
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  height: 24px;
  line-height: 26px;
  padding-left: 1px;
  text-align: center;
  width: 24px
}

.has-tooltip:hover .tooltip-wrapper {
  opacity: .9;
  visibility: visible
}

.tooltip {
  background-color: #000;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding: 5px 10px;
  position: relative;
  right: 20px;
  text-align: left;
  top: 2.5em;
  width: auto
}

.tooltip:after {
  border-bottom: 8px solid #000;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: 100%;
  content: "";
  height: 0;
  left: 15px;
  margin-left: -8px;
  position: absolute;
  width: 0
}

.dropbtn {
  border: none
}

.dropbtn:after {
  content: "\2807";
  font-size: 20px;
  line-height: 25px;
  padding-left: 20px
}

.dropdown {
  display: inline-block;
  position: absolute;
  right: 10px;
  z-index: 999
}

.dropdown-content {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px #aaa;
  display: none;
  font-size: 12px;
  left: -120px;
  min-width: 160px;
  position: absolute;
  text-align: left;
  z-index: 1
}

.dropdown-content a {
  border-bottom: 1px solid #ccc;
  border-radius: 3px;
  color: #000;
  display: block;
  padding: 10px;
  text-decoration: none
}

.dropdown-content a:last-child {
  border-bottom: 0 dashed #ccc
}

.dropdown-content a:focus,.dropdown-content a:hover {
  background-color: #ffefe0;
  color: #000;
  display: block;
  text-decoration: none
}

.dropdown:focus .dropdown-content,.dropdown:hover .dropdown-content {
  display: block
}

.goaltick {
  border-bottom: 1px solid #ddd;
  font-weight: 700;
  padding: 15px 5px
}

.goaltick:hover {
  background-color: #eee
}

.goaltick:last-child {
  border-bottom: 0
}

.goaltickbox {
  cursor: pointer;
  display: block;
  font-size: 14px;
  padding-left: 30px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.goaltickbox input {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0
}

.checkmark {
  background-color: #ccc;
  border-radius: 3px;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px
}

.checkmark:focus {
  border: 2px solid #333!important
}

.goaltickbox:hover input~.checkmark {
  background-color: #ff7e00
}

.goaltickbox input:checked~.checkmark {
  background-color: #009d2f
}

.checkmark:after {
  content: "";
  display: none;
  position: absolute
}

.goaltickbox input:checked~.checkmark:after,.goaltickbox:hover input:hover~.checkmark:after {
  display: block
}

.goaltickbox .checkmark:after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  height: 8px;
  left: 7px;
  top: 3px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 4px
}

.goalinfo {
  font-size: 11px;
  font-weight: 500;
  line-height: 16px
}

.goalinfo img:first-child {
  margin-left: 0
}

.goalinfo img {
  height: 14px;
  line-height: 16px;
  margin-left: 15px;
  margin-right: 5px;
  vertical-align: middle;
  width: 14px
}

.businesslogos {
  margin: 50px auto 100px;
  vertical-align: middle;
  width: 100%
}

.businesslogos img {
  max-width: 150px;
  vertical-align: middle;
  width: 12%
}

.businesslogos img:first-child {
  margin-left: 0
}

.businesslogos img:last-child {
  margin-right: 0
}

.obg .button-primary {
  background-color: #000!important
}

.business {
  background-color: #efefef;
  margin: 0;
  min-height: 100%;
  position: relative
}

.businessform {
  margin: 0 auto;
  max-width: 500px;
  width: 100%
}

.businessform input,.businessformalt button,.businessformalt input {
  font-size: 18px!important;
  height: 42px;
  margin-right: 15px;
  max-width: 300px;
  text-transform: none
}

.businessformalt button,.businessformalt input {
  border-radius: 20px;
  float: left;
  line-height: 42px;
  padding: 0 20px
}

.testimonial {
  border-radius: 50%;
  box-shadow: 0 0 10px #999;
  margin: 50px auto;
  width: 100px
}

.ytcontainer {
  height: 0;
  margin-left: 20px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative
}

.ytcontainer iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

#earnMorePoints {
  display: none
}

#goalsRightColumn {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0
}

#goalsRightColumn .boxhead {
  margin-bottom: 0
}

#goalsRightColumn .boxhead,#goalsRightColumn .goaltick {
  padding-left: 10px;
  padding-right: 10px
}

#goalsRightColumn .goaltick.overdue {
  background-color: #ffecea
}

#goalsRightColumn .goaltick.completed {
  background-color: #eaffeb
}

.padl10 {
  padding-left: 10px
}

.padr10 {
  padding-right: 10px
}

.br0 {
  border-radius: 0
}

.footerlogged {
  background: #fff;
  box-sizing: border-box;
  padding: 20px 0;
  text-align: left;
  width: 100%
}

.footerlogged,mainlogged:after {
  height: auto
}

.mainlogged {
  margin: 0 auto;
  min-height: 100%;
  padding-bottom: 40px;
  padding-top: 80px
}

.sidenav {
  overflow-x: hidden;
  width: 100%
}

.sidenav button {
  margin: 0 0 5px!important;
  padding: 5px 10px!important;
  text-transform: none!important
}

.sidenav img {
  margin-right: 15px;
  padding-left: 5px
}

.dropdown-btn,.sidenav a {
  background: none;
  border: none;
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 5px;
  padding: 5px 10px;
  text-align: left;
  text-decoration: none;
  width: 100%
}

.dropdown-btn:hover,.sidenav a:hover {
  background-color: #555;
  color: #fff
}

.sidenav .active {
  background-color: #333;
  color: #fff
}

.dropdown-container {
  display: none;
  padding-left: 40px
}

.dropdown-container a {
  padding-left: 10px
}

.fa-caret-down {
  color: #fff;
  float: right
}

.eventh {
  border-radius: 3px;
  height: 130px;
  margin-bottom: 10px;
  max-height: 100px;
  overflow: hidden
}

.eventh img {
  height: 130px;
  object-fit: cover;
  width: 100%
}

.landing {
  background: url(https://cdn.pushfar.com/assets/static/bg12.jpg) no-repeat top fixed;
  background-color: #efefef;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  margin: 0;
  min-height: 100%;
  position: relative
}

.mentorstat {
  float: left;
  width: 200px
}

.cd-button {
  background-color: #ccc;
  border: none;
  border-radius: 3px;
  color: #333;
  display: inline-block;
  float: right;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  margin-left: 5px;
  padding: 1px 10px;
  text-transform: capitalize;
  width: auto
}

.cd-button:hover {
  background-color: #ff484b;
  color: #fff;
  cursor: pointer
}

.circle {
  background-color: #ff7e00;
  border-radius: 50%;
  color: #fff;
  float: left;
  font-size: 20px;
  font-weight: 700;
  height: 30px;
  line-height: 30px;
  margin-right: 10px;
  text-align: center;
  width: 30px
}

.smallbox {
  border-radius: 15px;
  box-shadow: 0 1px 2px #ccc;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 15px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px 15px;
  text-align: center;
  width: auto
}

.smallbox:hover {
  background: #ccc;
  cursor: pointer
}

.smallbox:focus {
  outline: 3px solid #333
}

.smallboxselected {
  background: #ff7e00;
  border-radius: 15px;
  box-shadow: 0 1px 2px #ccc;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px 20px;
  text-align: center;
  width: auto
}

.smallboxselected:focus {
  outline: 3px solid #333
}

.smallbox:first-child {
  margin-left: 0
}

.smallbox:last-child {
  margin-right: 0
}

.wb-ba {
  word-break: break-all
}

.ta-j {
  text-align: justify
}

.dropdownalt {
  display: inline-block;
  z-index: 999
}

.dropdownalt-content {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px #aaa;
  display: none;
  font-size: 12px;
  min-width: 160px;
  position: absolute;
  text-align: left;
  z-index: 1
}

.dropdownalt-content a {
  border-bottom: 1px solid #ccc;
  color: #000;
  display: block;
  padding: 10px;
  text-decoration: none
}

.dropdownalt-content a:last-child {
  border-bottom: 0 dashed #ccc
}

.dropdownalt-content a:focus,.dropdownalt-content a:hover {
  background-color: #ffefe0;
  color: #000;
  display: block;
  text-decoration: none
}

.dropdownalt-content i.far,i.fas {
  font-size: 11pt;
  margin-right: 5px;
  vertical-align: middle
}

.dropdownalt:focus .dropdownalt-content,.dropdownalt:hover .dropdownalt-content {
  display: block
}

@keyframes scaleA {
  0% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
  }

  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scaleB {
  0% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05)
  }

  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scaleC {
  0% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1)
  }

  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
  }
}

.home-creative {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%
}

.home-mentor {
  position: absolute;
  width: 60%
}

.home-mentor img {
  animation: scaleA 1s ease-out 0s 1;
  border: 3px solid #ff7e00;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px 0 #666;
  -moz-box-shadow: 0 0 5px 0 #666;
  box-shadow: 0 0 5px 0 #666;
  margin-left: 50px;
  max-width: 250px;
  min-width: 150px;
  width: 100%
}

.home-mentee {
  left: 150px;
  position: absolute;
  top: 130px;
  width: 60%
}

.home-mentee img {
  animation: scaleB 2s ease-out 0s 1;
  border: 7px solid #ff7e00;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px 0 #555;
  -moz-box-shadow: 0 0 5px 0 #555;
  box-shadow: 0 0 5px 0 #555;
  max-width: 250px;
  min-width: 150px;
  width: 100%
}

.home-both {
  left: 20px;
  position: absolute;
  top: 210px;
  width: 60%
}

.home-both img {
  animation: scaleC 3s ease-out 0s 1;
  border: 14px solid #ff7e00;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px 0 #444;
  -moz-box-shadow: 0 0 5px 0 #444;
  box-shadow: 0 0 5px 0 #444;
  max-width: 200px;
  min-width: 150px;
  width: 100%
}

.badges {
  margin: 0 auto;
  text-align: center
}

.badge {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  width: 23.5%
}

.badge img {
  width: 100%
}

.tooltip-wrapper {
  position: absolute;
  visibility: hidden;
  z-index: 2
}

.badge-tooltip:hover .tooltip-wrapper {
  opacity: .9;
  visibility: visible
}

.badgetooltip {
  background-color: #000;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: 14px;
  left: -127px;
  line-height: 18px;
  padding: 5px 10px;
  position: relative;
  text-align: left;
  top: 60px;
  width: 200px
}

.badgetooltip:after {
  border-bottom: 8px solid #000;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: 100%;
  content: "";
  height: 0;
  left: 100px;
  margin-left: -8px;
  position: absolute;
  width: 0
}

.badgeincomplete img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: .5;
  transition: opacity 1s
}

.badgeincomplete img:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
  transition: opacity 1s
}

.verified {
  cursor: pointer;
  display: inline-block;
  opacity: 1;
  position: relative
}

.verified .tooltiptext {
  background-color: #222;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  left: 50%;
  margin-left: -45px;
  opacity: 0;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  top: 125%;
  transition: opacity .2s;
  visibility: hidden;
  width: 100px;
  z-index: 1
}

.verified .tooltiptext:after {
  border: 5px solid transparent;
  border-bottom-color: #222;
  bottom: 100%;
  content: "";
  left: 50%;
  margin-left: -10px;
  position: absolute
}

.verified:hover .tooltiptext {
  opacity: 1;
  visibility: visible
}

.br5 {
  border-radius: 5px
}

.floating {
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: floating;
  -webkit-animation-name: floating
}

@keyframes floating {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8%)
  }

  to {
    transform: translateY(0)
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0)
  }

  50% {
    -webkit-transform: translateY(8%)
  }

  to {
    -webkit-transform: translateY(0)
  }
}

.arrow-1 {
  left: 10px;
  position: absolute;
  top: 100px;
  width: 150px
}

.changeLanguageSection {
  margin-top: 5px
}

.changeLanguageSection img {
  float: left;
  margin-right: 11px;
  margin-top: 4px;
  width: 20px
}

.changeLanguageSection select {
  border-radius: 50px;
  font-size: 12px!important;
  height: 29px;
  line-height: 12px!important;
  padding: 0 5px 5px 10px
}

.mob-change-language {
  margin: 20px 0 0 20px
}

#mobile-menu-panel .changeLanguageSection {
  color: #333;
  padding-left: 0
}

.nb {
  border: none!important
}

.webinar {
  background: #41a152;
  color: #fff;
  padding: 5px 0;
  text-align: center;
  width: 100%;
  position: fixed;
  z-index: 999;
}

.webinar a {
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: underline
}

.ml0 {
  margin-left: 0
}

.inline {
  display: inline!important
}

.cancelMeetingConfirmation {
  background-color: #fff;
  display: none;
  padding: 20px;
  text-align: center
}

.cb {
  clear: both
}

.casestudy {
  height: auto;
  width: 200px
}

.brandlogos {
  margin: 50px auto 100px;
  vertical-align: middle;
  width: 100%
}

.brandlogos img {
  max-width: 250px;
  vertical-align: middle;
  width: 16%
}

.homearticle {
  border-bottom: 1px solid #999;
  box-sizing: border-box;
  margin-bottom: 20px;
  overflow: hidden;
  padding-right: 10px;
  width: 100%
}

.homearticle:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.homearticle:hover {
  color: #666;
  cursor: pointer
}

.homearticle:hover.homearticle img {
  border-bottom: 4px solid #999;
  cursor: pointer
}

.homearticle:hover.homearticle h5 {
  color: #ff7e00;
  font-weight: 700
}

.homearticle h4 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden
}

.homearticle h5 {
  font-size: 14px;
  font-weight: 500;
  padding-top: 10px
}

.homearticle h6 {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 12px;
  font-weight: 400;
  overflow: hidden
}

.homearticle img {
  border-bottom: 4px solid #ff7e00;
  border-radius: 3px;
  box-sizing: border-box;
  display: block;
  margin: 10px auto;
  width: 100%
}

a.nostyle,a.nostyle:hover {
  color: inherit;
  text-decoration: none
}

.resourcesbox {
  box-sizing: border-box;
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 1.3%;
  margin-right: 1.3%;
  overflow: hidden;
  padding-right: 10px;
  width: 17%
}

.resourcesbox:hover {
  color: #666;
  cursor: pointer
}

.resourcesbox:hover.resourcesbox img {
  border-bottom: 4px solid #999;
  cursor: pointer
}

.resourcesbox:hover.resourcesbox h5 {
  color: #ff7e00;
  font-weight: 700
}

.resourcesbox h4 {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden
}

.resourcesbox h5 {
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px
}

.resourcesbox h6 {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden
}

.resourcesbox strong {
  font-size: 20px
}

.resourcesbox img {
  display: block;
  margin-bottom: 20px;
  width: 100%
}

.resourcecover,.resourcesbox img {
  border-bottom: 4px solid #ff7e00;
  border-radius: 3px;
  box-shadow: 2px 2px 5px #888;
  box-sizing: border-box
}

.resourcecover {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 20px
}

.defaultsearch {
  color: #595959;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  padding: 100px 0;
  text-align: center
}

.defaultsearch a {
  color: #595959;
  text-decoration: none
}

.defaultsearch a:hover {
  color: #595959;
  text-decoration: underline
}

.defaultsearch img {
  height: auto;
  opacity: .7;
  transition: transform .2s;
  width: 250px
}

.defaultsearch img:hover {
  height: auto;
  opacity: 1;
  transform: scale(1.1);
  width: 250px
}

.with-err {
  border-color: #ad0000!important
}

.label-with-err {
  color: #ad0000!important
}

.dn {
  display: none!important
}

.display-none {
  display: none
}

.error-data {
  color: #ad0000
}

.error-data,.note {
  font-size: 10pt;
  font-weight: 300
}

.open-menu-button {
  border: 0!important;
  padding: 0!important
}

.visible-checkbox {
  -webkit-appearance: checkbox!important;
  float: none!important
}

.tdn {
  text-decoration: none!important
}

.mentorreporting {
  display: inline-block;
  float: left;
  font-size: 12px;
  margin-right: 20px;
  text-align: center;
  vertical-align: text-top;
  width: 100px
}

.mentorreporting img {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px #ccc;
  box-sizing: content-box;
  height: auto;
  margin-bottom: 5px;
  max-width: 100px;
  padding: 0;
  vertical-align: middle;
  width: 100%
}

h1.bread-style {
  color: #ff7e00;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0;
  line-height: normal
}

button.special {
  border: 0;
  font-size: 11pt;
  height: inherit;
  line-height: 18pt
}

button.special-sm {
  border: 0;
  font-size: 8pt;
  height: inherit;
  line-height: 15pt
}

.b0 {
  border: 0
}

select.qcTimepicker {
  height: 38px;
  width: 80px
}

.pos-relative {
  position: relative
}

.underline {
  text-decoration: underline
}

.upper {
  text-transform: uppercase
}

.as-ui-li-tab {
  border-bottom: 5px solid #ff7e00;
  color: #333;
  font-size: 16px;
  font-weight: 600
}

@media (max-width: 400px) {
  .hide-sm-screen {
    display:none
  }
}

.nav-current {
  border-bottom: 3px solid #666
}

#mobile-menu-panel {
  padding-top: 50px
}

.big-label {
  font-size: 18pt;
  font-weight: 400
}

.h38,select {
  height: 45px
}

.h38i {
  height: 45px!important
}

.fout-offset:focus,.fout:focus {
  outline: 3px solid #333!important
}

.fout-offset:focus {
  outline-offset: -3px
}

.crf-upload-file-btn {
  display: block;
  width: 100%
}

.cr-upload-field {
  display: none
}

.uploaded-file-container {
  background-color: #efefef;
  display: none;
  padding: 10px
}

.uploaded-file-container.active {
  display: block
}

.uploaded-file-container .removeFile {
  cursor: pointer
}

.fn-i {
  float: none!important
}

.db-i {
  display: block!important
}

ul.checkbox-list li {
  margin-right: 5px;
  width: 49%
}

.onefourth,ul.checkbox-list li {
  display: inline-block;
  float: left
}

.onefourth {
  margin: auto 1%;
  width: 23%
}

.articlesboxresource {
  box-sizing: border-box;
  margin-bottom: 20px;
  overflow: hidden;
  padding-right: 10px;
  width: 100%
}

.articlesboxresource:hover {
  color: #666;
  cursor: pointer
}

.articlesboxresource:hover.articlesboxresource img {
  border-bottom: 4px solid #999;
  cursor: pointer
}

.articlesboxresource:hover.articlesboxresource h5 {
  color: #ff7e00;
  font-weight: 700
}

.articlesboxresource h4 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden
}

.articlesboxresource h5 {
  font-size: 16px;
  font-weight: 500;
  padding-top: 10px
}

.articlesboxresource h6 {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden
}

.articlesboxresource strong {
  line-height: 20px
}

.articlesboxresource img {
  border-bottom: 4px solid #ff7e00;
  border-radius: 3px;
  box-sizing: border-box;
  display: block;
  margin: 10px auto;
  width: 100%
}

.groupIcon {
  font-size: 26pt;
  margin-left: 5px;
  margin-top: 4px
}

.profilepicgroup {
  position: relative
}

.profilepicgroup1 {
  position: relative
}

.profilepicgroup1,.profilepicgroup2 {
  border-radius: 15px;
  box-shadow: 0 1px 2px #999;
  height: auto;
  width: 75px
}

.profilepicgroup2 {
  position: absolute;
  right: 20px;
  top: 20px
}

.profilepicgroup3 {
  position: relative
}

.profilepicgroup3,.profilepicgroup4 {
  border-radius: 15px;
  box-shadow: 0 1px 2px #999;
  height: auto;
  width: 75px
}

.profilepicgroup4 {
  left: 20px;
  position: absolute;
  top: 20px
}

.profilepicgroup5 {
  border-radius: 15px;
  box-shadow: 0 1px 2px #999;
  height: auto;
  margin-top: 15px;
  position: relative;
  width: 75px
}

.pl2 {
  padding-left: 2px
}

.unstyled-button {
  border: 0!important;
  margin: 0!important;
  padding: 0!important
}

.edit-note-content {
  display: none;
  position: relative
}

.mentoring-group-toggle {
  word-wrap: break-word;
  max-width: 100%;
  text-align: left;
  white-space: normal
}

.nodecoration,.nodecoration:hover {
  text-decoration: none
}

.alert {
  border: 1px solid transparent;
  border-radius: .25rem;
  display: none;
  margin-bottom: 1rem;
  padding: .75rem 1.25rem;
  position: relative
}

.alert>img.attention {
  float: left;
  margin-right: 10px;
  width: 40px
}

.alert>span.text h6 {
  line-height: 40px
}

.alert>span.text>ul {
  margin-top: 20px
}

.alert>span.text>ul>li {
  line-height: 15px
}

@media screen and (max-width: 500px) {
  .alert>span.text {
    line-height:25px
  }
}

.alert-success {
  background-color: #d4edda;
  border-color: #155624;
  color: #155624
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeeba;
  color: #856404
}

.alert-warning a {
  color: #ff7e00
}

.alert-primary {
  background-color: #cce5ff;
  border-color: #b8daff;
  color: #004085
}

.alert-secondary {
  background-color: #e2e3e5;
  border-color: #d6d8db;
  color: #383d41
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460
}

.loader {
  animation: spin 2s linear infinite;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: #ff7e03;
  height: 70px;
  margin-bottom: 50px;
  margin-left: calc(50% - 60px);
  margin-top: 50px;
  width: 70px
}

@keyframes spin {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(1turn)
  }
}

#loading {
  display: none;
  text-align: center
}

.six.columns form {
  padding: 20px;
}

.six.columns form .actions input {
  background-color: #ff7e00;
  border: #ff7e00;
  border-color: #999;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  margin-top: 15px;
  padding: 0 25px;
}

.six.columns form .actions input:hover {
  background-color: #333;
  border-color: #333;
}




@media(max-width: 960px){
  .nav{
    top: 0;
  }
}

.container-fluid.footer__container.content-wrapper .dnd-section {
  padding: 0;
}


form h3{
  letter-spacing: normal;
}


fieldset.form-columns-1 .hs-input{
  width: 100% !important;
}