/*!
 Material Components for the web
 Copyright (c) 2018 Google Inc.
 License: Apache-2.0
*/
.mdc-line-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 2; }

.mdc-line-ripple--active {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1; }

.mdc-line-ripple--deactivating {
  opacity: 0; }

@-webkit-keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1); }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); } }

@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1); }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); } }

@-webkit-keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0; }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0.16); } }

@keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0; }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0.16); } }

@-webkit-keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0.16); }
  to {
    opacity: 0; } }

@keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0.16); }
  to {
    opacity: 0; } }

.mdc-ripple-surface--test-edge-var-bug {
  --mdc-ripple-surface-test-edge-var: 1px solid #000;
  visibility: hidden; }
  .mdc-ripple-surface--test-edge-var-bug::before {
    border: var(--mdc-ripple-surface-test-edge-var); }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-button {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 64px;
  height: 36px;
  padding: 0 16px;
  border: none;
  outline: none;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 2px; }
  .mdc-button::before, .mdc-button::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-button::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-button.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-button.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-button.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-button.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-button.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-button::before, .mdc-button::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-button.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-button::-moz-focus-inner {
    padding: 0;
    border: 0; }
  .mdc-button:active {
    outline: none; }
  .mdc-button:hover {
    cursor: pointer; }
  .mdc-button:disabled {
    background-color: transparent;
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
    cursor: default;
    pointer-events: none; }
  .mdc-button:not(:disabled) {
    background-color: transparent; }
  .mdc-button:not(:disabled) {
    /* @alternate */
    color: #6200ee;
    color: var(--mdc-theme-primary, #6200ee); }
  .mdc-button::before, .mdc-button::after {
    /* @alternate */
    background-color: #6200ee; }
    @supports not (-ms-ime-align: auto) {
      .mdc-button::before, .mdc-button::after {
        background-color: var(--mdc-theme-primary, #6200ee); } }
  .mdc-button:hover::before {
    opacity: 0.04; }
  .mdc-button:not(.mdc-ripple-upgraded):focus::before, .mdc-button.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-button:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-button:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-button.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }

.mdc-button--raised:disabled,
.mdc-button--unelevated:disabled {
  background-color: rgba(0, 0, 0, 0.12);
  /* @alternate */
  color: rgba(0, 0, 0, 0.38);
  color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)); }

.mdc-button--raised:not(:disabled),
.mdc-button--unelevated:not(:disabled) {
  /* @alternate */
  background-color: #6200ee; }
  @supports not (-ms-ime-align: auto) {
    .mdc-button--raised:not(:disabled),
    .mdc-button--unelevated:not(:disabled) {
      background-color: var(--mdc-theme-primary, #6200ee); } }

.mdc-button--raised:not(:disabled),
.mdc-button--unelevated:not(:disabled) {
  /* @alternate */
  color: white;
  color: var(--mdc-theme-text-primary-on-primary, white); }

.mdc-button--raised::before, .mdc-button--raised::after,
.mdc-button--unelevated::before,
.mdc-button--unelevated::after {
  /* @alternate */
  background-color: white; }
  @supports not (-ms-ime-align: auto) {
    .mdc-button--raised::before, .mdc-button--raised::after,
    .mdc-button--unelevated::before,
    .mdc-button--unelevated::after {
      background-color: var(--mdc-theme-text-primary-on-primary, white); } }

.mdc-button--raised:hover::before,
.mdc-button--unelevated:hover::before {
  opacity: 0.08; }

.mdc-button--raised:not(.mdc-ripple-upgraded):focus::before, .mdc-button--raised.mdc-ripple-upgraded--background-focused::before,
.mdc-button--unelevated:not(.mdc-ripple-upgraded):focus::before,
.mdc-button--unelevated.mdc-ripple-upgraded--background-focused::before {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24; }

.mdc-button--raised:not(.mdc-ripple-upgraded)::after,
.mdc-button--unelevated:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear; }

.mdc-button--raised:not(.mdc-ripple-upgraded):active::after,
.mdc-button--unelevated:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.32; }

.mdc-button--raised.mdc-ripple-upgraded,
.mdc-button--unelevated.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.32; }

.mdc-button--raised {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1); }
  .mdc-button--raised:hover, .mdc-button--raised:focus {
    -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }
  .mdc-button--raised:active {
    -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
  .mdc-button--raised:disabled {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }

.mdc-button--stroked {
  border-style: solid;
  padding-right: 14px;
  padding-left: 14px;
  border-width: 2px;
  line-height: 32px; }
  .mdc-button--stroked:disabled {
    /* @alternate */
    border-color: rgba(0, 0, 0, 0.38);
    border-color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)); }
  .mdc-button--stroked.mdc-button--dense {
    line-height: 27px; }
  .mdc-button--stroked.mdc-button--compact {
    padding-right: 6px;
    padding-left: 6px; }
  .mdc-button--stroked:not(:disabled) {
    /* @alternate */
    border-color: #6200ee;
    border-color: var(--mdc-theme-primary, #6200ee); }

.mdc-button--compact {
  padding: 0 8px; }

.mdc-button--dense {
  height: 32px;
  font-size: .8125rem;
  line-height: 32px; }

.mdc-button__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  font-size: 18px;
  line-height: inherit;
  vertical-align: top; }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-card {
  /* @alternate */
  background-color: #fff;
  background-color: var(--mdc-theme-background, #fff);
  border-radius: 2px;
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mdc-card--stroked {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  border: 1px solid #dbdbdb; }

.mdc-card__media {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover; }
  .mdc-card__media::before {
    display: block;
    content: ""; }

.mdc-card__media:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit; }

.mdc-card__media:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit; }

.mdc-card__media--square::before {
  margin-top: 100%; }

.mdc-card__media--16-9::before {
  margin-top: 56.25%; }

.mdc-card__media-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mdc-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 52px;
  padding: 8px; }

.mdc-card__actions--full-bleed {
  padding: 0; }

.mdc-card__action-buttons,
.mdc-card__action-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.mdc-card__action-icons {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38);
  color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38));
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.mdc-card__action-buttons + .mdc-card__action-icons {
  margin-left: 16px;
  margin-right: 0; }
  [dir="rtl"] .mdc-card__action-buttons + .mdc-card__action-icons, .mdc-card__action-buttons + .mdc-card__action-icons[dir="rtl"] {
    margin-left: 0;
    margin-right: 16px; }

.mdc-card__action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: auto;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .mdc-card__action:focus {
    outline: none; }

.mdc-card__action--button {
  margin-left: 0;
  margin-right: 8px;
  padding: 0 8px; }
  [dir="rtl"] .mdc-card__action--button, .mdc-card__action--button[dir="rtl"] {
    margin-left: 8px;
    margin-right: 0; }
  .mdc-card__action--button:last-child {
    margin-left: 0;
    margin-right: 0; }
    [dir="rtl"] .mdc-card__action--button:last-child, .mdc-card__action--button:last-child[dir="rtl"] {
      margin-left: 0;
      margin-right: 0; }

.mdc-card__actions--full-bleed .mdc-card__action--button {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 8px 16px;
  text-align: left; }
  [dir="rtl"] .mdc-card__actions--full-bleed .mdc-card__action--button, .mdc-card__actions--full-bleed .mdc-card__action--button[dir="rtl"] {
    text-align: right; }

.mdc-card__action--icon {
  margin: -6px 0;
  padding: 12px; }

.mdc-card__action--icon:not(:disabled) {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38);
  color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38)); }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
@-webkit-keyframes mdc-checkbox-unchecked-checked-checkmark-path {
  0%,
  50% {
    stroke-dashoffset: 29.78334; }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
  100% {
    stroke-dashoffset: 0; } }
@keyframes mdc-checkbox-unchecked-checked-checkmark-path {
  0%,
  50% {
    stroke-dashoffset: 29.78334; }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
  100% {
    stroke-dashoffset: 0; } }

@-webkit-keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
  0%,
  68.2% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  68.2% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1); }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
  0%,
  68.2% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  68.2% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1); }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1); } }

@-webkit-keyframes mdc-checkbox-checked-unchecked-checkmark-path {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    stroke-dashoffset: 0; }
  to {
    opacity: 0;
    stroke-dashoffset: -29.78334; } }

@keyframes mdc-checkbox-checked-unchecked-checkmark-path {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    stroke-dashoffset: 0; }
  to {
    opacity: 0;
    stroke-dashoffset: -29.78334; } }

@-webkit-keyframes mdc-checkbox-checked-indeterminate-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1; }
  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0; } }

@keyframes mdc-checkbox-checked-indeterminate-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1; }
  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0; } }

@-webkit-keyframes mdc-checkbox-indeterminate-checked-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0; }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1; } }

@keyframes mdc-checkbox-indeterminate-checked-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0; }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1; } }

@-webkit-keyframes mdc-checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
            animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0; }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1; } }

@keyframes mdc-checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
            animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0; }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1; } }

@-webkit-keyframes mdc-checkbox-indeterminate-checked-mixedmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1; }
  to {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    opacity: 0; } }

@keyframes mdc-checkbox-indeterminate-checked-mixedmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1; }
  to {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    opacity: 0; } }

@-webkit-keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1; }
  32.8%,
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0; } }

@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1; }
  32.8%,
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0; } }

.mdc-checkbox {
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 18px;
  height: 18px;
  padding: 11px;
  line-height: 0;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: bottom;
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity; }
  .mdc-checkbox::before, .mdc-checkbox::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-checkbox::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-checkbox.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-checkbox.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-checkbox.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-checkbox.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-checkbox::before, .mdc-checkbox::after {
    /* @alternate */
    background-color: #018786; }
    @supports not (-ms-ime-align: auto) {
      .mdc-checkbox::before, .mdc-checkbox::after {
        background-color: var(--mdc-theme-secondary, #018786); } }
  .mdc-checkbox:hover::before {
    opacity: 0.04; }
  .mdc-checkbox:not(.mdc-ripple-upgraded):focus::before, .mdc-checkbox.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-checkbox:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-checkbox:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-checkbox.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-checkbox::before, .mdc-checkbox::after {
    top: calc(50% - 50%);
    left: calc(50% - 50%);
    width: 100%;
    height: 100%; }
  .mdc-checkbox.mdc-ripple-upgraded::before, .mdc-checkbox.mdc-ripple-upgraded::after {
    top: var(--mdc-ripple-top, calc(50% - 50%));
    left: var(--mdc-ripple-left, calc(50% - 50%));
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-checkbox.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }

.mdc-checkbox__checkmark-path {
  stroke: white !important; }

.mdc-checkbox__mixedmark {
  background-color: white; }

.mdc-checkbox__background::before {
  /* @alternate */
  background-color: #018786; }
  @supports not (-ms-ime-align: auto) {
    .mdc-checkbox__background::before {
      background-color: var(--mdc-theme-secondary, #018786); } }

.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
  border-color: rgba(0, 0, 0, 0.54);
  background-color: transparent; }

.mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
  /* @alternate */
  border-color: #018786;
  border-color: var(--mdc-theme-secondary, #018786);
  /* @alternate */
  background-color: #018786;
  background-color: var(--mdc-theme-secondary, #018786); }

@-webkit-keyframes mdc-checkbox-fade-in-background-0 {
  0% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent; }
  50% {
    /* @alternate */
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786);
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); } }

@keyframes mdc-checkbox-fade-in-background-0 {
  0% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent; }
  50% {
    /* @alternate */
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786);
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); } }

@-webkit-keyframes mdc-checkbox-fade-out-background-0 {
  0%, 80% {
    /* @alternate */
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786);
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  100% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent; } }

@keyframes mdc-checkbox-fade-out-background-0 {
  0%, 80% {
    /* @alternate */
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786);
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  100% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent; } }

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
  -webkit-animation-name: mdc-checkbox-fade-in-background-0;
          animation-name: mdc-checkbox-fade-in-background-0; }

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
  -webkit-animation-name: mdc-checkbox-fade-out-background-0;
          animation-name: mdc-checkbox-fade-out-background-0; }

.mdc-checkbox__native-control:disabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
  border-color: rgba(0, 0, 0, 0.26); }

.mdc-checkbox__native-control:disabled:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:disabled:indeterminate ~ .mdc-checkbox__background {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.26); }

.mdc-checkbox--disabled {
  cursor: default;
  pointer-events: none; }

.mdc-checkbox__background {
  left: 11px;
  right: initial;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  top: 11px;
  bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 45%;
  height: 45%;
  -webkit-transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border: 2px solid currentColor;
  border-radius: 2px;
  background-color: transparent;
  pointer-events: none;
  will-change: background-color, border-color; }
  .mdc-checkbox[dir="rtl"] .mdc-checkbox__background,
  [dir="rtl"] .mdc-checkbox .mdc-checkbox__background {
    left: initial;
    right: 11px; }

.mdc-checkbox__checkmark {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  opacity: 0; }
  .mdc-checkbox--upgraded .mdc-checkbox__checkmark {
    opacity: 1; }

.mdc-checkbox__checkmark-path {
  -webkit-transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  stroke-width: 3.12px;
  stroke-dashoffset: 29.78334;
  stroke-dasharray: 29.78334; }

.mdc-checkbox__mixedmark {
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0) rotate(0deg);
          transform: scaleX(0) rotate(0deg);
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  opacity: 0; }

.mdc-checkbox--upgraded .mdc-checkbox__background,
.mdc-checkbox--upgraded .mdc-checkbox__checkmark,
.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,
.mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
  -webkit-transition: none !important;
  transition: none !important; }

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background, .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background {
  -webkit-animation-duration: 180ms;
          animation-duration: 180ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear; }

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
  -webkit-animation: 180ms linear 0s mdc-checkbox-unchecked-checked-checkmark-path;
          animation: 180ms linear 0s mdc-checkbox-unchecked-checked-checkmark-path;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
  -webkit-animation: 90ms linear 0s mdc-checkbox-unchecked-indeterminate-mixedmark;
          animation: 90ms linear 0s mdc-checkbox-unchecked-indeterminate-mixedmark;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
  -webkit-animation: 90ms linear 0s mdc-checkbox-checked-unchecked-checkmark-path;
          animation: 90ms linear 0s mdc-checkbox-checked-unchecked-checkmark-path;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
  -webkit-animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-checkmark;
          animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-checkmark;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
  -webkit-animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-mixedmark;
          animation: 90ms linear 0s mdc-checkbox-checked-indeterminate-mixedmark;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
  -webkit-animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-checkmark;
          animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-checkmark;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
  -webkit-animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-mixedmark;
          animation: 500ms linear 0s mdc-checkbox-indeterminate-checked-mixedmark;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
  -webkit-animation: 300ms linear 0s mdc-checkbox-indeterminate-unchecked-mixedmark;
          animation: 300ms linear 0s mdc-checkbox-indeterminate-unchecked-mixedmark;
  -webkit-transition: none;
  transition: none; }

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background,
.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background {
  -webkit-transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path,
  .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
    stroke-dashoffset: 0; }

.mdc-checkbox__background::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
  will-change: opacity, transform; }

.mdc-ripple-upgraded--unbounded .mdc-checkbox__background::before {
  content: none; }

.mdc-checkbox__native-control:focus ~ .mdc-checkbox__background::before {
  -webkit-transform: scale(2.75, 2.75);
          transform: scale(2.75, 2.75);
  -webkit-transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 0.26; }

.mdc-checkbox__native-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: inherit; }
  .mdc-checkbox__native-control:disabled {
    cursor: default;
    pointer-events: none; }

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
  -webkit-transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 1; }

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
  -webkit-transform: scaleX(1) rotate(-45deg);
          transform: scaleX(1) rotate(-45deg); }

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  opacity: 0; }

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
  -webkit-transform: scaleX(1) rotate(0deg);
          transform: scaleX(1) rotate(0deg);
  opacity: 1; }

.mdc-chip {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  display: inline-block;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.87);
  padding: 7px 12px;
  margin: 5px;
  cursor: pointer;
  overflow: hidden; }
  .mdc-chip::before, .mdc-chip::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-chip::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-chip.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-chip.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-chip.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-chip.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-chip.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-chip::before, .mdc-chip::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-chip.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-chip::before, .mdc-chip::after {
    background-color: black; }
  .mdc-chip:hover::before {
    opacity: 0.04; }
  .mdc-chip:not(.mdc-ripple-upgraded):focus::before, .mdc-chip.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-chip:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-chip:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-chip.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }

.mdc-chip__text {
  display: inline-block;
  vertical-align: middle;
  line-height: 17px; }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 5; }

.mdc-dialog__backdrop {
  /* @alternate */
  background-color: rgba(0, 0, 0, 0.87);
  background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1; }

.mdc-dialog__surface {
  -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  /* @alternate */
  background-color: #fff;
  background-color: var(--mdc-theme-background, #fff);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 30px);
  min-width: 640px;
  max-width: 865px;
  -webkit-transform: translateY(150px) scale(0.8);
          transform: translateY(150px) scale(0.8);
  border-radius: 2px;
  opacity: 0; }
  .mdc-dialog[dir="rtl"] .mdc-dialog__surface,
  [dir="rtl"] .mdc-dialog .mdc-dialog__surface {
    text-align: right; }

.mdc-dialog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 24px 0; }
  .mdc-dialog[dir="rtl"] .mdc-dialog__header,
  [dir="rtl"] .mdc-dialog .mdc-dialog__header {
    text-align: right; }

.mdc-dialog__header__empty {
  padding: 0; }

.mdc-dialog__header__title {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: inherit;
  text-transform: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0; }

.mdc-dialog__body {
  /* @alternate */
  color: rgba(0, 0, 0, 0.54);
  color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54));
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 20px;
  padding: 0 24px 24px; }

.mdc-dialog__body--scrollable {
  max-height: 195px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; }

.mdc-dialog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 8px; }

.mdc-dialog__footer__button {
  margin-left: 0;
  margin-right: 8px; }
  [dir="rtl"] .mdc-dialog__footer__button, .mdc-dialog__footer__button[dir="rtl"] {
    margin-left: 8px;
    margin-right: 0; }
  .mdc-dialog__footer__button:last-child {
    margin-left: 0;
    margin-right: 0; }
    [dir="rtl"] .mdc-dialog__footer__button:last-child, .mdc-dialog__footer__button:last-child[dir="rtl"] {
      margin-left: 0;
      margin-right: 0; }

.mdc-dialog__action {
  /* @alternate */
  color: #018786;
  color: var(--mdc-theme-secondary, #018786); }

@media (max-width: 640px) {
  .mdc-dialog {
    min-width: 280px; }
  .mdc-dialog__surface {
    min-width: 280px; }
  .mdc-dialog__body {
    line-height: 24px; } }

.mdc-dialog--animating {
  visibility: visible; }
  .mdc-dialog--animating .mdc-dialog__backdrop {
    -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-dialog--animating .mdc-dialog__surface {
    -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }

.mdc-dialog--open {
  visibility: visible; }
  .mdc-dialog--open .mdc-dialog__backdrop {
    opacity: .3; }
  .mdc-dialog--open .mdc-dialog__surface {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1; }

.mdc-dialog-scroll-lock {
  overflow: hidden; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-drawer--persistent {
  /* Use aspect ratio trick to maintain 16:9 aspect ratio on the header */
  color: rgba(0, 0, 0, 0.87);
  width: 0; }
  .mdc-drawer--persistent .mdc-drawer__toolbar-spacer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 56px;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    /* TODO(sgomes): replace with global breakpoints when we have them */ }
    @media (min-width: 600px) {
      .mdc-drawer--persistent .mdc-drawer__toolbar-spacer {
        height: 64px; } }
  .mdc-drawer--persistent .mdc-drawer__header {
    position: relative; }
  .mdc-drawer--persistent .mdc-drawer__header::before {
    display: block;
    padding-top: 56.25%;
    content: ""; }
  .mdc-drawer--persistent .mdc-drawer__header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 16px; }
  .mdc-drawer--persistent .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none; }
  .mdc-drawer--persistent .mdc-list-item__graphic {
    color: rgba(0, 0, 0, 0.54); }
  .mdc-drawer--persistent.mdc-drawer--permanent,
  .mdc-drawer--persistent .mdc-drawer__drawer {
    background-color: #fff; }
  .mdc-drawer--persistent .mdc-drawer__drawer {
    border-left: 0;
    border-right: 1px solid #e4e4e4;
    left: 0;
    right: initial;
    height: 100%;
    -webkit-transform: translateX(-107%);
            transform: translateX(-107%);
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
    will-change: transform;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 240px;
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none; }
    [dir="rtl"] .mdc-drawer--persistent .mdc-drawer__drawer, .mdc-drawer--persistent .mdc-drawer__drawer[dir="rtl"] {
      border-left: 1px solid #e4e4e4;
      border-right: 0; }
    [dir="rtl"] .mdc-drawer--persistent .mdc-drawer__drawer, .mdc-drawer--persistent .mdc-drawer__drawer[dir="rtl"] {
      left: initial;
      right: 0; }
    [dir="rtl"] .mdc-drawer--persistent .mdc-drawer__drawer, .mdc-drawer--persistent .mdc-drawer__drawer[dir="rtl"] {
      -webkit-transform: translateX(107%);
              transform: translateX(107%);
      -webkit-transform: translateX(calc(100% + 20px));
              transform: translateX(calc(100% + 20px)); }
  .mdc-drawer--persistent.mdc-drawer--animating .mdc-drawer__drawer {
    -webkit-transition: -webkit-transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: -webkit-transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1); }
  .mdc-drawer--persistent.mdc-drawer--animating.mdc-drawer--open .mdc-drawer__drawer {
    -webkit-transition: -webkit-transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-drawer--persistent.mdc-drawer--open {
    width: 240px;
    pointer-events: auto; }
    .mdc-drawer--persistent.mdc-drawer--open .mdc-drawer__drawer {
      -webkit-transform: none;
              transform: none; }
    [dir="rtl"] .mdc-drawer--persistent.mdc-drawer--open .mdc-drawer__drawer, .mdc-drawer--persistent.mdc-drawer--open[dir="rtl"] .mdc-drawer__drawer {
      -webkit-transform: none;
              transform: none; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-drawer--permanent {
  /* Use aspect ratio trick to maintain 16:9 aspect ratio on the header */
  color: rgba(0, 0, 0, 0.87);
  border-left: 0;
  border-right: 1px solid #e4e4e4;
  left: 0;
  right: initial;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 240px;
  overflow: hidden; }
  .mdc-drawer--permanent .mdc-drawer__toolbar-spacer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 56px;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    /* TODO(sgomes): replace with global breakpoints when we have them */ }
    @media (min-width: 600px) {
      .mdc-drawer--permanent .mdc-drawer__toolbar-spacer {
        height: 64px; } }
  .mdc-drawer--permanent .mdc-drawer__header {
    position: relative; }
  .mdc-drawer--permanent .mdc-drawer__header::before {
    display: block;
    padding-top: 56.25%;
    content: ""; }
  .mdc-drawer--permanent .mdc-drawer__header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 16px; }
  .mdc-drawer--permanent .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none; }
  .mdc-drawer--permanent .mdc-list-item__graphic {
    color: rgba(0, 0, 0, 0.54); }
  .mdc-drawer--permanent.mdc-drawer--permanent,
  .mdc-drawer--permanent .mdc-drawer__drawer {
    background-color: #fff; }
  [dir="rtl"] .mdc-drawer--permanent, .mdc-drawer--permanent[dir="rtl"] {
    border-left: 1px solid #e4e4e4;
    border-right: 0; }
  [dir="rtl"] .mdc-drawer--permanent, .mdc-drawer--permanent[dir="rtl"] {
    left: initial;
    right: 0; }
  .mdc-drawer--permanent--floating {
    border-left: 0;
    border-right: none;
    background: none; }
    [dir="rtl"] .mdc-drawer--permanent--floating, .mdc-drawer--permanent--floating[dir="rtl"] {
      border-left: none;
      border-right: 0; }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-drawer--temporary {
  /* Use aspect ratio trick to maintain 16:9 aspect ratio on the header */
  color: rgba(0, 0, 0, 0.87);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
  z-index: 5;
  /* Shaded background */ }
  .mdc-drawer--temporary .mdc-drawer__toolbar-spacer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 56px;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    /* TODO(sgomes): replace with global breakpoints when we have them */ }
    @media (min-width: 600px) {
      .mdc-drawer--temporary .mdc-drawer__toolbar-spacer {
        height: 64px; } }
  .mdc-drawer--temporary .mdc-drawer__header {
    position: relative; }
  .mdc-drawer--temporary .mdc-drawer__header::before {
    display: block;
    padding-top: 56.25%;
    content: ""; }
  .mdc-drawer--temporary .mdc-drawer__header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 16px; }
  .mdc-drawer--temporary .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none; }
  .mdc-drawer--temporary .mdc-list-item__graphic {
    color: rgba(0, 0, 0, 0.54); }
  .mdc-drawer--temporary.mdc-drawer--permanent,
  .mdc-drawer--temporary .mdc-drawer__drawer {
    background-color: #fff; }
  .mdc-drawer--temporary::before {
    background-color: rgba(0, 0, 0, 0.6); }
  .mdc-drawer--temporary::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    opacity: 0;
    opacity: var(--mdc-temporary-drawer-opacity, 0);
    content: "";
    will-change: opacity; }
  .mdc-drawer--temporary .mdc-drawer__drawer {
    -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
    left: 0;
    right: initial;
    height: 100%;
    -webkit-transform: translateX(-107%);
            transform: translateX(-107%);
    -webkit-transform: translateX(calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
    will-change: transform;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: calc(100% - 56px);
    max-width: 280px;
    overflow: hidden;
    -ms-touch-action: none;
        touch-action: none;
    /* TODO(sgomes): replace with global breakpoints when we have them */ }
    [dir="rtl"] .mdc-drawer--temporary .mdc-drawer__drawer, .mdc-drawer--temporary .mdc-drawer__drawer[dir="rtl"] {
      left: initial;
      right: 0; }
    [dir="rtl"] .mdc-drawer--temporary .mdc-drawer__drawer, .mdc-drawer--temporary .mdc-drawer__drawer[dir="rtl"] {
      -webkit-transform: translateX(107%);
              transform: translateX(107%);
      -webkit-transform: translateX(calc(100% + 20px));
              transform: translateX(calc(100% + 20px)); }
    @media (min-width: 600px) {
      .mdc-drawer--temporary .mdc-drawer__drawer {
        width: calc(100% - 64px);
        max-width: 320px; } }
  .mdc-drawer--temporary .mdc-drawer__content {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: pan-y;
        touch-action: pan-y; }
  .mdc-drawer--temporary .mdc-drawer__footer {
    -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .mdc-drawer--temporary.mdc-drawer--animating::before {
    -webkit-transition: opacity 0.3s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.3s 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-drawer--temporary.mdc-drawer--animating.mdc-drawer--open .mdc-drawer__drawer {
    -webkit-transition: -webkit-transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: -webkit-transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.225s 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-drawer--temporary.mdc-drawer--animating .mdc-drawer__drawer {
    -webkit-transition: -webkit-transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: -webkit-transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 0.195s 0ms cubic-bezier(0.4, 0, 0.6, 1); }
  .mdc-drawer--temporary.mdc-drawer--open {
    pointer-events: auto; }
    .mdc-drawer--temporary.mdc-drawer--open::before {
      opacity: 1;
      opacity: var(--mdc-temporary-drawer-opacity, 1); }
    .mdc-drawer--temporary.mdc-drawer--open .mdc-drawer__drawer {
      -webkit-transform: none;
              transform: none; }
    [dir="rtl"] .mdc-drawer--temporary.mdc-drawer--open .mdc-drawer__drawer, .mdc-drawer--temporary.mdc-drawer--open[dir="rtl"] .mdc-drawer__drawer {
      -webkit-transform: none;
              transform: none; }

.mdc-drawer-scroll-lock {
  overflow: hidden; }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
.mdc-elevation--z0 {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z1 {
  -webkit-box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z2 {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z3 {
  -webkit-box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z4 {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z5 {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z6 {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z7 {
  -webkit-box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z8 {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z9 {
  -webkit-box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z10 {
  -webkit-box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z11 {
  -webkit-box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z12 {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z13 {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z14 {
  -webkit-box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z15 {
  -webkit-box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z16 {
  -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z17 {
  -webkit-box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z18 {
  -webkit-box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z19 {
  -webkit-box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z20 {
  -webkit-box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z21 {
  -webkit-box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z22 {
  -webkit-box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z23 {
  -webkit-box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12); }

.mdc-elevation--z24 {
  -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); }

.mdc-elevation-transition {
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow; }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
.mdc-fab {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  -webkit-transition: opacity 15ms linear 30ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 15ms linear 30ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  border: none;
  border-radius: 50%;
  fill: currentColor;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  /* @alternate */
  background-color: #018786;
  /* @alternate */
  color: white;
  color: var(--mdc-theme-text-primary-on-secondary, white); }
  .mdc-fab::before, .mdc-fab::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-fab::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-fab.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-fab.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-fab.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-fab.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-fab.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-fab::before, .mdc-fab::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-fab.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-fab::-moz-focus-inner {
    padding: 0;
    border: 0; }
  .mdc-fab:hover, .mdc-fab:focus {
    -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
  .mdc-fab:active {
    -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }
  .mdc-fab:active, .mdc-fab:focus {
    outline: none; }
  .mdc-fab:hover {
    cursor: pointer; }
  .mdc-fab > svg {
    width: 100%; }
  @supports not (-ms-ime-align: auto) {
    .mdc-fab {
      background-color: var(--mdc-theme-secondary, #018786); } }
  .mdc-fab::before, .mdc-fab::after {
    /* @alternate */
    background-color: white; }
    @supports not (-ms-ime-align: auto) {
      .mdc-fab::before, .mdc-fab::after {
        background-color: var(--mdc-theme-text-primary-on-secondary, white); } }
  .mdc-fab:hover::before {
    opacity: 0.08; }
  .mdc-fab:not(.mdc-ripple-upgraded):focus::before, .mdc-fab.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.24; }
  .mdc-fab:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-fab:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.32; }
  .mdc-fab.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32; }

.mdc-fab--mini {
  width: 40px;
  height: 40px; }

.mdc-fab__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  will-change: transform; }

.mdc-fab--exited {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  opacity: 0; }
  .mdc-fab--exited .mdc-fab__icon {
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
    transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
    transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
    transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1); }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* stylelint-disable selector-max-type */
.mdc-form-field {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  /* @alternate */
  color: rgba(0, 0, 0, 0.87);
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle; }
  .mdc-form-field > label {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-right: auto;
    padding-left: 4px; }
  [dir="rtl"] .mdc-form-field > label, .mdc-form-field[dir="rtl"] > label {
    margin-left: auto;
    padding-right: 4px; }

.mdc-form-field--align-end > label {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: auto;
  padding-right: 4px; }

[dir="rtl"] .mdc-form-field--align-end > label, .mdc-form-field--align-end[dir="rtl"] > label {
  margin-right: auto;
  padding-left: 4px; }

/* stylelint-enable selector-max-type */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-grid-tile__primary {
  padding-bottom: calc(100% / 1); }

.mdc-grid-tile {
  margin: 2px 0;
  padding: 0 2px; }

.mdc-grid-tile__secondary {
  left: 2px;
  width: calc(100% - 4px); }

.mdc-grid-list__tiles {
  margin: 2px auto; }

.mdc-grid-list__tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0; }

.mdc-grid-list--tile-gutter-1 .mdc-grid-tile {
  margin: 0.5px 0;
  padding: 0 0.5px; }

.mdc-grid-list--tile-gutter-1 .mdc-grid-tile__secondary {
  left: 0.5px;
  width: calc(100% - 1px); }

.mdc-grid-list--tile-gutter-1 .mdc-grid-list__tiles {
  margin: 0.5px auto; }

.mdc-grid-list--tile-aspect-16x9 .mdc-grid-tile__primary {
  padding-bottom: calc(100% / 1.77778); }

.mdc-grid-list--tile-aspect-3x2 .mdc-grid-tile__primary {
  padding-bottom: calc(100% / 1.5); }

.mdc-grid-list--tile-aspect-2x3 .mdc-grid-tile__primary {
  padding-bottom: calc(100% / 0.66667); }

.mdc-grid-list--tile-aspect-4x3 .mdc-grid-tile__primary {
  padding-bottom: calc(100% / 1.33333); }

.mdc-grid-list--tile-aspect-3x4 .mdc-grid-tile__primary {
  padding-bottom: calc(100% / 0.75); }

.mdc-grid-tile {
  display: block;
  position: relative;
  /* @alternate */
  width: 200px;
  width: var(--mdc-grid-list-tile-width, 200px); }

.mdc-grid-tile__primary {
  /* @alternate */
  background-color: #fff;
  background-color: var(--mdc-theme-background, #fff);
  /* @alternate */
  color: rgba(0, 0, 0, 0.87);
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
  position: relative;
  height: 0; }

.mdc-grid-tile__primary-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.mdc-grid-tile__secondary {
  /* @alternate */
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
  /* @alternate */
  color: white;
  color: var(--mdc-theme-text-primary-on-primary, white);
  position: absolute;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  padding: 16px; }

.mdc-grid-tile__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem; }

.mdc-grid-tile__support-text {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin: 0;
  margin-top: 4px;
  padding: 0; }

.mdc-grid-tile__icon {
  position: absolute;
  top: calc(50% - 24px / 2);
  font-size: 0; }

.mdc-grid-list--twoline-caption .mdc-grid-tile__secondary {
  height: 68px; }

.mdc-grid-list--header-caption .mdc-grid-tile__secondary {
  top: 0;
  bottom: auto; }

.mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary {
  padding-left: 56px;
  padding-right: 8px; }
  .mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary,
  [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary {
    padding-left: 8px;
    padding-right: 56px; }

.mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon {
  left: 16px;
  right: initial;
  font-size: 24px; }
  .mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon,
  [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon {
    left: initial;
    right: 16px; }

.mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary {
  padding-left: 16px;
  padding-right: 56px; }
  .mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary,
  [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary {
    padding-left: 56px;
    padding-right: 16px; }

.mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon {
  left: initial;
  right: 16px;
  font-size: 24px; }
  .mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon,
  [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon {
    left: 16px;
    right: initial; }

/** postcss-bem-linter: define icon-toggle */
.mdc-icon-toggle {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  /* @alternate */
  color: rgba(0, 0, 0, 0.87);
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding: 12px;
  outline: none;
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  will-change: initial; }
  .mdc-icon-toggle::before, .mdc-icon-toggle::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-icon-toggle::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-icon-toggle.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-icon-toggle.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-icon-toggle.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-icon-toggle.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-icon-toggle.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-icon-toggle::before, .mdc-icon-toggle::after {
    top: calc(50% - 50%);
    left: calc(50% - 50%);
    width: 100%;
    height: 100%; }
  .mdc-icon-toggle.mdc-ripple-upgraded::before, .mdc-icon-toggle.mdc-ripple-upgraded::after {
    top: var(--mdc-ripple-top, calc(50% - 50%));
    left: var(--mdc-ripple-left, calc(50% - 50%));
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-icon-toggle.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-icon-toggle::before, .mdc-icon-toggle::after {
    background-color: black; }
  .mdc-icon-toggle:hover::before {
    opacity: 0.04; }
  .mdc-icon-toggle:not(.mdc-ripple-upgraded):focus::before, .mdc-icon-toggle.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-icon-toggle:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-icon-toggle:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-icon-toggle.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-icon-toggle::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }

.mdc-icon-toggle--disabled {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38);
  color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
  pointer-events: none; }

/** postcss-bem-linter: end */
:root {
  --mdc-layout-grid-margin-desktop: 24px;
  --mdc-layout-grid-gutter-desktop: 24px;
  --mdc-layout-grid-column-width-desktop: 72px;
  --mdc-layout-grid-margin-tablet: 16px;
  --mdc-layout-grid-gutter-tablet: 16px;
  --mdc-layout-grid-column-width-tablet: 72px;
  --mdc-layout-grid-margin-phone: 16px;
  --mdc-layout-grid-gutter-phone: 16px;
  --mdc-layout-grid-column-width-phone: 72px; }

@media (min-width: 840px) {
  .mdc-layout-grid {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    padding: 24px;
    padding: var(--mdc-layout-grid-margin-desktop, 24px); } }

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    padding: 16px;
    padding: var(--mdc-layout-grid-margin-tablet, 16px); } }

@media (max-width: 479px) {
  .mdc-layout-grid {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    padding: 16px;
    padding: var(--mdc-layout-grid-margin-phone, 16px); } }

@media (min-width: 840px) {
  .mdc-layout-grid__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: -12px;
    margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2 * -1); }
    @supports (display: grid) {
      .mdc-layout-grid__inner {
        display: grid;
        margin: 0;
        grid-gap: 24px;
        grid-gap: var(--mdc-layout-grid-gutter-desktop, 24px);
        grid-template-columns: repeat(12, minmax(0, 1fr)); } } }

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: -8px;
    margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2 * -1); }
    @supports (display: grid) {
      .mdc-layout-grid__inner {
        display: grid;
        margin: 0;
        grid-gap: 16px;
        grid-gap: var(--mdc-layout-grid-gutter-tablet, 16px);
        grid-template-columns: repeat(8, minmax(0, 1fr)); } } }

@media (max-width: 479px) {
  .mdc-layout-grid__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: -8px;
    margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2 * -1); }
    @supports (display: grid) {
      .mdc-layout-grid__inner {
        display: grid;
        margin: 0;
        grid-gap: 16px;
        grid-gap: var(--mdc-layout-grid-gutter-phone, 16px);
        grid-template-columns: repeat(4, minmax(0, 1fr)); } } }

@media (min-width: 840px) {
  .mdc-layout-grid__cell {
    width: calc(33.33333% - 24px);
    width: calc(33.33333% - var(--mdc-layout-grid-gutter-desktop, 24px));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 12px;
    margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2); }
    @supports (display: grid) {
      .mdc-layout-grid__cell {
        width: auto;
        grid-column-end: span 4; } }
    @supports (display: grid) {
      .mdc-layout-grid__cell {
        margin: 0; } }
    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-desktop {
      width: calc(8.33333% - 24px);
      width: calc(8.33333% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-desktop {
          width: auto;
          grid-column-end: span 1; } }
    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-desktop {
      width: calc(16.66667% - 24px);
      width: calc(16.66667% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-desktop {
          width: auto;
          grid-column-end: span 2; } }
    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
      width: calc(25% - 24px);
      width: calc(25% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
          width: auto;
          grid-column-end: span 3; } }
    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-desktop {
      width: calc(33.33333% - 24px);
      width: calc(33.33333% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-desktop {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-desktop {
      width: calc(41.66667% - 24px);
      width: calc(41.66667% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-desktop {
          width: auto;
          grid-column-end: span 5; } }
    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-desktop {
      width: calc(50% - 24px);
      width: calc(50% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-desktop {
          width: auto;
          grid-column-end: span 6; } }
    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-desktop {
      width: calc(58.33333% - 24px);
      width: calc(58.33333% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-desktop {
          width: auto;
          grid-column-end: span 7; } }
    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-desktop {
      width: calc(66.66667% - 24px);
      width: calc(66.66667% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-desktop {
          width: auto;
          grid-column-end: span 8; } }
    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-desktop {
      width: calc(75% - 24px);
      width: calc(75% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-desktop {
          width: auto;
          grid-column-end: span 9; } }
    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-desktop {
      width: calc(83.33333% - 24px);
      width: calc(83.33333% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-desktop {
          width: auto;
          grid-column-end: span 10; } }
    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-desktop {
      width: calc(91.66667% - 24px);
      width: calc(91.66667% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-desktop {
          width: auto;
          grid-column-end: span 11; } }
    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-desktop {
      width: calc(100% - 24px);
      width: calc(100% - var(--mdc-layout-grid-gutter-desktop, 24px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-desktop {
          width: auto;
          grid-column-end: span 12; } } }

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid__cell {
    width: calc(50% - 16px);
    width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 16px));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 8px;
    margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2); }
    @supports (display: grid) {
      .mdc-layout-grid__cell {
        width: auto;
        grid-column-end: span 4; } }
    @supports (display: grid) {
      .mdc-layout-grid__cell {
        margin: 0; } }
    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-tablet {
      width: calc(12.5% - 16px);
      width: calc(12.5% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-tablet {
          width: auto;
          grid-column-end: span 1; } }
    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-tablet {
      width: calc(25% - 16px);
      width: calc(25% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-tablet {
          width: auto;
          grid-column-end: span 2; } }
    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-tablet {
      width: calc(37.5% - 16px);
      width: calc(37.5% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-tablet {
          width: auto;
          grid-column-end: span 3; } }
    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-tablet {
      width: calc(50% - 16px);
      width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-tablet {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-tablet {
      width: calc(62.5% - 16px);
      width: calc(62.5% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-tablet {
          width: auto;
          grid-column-end: span 5; } }
    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-tablet {
      width: calc(75% - 16px);
      width: calc(75% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-tablet {
          width: auto;
          grid-column-end: span 6; } }
    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-tablet {
      width: calc(87.5% - 16px);
      width: calc(87.5% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-tablet {
          width: auto;
          grid-column-end: span 7; } }
    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-tablet {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-tablet {
          width: auto;
          grid-column-end: span 8; } }
    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-tablet {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-tablet {
          width: auto;
          grid-column-end: span 8; } }
    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-tablet {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-tablet {
          width: auto;
          grid-column-end: span 8; } }
    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-tablet {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-tablet {
          width: auto;
          grid-column-end: span 8; } }
    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-tablet {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-tablet {
          width: auto;
          grid-column-end: span 8; } } }

@media (max-width: 479px) {
  .mdc-layout-grid__cell {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 8px;
    margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2); }
    @supports (display: grid) {
      .mdc-layout-grid__cell {
        width: auto;
        grid-column-end: span 4; } }
    @supports (display: grid) {
      .mdc-layout-grid__cell {
        margin: 0; } }
    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-phone {
      width: calc(25% - 16px);
      width: calc(25% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-phone {
          width: auto;
          grid-column-end: span 1; } }
    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-phone {
      width: calc(50% - 16px);
      width: calc(50% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-phone {
          width: auto;
          grid-column-end: span 2; } }
    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-phone {
      width: calc(75% - 16px);
      width: calc(75% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-phone {
          width: auto;
          grid-column-end: span 3; } }
    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-phone {
          width: auto;
          grid-column-end: span 4; } }
    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-phone {
      width: calc(100% - 16px);
      width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px)); }
      @supports (display: grid) {
        .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-phone {
          width: auto;
          grid-column-end: span 4; } } }

.mdc-layout-grid__cell--order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

.mdc-layout-grid__cell--order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

.mdc-layout-grid__cell--order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3; }

.mdc-layout-grid__cell--order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4; }

.mdc-layout-grid__cell--order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5; }

.mdc-layout-grid__cell--order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6; }

.mdc-layout-grid__cell--order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7; }

.mdc-layout-grid__cell--order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8; }

.mdc-layout-grid__cell--order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9; }

.mdc-layout-grid__cell--order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10; }

.mdc-layout-grid__cell--order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11; }

.mdc-layout-grid__cell--order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12; }

.mdc-layout-grid__cell--align-top {
  -ms-flex-item-align: start;
      align-self: flex-start; }
  @supports (display: grid) {
    .mdc-layout-grid__cell--align-top {
      -ms-flex-item-align: start;
          align-self: start; } }

.mdc-layout-grid__cell--align-middle {
  -ms-flex-item-align: center;
      align-self: center; }

.mdc-layout-grid__cell--align-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end; }
  @supports (display: grid) {
    .mdc-layout-grid__cell--align-bottom {
      -ms-flex-item-align: end;
          align-self: end; } }

@media (min-width: 840px) {
  .mdc-layout-grid--fixed-column-width {
    width: 1176px;
    width: calc( var(--mdc-layout-grid-column-width-desktop, 72px) * 12 + var(--mdc-layout-grid-gutter-desktop, 24px) * 11 + var(--mdc-layout-grid-margin-desktop, 24px) * 2); } }

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid--fixed-column-width {
    width: 720px;
    width: calc( var(--mdc-layout-grid-column-width-tablet, 72px) * 8 + var(--mdc-layout-grid-gutter-tablet, 16px) * 7 + var(--mdc-layout-grid-margin-tablet, 16px) * 2); } }

@media (max-width: 479px) {
  .mdc-layout-grid--fixed-column-width {
    width: 368px;
    width: calc( var(--mdc-layout-grid-column-width-phone, 72px) * 4 + var(--mdc-layout-grid-gutter-phone, 16px) * 3 + var(--mdc-layout-grid-margin-phone, 16px) * 2); } }

.mdc-layout-grid--align-left {
  margin-right: auto;
  margin-left: 0; }

.mdc-layout-grid--align-right {
  margin-right: 0;
  margin-left: auto; }

@-webkit-keyframes primary-indeterminate-translate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  20% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  59.15% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(83.67142%);
            transform: translateX(83.67142%); }
  100% {
    -webkit-transform: translateX(200.61106%);
            transform: translateX(200.61106%); } }

@keyframes primary-indeterminate-translate {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  20% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  59.15% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(83.67142%);
            transform: translateX(83.67142%); }
  100% {
    -webkit-transform: translateX(200.61106%);
            transform: translateX(200.61106%); } }

@-webkit-keyframes primary-indeterminate-scale {
  0% {
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); }
  36.65% {
    -webkit-animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1);
            animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1);
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); }
  69.15% {
    -webkit-animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
            animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
    -webkit-transform: scaleX(0.66148);
            transform: scaleX(0.66148); }
  100% {
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); } }

@keyframes primary-indeterminate-scale {
  0% {
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); }
  36.65% {
    -webkit-animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1);
            animation-timing-function: cubic-bezier(0.33473, 0.12482, 0.78584, 1);
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); }
  69.15% {
    -webkit-animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
            animation-timing-function: cubic-bezier(0.06, 0.11, 0.6, 1);
    -webkit-transform: scaleX(0.66148);
            transform: scaleX(0.66148); }
  100% {
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); } }

@-webkit-keyframes secondary-indeterminate-translate {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
            animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
            animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
    -webkit-transform: translateX(37.65191%);
            transform: translateX(37.65191%); }
  48.35% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
            animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
    -webkit-transform: translateX(84.38617%);
            transform: translateX(84.38617%); }
  100% {
    -webkit-transform: translateX(160.27778%);
            transform: translateX(160.27778%); } }

@keyframes secondary-indeterminate-translate {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
            animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
            animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
    -webkit-transform: translateX(37.65191%);
            transform: translateX(37.65191%); }
  48.35% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
            animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
    -webkit-transform: translateX(84.38617%);
            transform: translateX(84.38617%); }
  100% {
    -webkit-transform: translateX(160.27778%);
            transform: translateX(160.27778%); } }

@-webkit-keyframes secondary-indeterminate-scale {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397);
            animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397);
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); }
  19.15% {
    -webkit-animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432);
            animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432);
    -webkit-transform: scaleX(0.4571);
            transform: scaleX(0.4571); }
  44.15% {
    -webkit-animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179);
            animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179);
    -webkit-transform: scaleX(0.72796);
            transform: scaleX(0.72796); }
  100% {
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); } }

@keyframes secondary-indeterminate-scale {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397);
            animation-timing-function: cubic-bezier(0.20503, 0.05705, 0.57661, 0.45397);
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); }
  19.15% {
    -webkit-animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432);
            animation-timing-function: cubic-bezier(0.15231, 0.19643, 0.64837, 1.00432);
    -webkit-transform: scaleX(0.4571);
            transform: scaleX(0.4571); }
  44.15% {
    -webkit-animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179);
            animation-timing-function: cubic-bezier(0.25776, -0.00316, 0.21176, 1.38179);
    -webkit-transform: scaleX(0.72796);
            transform: scaleX(0.72796); }
  100% {
    -webkit-transform: scaleX(0.08);
            transform: scaleX(0.08); } }

@-webkit-keyframes buffering {
  to {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); } }

@keyframes buffering {
  to {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); } }

@-webkit-keyframes primary-indeterminate-translate-reverse {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  20% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  59.15% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-83.67142%);
            transform: translateX(-83.67142%); }
  100% {
    -webkit-transform: translateX(-200.61106%);
            transform: translateX(-200.61106%); } }

@keyframes primary-indeterminate-translate-reverse {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  20% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  59.15% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-83.67142%);
            transform: translateX(-83.67142%); }
  100% {
    -webkit-transform: translateX(-200.61106%);
            transform: translateX(-200.61106%); } }

@-webkit-keyframes secondary-indeterminate-translate-reverse {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
            animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
            animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
    -webkit-transform: translateX(-37.65191%);
            transform: translateX(-37.65191%); }
  48.35% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
            animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
    -webkit-transform: translateX(-84.38617%);
            transform: translateX(-84.38617%); }
  100% {
    -webkit-transform: translateX(-160.27778%);
            transform: translateX(-160.27778%); } }

@keyframes secondary-indeterminate-translate-reverse {
  0% {
    -webkit-animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
            animation-timing-function: cubic-bezier(0.15, 0, 0.51506, 0.40969);
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  25% {
    -webkit-animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
            animation-timing-function: cubic-bezier(0.31033, 0.28406, 0.8, 0.73371);
    -webkit-transform: translateX(-37.65191%);
            transform: translateX(-37.65191%); }
  48.35% {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
            animation-timing-function: cubic-bezier(0.4, 0.62704, 0.6, 0.90203);
    -webkit-transform: translateX(-84.38617%);
            transform: translateX(-84.38617%); }
  100% {
    -webkit-transform: translateX(-160.27778%);
            transform: translateX(-160.27778%); } }

@-webkit-keyframes buffering-reverse {
  to {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); } }

@keyframes buffering-reverse {
  to {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); } }

.mdc-linear-progress {
  position: relative;
  width: 100%;
  height: 4px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  overflow: hidden; }
  .mdc-linear-progress__bar {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: none;
            animation: none;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transition: -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1); }
  .mdc-linear-progress__bar-inner {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: none;
            animation: none; }
  .mdc-linear-progress__buffering-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: buffering 250ms infinite linear;
            animation: buffering 250ms infinite linear;
    background-repeat: repeat-x;
    background-size: 10px 4px; }
  .mdc-linear-progress__buffer {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transition: -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1); }
  .mdc-linear-progress__primary-bar {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); }
  .mdc-linear-progress__secondary-bar {
    visibility: hidden; }
  .mdc-linear-progress--indeterminate .mdc-linear-progress__bar {
    -webkit-transition: none;
    transition: none; }
  .mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar {
    left: -145.166611%;
    -webkit-animation: primary-indeterminate-translate 2s infinite linear;
            animation: primary-indeterminate-translate 2s infinite linear; }
    .mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar > .mdc-linear-progress__bar-inner {
      -webkit-animation: primary-indeterminate-scale 2s infinite linear;
              animation: primary-indeterminate-scale 2s infinite linear; }
  .mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar {
    left: -54.888891%;
    -webkit-animation: secondary-indeterminate-translate 2s infinite linear;
            animation: secondary-indeterminate-translate 2s infinite linear;
    visibility: visible; }
    .mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar > .mdc-linear-progress__bar-inner {
      -webkit-animation: secondary-indeterminate-scale 2s infinite linear;
              animation: secondary-indeterminate-scale 2s infinite linear; }
  .mdc-linear-progress--reversed .mdc-linear-progress__bar,
  .mdc-linear-progress--reversed .mdc-linear-progress__buffer {
    right: 0;
    -webkit-transform-origin: center right;
            transform-origin: center right; }
  .mdc-linear-progress--reversed .mdc-linear-progress__primary-bar {
    -webkit-animation-name: primary-indeterminate-translate-reverse;
            animation-name: primary-indeterminate-translate-reverse; }
  .mdc-linear-progress--reversed .mdc-linear-progress__secondary-bar {
    -webkit-animation-name: secondary-indeterminate-translate-reverse;
            animation-name: secondary-indeterminate-translate-reverse; }
  .mdc-linear-progress--reversed .mdc-linear-progress__buffering-dots {
    -webkit-animation: buffering-reverse 250ms infinite linear;
            animation: buffering-reverse 250ms infinite linear; }
  .mdc-linear-progress--closed {
    opacity: 0; }

.mdc-linear-progress__bar-inner {
  /* @alternate */
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee); }

.mdc-linear-progress__buffering-dots {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23e6e6e6'/%3E%3C/svg%3E"); }

.mdc-linear-progress__buffer {
  background-color: #e6e6e6; }

.mdc-linear-progress--indeterminate.mdc-linear-progress--reversed .mdc-linear-progress__primary-bar {
  right: -145.166611%;
  left: auto; }

.mdc-linear-progress--indeterminate.mdc-linear-progress--reversed .mdc-linear-progress__secondary-bar {
  right: -54.888891%;
  left: auto; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-list {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  /* @alternate */
  color: rgba(0, 0, 0, 0.87);
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
  margin: 0;
  padding: 8px 0;
  line-height: 1.5rem;
  list-style-type: none; }

.mdc-list-item__secondary-text {
  /* @alternate */
  color: rgba(0, 0, 0, 0.54);
  color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }

.mdc-list-item__graphic {
  background-color: transparent; }

.mdc-list-item__graphic {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38);
  color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38)); }

.mdc-list-item__meta {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38);
  color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)); }

.mdc-list--dense {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: .812rem; }

.mdc-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 48px;
  padding: 0 16px;
  overflow: hidden; }
  .mdc-list-item:focus {
    outline: none; }

.mdc-list-item--selected,
.mdc-list-item--activated {
  /* @alternate */
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee); }
  .mdc-list-item--selected .mdc-list-item__graphic,
  .mdc-list-item--activated .mdc-list-item__graphic {
    /* @alternate */
    color: #6200ee;
    color: var(--mdc-theme-primary, #6200ee); }

.mdc-list-item__graphic {
  margin-left: 0;
  margin-right: 32px;
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .mdc-list-item[dir="rtl"] .mdc-list-item__graphic,
  [dir="rtl"] .mdc-list-item .mdc-list-item__graphic {
    margin-left: 32px;
    margin-right: 0; }

.mdc-list-item__meta {
  margin-left: auto;
  margin-right: 0; }
  .mdc-list-item[dir="rtl"] .mdc-list-item__meta,
  [dir="rtl"] .mdc-list-item .mdc-list-item__meta {
    margin-left: 0;
    margin-right: auto; }

.mdc-list-item__text,
.mdc-list-item__secondary-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block; }

.mdc-list-item__secondary-text {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-list--dense .mdc-list-item__secondary-text {
  font-size: inherit; }

.mdc-list--dense .mdc-list-item {
  height: 40px; }

.mdc-list--dense .mdc-list-item__graphic {
  margin-left: 0;
  margin-right: 36px;
  width: 20px;
  height: 20px; }
  .mdc-list-item[dir="rtl"] .mdc-list--dense .mdc-list-item__graphic,
  [dir="rtl"] .mdc-list-item .mdc-list--dense .mdc-list-item__graphic {
    margin-left: 36px;
    margin-right: 0; }

.mdc-list--avatar-list .mdc-list-item {
  height: 56px; }

.mdc-list--avatar-list .mdc-list-item__graphic {
  margin-left: 0;
  margin-right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%; }
  .mdc-list-item[dir="rtl"] .mdc-list--avatar-list .mdc-list-item__graphic,
  [dir="rtl"] .mdc-list-item .mdc-list--avatar-list .mdc-list-item__graphic {
    margin-left: 16px;
    margin-right: 0; }

:not(.mdc-list--non-interactive) > .mdc-list-item {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity; }
  :not(.mdc-list--non-interactive) > .mdc-list-item::before, :not(.mdc-list--non-interactive) > .mdc-list-item::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  :not(.mdc-list--non-interactive) > .mdc-list-item::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  :not(.mdc-list--non-interactive) > .mdc-list-item::before, :not(.mdc-list--non-interactive) > .mdc-list-item::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  :not(.mdc-list--non-interactive) > .mdc-list-item::before, :not(.mdc-list--non-interactive) > .mdc-list-item::after {
    background-color: black; }
  :not(.mdc-list--non-interactive) > .mdc-list-item:hover::before {
    opacity: 0.04; }
  :not(.mdc-list--non-interactive) > .mdc-list-item:not(.mdc-ripple-upgraded):focus::before, :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  :not(.mdc-list--non-interactive) > .mdc-list-item:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  :not(.mdc-list--non-interactive) > .mdc-list-item:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  :not(.mdc-list--non-interactive) > .mdc-list-item.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated::before {
    opacity: 0.12; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated::before, :not(.mdc-list--non-interactive) > .mdc-list-item--activated::after {
    /* @alternate */
    background-color: #6200ee; }
    @supports not (-ms-ime-align: auto) {
      :not(.mdc-list--non-interactive) > .mdc-list-item--activated::before, :not(.mdc-list--non-interactive) > .mdc-list-item--activated::after {
        background-color: var(--mdc-theme-primary, #6200ee); } }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated:hover::before {
    opacity: 0.16; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated:not(.mdc-ripple-upgraded):focus::before, :not(.mdc-list--non-interactive) > .mdc-list-item--activated.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.24; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.28; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--activated.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.28; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected::before {
    opacity: 0.04; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected::before, :not(.mdc-list--non-interactive) > .mdc-list-item--selected::after {
    /* @alternate */
    background-color: #6200ee; }
    @supports not (-ms-ime-align: auto) {
      :not(.mdc-list--non-interactive) > .mdc-list-item--selected::before, :not(.mdc-list--non-interactive) > .mdc-list-item--selected::after {
        background-color: var(--mdc-theme-primary, #6200ee); } }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected:hover::before {
    opacity: 0.08; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected:not(.mdc-ripple-upgraded):focus::before, :not(.mdc-list--non-interactive) > .mdc-list-item--selected.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.2; }
  :not(.mdc-list--non-interactive) > .mdc-list-item--selected.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.2; }

.mdc-list--two-line .mdc-list-item {
  height: 72px; }

.mdc-list--two-line.mdc-list--dense .mdc-list-item {
  height: 60px; }

.mdc-list--avatar-list.mdc-list--dense .mdc-list-item {
  height: 48px; }

.mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
  margin-left: 0;
  margin-right: 20px;
  width: 36px;
  height: 36px; }
  .mdc-list-item[dir="rtl"] .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic,
  [dir="rtl"] .mdc-list-item .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
    margin-left: 20px;
    margin-right: 0; }

a.mdc-list-item {
  color: inherit;
  text-decoration: none; }

.mdc-list-divider {
  height: 0;
  margin: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid; }

.mdc-list-divider {
  border-bottom-color: rgba(0, 0, 0, 0.12); }

.mdc-list-divider--padded {
  margin: 0 16px; }

.mdc-list-divider--inset {
  margin-left: 72px;
  margin-right: 0;
  width: calc(100% - 72px); }
  .mdc-list-group[dir="rtl"] .mdc-list-divider--inset,
  [dir="rtl"] .mdc-list-group .mdc-list-divider--inset {
    margin-left: 0;
    margin-right: 72px; }

.mdc-list-divider--inset.mdc-list-divider--padded {
  width: calc(100% - 72px - 16px); }

.mdc-list-group .mdc-list {
  padding: 0; }

.mdc-list-group__subheader {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0.75rem 16px; }

.mdc-list-group__subheader {
  /* @alternate */
  color: rgba(0, 0, 0, 0.87);
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-menu {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  display: none;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 170px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  margin: 0;
  padding: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  border-radius: 2px;
  background-color: #fff;
  opacity: 0;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  will-change: transform, opacity;
  z-index: 4; }
  .mdc-menu:focus {
    outline: none; }
  .mdc-menu--animating-open {
    display: inline-block;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition: opacity 0.03s linear, -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.03s linear, -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.03s linear, transform 0.12s cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 0.03s linear, transform 0.12s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.12s cubic-bezier(0, 0, 0.2, 1);
    opacity: 0;
    overflow-y: hidden; }
  .mdc-menu--open {
    display: inline-block;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  .mdc-menu--animating-closed {
    display: inline-block;
    -webkit-transition: opacity 0.075s linear;
    transition: opacity 0.075s linear;
    opacity: 0;
    overflow-y: hidden; }
  .mdc-menu__items {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: scale(1);
            transform: scale(1);
    overflow-x: hidden;
    overflow-y: auto;
    will-change: transform; }
    .mdc-menu__items > .mdc-list-item {
      cursor: pointer; }
    .mdc-menu--animating .mdc-menu__items {
      overflow-y: hidden; }
  .mdc-menu--animating-open > .mdc-menu__items {
    -webkit-transform: scale(1.25);
            transform: scale(1.25); }
  .mdc-menu--open > .mdc-menu__items {
    -webkit-transform: scale(1);
            transform: scale(1); }
  [dir="rtl"] .mdc-menu {
    -webkit-transform-origin: top right;
            transform-origin: top right; }
  .mdc-menu .mdc-list-group,
  .mdc-menu .mdc-list {
    padding: 8px 0; }
  .mdc-menu .mdc-list-item {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    outline: none;
    color: inherit;
    text-decoration: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .mdc-menu .mdc-list-item__graphic {
    /* @alternate */
    color: rgba(0, 0, 0, 0.54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }
  .mdc-menu .mdc-list-item[aria-disabled="true"] {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38));
    cursor: default;
    pointer-events: none; }
    .mdc-menu .mdc-list-item[aria-disabled="true"]:focus::before {
      opacity: 0; }

.mdc-menu-anchor {
  position: relative;
  overflow: visible; }

.mdc-radio {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  display: inline-block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  will-change: opacity, transform, border-color, background-color, color; }
  .mdc-radio .mdc-radio__native-control:enabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
    /* @alternate */
    border-color: rgba(0, 0, 0, 0.54);
    border-color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }
  .mdc-radio .mdc-radio__native-control:enabled:checked + .mdc-radio__background .mdc-radio__outer-circle {
    /* @alternate */
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786); }
  .mdc-radio .mdc-radio__native-control:enabled + .mdc-radio__background .mdc-radio__inner-circle {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-radio .mdc-radio__background::before {
    /* @alternate */
    background-color: #018786; }
    @supports not (-ms-ime-align: auto) {
      .mdc-radio .mdc-radio__background::before {
        background-color: var(--mdc-theme-secondary, #018786); } }
  .mdc-radio::before, .mdc-radio::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-radio::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-radio.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-radio.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-radio.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-radio.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-radio.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-radio::before, .mdc-radio::after {
    top: calc(50% - 50%);
    left: calc(50% - 50%);
    width: 100%;
    height: 100%; }
  .mdc-radio.mdc-ripple-upgraded::before, .mdc-radio.mdc-ripple-upgraded::after {
    top: var(--mdc-ripple-top, calc(50% - 50%));
    left: var(--mdc-ripple-left, calc(50% - 50%));
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-radio.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-radio::before, .mdc-radio::after {
    /* @alternate */
    background-color: #018786; }
    @supports not (-ms-ime-align: auto) {
      .mdc-radio::before, .mdc-radio::after {
        background-color: var(--mdc-theme-secondary, #018786); } }
  .mdc-radio:hover::before {
    opacity: 0.04; }
  .mdc-radio:not(.mdc-ripple-upgraded):focus::before, .mdc-radio.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-radio:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-radio:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-radio.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-radio__background {
    display: inline-block;
    position: absolute;
    left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 50%;
    height: 50%; }
    .mdc-radio__background::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-transform: scale(0, 0);
              transform: scale(0, 0);
      -webkit-transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
      transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
      transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
      transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
      content: ""; }
  .mdc-radio__outer-circle {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    -webkit-transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    border-width: 2px;
    border-style: solid;
    border-radius: 50%; }
  .mdc-radio__inner-circle {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    -webkit-transition: background-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: background-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), background-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), background-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    border-radius: 50%; }
  .mdc-radio__native-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
    z-index: 1; }
  .mdc-radio.mdc-ripple-upgraded .mdc-radio__background::before {
    content: none; }

.mdc-radio__native-control:checked + .mdc-radio__background,
.mdc-radio__native-control:disabled + .mdc-radio__background {
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle,
  .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle {
    -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle,
  .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
    -webkit-transition: background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }

.mdc-radio--disabled {
  cursor: default;
  pointer-events: none; }

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }

.mdc-radio__native-control:disabled + .mdc-radio__background,
[aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background {
  cursor: default; }
  .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle,
  [aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__outer-circle {
    border-color: rgba(0, 0, 0, 0.26); }
  .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle,
  [aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__inner-circle {
    background-color: rgba(0, 0, 0, 0.26); }

.mdc-radio__native-control:focus + .mdc-radio__background::before {
  -webkit-transform: scale(2, 2);
          transform: scale(2, 2);
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: .26; }

.mdc-ripple-surface {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  position: relative;
  outline: none;
  overflow: hidden; }
  .mdc-ripple-surface::before, .mdc-ripple-surface::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-ripple-surface::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-ripple-surface.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-ripple-surface.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-ripple-surface.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-ripple-surface::before, .mdc-ripple-surface::after {
    background-color: black; }
  .mdc-ripple-surface:hover::before {
    opacity: 0.04; }
  .mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before, .mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-ripple-surface:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-ripple-surface.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-ripple-surface::before, .mdc-ripple-surface::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-ripple-surface.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-ripple-surface[data-mdc-ripple-is-unbounded] {
    overflow: visible; }
    .mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before, .mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after {
      top: calc(50% - 50%);
      left: calc(50% - 50%);
      width: 100%;
      height: 100%; }
    .mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before, .mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
      top: var(--mdc-ripple-top, calc(50% - 50%));
      left: var(--mdc-ripple-left, calc(50% - 50%));
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
    .mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after {
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-ripple-surface--primary::before, .mdc-ripple-surface--primary::after {
    /* @alternate */
    background-color: #6200ee; }
    @supports not (-ms-ime-align: auto) {
      .mdc-ripple-surface--primary::before, .mdc-ripple-surface--primary::after {
        background-color: var(--mdc-theme-primary, #6200ee); } }
  .mdc-ripple-surface--primary:hover::before {
    opacity: 0.04; }
  .mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus::before, .mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-ripple-surface--primary:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-ripple-surface--primary.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-ripple-surface--accent::before, .mdc-ripple-surface--accent::after {
    /* @alternate */
    background-color: #018786; }
    @supports not (-ms-ime-align: auto) {
      .mdc-ripple-surface--accent::before, .mdc-ripple-surface--accent::after {
        background-color: var(--mdc-theme-secondary, #018786); } }
  .mdc-ripple-surface--accent:hover::before {
    opacity: 0.04; }
  .mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus::before, .mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-ripple-surface--accent:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-ripple-surface--accent.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }

/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-select {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%230%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.54%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  border: none;
  outline: none;
  background-repeat: no-repeat;
  background-position: right 8px bottom 8px;
  cursor: pointer;
  overflow: visible; }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__surface,
  .mdc-select:not(.mdc-select--disabled) .mdc-select__selected-text {
    /* @alternate */
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)); }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__label {
    color: rgba(0, 0, 0, 0.6); }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__bottom-line {
    background-color: rgba(0, 0, 0, 0.5); }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__surface:focus .mdc-select__bottom-line {
    /* @alternate */
    background-color: #6200ee;
    background-color: var(--mdc-theme-primary, #6200ee); }
  .mdc-select:not(.mdc-select--disabled).mdc-select--open .mdc-select__bottom-line {
    /* @alternate */
    background-color: #6200ee;
    background-color: var(--mdc-theme-primary, #6200ee); }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__bottom-line::after {
    /* @alternate */
    background-color: #6200ee;
    background-color: var(--mdc-theme-primary, #6200ee); }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__surface:focus .mdc-select__label {
    /* @alternate */
    color: #6200ee;
    color: var(--mdc-theme-primary, #6200ee); }
  .mdc-select:not(.mdc-select--disabled) .mdc-select__surface:focus .mdc-select__label--float-above {
    opacity: 0.87; }
  [dir="rtl"] .mdc-select, .mdc-select[dir="rtl"] {
    background-position: left 8px bottom 8px; }
  .mdc-select__menu {
    position: fixed;
    top: 0;
    left: 0;
    max-height: 100%;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    z-index: 4; }
  .mdc-select__surface {
    padding-left: 0;
    padding-right: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    height: 48px;
    padding-bottom: 8px;
    border: none;
    outline: none;
    overflow: hidden; }
    [dir="rtl"] .mdc-select__surface, .mdc-select__surface[dir="rtl"] {
      padding-left: 26px;
      padding-right: 0; }
    .mdc-select__surface::before, .mdc-select__surface::after {
      background-color: black; }
    .mdc-select__surface:hover::before {
      opacity: 0.04; }
    .mdc-select__surface:not(.mdc-ripple-upgraded):focus::before, .mdc-select__surface.mdc-ripple-upgraded--background-focused::before {
      -webkit-transition-duration: 75ms;
              transition-duration: 75ms;
      opacity: 0.12; }
    .mdc-select__surface:not(.mdc-ripple-upgraded)::after {
      -webkit-transition: opacity 150ms linear;
      transition: opacity 150ms linear; }
    .mdc-select__surface:not(.mdc-ripple-upgraded):active::after {
      -webkit-transition-duration: 75ms;
              transition-duration: 75ms;
      opacity: 0.16; }
    .mdc-select__surface.mdc-ripple-upgraded {
      --mdc-ripple-fg-opacity: 0.16; }
  .mdc-select__label {
    left: 0;
    right: initial;
    position: absolute;
    bottom: 8px;
    left: 0;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: transform; }
    [dir="rtl"] .mdc-select__label, .mdc-select__label[dir="rtl"] {
      left: initial;
      right: 0; }
    .mdc-select[dir="rtl"] .mdc-select__label,
    [dir="rtl"] .mdc-select .mdc-select__label {
      -webkit-transform-origin: right top;
              transform-origin: right top; }
    .mdc-select__label--float-above {
      -webkit-transform: translateY(-100%) scale(0.75);
              transform: translateY(-100%) scale(0.75); }
  .mdc-select__selected-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 8px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-transition: opacity 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: opacity 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: opacity 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    transition: opacity 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 125ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
    white-space: nowrap;
    overflow: hidden; }
  .mdc-select__bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition: -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1); }
    .mdc-select__bottom-line::after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      -webkit-transform: scaleX(0);
              transform: scaleX(0);
      -webkit-transition: -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      content: "";
      z-index: 2; }
  .mdc-select__bottom-line--active::after {
    opacity: 1; }
  .mdc-select .mdc-select__surface:focus .mdc-select__bottom-line::after {
    -webkit-transform: scale(1, 2);
            transform: scale(1, 2);
    opacity: 1; }

.mdc-select--box {
  height: 56px;
  border-radius: 4px 4px 0 0;
  background-position: right 10px center; }
  .mdc-select--box:not(.mdc-select--disabled) .mdc-select__surface {
    background-color: rgba(0, 0, 0, 0.04); }
  [dir="rtl"] .mdc-select--box, .mdc-select--box[dir="rtl"] {
    background-position: left 10px center; }
  .mdc-select--box .mdc-select__surface {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    padding-left: 16px;
    padding-right: 26px;
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: transparent;
    will-change: transform, opacity;
    height: 56px;
    padding-bottom: 0;
    border-radius: 4px 4px 0 0; }
    [dir="rtl"] .mdc-select--box .mdc-select__surface, .mdc-select--box .mdc-select__surface[dir="rtl"] {
      padding-left: 26px;
      padding-right: 16px; }
    .mdc-select--box .mdc-select__surface::before, .mdc-select--box .mdc-select__surface::after {
      position: absolute;
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
      content: ""; }
    .mdc-select--box .mdc-select__surface::before {
      -webkit-transition: opacity 15ms linear;
      transition: opacity 15ms linear; }
    .mdc-select--box .mdc-select__surface.mdc-ripple-upgraded::before {
      -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
              transform: scale(var(--mdc-ripple-fg-scale, 1)); }
    .mdc-select--box .mdc-select__surface.mdc-ripple-upgraded::after {
      top: 0;
      left: 0;
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-transform-origin: center center;
              transform-origin: center center; }
    .mdc-select--box .mdc-select__surface.mdc-ripple-upgraded--unbounded::after {
      top: var(--mdc-ripple-top, 0);
      left: var(--mdc-ripple-left, 0); }
    .mdc-select--box .mdc-select__surface.mdc-ripple-upgraded--foreground-activation::after {
      -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
              animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
    .mdc-select--box .mdc-select__surface.mdc-ripple-upgraded--foreground-deactivation::after {
      -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
              animation: 150ms mdc-ripple-fg-opacity-out;
      -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
              transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
    .mdc-select--box .mdc-select__surface::before, .mdc-select--box .mdc-select__surface::after {
      top: calc(50% - 100%);
      left: calc(50% - 100%);
      width: 200%;
      height: 200%; }
    .mdc-select--box .mdc-select__surface.mdc-ripple-upgraded::after {
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-select--box .mdc-select__label {
    left: 16px;
    right: initial;
    bottom: 12px; }
    [dir="rtl"] .mdc-select--box .mdc-select__label, .mdc-select--box .mdc-select__label[dir="rtl"] {
      left: initial;
      right: 16px; }
    .mdc-select--box .mdc-select__label--float-above {
      -webkit-transform: translateY(-40%) scale(0.75, 0.75);
              transform: translateY(-40%) scale(0.75, 0.75); }
  .mdc-select--box .mdc-select__selected-text {
    position: inherit;
    bottom: 0;
    margin-bottom: 6px; }

.mdc-select--open .mdc-select__surface::before {
  opacity: 0.12; }

.mdc-select--open .mdc-select__selected-text {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 125ms 125ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 125ms 125ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 125ms 125ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 125ms 125ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 125ms 125ms cubic-bezier(0, 0, 0.2, 1), transform 125ms 125ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 125ms 125ms cubic-bezier(0, 0, 0.2, 1), transform 125ms 125ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 125ms 125ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 0; }

.mdc-select--open .mdc-select__bottom-line::after {
  -webkit-transform: scaleY(2);
          transform: scaleY(2);
  opacity: 1; }

.mdc-select--disabled {
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%230%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.38%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);
  border-bottom-width: 1px;
  border-bottom-style: dotted;
  opacity: .38;
  cursor: default;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .mdc-select--disabled .mdc-select__label {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)); }
  .mdc-select--disabled .mdc-select__bottom-line {
    display: none; }

.mdc-select-scroll-lock {
  overflow: hidden; }

/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
@-webkit-keyframes mdc-slider-emphasize {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  50% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.85);
            transform: scale(0.85); }
  100% {
    -webkit-transform: scale(0.571);
            transform: scale(0.571); } }
@keyframes mdc-slider-emphasize {
  0% {
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out; }
  50% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    -webkit-transform: scale(0.85);
            transform: scale(0.85); }
  100% {
    -webkit-transform: scale(0.571);
            transform: scale(0.571); } }

.mdc-slider {
  position: relative;
  width: 100%;
  height: 48px;
  cursor: pointer;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
  -webkit-tap-highlight-color: transparent; }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-container {
    background-color: rgba(1, 135, 134, 0.26); }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker::after,
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker-container::after {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__thumb {
    /* @alternate */
    fill: #018786;
    fill: var(--mdc-theme-secondary, #018786);
    /* @alternate */
    stroke: #018786;
    stroke: var(--mdc-theme-secondary, #018786); }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__focus-ring {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
    /* @alternate */
    color: white;
    color: var(--mdc-theme-text-primary-on-dark, white); }
  .mdc-slider--disabled {
    cursor: auto; }
    .mdc-slider--disabled .mdc-slider__track {
      background-color: #9a9a9a; }
    .mdc-slider--disabled .mdc-slider__track-container {
      background-color: rgba(154, 154, 154, 0.26); }
    .mdc-slider--disabled .mdc-slider__track-marker::after,
    .mdc-slider--disabled .mdc-slider__track-marker-container::after {
      background-color: #9a9a9a; }
    .mdc-slider--disabled .mdc-slider__thumb {
      fill: #9a9a9a;
      stroke: #9a9a9a; }
    .mdc-slider--disabled .mdc-slider__thumb {
      /* @alternate */
      stroke: white;
      stroke: var(--mdc-slider-bg-color-behind-component, white); }
  .mdc-slider:focus {
    outline: none; }
  .mdc-slider__track-container {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    overflow: hidden; }
  .mdc-slider__track {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    will-change: transform; }
    .mdc-slider[dir="rtl"] .mdc-slider__track,
    [dir="rtl"] .mdc-slider .mdc-slider__track {
      -webkit-transform-origin: right top;
              transform-origin: right top; }
  .mdc-slider__track-marker-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0;
    margin-left: -1px;
    visibility: hidden; }
    .mdc-slider[dir="rtl"] .mdc-slider__track-marker-container,
    [dir="rtl"] .mdc-slider .mdc-slider__track-marker-container {
      margin-right: -1px;
      margin-left: 0; }
    .mdc-slider__track-marker-container::after {
      display: block;
      width: 2px;
      height: 2px;
      content: ""; }
  .mdc-slider__track-marker {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .mdc-slider__track-marker::after {
      display: block;
      width: 2px;
      height: 2px;
      content: ""; }
    .mdc-slider__track-marker:first-child::after {
      width: 3px; }
  .mdc-slider__thumb-container {
    position: absolute;
    top: 15px;
    left: 0;
    width: 21px;
    height: 100%;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    will-change: transform; }
  .mdc-slider__thumb {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(0.571);
            transform: scale(0.571);
    -webkit-transition: fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out;
    transition: fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out;
    transition: transform 100ms ease-out, fill 100ms ease-out, stroke 100ms ease-out;
    transition: transform 100ms ease-out, fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out;
    stroke-width: 3.5; }
  .mdc-slider__focus-ring {
    width: 21px;
    height: 21px;
    -webkit-transition: opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out;
    transition: opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out;
    transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out;
    transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out;
    border-radius: 50%;
    opacity: 0; }
  .mdc-slider__pin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 26px;
    height: 26px;
    margin-top: -2px;
    margin-left: -2px;
    -webkit-transform: rotate(-45deg) scale(0) translate(0, 0);
            transform: rotate(-45deg) scale(0) translate(0, 0);
    -webkit-transition: -webkit-transform 100ms ease-out;
    transition: -webkit-transform 100ms ease-out;
    transition: transform 100ms ease-out;
    transition: transform 100ms ease-out, -webkit-transform 100ms ease-out;
    border-radius: 50% 50% 50% 0%;
    /**
     * Ensuring that the pin is higher than the thumb in the stacking order
     * removes some rendering jank observed in Chrome.
     */
    z-index: 1; }
  .mdc-slider__pin-value-marker {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: inherit;
    text-transform: inherit;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }

.mdc-slider--active .mdc-slider__thumb {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1); }

.mdc-slider--focus .mdc-slider__thumb {
  -webkit-animation: mdc-slider-emphasize 266.67ms linear;
          animation: mdc-slider-emphasize 266.67ms linear; }

.mdc-slider--focus .mdc-slider__focus-ring {
  -webkit-transform: scale3d(1.55, 1.55, 1.55);
          transform: scale3d(1.55, 1.55, 1.55);
  opacity: .25; }

.mdc-slider--in-transit .mdc-slider__thumb {
  -webkit-transition-delay: 140ms;
          transition-delay: 140ms; }

.mdc-slider--in-transit .mdc-slider__thumb-container,
.mdc-slider--in-transit .mdc-slider__track,
.mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__thumb-container,
.mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__track {
  -webkit-transition: -webkit-transform 80ms ease;
  transition: -webkit-transform 80ms ease;
  transition: transform 80ms ease;
  transition: transform 80ms ease, -webkit-transform 80ms ease; }

.mdc-slider--discrete.mdc-slider--active .mdc-slider__thumb {
  -webkit-transform: scale(calc(12 / 21));
          transform: scale(calc(12 / 21)); }

.mdc-slider--discrete.mdc-slider--active .mdc-slider__pin {
  -webkit-transform: rotate(-45deg) scale(1) translate(19px, -20px);
          transform: rotate(-45deg) scale(1) translate(19px, -20px); }

.mdc-slider--discrete.mdc-slider--focus .mdc-slider__thumb {
  -webkit-animation: none;
          animation: none; }

.mdc-slider--discrete.mdc-slider--display-markers .mdc-slider__track-marker-container {
  visibility: visible; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* postcss-bem-linter: define snackbar */
.mdc-snackbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 24px;
  padding-left: 24px;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-transition: -webkit-transform 0.25s 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-transform 0.25s 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.25s 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 0.25s 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.25s 0ms cubic-bezier(0.4, 0, 1, 1);
  background-color: #323232;
  pointer-events: none;
  will-change: transform; }
  @media (max-width: 599px) {
    .mdc-snackbar {
      left: 0;
      width: 100%;
      -webkit-transform: translate(0, 100%);
              transform: translate(0, 100%); } }
  @media (min-width: 600px) {
    .mdc-snackbar {
      min-width: 288px;
      max-width: 568px;
      border-radius: 2px; } }

@media (min-width: 600px) {
  .mdc-snackbar--align-start {
    left: 24px;
    right: initial;
    bottom: 24px;
    -webkit-transform: translate(0, 200%);
            transform: translate(0, 200%); }
    [dir="rtl"] .mdc-snackbar--align-start, .mdc-snackbar--align-start[dir="rtl"] {
      left: initial;
      right: 24px; } }

@media (max-width: 599px) {
  .mdc-snackbar--align-start {
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

.mdc-snackbar--active {
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: -webkit-transform 0.25s 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 0.25s 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.25s 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 0.25s 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.25s 0ms cubic-bezier(0, 0, 0.2, 1);
  pointer-events: auto; }
  .mdc-snackbar--active:not(.mdc-snackbar--align-start) {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
    @media (max-width: 599px) {
      .mdc-snackbar--active:not(.mdc-snackbar--align-start) {
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translate(0);
                transform: translate(0); } }

.mdc-snackbar__action-wrapper {
  padding-left: 24px;
  padding-right: 0; }
  [dir="rtl"] .mdc-snackbar__action-wrapper, .mdc-snackbar__action-wrapper[dir="rtl"] {
    padding-left: 0;
    padding-right: 24px; }

.mdc-snackbar--action-on-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.mdc-snackbar__text {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  margin-left: 0;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  -webkit-transition: opacity 0.3s 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.3s 0ms cubic-bezier(0.4, 0, 1, 1);
  opacity: 0;
  color: white; }
  .mdc-snackbar[dir="rtl"] .mdc-snackbar__text,
  [dir="rtl"] .mdc-snackbar .mdc-snackbar__text {
    margin-left: auto;
    margin-right: 0; }
  @media (min-width: 600px) {
    .mdc-snackbar__text {
      padding-left: 0;
      padding-right: 24px; }
      [dir="rtl"] .mdc-snackbar__text, .mdc-snackbar__text[dir="rtl"] {
        padding-left: 24px;
        padding-right: 0; } }

.mdc-snackbar--action-on-bottom .mdc-snackbar__text {
  margin-right: inherit; }

.mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper {
  margin-left: auto;
  margin-right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -12px;
  margin-bottom: 8px; }
  [dir="rtl"] .mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper, .mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper[dir="rtl"] {
    margin-left: 0;
    margin-right: auto; }

.mdc-snackbar--multiline .mdc-snackbar__text {
  height: 80px; }

.mdc-snackbar__action-button {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  /* @alternate */
  color: #018786;
  color: var(--mdc-theme-secondary, #018786);
  padding: 0;
  -webkit-transition: opacity 0.3s 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.3s 0ms cubic-bezier(0.4, 0, 1, 1);
  border: none;
  outline: none;
  background-color: transparent;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  visibility: hidden; }
  .mdc-snackbar__action-button::-moz-focus-inner {
    border: 0; }
  .mdc-snackbar__action-button:hover {
    cursor: pointer; }
  .mdc-snackbar__action-button:not([aria-hidden]) {
    visibility: inherit; }

.mdc-snackbar--active .mdc-snackbar__text,
.mdc-snackbar--active .mdc-snackbar__action-button:not([aria-hidden]) {
  -webkit-transition: opacity 0.3s 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 0.3s 0ms cubic-bezier(0.4, 0, 1, 1);
  opacity: 1; }

/* stylelint-disable plugin/selector-bem-pattern */
.mdc-snackbar--multiline.mdc-snackbar--action-on-bottom .mdc-snackbar__text {
  margin: 0; }

/* stylelint-enable plugin/selector-bem-pattern */
/* postcss-bem-linter: end */
/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
.mdc-switch {
  display: inline-block;
  position: relative; }
  .mdc-switch .mdc-switch__native-control:enabled:not(:checked) ~ .mdc-switch__background::before {
    background-color: #000; }
  .mdc-switch .mdc-switch__native-control:enabled:not(:checked) ~ .mdc-switch__background .mdc-switch__knob {
    background-color: #fafafa; }
  .mdc-switch .mdc-switch__native-control:enabled:not(:checked) ~ .mdc-switch__background .mdc-switch__knob::before {
    background-color: #9e9e9e; }
  .mdc-switch .mdc-switch__native-control:enabled:checked ~ .mdc-switch__background::before {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-switch .mdc-switch__native-control:enabled:checked ~ .mdc-switch__background .mdc-switch__knob {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-switch .mdc-switch__native-control:enabled:checked ~ .mdc-switch__background .mdc-switch__knob::before {
    /* @alternate */
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786); }
  .mdc-switch__native-control {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 48px;
    height: 48px;
    display: inline-block;
    margin-top: -3px;
    -webkit-transition: -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    cursor: pointer;
    z-index: 2; }
    .mdc-switch__native-control:checked {
      -webkit-transform: translateX(14px);
              transform: translateX(14px); }
  .mdc-switch__background {
    display: block;
    position: relative;
    width: 34px;
    height: 14px;
    border-radius: 7px;
    outline: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .mdc-switch__background::before {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 7px;
      opacity: .38;
      content: ""; }
    .mdc-switch__background .mdc-switch__knob {
      -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
              box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
      display: block;
      position: absolute;
      top: -3px;
      left: 0;
      width: 20px;
      height: 20px;
      -webkit-transform: translateX(0);
              transform: translateX(0);
      -webkit-transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 10px;
      z-index: 1; }
      .mdc-switch__background .mdc-switch__knob::before {
        position: absolute;
        top: -14px;
        left: -14px;
        width: 48px;
        height: 48px;
        -webkit-transform: scale(0);
                transform: scale(0);
        -webkit-transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 24px;
        opacity: .2;
        content: ""; }

.mdc-switch__native-control:focus ~ .mdc-switch__background .mdc-switch__knob::before {
  position: absolute;
  width: 48px;
  height: 48px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px; }

.mdc-switch__native-control:checked ~ .mdc-switch__background::before {
  opacity: .5; }

.mdc-switch__native-control:checked ~ .mdc-switch__background .mdc-switch__knob {
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
  -webkit-transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1); }
  .mdc-switch__native-control:checked ~ .mdc-switch__background .mdc-switch__knob::before {
    opacity: .15; }

.mdc-switch__native-control:disabled {
  cursor: initial; }

.mdc-switch__native-control:disabled ~ .mdc-switch__background::before {
  background-color: #000;
  opacity: .12; }

.mdc-switch__native-control:disabled ~ .mdc-switch__background .mdc-switch__knob {
  background-color: #bdbdbd; }

/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-tab {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  /* @alternate */
  color: rgba(0, 0, 0, 0.54);
  color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54));
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  display: table-cell;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 160px;
  min-height: 48px;
  padding: 0 24px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  vertical-align: middle; }
  .mdc-tab .mdc-tab__icon {
    /* @alternate */
    color: rgba(0, 0, 0, 0.54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }
  .mdc-tab::before, .mdc-tab::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-tab::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-tab.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-tab.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-tab.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-tab.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-tab.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-tab::before, .mdc-tab::after {
    background-color: black; }
  .mdc-tab:hover::before {
    opacity: 0.04; }
  .mdc-tab:not(.mdc-ripple-upgraded):focus::before, .mdc-tab.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-tab:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-tab:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-tab.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-tab::before, .mdc-tab::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-tab.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-tab:hover {
    /* @alternate */
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
    .mdc-tab:hover .mdc-tab__icon {
      /* @alternate */
      color: rgba(0, 0, 0, 0.87);
      color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
  .mdc-tab:focus {
    outline: none; }
  @media screen and (max-width: 600px) {
    .mdc-tab {
      min-width: 72px;
      padding: 0 12px; } }
  .mdc-tab__icon {
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 24px; }
    .mdc-tab-bar--icons-with-text .mdc-tab__icon {
      margin-top: 4px; }
  .mdc-tab__icon-text {
    display: block;
    margin: 0 auto; }
  .mdc-tab__icon + .mdc-tab__icon-text {
    padding-top: 6px; }

.mdc-tab--active {
  /* @alternate */
  color: rgba(0, 0, 0, 0.87);
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
  .mdc-tab--active .mdc-tab__icon {
    /* @alternate */
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
  .mdc-tab--active::before {
    bottom: 0; }

.mdc-tab__indicator {
  /* @alternate */
  background-color: rgba(0, 0, 0, 0.87);
  background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  position: absolute;
  bottom: 0;
  height: 2px;
  visibility: hidden;
  left: 2px;
  width: calc(100% - 4px); }

.mdc-tab-bar:not(.mdc-tab-bar-upgraded) .mdc-tab--active .mdc-tab__indicator,
.mdc-tab-bar:not(.mdc-tab-bar-upgraded) .mdc-tab:hover .mdc-tab__indicator,
.mdc-tab-bar:not(.mdc-tab-bar-upgraded) .mdc-tab:active .mdc-tab__indicator {
  visibility: visible; }

.mdc-tab-bar:not(.mdc-tab-bar-upgraded) .mdc-tab:not(.mdc-tab--active):hover .mdc-tab__indicator {
  opacity: .38; }

.mdc-tab-bar:not(.mdc-tab-bar-upgraded) .mdc-tab--active,
.mdc-tab-bar:not(.mdc-tab-bar-upgraded) .mdc-tab:not(.mdc-tab--active):active .mdc-tab__indicator {
  opacity: .87; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-tab-bar__indicator, .mdc-tab__indicator {
  /* @alternate */
  background-color: rgba(0, 0, 0, 0.87);
  background-color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }

.mdc-tab-bar {
  display: table;
  position: relative;
  height: 48px;
  margin: 0 auto;
  text-transform: uppercase; }

.mdc-tab-bar__indicator {
  /* @alternate */
  background-color: rgba(0, 0, 0, 0.87);
  background-color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
  position: absolute;
  bottom: 0;
  height: 2px;
  visibility: hidden;
  width: 100%;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
  will-change: transform; }

.mdc-tab-bar--icons-with-text {
  height: 72px; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-tab-bar-scroller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background-color: inherit;
  overflow: hidden; }
  .mdc-tab-bar-scroller__scroll-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: hidden; }
    .mdc-tab-bar-scroller__scroll-frame__tabs {
      -webkit-transition: -webkit-transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: -webkit-transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 240ms 0ms cubic-bezier(0, 0, 0.2, 1);
      will-change: transform; }
  .mdc-tab-bar-scroller__indicator {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 48px;
    cursor: pointer;
    visibility: hidden;
    /* @alternate */
    color: rgba(0, 0, 0, 0.54);
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }
    .mdc-tab-bar-scroller__indicator:hover {
      /* @alternate */
      color: rgba(0, 0, 0, 0.87);
      color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
    .mdc-tab-bar-scroller__indicator__inner {
      color: inherit;
      text-decoration: inherit;
      cursor: inherit; }
      .mdc-tab-bar-scroller__indicator__inner:focus {
        outline-color: inherit; }
      .mdc-tab-bar-scroller[dir="rtl"] .mdc-tab-bar-scroller__indicator__inner,
      [dir="rtl"] .mdc-tab-bar-scroller .mdc-tab-bar-scroller__indicator__inner {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .mdc-tab-bar-scroller__indicator__inner:hover {
      color: inherit; }
  .mdc-tab-bar-scroller__indicator--enabled {
    visibility: visible; }

@-webkit-keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); } }

@keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); } }

@-webkit-keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); } }

@keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); } }

@-webkit-keyframes invalid-shake-float-above-box-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); } }

@keyframes invalid-shake-float-above-box-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); } }

@-webkit-keyframes invalid-shake-float-above-outlined {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); } }

@keyframes invalid-shake-float-above-outlined {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); } }

@-webkit-keyframes invalid-shake-float-above-outlined-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); } }

@keyframes invalid-shake-float-above-outlined-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); } }

@-webkit-keyframes invalid-shake-float-above-outlined-leading-icon {
  0% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); } }

@keyframes invalid-shake-float-above-outlined-leading-icon {
  0% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); } }

@-webkit-keyframes invalid-shake-float-above-outlined-leading-icon-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); } }

@keyframes invalid-shake-float-above-outlined-leading-icon-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); } }

@-webkit-keyframes invalid-shake-float-above-textarea {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); } }

@keyframes invalid-shake-float-above-textarea {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); } }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-line-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 2; }

.mdc-line-ripple--active {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1; }

.mdc-line-ripple--deactivating {
  opacity: 0; }

.mdc-text-field-helper-text {
  margin: 0;
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  font-size: .75rem;
  will-change: opacity; }
  .mdc-text-field + .mdc-text-field-helper-text {
    margin-bottom: 8px; }

.mdc-text-field-helper-text--persistent {
  -webkit-transition: none;
  transition: none;
  opacity: 1;
  will-change: initial; }

.mdc-text-field--with-leading-icon .mdc-text-field__icon,
.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  position: absolute;
  bottom: 16px;
  cursor: pointer; }

.mdc-text-field__icon:not([tabindex]),
.mdc-text-field__icon[tabindex="-1"] {
  cursor: default;
  pointer-events: none; }

@keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); } }

@keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); } }

@keyframes invalid-shake-float-above-box-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); } }

@keyframes invalid-shake-float-above-outlined {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); } }

@keyframes invalid-shake-float-above-outlined-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); } }

@keyframes invalid-shake-float-above-outlined-leading-icon {
  0% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); } }

@keyframes invalid-shake-float-above-outlined-leading-icon-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); } }

@keyframes invalid-shake-float-above-textarea {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); } }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
.mdc-text-field__label {
  position: absolute;
  bottom: 8px;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: text; }
  .mdc-text-field[dir="rtl"] .mdc-text-field__label,
  [dir="rtl"] .mdc-text-field .mdc-text-field__label {
    right: 0;
    left: auto;
    -webkit-transform-origin: right top;
            transform-origin: right top; }

.mdc-text-field__label--float-above {
  cursor: auto; }

.mdc-text-field__label--float-above {
  -webkit-transform: translateY(-100%) scale(0.75);
          transform: translateY(-100%) scale(0.75); }

.mdc-text-field__label--shake {
  -webkit-animation: invalid-shake-float-above-standard 250ms 1;
          animation: invalid-shake-float-above-standard 250ms 1; }

@keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-100%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-100%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-100%) scale(0.75); } }

@keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.75); } }

@keyframes invalid-shake-float-above-box-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-90%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-90%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-90%) scale(0.923); } }

@keyframes invalid-shake-float-above-outlined {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 0%)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 0%)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 0%)) translateY(-130%) scale(0.75); } }

@keyframes invalid-shake-float-above-outlined-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-145%) scale(0.923); } }

@keyframes invalid-shake-float-above-outlined-leading-icon {
  0% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(4% - 32px)) translateY(-130%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(-4% - 32px)) translateY(-130%) scale(0.75); }
  100% {
    -webkit-transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75);
            transform: translateX(calc(0 - 32px)) translateY(-130%) scale(0.75); } }

@keyframes invalid-shake-float-above-outlined-leading-icon-dense {
  0% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(4% - 21px)) translateY(-145%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(-4% - 21px)) translateY(-145%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923);
            transform: translateX(calc(0 - 21px)) translateY(-145%) scale(0.923); } }

@keyframes invalid-shake-float-above-textarea {
  0% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(4% - 0%)) translateY(-50%) scale(0.923); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(-4% - 0%)) translateY(-50%) scale(0.923); }
  100% {
    -webkit-transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923);
            transform: translateX(calc(0 - 0%)) translateY(-50%) scale(0.923); } }

.mdc-text-field__idle-outline {
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  -webkit-transition: opacity 100ms ease;
  transition: opacity 100ms ease;
  border: 1px solid;
  opacity: 1; }

.mdc-text-field__outline {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 1px);
  height: calc(100% - 2px);
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  overflow: hidden; }
  .mdc-text-field__outline::before, .mdc-text-field__outline::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-text-field__outline::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-text-field__outline.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-text-field__outline.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-text-field__outline.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-text-field__outline.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-text-field__outline.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-text-field__outline::before, .mdc-text-field__outline::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-text-field__outline.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-text-field__outline::before, .mdc-text-field__outline::after {
    /* @alternate */
    background-color: rgba(0, 0, 0, 0.87); }
    @supports not (-ms-ime-align: auto) {
      .mdc-text-field__outline::before, .mdc-text-field__outline::after {
        background-color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); } }
  .mdc-text-field__outline:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-text-field__outline:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-text-field__outline.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-text-field__outline svg {
    position: absolute;
    width: 100%;
    height: 100%; }

.mdc-text-field__outline-path {
  stroke-width: 1px;
  -webkit-transition: stroke 180ms cubic-bezier(0.4, 0, 0.2, 1), stroke-width 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke 180ms cubic-bezier(0.4, 0, 0.2, 1), stroke-width 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  fill: transparent; }

.mdc-text-field {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  will-change: opacity, transform, color; }
  .mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
    border-bottom-color: rgba(0, 0, 0, 0.5); }
  .mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
    border-bottom-color: black; }
  .mdc-text-field .mdc-line-ripple {
    /* @alternate */
    background-color: #6200ee;
    background-color: var(--mdc-theme-primary, #6200ee); }
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
    /* @alternate */
    color: rgba(0, 0, 0, 0.87);
    color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    color: rgba(0, 0, 0, 0.6); }
  .mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-text {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
    border-bottom-color: rgba(0, 0, 0, 0.12); }
  .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon {
    color: black; }

.mdc-text-field__input {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.04em;
  width: 100%;
  padding: 0 0 8px;
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  background: none;
  font-size: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .mdc-text-field__input::-webkit-input-placeholder {
    -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1; }
  .mdc-text-field__input::-moz-placeholder {
    -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1; }
  .mdc-text-field__input:-ms-input-placeholder {
    -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1; }
  .mdc-text-field__input::placeholder {
    -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1; }
  .mdc-text-field__input:focus {
    outline: none; }
  .mdc-text-field__input:invalid {
    -webkit-box-shadow: none;
            box-shadow: none; }
  .mdc-text-field__input:-webkit-autofill + .mdc-text-field__label {
    -webkit-transform: translateY(-100%) scale(0.75);
            transform: translateY(-100%) scale(0.75);
    cursor: auto; }

.mdc-text-field--outlined {
  height: 56px;
  border: none; }
  .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__idle-outline {
    border-color: rgba(0, 0, 0, 0.12); }
  .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__outline .mdc-text-field__outline-path {
    stroke: rgba(0, 0, 0, 0.12); }
  .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:hover ~ .mdc-text-field__idle-outline,
  .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__icon:hover ~ .mdc-text-field__idle-outline {
    border-color: rgba(0, 0, 0, 0.87); }
  .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-text-field__outline-path {
    /* @alternate */
    stroke: #6200ee;
    stroke: var(--mdc-theme-primary, #6200ee); }
  .mdc-text-field--outlined .mdc-text-field__label--float-above {
    -webkit-transform: translateY(-130%) scale(0.75);
            transform: translateY(-130%) scale(0.75); }
  .mdc-text-field--outlined .mdc-text-field__label--shake {
    -webkit-animation: invalid-shake-float-above-outlined 250ms 1;
            animation: invalid-shake-float-above-outlined 250ms 1; }
  .mdc-text-field--outlined .mdc-text-field__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 30px;
    padding: 12px;
    border: none;
    background-color: transparent;
    z-index: 1; }
  .mdc-text-field--outlined .mdc-text-field__label {
    left: 16px;
    right: initial;
    position: absolute;
    bottom: 20px;
    -webkit-transition: -webkit-transform 260ms ease;
    transition: -webkit-transform 260ms ease;
    transition: transform 260ms ease;
    transition: transform 260ms ease, -webkit-transform 260ms ease; }
    [dir="rtl"] .mdc-text-field--outlined .mdc-text-field__label, .mdc-text-field--outlined .mdc-text-field__label[dir="rtl"] {
      left: initial;
      right: 16px; }
  .mdc-text-field--outlined .mdc-text-field__icon {
    z-index: 2; }
  .mdc-text-field--outlined .mdc-text-field__input:hover ~ .mdc-text-field__idle-outline {
    border: 1px solid; }
  .mdc-text-field--outlined .mdc-text-field__icon:hover ~ .mdc-text-field__idle-outline {
    border: 1px solid rgba(0, 0, 0, 0.87); }

.mdc-text-field--outlined.mdc-text-field--focused .mdc-text-field__outline-path {
  stroke-width: 2px; }

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
  color: rgba(0, 0, 0, 0.38); }

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__idle-outline {
  border-color: rgba(0, 0, 0, 0.06); }

.mdc-text-field--outlined.mdc-text-field--disabled:not(.mdc-text-field--focused) .mdc-text-field__outline .mdc-text-field__outline-path {
  stroke: rgba(0, 0, 0, 0.06); }

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
  border-bottom: none; }

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__outline-path {
  stroke-width: 1px; }

.mdc-text-field--outlined.mdc-text-field--dense {
  height: 48px; }
  .mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label--float-above {
    -webkit-transform: translateY(-145%) scale(0.923);
            transform: translateY(-145%) scale(0.923); }
  .mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label--shake {
    -webkit-animation: invalid-shake-float-above-outlined-dense 250ms 1;
            animation: invalid-shake-float-above-outlined-dense 250ms 1; }
  .mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__input {
    padding: 12px 12px 7px; }
  .mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label {
    bottom: 18px; }
  .mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__icon {
    top: 12px; }

.mdc-text-field--box {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  border-radius: 4px 4px 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  height: 56px;
  margin-top: 16px;
  overflow: hidden; }
  .mdc-text-field--box::before, .mdc-text-field--box::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-text-field--box::before {
    -webkit-transition: opacity 15ms linear;
    transition: opacity 15ms linear; }
  .mdc-text-field--box.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-text-field--box.mdc-ripple-upgraded::after {
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-text-field--box.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    left: var(--mdc-ripple-left, 0); }
  .mdc-text-field--box.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
            animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
  .mdc-text-field--box.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-text-field--box::before, .mdc-text-field--box::after {
    /* @alternate */
    background-color: rgba(0, 0, 0, 0.87); }
    @supports not (-ms-ime-align: auto) {
      .mdc-text-field--box::before, .mdc-text-field--box::after {
        background-color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); } }
  .mdc-text-field--box:hover::before {
    opacity: 0.04; }
  .mdc-text-field--box:not(.mdc-ripple-upgraded):focus::before, .mdc-text-field--box:not(.mdc-ripple-upgraded):focus-within::before, .mdc-text-field--box.mdc-ripple-upgraded--background-focused::before {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.12; }
  .mdc-text-field--box:not(.mdc-ripple-upgraded)::after {
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear; }
  .mdc-text-field--box:not(.mdc-ripple-upgraded):active::after {
    -webkit-transition-duration: 75ms;
            transition-duration: 75ms;
    opacity: 0.16; }
  .mdc-text-field--box.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.16; }
  .mdc-text-field--box::before, .mdc-text-field--box::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-text-field--box.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-text-field--box:not(.mdc-text-field--disabled) {
    background-color: rgba(0, 0, 0, 0.04); }
  .mdc-text-field--box .mdc-text-field__label--float-above {
    -webkit-transform: translateY(-50%) scale(0.75);
            transform: translateY(-50%) scale(0.75); }
  .mdc-text-field--box .mdc-text-field__label--shake {
    -webkit-animation: invalid-shake-float-above-box 250ms 1;
            animation: invalid-shake-float-above-box 250ms 1; }
  .mdc-text-field--box .mdc-text-field__input {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
    padding: 20px 16px 0; }
  .mdc-text-field--box .mdc-text-field__label {
    left: 16px;
    right: initial;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 48px);
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    overflow: hidden;
    will-change: transform; }
    [dir="rtl"] .mdc-text-field--box .mdc-text-field__label, .mdc-text-field--box .mdc-text-field__label[dir="rtl"] {
      left: initial;
      right: 16px; }

.mdc-text-field--box.mdc-text-field--disabled {
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom: none; }
  .mdc-text-field--box.mdc-text-field--disabled .mdc-text-field__input {
    border-bottom-color: rgba(0, 0, 0, 0.06); }
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__label,
  .mdc-text-field--box.mdc-text-field--disabled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)); }

.mdc-text-field--box.mdc-text-field--dense .mdc-text-field__label--float-above {
  -webkit-transform: translateY(-90%) scale(0.923);
          transform: translateY(-90%) scale(0.923); }

.mdc-text-field--box.mdc-text-field--dense .mdc-text-field__label--shake {
  -webkit-animation: invalid-shake-float-above-box-dense 250ms 1;
          animation: invalid-shake-float-above-box-dense 250ms 1; }

.mdc-text-field--box.mdc-text-field--dense .mdc-text-field__input {
  padding: 12px 12px 0; }

.mdc-text-field--with-leading-icon .mdc-text-field__icon {
  left: 15px;
  right: initial; }
  [dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__icon, .mdc-text-field--with-leading-icon .mdc-text-field__icon[dir="rtl"] {
    left: initial;
    right: 15px; }

.mdc-text-field--with-leading-icon .mdc-text-field__input {
  padding-left: 48px;
  padding-right: 15px; }
  [dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__input, .mdc-text-field--with-leading-icon .mdc-text-field__input[dir="rtl"] {
    padding-left: 15px;
    padding-right: 48px; }

.mdc-text-field--with-leading-icon .mdc-text-field__label {
  left: 48px;
  right: initial; }
  [dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__label, .mdc-text-field--with-leading-icon .mdc-text-field__label[dir="rtl"] {
    left: initial;
    right: 48px; }

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__label--float-above {
  -webkit-transform: translateY(-130%) translateX(-32px) scale(0.75);
          transform: translateY(-130%) translateX(-32px) scale(0.75); }
  [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__label--float-above[dir="rtl"] {
    -webkit-transform: translateY(-130%) translateX(32px) scale(0.75);
            transform: translateY(-130%) translateX(32px) scale(0.75); }

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-text-field__label--shake {
  -webkit-animation: invalid-shake-float-above-outlined-leading-icon 250ms 1;
          animation: invalid-shake-float-above-outlined-leading-icon 250ms 1; }

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label--float-above {
  -webkit-transform: translateY(-145%) translateX(-21px) scale(0.923);
          transform: translateY(-145%) translateX(-21px) scale(0.923); }
  [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label--float-above[dir="rtl"] {
    -webkit-transform: translateY(-145%) translateX(21px) scale(0.923);
            transform: translateY(-145%) translateX(21px) scale(0.923); }

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__label--shake {
  -webkit-animation: invalid-shake-float-above-outlined-leading-icon-dense 250ms 1;
          animation: invalid-shake-float-above-outlined-leading-icon-dense 250ms 1; }

.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  left: initial;
  right: 15px; }
  [dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__icon, .mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
    left: 15px;
    right: initial; }

.mdc-text-field--with-trailing-icon .mdc-text-field__input {
  padding-left: 15px;
  padding-right: 48px; }
  [dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__input, .mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
    padding-left: 48px;
    padding-right: 15px; }

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon,
.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  bottom: 16px;
  -webkit-transform: scale(0.8);
          transform: scale(0.8); }

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
  left: 12px;
  right: initial; }
  [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
    left: initial;
    right: 12px; }

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
  padding-left: 38px;
  padding-right: 12px; }
  [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input, .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
    padding-left: 12px;
    padding-right: 38px; }

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__label {
  left: 38px;
  right: initial; }
  [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__label, .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__label[dir="rtl"] {
    left: initial;
    right: 38px; }

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  left: initial;
  right: 12px; }
  [dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
    left: 12px;
    right: initial; }

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
  padding-left: 12px;
  padding-right: 38px; }
  [dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input, .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
    padding-left: 38px;
    padding-right: 12px; }

.mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 16px; }
  .mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box):not(.mdc-text-field--textarea):not(.mdc-text-field--outlined) {
    height: 48px; }
  .mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box) .mdc-text-field__label {
    pointer-events: none; }

.mdc-text-field--dense {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: .813rem; }
  .mdc-text-field--dense .mdc-text-field__label--float-above {
    -webkit-transform: translateY(-110%) scale(0.923);
            transform: translateY(-110%) scale(0.923); }

.mdc-text-field__input:required + .mdc-text-field__label::after {
  margin-left: 1px;
  content: "*"; }

.mdc-text-field--textarea {
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: initial;
  -webkit-transition: none;
  transition: none;
  border: 1px solid;
  overflow: hidden; }
  .mdc-text-field--textarea .mdc-text-field__label {
    border-radius: 4px 4px 0 0; }
  .mdc-text-field--textarea .mdc-text-field__input {
    border-radius: 2px; }
  .mdc-text-field--textarea .mdc-text-field__label {
    background-color: white; }
  .mdc-text-field--textarea:not(.mdc-text-field--disabled) {
    border-color: rgba(0, 0, 0, 0.73); }
    .mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
      border-color: rgba(0, 0, 0, 0.73); }
  .mdc-text-field--textarea .mdc-text-field__label--float-above {
    -webkit-transform: translateY(-50%) scale(0.923);
            transform: translateY(-50%) scale(0.923); }
  .mdc-text-field--textarea .mdc-text-field__label--shake {
    -webkit-animation: invalid-shake-float-above-textarea 250ms 1;
            animation: invalid-shake-float-above-textarea 250ms 1; }
  .mdc-text-field--textarea .mdc-text-field__input {
    margin: 0;
    padding: 16px;
    padding-top: 32px;
    border: 1px solid transparent; }
  .mdc-text-field--textarea .mdc-text-field__label {
    left: 1px;
    right: initial;
    top: 18px;
    bottom: auto;
    margin-top: 2px;
    margin-left: 8px;
    padding: 8px;
    line-height: 1.15; }
    [dir="rtl"] .mdc-text-field--textarea .mdc-text-field__label, .mdc-text-field--textarea .mdc-text-field__label[dir="rtl"] {
      left: initial;
      right: 1px; }

.mdc-text-field--fullwidth {
  width: 100%; }
  .mdc-text-field--fullwidth .mdc-text-field__input {
    resize: vertical; }
  .mdc-text-field--fullwidth:not(.mdc-text-field--textarea) {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 56px;
    margin: 0;
    border: none;
    border-bottom: 1px solid;
    outline: none; }
    .mdc-text-field--fullwidth:not(.mdc-text-field--textarea) .mdc-text-field__input {
      width: 100%;
      height: 100%;
      padding: 0;
      resize: none;
      border: none !important; }

.mdc-text-field--dense + .mdc-text-field-helper-text {
  margin-bottom: 4px; }

.mdc-text-field--box + .mdc-text-field-helper-text,
.mdc-text-field--outlined + .mdc-text-field-helper-text {
  margin-right: 16px;
  margin-left: 16px; }

.mdc-form-field > .mdc-text-field + label {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  /* @alternate */
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee); }

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder {
  /* @alternate */
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee); }

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  /* @alternate */
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee); }

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  /* @alternate */
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee); }

.mdc-text-field--focused .mdc-text-field__input:required + .mdc-text-field__label::after {
  color: #d50000; }

.mdc-text-field--focused + .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
  opacity: 1; }

.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) {
  /* @alternate */
  border-color: #6200ee;
  border-color: var(--mdc-theme-primary, #6200ee); }
  .mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
    /* @alternate */
    border-color: #6200ee;
    border-color: var(--mdc-theme-primary, #6200ee); }

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
  border-bottom-color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
  border-bottom-color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple {
  background-color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder {
  color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__label,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: #d50000; }

.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
  color: #d50000; }

.mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
  opacity: 1; }

.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) {
  border-color: #d50000; }
  .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
    border-color: #d50000; }

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__idle-outline {
  border-color: #d50000; }

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__outline .mdc-text-field__outline-path {
  stroke: #d50000; }

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:hover ~ .mdc-text-field__idle-outline,
.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon:hover ~ .mdc-text-field__idle-outline {
  border-color: #d50000; }

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-text-field__outline-path {
  stroke: #d50000; }

.mdc-text-field--disabled {
  pointer-events: none; }
  .mdc-text-field--disabled .mdc-text-field__input {
    border-bottom-color: rgba(35, 31, 32, 0.26); }
  .mdc-text-field--disabled .mdc-text-field__input {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--disabled .mdc-text-field__label,
  .mdc-text-field--disabled .mdc-text-field__input::-webkit-input-placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--disabled .mdc-text-field__label,
  .mdc-text-field--disabled .mdc-text-field__input::-moz-placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--disabled .mdc-text-field__label,
  .mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--disabled .mdc-text-field__label,
  .mdc-text-field--disabled .mdc-text-field__input::placeholder {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--disabled + .mdc-text-field-helper-text {
    /* @alternate */
    color: rgba(0, 0, 0, 0.38);
    color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)); }
  .mdc-text-field--disabled .mdc-text-field__icon {
    color: rgba(0, 0, 0, 0.3); }
  .mdc-text-field--disabled:not(.mdc-text-field--textarea) {
    border-bottom-color: rgba(0, 0, 0, 0.12); }
  .mdc-text-field--disabled .mdc-text-field__input {
    border-bottom: 1px dotted; }
  .mdc-text-field--disabled .mdc-text-field__label {
    cursor: default; }

.mdc-text-field--textarea.mdc-text-field--disabled {
  border-color: rgba(35, 31, 32, 0.26);
  background-color: #f9f9f9;
  border-style: solid; }
  .mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__label {
    background-color: #f9f9f9; }
  .mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input:focus {
    border-color: rgba(35, 31, 32, 0.26); }
  .mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input {
    border: 1px solid transparent; }

.mdc-text-field__label--float-above ~ .mdc-text-field__idle-outline {
  opacity: 0; }

.mdc-text-field__label--float-above ~ .mdc-text-field__outline {
  opacity: 1; }

:root {
  --mdc-theme-primary: #6200ee;
  --mdc-theme-primary-light: #b37eff;
  --mdc-theme-primary-dark: #8936ff;
  --mdc-theme-secondary: #018786;
  --mdc-theme-secondary-light: #02cecc;
  --mdc-theme-secondary-dark: #004040;
  --mdc-theme-background: #fff;
  --mdc-theme-text-primary-on-primary: white;
  --mdc-theme-text-secondary-on-primary: rgba(255, 255, 255, 0.7);
  --mdc-theme-text-hint-on-primary: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-disabled-on-primary: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-icon-on-primary: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-primary-on-primary-light: rgba(0, 0, 0, 0.87);
  --mdc-theme-text-secondary-on-primary-light: rgba(0, 0, 0, 0.54);
  --mdc-theme-text-hint-on-primary-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-disabled-on-primary-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-icon-on-primary-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-primary-on-primary-dark: white;
  --mdc-theme-text-secondary-on-primary-dark: rgba(255, 255, 255, 0.7);
  --mdc-theme-text-hint-on-primary-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-disabled-on-primary-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-icon-on-primary-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-primary-on-secondary: white;
  --mdc-theme-text-secondary-on-secondary: rgba(255, 255, 255, 0.7);
  --mdc-theme-text-hint-on-secondary: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-disabled-on-secondary: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-icon-on-secondary: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-primary-on-secondary-light: rgba(0, 0, 0, 0.87);
  --mdc-theme-text-secondary-on-secondary-light: rgba(0, 0, 0, 0.54);
  --mdc-theme-text-hint-on-secondary-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-disabled-on-secondary-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-icon-on-secondary-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-primary-on-secondary-dark: white;
  --mdc-theme-text-secondary-on-secondary-dark: rgba(255, 255, 255, 0.7);
  --mdc-theme-text-hint-on-secondary-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-disabled-on-secondary-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-icon-on-secondary-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-primary-on-background: rgba(0, 0, 0, 0.87);
  --mdc-theme-text-secondary-on-background: rgba(0, 0, 0, 0.54);
  --mdc-theme-text-hint-on-background: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-disabled-on-background: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-icon-on-background: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);
  --mdc-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);
  --mdc-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-icon-on-light: rgba(0, 0, 0, 0.38);
  --mdc-theme-text-primary-on-dark: white;
  --mdc-theme-text-secondary-on-dark: rgba(255, 255, 255, 0.7);
  --mdc-theme-text-hint-on-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-disabled-on-dark: rgba(255, 255, 255, 0.5);
  --mdc-theme-text-icon-on-dark: rgba(255, 255, 255, 0.5); }

.mdc-theme--background {
  /* @alternate */
  background-color: #fff;
  background-color: var(--mdc-theme-background, #fff); }

.mdc-theme--primary {
  /* @alternate */
  color: #6200ee !important;
  color: var(--mdc-theme-primary, #6200ee) !important; }

.mdc-theme--primary-light {
  /* @alternate */
  color: #b37eff !important;
  color: var(--mdc-theme-primary-light, #b37eff) !important; }

.mdc-theme--primary-dark {
  /* @alternate */
  color: #8936ff !important;
  color: var(--mdc-theme-primary-dark, #8936ff) !important; }

.mdc-theme--secondary {
  /* @alternate */
  color: #018786 !important;
  color: var(--mdc-theme-secondary, #018786) !important; }

.mdc-theme--secondary-light {
  /* @alternate */
  color: #02cecc !important;
  color: var(--mdc-theme-secondary-light, #02cecc) !important; }

.mdc-theme--secondary-dark {
  /* @alternate */
  color: #004040 !important;
  color: var(--mdc-theme-secondary-dark, #004040) !important; }

.mdc-theme--text-primary-on-primary {
  /* @alternate */
  color: white !important;
  color: var(--mdc-theme-text-primary-on-primary, white) !important; }

.mdc-theme--text-secondary-on-primary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.7) !important;
  color: var(--mdc-theme-text-secondary-on-primary, rgba(255, 255, 255, 0.7)) !important; }

.mdc-theme--text-hint-on-primary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-hint-on-primary, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-disabled-on-primary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-disabled-on-primary, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-icon-on-primary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-icon-on-primary, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-primary-on-primary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.87) !important;
  color: var(--mdc-theme-text-primary-on-primary-light, rgba(0, 0, 0, 0.87)) !important; }

.mdc-theme--text-secondary-on-primary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(--mdc-theme-text-secondary-on-primary-light, rgba(0, 0, 0, 0.54)) !important; }

.mdc-theme--text-hint-on-primary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-hint-on-primary-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-disabled-on-primary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-disabled-on-primary-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-icon-on-primary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-icon-on-primary-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-primary-on-primary-dark {
  /* @alternate */
  color: white !important;
  color: var(--mdc-theme-text-primary-on-primary-dark, white) !important; }

.mdc-theme--text-secondary-on-primary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.7) !important;
  color: var(--mdc-theme-text-secondary-on-primary-dark, rgba(255, 255, 255, 0.7)) !important; }

.mdc-theme--text-hint-on-primary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-hint-on-primary-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-disabled-on-primary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-disabled-on-primary-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-icon-on-primary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-icon-on-primary-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-primary-on-secondary {
  /* @alternate */
  color: white !important;
  color: var(--mdc-theme-text-primary-on-secondary, white) !important; }

.mdc-theme--text-secondary-on-secondary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.7) !important;
  color: var(--mdc-theme-text-secondary-on-secondary, rgba(255, 255, 255, 0.7)) !important; }

.mdc-theme--text-hint-on-secondary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-hint-on-secondary, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-disabled-on-secondary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-disabled-on-secondary, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-icon-on-secondary {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-icon-on-secondary, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-primary-on-secondary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.87) !important;
  color: var(--mdc-theme-text-primary-on-secondary-light, rgba(0, 0, 0, 0.87)) !important; }

.mdc-theme--text-secondary-on-secondary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(--mdc-theme-text-secondary-on-secondary-light, rgba(0, 0, 0, 0.54)) !important; }

.mdc-theme--text-hint-on-secondary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-hint-on-secondary-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-disabled-on-secondary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-disabled-on-secondary-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-icon-on-secondary-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-icon-on-secondary-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-primary-on-secondary-dark {
  /* @alternate */
  color: white !important;
  color: var(--mdc-theme-text-primary-on-secondary-dark, white) !important; }

.mdc-theme--text-secondary-on-secondary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.7) !important;
  color: var(--mdc-theme-text-secondary-on-secondary-dark, rgba(255, 255, 255, 0.7)) !important; }

.mdc-theme--text-hint-on-secondary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-hint-on-secondary-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-disabled-on-secondary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-disabled-on-secondary-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-icon-on-secondary-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-icon-on-secondary-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-primary-on-background {
  /* @alternate */
  color: rgba(0, 0, 0, 0.87) !important;
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)) !important; }

.mdc-theme--text-secondary-on-background {
  /* @alternate */
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)) !important; }

.mdc-theme--text-hint-on-background {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-disabled-on-background {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-disabled-on-background, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-icon-on-background {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-primary-on-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.87) !important;
  color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)) !important; }

.mdc-theme--text-secondary-on-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.54) !important;
  color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54)) !important; }

.mdc-theme--text-hint-on-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-disabled-on-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-icon-on-light {
  /* @alternate */
  color: rgba(0, 0, 0, 0.38) !important;
  color: var(--mdc-theme-text-icon-on-light, rgba(0, 0, 0, 0.38)) !important; }

.mdc-theme--text-primary-on-dark {
  /* @alternate */
  color: white !important;
  color: var(--mdc-theme-text-primary-on-dark, white) !important; }

.mdc-theme--text-secondary-on-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.7) !important;
  color: var(--mdc-theme-text-secondary-on-dark, rgba(255, 255, 255, 0.7)) !important; }

.mdc-theme--text-hint-on-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-hint-on-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-disabled-on-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-disabled-on-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--text-icon-on-dark {
  /* @alternate */
  color: rgba(255, 255, 255, 0.5) !important;
  color: var(--mdc-theme-text-icon-on-dark, rgba(255, 255, 255, 0.5)) !important; }

.mdc-theme--primary-bg {
  /* @alternate */
  background-color: #6200ee !important;
  background-color: var(--mdc-theme-primary, #6200ee) !important; }

.mdc-theme--primary-light-bg {
  /* @alternate */
  background-color: #b37eff !important;
  background-color: var(--mdc-theme-primary-light, #b37eff) !important; }

.mdc-theme--primary-dark-bg {
  /* @alternate */
  background-color: #8936ff !important;
  background-color: var(--mdc-theme-primary-dark, #8936ff) !important; }

.mdc-theme--secondary-bg {
  /* @alternate */
  background-color: #018786 !important;
  background-color: var(--mdc-theme-secondary, #018786) !important; }

.mdc-theme--secondary-light-bg {
  /* @alternate */
  background-color: #02cecc !important;
  background-color: var(--mdc-theme-secondary-light, #02cecc) !important; }

.mdc-theme--secondary-dark-bg {
  /* @alternate */
  background-color: #004040 !important;
  background-color: var(--mdc-theme-secondary-dark, #004040) !important; }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-toolbar {
  /* @alternate */
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%; }
  .mdc-toolbar__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 64px; }
    @media (max-width: 959px) and (orientation: landscape) {
      .mdc-toolbar__row {
        min-height: 48px; } }
    @media (max-width: 599px) {
      .mdc-toolbar__row {
        min-height: 56px; } }
  .mdc-toolbar__section {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 0;
    height: 100%;
    z-index: 1; }
    .mdc-toolbar__section--align-start {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1; }
    .mdc-toolbar__section--align-end {
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
  .mdc-toolbar__title {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: inherit;
    text-transform: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-left: 24px;
    margin-right: 0;
    -ms-flex-item-align: center;
        align-self: center;
    padding: 16px 0;
    line-height: 1.5rem;
    z-index: 1; }
    [dir="rtl"] .mdc-toolbar__title, .mdc-toolbar__title[dir="rtl"] {
      margin-left: 0;
      margin-right: 24px; }
  .mdc-toolbar__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px;
    border: none;
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    padding-right: 12px;
    padding-left: 12px; }
  .mdc-toolbar__icon:last-of-type {
    padding-left: 12px;
    padding-right: 24px; }
    [dir="rtl"] .mdc-toolbar__icon:last-of-type, .mdc-toolbar__icon:last-of-type[dir="rtl"] {
      padding-left: 24px;
      padding-right: 12px; }
  .mdc-toolbar__menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px;
    border: none;
    background-color: transparent;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    padding-right: 24px;
    padding-left: 24px; }

.mdc-toolbar__menu-icon + .mdc-toolbar__title {
  margin-left: 8px;
  margin-right: 0; }
  [dir="rtl"] .mdc-toolbar__menu-icon + .mdc-toolbar__title, .mdc-toolbar__menu-icon + .mdc-toolbar__title[dir="rtl"] {
    margin-left: 0;
    margin-right: 8px; }

@media (max-width: 599px) {
  .mdc-toolbar__title {
    margin-left: 16px;
    margin-right: 0; }
    [dir="rtl"] .mdc-toolbar__title, .mdc-toolbar__title[dir="rtl"] {
      margin-left: 0;
      margin-right: 16px; }
  .mdc-toolbar__icon {
    padding-right: 8px;
    padding-left: 8px; }
  .mdc-toolbar__icon:last-of-type {
    padding-left: 8px;
    padding-right: 16px; }
    [dir="rtl"] .mdc-toolbar__icon:last-of-type, .mdc-toolbar__icon:last-of-type[dir="rtl"] {
      padding-left: 16px;
      padding-right: 8px; }
  .mdc-toolbar__menu-icon {
    padding-right: 16px;
    padding-left: 16px; }
  .mdc-toolbar__menu-icon + .mdc-toolbar__title {
    margin-left: 16px;
    margin-right: 0; }
    [dir="rtl"] .mdc-toolbar__menu-icon + .mdc-toolbar__title, .mdc-toolbar__menu-icon + .mdc-toolbar__title[dir="rtl"] {
      margin-left: 0;
      margin-right: 16px; } }

.mdc-toolbar--fixed {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4; }

.mdc-toolbar--flexible {
  --mdc-toolbar-ratio-to-extend-flexible: 4; }
  .mdc-toolbar--flexible .mdc-toolbar__row:first-child {
    height: 256px;
    height: calc(64px * var(--mdc-toolbar-ratio-to-extend-flexible, 4)); }
    @media (max-width: 599px) {
      .mdc-toolbar--flexible .mdc-toolbar__row:first-child {
        height: 224px;
        height: calc(56px * var(--mdc-toolbar-ratio-to-extend-flexible, 4)); } }
    .mdc-toolbar--flexible .mdc-toolbar__row:first-child::after {
      position: absolute;
      content: ""; }
  .mdc-toolbar--flexible-default-behavior .mdc-toolbar__title {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 2.125rem;
    line-height: 2.5rem;
    font-weight: 400;
    letter-spacing: normal;
    text-decoration: inherit;
    text-transform: inherit;
    -ms-flex-item-align: end;
        align-self: flex-end;
    line-height: 1.5rem; }
  .mdc-toolbar--flexible-default-behavior .mdc-toolbar__row:first-child::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
    opacity: 1; }
  .mdc-toolbar--flexible-default-behavior.mdc-toolbar--flexible-space-minimized .mdc-toolbar__row:first-child::after {
    opacity: 0; }
  .mdc-toolbar--flexible-default-behavior.mdc-toolbar--flexible-space-minimized .mdc-toolbar__title {
    font-weight: 500; }

.mdc-toolbar--waterfall.mdc-toolbar--fixed {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow; }
  .mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--flexible-space-minimized {
    -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }
  .mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--fixed-lastrow-only.mdc-toolbar--flexible-space-minimized {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12); }
  .mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--fixed-lastrow-only.mdc-toolbar--fixed-at-last-row {
    -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12); }

.mdc-toolbar-fixed-adjust {
  margin-top: 64px; }
  @media (max-width: 959px) and (max-height: 599px) {
    .mdc-toolbar-fixed-adjust {
      margin-top: 48px; } }
  @media (max-width: 599px) {
    .mdc-toolbar-fixed-adjust {
      margin-top: 56px; } }

.mdc-toolbar__section--shrink-to-fit {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none; }

/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-typography {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

.mdc-typography--display4 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 7rem;
  line-height: 7rem;
  font-weight: 300;
  letter-spacing: -0.04em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--display4 {
  margin: -1rem 0 3.5rem -0.085em; }

.mdc-typography--display3 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 3.5rem;
  line-height: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--display3 {
  margin: -8px 0 64px -0.07em; }

.mdc-typography--display2 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 2.8125rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--display2 {
  margin: -0.5rem 0 4rem -0.07em; }

.mdc-typography--display1 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 2.125rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--display1 {
  margin: -0.5rem 0 4rem -0.07em; }

.mdc-typography--headline {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--headline {
  margin: -0.5rem 0 1rem -0.06em; }

.mdc-typography--title {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--title {
  margin: -0.5rem 0 1rem -0.05em; }

.mdc-typography--subheading2 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--subheading2 {
  margin: -0.5rem 0 1rem -0.06em; }

.mdc-typography--subheading1 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.938rem;
  line-height: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--subheading1 {
  margin: -0.313rem 0 0.813rem -0.06em; }

.mdc-typography--body2 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--body2 {
  margin: -0.25rem 0 0.75rem 0; }

.mdc-typography--body1 {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--body1 {
  margin: -0.25rem 0 0.75rem 0; }

.mdc-typography--caption {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: inherit;
  text-transform: inherit; }

.mdc-typography--adjust-margin.mdc-typography--caption {
  margin: -0.5rem 0 1rem -0.04em; }

.mdc-typography--button {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase; }

.mdc-typography--adjust-margin.mdc-typography--button {
  margin: inherit; }

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

@keyframes vex-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes vex-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-moz-keyframes vex-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-ms-keyframes vex-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-o-keyframes vex-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes vex-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes vex-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-moz-keyframes vex-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-ms-keyframes vex-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-o-keyframes vex-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); }
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg); } }

@-webkit-keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); }
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg); } }

@-moz-keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); }
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg); } }

@-ms-keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); }
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg); } }

@-o-keyframes vex-rotation {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg); }
  100% {
    transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg); } }

.vex, .vex *, .vex *:before, .vex *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.vex {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1111;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.vex-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.vex-overlay {
  background: #000;
  filter: alpha(opacity=40);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; }

.vex-overlay {
  animation: vex-fadein 0.5s;
  -webkit-animation: vex-fadein 0.5s;
  -moz-animation: vex-fadein 0.5s;
  -ms-animation: vex-fadein 0.5s;
  -o-animation: vex-fadein 0.5s;
  -webkit-backface-visibility: hidden;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .vex.vex-closing .vex-overlay {
    animation: vex-fadeout 0.5s;
    -webkit-animation: vex-fadeout 0.5s;
    -moz-animation: vex-fadeout 0.5s;
    -ms-animation: vex-fadeout 0.5s;
    -o-animation: vex-fadeout 0.5s;
    -webkit-backface-visibility: hidden; }

.vex-content {
  animation: vex-fadein 0.5s;
  -webkit-animation: vex-fadein 0.5s;
  -moz-animation: vex-fadein 0.5s;
  -ms-animation: vex-fadein 0.5s;
  -o-animation: vex-fadein 0.5s;
  -webkit-backface-visibility: hidden;
  background: #fff; }
  .vex.vex-closing .vex-content {
    animation: vex-fadeout 0.5s;
    -webkit-animation: vex-fadeout 0.5s;
    -moz-animation: vex-fadeout 0.5s;
    -ms-animation: vex-fadeout 0.5s;
    -o-animation: vex-fadeout 0.5s;
    -webkit-backface-visibility: hidden; }

.vex-close:before {
  font-family: Arial, sans-serif;
  content: "\00D7"; }

.vex-dialog-form {
  margin: 0; }

.vex-dialog-button {
  text-rendering: optimizeLegibility;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }

.vex-loading-spinner {
  animation: vex-rotation 0.7s linear infinite;
  -webkit-animation: vex-rotation 0.7s linear infinite;
  -moz-animation: vex-rotation 0.7s linear infinite;
  -ms-animation: vex-rotation 0.7s linear infinite;
  -o-animation: vex-rotation 0.7s linear infinite;
  -webkit-backface-visibility: hidden;
  -moz-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 1112;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2em;
  width: 2em;
  background: #fff; }

body.vex-open {
  overflow: hidden; }

@keyframes vex-pulse {
  0% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; }
  70% {
    -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
  100% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; } }

@-webkit-keyframes vex-pulse {
  0% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; }
  70% {
    -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
  100% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; } }

@-moz-keyframes vex-pulse {
  0% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; }
  70% {
    -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
  100% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; } }

@-ms-keyframes vex-pulse {
  0% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; }
  70% {
    -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
  100% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; } }

@-o-keyframes vex-pulse {
  0% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; }
  70% {
    -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25); }
  100% {
    -moz-box-shadow: inset 0 0 0 300px transparent;
    -webkit-box-shadow: inset 0 0 0 300px transparent;
    box-shadow: inset 0 0 0 300px transparent; } }

.vex.vex-theme-plain {
  padding-top: 160px;
  padding-bottom: 160px; }
  .vex.vex-theme-plain .vex-content {
    font-family: "Helvetica Neue", sans-serif;
    background: #fff;
    color: #444;
    padding: 1em;
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    width: 450px;
    font-size: 1.1em;
    line-height: 1.5em; }
    .vex.vex-theme-plain .vex-content h1, .vex.vex-theme-plain .vex-content h2, .vex.vex-theme-plain .vex-content h3, .vex.vex-theme-plain .vex-content h4, .vex.vex-theme-plain .vex-content h5, .vex.vex-theme-plain .vex-content h6, .vex.vex-theme-plain .vex-content p, .vex.vex-theme-plain .vex-content ul, .vex.vex-theme-plain .vex-content li {
      color: inherit; }
  .vex.vex-theme-plain .vex-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer; }
    .vex.vex-theme-plain .vex-close:before {
      position: absolute;
      content: "\00D7";
      font-size: 26px;
      font-weight: normal;
      line-height: 31px;
      height: 30px;
      width: 30px;
      text-align: center;
      top: 3px;
      right: 3px;
      color: #bbb;
      background: transparent; }
    .vex.vex-theme-plain .vex-close:hover:before, .vex.vex-theme-plain .vex-close:active:before {
      color: #777;
      background: #e0e0e0; }
  .vex.vex-theme-plain .vex-dialog-form .vex-dialog-message {
    margin-bottom: .5em; }
  .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input {
    margin-bottom: 1em; }
    .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"], .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"] {
      background: #f0f0f0;
      width: 100%;
      padding: .25em .67em;
      border: 0;
      font-family: inherit;
      font-weight: inherit;
      font-size: inherit;
      min-height: 2.5em;
      margin: 0 0 .25em; }
      .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input select:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input textarea:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="date"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="datetime-local"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="email"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="month"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="number"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="password"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="search"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="tel"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="text"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="time"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="url"]:focus, .vex.vex-theme-plain .vex-dialog-form .vex-dialog-input input[type="week"]:focus {
        -moz-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
        outline: none; }
  .vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons {
    *zoom: 1; }
    .vex.vex-theme-plain .vex-dialog-form .vex-dialog-buttons:after {
      content: "";
      display: table;
      clear: both; }
  .vex.vex-theme-plain .vex-dialog-button {
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
    float: right;
    margin: 0 0 0 .5em;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .8em;
    line-height: 1em;
    padding: .75em 2em; }
    .vex.vex-theme-plain .vex-dialog-button.vex-last {
      margin-left: 0; }
    .vex.vex-theme-plain .vex-dialog-button:focus {
      animation: vex-pulse 1.1s infinite;
      -webkit-animation: vex-pulse 1.1s infinite;
      -moz-animation: vex-pulse 1.1s infinite;
      -ms-animation: vex-pulse 1.1s infinite;
      -o-animation: vex-pulse 1.1s infinite;
      -webkit-backface-visibility: hidden;
      outline: none; }
      @media (max-width: 568px) {
        .vex.vex-theme-plain .vex-dialog-button:focus {
          animation: none;
          -webkit-animation: none;
          -moz-animation: none;
          -ms-animation: none;
          -o-animation: none;
          -webkit-backface-visibility: hidden; } }
    .vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-primary {
      background: #3288e6;
      color: #fff; }
    .vex.vex-theme-plain .vex-dialog-button.vex-dialog-button-secondary {
      background: #e0e0e0;
      color: #777; }

.vex-loading-spinner.vex-theme-plain {
  height: 2.5em;
  width: 2.5em; }

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.plugins_page_list .plugins-list .slick-loading .slick-list {
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}

/* Arrows */
.plugins_page_list .slick-prev,
.plugins_page_list .slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.plugins_page_list .slick-prev:hover,
.plugins_page_list .slick-prev:focus,
.plugins_page_list .slick-next:hover,
.plugins_page_list .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.plugins_page_list .slick-prev:hover:before,
.plugins_page_list .slick-prev:focus:before,
.plugins_page_list .slick-next:hover:before,
.plugins_page_list .slick-next:focus:before {
    opacity: 1;
}

.plugins_page_list .slick-prev.slick-disabled:before,
.plugins_page_list .slick-next.slick-disabled:before {
    opacity: .25;
}

.plugins_page_list .slick-prev:before,
.plugins_page_list .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.plugins_page_list .slick-prev {
    left: -25px;
}

.plugins_page_list [dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.plugins_page_list .slick-prev:before {
    content: '←';
}

.plugins_page_list [dir='rtl'] .slick-prev:before {
    content: '→';
}

.plugins_page_list .slick-next {
    right: -25px;
}

.plugins_page_list [dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.plugins_page_list .slick-next:before {
    content: '→';
}

.plugins_page_list [dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.plugins_page_list .slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.plugins_page_list .slick-dots {
    position: absolute;
    bottom: -25px;

    display: flex !important;
    justify-content: space-around;
    align-items: baseline;
    flex-direction: row;

    width: 70%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.plugins_page_list .slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    /*margin: 0 5px;*/
    padding: 0;

    cursor: pointer;
}

.plugins_page_list .slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 4px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.plugins_page_list .slick-dots li button:hover,
.plugins_page_list .slick-dots li button:focus {
    outline: none;
}

.plugins_page_list .slick-dots li button:hover:before,
.plugins_page_list .slick-dots li button:focus:before {
    opacity: 1;
}

.plugins_page_list .slick-dots li button:before {
    font-family: 'Roboto';
    font-size: 41px;
    line-height: 20px;
    margin-left: 3px;
    position: absolute;
    top: 0;
    left: 0;

    width: 12px;
    height: 3px;
    background-color: #ebebeb;
    border-radius: 10px;

    content: '';
    text-align: center;

    opacity: 1;
    color: transparent;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.plugins_page_list .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #cccccc;
    background-color: #cccccc;
}

/*
font-family: 'Nunito', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Nunito Sans', sans-serif;
*/

/************  HEADER BANNER *****************/
#packages_page_primary *:not(i) {
    font-family: 'Roboto', sans-serif !important;
}

.visible-sm-box {
    display: none;
}

.packages_header_banner {
    background-color: #ff2b26;
    width: 100%;
    height: 270px;
}

.packages_header_banner .left_half, .packages_header_banner .right_half {
    width: 50%;
    float: left;
    height: 270px;
    position: relative;
}

.packages_header_banner .left_half img {
    height: 150px;
}

.packages_header_banner .right_half {
    background-image: url("../images/packages/shine.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100%;
    display: flex;
    align-items: center;
}

.packages_header_banner .right_half img {
    position: absolute;
    right: 10%;
}

.packages_header_banner .left_half .img_section {
    position: absolute;
    left: 5%;
    top: 10%;
    width: 133px;
}

.packages_header_banner .left_half .content_section {
    position: absolute;
    right: 0;
    width: -moz-calc(90% - 150px) !important;
    width: -webkit-calc(90% - 150px) !important;
    width: calc(90% - 150px) !important;
    top: 17%;
}

.packages_header_banner .left_half .content_section h2 {
    color: #FFF;
    font-size: 28px;
    line-height: 34px;
    font-weight: bold;
}

.packages_header_banner .left_half .content_section h5 {
    color: #FFF;
    font-size: 16px;
    line-height: 20px;
    margin-top: 7px;
    padding-right: 20px
}

/******************  MIDDLE BANER  *******************/

.packages_middle_banner {
    background-color: #448aff;
    width: 100%;
    height: 420px;
}

.packages_middle_banner .left_half, .packages_middle_banner .right_half {
    width: 50%;
    float: left;
    height: 420px;
    position: relative;
}

.packages_middle_banner .right_half {
    background-image: url("../images/packages/wp_vector.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 48%;
}

.packages_middle_banner.joomla .right_half {
    background-image: url("../images/packages/joomla_vector.png");
}

.packages_middle_banner .left_half .img_section {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
}

.packages_middle_banner .content_section {
    color: #fff;
    /*text-align: center;*/
    padding-left: 8%;
    margin-top: 100px;
}

.packages_middle_banner .content_section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.packages_middle_banner .content_section h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top:15px;
}

.packages_middle_banner .content_section h5 {
    font-size: 20px;
    padding-top:15px;
}

.packages_middle_banner .green_btn {
    margin-top: 35px;
}

.packages_middle_banner .green_btn a {
    text-decoration: none;
    background-color: #00c853;
    color: #fff;
    padding: 13px 30px;
    border-radius: 3px;
    box-shadow: 0px 2px 9px #00000036;
    transition: box-shadow 0.3s ease-in-out;
    position: absolute;
}

.packages_middle_banner .green_btn a:hover {
    box-shadow: 0px 2px 9px #00000052;
    transition: box-shadow 0.3s ease-in-out;
}

/******************  Active Users  *******************/

.packages_active_users {
    background-color: #f5f6fa;
    width: 100%;
    height: 420px;
    background-image: url("../images/packages/map.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

.packages_active_users .content_section {
    color: #212b35;
    text-align: center;
    padding-top: 70px;
}

.packages_active_users .content_section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.packages_active_users .content_section h5 {
    font-size: 20px;
    margin-bottom: 18px;
}

.packages_active_users .content_section #active_count {
    font-size: 70.4px;
    font-weight: bold;
    color: #596fff;
}

.packages_active_users .content_section img {
    margin-top: 20px;
}

.packages_active_users .content_section p {
    color: #727171;
    font-size: 24.4px;
}



/******************  PLUSGINS LIST GLOBAL  *****************************/



.plugins_list {
    text-align: center;
    margin-top: 50px !important;
    color: #333333;
    padding-bottom:20px;
}

.plugins_list .section-headline {
    position:relative;
    margin:0px auto;
    width:720px;
    padding:0px 0px 30px 0px;
    text-align:center;
}

.plugins_list .section-headline .section-logo {margin-bottom:11px;}

.plugins_list .section-headline a,.plugins_list .section-headline a:hover {text-decoration:none;}

.plugins_list .section-headline .section-logo svg {
    width:77px;
    height:77px;
}

.plugins_list.packages_joomla_extensions .section-logo  .svg_block {
    position:relative;
    margin:0px auto;
    width:77px;
    height:77px;
    border-radius: 38px;
    overflow:hidden;
    background:#f54337;
}

.plugins_list.packages_joomla_extensions .section-logo  .svg_block svg {
    width: 45px;
    height: 45px;
    padding:15px;
}

.plugins_list.packages_joomla_extensions .section-logo  .svg_block svg path {
    fill: #fff;
}

.plugins_list .section-headline .section-logo svg path {
    fill:#f54337;
}

.plugins_list .section-headline .section-title {
    margin-bottom:19px;
    color:#333;
    font-size:38px;
    font-family:'HelveticaNeue Light';
}

.plugins_list .section-headline  .section-large-text {
    color:#333;
    font-size:20px;
    line-height:25px;
    font-family:'HelveticaNeue Thin';
}

.plugins_list .slick-slider .slick-track {padding:10px 0px 10px 0px;}
.plugins_list .slick-slide {
    margin: 0px 10px;
    max-height: 53%;
}



.plugins_list ul.plugins_page_list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    margin-bottom:15px;
}

.plugins_list ul li.product_item {
    flex-basis: 20%;
    margin: 1%;
    box-shadow: 0px 2px 2.82px 0.18px rgba(0, 0, 0, 0.24);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

@media screen and  (min-width: 786px) {
    .plugins_list ul li.product_item:hover {
        box-shadow: 0px 7px 14.1px 0.9px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        transform: translateY(-10px);
    }
}

.plugins_list ul li.product_item .image_block {
    position: relative;
}

.plugins_list ul li.product_item .image_block img {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 15px solid #fff;
    border-radius: 9px;
    background-color: #fff;
}

.plugins_list.packages_joomla_extensions ul li.product_item .image_block img {border-radius: 50%;}

.plugins_list ul li.product_item .image_block .image_header {
    width: 100%;
    height: 99px;
    border-radius: 3px 3px 0px 0px;
}

.plugins_list ul li.product_item .title {
    margin-top: 63px;
    margin-bottom: 7px;
    color: #303030;
    font-size: 24px;
}

.plugins_list ul li.product_item .title a {
    color: #303030;
    font-size: 24px;
    line-height: 25px;
    text-decoration: none;
    color: #303030;
}

.plugins_list ul li.product_item .description {
    padding: 0px 20px;
    color: #505050;
    font-size: 17px;
}

.plugins_list ul li.product_item .read_more_block {
    margin: 40px 0px;
}

.plugins_list ul li.product_item .read_more_block a {
    text-decoration: none;
    color: #505050;
    font-size: 17px;
}

.plugins_list .more_plugins {
    margin: 40px 0px 50px 0;
}

.plugins_list .more_plugins a {
    background: #e53935;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    padding: 14px 18px;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.plugins_list .more_plugins a:hover {
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 11px #a9a9a9;
}

.plugins_page_list .hidden_item {
    display: none;
}

/******************  Priority Support *******************/

.packages_priority_support {
    background-color: #f5f6fa;
    width: 100%;
    height: 310px;
    text-align: center;
    padding: 30px 0px 54px 0px;
    color: #303030;
}

.packages_priority_support .content_section h3 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 14px;
    margin-bottom: 4px;
}

.packages_priority_support .content_section h5 {
    font-size: 24px;
    margin-bottom: 18px;
}

.packages_priority_support ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.packages_priority_support ul li {
    flex-basis: 33.33%;
    position: relative;
}

.packages_priority_support ul li h2 {
    color: #f0bdbf;
    font-size: 120px;
}

.packages_priority_support ul li p {
    position: absolute;
    top: 45%;
    font-size: 23px;
    font-weight: bold;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/******************  FOOTER BANER  *******************/

.packages_footer_banner {
    background-color: #3c3c3c;
    width: 100%;
    height: 272px;
}

.packages_footer_banner .left_half, .packages_footer_banner .right_half {
    width: 50%;
    float: left;
    height: 272px;
    position: relative;
}

.packages_footer_banner .right_half {
    text-align: center;
}

.packages_footer_banner .left_half .img_section {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    /*font-family: 'Nunito', sans-serif;*/
}

.packages_footer_banner .content_section {
    color: #fff;
    margin-top: 70px;
    padding: 0 45px;
}

.packages_footer_banner .content_section h2 {
    font-size: 33px;
    font-weight: bold;
    margin-bottom: 5px;
}

.packages_footer_banner .content_section h5 {
    font-size: 22px;
    font-weight: 100;
    /*font-family: 'Nunito', sans-serif;*/
}

.packages_footer_banner .red_btn {
    margin-top: 28px;
}

.packages_footer_banner .red_btn a {
    text-decoration: none;
    font-size: 20px;
    background-color: #ff0606;
    color: #fefefe;
    padding: 13px 29px;
    border-radius: 3px;
    box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.51);
    transition: box-shadow 0.3s ease-in-out;
}

.packages_footer_banner .red_btn a:hover {
    box-shadow: 0px 7px 14px #00000066;
    transition: box-shadow 0.3s ease-in-out;
}

#thin1 {
    position: absolute;
    left: 0;
    right: -56px;
    top: -77px; /*-7*/
    z-index: 3;
}

#thin2 {
    position: absolute;
    left: 0;
    right: -56px;
    top: -22px; /*28*/
    z-index: 2;
}

#thin3 {
    position: absolute;
    left: 0;
    right: -56px;
    top: 37px; /*64*/
    z-index: 1;
}

/********************  PACKAGES TYPES  ***********************/

.packages_wp_packages {
    /*background-color: #f5f7f8;*/
    padding-top: 33px;
    color: #303030;
    padding-bottom: 35px !important;
}

.packages_wp_packages .secure_type {
    list-style-type: none;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 70px !important;
}

.packages_wp_packages .secure_type li {
    flex-basis: 50%;
    padding-left:3%;
}

.packages_wp_packages .secure_type li img {
    float: left;
    margin-right: 14px;
}

.packages_wp_packages .secure_type li h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.packages_wp_packages .secure_type li h5 {
    color: #5b5b5b;
    font-size: 14px;
}

.packages_wp_packages .secure_type li h5 a, .packages_wp_packages .secure_type li h5 a:link, .packages_wp_packages .secure_type li h5 a:visited,
.packages_wp_packages .secure_type li h5 a:hover, .packages_wp_packages .secure_type li h5 a:focus, .packages_wp_packages .secure_type li h5 a:active {
    color: #5b5b5b;
}

.packages_list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    padding-bottom: 90px;
}

.packages_list .benefits  .option_value {
    text-align:left;
}

.packages_list .col {
    flex-basis: 25%;
    position: relative;
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
}

.packages_list p {
    border-bottom: 1px solid #e7ebee;
    padding: 10px 7px;
    color: #767676;
}

.packages_list p i {
    font-size: 18px;
}

.packages_list .header {
    background-color: #e7ebee;
    color: #5c6677;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 19px 7px 10px;
}

.packages_list .col_name .header {
    text-align: left;
}

.packages_list .price {
    color: #5c6677;
    font-size: 18px;
    font-weight: bold;
}

.packages_list .active .price {
    color: #fff;
}

.packages_list .option_value {
    text-align: center;
}

.packages_list .option_value .done {
    color: #47c683;
}

.packages_list .option_value .close {
    color: #e33935;
}

.packages_list .best_seller {
    position: absolute;
    width: 100%;
    z-index: 0 !important;
    text-align: center;
    top: -12px !important;
    background-color: #8dc63f;
    padding: 3px 0;
    width: 100%;
    border-radius: 3px;
    box-shadow: none !important;
}

.packages_list .best_seller span {
    background: transparent !important;
    color: #fff;
    padding: 4px 12px !important;
    font-size: 13px !important;
    border-radius: 3px;
    box-shadow: 0px 0px 0px #717171 !important;
    position: relative;
    top: -4px;
    font-weight: 500;
    letter-spacing: 1px;
}

.packages_list .best_seller span {
    top: 0px;
}

.packages_list .active .best_seller {
    position: absolute;
    width: 100%;
    z-index: 1 !important;
    text-align: center;
    top: -19px !important;
    background-color: #8dc63f;
    padding: 3px 0;
    width: 100%;
    border-radius: 3px 3px 0px 0px !important;
    box-shadow: 0px -2px 9px 0px #bfbfbf !important;
}

.packages_list .active .best_seller span {
    background: transparent !important;
    color: #fff;
    padding: 4px 12px !important;
    font-size: 13px !important;
    border-radius: 3px;
    box-shadow: 0px 0px 0px #717171 !important;
    position: relative;
    top: -4px;
    font-weight: 500;
    letter-spacing: 1px;
}

.packages_list .active .best_seller span {
    top: 0px;
}

.packages_list .active p {
    border-color: #3cb878 !important;
    color: #fff;
    transition: border-color 0.2s ease-in-out !important;
    border: none !important;
}

.packages_list .active p .done, .packages_list .active p .close {
    color: #fff;
}

.packages_list .active .option_value {
    background-color: #3cb878 !important;
    /*transition: background-color 0.3s ease-in-out;*/

}

.packages_list .active .header {
    background-color: #219d5d;
    position: relative;
    padding: 10px 0px !important;
    border-radius: 3px 3px 0px 0px !important;
    transition: background-color 0.3s ease-in-out;
}

.packages_list .active {
    top: 0px !important;
    box-shadow: 0px 0px 19px #969696;
    z-index: 2;
    transform: scale(1.15);
    transition: all 0.2s ease-in-out !important;
    background: #3cb878 !important;
    border-radius: 5px;
}

.packages_list .active .first_option {
    padding-top: 10px !important;
}

.packages_list .active .last_option {
    padding-bottom: 10px !important;
    border-radius: 0 0 3px 3px;
}

.packages_list .red_btn {
    color: #303030;
    font-size: 16px;
    text-decoration: none;
    padding: 11px 29px;
    margin-top: 0px !important;
    font-weight: bold;
    position: absolute;
    right: 0;
    left: 0;
    text-align: center;
    /*transition: all 0.3s ease-in-out;*/
}

.packages_list .red_btn:hover {
    color: #e33935;
    /*transition: all 0.3s ease-in-out;*/
}

.packages_list .active .red_btn {
    text-decoration: none;
    font-size: 16px;
    background-color: #e33935;
    color: #fefefe;
    right: 0;
    left: 0;
    margin-top: 15px;
    position: absolute;
    text-align: center;
    padding: 11px 29px;
    border-radius: 3px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.23);
    transition: background 0s ease-out !important;
}

.packages_list .active .red_btn:hover {
    box-shadow: 0px 4px 14px #00000066;
    transition: box-shadow 0.3s ease-in-out !important;
}

.packages_list .option_value .visible_xs_attribute {
    display: none;
}

/***************   Media Queries  *************************/
@media screen and (max-width: 1260px) {
    .packages_header_banner .right_half img {
        right: 0px;
    }
}

@media screen and (max-width: 1200px) {

    .plugins_list .section-headline {
        padding:26px 0px 28px 0px;
    }

    .plugins_list .section-headline .section-logo svg {
        width:57px;
        height:57px;
    }

    .plugins_list .section-headline .section-title {
        margin-bottom:13px;
        font-size:24px;
    }

    .plugins_list .section-headline .section-large-text {
        font-size:18px;
    }

    .plugins_list ul li.product_item {
        flex-basis: 23%;
    }

    .packages_header_banner .right_half {
        background-size: cover;
    }

    .packages_header_banner .right_half img {
        max-width: 100%;
    }

    .packages_footer_banner .content_section h2 {
        font-size: 30px;
    }

    .packages_footer_banner .content_section h5 {
        font-size: 18px;
    }

    .packages_footer_banner .red_btn a {
        font-size: 16px;
        padding: 10px 25px;
    }

    .packages_footer_banner .content_section {
        margin-top: 56px;
    }
}

@media screen and (max-width: 1100px) {
    /* .thin {
         display: none;
     }*/
    .packages_footer_banner .content_section {
        margin-top: 45px;
    }

    .packages_wp_packages .secure_type li {
        text-align: center;
        padding: 0 25px;
    }

    .packages_wp_packages .secure_type li img {
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .visible-sm-box {
        display: block;
        width:400px;
    }

    .hidden-sm-box {
        display: none;
    }
    .packages_footer_banner .left_half .img_section .visible-sm-box {
        height: 100%;
        float: right;
        position: relative;
        top: 30px;
    }

    .packages_footer_banner {
        height: 305px;
        display: flex;
        align-items: center;
    }

    #thin1, #thin2, #thin3 {
        left: unset !important;
        right: 60px !important;
    }

    #thin1 img, #thin2 img, #thin3 img {
        width: 175px;
    }
}

@media screen and (max-width: 992px) {

    .packages_header_banner .right_half img {
        display: block !important;
    }

    .packages_header_banner .right_half .image_block {
        display: none;
    }

    .plugins_list ul li.product_item {
        flex-basis: 30%;
    }

    .packages_header_banner .left_half .content_section h5 {
        display: none;
    }

    .packages_middle_banner .content_section {
        margin-top: 20px;
    }

    .packages_middle_banner, .packages_middle_banner .left_half, .packages_middle_banner .right_half {
        height: 300px;
    }

    .packages_middle_banner .left_half .img_section {
        position: static;
        height: 100%;
    }

    .packages_middle_banner .left_half .img_section img {
        max-height: 100%;
    }

    .packages_middle_banner .content_section h2 {
        font-size: 35px;
        line-height: 37px;
    }

    .packages_middle_banner .content_section h4 {
        font-size: 22px;
        line-height: 24px;
    }

    .packages_footer_banner .content_section {
        margin-top: 24px;
    }
}

@media screen and (min-width: 769px) {

    .packages_list .buy_btn_section {
        position: absolute;
        padding-top: 35px;
        width: 100%;
    }

    .packages_list .active .buy_btn_section {
        padding-top: 15px;
    }
}

@media screen and (max-width: 768px) {
    .plugins_list .section-headline {
        width:100%;
        max-width:768px;
        padding:20px 0px 20px 0px;
    }

    .plugins_list .section-headline .section-logo svg {
        width:47px;
        height:47px;
    }

    .plugins_list .section-headline .section-title {
        margin-bottom:13px;
        font-size:20px;
    }

    .plugins_list .section-headline .section-large-text {
        width:310px;
        font-size:14px;
        line-height: 17px;
        margin:0px auto;
    }

    .packages_list .best_seller {
        display: block !important;
        border-radius: 0px !important;
    }

    .packages_list .best_seller {
        border-radius: 3px 3px 0px 0px !important;
    }

    .packages_middle_banner .icon {
        display: none !important;
    }

    .plugins_list ul li.product_item {
        flex-basis: 45%;
    }

    .plugins_list ul li.product_item .title {
        height: 32px;
    }

    .plugins_page_list .hidden_item {
        display: block;
    }

    .packages_header_banner .left_half .content_section h5 {
        display: block;
        font-weight: 300;
    }

    .packages_wp_plugins .more_plugins {
        display: none;
    }

    .plugins_list ul li.product_item .description {
        display: block;
        height: 113px;
    }

    .plugins_list ul li.product_item .read_more_block {
        margin: 0px;
        margin-bottom: 30px;
    }

    .packages_priority_support {
        height: auto;
    }

    .packages_priority_support ul li {
        flex-basis: 100%;
    }

    .packages_header_banner {
        background-image: url("../images/packages/shine.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50%;
        height: 300px;
    }

    .packages_header_banner .left_half .img_section {
        display: none;
    }

    .packages_header_banner .left_half, .packages_header_banner .right_half {
        width: 100%;
        height: auto;
        float: none;
        background-image: none;
        display: block;
    }

    .packages_header_banner .left_half .content_section {
        position: static;
        margin: 0 auto;
        text-align: center;
        width: calc(100% - 100px);
    }

    .packages_header_banner .right_half img {
        left: 0;
        margin: 0 auto;
    }

    .packages_header_banner .right_half img {
        max-height: 180px;
        margin-top: 15px;
    }

    .packages_header_banner .left_half .content_section h2 {
        font-size: 20px;
        line-height: 23px;
        font-weight: 500;
        padding-top: 25px;
    }

    .packages_middle_banner .content_section h4, .packages_middle_banner .content_section h5 {
        display: none;
    }

    .packages_middle_banner .content_section {
        padding-left: 0px;
        padding-right: 15px;
    }

    .packages_middle_banner .content_section h2 {
        font-size: 40px;
        line-height: 41px;
    }

    .packages_middle_banner .right_half {
        background: none;
    }

    .packages_middle_banner, .packages_middle_banner .left_half, .packages_middle_banner .right_half {
        height: 222px;
    }

    .packages_middle_banner .green_btn a {
        font-size: 14px;
        padding: 10px 25px;
        left: 0;
    }

    .packages_middle_banner .green_btn {
        margin-top: 16px;
    }

    .packages_active_users .content_section {
        padding: 20px 22px 0px 22px;
    }

    .packages_active_users .content_section h2 {
        font-size: 25px;
        line-height: 29px;
        margin-bottom: 0px;
    }

    .packages_active_users .content_section h5 {
        display: none;
    }

    .packages_active_users .content_section #active_count {
        font-size: 35px;
    }

    .packages_active_users .content_section img {
        margin-top: 6px;
        width: 19px;
    }

    .packages_active_users .content_section p {
        font-size: 14px;
    }

    .packages_active_users {
        height: 177px;
    }

    .packages_wp_plugins {
        margin-top: 23px !important;
    }

    .packages_wp_plugins .plugins_page_head img {
        margin-bottom: 15px;
        width: 45px;
    }

    .plugins_list ul {
        margin-top: 15px;
    }

    .packages_wp_plugins .plugins_page_head h1 {
        font-size: 20px;
        margin-top: 0;
    }

    .packages_wp_plugins .plugins_page_head .description {
        display: block;
        font-size: 13px;
        line-height: 15px;
        margin-top: 10px;
        width: 70%;
    }

    .packages_priority_support {
        padding: 9px 0 0;
    }

    .packages_priority_support img {
        width: 26px;
    }

    .packages_priority_support .content_section h3 {
        margin-top: 6px;
        font-size: 14px;
    }

    .packages_priority_support .content_section h5 {
        font-size: 12px;
        margin-bottom: 9px;
    }

    .packages_priority_support ul li h2 {
        font-size: 55px;
    }

    .packages_priority_support ul li p {
        font-size: 14px;
        top: 41%;
    }

    /*.packages_footer_banner .left_half .img_section {
        display: none;
    }*/
    .packages_footer_banner, .packages_footer_banner .left_half, .packages_footer_banner .right_half {
        height: 290px;
    }

    /* .packages_footer_banner .left_half {
         background-image: url("../../../../images/packages/box_mobile.png");
         background-size: contain;
         background-repeat: no-repeat;
         background-position: 50%;
     }*/
    .packages_footer_banner .left_half .img_section .visible-sm-box {
        height: 92%;
        float: right;
        position: relative;
        top: 33px;
        right: 2px;
    }

    .packages_footer_banner .content_section {
        margin-top: 74px;
        padding: 0px 20px;
    }

    .packages_footer_banner .content_section h5 {
        display: none;
    }

    .packages_footer_banner .content_section h2 {
        margin-bottom: 36px;
    }

    .packages_footer_banner .red_btn {
        margin-top: 21px;
    }

    .packages_wp_packages .secure_type li {
        text-align: center;
        padding: 0 25px;
    }

    .packages_wp_packages {
        padding-top: 0px;
    }

    .packages_wp_packages .secure_type li h5 {
        display: none;
    }

    .packages_wp_packages .secure_type {
        margin-bottom: 10px;
        padding: 21px 0;
        background: #fff;
    }

    .packages_list {
        flex-wrap: wrap;
        padding-bottom:0px;
    }

    .packages_list .benefits {
        display: none;
    }

    .packages_list .col {
        flex-basis: 60%;
        background: #fff;
        border-radius: 3px;
        margin-top: 25px;
        box-shadow: 0px 2px 2.82px 0.18px rgba(0, 0, 0, 0.16);
    }

    .packages_list .active {
        padding-bottom: 95px;
        margin-top: 0px;
    }

    .packages_list .active .header, .packages_list .header {
        background-color: #fff;
        color: #303030;
        font-size: 24px;
        padding-bottom: 0px;
        border-radius: 3px 3px 0 0;
    }

    .packages_list .active {
        box-shadow: 0px 4px 19.4px 0.6px rgba(0, 0, 0, 0.16);
        padding-bottom: 95px;
        top: 0px;
        margin-top: 25px;
        background: #fff !important;
        transform: scale(1);
        transition: all 0s ease-in-out !important;
    }

    .packages_list .active p {
        padding: 8px 7px;
    }

    .packages_list .active .option_value, .packages_list .option_value {
        background-color: #fff !important;
        color: #767676;
        text-align: left;
        width: 70%;
        margin: 0 auto;
        font-size: 17px;
    }

    .packages_list .active p, .packages_list p {
        border: 0px;
    }

    .packages_list .active p i, .packages_list p i {
        margin-right: 21px;
        font-size: 20px;
    }

    .packages_list .active p .done {
        color: #47c683;
    }

    .packages_list .active p .close {
        color: #e33935;
    }

    .packages_list .option_value .visible_xs_attribute {
        display: inline-block;
    }

    .packages_list .active .last_option {
        background-color: #3cb878 !important;
        padding: 8px 7px;
        position: absolute;
        width: 104%;
        left: -3%;
        border-radius: 3px;
        margin-top: 5px;
        box-shadow: 0px 3px 6.58px 0.42px rgba(0, 0, 0, 0.17);
    }

    .packages_list .active .option_value .price {
        font-size: 45px;
        padding: 14px 19px;
        color: #fff;
    }

    .packages_list .active .red_btn {
        background-color: transparent;
        color: #fff;
        text-align: right;
        box-shadow: none;
        font-size: 18px;
        padding: 36px 0px 10px;
        margin-top: 6px;
    }

    .packages_list .active .red_btn:hover {
        box-shadow: none;
    }

    .packages_list .last_option {
        background-color: #fff;
        border-radius: 3px;
        padding: 0;
    }

    .packages_list .option_value .price {
        font-size: 45px;
        color: #58cb8e;
        padding: 0;
    }

    .packages_list .red_btn {
        background-color: transparent;
        text-align: right;
        position: static;
        box-shadow: none;
        color: #5c6677;
        font-size: 16px;
        padding: 0px 35px 20px;
        margin-top: 0px;
        float: right;
    }

    .plugins_list .more_plugins a:hover {
        transition: none;
        box-shadow: 0px 2px 2.82px 0.18px #a9a9a9;
    }

}

@media screen and (max-width: 680px) {

    .packages_header_banner .left_half .content_section h5 {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .packages_list .col {
        flex-basis: 80%;
    }

    .packages_header_banner {
        height: 222px;
    }

    .packages_header_banner .right_half img {
        max-height: 130px;
    }

    .packages_header_banner .left_half .content_section h5 {
        display: none;
    }

    .packages_wp_packages .secure_type li img {
        float: none;
        height: 25px;
        margin: 0px 0px 5px;
    }

    .packages_wp_packages .secure_type li h4 {
        font-size: 13px;
        line-height: 16px;
    }

    .packages_middle_banner .content_section h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .packages_middle_banner, .packages_middle_banner .left_half, .packages_middle_banner .right_half {
        height: 162px;
    }

    .plugins_list ul li.product_item {
        flex-basis: 90%;
    }

    .packages_header_banner .right_half img {
        max-width: 80%;
    }

    .packages_middle_banner .content_section {
        margin-top: 15px;
    }

    .packages_middle_banner .green_btn {
        margin-top: 12px;
    }

    .packages_footer_banner .left_half {
        background-size: cover;
    }

    .packages_list .active .option_value, .packages_list .option_value {
        width: 75%;
    }

    .packages_list .active .last_option {
        width: 104%;
    }

    .plugins_list ul li.product_item .description {
        height: 100px;
    }

    .packages_active_users {
        height: 144px;
    }

    .packages_active_users .content_section h2 {
        font-size: 18px;
        line-height: 19px;
        margin-bottom: 0px;
    }

    .packages_active_users .content_section #active_count {
        font-size: 30px;
    }

    .packages_footer_banner .red_btn a {
        font-size: 14px;
        padding: 8px 19px;
    }

    .packages_footer_banner .content_section h2 {
        font-size: 14px;
        line-height: 12px;
        margin-bottom: 5px;
    }

    .packages_footer_banner .content_section {
        margin-top: 40px;
        padding: 0px;
    }

    .packages_footer_banner, .packages_footer_banner .left_half, .packages_footer_banner .right_half {
        height: 130px;
    }

    .packages_footer_banner .left_half .img_section .visible-sm-box {
        top: 7px;
        width:191px;
        height: 100%;
    }

    #thin1 img, #thin2 img, #thin3 img {
        width: 88px;
    }

    #thin1, #thin2, #thin3 {
        right: 28px !important;
    }

    #thin1 {
        top: -37px; /*-7*/
    }

    #thin2 {
        top: -14px; /*28*/
    }

    #thin3 {
        top: 10px; /*64*/
    }

}

@media screen and (max-width: 375px) {
    .packages_list .active .option_value, .packages_list .option_value {
        font-size: 16px;
    }

    .packages_list .active p i, .packages_list p i {
        font-size: 16px;
    }
}


/*STYLES FROM PACKAGE .PHP FILE*/
[class^="btn-"] {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 80px;
    max-width: 250px;
    margin: 1rem auto;
    text-transform: uppercase;
    border: 1px solid currentColor;
}

.btn-6 {
    color: #28abc8;
}

.btn-6 .bg {
    position: absolute;
    display: block;
    width: 0;
    height: 100%;
    background-color: #3cb878;
    -webkit-transition: width 0.25s ease-in-out;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    top: 100%;
    z-index: 1;
}

.btn-6 .bg_header {
    background-color: #219d5d;
}

.btn-6:hover {
    color: #c0e6ef;
}

.btn-6:hover .bg {
    width: 200%;
    height: 100%;
    min-height: 80px;
}

.packages_header_banner .right_half img {
    display: none;
}

.packages_header_banner .image_block, .packages_middle_banner .img_section {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.packages_header_banner .image_block .icon, .packages_middle_banner .img_section .icon {
    position: absolute;
    display: block;
    background-image: url(/wp-content/themes/Huge-IT-theme/dist/images/packages/banner_icons.png);
}

.packages_header_banner.joomla .image_block .icon, .packages_middle_banner.joomla .img_section .icon {
    background-image: url(/wp-content/themes/Huge-IT-theme/dist/images/packages/banner_icons_joomla.png);
}

.packages_header_banner .image_block .box_transparent {
    width: 186px;
    height: 205px;
    background-position: -64px -289px;
    bottom: 67px;
    right: 334px;
}

.packages_header_banner .image_block .moped {
    width: 409px;
    height: 252px;
    background-position: -116px -2px;
    bottom: 0;
    right: 92px;
}

.packages_header_banner .image_block .box_shadow_transparent {
    width: 219px;
    height: 79px;
    background-position: 225px -208px;
    top: 55px;
    right: 324px;
}

.packages_header_banner .image_block .star_transparent {
    width: 26px;
    height: 26px;
    background-position: 216px -71px;
    bottom: 107px;
    left: 281px;
}

.packages_header_banner .image_block .dot_transparent {
    width: 15px;
    height: 15px;
    background-position: 149px -98px;
    bottom: 89px;
    left: 308px;
}

.packages_header_banner .image_block .small_dot_transparent {
    width: 11px;
    height: 11px;
    background-position: 134px -71px;
    bottom: 121px;
    left: 322px;
}

.packages_header_banner .image_block .star_2_transparent {
    width: 26px;
    height: 26px;
    background-position: 216px -71px;
    top: 34px;
    right: 126px;
}

.packages_header_banner .image_block .dot_2_transparent {
    width: 15px;
    height: 15px;
    background-position: 149px -98px;
    top: 61px;
    right: 115px;

}

.packages_header_banner .image_block .dot_small_2_transparent {
    width: 11px;
    height: 11px;
    background-position: 134px -71px;
    top: 39px;
    right: 103px;
}

/*******  middle banner paralax *****/

.packages_middle_banner .img_section .star_transparent {
    width: 26px;
    height: 26px;
    background-position: 216px -71px;
    bottom: 67px;
    left: 220px;
}

.packages_middle_banner .img_section .dot_transparent {
    width: 15px;
    height: 15px;
    background-position: 149px -98px;
    bottom: 49px;
    left: 238px;
}

.packages_middle_banner .img_section .small_dot_transparent {
    width: 11px;
    height: 11px;
    background-position: 134px -71px;
    bottom: 81px;
    left: 241px;
}

.packages_middle_banner .img_section .star_2_transparent {
    width: 26px;
    height: 26px;
    background-position: 216px -71px;
    top: 34px;
    right: 297px;
}

.packages_middle_banner .img_section .dot_2_transparent {
    width: 15px;
    height: 15px;
    background-position: 149px -98px;
    top: 61px;
    right: 308px;

}

.packages_middle_banner .img_section .dot_small_2_transparent {
    width: 11px;
    height: 11px;
    background-position: 134px -71px;
    top: 39px;
    right: 280px;
}

.packages_middle_banner .img_section .star_3_transparent {
    width: 26px;
    height: 26px;
    background-position: 216px -71px;
    top: 67px;
    left: 250px;
}

.packages_middle_banner .img_section .dot_3_transparent {
    width: 15px;
    height: 15px;
    background-position: 149px -98px;
    top: 49px;
    left: 238px;
}

.packages_middle_banner .img_section .dot_small_3_transparent {
    width: 11px;
    height: 11px;
    background-position: 134px -71px;
    top: 81px;
    left: 241px;
}

.packages_middle_banner .img_section .star_4_transparent {
    width: 26px;
    height: 26px;
    background-position: 216px -71px;
    bottom: 87px;
    right: 250px;
}

.packages_middle_banner .img_section .dot_4_transparent {
    width: 15px;
    height: 15px;
    background-position: 149px -98px;
    bottom: 69px;
    right: 238px;
}

.packages_middle_banner .img_section .dot_small_4_transparent {
    width: 11px;
    height: 11px;
    background-position: 134px -71px;
    bottom: 101px;
    right: 241px;
}

.packages_middle_banner .package_main {
    position: absolute;
    z-index: 2;
}

.packages_middle_banner .img_section .package_bg {
    -webkit-animation: spin 50s linear infinite;
    -moz-animation: spin 50s linear infinite;
    animation: spin 50s linear infinite;
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

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

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

/*.col_value:hover {
    top: -14px;
    box-shadow: 0px 0px 19px #969696;
    z-index: 2;
    !*transition: all 0.3s ease-in-out;*!
}

.col_value:hover .header {
    background: #219d5d;
    color: #fff;
    border-color: #2eaa6a;
    padding: 18px 0px;
    border-radius: 3px 3px 0 0;
    !*transition: all 0.3s ease-in-out;*!
}

.col_value:hover .option_value {
    background-color: #3cb878;
    border-color: #2eaa6a;
    color: #fff;
    !*transition: all 0.3s ease-in-out;*!
}

.col_value:hover .option_value i {
    color: #fff;
    !*transition: all 0.3s ease-in-out;*!
}

.col_value:hover .first_option {
    padding-top: 16px;
    !*transition: all 0.3s ease-in-out;*!
}

.col_value:hover .last_option {
    padding-bottom: 30px;
    border-radius: 0 0 3px 3px;
    !*transition: padding 0.3s ease-in-out;*!
}

.col_value:hover .last_option .price {
    color: #fff;
    !*transition: all 0.3s ease-in-out;*!
}

.col_value:hover .red_btn {
    margin-top: 15px;
    !*transition: all 0.2s ease-in-out;*!
}*/

@font-face {
  font-family: 'Roboto Regular';
  src: url("../fonts/Roboto-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Medium';
  src: url("../fonts/Roboto-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Light';
  src: url("../fonts/Roboto-Light.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Thin';
  src: url("../fonts/Roboto-Thin.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Thin-Italic';
  src: url("../fonts/Roboto-ThinItalic.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Bold';
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito Sans';
  src: url("../fonts/Nunito-Medium.ttf");
}

@font-face {
  font-family: 'OpenSans';
  src: url("../fonts/open-sans/OpenSans-Regular.ttf");
}

@font-face {
  font-family: 'OpenSans Bold';
  src: url("../fonts/open-sans/OpenSans-Bold.ttf");
}

@font-face {
  font-family: 'OpenSans SemiBold';
  src: url("../fonts/open-sans/OpenSans-Semibold.ttf");
}

@font-face {
  font-family: 'OpenSans BoldItalic';
  src: url("../fonts/open-sans/OpenSans-BoldItalic.ttf");
}

@font-face {
  font-family: 'OpenSans Light';
  src: url("../fonts/open-sans/OpenSans-Light.ttf");
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("../fonts/helvetica-neue/HelveticaNeueCyr-Light.otf");
}

@font-face {
  font-family: 'HelveticaNeue Light';
  src: url("../fonts/helvetica-neue/HelveticaNeueCyr-Light.otf");
}

@font-face {
  font-family: 'HelveticaNeue Thin';
  src: url("../fonts/helvetica-neue/HelveticaNeueCyr-Thin.otf");
}

@font-face {
  font-family: 'Acme Regular';
  src: url("../fonts/Acme-Regular.ttf");
}

@font-face {
  font-family: 'Merriweather BoldItalic';
  src: url("../fonts/merriweather/Merriweather-BoldItalic.ttf");
}

@font-face {
  font-family: 'Merriweather LightItalic';
  src: url("../fonts/merriweather/Merriweather-LightItalic.ttf");
}

@font-face {
  font-family: 'Baloo Regular';
  src: url("../fonts/Baloo-Regular.ttf");
}

#hero_section .hero-tab {
  display: none;
}

#hero_section .hero-tab.hero-tab--active {
  display: block;
}

#wp_hero .hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Roboto Regular';
  font-weight: 100;
  background: #fc3232;
  height: 450px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

#wp_hero .hero-inner .hero-left {
  width: 550px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 115px;
  padding-left: 132px;
}

#wp_hero .hero-inner .hero-left .hero-title {
  font-size: 55px;
  color: #fefeff;
  line-height: 1;
  margin-bottom: 23px;
  font-family: "Roboto Light";
}

#wp_hero .hero-inner .hero-left .hero-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

#wp_hero .hero-inner .hero-left .hero-content {
  font-size: 24px;
  font-weight: 100;
  color: #fdfdfd;
  line-height: 1;
  margin-bottom: 22px;
}

#wp_hero .hero-inner .hero-right {
  width: calc(100% - 550px);
  /*@media (min-width: 1200px) {
        transform: scale(1.3) translateX(15%);
      }
      @media (min-width: 1490px){
        transform: scale(1.4) translateX(15%);
      }*/
}

#wp_hero .hero-inner .hero-right .hero-3d {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scale(0.9) rotateX(56deg) rotateY(0deg) rotate(45deg);
          transform: scale(0.9) rotateX(56deg) rotateY(0deg) rotate(45deg);
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  -webkit-transform: translate(0%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
          transform: translate(0%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

@media (max-width: 1900px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform: translate(10%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
            transform: translate(10%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  }
}

@media (max-width: 1600px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform: translate(20%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
            transform: translate(20%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  }
}

@media (max-width: 1200px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform: translate(30%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
            transform: translate(30%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  }
}

@media (max-width: 375px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform-origin: 101% 51%;
            transform-origin: 101% 51%;
  }
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  min-width: 0;
  -ms-flex-preferred-size: 31.87331%;
  flex-basis: 31.87331%;
  margin-right: 2.18978%;
  margin-top: 2.18978%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  outline: none;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer:nth-child(2n+1) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link {
  position: relative;
  display: block;
  -webkit-box-shadow: 15px 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 15px 10px 25px rgba(0, 0, 0, 0.2);
  line-height: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  overflow: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link .hero-layer-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link .hero-layer-cover:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 2;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link .hero-layer-cover .hero-layer-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: inline-block;
  z-index: 3;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link img {
  max-width: 100%;
  vertical-align: middle;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer:hover .hero-layer-link {
  -webkit-transform: translate3d(-6%, -6%, -20vh);
          transform: translate3d(-6%, -6%, -20vh);
  -webkit-box-shadow: 35px 25px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 35px 25px 25px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer:hover .hero-layer-link .hero-layer-cover {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_portfolio .hero-layer-cover:after {
  background: #ef4446;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_forms .hero-layer-cover:after {
  background: #414fd3;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_gallery .hero-layer-cover:after {
  background: #f3b142;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_google_maps .hero-layer-cover:after {
  background: #49b050;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_photo_gallery .hero-layer-cover:after {
  background: #f68b46;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_login .hero-layer-cover:after {
  background: #8764ab;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_responsive_slider .hero-layer-cover:after {
  background: #79c35a;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_catalog .hero-layer-cover:after {
  background: #4527a0;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_video_gallery .hero-layer-cover:after {
  background: #43beca;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_slider .hero-layer-cover:after {
  background: #157dbe;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_lightbox .hero-layer-cover:after {
  background: #28a79a;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_price_table_builder .hero-layer-cover:after {
  background: #72cac1;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_video_player .hero-layer-cover:after {
  background: #ee2937;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_priceing_table .hero-layer-cover:after {
  background: #1688a1;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_share_buttons .hero-layer-cover:after {
  background: #f36f3b;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_colorbox .hero-layer-cover:after {
  background: #d52d30;
}

@media (max-width: 1600px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    margin-left: 10%;
  }
}

@media (max-width: 1420px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 130%;
    margin-left: 20%;
  }
}

@media (max-width: 1200px) {
  #wp_hero .hero-inner {
    height: 333px;
  }
  #wp_hero .hero-inner .hero-left {
    width: 460px;
    padding-top: 71px;
    padding-left: 65px;
  }
  #wp_hero .hero-inner .hero-right {
    width: calc(100% - 460px);
  }
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 140%;
    margin-left: 10%;
  }
}

@media (max-width: 1100px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 150%;
    margin-left: 20%;
  }
}

@media (max-width: 1000px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 170%;
    margin-left: 23%;
  }
}

@media (max-width: 900px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 180%;
    margin-left: 40%;
  }
}

@media (max-width: 800px) {
  #wp_hero .hero-inner .hero-left {
    width: 320px;
    padding-top: 41px;
    padding-left: 41px;
  }
  #wp_hero .hero-inner .hero-left .hero-title {
    font-size: 38px;
    margin-bottom: 23px;
  }
  #wp_hero .hero-inner .hero-left .hero-subtitle {
    font-size: 14px;
  }
  #wp_hero .hero-inner .hero-right {
    width: calc(100% - 320px);
  }
  #wp_hero .hero-inner .hero-right .hero-3d {
    margin-left: 30%;
  }
}

@media (max-width: 700px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    margin-left: 40%;
  }
}

@media (max-width: 640px) {
  #wp_hero .hero-inner .hero-left {
    padding-top: 19px;
    padding-left: 16px;
  }
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 300%;
    margin-left: 0%;
  }
  #wp_hero .hero-inner .hero-right .hero-3d .hero-layer-icon {
    width: 30%;
  }
}

@media (max-width: 500px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 500%;
    margin-left: 70%;
  }
}

@media (max-width: 400px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 900%;
    min-width: 200px;
    margin-left: 80%;
  }
}

@media (max-width: 380px) {
  #wp_hero .hero-inner .hero-left {
    width: 100%;
  }
  #wp_hero .hero-inner .hero-right {
    display: none;
  }
}

#joomla_hero {
  position: relative;
  overflow: hidden;
}

#joomla_hero .hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Roboto Regular';
  font-weight: 100;
  height: 450px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

#joomla_hero .hero-inner .hero-left {
  width: 550px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 115px;
  padding-left: 132px;
}

#joomla_hero .hero-inner .hero-left .hero-title {
  font-size: 55px;
  color: #fefeff;
  line-height: 1;
  margin-bottom: 23px;
  font-family: "Roboto Light";
}

#joomla_hero .hero-inner .hero-left .hero-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

#joomla_hero .hero-inner .hero-left .hero-content {
  font-size: 24px;
  font-weight: 100;
  color: #fdfdfd;
  line-height: 1;
  margin-bottom: 22px;
}

#joomla_hero .hero-inner .hero-right {
  width: calc(100% - 550px);
}

#joomla_hero .hero-inner .hero-right .hero-bubbles {
  width: 100%;
  height: 100%;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.17);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.17);
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
  top: 190px;
  right: 79%;
  width: 79px;
  height: 79px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#298787), color-stop(5%, #298787), color-stop(10%, #298787), to(#20cad6));
  background: linear-gradient(0deg, #298787 0%, #298787 5%, #298787 10%, #20cad6 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20CAD6', endColorstr='#298787', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox a img {
  width: 36px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
  top: 92px;
  right: 61%;
  width: 108px;
  height: 108px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#118701), to(#aaf765));
  background: linear-gradient(0deg, #118701 0%, #aaf765 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AAF765', endColorstr='#118701', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps a img {
  width: 63px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
  top: 54px;
  right: 29%;
  width: 120px;
  height: 120px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#edaa39), color-stop(20%, #edaa39), color-stop(91%, #fccc71), to(#ffd179));
  background: linear-gradient(0deg, #edaa39 0%, #edaa39 20%, #fccc71 91%, #ffd179 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd179', endColorstr='#edaa39', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery a img {
  width: 81px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
  top: 205px;
  right: 20%;
  width: 70px;
  height: 70px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#42bec9), color-stop(2%, #42bec9), color-stop(29%, #42bec9), color-stop(91%, #42e7f8), to(#43eeff));
  background: linear-gradient(0deg, #42bec9 0%, #42bec9 2%, #42bec9 29%, #42e7f8 91%, #43eeff 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43eeff', endColorstr='#42bec9', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery a img {
  width: 35px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
  top: 290px;
  right: 30%;
  width: 116px;
  height: 116px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#4527a0), color-stop(2%, #4527a0), color-stop(30%, #5a3ab8), color-stop(91%, #7857dd), to(#7d5ce3));
  background: linear-gradient(0deg, #4527a0 0%, #4527a0 2%, #5a3ab8 30%, #7857dd 91%, #7d5ce3 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d5ce3', endColorstr='#4527a0', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog a img {
  width: 67px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider {
  top: 190px;
  right: 45%;
  width: 93px;
  height: 93px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#3561d8), color-stop(2%, #3561d8), color-stop(47%, #3f8fe5), color-stop(91%, #4ca8f0), to(#4faef3));
  background: linear-gradient(0deg, #3561d8 0%, #3561d8 2%, #3f8fe5 47%, #4ca8f0 91%, #4faef3 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4faef3', endColorstr='#3561d8', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider a img {
  width: 50px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
  top: 260px;
  right: 55%;
  width: 140px;
  height: 140px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#f03436), color-stop(2%, #f03436), color-stop(19%, #fa484e), color-stop(91%, #f9845a), to(#f98c5c));
  background: linear-gradient(0deg, #f03436 0%, #f03436 2%, #fa484e 19%, #f9845a 91%, #f98c5c 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f98c5c', endColorstr='#f03436', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio a img {
  width: 78px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
  top: 37px;
  right: 48%;
  width: 78px;
  height: 78px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#460aa2), color-stop(1%, #460aa2), color-stop(19%, #6920d6), color-stop(91%, #8030f9), to(#8332fe));
  background: linear-gradient(0deg, #460aa2 0%, #460aa2 1%, #6920d6 19%, #8030f9 91%, #8332fe 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8332fe', endColorstr='#460aa2', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow a img {
  width: 56px;
}

@media (max-width: 1420px) {
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    top: 245px;
    right: 84%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
    top: 78px;
    right: 64%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
    top: 310px;
    right: 23%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    top: 260px;
    right: 55%;
  }
}

@media (max-width: 1200px) {
  #joomla_hero .hero-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 335px;
  }
  #joomla_hero .hero-inner .hero-left {
    padding-top: 18px;
    padding-left: 0px;
    text-align: center;
    height: 190px;
  }
  #joomla_hero .hero-inner .hero-left .hero-title {
    font-size: 50px;
    margin-bottom: 10px;
  }
  #joomla_hero .hero-inner .hero-left .hero-subtitle {
    margin-bottom: 12px;
  }
  #joomla_hero .hero-inner .hero-left .hero-content {
    display: none;
  }
  #joomla_hero .hero-inner .hero-right {
    width: 100%;
    height: 145px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles {
    width: 100%;
    height: 100%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    top: 24px;
    left: 7%;
    width: 63px;
    height: 63px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox a img {
    width: 31px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
    top: -56px;
    left: 18%;
    width: 84px;
    height: 84px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps a img {
    width: 50px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
    top: -75px;
    right: 9%;
    width: 94px;
    height: 94px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery a img {
    width: 64px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
    top: 60px;
    right: 16%;
    width: 60px;
    height: 60px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery a img {
    width: 33px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
    top: 63px;
    left: calc(50% - 210px);
    width: 93px;
    height: 93px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog a img {
    width: 52px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider {
    top: 3px;
    left: calc(50% - 90px);
    width: 73px;
    height: 73px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider a img {
    width: 39px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    top: 37px;
    left: calc(50% + 36px);
    width: 110px;
    height: 110px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio a img {
    width: 62px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
    top: -37px;
    right: 28%;
    width: 61px;
    height: 61px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow a img {
    width: 44px;
  }
}

@media (max-width: 800px) {
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    left: 4%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
    top: -51px;
    right: 3%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
    right: 12%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    left: calc(50% + 7px);
  }
}

@media (max-width: 640px) {
  #joomla_hero .hero-inner .hero-left {
    padding-top: 18px;
    padding-left: 0px;
    text-align: center;
    height: 190px;
  }
  #joomla_hero .hero-inner .hero-left .hero-title {
    font-size: 40px;
  }
  #joomla_hero .hero-inner .hero-left .hero-subtitle {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #joomla_hero .hero-inner .hero-right {
    height: 175px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    top: 22px;
    left: 4%;
    width: 51px;
    height: 51px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox a img {
    width: 25px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
    top: 0px;
    left: 24%;
    width: 64px;
    height: 64px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps a img {
    width: 39px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
    top: 5px;
    right: 3%;
    width: 74px;
    height: 74px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery a img {
    width: 50px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
    top: 94px;
    right: 10%;
    width: 40px;
    height: 40px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery a img {
    width: 22px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
    top: 100px;
    left: 15%;
    width: 73px;
    height: 73px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog a img {
    width: 42px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider {
    top: 72px;
    left: calc(50% - 30px);
    width: 57px;
    height: 57px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider a img {
    width: 31px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    top: 103px;
    left: calc(50% + 50px);
    width: 87px;
    height: 87px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio a img {
    width: 49px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
    top: 20px;
    left: calc(50% + 50px);
    width: 50px;
    height: 50px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow a img {
    width: 36px;
  }
}

@media (max-width: 410px) {
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    left: calc(50% + 25px);
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
    top: 10px;
    left: calc(50% + 20px);
  }
}

#background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: -100;
}

#hero_navigation a {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 83px;
  line-height: 83px;
  font-size: 24px;
  font-family: 'HelveticaNeue Light';
  text-align: center;
  color: #303030;
  text-decoration: none;
  border-bottom: 4px solid #ebebeb;
}

#hero_navigation a svg {
  margin: 0px auto;
  width: 29px;
  height: 29px;
  margin: -5px 3px 0px 0px;
  vertical-align: middle;
}

#hero_navigation a svg path {
  fill: #303030;
}

#hero_navigation a.hero-navigation--joomla img {
  width: 27px;
  height: 27px;
}

#hero_navigation a:hover {
  color: #f54337;
}

#hero_navigation a:hover svg path {
  fill: #f54337;
}

#hero_navigation a.active {
  color: #f54337;
}

#hero_navigation a.active svg path {
  fill: #f54337;
}

#hero_navigation a.active:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #f54337;
}

@media (max-width: 1200px) {
  #hero_navigation a {
    height: 43px;
    line-height: 43px;
    font-size: 16px;
    border-bottom: 2px solid #ebebeb;
  }
  #hero_navigation a img {
    width: 16px;
    height: 16px;
  }
  #hero_navigation a.hero-navigation--joomla img {
    width: 16px;
    height: 16px;
  }
  #hero_navigation a.active:after {
    bottom: -2px;
    height: 2px;
    border-radius: 1px;
  }
}

#welcome_section {
  background: #f4f4f4;
  padding: 50px 0px 50px 0px;
  text-align: center;
}

#welcome_section h2 {
  margin-bottom: 17px;
  font-size: 40px;
  color: #f54337;
  font-family: 'HelveticaNeue Light';
}

@media (max-width: 430px) {
  #welcome_section h2 {
    font-size: 30px;
  }
}

#welcome_section p {
  font-size: 18px;
  color: #717171;
  font-family: 'HelveticaNeue Thin';
  margin-bottom: 10px;
}

.products_list_sectoin {
  padding-bottom: 10px;
  text-align: center;
}

.products_list_sectoin .read_more_button {
  position: relative;
  margin: 0px auto;
  margin-top: 20px;
}

#money_back_section {
  position: relative;
  height: 164px;
  margin: 60px 0px 0px 0px;
  background: #1f3a93;
}

#money_back_section .money_back_block {
  position: relative;
  margin: 0px auto;
  height: inherit;
  width: 915px;
}

#money_back_section .money_back_block .left-block {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 263px;
  height: 223px;
  background: url(../images/money.back.sticker.bg.png) left top no-repeat;
  color: #fefefe;
}

#money_back_section .money_back_block .left-block .red-label {
  padding: 70px 0px 0px 22px;
  line-height: 46px;
  font-size: 37px;
  font-family: 'Acme Regular';
}

#money_back_section .money_back_block .left-block .orange-label {
  position: absolute;
  right: 29px;
  top: 46px;
  text-align: center;
  font-size: 26px;
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
  font-family: "Baloo Regular";
}

#money_back_section .money_back_block .left-block .orange-label strong {
  font-size: 50px;
  display: block;
  font-family: 'Acme Regular';
  margin-bottom: -14px;
}

#money_back_section .money_back_block .right-block {
  position: relative;
  margin-left: 300px;
  padding-top: 35px;
  color: #fff;
}

#money_back_section .money_back_block .right-block h2 {
  padding-bottom: 5px;
  font-size: 30px;
  font-family: 'HelveticaNeue Light';
}

#money_back_section .money_back_block .right-block p {
  margin-bottom: 2px;
  font-size: 25px;
  font-family: 'HelveticaNeue Thin';
}

#money_back_section .money_back_block .right-block p a {
  color: #fff;
}

@media (max-width: 1200px) {
  #money_back_section {
    height: 110px;
    margin: 28px 0px 0px 0px;
  }
  #money_back_section .money_back_block {
    width: 660px;
  }
  #money_back_section .money_back_block .left-block {
    left: 0px;
    width: 164px;
    height: 138px;
    background-size: 100% 100%;
  }
  #money_back_section .money_back_block .left-block .red-label {
    padding: 44px 0px 0px 16px;
    line-height: 28px;
    font-size: 23px;
  }
  #money_back_section .money_back_block .left-block .orange-label {
    right: 18px;
    top: 27px;
    font-size: 16px;
  }
  #money_back_section .money_back_block .left-block .orange-label strong {
    font-size: 31px;
    margin-bottom: -12px;
  }
  #money_back_section .money_back_block .right-block {
    margin-left: 196px;
    padding-top: 20px;
  }
  #money_back_section .money_back_block .right-block h2 {
    padding-bottom: 6px;
    font-size: 24px;
  }
  #money_back_section .money_back_block .right-block p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #money_back_section {
    height: 98px;
    margin: 31px 0px 0px 0px;
  }
  #money_back_section .money_back_block {
    width: 100%;
    max-width: 650px;
  }
  #money_back_section .money_back_block .left-block {
    left: 0px;
    width: 154px;
    height: 130px;
    background-size: 100% 100%;
  }
  #money_back_section .money_back_block .left-block .red-label {
    padding: 42px 0px 0px 12px;
    line-height: 26px;
    font-size: 22px;
  }
  #money_back_section .money_back_block .left-block .orange-label {
    right: 18px;
    top: 26px;
    font-size: 15px;
  }
  #money_back_section .money_back_block .left-block .orange-label strong {
    font-size: 29px;
  }
  #money_back_section .money_back_block .right-block {
    margin-left: 190px;
    padding-top: 20px;
  }
  #money_back_section .money_back_block .right-block h2 {
    padding-bottom: 6px;
    font-size: 20px;
  }
  #money_back_section .money_back_block .right-block p {
    font-size: 16px;
  }
}

@media (max-width: 650px) {
  #money_back_section .money_back_block {
    width: 80%;
    min-width: 316px;
  }
  #money_back_section .money_back_block .right-block {
    margin-left: 180px;
  }
  #money_back_section .money_back_block .right-block p {
    display: none;
  }
  #money_back_section .money_back_block .right-block p.refund_policy {
    display: block;
  }
}

#support_section {
  position: relative;
  padding: 74px 70px 37px 70px;
  margin: 0px auto;
  background: #fbfbfb;
}

#support_section h2 {
  width: 100%;
  text-align: center;
  font-size: 45px;
  font-family: 'HelveticaNeue Thin';
  margin-bottom: 35px;
}

#support_section .site-width {
  width: 100%;
}

#support_section .site-width .flex-wrap .support-feature {
  width: 25%;
  padding: 0px 3% 0px 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

#support_section .site-width .flex-wrap .support-feature .feature-icon {
  width: 100%;
  margin-bottom: 8px;
}

#support_section .site-width .flex-wrap .support-feature .feature-icon img {
  width: 62px;
  height: 62px;
}

#support_section .site-width .flex-wrap .support-feature h3 {
  display: block;
  font-size: 18px;
  font-family: 'OpenSans SemiBold';
  padding-bottom: 13px;
}

#support_section .site-width .flex-wrap .support-feature p {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Roboto Regular';
}

@media (max-width: 1024px) {
  #support_section {
    padding: 44px 0px 30px 0px;
  }
  #support_section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  #support_section .site-width .flex-wrap {
    padding: 0px 5% 0px 5%;
  }
  #support_section .site-width .flex-wrap .support-feature {
    height: 193px;
    width: 45%;
    text-align: center;
  }
  #support_section .site-width .flex-wrap .support-feature .feature-icon {
    margin-bottom: 23px;
  }
}

@media (max-width: 900px) {
  #support_section .site-width .flex-wrap {
    padding: 0px 2% 0px 2%;
  }
}

@media (max-width: 768px) {
  #support_section .site-width .flex-wrap .support-feature .feature-icon {
    margin-bottom: 13px;
  }
  #support_section .site-width .flex-wrap .support-feature h3 {
    font-size: 18px;
  }
}

@media (max-width: 650px) {
  #support_section {
    padding: 50px 0px 30px 0px;
  }
  #support_section .site-width .flex-wrap .support-feature {
    height: 173px;
    width: 100%;
    padding: 0px 6% 0px 6%;
  }
  #support_section .site-width .flex-wrap .support-feature .feature-icon {
    margin-bottom: 7px;
  }
}

#special_offers_section {
  height: 400px;
  padding-top: 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fefefe;
  background: url(../images/dicsount.section.cms.icons.bg.png) left top no-repeat, url(../images/dicsount.section.cms.icons.bg.png) right bottom no-repeat;
  background-color: #2747b0;
}

#special_offers_section h3 {
  font-size: 35px;
  font-family: "OpenSans";
  margin-bottom: 5px;
}

#special_offers_section p {
  font-size: 28px;
  font-family: "OpenSans Light";
}

#special_offers_section .special-offers {
  position: relative;
  width: 779px;
  height: 173px;
  padding-top: 40px;
  margin: 0px auto;
}

#special_offers_section .special-offers .offer-card {
  position: relative;
}

#special_offers_section .special-offers .offer-card .offer-content {
  position: relative;
  height: 183px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  background: url(../images/discount-banner-bg.png) right top no-repeat #fdfdfd;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-ribbon {
  font-family: 'Merriweather BoldItalic';
  font-size: 28px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-size: cover;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button {
  position: absolute;
  bottom: -22px;
  left: calc(50% - 22px);
  text-align: center;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #f54337;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a svg {
  width: 16px;
  height: 16px;
  padding: 14px 0px 14px 0px;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a svg path {
  fill: #fff;
}

#special_offers_section .special-offers .offer-card--left {
  float: left;
}

#special_offers_section .special-offers .offer-card--left .offer-content {
  width: 405px;
  padding: 84px 10px 0px 14px;
}

#special_offers_section .special-offers .offer-card--left .offer-content .offer-ribbon {
  position: absolute;
  left: -42px;
  top: 8px;
  width: 490px;
  height: 84px;
  padding-top: 13px;
  background-image: url(../images/discount.wordpress.ribbon.bg.png);
}

#special_offers_section .special-offers .offer-card--left .offer-content .offer-headline {
  position: relative;
  font-size: 20px;
  color: #c2000e;
  font-family: "OpenSans SemiBold";
  margin-bottom: 1px;
}

#special_offers_section .special-offers .offer-card--left .offer-content .offer-description {
  position: relative;
  font-size: 22px;
  font-family: "OpenSans";
  color: #303030;
}

#special_offers_section .special-offers .offer-card--right {
  float: right;
}

#special_offers_section .special-offers .offer-card--right .offer-content {
  width: 267px;
  padding: 93px 10px 0px 15px;
  background-position: right -204px;
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon {
  position: absolute;
  left: -32px;
  top: 13px;
  width: 333px;
  height: 78px;
  padding-top: 18px;
  background-image: url(../images/discount.joomla.ribbon.bg.png);
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon span {
  display: block;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-headline {
  position: relative;
  font-size: 16px;
  color: #3cab2e;
  font-family: "OpenSans SemiBold";
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-description {
  position: relative;
  font-size: 20px;
  font-family: "OpenSans";
  color: #303030;
}

@media (max-width: 1024px) {
  #special_offers_section {
    height: 367px;
    padding-top: 24px;
  }
  #special_offers_section h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  #special_offers_section p {
    font-size: 17px;
  }
  #special_offers_section .special-offers {
    width: 763px;
    height: 204px;
    padding-top: 25px;
  }
  #special_offers_section .special-offers .offer-card--left {
    padding-top: 21px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content {
    width: 362px;
    height: 173px;
    padding: 73px 10px 0px 12px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-ribbon {
    font-size: 25px;
    left: -38px;
    top: 8px;
    width: 438px;
    height: 60px;
    padding-top: 9px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-headline {
    font-size: 18px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-description {
    font-size: 20px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content {
    width: 298px;
    height: 204px;
    padding: 104px 10px 0px 15px;
    background-position: right -181px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon {
    font-size: 31px;
    left: -36px;
    top: 16px;
    width: 372px;
    height: 86px;
    padding-top: 21px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-headline {
    font-size: 18px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-description {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  #special_offers_section p {
    max-width: 350px;
    margin: 0px auto;
  }
  #special_offers_section .special-offers {
    width: 662px;
    height: 204px;
    padding-top: 28px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content {
    width: 298px;
    height: 142px;
    padding: 60px 10px 0px 15px;
    background-position: right -10px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-ribbon {
    font-size: 20px;
    left: -31px;
    top: 6px;
    width: 361px;
    height: 57px;
    padding-top: 10px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-headline {
    font-size: 14px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-description {
    font-size: 16px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content {
    width: 267px;
    height: 183px;
    padding: 93px 10px 0px 15px;
    background-position: right -200px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon {
    font-size: 26px;
    left: -32px;
    top: 16px;
    width: 333px;
    height: 72px;
    padding-top: 20px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-headline {
    font-size: 15px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-description {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  #special_offers_section {
    background-image: none;
    height: auto;
  }
  #special_offers_section p {
    max-width: 350px;
    margin: 0px auto;
  }
  #special_offers_section .special-offers {
    position: relative;
    width: 337px;
    height: auto;
    padding-top: 28px;
  }
  #special_offers_section .special-offers .offer-card {
    position: relative;
    margin: 0px auto;
    float: none;
    margin-bottom: 50px;
  }
  #special_offers_section .special-offers .offer-card .offer-content {
    margin: 0px auto;
  }
}

#blog_section {
  position: relative;
  width: 1302px;
  margin: 0px auto;
  padding: 60px 0px 41px 0px;
  text-align: center;
}

#blog_section .section-title {
  position: relative;
  font-size: 33px;
  font-family: "OpenSans SemiBold";
  margin: 0px 0px 11px 0px;
}

#blog_section .section-subtitle {
  display: block;
  margin: 0px auto;
  margin-bottom: 40px;
  font-size: 30px;
  font-family: "OpenSans";
}

#blog_section .blog-grid {
  width: 100%;
}

#blog_section .blog-grid .blog-grid-item {
  position: relative;
  float: left;
  width: 382px;
  height: 441px;
  padding: 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  border-top: 1px solid #f9f9f9;
  margin: 0px;
  text-align: left;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.2);
}

#blog_section .blog-grid .blog-grid-item a {
  text-decoration: none;
}

#blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

#blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb img {
  position: absolute;
  width: auto;
  height: 100%;
  left: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
  padding: 6px 8px 12px 8px;
  font-size: 16px;
  font-family: "OpenSans";
  color: #818181;
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
  padding: 0px 8px 1px 8px;
  line-height: 22px;
  font-size: 18px;
  color: #0e0e0e;
  font-family: "OpenSans SemiBold";
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
  padding: 0px 8px 0px 8px;
  line-height: 16px;
  font-size: 14px;
  color: #505050;
  font-family: "OpenSans";
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
  position: absolute;
  padding-right: 20px;
  display: inline-block;
  right: 14px;
  bottom: 9px;
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
  font-size: 14px;
  color: #e53935;
  font-family: "OpenSans SemiBold";
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
  position: absolute;
  top: 4px;
  right: 0px;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/blog.read.more.png) left top no-repeat;
}

#blog_section .blog-grid .slick-track {
  height: 460px;
}

#blog_section .blog-grid .slick-track .slick-slide {
  margin: 10px;
}

#blog_section .blog-grid .slick-dots {
  position: relative;
  display: table;
  text-align: center;
  margin: 0px auto;
  padding-top: 27px;
}

#blog_section .blog-grid .slick-dots li {
  display: inline-block;
  list-style: none;
  margin: 0px 4px 0px 4px;
}

#blog_section .blog-grid .slick-dots li.slick-active button {
  background: #b7b7b7;
}

#blog_section .blog-grid .slick-dots li button {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #ececec;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0px;
  outline: none;
  text-indent: -9999px;
  cursor: pointer;
}

#blog_section .blog-section-additional-link {
  position: absolute;
  display: inline-block;
  bottom: 46px;
  right: 35px;
}

#blog_section .blog-section-additional-link a {
  font-size: 14px;
  font-family: "Merriweather BoldItalic";
  color: #303030;
}

@media (max-width: 1320px) {
  #blog_section {
    width: 1020px;
    padding: 38px 0px 33px 0px;
  }
  #blog_section .section-title {
    margin: 0px 0px 0px 0px;
  }
  #blog_section .section-subtitle {
    margin-bottom: 25px;
    font-size: 27px;
  }
  #blog_section .blog-grid .blog-grid-item {
    width: 311px;
    height: 358px;
    padding: 9px;
    margin: 0px;
  }
  #blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
    height: 192px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
    padding: 8px 7px 10px 7px;
    font-size: 13px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
    padding: 0px 7px 5px 7px;
    line-height: 17px;
    font-size: 15px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
    padding: 0px 7px 0px 7px;
    line-height: 14px;
    font-size: 12px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
    padding-right: 20px;
    right: 18px;
    bottom: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
    font-size: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
    top: 4px;
    right: 0px;
    width: 15px;
    height: 15px;
  }
  #blog_section .blog-grid .slick-track {
    height: 365px;
  }
  #blog_section .blog-grid .slick-dots {
    padding-top: 36px;
  }
  #blog_section .blog-grid .slick-dots li {
    margin: 0px 4px 0px 4px;
  }
  #blog_section .blog-grid .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 0px;
  }
  #blog_section .blog-section-additional-link {
    bottom: 20px;
    right: 29px;
  }
  #blog_section .blog-section-additional-link a {
    font-size: 14px;
  }
}

@media (max-width: 1040px) {
  #blog_section {
    width: 680px;
    padding: 38px 0px 33px 0px;
  }
  #blog_section .section-title {
    margin: 0px 0px 0px 0px;
  }
  #blog_section .section-subtitle {
    margin-bottom: 25px;
    font-size: 27px;
  }
  #blog_section .blog-grid .blog-grid-item {
    width: 311px;
    height: 358px;
    padding: 9px;
    margin: 0px;
  }
  #blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
    height: 192px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
    padding: 0px 7px 10px 7px;
    font-size: 13px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
    padding: 0px 7px 5px 7px;
    line-height: 17px;
    font-size: 15px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
    padding: 0px 7px 0px 7px;
    line-height: 14px;
    font-size: 12px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
    padding-right: 20px;
    right: 18px;
    bottom: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
    font-size: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
    top: 4px;
    right: 0px;
    width: 15px;
    height: 15px;
  }
  #blog_section .blog-grid .slick-track {
    height: 365px;
  }
  #blog_section .blog-grid .slick-dots {
    padding-top: 36px;
  }
  #blog_section .blog-grid .slick-dots li {
    margin: 0px 4px 0px 4px;
  }
  #blog_section .blog-grid .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 0px;
  }
  #blog_section .blog-section-additional-link {
    bottom: 20px;
    right: 35px;
  }
  #blog_section .blog-section-additional-link a {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  #blog_section {
    width: 100%;
    padding: 38px 0px 33px 0px;
  }
  #blog_section .section-title {
    font-size: 30px;
  }
  #blog_section .section-subtitle {
    margin-bottom: 25px;
    font-size: 20px;
  }
  #blog_section .blog-grid {
    position: relative;
    width: 311px;
    margin: 0px auto;
  }
  #blog_section .blog-grid .blog-grid-item {
    width: 311px;
    height: 358px;
    padding: 9px;
    margin: 0px 0px 20px 0px;
    display: none;
    clear: both;
  }
  #blog_section .blog-grid .blog-grid-item:nth-child(-n+3) {
    display: block;
  }
  #blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
    height: 192px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
    padding: 0px 7px 10px 7px;
    font-size: 13px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
    padding: 0px 7px 5px 7px;
    line-height: 17px;
    font-size: 15px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
    padding: 0px 7px 0px 7px;
    line-height: 14px;
    font-size: 12px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
    padding-right: 20px;
    right: 18px;
    bottom: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
    font-size: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
    top: 4px;
    right: 0px;
    width: 15px;
    height: 15px;
  }
  #blog_section .blog-grid .slick-track {
    height: 365px;
  }
  #blog_section .blog-grid .slick-dots {
    padding-top: 36px;
  }
  #blog_section .blog-grid .slick-dots li {
    margin: 0px 4px 0px 4px;
  }
  #blog_section .blog-grid .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 0px;
  }
  #blog_section .blog-section-additional-link {
    bottom: 20px;
    right: 40px;
  }
  #blog_section .blog-section-additional-link a {
    font-size: 14px;
  }
}

#newsletter_subscription {
  padding: 31px 0px 51px 0px;
  text-align: center;
  background: #eee;
}

#newsletter_subscription h2 {
  margin-bottom: 10px;
  font-size: 38px;
  color: #000000;
  font-family: "OpenSans SemiBold";
}

#newsletter_subscription p {
  margin-bottom: 15px;
  font-size: 20px;
  color: #000000;
  font-family: 'Merriweather LightItalic';
}

#newsletter_subscription #newsletter_sub_form {
  width: 531px;
  margin: 0px auto;
}

#newsletter_subscription #newsletter_sub_form #newsletter_email {
  display: block;
  float: left;
  width: 388px;
  height: 50px;
  line-height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0px 11px 0px 0px;
  padding: 0px 10px 0px 10px;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  background: #fff;
  color: #777;
  font-size: 15px;
  font-family: "OpenSans";
  outline: none;
}

#newsletter_subscription #newsletter_sub_form #newsletter_submit {
  display: block;
  width: 132px;
  height: 50px;
  padding: 0px;
  line-height: 50px;
  font-size: 15px;
  color: #fff;
  font-family: "HelveticaNeue Light";
  border: 0px;
  background: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  cursor: pointer;
}

#newsletter_subscription #newsletter_sub_form #newsletter_submit:hover {
  background: #111;
}

#newsletter_subscription #newsletter_sub_form .submit_message {
  color: #49b050;
}

#newsletter_subscription #newsletter_sub_form .submit_message.error {
  color: #e53935;
}

@media (max-width: 1024px) {
  #newsletter_subscription h2 {
    font-size: 33px;
  }
  #newsletter_subscription p {
    padding: 0px 10% 0px 10%;
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  #newsletter_subscription {
    padding: 32px 0px 32px 0px;
  }
  #newsletter_subscription h2 {
    margin-bottom: 12px;
    font-size: 33px;
  }
  #newsletter_subscription p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 16px;
    padding: 0px 20px 0px 20px;
  }
  #newsletter_subscription #newsletter_sub_form {
    width: 554px;
    margin: 0px auto;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_email {
    width: 270px;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_submit {
    width: 268px;
  }
}

@media (max-width: 640px) {
  #newsletter_subscription {
    padding: 22px 0px 22px 0px;
  }
  #newsletter_subscription p {
    padding: 0px 10% 0px 10%;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 13px;
  }
  #newsletter_subscription #newsletter_sub_form {
    width: 80%;
    margin: 0px auto;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_email {
    width: 100%;
    clear: both;
    margin: 0px 0px 10px 0px;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_submit {
    width: 100%;
    clear: both;
  }
}

#order_website_entry {
  border-top: 3px solid #d2d2d2;
  padding: 65px 0px 73px 0px;
  margin: 0px 0px 44px 0px;
  background: url(../images/web-develpoment-page-bg.jpg) center center no-repeat;
  background-size: cover;
}

#order_website_entry .title_block {
  margin: 0px;
  padding: 0px;
  text-transform: uppercase;
}

#order_website_entry .title_block .white_block {
  display: block;
  margin: 0px 0px 38px 0px;
  font-family: 'Roboto Regular';
  font-size: 60px;
  color: #fff;
  text-indent: 0px;
  line-height: 68px;
}

#order_website_entry .title_block .white_medium {
  display: inline-block;
  font-family: 'Roboto Medium';
  font-size: 40px;
  color: #fff;
  line-height: 68px;
  text-shadow: 2px 2px 5px #252525;
}

#order_website_entry .title_block .red_medium {
  display: inline-block;
  font-family: 'Roboto Regular';
  font-size: 34px;
  color: #bf1e2e;
  line-height: 38px;
  text-shadow: 2px 2px 5px #252525;
}

#order_website_entry .title_block .white_thin {
  display: block;
  margin: 57px 0px 58px 0px;
  font-family: 'Roboto Thin';
  font-size: 48px;
  color: #fff;
  line-height: 54px;
  text-align: center;
  letter-spacing: 3px;
  word-spacing: 6px;
  text-shadow: 2px 2px 5px #252525;
}

#order_website_entry .title_block .white_light {
  display: inline-block;
  margin-bottom: 22px;
  font-family: 'Roboto Light';
  font-size: 34px;
  color: #fff;
  line-height: 38px;
  text-align: left;
  word-spacing: 2px;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 5px #252525;
}

#order_website_entry .link_block {
  text-align: right;
}

#order_website_entry .link_block a {
  text-transform: uppercase;
}

#order_website_entry .link_block a:link, #order_website_entry .link_block a:visited {
  text-transform: uppercase;
}

#order_website_features {
  margin-top: 44px;
}

#order_website_features ul {
  list-style-type: none;
}

#order_website_features ul li {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 26px;
  border-bottom: 1px solid #cccccc;
}

#order_website_features ul li:last-child {
  border-bottom: none;
}

#order_website_features ul li .image_block {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  padding-bottom: 51px;
}

#order_website_features ul li.right .image_block {
  float: right;
}

#order_website_features ul li .image_block img {
  display: block;
  margin: 0px auto;
  vertical-align: middle;
}

#order_website_features ul li .description {
  position: absolute;
  display: block;
  top: 0px;
  height: 100%;
  width: 50%;
}

#order_website_features ul li.right .description {
  left: 0px;
  top: 0px;
}

#order_website_features ul li.left .description {
  right: 0px;
  top: 0px;
}

#order_website_features ul li .description .description_inner {
  position: absolute;
  display: table;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: calc(100% - 60px);
  width: -moz-calc(100% - 60px);
  padding: 0px 0px 0px 60px;
}

#order_website_features ul li.right .description .description_inner {
  padding: 0px 60px 0px 0px;
}

#order_website_features ul li .description .title {
  display: block;
  position: relative;
  margin: 0px 0px 7px 0px;
  font-family: 'Roboto Regular';
  font-size: 30px;
  line-height: 34px;
  text-transform: uppercase;
}

#order_website_features ul li.right .description .title {
  text-align: right;
}

#order_website_features ul li .description .title .black_regular {
  font-family: 'Roboto Regular';
  font-size: 30px;
  color: #000;
}

#order_website_features ul li .description .title .grey_bold {
  font-family: 'Roboto Bold';
  font-size: 30px;
  color: #b8b8b8;
  font-family: 'Roboto Bold';
  font-size: 30px;
  color: #b8b8b8;
}

#order_website_features ul li .description .title .red_regular {
  font-family: 'Roboto Regular';
  font-size: 30px;
  color: #bf1e2e;
}

#order_website_features ul li .description .title .blue_regular {
  font-family: 'Roboto Regular';
  font-size: 30px;
  color: #0f98d9;
}

#order_website_features ul li .description .title .green_regular {
  font-family: 'Roboto Regular';
  font-size: 30px;
  color: #81bc1d;
}

#order_website_features ul li .description .text {
  display: block;
  position: relative;
  margin: 0px 0px 0px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  color: #222222;
}

#seo_primary .contact textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  width: 100%;
  height: 135px;
  border: 1px solid #dedede;
  font-family: 'Open Sans',sans-serif;
  font-size: 14px;
  line-height: 15px;
  color: #999999;
  resize: vertical;
}

#seo_primary .entry {
  margin: 0px 0px 50px 0px;
}

#seo_primary .page_title {
  position: relative;
  padding: 0px 0px 12px 0px;
  margin: 39px 0px 35px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
  color: #bf1e2e;
  text-align: center;
}

#seo_primary .page_title:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 25px);
  height: 3px;
  width: 50px;
  background: #bf1e2e;
}

#seo_primary .entry_text {
  margin: 0px 0px 72px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  color: #847d7d;
  line-height: 18px;
  text-align: center;
}

#seo_primary .seo_features {
  list-style-type: none;
  font-size: 0px;
}

#seo_primary .seo_features li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 33.3%;
  height: 247px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 23px 56px 28px;
}

#seo_primary .seo_features li:nth-child(4), #seo_primary .seo_features li:nth-child(5), #seo_primary .seo_features li:nth-child(6) {
  border-top: 2px solid #f7f6f6;
  padding-top: 56px;
}

#seo_primary .seo_features li:nth-child(1):after, #seo_primary .seo_features li:nth-child(2):after {
  content: '';
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 2px;
  height: 182px;
  background: #f5f5f4;
}

#seo_primary .seo_features li:nth-child(4):after, #seo_primary .seo_features li:nth-child(5):after {
  content: '';
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 2px;
  height: 182px;
  background: #f5f5f4;
}

#seo_primary .seo_features li h2 {
  margin: 0px 0px 26px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 24px;
  color: #b51c1c;
  line-height: 27px;
  text-align: center;
}

#seo_primary .seo_features li p {
  margin: 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 14px;
  color: #757373;
  line-height: 16px;
  text-align: center;
}

#seo_primary .engines {
  margin-top: 33px;
  margin-bottom: 80px;
}

#seo_primary .engines h2 {
  margin: 0px 0px 79px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #bf1e2e;
  line-height: 43px;
  text-align: center;
}

#seo_primary .engines ul {
  list-style-type: none;
  font-size: 0px;
}

#seo_primary .engines ul li {
  display: inline-block;
  margin: 0px 45px 0px 0px;
}

#seo_primary .engines ul li:first-child {
  margin: 0px 45px 0px 40px;
}

#seo_primary .engines ul li:last-child {
  margin: 0px 40px 0px 0px;
}

#seo_contact_wrapper {
  background: #bf1e2e;
  padding: 74px 0px 76px 0px;
}

#seo_contact_wrapper:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 23px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 23px 37px 23px;
  border-color: transparent transparent #fff transparent;
}

#seo_contact {
  text-align: center;
  font-size: 0px;
}

#seo_contact h4 {
  position: relative;
  margin: 0px 0px 10px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  color: #fefefe;
  line-height: 17px;
  text-align: center;
}

#seo_contact h3 {
  position: relative;
  padding: 0px 0px 12px 0px;
  margin: 0px 0px 47px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #fefefe;
  line-height: 44px;
  text-align: center;
}

#seo_contact h3:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 25px);
  width: 50px;
  height: 3px;
  background: #ffffff;
}

#seo_contact input[type=text], #seo_contact input[type=email] {
  margin-bottom: 26px;
  padding: 0px 5px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 298px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #c8c7c7;
  border-radius: 2px;
  background-color: transparent;
  color: #e8e3e3;
  font-size: 16px;
}

#seo_contact input[type=text]:focus, #seo_contact input[type=email]:focus {
  -webkit-box-shadow: 0 0 0 1px #c8c7c7;
          box-shadow: 0 0 0 1px #c8c7c7;
  outline: none;
}

#seo_contact input[type=text]::-webkit-input-placeholder, #seo_contact input[type=email]::-webkit-input-placeholder {
  color: #e8e3e3;
}

#seo_contact textarea::-webkit-input-placeholder {
  color: #e8e3e3;
}

#seo_contact input[type=text]:-moz-placeholder, #seo_contact input[type=email]:-moz-placeholder {
  color: #e8e3e3;
  opacity: 1;
}

#seo_contact textarea:-moz-placeholder {
  color: #e8e3e3;
  opacity: 1;
}

#seo_contact input[type=text]::-moz-placeholder, #seo_contact input[type=email]::-moz-placeholder {
  color: #e8e3e3;
  opacity: 1;
}

#seo_contact textarea::-moz-placeholder {
  color: #e8e3e3;
  opacity: 1;
}

#seo_contact input[type=text]:-ms-input-placeholder, #seo_contact input[type=email]:-ms-input-placeholder {
  color: #e8e3e3;
}

#seo_contact textarea:-ms-input-placeholder {
  color: #e8e3e3;
}

#seo_contact .right {
  margin-left: 54px;
}

#seo_contact select {
  padding: 0px 5px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 298px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #c8c7c7;
  background-color: transparent;
  background-image: url(images/seo-arrow.png);
  margin-bottom: 26px;
  color: #e8e3e3;
  font-size: 16px;
}

#seo_contact select option {
  color: #000;
}

#seo_contact textarea {
  padding: 10px 5px 10px 5px;
  width: 648px;
  height: 72px;
  border: 1px solid #c7b0b3;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #e8e3e3;
  font-size: 16px;
}

#seo_contact textarea:focus {
  -webkit-box-shadow: 0 0 0 1px #c8c7c7;
          box-shadow: 0 0 0 1px #c8c7c7;
  outline: none;
}

#seo_contact input[type=submit] {
  height: 50px;
  padding: 0px 16px;
  margin-top: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ffffff;
  background: transparent;
  font-family: 'Roboto Regular';
  font-size: 20px;
  color: #ffffff;
  line-height: 50px;
  border-radius: 5px;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
}

#seo_contact input[type=submit]:hover {
  background: #fff;
  color: #bf1e2e;
}

#seo_contact input[type=submit]:focus {
  outline: none;
}

#seo_contact .sent {
  font-family: 'Roboto Regular';
  font-size: 20px;
  color: #ffffff;
  line-height: 50px;
  text-align: center;
}

#seo_contact input.invalid, #seo_contact textarea.invalid {
  -webkit-animation: invalid_bg_seo 1s linear;
          animation: invalid_bg_seo 1s linear;
}

#seo_contact input.invalid:focus, #seo_contact textarea.invalid:focus {
  -webkit-box-shadow: 0 0 0 1px #000;
          box-shadow: 0 0 0 1px #000;
}

#seo_contact input.invalid_border, #seo_contact textarea.invalid_border {
  border: 1px solid #000 !important;
  outline: none !important;
}

#seo_contact input.invalid_border:focus, #seo_contact textarea.invalid_border:focus {
  -webkit-box-shadow: 0 0 0 1px #000;
          box-shadow: 0 0 0 1px #000;
}

@-webkit-keyframes invalid_bg_seo {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  20% {
    background: rgba(0, 0, 0, 0.4);
  }
  70% {
    background: rgba(0, 0, 0, 0.4);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

@keyframes invalid_bg_seo {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  20% {
    background: rgba(0, 0, 0, 0.4);
  }
  70% {
    background: rgba(0, 0, 0, 0.4);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

#recaptcha_overlay {
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999999;
}

#seo-grecaptcha {
  position: fixed;
  display: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 9999999;
}

#seo_primary .colophone {
  margin: 52px auto 72px auto;
}

#seo_primary .colophone p {
  margin: 0px 0px 21px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  color: #847d7d;
  line-height: 18px;
}

#seo_primary .colophone p.italic {
  font-style: italic;
}

#seo_primary .colophone p:last-of-type {
  margin: 0px;
}

#page_primary .navigation {
  position: relative;
  display: block;
  width: 780px;
  margin: 0px auto;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #b4b4b4;
  line-height: 21px;
  text-transform: uppercase;
}

#page_primary .navigation ul {
  list-style-type: none;
  text-align: center;
}

#page_primary .navigation ul li {
  display: inline-block;
}

#page_primary .navigation ul li a {
  display: block;
  color: #b4b4b4;
  text-decoration: none;
}

#page_primary .navigation ul li a:link, #page_primary .navigation ul li a:visited {
  display: block;
  color: #b4b4b4;
  text-decoration: none;
}

#page_primary .navigation ul li a:hover {
  text-decoration: none;
  color: #231f20;
}

.content {
  position: relative;
  display: block;
  margin-top: 26px;
}

.content h2:not(.grey_heading) {
  display: block;
  position: relative;
  margin: 0px 0px 10px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 24px;
  color: #bf1e2e;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}

.content h3 {
  margin: 20px 10px;
}

.content section {
  position: relative;
  display: block;
  padding: 26px 0px 30px 0px;
  border-top: 1px solid #cfcfcf;
}

.content p {
  margin: 0px;
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .4px;
  color: #232323;
  text-align: justify;
}

#plugins_page_primary .plugins_page_head {
  display: block;
  position: relative;
  border-bottom: 1px solid #d1d1d1;
}

#plugins_page_primary .plugins_page_head .title {
  display: block;
  margin: 51px 0px 12px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 300;
  color: #231f20;
  line-height: 52px;
  text-align: center;
}

#plugins_page_primary .plugins_page_head .title .bold_title {
  font-weight: 700;
  color: #bf1e2e;
}

#plugins_page_primary .plugins_page_head .description {
  position: relative;
  display: block;
  margin: 0px 0px 31px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  color: #232323;
  line-height: 19px;
  text-align: center;
}

#plugins_page_primary .plugins_page_list {
  display: block;
  position: relative;
  margin-top: 41px;
  list-style-type: none;
  text-align: center;
  font-size: 0px;
}

#plugins_page_primary .plugins_page_list li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0px 110px 60px 0px;
  width: 200px;
  height: 397px;
}

#plugins_page_primary .plugins_page_list li.last {
  margin: 0px 0px 48px 0px;
}

#plugins_page_primary .plugins_page_list li:last-child {
  margin-right: 5px;
}

#plugins_page_primary .plugins_page_list li .image_block {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  background: #f2f2f2;
  border-radius: 100%;
  border: 1px solid #d9d9d9;
}

#plugins_page_primary .plugins_page_list li .image_block a {
  display: inline-block;
  text-decoration: none;
}

#plugins_page_primary .plugins_page_list li .image_block a:link, #plugins_page_primary .plugins_page_list li .image_block a:visited {
  display: inline-block;
  text-decoration: none;
}

#plugins_page_primary .plugins_page_list li .image_block a:hover, #plugins_page_primary .plugins_page_list li .image_block a:focus, #plugins_page_primary .plugins_page_list li .image_block a:active {
  text-decoration: none;
}

#plugins_page_primary .plugins_page_list li .image_block:hover a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(255, 255, 255, 0.08);
}

#plugins_page_primary .plugins_page_list li .image_block img {
  width: 200px;
  height: 200px;
  vertical-align: middle;
}

#plugins_page_primary .plugins_page_list li .title a {
  display: block;
  position: relative;
  width: 100%;
  height: 32px;
  margin: 23px 0px 9px 0px;
  padding: 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 26px;
  font-weight: 300;
  font-style: normal;
  color: #262626;
  text-align: center;
  line-height: 31px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
}

#plugins_page_primary .plugins_page_list li .description {
  position: relative;
  display: block;
  width: 100%;
  height: 67px;
  overflow: hidden;
  padding: 0px 0px 0px 2px;
  margin: 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  color: #787878;
  text-align: center;
  line-height: 22px;
  text-decoration: none;
}

#plugins_page_primary .plugins_page_list li .learn_more_block {
  margin-top: 14px;
}

.learn_more {
  display: inline-block;
  height: 48px;
  padding: 0px 33px;
  line-height: 48px;
  border: 3px solid #dedddd;
  font-family: 'Open Sans',sans-serif;
  font-size: 20px;
  color: #231f20;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  -webkit-transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: box-shadow, transform;
  transition-property: box-shadow, transform, -webkit-box-shadow, -webkit-transform;
}

.learn_more:link, .learn_more:visited {
  display: inline-block;
  height: 48px;
  padding: 0px 33px;
  line-height: 48px;
  border: 3px solid #dedddd;
  font-family: 'Open Sans',sans-serif;
  font-size: 20px;
  color: #231f20;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  -webkit-transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: box-shadow, transform;
  transition-property: box-shadow, transform, -webkit-box-shadow, -webkit-transform;
}

.learn_more:hover, .learn_more:focus, .learn_more:active {
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /*background:#dedddd;*/
  text-decoration: none;
}

#website_development {
  margin-bottom: 52px;
  background: url(../images/developer.jpg) center center no-repeat;
  background-size: cover;
}

#website_development .inner_wrap {
  padding: 87px 0px 66px 0px;
}

#website_development .inner_wrap h2 {
  margin: 0px;
  font-family: 'Roboto Light';
  font-size: 50px;
  color: #fefefe;
  line-height: 57px;
  text-align: center;
}

#website_development .inner_wrap h2 .red_title {
  font-family: 'Roboto Bold';
  color: #bf1e2e;
}

#website_development .inner_wrap h2 .white_title {
  font-family: 'Roboto Bold';
  color: #fefefe;
}

#website_development .inner_wrap .service_description {
  display: block;
  width: 100%;
  height: 62px;
  padding: 0px;
  margin: 15px 0px 29px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Roboto Light';
  font-size: 30px;
  color: #fefefe;
  text-align: center;
  line-height: 62px;
}

#website_development .inner_wrap .view_details {
  text-align: center;
}

.hg_new_wp_banner {
  color: #3aa3cd;
  border-top: 1px solid #efeeed;
  border-bottom: 1px solid #efeeed;
  background: #fbfbfb;
  padding: 34px 0 8px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 63px;
}

.hg_right_button_block {
  margin-top: 133px;
}

.hg_new_wp_banner span {
  color: #0170a3;
  font-size: 14px;
  line-height: 25px;
  display: inline-block;
  width: 403px;
  font-weight: lighter;
  margin-top: 23px;
}

.hg_new_wp_banner .hg_left_img_block {
  position: relative;
  height: 187px;
  width: 271px;
}

.hg_new_wp_banner .hg_left_img_block img {
  position: absolute;
  bottom: 0;
}

.hg_new_wp_banner h3 {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 1px;
}

.hg_new_wp_banner h3 strong {
  font-size: 30px;
}

.hg_new_wp_banner .hg_left_img_block, .hg_new_wp_banner .hg_new_wp_banner_sub_center, .hg_new_wp_banner .hg_right_button_block {
  float: left;
}

.hg_new_wp_banner .hg_new_wp_banner_sub_center {
  width: 480px;
  margin-right: 42px;
}

#wp_plugin_wrapper,
#joomla_plugin_wrapper {
  border-top: 3px solid #d2d2d2;
}

.hg_right_button_block {
  margin-top: 133px;
}

.hg_new_wp_banner {
  color: #3aa3cd;
  border-top: 1px solid #efeeed;
  border-bottom: 1px solid #efeeed;
  background: #fbfbfb;
  padding: 34px 0 8px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 63px;
}

.hg_new_wp_banner span {
  color: #0170a3;
  font-size: 14px;
  line-height: 25px;
  display: inline-block;
  width: 403px;
  font-weight: lighter;
  margin-top: 23px;
}

.hg_new_wp_banner .hg_left_img_block {
  position: relative;
  height: 187px;
  width: 271px;
}

.hg_new_wp_banner .hg_left_img_block img {
  position: absolute;
  bottom: 0;
}

.hg_new_wp_banner h3 {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 1px;
}

.hg_new_wp_banner h3 strong {
  font-size: 30px;
}

.hg_new_wp_banner .hg_left_img_block, .hg_new_wp_banner .hg_new_wp_banner_sub_center, .hg_new_wp_banner .hg_right_button_block {
  float: left;
}

.hg_new_wp_banner .hg_new_wp_banner_sub_center {
  width: 480px;
  margin-right: 42px;
}

.joomla_great_new {
  font-family: "Open Sans", sans-serif;
  font-size: 36px;
  color: #e83b23;
}

.hg_wp_plugin_banner, .hg_banner_img {
  height: 373px;
}

.hg-text-block {
  width: 36%;
}

.hg-text-block.hg_30 {
  width: 30%;
}

.hg-text-block.hg_33 {
  width: 33%;
}

.hg-text-block.hg_39 {
  width: 39%;
}

.hg_fw_bold {
  font-weight: 700;
}

.hg-text-block.hg_34 {
  width: 34%;
}

.hg-text-block.hg-text-left {
  float: left;
}

.hg-text-block.hg-text-right {
  float: right;
}

.hg_wp_plugin_banner > a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.hg_wp_plugin_banner h1,
.hg_wp_plugin_banner h2 {
  font: 36px "Open Sans", sans-serif;
  font-weight: lighter;
  color: #fff;
  line-height: 50px;
  margin-top: 35px;
}

.hg_wp_plugin_banner .hg_gallery_images h1 {
  margin-top: 20px;
}

.hg_wp_plugin_banner p.hg_color_yellow {
  color: #dab147;
}

.hg_wp_plugin_banner h1 span {
  font: 34px "Open Sans";
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 11px;
}

.hg_wp_plugin_banner p {
  color: #fff;
  font: 20px "Open Sans",sans-serif;
  line-height: 36px;
}

.wp_plugin_banner a,
.joomla_plugin_banner a,
.wp_plugin_banner a:link,
.joomla_plugin_banner a:link,
.wp_plugin_banner a:visited,
.joomla_plugin_banner a:visited {
  display: inline-block;
}

.wp_plugin_banner img,
.joomla_plugin_banner img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.plugin_page_nav {
  background: #f3f0f0;
}

.plugin_page_nav .plugin_page_nav_inner ul {
  list-style-type: none;
  font-size: 0;
}

.plugin_page_nav .plugin_page_nav_inner ul li {
  display: inline-block;
  float: left;
  margin: 0;
  padding: 0;
  font-size: 12px;
}

.plugin_page_nav .plugin_page_nav_inner ul li a,
.plugin_page_nav .plugin_page_nav_inner ul li a:link,
.plugin_page_nav .plugin_page_nav_inner ul li a:visited {
  position: relative;
  display: block;
  height: 28px;
  margin: 0;
  padding: 0 0 0 26px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: normal;
  color: #868a8c;
  line-height: 28px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
}

.plugin_page_nav .plugin_page_nav_inner ul li a:hover,
.plugin_page_nav .plugin_page_nav_inner ul li a:focus,
.plugin_page_nav .plugin_page_nav_inner ul li a:active {
  text-decoration: none;
  background: #fff;
}

.plugin_page_nav .plugin_page_nav_inner ul li a:before {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #d5d4d4;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  margin-left: 1px;
  left: 100%;
  z-index: 1;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
}

.plugin_page_nav .plugin_page_nav_inner ul li a:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #f3f0f0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  left: 100%;
  z-index: 2;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
}

.plugin_page_nav .plugin_page_nav_inner ul li a:hover:after {
  border-left-color: #fff;
}

.plugin_page_nav .plugin_page_nav_inner ul li:first-child a {
  padding-left: 10px;
}

.plugin_page_nav .plugin_page_nav_inner ul li.current a,
.plugin_page_nav .plugin_page_nav_inner ul li.current a:link,
.plugin_page_nav .plugin_page_nav_inner ul li.current a:visited {
  color: #0064a4;
}

.plugin_page_nav .plugin_page_nav_inner ul li.homelink a,
.plugin_page_nav .plugin_page_nav_inner ul li.homelink a:link,
.plugin_page_nav .plugin_page_nav_inner ul li.homelink a:visited {
  width: 16px;
  padding-right: 28px;
  background: url(../images/huge-it-template-icons.png) -80px -168px no-repeat;
}

.plugin_page_nav .plugin_page_nav_inner ul li.homelink a:hover {
  background-color: #fff;
}

.plugin_page_links {
  padding: 11px 0 12px 0;
}

.plugin_page_links ul {
  list-style-type: none;
  font-size: 0;
  text-align: center;
}

.plugin_page_links ul li {
  display: inline-block;
  margin: 0 58px 0 0;
  font-size: 18px;
  vertical-align: top;
}

.plugin_page_links ul li:last-child {
  margin: 0;
}

.plugin_page_links ul li a,
.plugin_page_links ul li a:link,
.plugin_page_links ul li a:visited {
  display: block;
  position: relative;
  width: 84px;
  height: 84px;
  background-color: #bf1e2e;
  font-family: 'Roboto',sans-serif;
  font-size: 18px;
  color: #fefefe;
  text-decoration: none;
  line-height: 20px;
  border-radius: 100%;
  text-align: center;
  -webkit-box-shadow: 0 5px 5px 0 rgba(174, 172, 172, 0.75);
          box-shadow: 0 5px 5px 0 rgba(174, 172, 172, 0.75);
}

.plugin_page_links ul li a:hover,
.plugin_page_links ul li a:focus,
.plugin_page_links ul li a:active {
  text-decoration: none;
}

.plugin_page_links ul li a:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  background-image: url(../images/huge-it-template-icons.png);
  -webkit-transition: all .2s .2s linear;
  transition: all .2s .2s linear;
}

.plugin_page_links ul li.home a:before {
  background-position: -146px -457px;
}

.plugin_page_links ul li.demo a:before {
  background-position: -144px -104px;
}

.plugin_page_links ul li.admindemo a:before {
  background-position: -144px -200px;
}

.plugin_page_links ul li.faq a:before {
  background-position: -144px -285px;
}

.plugin_page_links ul li.usermanual a:before {
  background-position: -144px -371px;
}

.plugin_page_links ul li.forum a:before {
  background-position: -46px -371px;
}

.plugin_page_links ul li a:hover:before {
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.plugin_page_links ul li a span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.plugin_page_links ul li a:hover span {
  opacity: 1;
  -webkit-transition: all .2s .2s linear;
  transition: all .2s .2s linear;
}

.plugin_page_links ul li.active a:before {
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

.plugin_page_links ul li.active a span {
  opacity: 1;
  -webkit-transition: all .2s .2s linear;
  transition: all .2s .2s linear;
}

.plugin_homepage_entry {
  margin: 27px auto 76px auto;
}

.plugin_homepage_entry h1,
.plugin_home_entry_title {
  margin: 0 0 21px 0;
  font-family: 'Open Sans',sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #767373;
  line-height: 34px;
  text-align: center;
}

.plugin_homepage_entry p {
  width: 865px;
  margin: 0 auto;
  font-family: 'Open Sans',sans-serif;
  font-size: 18px;
  color: #767373;
  line-height: 20px;
  text-align: center;
}

.wp_plugin_payment_image {
  margin-top: 38px;
  text-align: center;
}

.plugin_features_content_list {
  overflow: hidden;
}

.plugin_features_content_list .feature {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  padding: 36px 0 28px 0;
}

.plugin_features_content_list .feature .image_block {
  float: left;
  width: 468px;
  margin-right: 155px;
}

.plugin_features_content_list .feature.right .image_block {
  margin-right: 0;
  margin-left: 155px;
  float: right;
}

.plugin_features_content_list .feature .text_block {
  position: absolute;
  display: block;
  width: 460px;
  top: 0;
  height: 100%;
  right: 0;
}

.plugin_features_content_list .feature.right .text_block {
  left: 0;
}

.plugin_features_content_list .feature .text_block .text_block_inner {
  position: absolute;
  display: table;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.plugin_features_content_list .feature img {
  display: block;
  float: right;
  vertical-align: middle;
  margin: 0 !important;
}

.plugin_features_content_list .feature.right img {
  float: left;
}

.plugin_features_content_list .feature h3 {
  position: relative;
  margin: 0 0 37px 0;
  font-family: 'Roboto',sans-serif;
  font-size: 30px;
  color: #4c4848;
  line-height: 34px;
}

.plugin_features_content_list .feature.right h3 {
  text-align: right;
}

.plugin_features_content_list .feature p {
  position: relative;
  margin: 0;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  color: #222222;
  line-height: 19px;
}

.plugin_features_content_list .feature.right p {
  text-align: right;
}

.plugin_homepage_demo_links {
  margin: 0 auto 79px auto;
}

#joomla_plugin_wrapper .plugin_homepage_demo_links {
  border-bottom: none;
}

.plugin_homepage_demo_links ul {
  list-style-type: none;
}

.plugin_homepage_demo_links ul li {
  display: block;
  width: 100%;
  float: left;
  margin: 0 0 60px 0;
}

.plugin_homepage_demo_links ul li:first-child {
  margin-top: 67px;
}

.plugin_homepage_demo_links ul li:last-child {
  margin-bottom: 74px;
}

.plugin_homepage_demo_links ul li img {
  float: right;
  margin-right: 65px;
  vertical-align: middle;
}

.plugin_homepage_demo_links ul li h4 {
  margin: 0 0 22px 0;
  font-family: 'Open Sans',sans-serif;
  font-size: 30px;
  color: #bf1e2e;
  line-height: 34px;
}

.plugin_homepage_demo_links ul li p {
  margin: 0;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #767272;
  line-height: 18px;
}

.plugin_homepage_demo_links ul li .link_block {
  margin-top: 37px;
  font-size: 0;
}

.plugin_homepage_demo_links ul li .link_block a,
.plugin_homepage_demo_links ul li .link_block a:link,
.plugin_homepage_demo_links ul li .link_block a:visited {
  display: inline-block;
  position: relative;
  margin: 0;
  height: 40px;
  padding: 0 22px;
  background: #bf1e2e;
  color: #fffefe;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
}

.plugin_homepage_demo_links ul li .link_block a:hover,
.plugin_homepage_demo_links ul li .link_block a:link:hover,
.plugin_homepage_demo_links ul li .link_block a:visited:hover {
  background: #e0041a;
}

.plugin_homepage_demo_links ul li .link_block a:hover,
.plugin_homepage_demo_links ul li .link_block a:focus,
.plugin_homepage_demo_links ul li .link_block a:active {
  text-decoration: none;
}

.hg_52.hg_price_table_builder {
  width: 52%;
}

.hg_wp_plugin_banner .hg_price_table_builder h1 {
  font-size: 68px;
  margin-top: 60px;
  font-weight: 700;
}

.hg_wp_plugin_banner h1 span {
  display: block;
}

.hg_wp_plugin_banner .hg_price_table_builder h1 span {
  font-size: 52px;
}

.hg_wp_plugin_banner .hg-white p {
  color: #fff;
}

.hg-text-block.hg_54 {
  width: 54%;
}

.hg_wp_plugin_banner .wp_login .hg_bold {
  font-size: 68px;
  margin-bottom: 0;
}

.hg_wp_plugin_banner .wp_login h1 {
  font: 45px "Open Sans", sans-serif;
  line-height: 30px;
  margin-top: 64px;
}

.hg_wp_plugin_banner .wp_login p {
  font: 18px "Roboto Regular",sans-serif;
  line-height: 30px;
}

#mobile_apps_banner {
  height: 458px;
  background: #bf1e2e;
  margin-bottom: 56px;
  overflow: hidden;
}

#mobile_apps_banner .text_block {
  position: absolute;
  width: 533px;
  left: 24.58%;
  bottom: 86px;
}

#mobile_apps_banner .text_block h1 {
  display: block;
  margin: 0px 0px 17px 0px;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 62.5px;
  color: #ffffff;
  line-height: 71px;
}

#mobile_apps_banner .text_block h1 .white_thin {
  font-family: 'Roboto Thin', sans-serif;
  font-size: 50px;
}

#mobile_apps_banner .text_block p {
  margin: 0px;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 15.3px;
  color: #ffffff;
  line-height: 18px;
}

#mobile_apps_banner .image_block {
  position: absolute;
  bottom: 0px;
  right: 19.3%;
  height: 100%;
  width: 669px;
}

#mobile_apps_banner .image_block div.icon {
  position: absolute;
  background-image: url(../images/mobile_app_banner_icons.png);
  background-repeat: no-repeat;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

#mobile_apps_banner .image_block .map_bg {
  bottom: 0px;
  right: 0px;
  width: 669px;
  height: 380px;
  background-position: 0px -1979px;
}

#mobile_apps_banner .image_block .hand {
  bottom: 0px;
  right: 142px;
  width: 209px;
  height: 213px;
  background-position: 0px -2363px;
}

#mobile_apps_banner .image_block .secondary_icons {
  bottom: 89px;
  right: 193px;
  width: 226px;
  height: 198px;
  background-position: 0px 0px;
}

#mobile_apps_banner .image_block .ellipse_small {
  bottom: -38px;
  right: 98px;
  width: 435px;
  height: 435px;
  background-position: 0px -638px;
  -webkit-animation: fan 10s infinite linear;
          animation: fan 10s infinite linear;
}

#mobile_apps_banner .image_block .ellipse_medium {
  bottom: -39px;
  right: 98px;
  width: 435px;
  height: 435px;
  background-position: 0px -201px;
  -webkit-animation: fan-reverse 20s infinite linear;
          animation: fan-reverse 20s infinite linear;
}

#mobile_apps_banner .image_block .ellipse_big {
  bottom: -38px;
  right: 98px;
  width: 435px;
  height: 435px;
  background-position: 0px -1089px;
  -webkit-animation: fan 10s infinite linear;
          animation: fan 10s infinite linear;
}

#mobile_apps_banner .image_block .main_icons {
  bottom: -38px;
  right: 98px;
  width: 435px;
  height: 435px;
  background-position: 0px -1528px;
  -webkit-animation: fan 20s infinite linear;
          animation: fan 20s infinite linear;
}

#mobile_apps_entry_text {
  margin: 0px auto 25px auto;
}

#mobile_apps_entry_text p {
  font-family: 'Roboto Light';
  font-size: 18px;
  color: #343030;
  line-height: 37px;
  text-align: justify;
}

#mobile_apps_list {
  list-style-type: none;
}

#mobile_apps_list li {
  display: block;
  margin: 24px 0px 116px 0px;
}

#mobile_apps_list li .image_block {
  float: left;
}

#mobile_apps_list li img {
  float: left;
  margin: 0px 62px 0px 0px;
}

#mobile_apps_list li .text_block {
  float: left;
  width: 602px;
  margin: 145px 0px 0px 0px;
}

#mobile_apps_list li .text_block h2 {
  margin: 0px 0px 31px 0px;
  font-family: 'Roboto Regular';
  font-size: 60px;
  color: #1d1d1d;
  line-height: 68px;
}

#mobile_apps_list li .text_block p {
  height: 110px;
  margin: 0px 0px 53px 0px;
  font-family: 'Roboto Regular';
  font-size: 18px;
  color: #1d1d1d;
  line-height: 28px;
}

#mobile_apps_list li .text_block .links_block {
  font-size: 0px;
}

#mobile_apps_list li .text_block .links_block .android_link_big, #mobile_apps_list li .text_block .links_block .apple_link_big {
  margin-right: 20px;
}

#mobile_app_single_wrapper {
  border-top: 3px solid #d2d2d2;
}

#mobile_app_single_banner {
  margin: 0px 0px 82px 0px;
}

#mobile_app_single_banner .image_block img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

#mobile_app_single_banner .text_block {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 240px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 5px 0px 47px;
}

#mobile_app_single_banner .text_block h1 {
  margin: 0px 0px 54px 0px;
  font-family: 'Lato',sans-serif;
  font-size: 64px;
  color: #ffffff;
  line-height: 69px;
  text-align: center;
}

#mobile_app_single_banner .text_block p {
  margin: 0px;
  height: 117px;
  overflow: hidden;
  font-family: 'Lato';
  font-size: 25px;
  color: #ffffff;
  line-height: 39px;
  text-align: center;
}

#mobile_app_single_content {
  padding: 0px 18px 0px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  color: #211f1f;
  line-height: 35px;
}

#mobile_app_single_content p {
  margin: 0px 0px 52px 0px;
}

#hero_section .hero-tab {
  display: none;
}

#hero_section .hero-tab.hero-tab--active {
  display: block;
}

#wp_hero .hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Roboto Regular';
  font-weight: 100;
  background: #fc3232;
  height: 450px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

#wp_hero .hero-inner .hero-left {
  width: 550px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 115px;
  padding-left: 132px;
}

#wp_hero .hero-inner .hero-left .hero-title {
  font-size: 55px;
  color: #fefeff;
  line-height: 1;
  margin-bottom: 23px;
  font-family: "Roboto Light";
}

#wp_hero .hero-inner .hero-left .hero-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

#wp_hero .hero-inner .hero-left .hero-content {
  font-size: 24px;
  font-weight: 100;
  color: #fdfdfd;
  line-height: 1;
  margin-bottom: 22px;
}

#wp_hero .hero-inner .hero-right {
  width: calc(100% - 550px);
  /*@media (min-width: 1200px) {
        transform: scale(1.3) translateX(15%);
      }
      @media (min-width: 1490px){
        transform: scale(1.4) translateX(15%);
      }*/
}

#wp_hero .hero-inner .hero-right .hero-3d {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scale(0.9) rotateX(56deg) rotateY(0deg) rotate(45deg);
          transform: scale(0.9) rotateX(56deg) rotateY(0deg) rotate(45deg);
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  -webkit-transform: translate(0%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
          transform: translate(0%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}

@media (max-width: 1900px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform: translate(10%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
            transform: translate(10%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  }
}

@media (max-width: 1600px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform: translate(20%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
            transform: translate(20%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  }
}

@media (max-width: 1200px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform: translate(30%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
            transform: translate(30%, -91%) rotateX(56deg) rotateY(0deg) rotate(45deg);
  }
}

@media (max-width: 375px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    -webkit-transform-origin: 101% 51%;
            transform-origin: 101% 51%;
  }
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  min-width: 0;
  -ms-flex-preferred-size: 31.87331%;
  flex-basis: 31.87331%;
  margin-right: 2.18978%;
  margin-top: 2.18978%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  outline: none;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer:nth-child(2n+1) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link {
  position: relative;
  display: block;
  -webkit-box-shadow: 15px 10px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 15px 10px 25px rgba(0, 0, 0, 0.2);
  line-height: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  overflow: hidden;
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link .hero-layer-cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link .hero-layer-cover:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 2;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link .hero-layer-cover .hero-layer-icon {
  position: absolute;
  left: 15px;
  bottom: 15px;
  display: inline-block;
  z-index: 3;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer .hero-layer-link img {
  max-width: 100%;
  vertical-align: middle;
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer:hover .hero-layer-link {
  -webkit-transform: translate3d(-6%, -6%, -20vh);
          transform: translate3d(-6%, -6%, -20vh);
  -webkit-box-shadow: 35px 25px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 35px 25px 25px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d .hero-layer:hover .hero-layer-link .hero-layer-cover {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
  transition: all 0.2s cubic-bezier(0.11, 0.83, 0.29, 0.83);
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_portfolio .hero-layer-cover:after {
  background: #ef4446;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_forms .hero-layer-cover:after {
  background: #414fd3;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_gallery .hero-layer-cover:after {
  background: #f3b142;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_google_maps .hero-layer-cover:after {
  background: #49b050;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_photo_gallery .hero-layer-cover:after {
  background: #f68b46;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_login .hero-layer-cover:after {
  background: #8764ab;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_responsive_slider .hero-layer-cover:after {
  background: #79c35a;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_catalog .hero-layer-cover:after {
  background: #4527a0;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_video_gallery .hero-layer-cover:after {
  background: #43beca;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_slider .hero-layer-cover:after {
  background: #157dbe;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_lightbox .hero-layer-cover:after {
  background: #28a79a;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_price_table_builder .hero-layer-cover:after {
  background: #72cac1;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_video_player .hero-layer-cover:after {
  background: #ee2937;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_priceing_table .hero-layer-cover:after {
  background: #1688a1;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_share_buttons .hero-layer-cover:after {
  background: #f36f3b;
}

#wp_hero .hero-inner .hero-right .hero-3d #hero_plugin_colorbox .hero-layer-cover:after {
  background: #d52d30;
}

@media (max-width: 1600px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    margin-left: 10%;
  }
}

@media (max-width: 1420px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 130%;
    margin-left: 20%;
  }
}

@media (max-width: 1200px) {
  #wp_hero .hero-inner {
    height: 333px;
  }
  #wp_hero .hero-inner .hero-left {
    width: 460px;
    padding-top: 71px;
    padding-left: 65px;
  }
  #wp_hero .hero-inner .hero-right {
    width: calc(100% - 460px);
  }
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 140%;
    margin-left: 10%;
  }
}

@media (max-width: 1100px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 150%;
    margin-left: 20%;
  }
}

@media (max-width: 1000px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 170%;
    margin-left: 23%;
  }
}

@media (max-width: 900px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 180%;
    margin-left: 40%;
  }
}

@media (max-width: 800px) {
  #wp_hero .hero-inner .hero-left {
    width: 320px;
    padding-top: 41px;
    padding-left: 41px;
  }
  #wp_hero .hero-inner .hero-left .hero-title {
    font-size: 38px;
    margin-bottom: 23px;
  }
  #wp_hero .hero-inner .hero-left .hero-subtitle {
    font-size: 14px;
  }
  #wp_hero .hero-inner .hero-right {
    width: calc(100% - 320px);
  }
  #wp_hero .hero-inner .hero-right .hero-3d {
    margin-left: 30%;
  }
}

@media (max-width: 700px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    margin-left: 40%;
  }
}

@media (max-width: 640px) {
  #wp_hero .hero-inner .hero-left {
    padding-top: 19px;
    padding-left: 16px;
  }
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 300%;
    margin-left: 0%;
  }
  #wp_hero .hero-inner .hero-right .hero-3d .hero-layer-icon {
    width: 30%;
  }
}

@media (max-width: 500px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 500%;
    margin-left: 70%;
  }
}

@media (max-width: 400px) {
  #wp_hero .hero-inner .hero-right .hero-3d {
    width: 900%;
    min-width: 200px;
    margin-left: 80%;
  }
}

@media (max-width: 380px) {
  #wp_hero .hero-inner .hero-left {
    width: 100%;
  }
  #wp_hero .hero-inner .hero-right {
    display: none;
  }
}

#joomla_hero {
  position: relative;
  overflow: hidden;
}

#joomla_hero .hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Roboto Regular';
  font-weight: 100;
  height: 450px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

#joomla_hero .hero-inner .hero-left {
  width: 550px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 115px;
  padding-left: 132px;
}

#joomla_hero .hero-inner .hero-left .hero-title {
  font-size: 55px;
  color: #fefeff;
  line-height: 1;
  margin-bottom: 23px;
  font-family: "Roboto Light";
}

#joomla_hero .hero-inner .hero-left .hero-subtitle {
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}

#joomla_hero .hero-inner .hero-left .hero-content {
  font-size: 24px;
  font-weight: 100;
  color: #fdfdfd;
  line-height: 1;
  margin-bottom: 22px;
}

#joomla_hero .hero-inner .hero-right {
  width: calc(100% - 550px);
}

#joomla_hero .hero-inner .hero-right .hero-bubbles {
  width: 100%;
  height: 100%;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.17);
          box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.17);
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
  top: 190px;
  right: 79%;
  width: 79px;
  height: 79px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#298787), color-stop(5%, #298787), color-stop(10%, #298787), to(#20cad6));
  background: linear-gradient(0deg, #298787 0%, #298787 5%, #298787 10%, #20cad6 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#20CAD6', endColorstr='#298787', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox a img {
  width: 36px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
  top: 92px;
  right: 61%;
  width: 108px;
  height: 108px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#118701), to(#aaf765));
  background: linear-gradient(0deg, #118701 0%, #aaf765 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AAF765', endColorstr='#118701', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps a img {
  width: 63px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
  top: 54px;
  right: 29%;
  width: 120px;
  height: 120px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#edaa39), color-stop(20%, #edaa39), color-stop(91%, #fccc71), to(#ffd179));
  background: linear-gradient(0deg, #edaa39 0%, #edaa39 20%, #fccc71 91%, #ffd179 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd179', endColorstr='#edaa39', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery a img {
  width: 81px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
  top: 205px;
  right: 20%;
  width: 70px;
  height: 70px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#42bec9), color-stop(2%, #42bec9), color-stop(29%, #42bec9), color-stop(91%, #42e7f8), to(#43eeff));
  background: linear-gradient(0deg, #42bec9 0%, #42bec9 2%, #42bec9 29%, #42e7f8 91%, #43eeff 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#43eeff', endColorstr='#42bec9', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery a img {
  width: 35px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
  top: 290px;
  right: 30%;
  width: 116px;
  height: 116px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#4527a0), color-stop(2%, #4527a0), color-stop(30%, #5a3ab8), color-stop(91%, #7857dd), to(#7d5ce3));
  background: linear-gradient(0deg, #4527a0 0%, #4527a0 2%, #5a3ab8 30%, #7857dd 91%, #7d5ce3 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d5ce3', endColorstr='#4527a0', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog a img {
  width: 67px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider {
  top: 190px;
  right: 45%;
  width: 93px;
  height: 93px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#3561d8), color-stop(2%, #3561d8), color-stop(47%, #3f8fe5), color-stop(91%, #4ca8f0), to(#4faef3));
  background: linear-gradient(0deg, #3561d8 0%, #3561d8 2%, #3f8fe5 47%, #4ca8f0 91%, #4faef3 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4faef3', endColorstr='#3561d8', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider a img {
  width: 50px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
  top: 260px;
  right: 55%;
  width: 140px;
  height: 140px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#f03436), color-stop(2%, #f03436), color-stop(19%, #fa484e), color-stop(91%, #f9845a), to(#f98c5c));
  background: linear-gradient(0deg, #f03436 0%, #f03436 2%, #fa484e 19%, #f9845a 91%, #f98c5c 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f98c5c', endColorstr='#f03436', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio a img {
  width: 78px;
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
  top: 37px;
  right: 48%;
  width: 78px;
  height: 78px;
  /* ff3.6+ */
  /* safari4+,chrome */
  /* safari5.1+,chrome10+ */
  /* opera 11.10+ */
  /* ie10+ */
  background: -webkit-gradient(linear, left bottom, left top, from(#460aa2), color-stop(1%, #460aa2), color-stop(19%, #6920d6), color-stop(91%, #8030f9), to(#8332fe));
  background: linear-gradient(0deg, #460aa2 0%, #460aa2 1%, #6920d6 19%, #8030f9 91%, #8332fe 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8332fe', endColorstr='#460aa2', GradientType=0);
  /* ie6-9 */
}

#joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow a img {
  width: 56px;
}

@media (max-width: 1420px) {
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    top: 245px;
    right: 84%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
    top: 78px;
    right: 64%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
    top: 310px;
    right: 23%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    top: 260px;
    right: 55%;
  }
}

@media (max-width: 1200px) {
  #joomla_hero .hero-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 335px;
  }
  #joomla_hero .hero-inner .hero-left {
    padding-top: 18px;
    padding-left: 0px;
    text-align: center;
    height: 190px;
  }
  #joomla_hero .hero-inner .hero-left .hero-title {
    font-size: 50px;
    margin-bottom: 10px;
  }
  #joomla_hero .hero-inner .hero-left .hero-subtitle {
    margin-bottom: 12px;
  }
  #joomla_hero .hero-inner .hero-left .hero-content {
    display: none;
  }
  #joomla_hero .hero-inner .hero-right {
    width: 100%;
    height: 145px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles {
    width: 100%;
    height: 100%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    top: 24px;
    left: 7%;
    width: 63px;
    height: 63px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox a img {
    width: 31px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
    top: -56px;
    left: 18%;
    width: 84px;
    height: 84px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps a img {
    width: 50px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
    top: -75px;
    right: 9%;
    width: 94px;
    height: 94px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery a img {
    width: 64px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
    top: 60px;
    right: 16%;
    width: 60px;
    height: 60px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery a img {
    width: 33px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
    top: 63px;
    left: calc(50% - 210px);
    width: 93px;
    height: 93px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog a img {
    width: 52px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider {
    top: 3px;
    left: calc(50% - 90px);
    width: 73px;
    height: 73px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider a img {
    width: 39px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    top: 37px;
    left: calc(50% + 36px);
    width: 110px;
    height: 110px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio a img {
    width: 62px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
    top: -37px;
    right: 28%;
    width: 61px;
    height: 61px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow a img {
    width: 44px;
  }
}

@media (max-width: 800px) {
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    left: 4%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
    top: -51px;
    right: 3%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
    right: 12%;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    left: calc(50% + 7px);
  }
}

@media (max-width: 640px) {
  #joomla_hero .hero-inner .hero-left {
    padding-top: 18px;
    padding-left: 0px;
    text-align: center;
    height: 190px;
  }
  #joomla_hero .hero-inner .hero-left .hero-title {
    font-size: 40px;
  }
  #joomla_hero .hero-inner .hero-left .hero-subtitle {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #joomla_hero .hero-inner .hero-right {
    height: 175px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox {
    top: 22px;
    left: 4%;
    width: 51px;
    height: 51px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--lightbox a img {
    width: 25px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps {
    top: 0px;
    left: 24%;
    width: 64px;
    height: 64px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--maps a img {
    width: 39px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery {
    top: 5px;
    right: 3%;
    width: 74px;
    height: 74px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--gallery a img {
    width: 50px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery {
    top: 94px;
    right: 10%;
    width: 40px;
    height: 40px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--video-gallery a img {
    width: 22px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog {
    top: 100px;
    left: 15%;
    width: 73px;
    height: 73px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--catalog a img {
    width: 42px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider {
    top: 72px;
    left: calc(50% - 30px);
    width: 57px;
    height: 57px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slider a img {
    width: 31px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    top: 103px;
    left: calc(50% + 50px);
    width: 87px;
    height: 87px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio a img {
    width: 49px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
    top: 20px;
    left: calc(50% + 50px);
    width: 50px;
    height: 50px;
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow a img {
    width: 36px;
  }
}

@media (max-width: 410px) {
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--portfolio {
    left: calc(50% + 25px);
  }
  #joomla_hero .hero-inner .hero-right .hero-bubbles .hero-bubble.hero-bubble--slideshow {
    top: 10px;
    left: calc(50% + 20px);
  }
}

#background {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: -100;
}

#hero_navigation a {
  position: relative;
  display: block;
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 83px;
  line-height: 83px;
  font-size: 24px;
  font-family: 'HelveticaNeue Light';
  text-align: center;
  color: #303030;
  text-decoration: none;
  border-bottom: 4px solid #ebebeb;
}

#hero_navigation a svg {
  margin: 0px auto;
  width: 29px;
  height: 29px;
  margin: -5px 3px 0px 0px;
  vertical-align: middle;
}

#hero_navigation a svg path {
  fill: #303030;
}

#hero_navigation a.hero-navigation--joomla img {
  width: 27px;
  height: 27px;
}

#hero_navigation a:hover {
  color: #f54337;
}

#hero_navigation a:hover svg path {
  fill: #f54337;
}

#hero_navigation a.active {
  color: #f54337;
}

#hero_navigation a.active svg path {
  fill: #f54337;
}

#hero_navigation a.active:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0px;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #f54337;
}

@media (max-width: 1200px) {
  #hero_navigation a {
    height: 43px;
    line-height: 43px;
    font-size: 16px;
    border-bottom: 2px solid #ebebeb;
  }
  #hero_navigation a img {
    width: 16px;
    height: 16px;
  }
  #hero_navigation a.hero-navigation--joomla img {
    width: 16px;
    height: 16px;
  }
  #hero_navigation a.active:after {
    bottom: -2px;
    height: 2px;
    border-radius: 1px;
  }
}

#welcome_section {
  background: #f4f4f4;
  padding: 50px 0px 50px 0px;
  text-align: center;
}

#welcome_section h2 {
  margin-bottom: 17px;
  font-size: 40px;
  color: #f54337;
  font-family: 'HelveticaNeue Light';
}

@media (max-width: 430px) {
  #welcome_section h2 {
    font-size: 30px;
  }
}

#welcome_section p {
  font-size: 18px;
  color: #717171;
  font-family: 'HelveticaNeue Thin';
  margin-bottom: 10px;
}

.products_list_sectoin {
  padding-bottom: 10px;
  text-align: center;
}

.products_list_sectoin .read_more_button {
  position: relative;
  margin: 0px auto;
  margin-top: 20px;
}

#money_back_section {
  position: relative;
  height: 164px;
  margin: 60px 0px 0px 0px;
  background: #1f3a93;
}

#money_back_section .money_back_block {
  position: relative;
  margin: 0px auto;
  height: inherit;
  width: 915px;
}

#money_back_section .money_back_block .left-block {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 263px;
  height: 223px;
  background: url(../images/money.back.sticker.bg.png) left top no-repeat;
  color: #fefefe;
}

#money_back_section .money_back_block .left-block .red-label {
  padding: 70px 0px 0px 22px;
  line-height: 46px;
  font-size: 37px;
  font-family: 'Acme Regular';
}

#money_back_section .money_back_block .left-block .orange-label {
  position: absolute;
  right: 29px;
  top: 46px;
  text-align: center;
  font-size: 26px;
  -webkit-transform: rotate(14deg);
          transform: rotate(14deg);
  font-family: "Baloo Regular";
}

#money_back_section .money_back_block .left-block .orange-label strong {
  font-size: 50px;
  display: block;
  font-family: 'Acme Regular';
  margin-bottom: -14px;
}

#money_back_section .money_back_block .right-block {
  position: relative;
  margin-left: 300px;
  padding-top: 35px;
  color: #fff;
}

#money_back_section .money_back_block .right-block h2 {
  padding-bottom: 5px;
  font-size: 30px;
  font-family: 'HelveticaNeue Light';
}

#money_back_section .money_back_block .right-block p {
  margin-bottom: 2px;
  font-size: 25px;
  font-family: 'HelveticaNeue Thin';
}

#money_back_section .money_back_block .right-block p a {
  color: #fff;
}

@media (max-width: 1200px) {
  #money_back_section {
    height: 110px;
    margin: 28px 0px 0px 0px;
  }
  #money_back_section .money_back_block {
    width: 660px;
  }
  #money_back_section .money_back_block .left-block {
    left: 0px;
    width: 164px;
    height: 138px;
    background-size: 100% 100%;
  }
  #money_back_section .money_back_block .left-block .red-label {
    padding: 44px 0px 0px 16px;
    line-height: 28px;
    font-size: 23px;
  }
  #money_back_section .money_back_block .left-block .orange-label {
    right: 18px;
    top: 27px;
    font-size: 16px;
  }
  #money_back_section .money_back_block .left-block .orange-label strong {
    font-size: 31px;
    margin-bottom: -12px;
  }
  #money_back_section .money_back_block .right-block {
    margin-left: 196px;
    padding-top: 20px;
  }
  #money_back_section .money_back_block .right-block h2 {
    padding-bottom: 6px;
    font-size: 24px;
  }
  #money_back_section .money_back_block .right-block p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #money_back_section {
    height: 98px;
    margin: 31px 0px 0px 0px;
  }
  #money_back_section .money_back_block {
    width: 100%;
    max-width: 650px;
  }
  #money_back_section .money_back_block .left-block {
    left: 0px;
    width: 154px;
    height: 130px;
    background-size: 100% 100%;
  }
  #money_back_section .money_back_block .left-block .red-label {
    padding: 42px 0px 0px 12px;
    line-height: 26px;
    font-size: 22px;
  }
  #money_back_section .money_back_block .left-block .orange-label {
    right: 18px;
    top: 26px;
    font-size: 15px;
  }
  #money_back_section .money_back_block .left-block .orange-label strong {
    font-size: 29px;
  }
  #money_back_section .money_back_block .right-block {
    margin-left: 190px;
    padding-top: 20px;
  }
  #money_back_section .money_back_block .right-block h2 {
    padding-bottom: 6px;
    font-size: 20px;
  }
  #money_back_section .money_back_block .right-block p {
    font-size: 16px;
  }
}

@media (max-width: 650px) {
  #money_back_section .money_back_block {
    width: 80%;
    min-width: 316px;
  }
  #money_back_section .money_back_block .right-block {
    margin-left: 180px;
  }
  #money_back_section .money_back_block .right-block p {
    display: none;
  }
  #money_back_section .money_back_block .right-block p.refund_policy {
    display: block;
  }
}

#support_section {
  position: relative;
  padding: 74px 70px 37px 70px;
  margin: 0px auto;
  background: #fbfbfb;
}

#support_section h2 {
  width: 100%;
  text-align: center;
  font-size: 45px;
  font-family: 'HelveticaNeue Thin';
  margin-bottom: 35px;
}

#support_section .site-width {
  width: 100%;
}

#support_section .site-width .flex-wrap .support-feature {
  width: 25%;
  padding: 0px 3% 0px 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

#support_section .site-width .flex-wrap .support-feature .feature-icon {
  width: 100%;
  margin-bottom: 8px;
}

#support_section .site-width .flex-wrap .support-feature .feature-icon img {
  width: 62px;
  height: 62px;
}

#support_section .site-width .flex-wrap .support-feature h3 {
  display: block;
  font-size: 18px;
  font-family: 'OpenSans SemiBold';
  padding-bottom: 13px;
}

#support_section .site-width .flex-wrap .support-feature p {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Roboto Regular';
}

@media (max-width: 1024px) {
  #support_section {
    padding: 44px 0px 30px 0px;
  }
  #support_section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  #support_section .site-width .flex-wrap {
    padding: 0px 5% 0px 5%;
  }
  #support_section .site-width .flex-wrap .support-feature {
    height: 193px;
    width: 45%;
    text-align: center;
  }
  #support_section .site-width .flex-wrap .support-feature .feature-icon {
    margin-bottom: 23px;
  }
}

@media (max-width: 900px) {
  #support_section .site-width .flex-wrap {
    padding: 0px 2% 0px 2%;
  }
}

@media (max-width: 768px) {
  #support_section .site-width .flex-wrap .support-feature .feature-icon {
    margin-bottom: 13px;
  }
  #support_section .site-width .flex-wrap .support-feature h3 {
    font-size: 18px;
  }
}

@media (max-width: 650px) {
  #support_section {
    padding: 50px 0px 30px 0px;
  }
  #support_section .site-width .flex-wrap .support-feature {
    height: 173px;
    width: 100%;
    padding: 0px 6% 0px 6%;
  }
  #support_section .site-width .flex-wrap .support-feature .feature-icon {
    margin-bottom: 7px;
  }
}

#special_offers_section {
  height: 400px;
  padding-top: 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fefefe;
  background: url(../images/dicsount.section.cms.icons.bg.png) left top no-repeat, url(../images/dicsount.section.cms.icons.bg.png) right bottom no-repeat;
  background-color: #2747b0;
}

#special_offers_section h3 {
  font-size: 35px;
  font-family: "OpenSans";
  margin-bottom: 5px;
}

#special_offers_section p {
  font-size: 28px;
  font-family: "OpenSans Light";
}

#special_offers_section .special-offers {
  position: relative;
  width: 779px;
  height: 173px;
  padding-top: 40px;
  margin: 0px auto;
}

#special_offers_section .special-offers .offer-card {
  position: relative;
}

#special_offers_section .special-offers .offer-card .offer-content {
  position: relative;
  height: 183px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  background: url(../images/discount-banner-bg.png) right top no-repeat #fdfdfd;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-ribbon {
  font-family: 'Merriweather BoldItalic';
  font-size: 28px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-size: cover;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button {
  position: absolute;
  bottom: -22px;
  left: calc(50% - 22px);
  text-align: center;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: #f54337;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a svg {
  width: 16px;
  height: 16px;
  padding: 14px 0px 14px 0px;
}

#special_offers_section .special-offers .offer-card .offer-content .offer-cta-button a svg path {
  fill: #fff;
}

#special_offers_section .special-offers .offer-card--left {
  float: left;
}

#special_offers_section .special-offers .offer-card--left .offer-content {
  width: 405px;
  padding: 84px 10px 0px 14px;
}

#special_offers_section .special-offers .offer-card--left .offer-content .offer-ribbon {
  position: absolute;
  left: -42px;
  top: 8px;
  width: 490px;
  height: 84px;
  padding-top: 13px;
  background-image: url(../images/discount.wordpress.ribbon.bg.png);
}

#special_offers_section .special-offers .offer-card--left .offer-content .offer-headline {
  position: relative;
  font-size: 20px;
  color: #c2000e;
  font-family: "OpenSans SemiBold";
  margin-bottom: 1px;
}

#special_offers_section .special-offers .offer-card--left .offer-content .offer-description {
  position: relative;
  font-size: 22px;
  font-family: "OpenSans";
  color: #303030;
}

#special_offers_section .special-offers .offer-card--right {
  float: right;
}

#special_offers_section .special-offers .offer-card--right .offer-content {
  width: 267px;
  padding: 93px 10px 0px 15px;
  background-position: right -204px;
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon {
  position: absolute;
  left: -32px;
  top: 13px;
  width: 333px;
  height: 78px;
  padding-top: 18px;
  background-image: url(../images/discount.joomla.ribbon.bg.png);
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon span {
  display: block;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-headline {
  position: relative;
  font-size: 16px;
  color: #3cab2e;
  font-family: "OpenSans SemiBold";
}

#special_offers_section .special-offers .offer-card--right .offer-content .offer-description {
  position: relative;
  font-size: 20px;
  font-family: "OpenSans";
  color: #303030;
}

@media (max-width: 1024px) {
  #special_offers_section {
    height: 367px;
    padding-top: 24px;
  }
  #special_offers_section h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  #special_offers_section p {
    font-size: 17px;
  }
  #special_offers_section .special-offers {
    width: 763px;
    height: 204px;
    padding-top: 25px;
  }
  #special_offers_section .special-offers .offer-card--left {
    padding-top: 21px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content {
    width: 362px;
    height: 173px;
    padding: 73px 10px 0px 12px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-ribbon {
    font-size: 25px;
    left: -38px;
    top: 8px;
    width: 438px;
    height: 60px;
    padding-top: 9px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-headline {
    font-size: 18px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-description {
    font-size: 20px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content {
    width: 298px;
    height: 204px;
    padding: 104px 10px 0px 15px;
    background-position: right -181px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon {
    font-size: 31px;
    left: -36px;
    top: 16px;
    width: 372px;
    height: 86px;
    padding-top: 21px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-headline {
    font-size: 18px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-description {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  #special_offers_section p {
    max-width: 350px;
    margin: 0px auto;
  }
  #special_offers_section .special-offers {
    width: 662px;
    height: 204px;
    padding-top: 28px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content {
    width: 298px;
    height: 142px;
    padding: 60px 10px 0px 15px;
    background-position: right -10px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-ribbon {
    font-size: 20px;
    left: -31px;
    top: 6px;
    width: 361px;
    height: 57px;
    padding-top: 10px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-headline {
    font-size: 14px;
  }
  #special_offers_section .special-offers .offer-card--left .offer-content .offer-description {
    font-size: 16px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content {
    width: 267px;
    height: 183px;
    padding: 93px 10px 0px 15px;
    background-position: right -200px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-ribbon {
    font-size: 26px;
    left: -32px;
    top: 16px;
    width: 333px;
    height: 72px;
    padding-top: 20px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-headline {
    font-size: 15px;
  }
  #special_offers_section .special-offers .offer-card--right .offer-content .offer-description {
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  #special_offers_section {
    background-image: none;
    height: auto;
  }
  #special_offers_section p {
    max-width: 350px;
    margin: 0px auto;
  }
  #special_offers_section .special-offers {
    position: relative;
    width: 337px;
    height: auto;
    padding-top: 28px;
  }
  #special_offers_section .special-offers .offer-card {
    position: relative;
    margin: 0px auto;
    float: none;
    margin-bottom: 50px;
  }
  #special_offers_section .special-offers .offer-card .offer-content {
    margin: 0px auto;
  }
}

#blog_section {
  position: relative;
  width: 1302px;
  margin: 0px auto;
  padding: 60px 0px 41px 0px;
  text-align: center;
}

#blog_section .section-title {
  position: relative;
  font-size: 33px;
  font-family: "OpenSans SemiBold";
  margin: 0px 0px 11px 0px;
}

#blog_section .section-subtitle {
  display: block;
  margin: 0px auto;
  margin-bottom: 40px;
  font-size: 30px;
  font-family: "OpenSans";
}

#blog_section .blog-grid {
  width: 100%;
}

#blog_section .blog-grid .blog-grid-item {
  position: relative;
  float: left;
  width: 382px;
  height: 441px;
  padding: 11px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  border-top: 1px solid #f9f9f9;
  margin: 0px;
  text-align: left;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.2);
}

#blog_section .blog-grid .blog-grid-item a {
  text-decoration: none;
}

#blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

#blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb img {
  position: absolute;
  width: auto;
  height: 100%;
  left: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
  padding: 6px 8px 12px 8px;
  font-size: 16px;
  font-family: "OpenSans";
  color: #818181;
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
  padding: 0px 8px 1px 8px;
  line-height: 22px;
  font-size: 18px;
  color: #0e0e0e;
  font-family: "OpenSans SemiBold";
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
  padding: 0px 8px 0px 8px;
  line-height: 16px;
  font-size: 14px;
  color: #505050;
  font-family: "OpenSans";
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
  position: absolute;
  padding-right: 20px;
  display: inline-block;
  right: 14px;
  bottom: 9px;
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
  font-size: 14px;
  color: #e53935;
  font-family: "OpenSans SemiBold";
}

#blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
  position: absolute;
  top: 4px;
  right: 0px;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../images/blog.read.more.png) left top no-repeat;
}

#blog_section .blog-grid .slick-track {
  height: 460px;
}

#blog_section .blog-grid .slick-track .slick-slide {
  margin: 10px;
}

#blog_section .blog-grid .slick-dots {
  position: relative;
  display: table;
  text-align: center;
  margin: 0px auto;
  padding-top: 27px;
}

#blog_section .blog-grid .slick-dots li {
  display: inline-block;
  list-style: none;
  margin: 0px 4px 0px 4px;
}

#blog_section .blog-grid .slick-dots li.slick-active button {
  background: #b7b7b7;
}

#blog_section .blog-grid .slick-dots li button {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #ececec;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0px;
  outline: none;
  text-indent: -9999px;
  cursor: pointer;
}

#blog_section .blog-section-additional-link {
  position: absolute;
  display: inline-block;
  bottom: 46px;
  right: 35px;
}

#blog_section .blog-section-additional-link a {
  font-size: 14px;
  font-family: "Merriweather BoldItalic";
  color: #303030;
}

@media (max-width: 1320px) {
  #blog_section {
    width: 1020px;
    padding: 38px 0px 33px 0px;
  }
  #blog_section .section-title {
    margin: 0px 0px 0px 0px;
  }
  #blog_section .section-subtitle {
    margin-bottom: 25px;
    font-size: 27px;
  }
  #blog_section .blog-grid .blog-grid-item {
    width: 311px;
    height: 358px;
    padding: 9px;
    margin: 0px;
  }
  #blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
    height: 192px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
    padding: 8px 7px 10px 7px;
    font-size: 13px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
    padding: 0px 7px 5px 7px;
    line-height: 17px;
    font-size: 15px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
    padding: 0px 7px 0px 7px;
    line-height: 14px;
    font-size: 12px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
    padding-right: 20px;
    right: 18px;
    bottom: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
    font-size: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
    top: 4px;
    right: 0px;
    width: 15px;
    height: 15px;
  }
  #blog_section .blog-grid .slick-track {
    height: 365px;
  }
  #blog_section .blog-grid .slick-dots {
    padding-top: 36px;
  }
  #blog_section .blog-grid .slick-dots li {
    margin: 0px 4px 0px 4px;
  }
  #blog_section .blog-grid .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 0px;
  }
  #blog_section .blog-section-additional-link {
    bottom: 20px;
    right: 29px;
  }
  #blog_section .blog-section-additional-link a {
    font-size: 14px;
  }
}

@media (max-width: 1040px) {
  #blog_section {
    width: 680px;
    padding: 38px 0px 33px 0px;
  }
  #blog_section .section-title {
    margin: 0px 0px 0px 0px;
  }
  #blog_section .section-subtitle {
    margin-bottom: 25px;
    font-size: 27px;
  }
  #blog_section .blog-grid .blog-grid-item {
    width: 311px;
    height: 358px;
    padding: 9px;
    margin: 0px;
  }
  #blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
    height: 192px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
    padding: 0px 7px 10px 7px;
    font-size: 13px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
    padding: 0px 7px 5px 7px;
    line-height: 17px;
    font-size: 15px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
    padding: 0px 7px 0px 7px;
    line-height: 14px;
    font-size: 12px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
    padding-right: 20px;
    right: 18px;
    bottom: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
    font-size: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
    top: 4px;
    right: 0px;
    width: 15px;
    height: 15px;
  }
  #blog_section .blog-grid .slick-track {
    height: 365px;
  }
  #blog_section .blog-grid .slick-dots {
    padding-top: 36px;
  }
  #blog_section .blog-grid .slick-dots li {
    margin: 0px 4px 0px 4px;
  }
  #blog_section .blog-grid .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 0px;
  }
  #blog_section .blog-section-additional-link {
    bottom: 20px;
    right: 35px;
  }
  #blog_section .blog-section-additional-link a {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  #blog_section {
    width: 100%;
    padding: 38px 0px 33px 0px;
  }
  #blog_section .section-title {
    font-size: 30px;
  }
  #blog_section .section-subtitle {
    margin-bottom: 25px;
    font-size: 20px;
  }
  #blog_section .blog-grid {
    position: relative;
    width: 311px;
    margin: 0px auto;
  }
  #blog_section .blog-grid .blog-grid-item {
    width: 311px;
    height: 358px;
    padding: 9px;
    margin: 0px 0px 20px 0px;
    display: none;
    clear: both;
  }
  #blog_section .blog-grid .blog-grid-item:nth-child(-n+3) {
    display: block;
  }
  #blog_section .blog-grid .blog-grid-item a .blog-grid-item-thumb {
    height: 192px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-meta {
    padding: 0px 7px 10px 7px;
    font-size: 13px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-title {
    padding: 0px 7px 5px 7px;
    line-height: 17px;
    font-size: 15px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-excerpt {
    padding: 0px 7px 0px 7px;
    line-height: 14px;
    font-size: 12px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button {
    padding-right: 20px;
    right: 18px;
    bottom: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a {
    font-size: 14px;
  }
  #blog_section .blog-grid .blog-grid-item .blog-grid-item-button a:after {
    top: 4px;
    right: 0px;
    width: 15px;
    height: 15px;
  }
  #blog_section .blog-grid .slick-track {
    height: 365px;
  }
  #blog_section .blog-grid .slick-dots {
    padding-top: 36px;
  }
  #blog_section .blog-grid .slick-dots li {
    margin: 0px 4px 0px 4px;
  }
  #blog_section .blog-grid .slick-dots li button {
    width: 14px;
    height: 14px;
    border-radius: 7px;
    border: 0px;
  }
  #blog_section .blog-section-additional-link {
    bottom: 20px;
    right: 40px;
  }
  #blog_section .blog-section-additional-link a {
    font-size: 14px;
  }
}

#newsletter_subscription {
  padding: 31px 0px 51px 0px;
  text-align: center;
  background: #eee;
}

#newsletter_subscription h2 {
  margin-bottom: 10px;
  font-size: 38px;
  color: #000000;
  font-family: "OpenSans SemiBold";
}

#newsletter_subscription p {
  margin-bottom: 15px;
  font-size: 20px;
  color: #000000;
  font-family: 'Merriweather LightItalic';
}

#newsletter_subscription #newsletter_sub_form {
  width: 531px;
  margin: 0px auto;
}

#newsletter_subscription #newsletter_sub_form #newsletter_email {
  display: block;
  float: left;
  width: 388px;
  height: 50px;
  line-height: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0px 11px 0px 0px;
  padding: 0px 10px 0px 10px;
  border: 1px solid #ebebeb;
  border-radius: 3px;
  background: #fff;
  color: #777;
  font-size: 15px;
  font-family: "OpenSans";
  outline: none;
}

#newsletter_subscription #newsletter_sub_form #newsletter_submit {
  display: block;
  width: 132px;
  height: 50px;
  padding: 0px;
  line-height: 50px;
  font-size: 15px;
  color: #fff;
  font-family: "HelveticaNeue Light";
  border: 0px;
  background: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  cursor: pointer;
}

#newsletter_subscription #newsletter_sub_form #newsletter_submit:hover {
  background: #111;
}

#newsletter_subscription #newsletter_sub_form .submit_message {
  color: #49b050;
}

#newsletter_subscription #newsletter_sub_form .submit_message.error {
  color: #e53935;
}

@media (max-width: 1024px) {
  #newsletter_subscription h2 {
    font-size: 33px;
  }
  #newsletter_subscription p {
    padding: 0px 10% 0px 10%;
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  #newsletter_subscription {
    padding: 32px 0px 32px 0px;
  }
  #newsletter_subscription h2 {
    margin-bottom: 12px;
    font-size: 33px;
  }
  #newsletter_subscription p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 16px;
    padding: 0px 20px 0px 20px;
  }
  #newsletter_subscription #newsletter_sub_form {
    width: 554px;
    margin: 0px auto;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_email {
    width: 270px;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_submit {
    width: 268px;
  }
}

@media (max-width: 640px) {
  #newsletter_subscription {
    padding: 22px 0px 22px 0px;
  }
  #newsletter_subscription p {
    padding: 0px 10% 0px 10%;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 13px;
  }
  #newsletter_subscription #newsletter_sub_form {
    width: 80%;
    margin: 0px auto;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_email {
    width: 100%;
    clear: both;
    margin: 0px 0px 10px 0px;
  }
  #newsletter_subscription #newsletter_sub_form #newsletter_submit {
    width: 100%;
    clear: both;
  }
}

#page_primary.gaming_page {
  border: 0px;
  padding: 0px;
}

#gaming_page_slide {
  height: 553px;
  background: url(../images/gaming-slide-bg.jpg) repeat-x;
}

#gaming_page_slide .image_block {
  position: absolute;
  left: 0px;
  width: 909px;
  height: 100%;
  -webkit-transition: all 2s linear;
  transition: all 2s linear;
}

#gaming_page_slide .image_block div {
  position: absolute;
  background-image: url(../images/game-pics.png);
  background-repeat: no-repeat;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#gaming_page_slide .image_block .sk_adamant {
  left: 380px;
  top: 195px;
  width: 294px;
  height: 303px;
  background-position: -138px -644px;
}

#gaming_page_slide .image_block .enchantress_glare {
  left: 174px;
  top: 8px;
  width: 717px;
  height: 509px;
  background-position: 0px 0px;
}

#gaming_page_slide .image_block .propeller_knight {
  left: 83px;
  top: 174px;
  width: 362px;
  height: 228px;
  background-position: -138px -1299px;
}

#gaming_page_slide .image_block .tinker_knight {
  left: 318px;
  top: 257px;
  width: 123px;
  height: 134px;
  background-position: -744px -263px;
}

#gaming_page_slide .image_block .polar_knight {
  left: 472px;
  top: 285px;
  width: 294px;
  height: 318px;
  background-position: -138px -947px;
}

#gaming_page_slide .image_block .top_left_plague {
  left: 189px;
  top: 46px;
  width: 109px;
  height: 90px;
  background-position: 0px -538px;
}

#gaming_page_slide .image_block .bottom_left_plague {
  left: 52px;
  top: 382px;
  width: 109px;
  height: 90px;
  background-position: 0px -644px;
}

#gaming_page_slide .image_block .top_right_plague {
  left: 599px;
  top: 129px;
  width: 191px;
  height: 158px;
  background-position: -760px 0px;
}

#gaming_page_slide .image_block .bottom_right_plague {
  left: 800px;
  top: 357px;
  width: 109px;
  height: 90px;
  background-position: -744px -168px;
}

#gaming_page_slide .banner_container {
  width: 82.7%;
  display: block;
  position: relative;
  margin: 0px auto;
}

#gaming_page_slide .text_block .inner_container {
  position: relative;
  display: block;
  float: right;
  margin: 34px 0px 0px 0px;
  width: 713px;
}

#gaming_page_slide .text_block .inner_container h1 {
  display: block;
  margin: 0px 0px 19px 0px;
  font-family: 'Open Sans',sans-serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 43px;
  color: #ffffff;
  text-align: left;
}

#gaming_page_slide .text_block .inner_container h1 .white_bold {
  display: block;
  margin-top: 10px;
  font-size: 60px;
  font-weight: 700;
  line-height: 63px;
}

#gaming_page_slide .text_block .inner_container p {
  margin: 0px 0px 16px 0px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 18px;
}

#gaming_page_slide .text_block .inner_container p:last-of-type {
  margin-bottom: 0px;
}

#gaming_page_slide .text_block .inner_container .link_block {
  text-align: right;
}

#gaming_page_slide .text_block .inner_container .link_block a {
  display: inline-block;
  margin-top: 35px;
  padding: 0px 18px;
  height: 48px;
  border: 1px solid #fff;
  font-family: 'Open Sans',sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 25.81px;
  line-height: 48px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

#gaming_page_slide .text_block .inner_container .link_block a:link, #gaming_page_slide .text_block .inner_container .link_block a:visited {
  display: inline-block;
  margin-top: 35px;
  padding: 0px 18px;
  height: 48px;
  border: 1px solid #fff;
  font-family: 'Open Sans',sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 25.81px;
  line-height: 48px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

#gaming_page_slide .text_block .inner_container .link_block a:hover, #gaming_page_slide .text_block .inner_container .link_block a:focus, #gaming_page_slide .text_block .inner_container .link_block a:active {
  text-decoration: none;
  background: #fff;
  color: #bf1e2e;
}

#games_list {
  margin: 123px auto 87px;
}

#games_list ul {
  position: relative;
  display: block;
  overflow: hidden;
  list-style-type: none;
}

#games_list ul li {
  position: relative;
  display: block;
  float: left;
  width: 498px;
  margin: 0px 27px 20px 0px;
  padding: 0px;
}

#games_list ul li.right, #games_list ul li:last-child {
  margin-right: 0px;
}

#games_list ul li .image_block {
  position: relative;
  display: block;
  float: left;
  width: 249px;
  z-index: 2;
  overflow: hidden;
}

#games_list ul li .image_block a {
  display: block;
}

#games_list ul li .image_block a:link, #games_list ul li .image_block a:visited {
  display: block;
}

#games_list ul li .image_block img {
  width: 249px;
  height: 249px;
  vertical-align: middle;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#games_list ul li .image_block:hover img {
  -webkit-transform: scale(1.5) rotate(30deg);
          transform: scale(1.5) rotate(30deg);
}

#games_list ul li .text_block {
  position: absolute;
  top: 0px;
  right: 0px;
  width: -ms-calc(50% - 6px);
  width: -o-calc(50% - 6px);
  width: calc(50% - 6px);
  padding-left: 6px;
  height: 100%;
  background: #000000;
  z-index: 1;
}

#games_list ul li .text_block .title_link {
  display: inline-block;
  text-decoration: none;
}

#games_list ul li .text_block .title_link:link, #games_list ul li .text_block .title_link:visited {
  display: inline-block;
  text-decoration: none;
}

#games_list ul li .text_block .title_link:hover, #games_list ul li .text_block .title_link:focus, #games_list ul li .text_block .title_link:active {
  text-decoration: none;
}

#games_list ul li .text_block h3 {
  position: relative;
  display: block;
  margin: 20px 0px 13px 0px;
  font-family: 'Roboto Bold';
  font-size: 24px;
  color: #bf1e2e;
  line-height: 27px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#games_list ul li .text_block p {
  position: relative;
  display: block;
  width: 100%;
  height: 66px;
  overflow: hidden;
  margin: 0px;
  font-family: 'Roboto Light';
  font-size: 12px;
  color: #d9d6d7;
  line-height: 13px;
  text-align: left;
}

#games_list ul li .text_block .links_box {
  position: relative;
  display: block;
  margin: 37px 0px 11px 0px;
}

#games_list ul li .text_block .links_box a {
  position: relative;
  display: inline-block;
  margin: 0px 5px 0px 0px;
  vertical-align: top;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

#games_list ul li .text_block .links_box a:link, #games_list ul li .text_block .links_box a:visited {
  position: relative;
  display: inline-block;
  margin: 0px 5px 0px 0px;
  vertical-align: top;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

#games_list ul li .text_block .links_box a:hover, #games_list ul li .text_block .links_box a:focus, #games_list ul li .text_block .links_box a:active {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

#games_list ul li .text_block .view_game_block {
  margin-right: 20px;
  text-align: right;
}

#games_list .load_more_block {
  position: relative;
  display: block;
  height: 64px;
  text-align: right;
}

#games_list .load_more_block .load_more_button {
  position: relative;
  display: inline-block;
  padding: 0px 17px;
  height: 27px;
  line-height: 27px;
  background: transparent;
  border: 1px solid #585555;
  font-family: 'Roboto Thin-Italic';
  font-size: 18px;
  color: #111010;
  cursor: pointer;
  vertical-align: top;
}

#games_list .load_more_block .load_more_gif {
  display: none;
}

#gaming_single_page {
  border-top: 3px solid #d2d2d2;
}

#gaming_single_banner {
  margin-bottom: 152px;
}

#gaming_single_banner .image_block {
  width: 100%;
  overflow: hidden;
}

#gaming_single_banner .image_block img {
  width: 100%;
  height: auto;
}

#gaming_single_banner .link_block {
  display: block;
  overflow: hidden;
}

#gaming_single_content .entry_wrapper .post_icon {
  display: block;
  vertical-align: top;
}

#gaming_single_content .entry_wrapper img {
  width: 134px;
  height: 134px;
  margin-right: 43px;
  float: left;
  vertical-align: middle;
}

#gaming_single_content .entry_wrapper .post_content {
  font-family: 'Roboto Regular';
  font-size: 16px;
  line-height: 1.125;
}

#gaming_single_content .entry_wrapper .post_content h1 {
  margin: 0px 0px 22px 0px;
  font-family: 'Roboto Bold';
  font-size: 47.1px;
  color: #bf1e2e;
  line-height: 1;
}

#gaming_single_content .hugebob_ad_banner {
  position: relative;
  overflow: hidden;
  padding: 32px 39px 48px 0px;
  margin-top: 50px;
  background: url(../images/hugebob_banner.jpg) no-repeat center center;
  background-size: cover;
}

#gaming_single_content .hugebob_ad_banner .hugebob_info {
  position: absolute;
  left: 42px;
  bottom: 23px;
  height: 183px;
  width: 288px;
  text-align: center;
}

#gaming_single_content .hugebob_ad_banner .hugebob_info h4 {
  margin: 0px 0px 21px 0px;
  font-family: 'Roboto Regular';
  font-size: 30px;
  color: #fff;
  line-height: 34px;
}

#gaming_single_content .hugebob_ad_banner .hugebob_info a {
  display: inline-block;
  margin: 0px auto;
  padding: 0px 28px;
  border-radius: 10px;
  background: transparent;
  line-height: 50px;
  border: 1px solid #fff;
  font-family: 'Roboto Regular';
  font-size: 24px;
  color: #fff;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  text-decoration: none;
}

#gaming_single_content .hugebob_ad_banner .hugebob_info a:link, #gaming_single_content .hugebob_ad_banner .hugebob_info a:visited {
  display: inline-block;
  margin: 0px auto;
  padding: 0px 28px;
  border-radius: 10px;
  background: transparent;
  line-height: 50px;
  border: 1px solid #fff;
  font-family: 'Roboto Regular';
  font-size: 24px;
  color: #fff;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  text-decoration: none;
}

#gaming_single_content .hugebob_ad_banner .hugebob_info a:hover, #gaming_single_content .hugebob_ad_banner .hugebob_info a:focus, #gaming_single_content .hugebob_ad_banner .hugebob_info a:active {
  background: #fff;
  color: #bf1e2e;
  text-decoration: none;
}

#gaming_single_content .hugebob_ad_banner .top_games {
  list-style-type: none;
}

#gaming_single_content .hugebob_ad_banner .top_games li {
  position: relative;
  display: block;
  float: right;
  margin: 0px 0px 0px 16px;
  background: #fff;
  padding: 0px;
  width: 199px;
}

#gaming_single_content .hugebob_ad_banner .top_games li .image_block {
  display: block;
}

#gaming_single_content .hugebob_ad_banner .top_games li .image_block a {
  display: block;
  width: calc(100% - 24px);
  width: -ms-calc(100% - 24px);
  width: -o-calc(100% - 24px);
  width: calc(100% - 24px);
  padding: 15px 12px;
  overflow: hidden;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#gaming_single_content .hugebob_ad_banner .top_games li .image_block a:link, #gaming_single_content .hugebob_ad_banner .top_games li .image_block a:visited {
  display: block;
  width: calc(100% - 24px);
  width: -ms-calc(100% - 24px);
  width: -o-calc(100% - 24px);
  width: calc(100% - 24px);
  padding: 15px 12px;
  overflow: hidden;
  -webkit-transition: all .25s ease;
  transition: all .25s ease;
}

#gaming_single_content .hugebob_ad_banner .top_games li .image_block a:hover, #gaming_single_content .hugebob_ad_banner .top_games li .image_block a:focus, #gaming_single_content .hugebob_ad_banner .top_games li .image_block a:active {
  background: rgba(0, 0, 0, 0.2);
}

#gaming_single_content .hugebob_ad_banner .top_games li .image_block img {
  width: 175px;
  height: 175px;
}

#gaming_single_content .hugebob_ad_banner .top_games li h5 {
  margin: 0px;
  padding: 6px 12px 0px 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: 'Roboto Regular';
  font-size: 24px;
  color: #4c4545;
  line-height: 27px;
}

#gaming_single_content .hugebob_ad_banner .top_games li .link_block {
  padding: 0px 3px 12px 3px;
  font-size: 0px;
}

#gaming_single_content .hugebob_ad_banner .top_games li .link_block a {
  margin-top: 23px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

#gaming_single_content .hugebob_ad_banner .top_games li .link_block a:link, #gaming_single_content .hugebob_ad_banner .top_games li .link_block a:visited {
  margin-top: 23px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

#gaming_single_content .hugebob_ad_banner .top_games li .link_block a:hover, #gaming_single_content .hugebob_ad_banner .top_games li .link_block a:focus, #gaming_single_content .hugebob_ad_banner .top_games li .link_block a:active {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
          box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}

#gaming_single_content .share_game_section {
  display: block;
  position: relative;
  width: 100%;
  background: #f2f1f1;
}

#gaming_single_content .share_game_section:before {
  content: '';
  position: absolute;
  display: block;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 26.5px 32px 26.5px;
  border-color: transparent transparent #f2f1f1 transparent;
}

#gaming_single_content .share_game_section h4 {
  padding: 26px 0px 19px 0px;
  font-family: 'Open Sans',sans-serif;
  font-style: italic;
  font-size: 22px;
  color: #797676;
  line-height: 24px;
  text-align: center;
}

.content_container {
  width: 693px;
}

.sidebar_container {
  width: 328px;
}

#blog_page_wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#blog_page_wrapper h1 {
  margin: 0 0 10px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 37px;
  color: #000000;
}

#blog_page_wrapper .content_container ul {
  list-style-type: none;
}

#blog_page_wrapper .content_container ul li {
  position: relative;
  display: block;
  width: calc(100% - 42px);
  padding: 0 0 20px 0;
  margin: 0 42px 20px 0;
  overflow: hidden;
}

#blog_page_wrapper .content_container ul li:last-child {
  border-bottom: none;
}

#blog_page_wrapper .content_container ul li article {
  display: block;
}

#blog_page_wrapper .content_container ul li article .bold_date {
  font-family: 'Roboto',sans-serif;
  font-weight: bold;
}

#blog_page_wrapper .content_container ul li article .date_button {
  float: left;
}

#blog_page_wrapper .content_container ul li article img {
  float: left;
  width: 126px;
  height: 115px;
  margin: 0 11px 0 3px;
  border: 1px solid #dbdbdb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#blog_page_wrapper .content_container ul li article .title_link {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 230px);
}

#blog_page_wrapper .content_container ul li article .title_link:link, #blog_page_wrapper .content_container ul li article .title_link:visited {
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 230px);
}

#blog_page_wrapper .content_container ul li article .title_link:hover, #blog_page_wrapper .content_container ul li article .title_link:focus, #blog_page_wrapper .content_container ul li article .title_link:active {
  text-decoration: none;
}

#blog_page_wrapper .content_container ul li article h2 {
  margin: 0 0 8px 0;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #bf1e2e;
  line-height: 21px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#blog_page_wrapper .content_container ul li article h2:hover {
  opacity: 0.8;
}

#blog_page_wrapper .content_container ul li article p {
  margin: 0 0 9px 0;
  height: 62px;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #7c7c7c;
  line-height: 20px;
}

#blog_page_wrapper .content_container ul li article .link_block a {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}

#blog_page_wrapper .content_container ul li article .link_block a:link, #blog_page_wrapper .content_container ul li article .link_block a:visited {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}

#blog_page_wrapper .content_container ul li article .link_block a:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 13px;
  height: 13px;
  background: url(../images/huge-it-template-icons.png) -63px -255px;
}

#blog_page_wrapper .content_container .loading_image_block {
  position: relative;
  display: block;
  height: 64px;
  line-height: 64px;
  margin: 0 42px 10px 0;
  text-align: right;
}

#blog_page_wrapper .content_container .loading_image_block img {
  display: none;
  vertical-align: middle;
}

#blog_post_primary {
  padding-top: 40px;
}

#blog_post_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

#blog_post_container {
  margin: 36px 0 0 0;
}

#blog_post {
  margin: 0 24px 0 0;
}

#blog_post .wp-post-image {
  width: 100%;
  height: auto;
}

.load_more_button {
  position: relative;
  display: inline-block;
  padding: 0 17px;
  height: 27px;
  line-height: 27px;
  background: transparent;
  border: 1px solid #585555;
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 18px;
  color: #111010;
  cursor: pointer;
  vertical-align: top;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
}

.load_more_button:hover {
  background-color: #bf1e2e;
  border: 1px solid #bf1e2e;
  color: #fff;
}

.date_button {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 40px 8px 35px 8px;
  background-image: linear-gradient(to right, transparent 15px, #bf1e2e 15px), linear-gradient(to top, transparent 15px, #bf1e2e 15px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 0 100%,0 100%;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  color: #fff;
  line-height: 21px;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.date_button:link, .date_button:visited {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 40px 8px 35px 8px;
  background-image: linear-gradient(to right, transparent 15px, #bf1e2e 15px), linear-gradient(to top, transparent 15px, #bf1e2e 15px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 0 100%,0 100%;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  color: #fff;
  line-height: 21px;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.date_button:hover {
  background-size: calc(100% + 15px) 100%, 15px calc(100% + 15px);
  background-position: -15px 100%, 0 calc(100% + 15px);
  text-decoration: none;
}

.date_button:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: linear-gradient(45deg, transparent 48%, #ecbcc1 50%);
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
}

.date_button:hover:before {
  width: 0;
  height: 0;
}

.date_button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 15px;
  height: 15px;
  background: linear-gradient(225deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
}

.date_button:hover:after {
  left: 0;
  width: 0;
  height: 0;
}

#blog_post_wrapper .sidebar_container {
  margin-top: 56px;
}

.widget_box {
  position: relative;
  display: block;
  margin: 0 0 85px 0;
  width: calc(100% - 40px);
  padding: 60px 19px 30px 19px;
  border: 1px solid #dedede;
}

.widget_box .hugeit_form {
  margin-left: -14px;
  margin-top: -10px;
}

.widget_heading {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  border: 1px solid #dedede;
  background: #fff;
  padding: 17px 43px;
  font-family: 'Open Sans',sans-serif;
  font-size: 20px;
  color: #313131;
  line-height: 23px;
  text-transform: uppercase;
  white-space: nowrap;
}

.widget_heading:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  width: 6px;
  height: 6px;
  background: transparent;
  border: 1px solid #bf1e2e;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.widget_heading:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  background: transparent;
  border: 1px solid #bf1e2e;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.flipboard_share {
  float: left;
  margin: 0;
}

.hg_post_top_share_button .s_button a {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 20px;
  border-radius: 4px;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  float: left;
  margin: 1px 10px 0 0;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  text-align: right;
  font-weight: 600;
  padding-right: 5px;
  line-height: 19px;
}

.hg_post_top_share_button .flipboard_share.s_button {
  margin-right: 0;
}

.hg_post_top_share_button .s_button a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto auto 5px;
  background-image: url(../images/huge-it-template-icons.png);
}

.hg_post_top_share_button .s_button.fb_share a {
  background-color: #39579a;
  width: 42px;
}

.hg_post_top_share_button .s_button.fb_share a:hover {
  background-color: #4869B3;
}

.hg_post_top_share_button .fb_share a::after {
  width: 7px;
  height: 14px;
  background-position: -275px -274px;
}

.hg_post_top_share_button .s_button.twitter_share a {
  background-color: #27bffc;
}

.hg_post_top_share_button .s_button.twitter_share a:hover {
  background-color: #1998CC;
}

.hg_post_top_share_button .twitter_share a::after {
  width: 16px;
  height: 12px;
  background-position: -266px -289px;
}

.hg_post_top_share_button .s_button.google_plus_share a {
  background-color: #f54633;
  width: 32px;
}

.hg_post_top_share_button .s_button.google_plus_share a:hover {
  background-color: #E42B16;
}

.hg_post_top_share_button .google_plus_share a::after {
  width: 19px;
  height: 12px;
  background-position: -263px -302px;
}

.hg_post_top_share_button .s_button.pinterest_share a {
  background-color: #d9282e;
  width: 38px;
  line-height: 21px;
}

.hg_post_top_share_button .s_button.pinterest_share a:hover {
  background-color: #EF454A;
}

.hg_post_top_share_button .pinterest_share a::after {
  width: 13px;
  height: 13px;
  background-position: -269px -315px;
}

#comments {
  position: relative;
  display: block;
  margin: 66px 0 0 0;
}

#comments .comments-title {
  position: relative;
  display: inline-block;
  margin: 0 0 18px 0;
  padding-left: 5px;
  font-family: 'Open Sans',sans-serif;
  font-size: 16px;
  color: #313131;
  text-transform: uppercase;
}

#comments .comments-title:after {
  content: '';
  position: absolute;
  display: block;
  top: calc(50% - 0.5px);
  left: calc(100% + 10px);
  width: 35px;
  height: 1px;
  background: #bf1e2e;
}

#comments .comment-list {
  list-style-type: none;
}

#comments .comment-list li {
  list-style-type: none;
}

#comments .comment-list li article {
  margin-bottom: 72px;
}

#comments .comment-list li .comment-meta .comment-author {
  /* margin:0 0 14px 0; */
  font-family: 'Open Sans',sans-serif;
  font-size: 12px;
  color: #313131;
}

#comments .comment-list li .comment-meta .comment-author img {
  border-radius: 100%;
  float: left;
  margin: 0 12px 0 0;
}

#comments .comment-list li .comment-meta .comment-author b {
  font-style: italic;
}

#comments .comment-list li .comment-meta .comment-metadata {
  margin: 0 0 14px 0;
}

#comments .comment-list li .comment-meta .comment-metadata a {
  font-size: 11px;
  color: #cccccc;
  text-decoration: none;
}

#comments .comment-list li .comment-meta .comment-metadata a:link, #comments .comment-list li .comment-meta .comment-metadata a:visited {
  font-size: 11px;
  color: #cccccc;
  text-decoration: none;
}

#comments .comment-list li .comment-meta .comment-metadata a:hover, #comments .comment-list li .comment-meta .comment-metadata a:focus, #comments .comment-list li .comment-meta .comment-metadata a:active {
  text-decoration: none;
}

#comments .comment-list li .comment-meta .comment-metadata a.comment-edit-link {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(images/huge-it-template-icons.png) -68px -73px no-repeat;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  text-indent: 9999px;
  overflow: hidden;
  vertical-align: middle;
}

#comments .comment-list li .comment-meta .comment-metadata a.comment-edit-link:link, #comments .comment-list li .comment-meta .comment-metadata a.comment-edit-link:visited {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(images/huge-it-template-icons.png) -68px -73px no-repeat;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  text-indent: 9999px;
  overflow: hidden;
  vertical-align: middle;
}

#comments .comment-list li ol li {
  margin-left: 50px;
}

#comments .comment-list li .comment-content {
  font-family: 'Lato',sans-serif;
  font-size: 14px;
  color: #313131;
}

#comments .comment-list li .reply {
  margin: 7px 0 0 0;
}

#comments .comment-list li .reply a.comment-reply-link {
  display: inline-block;
  width: 20px;
  height: 18px;
  background: url(images/huge-it-template-icons.png) -106px -73px no-repeat;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  text-indent: 9999px;
  overflow: hidden;
  vertical-align: middle;
}

#comments .comment-list li .reply a.comment-reply-link:link, #comments .comment-list li .reply a.comment-reply-link:visited {
  display: inline-block;
  width: 20px;
  height: 18px;
  background: url(images/huge-it-template-icons.png) -106px -73px no-repeat;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  text-indent: 9999px;
  overflow: hidden;
  vertical-align: middle;
}

.hg_blog_desc_link {
  margin: 0 0 5px 0;
  height: 62px;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #7c7c7c;
  line-height: 20px;
  text-decoration: none;
  display: block;
}

/** Popular posts >>*/
.widget wli_popular_posts-class h2 {
  display: none;
}

.wli_popular_posts-class ul {
  list-style-type: none;
  float: initial !important;
}

.wli_popular_posts-class ul li {
  float: initial !important;
  height: 100px;
}

.wli_popular_posts-class .post_thumb img {
  padding: 0 !important;
  border: 0 !important;
}

.wli_popular_posts-class h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1px 0 15px !important;
}

.wli_popular_posts-class h3 a {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #313131;
  line-height: 16px;
  text-decoration: none;
}

.wli_popular_posts-class .bottom_bar span {
  display: block;
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  color: #999;
}

.wli_popular_posts-class .bottom_bar img {
  width: 20px;
  vertical-align: middle;
}

.\--button {
  display: inline-block;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
  color: #fff;
  border-radius: 3px;
  background-color: #2196F3;
  -webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.\--button:hover {
  background-color: #1976D2;
}

.button-transparent {
  padding: 0 28px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.button-transparent:link, .button-transparent:visited {
  padding: 0 28px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.button {
  display: inline-block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
  -webkit-transition: all .218s linear;
  -moz-transition: all 0.218s linear;
  padding: 0 28px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.button:before, .button:link, .button:visited {
  -webkit-transition: all .218s linear;
  -moz-transition: all 0.218s linear;
}

.button:link, .button:visited {
  padding: 0 28px;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.button-mini {
  display: inline-block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
}

.button-mini:link, .button-mini:visited {
  display: inline-block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
}

.button-transparent {
  display: inline-block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
}

.button-transparent:link, .button-transparent:visited {
  display: inline-block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
}

.button {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #bf1e2e 16px), linear-gradient(to bottom, transparent 16px, #bf1e2e 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  line-height: 54px;
}

.button:link, .button:visited {
  display: inline-block;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
}

.button:link, .button:visited {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #bf1e2e 16px), linear-gradient(to bottom, transparent 16px, #bf1e2e 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  line-height: 54px;
}

.button:after, .button:before {
  content: "";
  position: absolute;
  right: 0;
}

.button:hover {
  background-position: calc(100% + 16px) 0, 100% -16px;
  text-decoration: none;
}

.button:before {
  top: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, transparent 48%, #fff 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button:hover:before {
  width: 0;
  height: 0;
}

.button:after {
  top: 15px;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.button-transparent {
  position: relative;
  height: 49px;
  background-image: linear-gradient(to left, transparent 16px, #bf1e2e 16px), linear-gradient(to bottom, transparent 16px, #bf1e2e 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  line-height: 49px;
}

.button-transparent:link, .button-transparent:visited {
  position: relative;
  height: 49px;
  background-image: linear-gradient(to left, transparent 16px, #bf1e2e 16px), linear-gradient(to bottom, transparent 16px, #bf1e2e 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  line-height: 49px;
}

.button-transparent:after, .button-transparent:before {
  content: "";
  position: absolute;
  right: 0;
  -webkit-transition: all .218s linear;
  -moz-transition: all 0.218s linear;
}

.button-transparent:hover {
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: calc(100% + 16px) 0, 100% -16px;
  text-decoration: none;
}

.button-transparent:before {
  top: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, transparent 48%, #f9e9eb 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-transparent:hover:before {
  width: 0;
  height: 0;
}

.button-transparent:after {
  top: 15px;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-transparent:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.button-mini {
  position: relative;
  height: 26px;
  padding: 0 16px;
  background-image: linear-gradient(to left, transparent 8px, #bf1e2e 8px), linear-gradient(to bottom, transparent 8px, #bf1e2e 8px);
  background-size: calc(100% + 8px) 100%, 9px calc(100% + 8px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  line-height: 26px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.button-mini:link, .button-mini:visited {
  position: relative;
  height: 26px;
  padding: 0 16px;
  background-image: linear-gradient(to left, transparent 8px, #bf1e2e 8px), linear-gradient(to bottom, transparent 8px, #bf1e2e 8px);
  background-size: calc(100% + 8px) 100%, 9px calc(100% + 8px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: #fff;
  line-height: 26px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.button-mini:after, .button-mini:before {
  content: "";
  position: absolute;
  right: 0;
}

.button-blue {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-blue:link, .button-blue:visited {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-green {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-green:link, .button-green:visited {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-grey {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-grey:link, .button-grey:visited {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-orange {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-orange:link, .button-orange:visited {
  padding: 0 28px;
  font-family: 'Open Sans', sans-serif;
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.button-mini:hover {
  background-size: calc(100% + 8px) 100%, 8px calc(100% + 8px);
  background-position: calc(100% + 8px) 0, 100% -8px;
  text-decoration: none;
}

.button-mini:before {
  top: 0;
  width: 8px;
  height: 8px;
  background: linear-gradient(225deg, transparent 48%, #fff 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-mini:hover:before {
  width: 0;
  height: 0;
}

.button-mini:after {
  top: 7px;
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-mini:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.button-blue {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #029dca 16px), linear-gradient(to bottom, transparent 16px, #029dca 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(2, 157, 202, 0.75);
  line-height: 54px;
}

.button-blue:link, .button-blue:visited {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #029dca 16px), linear-gradient(to bottom, transparent 16px, #029dca 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(2, 157, 202, 0.75);
  line-height: 54px;
}

.button-blue:after, .button-blue:before {
  content: "";
  position: absolute;
  right: 0;
  -webkit-transition: all .218s linear;
  -moz-transition: all 0.218s linear;
}

.button-blue:hover {
  background-position: calc(100% + 16px) 0, 100% -16px;
  text-decoration: none;
}

.button-blue:before {
  top: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, transparent 48%, #fff 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-blue:hover:before {
  width: 0;
  height: 0;
}

.button-blue:after {
  top: 15px;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-blue:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.button-orange {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #db4935 16px), linear-gradient(to bottom, transparent 16px, #db4935 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
  line-height: 54px;
}

.button-orange:link, .button-orange:visited {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #db4935 16px), linear-gradient(to bottom, transparent 16px, #db4935 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(189, 57, 57, 0.75);
  line-height: 54px;
}

.button-orange:after, .button-orange:before {
  content: "";
  position: absolute;
  right: 0;
}

.button-orange:hover {
  background-position: calc(100% + 16px) 0, 100% -16px;
  text-decoration: none;
}

.button-orange:before {
  top: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, transparent 50%, #fff 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-orange:hover:before {
  width: 0;
  height: 0;
}

.button-orange:after {
  top: 15px;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-orange:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.button-green {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #1fbba6 16px), linear-gradient(to bottom, transparent 16px, #1fbba6 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(31, 187, 166, 0.75);
  line-height: 54px;
}

.button-green:link, .button-green:visited {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #1fbba6 16px), linear-gradient(to bottom, transparent 16px, #1fbba6 16px);
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(31, 187, 166, 0.75);
  line-height: 54px;
}

.button-green:after, .button-green:before {
  content: "";
  position: absolute;
  right: 0;
  -webkit-transition: all .218s linear;
  -moz-transition: all 0.218s linear;
}

.button-green:hover {
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: calc(100% + 16px) 0, 100% -16px;
  text-decoration: none;
}

.button-green:before {
  top: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, transparent 48%, #fff 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-green:hover:before {
  width: 0;
  height: 0;
}

.button-green:after {
  top: 15px;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-green:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.button-grey {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #364757 16px), linear-gradient(to bottom, transparent 16px, #364757 16px);
  background-size: 100% 100%, 17px 100%;
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(54, 71, 87, 0.75);
  line-height: 54px;
}

.button-grey:link, .button-grey:visited {
  position: relative;
  height: 54px;
  background-image: linear-gradient(to left, transparent 16px, #364757 16px), linear-gradient(to bottom, transparent 16px, #364757 16px);
  background-size: 100% 100%, 17px 100%;
  background-position: 100% 0, 100% 0;
  background-repeat: no-repeat;
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  text-shadow: 1px 1px 0 rgba(54, 71, 87, 0.75);
  line-height: 54px;
}

.button-grey:after, .button-grey:before {
  position: absolute;
  right: 0;
  content: "";
}

.button-grey:hover {
  background-size: calc(100% + 16px) 100%, 17px calc(100% + 16px);
  background-position: calc(100% + 16px) 0, 100% -16px;
  text-decoration: none;
}

.button-grey:before {
  top: 0;
  width: 16px;
  height: 16px;
  background: linear-gradient(225deg, transparent 50%, #fff 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

.button-grey:hover:before {
  width: 0;
  height: 0;
}

.button-grey:after {
  top: 15px;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.17) 50%);
  -webkit-transition: all .218s linear;
  -webkit-transition: all 0.218s linear;
  transition: all 0.218s linear;
}

#site_header {
  padding: 0 70px;
  background: #fff;
  color: #444;
}

#site_header .header-inner {
  display: block;
}

@media (min-width: 900px) {
  #site_header .header-inner .logo-small {
    display: none;
  }
}

#site_header .mobile-menu {
  display: none;
}

@media (min-width: 782px) {
  body.admin-bar .mdc-toolbar--fixed {
    top: 32px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .mdc-toolbar--fixed:not(.mdc-toolbar--flexible-space-minimized) {
    top: 46px;
  }
}

@media (max-width: 1080px) {
  #site_header {
    padding: 0 20px;
  }
}

#main_logo {
  position: relative;
  float: left;
  display: block;
  margin: 15px 0 9px 0;
}

#main_logo a {
  display: inline-block;
}

#primary-navigation {
  float: right;
  margin-right: 40px;
}

#primary-navigation .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  margin-top: 19px;
  padding: 0;
}

#primary-navigation .nav-menu li {
  list-style: none;
  padding: 0;
}

#primary-navigation .nav-menu li a {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  padding: 0 20px;
  height: 42px;
  line-height: 42px;
  color: #303030;
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  font-weight: 500;
}

#primary-navigation .nav-menu li a:hover {
  color: #fe3e3e;
}

#primary-navigation .nav-menu li.menu-item-has-children > a {
  pointer-events: none;
}

#primary-navigation .nav-menu li.current-menu-item:not(.menu-item-has-children) a {
  color: #fc3232;
}

#primary-navigation .nav-menu li .sub-menu {
  display: none;
  position: absolute;
  -webkit-box-shadow: 0px 2px 7px 0px rgba(1, 1, 1, 0.17);
          box-shadow: 0px 2px 7px 0px rgba(1, 1, 1, 0.17);
  background: #fff;
  padding: 0 5px;
  min-width: 225px;
}

#primary-navigation .nav-menu li .sub-menu:hover {
  display: block;
}

#primary-navigation .nav-menu li:hover .sub-menu {
  display: block;
}

@media (max-width: 1080px) {
  #primary-navigation .nav-menu li a {
    padding: 0 15px;
  }
}

/* HEADER LOGIN BUTTONS */
header .hg_login_button_wrapper,
header .hg_signup_button_wrapper {
  text-align: center;
  cursor: pointer;
}

@media (max-width: 900px) {
  header .hg-login-buttons {
    display: none;
  }
}

@media (min-width: 480px) {
  header .hg-login-buttons {
    float: right;
  }
  header .hg_login_button_wrapper,
  header .hg_signup_button_wrapper {
    margin-top: 19px;
  }
  header .hg_login_button_wrapper .mdc-button,
  header .hg_signup_button_wrapper .mdc-button {
    padding: 0 20px;
    height: 42px;
    line-height: 42px;
  }
  header .hg_signup_button_wrapper {
    margin-left: 20px;
  }
}

header .hg_login_button_wrapper .mdc-button {
  color: #303030;
}

header .hg_login_button_wrapper .mdc-button:hover {
  color: #fc3232;
}

/* END HEADER LOGIN BUTTONS */
header .hg-login-account-menu {
  display: inline-block;
  float: right;
}

header .hg-login-account-menu .hg-login-account-main {
  display: block;
}

header .hg-login-account-menu .hg-login-account-main img {
  float: left;
  width: 34px;
  height: 34px;
  border-radius: 100%;
  border: 2px solid #ddd;
  margin-top: 6px;
}

header .hg-login-account-menu .hg-login-account-main .hg-login-account-main-howdy {
  display: inline-block;
  margin-top: 15px;
  margin-left: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  color: #262626;
  font-family: inherit;
  max-width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 10px;
}

header .hg-login-account-menu .hg-login-account-main .hg-login-user-notifications-info {
  position: absolute;
  left: 26px;
  background-color: #bf1e2e;
  color: #fff;
  border-radius: 50%;
  top: 3px;
  height: 17px;
  width: 17px;
  line-height: 17px;
  font-size: 12px;
  text-align: center;
  text-indent: 0;
}

header .hg-login-account-menu .hg-login-account-info {
  top: 10px;
  position: relative;
  height: 65px;
}

header .hg-login-account-menu .hg-login-account-info:hover .hg-login-account-dropdown-menu {
  display: block;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu {
  position: absolute;
  list-style: none;
  top: 50px;
  width: 200px;
  background-color: #fff;
  -webkit-box-shadow: 1px 1px 4px 0 rgba(219, 215, 215, 0.86);
          box-shadow: 1px 1px 4px 0 rgba(219, 215, 215, 0.86);
  display: none;
  z-index: 2;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item {
  height: 32px;
  width: 100%;
  line-height: 32px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item a {
  display: block;
  width: 140px;
  height: 100%;
  text-decoration: none;
  color: #808080;
  padding-left: 60px;
  background-image: url(../images/dummy/new-sprite.png);
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item a:hover {
  background-color: #f5f5f5;
  color: #262626;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item:first-child a {
  background-position: 24px -7px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item:first-child a:hover {
  background-position: 24px -157px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item:nth-child(2) a {
  background-position: 24px -42px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-dropdown-item:nth-child(2) a:hover {
  background-position: 24px -192px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .products {
  background-position: 24px -79px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .products:hover {
  background-position: 24px -229px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .deals {
  background-position: 24px -116px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .deals:hover {
  background-position: 24px -266px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-button-logout {
  background-position: 26px -646px;
}

header .hg-login-account-menu .hg-login-account-dropdown-menu .hg-login-button-logout:hover {
  background-position: 26px -688px;
}

header .register {
  float: right;
  margin: 16px 0;
  display: none;
}

header .register a {
  display: inline-block;
  height: 38px;
  text-align: center;
  text-decoration: none;
  line-height: 34px;
  border: 1px solid #bf1e2e;
  font-size: 16px;
}

header .register .register-login {
  color: #262626;
  width: 90px;
}

header .register .register-sign {
  color: #fff;
  background-color: #bf1e2e;
  width: 78px;
  margin-left: 4px;
}

header .register_block {
  float: right;
  margin: 10px 0;
  margin-left: 60px;
  position: relative;
}

header .register_block .image-block {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  border: 2px solid #ddd;
  overflow: hidden;
  float: left;
  cursor: pointer;
}

header .register_block .image-block:before {
  content: "";
  width: 48px;
  height: 48px;
  border-color: #bf1e2e;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
}

header .register_block input[type="checkbox"] {
  display: none;
}

header .register_block input[type="checkbox"]:checked ~ label .image-block:before {
  border: 2px solid #bf1e2e;
  -webkit-animation: hover 1.5s;
  animation: hover 1.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

header .register_block input[type="checkbox"]:checked ~ .list {
  display: block;
}

header .register_block .register-logout {
  display: block;
  text-decoration: none;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  float: left;
  margin-right: 5px;
  width: 88px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  margin-top: 5px;
}

header .register_block .register-logout:hover {
  color: #bf1e2e;
}

header .register_block ul {
  position: absolute;
  list-style: none;
  top: 63px;
  width: 200px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 17px 0 rgba(219, 215, 215, 0.86);
          box-shadow: 0 3px 17px 0 rgba(219, 215, 215, 0.86);
  right: 0;
  display: none;
}

header .register_block ul li {
  height: 32px;
  width: 100%;
  line-height: 32px;
}

header .register_block ul li a {
  display: block;
  width: 140px;
  height: 100%;
  text-decoration: none;
  color: #808080;
  padding-left: 60px;
  background-image: url(../images/dummy/new-sprite.png);
}

header .register_block ul li a:hover {
  background-color: #f5f5f5;
  color: #262626;
}

header .register_block ul li .account-icon {
  background-position: 24px -7px;
}

header .register_block ul li .account-icon:hover {
  background-position: 24px -157px;
}

header .register_block ul li .payments-icon {
  background-position: 24px -42px;
}

header .register_block ul li .payments-icon:hover {
  background-position: 24px -192px;
}

header .register_block ul li .products-icon {
  background-position: 24px -79px;
}

header .register_block ul li .products-icon:hover {
  background-position: 24px -229px;
}

header .register_block ul li .deals-icon {
  background-position: 24px -116px;
}

header .register_block ul li .deals-icon:hover {
  background-position: 24px -266px;
}

#mobile_navigation .mobile-nav-items {
  font-family: Roboto,sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(0, 0, 0, 0.87);
  margin: 0;
  padding: 16px 0 0;
  line-height: 1.5rem;
  list-style-type: none;
}

#mobile_navigation .mobile-nav-items li {
  list-style: none;
}

#mobile_navigation .mobile-nav-items li a {
  position: relative;
  display: block;
  height: 2rem;
  margin: 1.125rem 0;
  padding: 0 16px;
  outline: 0;
  text-decoration: none;
  font-family: Roboto,sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .04437rem;
  margin-top: 0;
  color: #414549;
}

#mobile_navigation .mobile-nav-items li.current-menu-item:not(.menu-item-has-children) a {
  color: #fc3232;
}

#mobile_navigation .mobile-nav-items li.menu-item-has-children > a {
  color: #9e9e9e;
  letter-spacing: normal;
  margin-left: 1rem;
  text-align: left;
  padding: 0;
  pointer-events: none;
}

#mobile_navigation .mobile-nav-items li.menu-item-has-children .sub-menu a {
  padding-left: 2rem;
}

@media (max-width: 900px) {
  #primary-navigation {
    display: none;
  }
  #site_header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #site_header .header-inner .mobile-menu {
    display: inline-block;
    cursor: pointer;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #site_header .header-inner .mobile-menu i {
    font-size: 35px;
  }
  #main_logo {
    display: none;
  }
  .logo-small {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#sales-popup-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100;
}

#sales-popup-content-inner {
  position: absolute;
  width: 500px;
  height: 370px;
  background-color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-box-shadow: 0 32px 63px 5px rgba(138, 138, 138, 0.53);
          box-shadow: 0 32px 63px 5px rgba(138, 138, 138, 0.53);
  border-radius: 11px;
}

.sales_popup_exit_popup_sale {
  position: absolute;
  left: -108px;
  top: -62px;
}

.sales_popup_offer {
  position: absolute;
  width: 62px;
  top: 51px;
  left: -88px;
  height: 23px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  display: block;
}

.sales_popup_first_title, .sales_popup_second_title {
  color: #fff;
  position: absolute;
  font-weight: 400;
  display: block;
}

.sales_popup_first_title {
  top: 0px;
  left: -11px;
  width: 121px;
  height: 36px;
  font-size: 50px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.sales_popup_second_title {
  top: 60px;
  left: 16px;
  width: 83px;
  height: 34px;
  font-size: 40px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  display: block;
}

.sales_popup_close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 999999;
}

.sales_popup_offer_details {
  width: 277px;
  height: 83px;
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-left: 180px;
  padding-top: 21px;
}

.sales_popup_all_plugins, .sales_popup_offer_content {
  position: absolute;
  margin-left: 37px;
}

.sales_popup_all_plugins {
  margin-top: 72px;
  width: 435px;
  height: 17px;
  color: #ac2537;
  font-size: 18px;
  font-weight: 400;
}

.sales_popup_offer_content {
  margin-top: 20px;
  width: 433px;
  height: 66px;
  color: #767d83;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  top: 200px;
}

.sales_popup_get_now, .sales_popup_notice_content {
  position: absolute;
  color: #fff;
  font-weight: 400;
}

.sales_popup_get_now {
  padding: 12px 43px;
  height: 25px;
  border-radius: 7px;
  background-color: #dd1629;
  font-size: 18px;
  text-decoration: none;
  top: 310px;
  left: 176px;
}

.sales_popup_purple_bg {
  position: absolute;
  width: 329px;
  height: 32px;
  top: -40px;
  left: 156px;
}

.sales_popup_notice_content {
  top: -33px;
  left: 192px;
  width: 249px;
  height: 12px;
  font-size: 12px;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.sales-popup-fixed {
  position: fixed;
  bottom: 0px;
  z-index: 100;
}

.sales_popup_close_btn_small {
  position: absolute;
  width: 11px;
  height: 11px;
  right: 10px;
  top: 10px;
}

@media (max-width: 768px) {
  .sales_popup_mobile-popup {
    position: fixed;
    bottom: 81px;
    right: 23px;
  }
  .sales_popup_mobile-popup img {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .sales_popup_first_title, .sales_popup_second_title {
    color: #fff;
    font-family: "Nunito Sans";
    font-weight: 400;
    position: absolute;
    display: block;
  }
  #sales-popup-content {
    position: fixed;
  }
  .sales_popup_exit_popup_sale, .sales_popup_first_title, .sales_popup_offer, .sales_popup_second_title {
    position: absolute;
  }
  .sales_popup_second_title {
    top: 20px;
    left: 11px;
    width: 83px;
    height: 34px;
    font-size: 26px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  .sales_popup_first_title {
    top: -13px;
    left: -1px;
    width: 121px;
    height: 36px;
    font-size: 27px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  .sales_popup_offer {
    width: 62px;
    top: 17px;
    left: -47px;
    font-size: 18px;
  }
  .sales_popup_exit_popup_sale {
    left: -55px;
    top: -42px;
    width: 46%;
  }
  #sales-popup-content-inner {
    width: 329px;
    height: 286px;
  }
  .sales_popup_offer_details {
    width: 200px;
    height: 83px;
    font-size: 14px;
    margin-left: 112px;
    padding-top: 16px;
    font-weight: 500;
    left: -183px !important;
  }
  .sales_popup_close_btn {
    right: 11px;
    top: 9px;
    width: 3%;
  }
  .sales_popup_all_plugins {
    margin-left: 14px;
    margin-top: 0;
    font-size: 13px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 24px;
    margin-top: -75px;
    width: 305px;
  }
  .sales_popup_purple_bg {
    width: 249px;
    left: 84px;
  }
  .sales_popup_notice_content {
    left: 92px;
  }
  .sales_popup_get_now {
    top: 219px;
    left: 106px;
    padding: 9px 34px;
  }
  .sales_popup_mobile-popup {
    right: 9px;
  }
  .sales_popup_mobile-popup img {
    width: 100%;
  }
}

@media (max-width: 375px) {
  #sales-popup-content {
    position: fixed;
  }
  #sales-popup-content-inner {
    width: 296px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -48px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: -4px !important;
    left: -44px;
    font-size: 12px !important;
  }
  .sales_popup_first_title {
    top: -28px !important;
    left: -4px !important;
    font-size: 18px;
  }
  .sales_popup_second_title {
    top: -5px !important;
    left: 5px !important;
    font-size: 17px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 94px;
    padding-top: 16px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 65px;
  }
  .sales_popup_notice_content {
    left: 70px;
    font-size: 10px;
  }
  .sales_popup_mobile-popup img {
    width: 100%;
  }
}

@media (max-width: 320px) {
  #sales-popup-content {
    position: fixed;
  }
  #sales-popup-content-inner {
    width: 268px;
    height: 226px;
  }
  .sales_popup_exit_popup_sale {
    left: -43px !important;
    top: -29px !important;
    width: 44% !important;
  }
  .sales_popup_offer {
    top: 17px !important;
    left: -35px;
    font-size: 14px;
  }
  .sales_popup_first_title {
    top: -9px !important;
    left: 0px !important;
    font-size: 21px !important;
  }
  .sales_popup_second_title {
    font-size: 23px !important;
    top: 18px !important;
    left: 10px !important;
  }
  .sales_popup_offer_details {
    font-size: 12px;
    margin-left: 80px;
    width: 174px;
  }
  .sales_popup_all_plugins {
    margin-left: 9px;
    margin-top: -27px;
    font-size: 11px;
  }
  .sales_popup_offer_content {
    font-size: 11px;
    margin-top: -104px;
    width: 238px;
  }
  .sales_popup_get_now {
    top: 183px;
    font-size: 14px;
    padding: 5px 21px;
  }
  .sales_popup_purple_bg {
    width: 199px;
  }
  .sales_popup_notice_content {
    left: 70px;
    font-size: 9px;
    top: -34px;
  }
}

@media (max-width: 1920px) and (min-width: 1525px) {
  .sales_popup_offer_details {
    margin-left: 347px;
    position: relative;
    left: -152px;
  }
}

@media (max-width: 1524px) {
  .sales_popup_offer_details {
    margin-left: 290px;
    position: relative;
    left: -103px;
  }
}

@media (max-width: 1453px) {
  .sales_popup_offer_details {
    left: -80px;
  }
}

@media (max-width: 1353px) {
  .sales_popup_offer_details {
    left: -97px;
  }
}

@media (max-width: 608px) and (min-width: 550px) {
  #sales-popup-content-inner {
    width: 318px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -51px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: 12px;
    left: -44px;
    font-size: 17px;
  }
  .sales_popup_first_title {
    top: -19px;
    left: -5px;
    font-size: 26px;
  }
  .sales_popup_second_title {
    top: 9px;
    left: 5px;
    font-size: 25px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 190px;
    padding-top: 16px;
    width: 207px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 87px;
  }
  .sales_popup_notice_content {
    left: 97px;
    font-size: 10px;
  }
  .sales_popup_close_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 3%;
  }
}

@media (max-width: 549px) and (min-width: 481px) {
  #sales-popup-content {
    left: 95px;
    bottom: 350px;
    width: 318px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -51px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: 12px;
    left: -44px;
    font-size: 17px;
  }
  .sales_popup_first_title {
    top: -19px;
    left: -5px;
    font-size: 26px;
  }
  .sales_popup_second_title {
    top: 10px;
    left: 5px;
    font-size: 25px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 190px;
    padding-top: 16px;
    width: 207px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 90px;
  }
  .sales_popup_notice_content {
    left: 100px;
    font-size: 10px;
  }
  .sales_popup_close_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 3%;
  }
}

@media (max-width: 480px) and (min-width: 415px) {
  #sales-popup-content-inner {
    width: 318px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -51px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: 12px;
    left: -44px;
    font-size: 17px;
  }
  .sales_popup_first_title {
    top: -18px;
    left: -5px;
    font-size: 26px;
  }
  .sales_popup_second_title {
    top: 16px;
    left: 5px;
    font-size: 25px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 190px;
    padding-top: 16px;
    width: 207px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 88px;
  }
  .sales_popup_notice_content {
    left: 100px;
    font-size: 10px;
  }
  .sales_popup_close_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 3%;
  }
}

@media (max-width: 400px) {
  .sales_popup_exit_popup_sale {
    width: 32%;
    left: -38px;
  }
  .sales_popup_first_title {
    font-size: 20px;
    top: -23px;
    left: 2px;
  }
  .sales_popup_second_title {
    top: 1px;
    font-size: 21px;
  }
  .sales_popup_offer {
    top: -1px;
    left: -33px;
    font-size: 13px;
  }
  .sales_popup_offer_details {
    left: -203px !important;
  }
}

@media screen and (min-width: 769px) {
  .plugin_demo_section .demo_navigation_inner ul:hover li, .plugin_demo_section .demo_navigation_inner:hover ul li {
    height: 47px;
  }
  .plugin_demo_section .demo_navigation_inner ul:hover, .plugin_demo_section .demo_navigation_inner:hover ul {
    -webkit-box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.08);
  }
}

.hg-read-more1, .hg-read-more2 {
  display: none;
  cursor: pointer;
}

.underline_text {
  text-decoration: underline;
}

.xx_large {
  font-size: xx-large;
}

.x_large {
  font-size: x-large;
}

.theme_usermanual_container {
  width: 750px;
  margin: 20px auto 40px;
}

.post_content {
  color: #757575;
  font-size: 16px;
  line-height: 24px;
  font-family: Roboto, arial, sans-serif;
}

.post_content h2, .post_content h3, .post_content h4 {
  line-height: 32px;
  font-weight: 400;
}

.post_content h2 {
  margin: 15px 0;
  font-size: 34px;
}

.post_content h3 {
  color: #212121;
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 42px;
}

.post_content h4 {
  color: #212121;
  font-size: 24px;
  margin-bottom: 25px;
  margin-top: 35px;
}

.post_content h5 {
  color: #212121;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.post_content p {
  margin: 0 0 10px;
  color: #757575;
  font-size: 16px;
  line-height: 24px;
}

.post_content strong {
  color: #212121;
  font-weight: 500;
}

.post_content ol, .post_content ul {
  margin: 10px 10px 10px 30px;
  padding: 0;
  list-style-type: disc;
}

@media screen and (max-width: 1080px) {
  .container {
    width: 98%;
    padding: 0 1%;
  }
  .content_container {
    width: 70%;
  }
  .sidebar_container {
    width: 28%;
  }
  #footer_meta_info {
    float: right;
    width: 31%;
  }
  .hg_slide_right_block h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .hg_slide_right_block h3 {
    font-size: 36px;
  }
  .hg_slide_right_block span {
    margin-bottom: 18px;
    line-height: 25px;
  }
  .hg-home-banner-img {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  .hg_slide_right_block h2 {
    margin-top: 25px;
  }
  .title_light {
    font-size: 50px;
    line-height: 65px;
  }
  .title_semibold {
    font-size: 32px;
  }
  .title_bold {
    font-size: 43px;
  }
  #aditional_payment_page, #verification_page {
    font-size: 20px;
  }
  #aditional_payment_page form .input, #verification_page form .input {
    font-size: 20px;
  }
  #aditional_payment_page p, #verification_page p {
    margin: 0 0 12px;
  }
  #aditional_payment_page form, #verification_page form {
    margin-top: 40px;
  }
  #aditional_payment_page form .submit, #verification_page form .submit {
    font-size: 20px;
    line-height: 12px;
    padding: 16px 60px 18px;
  }
  .faq_list .column {
    width: 47%;
  }
  .faq_list ul li {
    width: 100%;
  }
  .faq_list .column:nth-child(1) {
    margin-right: 3%;
  }
  .text_content .faq_list .column ul {
    margin-left: auto;
  }
  #mobile_apps_banner .text_block {
    position: absolute;
    width: 40%;
    bottom: 160px;
  }
  .plugin_homepage_entry h1 {
    font-size: 26px;
  }
  .plugin_homepage_entry p {
    width: 100%;
    font-size: 16px;
  }
  .plugin_features_content_list .feature .image_block {
    width: 45%;
    margin-right: 10%;
  }
  .plugin_features_content_list .feature .text_block {
    width: 45%;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p, .theme_versions_table {
    width: 100%;
  }
  .plugin_features_content_list .feature h3 {
    font-size: 26px;
    line-height: 28px;
  }
  .plugin_features_content_list .feature p {
    font-size: 14px;
    line-height: 16px;
    height: auto;
  }
  .plugin_homepage_demo_links ul li .link_block {
    margin-top: 20px;
  }
  .plugin_homepage_demo_links ul li img {
    margin-right: 10%;
  }
  .plugin_homepage_demo_links ul li h4 {
    font-size: 26px;
    line-height: 26px;
    margin: 0 0 10px;
  }
  .plugin_homepage_demo_links ul li p {
    font-size: 14px;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p.semibold {
    font-size: 20px;
  }
  .wp_all_plugins_banner h2 {
    font-size: 40px;
    line-height: 40px;
    color: #bf1e2e;
    text-shadow: none;
  }
  .plugin_features_content_list .feature.right p {
    text-align: right;
  }
  #theme_page_header .text_block .theme_title {
    font-size: 40px;
  }
  #theme_feature_responsive h3, #theme_features > h2 {
    font-size: 26px;
  }
  .theme_versions_table .column {
    width: 19.7%;
  }
  .theme_versions_table .version_name h3 {
    font-size: 16px;
    line-height: 16px;
  }
  #theme_feature_responsive .theme_responsive_text, #theme_page_header .text_block p {
    font-size: 14px;
  }
  .theme_versions_table .features_expand, .theme_versions_table .version_name span {
    font-size: 14px;
  }
  #theme_page_header .text_block p {
    width: 95%;
  }
  .theme_versions_table .feature_value, .theme_versions_table .version_name span {
    font-size: 13px;
  }
  .theme_versions_table .buy_link a {
    font-size: 14px;
  }
  .theme_versions_table .buy_link a:link, .theme_versions_table .buy_link a:visited {
    font-size: 14px;
  }
  #theme_feature_responsive {
    padding: 30px 0 5px;
    margin: 0 0 100px;
  }
  #theme_feature_responsive .responsive_image {
    margin: 25px auto;
    display: block;
  }
  #theme_page_header .text_block {
    width: 40%;
  }
  #theme_page_header .theme_preview_block {
    width: 60%;
  }
  #all_wp_plguins_light .text_block {
    width: 48%;
  }
  #all_wp_plguins_light .text_block p {
    font-size: 16px;
  }
  #all_wp_plguins_light .text_block h4 {
    margin: 38px 0 6px;
    font-size: 32px;
  }
  #all_wp_plguins_light .text_block h3 {
    font-size: 20px;
  }
  #all_wp_plguins_light .image_block {
    width: 71%;
    left: -25%;
  }
  #theme_page_header .theme_preview_block a {
    margin-left: 0;
    max-width: 100%;
  }
  #theme_page_header .theme_preview_block a:link, #theme_page_header .theme_preview_block a:visited {
    margin-left: 0;
    max-width: 100%;
  }
  .hg_banner_img {
    height: 320px;
  }
  .hg_wp_plugin_banner {
    height: 320px;
  }
  .hg_wp_plugin_banner h2 {
    font-size: 32px;
    line-height: 32px;
    margin-top: 20px;
  }
  .hg_wp_plugin_banner h3 {
    font-size: 30px;
  }
  .hg_wp_plugin_banner p {
    font-size: 17px;
    line-height: 28px;
  }
  .hg_wp_plugin_banner .hg_banner_img {
    background-size: 760px !important;
    background-position: left 25px top 25px !important;
  }
  #top_plugins_inner ul li {
    position: relative;
    float: left;
    display: block;
    width: 32%;
    height: auto;
    margin-right: 1%;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  #top_plugins_inner ul li a {
    height: 49%;
    width: 24%;
  }
  #top_plugins_inner ul li a:link, #top_plugins_inner ul li a:visited {
    height: 49%;
    width: 24%;
  }
  .plugin_demo_section h1 {
    font-size: 18px;
  }
  .plugin_manual_wrapper {
    width: 98%;
  }
  .plugin_manual_wrapper .manual_content .manual_list {
    margin-top: 35px;
  }
  .plugin_manual_wrapper .manual_content .manual_list .list_wrapper {
    margin: 0 0 35px;
  }
  .plugin_manual_wrapper .manual_content section {
    margin-bottom: 50px;
  }
  #order_website_entry .link_block {
    padding-right: 20px;
  }
  #order_website_features ul li .description .description_inner {
    padding: 0 0 0 50px;
  }
  #order_website_features ul li.right .description .description_inner {
    padding: 0 50px 0 0;
    margin-left: 10px;
  }
  .hg_new_wp_banner {
    padding: 15px 0 8px;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center {
    width: 49%;
    margin-right: 4%;
    margin-left: 3%;
  }
  .hg_new_wp_banner .hg_left_img_block {
    width: 20%;
    height: 146px;
  }
  .hg_new_wp_banner h3 {
    font-size: 20px;
  }
  .hg_new_wp_banner h3 strong {
    font-size: 24px;
  }
  .hg_new_wp_banner span {
    font-size: 13px;
    line-height: 18px;
    width: 85%;
    margin-top: 15px;
  }
  .hg_right_button_block {
    margin-top: 92px;
  }
  .hg_wp_plugin_banner .wp_login h1, .hg_wp_plugin_banner h1, .hg_wp_plugin_banner .hg_price_table_builder h1 {
    font-size: 30px;
    line-height: 20px;
    margin-top: 40px;
  }
  .hg_wp_plugin_banner .wp_login .hg_bold, .hg_wp_plugin_banner .hg_bold, .hg_wp_plugin_banner .hg_price_table_builder .hg_bold {
    font-size: 45px;
    line-height: 30px;
  }
  .hg_wp_plugin_banner .wp_login p, .hg_wp_plugin_banner p {
    font-size: 16px;
    line-height: 24px;
  }
  .hg_wp_plugin_banner h1 span, .hg_wp_plugin_banner .hg_price_table_builder h1 span {
    font-size: 30px;
  }
}

@media screen and (max-width: 930px) {
  .hg-login-popup-open {
    position: fixed;
  }
}

@media screen and (max-width: 880px) {
  #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul li a {
    font-size: 16px;
    line-height: 20px;
  }
  .hg_slide_right_block h2 {
    font-size: 32px;
    line-height: 32px;
  }
  .hg_slide_right_block h3 {
    font-size: 28px;
  }
  .hg_slide_right_block span {
    margin-bottom: 18px;
    line-height: 20px;
    font-size: 15px;
  }
  .hg_main_images_block {
    width: 351px;
  }
  .hg-read-more1 {
    display: inline-block;
    color: #bf1e2e;
    text-decoration: none;
  }
  .title_light {
    font-size: 42px;
    line-height: 42px;
  }
  .title_bold {
    font-size: 36px;
  }
  .title_semibold {
    font-size: 28px;
  }
  .hg-read-more1:hover {
    text-decoration: underline;
  }
  .hg-home-banner-img {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  #plugins_page_primary .plugins_page_list {
    margin-top: 55px;
  }
  #plugins_page_primary .plugins_page_list li {
    background-color: #f9f9f9;
    border: 1px solid #f2f2f2;
    padding: 10px 24px 14px;
  }
  #plugins_page_primary .plugins_page_list li.last {
    margin: 0 110px 60px 0;
  }
  #plugins_page_primary .plugins_page_list li.last:nth-child(even) {
    margin-right: 0;
  }
  #plugins_page_primary .plugins_page_list li:nth-child(even) {
    margin-right: 0;
  }
  #website_development .inner_wrap {
    padding: 49px 0 36px;
  }
  #website_development .inner_wrap h2 {
    font-size: 34px;
    line-height: 34px;
    text-align: left;
  }
  #website_development .inner_wrap .service_description {
    margin: 7px 0 17px;
    font-size: 20px;
    text-align: left;
    width: 53%;
    line-height: 23px;
  }
  #website_development .inner_wrap .view_details {
    text-align: left;
  }
  .faq_list ul li h2 {
    font-size: 16px;
  }
  #wp_plugin_faq_wrapper .wp_all_plugins_banner {
    background: url(../images/Rectangle.jpg) center center no-repeat;
    background-size: cover;
  }
  .wp_all_plugins_banner h3 {
    color: #F45A2A;
    line-height: 24px;
    margin-bottom: 11px;
    text-align: left;
    width: 100%;
    float: none;
  }
  .wp_all_plugins_banner h3:before {
    display: none;
    width: 100%;
    background-image: -webkit-gradient(linear, right top, left top, from(#F45A2A), to(transparent));
    background-image: linear-gradient(to left, #F45A2A, transparent);
  }
  .wp_all_plugins_banner h3:after {
    display: none;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(#F45A2A), to(transparent));
    background-image: linear-gradient(to right, #F45A2A, transparent);
  }
  .wp_all_plugins_banner .link_block {
    text-align: left;
  }
  #wp_plugin_faq_wrapper .wp_all_plugins_banner h2 {
    font-size: 34px;
    line-height: 34px;
    text-align: left;
    margin: 0;
    color: #F45A2A;
    text-shadow: none;
  }
  .wp_all_plugins_banner a {
    margin: 21px 0;
  }
  .wp_all_plugins_banner a:link, .wp_all_plugins_banner a:visited {
    margin: 21px 0;
  }
  .wp_all_plugins_banner p {
    width: 280px;
    margin: 10px 0 0;
    line-height: 23px;
    color: #b1adaa;
    text-align: left;
  }
  #wp_plugin_faq_wrapper .wp_all_plugins_banner p.semibold, .hg_game_dn {
    display: none;
  }
  #gaming_page_slide {
    background: url(../images/hg_mobile_bg.jpg) repeat-x;
    height: 273px;
    overflow: hidden;
  }
  #gaming_page_slide .image_block {
    -webkit-transform: scale(0.38) !important;
    transform: scale(0.38) !important;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    margin-top: 15px;
  }
  #gaming_page_slide .text_block .inner_container {
    width: 50%;
  }
  #gaming_page_slide .text_block .inner_container .link_block a {
    height: 30px;
    line-height: 31px;
    margin-top: 11px;
  }
  #gaming_page_slide .text_block .inner_container .link_block a:link, #gaming_page_slide .text_block .inner_container .link_block a:visited {
    height: 30px;
    line-height: 31px;
    margin-top: 11px;
  }
  #gaming_page_slide .text_block .inner_container h1 {
    font-size: 26px;
    line-height: 47px;
    margin: 0 0 11px;
  }
  #gaming_page_slide .text_block .inner_container h1 .white_bold {
    font-size: 39px;
    line-height: 35px;
    margin-top: 0;
  }
  #gaming_page_slide .text_block .inner_container p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 22px;
  }
  #gaming_page_slide .text_block .inner_container .link_block a {
    font-size: 16px;
  }
  #gaming_page_slide .text_block .inner_container .link_block a:link, #gaming_page_slide .text_block .inner_container .link_block a:visited {
    font-size: 16px;
  }
  #mobile_apps_list li .text_block {
    width: 55%;
    margin: 6% 0 0;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p.semibold, .theme_versions_table {
    width: 100%;
  }
  #mobile_apps_banner {
    height: 360px;
  }
  #mobile_apps_banner .text_block {
    bottom: 80px;
  }
  #mobile_app_single_banner .text_block {
    top: 45px;
  }
  #mobile_app_single_wrapper {
    border: none;
  }
  #mobile_app_single_banner .text_block h1 {
    font-size: 40px;
    margin: 0 0 18px;
    line-height: 40px;
  }
  #mobile_app_single_banner .text_block p {
    font-size: 16px;
    line-height: 24px;
  }
  #mobile_app_single_content p {
    font-size: 15px;
  }
  #order_website_entry.full-width {
    height: 270px;
    padding: 35px 0 45px;
  }
  #order_website_entry .title_block {
    font-size: 22px;
    line-height: 22px;
  }
  #order_website_entry .title_block .white_block {
    font-size: 40px;
  }
  #order_website_entry .title_block .red_medium {
    font-size: 22px;
    line-height: 27px;
  }
  #order_website_entry .title_block .white_light {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 16px;
  }
  #order_website_entry .title_block .white_thin {
    font-size: 32px;
    margin: 0;
  }
  #order_website_features ul li:nth-child(1) {
    border-top: 1px solid #acacac;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner h2 {
    margin: 0 auto;
  }
  .plugin_versions_table .table_column_1 {
    padding-top: 6px;
  }
  .plugin_versions_table .feature_name {
    height: 31px;
  }
  .plugin_versions_table .features_expand:after {
    right: 5px;
  }
  .wp_all_plugins_banner h2 {
    font-size: 36px;
    line-height: 36px;
    text-align: left;
    width: 100%;
    color: #F45A2A;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p {
    font-size: 14px;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p.semibold {
    font-size: 14px;
  }
  .wp_all_plugins_banner h3 {
    font-size: 20px;
  }
  .plugin_demo_section .demo_navigation_inner, .plugin_demo_section .plugin_demo_content {
    padding: 0;
  }
  .plugin_demo_section .demo_navigation_inner h1 .right_title {
    margin-right: 130px;
  }
  #theme_page_header .text_block .theme_title {
    font-size: 36px;
  }
  #theme_feature_responsive h3, #theme_features > h2 {
    font-size: 22px;
  }
  #theme_page_header {
    margin-bottom: 40px;
  }
  .theme_versions_table .column {
    width: 19.7%;
  }
  .theme_versions_table .version_name h3 {
    font-size: 15px;
    line-height: 15px;
  }
  #theme_feature_responsive .theme_responsive_text, #theme_page_header .text_block p {
    font-size: 13px;
  }
  .theme_versions_table .features_expand, .theme_versions_table .version_name span {
    font-size: 13px;
  }
  .theme_versions_table .feature_value, .theme_versions_table .version_name span {
    font-size: 12px;
  }
  .theme_versions_table .buy_link a {
    font-size: 13px;
  }
  .theme_versions_table .buy_link a:link, .theme_versions_table .buy_link a:visited {
    font-size: 13px;
  }
  .theme_versions_table .feature_name {
    height: 33px;
  }
  #theme_feature_responsive {
    padding: 30px 0 5px;
    margin: 0 0 100px;
  }
  #all_wp_plguins_light .text_block h3 {
    text-align: left;
    height: 36px;
    line-height: 36px;
    margin: 0 0 4px;
  }
  #all_wp_plguins_light .text_block h3:after, #all_wp_plguins_light .text_block h3:before {
    display: none;
  }
  #theme_page_header .text_block .theme_title {
    margin: 0;
  }
  #theme_page_header .text_block .link_block {
    margin: 20px 0 0;
  }
  #all_wp_plguins_light .container {
    height: 350px;
    overflow: hidden;
  }
  #all_wp_plguins_light .text_block {
    width: 49%;
    padding-right: 1%;
  }
  #all_wp_plguins_light .text_block h4 {
    margin: 20px 0 6px;
    font-size: 22px;
  }
  .text_block h3 {
    font-size: 18px;
  }
  #all_wp_plguins_light {
    height: 350px;
  }
  #all_wp_plguins_light .coffee_cup_horizontal {
    bottom: -25px;
    left: -75px;
  }
  #all_wp_plguins_light .image_block {
    width: 78%;
    left: -29%;
    position: absolute;
    top: 28px;
  }
  #all_wp_plguins_light .text_block p {
    font-size: 14px;
  }
  #theme_page_header .text_block .link_block a {
    padding: 5px 18px;
  }
  #theme_page_header .text_block .link_block a:link, #theme_page_header .text_block .link_block a:visited {
    padding: 5px 18px;
  }
  .button-grey {
    -webkit-transition: all .218s ease-in-out;
    transition: all .218s ease-in-out;
    background-image: linear-gradient(to left, transparent 12px, #364757 12px), linear-gradient(to bottom, transparent 12px, #364757 12px);
    font-size: 23px;
    line-height: 42px;
    height: auto;
  }
  .button-grey:link, .button-grey:visited {
    -webkit-transition: all .218s ease-in-out;
    transition: all .218s ease-in-out;
    background-image: linear-gradient(to left, transparent 12px, #364757 12px), linear-gradient(to bottom, transparent 12px, #364757 12px);
    font-size: 23px;
    line-height: 42px;
    height: auto;
  }
  .button-grey:before {
    width: 12px;
    height: 12px;
  }
  .button-grey:after {
    top: 12px;
    width: 12px;
  }
  #all_wp_plguins_light .text_block h3 {
    font-size: 18px;
  }
  .hg_banner_img {
    height: 255px;
  }
  .hg_wp_plugin_banner {
    height: 255px;
  }
  .hg_wp_plugin_banner .hg_banner_img {
    background-size: 620px !important;
    background-position: left 12px top 15px !important;
  }
  .hg-text-block {
    width: 38%;
  }
  .hg_wp_plugin_banner h2 {
    font-size: 26px;
    line-height: 26px;
    margin-top: 15px;
  }
  .hg_wp_plugin_banner h3 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .hg_wp_plugin_banner p {
    font-size: 15px;
    line-height: 24px;
  }
  #gaming_single_banner {
    margin-bottom: 50px;
  }
  #gaming_single_content .entry_wrapper .post_content h1 {
    font-size: 36px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li {
    width: 174px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li .image_block img {
    width: 150px;
    height: 150px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li .image_block a {
    width: 150px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li .image_block a:link, #gaming_single_content .hugebob_ad_banner .top_games li .image_block a:visited {
    width: 150px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li h5 {
    padding: 0 12px;
    font-size: 20px;
    line-height: 20px;
  }
  #gaming_single_content .hugebob_ad_banner .hugebob_info a {
    line-height: 40px;
    font-size: 20px;
  }
  #gaming_single_content .hugebob_ad_banner .hugebob_info a:link, #gaming_single_content .hugebob_ad_banner .hugebob_info a:visited {
    line-height: 40px;
    font-size: 20px;
  }
  #gaming_single_content .share_game_section h4 {
    padding: 19px 0;
    font-size: 20px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li .link_block a {
    margin-top: 15px;
  }
  #gaming_single_content .hugebob_ad_banner .top_games li .link_block a:link, #gaming_single_content .hugebob_ad_banner .top_games li .link_block a:visited {
    margin-top: 15px;
  }
  .plugin_demo_section h1 {
    font-size: 18px;
  }
  .plugin_demo_section h1 .right_title {
    font-size: 16px;
  }
  .plugin_manual_wrapper .manual_content .manual_list {
    margin-top: 20px;
  }
  .plugin_manual_wrapper .manual_content .manual_list .list_wrapper {
    margin: 0 0 20px;
  }
  .plugin_manual_wrapper .manual_content section {
    margin-bottom: 30px;
  }
  #order_website_features ul li {
    border-color: #acacac;
    height: 310px;
    padding-top: 20px;
  }
  #order_website_features ul li:nth-child(1) {
    padding-top: 20px;
  }
  #blog_page_wrapper .content_container ul li article img {
    width: 120px;
    margin: 0 5px 0 3px;
  }
  .plugin_versions_table .feature_name:first-child {
    line-height: 13px;
  }
  #blog_page_wrapper .content_container ul li article .title_link {
    display: block;
  }
  #blog_page_wrapper .content_container ul li article .title_link:link, #blog_page_wrapper .content_container ul li article .title_link:visited {
    display: block;
  }
  .plugin_homepage_demo_links ul li img {
    margin-right: 5%;
  }
  .plugin_homepage_demo_links ul li h4 {
    font-size: 20px;
    line-height: 20px;
  }
  .plugin_homepage_demo_links ul li p {
    font-size: 14px;
  }
  .text_content ul {
    margin-left: 20px;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .two-columns li {
    float: left;
    width: 50%;
    margin-right: 0;
  }
  .two-columns li:nth-child(even) {
    margin-right: 0;
    margin-left: 5%;
    width: 45%;
  }
  .text_content li {
    line-height: 14px;
    margin-bottom: 5px;
    font-size: 13px;
  }
  .hg_new_wp_banner .hg_left_img_block {
    width: 20%;
    height: 129px;
  }
  .hg_new_wp_banner h3 {
    font-size: 16px;
    line-height: 23px;
  }
  .hg_new_wp_banner h3 strong {
    font-size: 18px;
  }
  .hg_new_wp_banner span {
    width: 82%;
    line-height: 15px;
    margin-top: 10px;
  }
  .hg_right_button_block {
    margin-top: 75px;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center {
    width: 48%;
    margin-right: 2%;
    margin-left: 2%;
  }
  .hg_wp_plugin_banner .wp_login h1, .hg_wp_plugin_banner .hg_price_table_builder h1, .hg_wp_plugin_banner h1 {
    font-size: 24px;
    line-height: 15px;
    margin-top: 20px;
  }
  .hg_wp_plugin_banner .wp_login .hg_bold, .hg_wp_plugin_banner .hg_price_table_builder .hg_bold, .hg_wp_plugin_banner .hg_bold {
    font-size: 36px;
  }
  .hg_wp_plugin_banner .wp_login p, .hg_wp_plugin_banner p {
    font-size: 14px;
    line-height: 20px;
  }
  .hg_wp_plugin_banner h1 span, .hg_wp_plugin_banner .hg_price_table_builder h1 span {
    font-size: 24px;
  }
  .hg-text-block.hg_34 {
    width: 34%;
  }
  .hg-text-block.hg_35 {
    width: 35%;
  }
}

@media screen and (max-width: 782px) {
  #buddypress div#item-header #item-header-cover-image #item-header-content {
    width: auto;
    margin-left: 20px;
  }
  #buddypress #item-header-cover-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  #buddypress #item-header-cover-image #item-header-avatar {
    margin-left: 22px;
  }
  #buddypress div.item-list-tabs#subnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-flow: row wrap;
  }
}

@media screen and (max-width: 768px) {
  #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  #bbpress-forums li.bbp-body ul li.bbp-forum-reply-count, #bbpress-forums li.bbp-body ul li.bbp-forum-topic-count, #bbpress-forums li.bbp-body ul li.bbp-topic-reply-count, #bbpress-forums li.bbp-body ul li.bbp-topic-voice-count {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #bbpress-forums li.bbp-body ul.forum {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #bbpress-forums li.bbp-body ul li.bbp-forum-freshness, #bbpress-forums li.bbp-body ul li.bbp-topic-freshness {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #bbpress-forums li.bbp-body ul li.bbp-forum-freshness a, #bbpress-forums li.bbp-body ul li.bbp-topic-freshness a {
    font-size: 13px;
    text-align: center;
  }
  .hg-body {
    padding-top: 52px;
  }
  .hg-body.admin-bar {
    padding-top: 20px;
  }
  .hg_download_page h2 {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .hg_download_page div {
    font-size: 18px;
  }
  #site_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  }
  #header_social, #page_primary, #site_footer, .container, section {
    -webkit-transition: -webkit-transform .28s ease;
    transition: -webkit-transform .28s ease;
    transition: transform .28s ease;
    transition: transform .28s ease, -webkit-transform .28s ease;
    transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  }
  .hg_hide_p1, .hg_hide_p2 {
    display: none;
  }
  #page_primary h1 {
    font-size: 36px;
  }
  .content p {
    font-size: 14px;
    line-height: 20px;
  }
  .grey_heading {
    font-size: 20px;
    text-align: left;
    padding-left: 7px;
  }
  .page-template-template-about-us .four_column_list {
    width: 185px;
    margin: 0 0 10px 7px;
  }
  #page_primary .navigation {
    width: 100%;
    font-size: 14px;
  }
  .four_column_list li {
    width: 100%;
    font-size: 14px;
    display: block;
  }
  #plugins_page_primary .plugins_page_list li .description, #plugins_page_primary .plugins_page_list li .title {
    display: none;
  }
  .hg-read-more1 {
    display: none;
  }
  #plugins_page_primary .plugins_page_list li {
    height: 262px;
  }
  #plugins_page_primary .plugins_page_list li .learn_more_block {
    margin-top: 10px;
  }
  .hg_footer_rights {
    text-align: center;
    margin-bottom: 21px;
  }
  .hg-home-banner-img {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
  .button-green {
    height: 31px;
    font-size: 17px;
    padding: 0 27px;
    line-height: 31px;
    text-align: center;
    background-image: linear-gradient(to left, transparent 10px, #1fbba6 10px), linear-gradient(to bottom, transparent 10px, #1fbba6 10px);
    background-size: 100% 100%, 10px 100%;
  }
  .button-green:link, .button-green:visited {
    height: 31px;
    font-size: 17px;
    padding: 0 27px;
    line-height: 31px;
    text-align: center;
    background-image: linear-gradient(to left, transparent 10px, #1fbba6 10px), linear-gradient(to bottom, transparent 10px, #1fbba6 10px);
    background-size: 100% 100%, 10px 100%;
  }
  #footer_meta_info {
    width: 207px;
    margin-top: 65px;
  }
  .button-blue {
    height: 31px;
    font-size: 17px;
    padding: 0 27px;
    line-height: 31px;
    text-align: center;
    background-image: linear-gradient(to left, transparent 10px, #029dca 10px), linear-gradient(to bottom, transparent 10px, #029dca 10px);
    background-size: 100% 100%, 10px 100%;
  }
  .button-blue:link, .button-blue:visited {
    height: 31px;
    font-size: 17px;
    padding: 0 27px;
    line-height: 31px;
    text-align: center;
    background-image: linear-gradient(to left, transparent 10px, #029dca 10px), linear-gradient(to bottom, transparent 10px, #029dca 10px);
    background-size: 100% 100%, 10px 100%;
  }
  .button-orange {
    height: 31px;
    font-size: 17px;
    padding: 0 27px;
    line-height: 31px;
    text-align: center;
    background-image: linear-gradient(to left, transparent 10px, #029dca 10px), linear-gradient(to bottom, transparent 10px, #029dca 10px);
    background-size: 100% 100%, 10px 100%;
  }
  .button-orange:link, .button-orange:visited {
    height: 31px;
    font-size: 17px;
    padding: 0 27px;
    line-height: 31px;
    text-align: center;
    background-image: linear-gradient(to left, transparent 10px, #029dca 10px), linear-gradient(to bottom, transparent 10px, #029dca 10px);
    background-size: 100% 100%, 10px 100%;
  }
  .button-blue:before {
    width: 10px;
    height: 10px;
  }
  .button-green:after, .button-green:before {
    width: 10px;
    height: 10px;
  }
  .button-orange:before {
    width: 10px;
    height: 10px;
  }
  .button-blue:hover, .button-green:hover, .button-orange:hover {
    background-size: calc(100% + 10px) 100%, 11px calc(100% + 10px);
    background-position: calc(100% + 10px) 0, 100% -10px;
  }
  .button-blue:after, .button-orange:after {
    top: 10px;
    width: 10px;
    height: 10px;
  }
  .button-green:after {
    top: 10px;
  }
  .nav-menu {
    float: none;
  }
  .hg_blog_top_border, .hg_hr {
    border-top: 1px solid #cbcbcb;
  }
  .title_light {
    font-size: 41px;
    line-height: 50px;
    margin-top: 4px;
    display: block;
  }
  .title_semibold {
    font-size: 27.55px;
  }
  .title_bold {
    font-size: 34.43px;
  }
  .description, .features {
    display: none;
  }
  .hg-read-more2 {
    display: inline-block;
    color: #bf1e2e;
    text-decoration: none;
  }
  .footer_menu h5, .hg-read-more2:hover {
    text-decoration: underline;
  }
  #footer_social {
    width: 215px;
    margin: 0 auto;
  }
  #footer_meta_info p.hg_resp_disp_none {
    display: none;
  }
  #colophon {
    height: 25px;
    background: url(../images/mobile_footer.jpg) no-repeat;
    background-size: cover;
  }
  .footer_menu h5 {
    font-size: 16px;
    margin-top: 18px;
  }
  .hg_resp_cb {
    clear: both;
    width: 338px;
    border-bottom: 1px solid #fff;
    margin: 75px auto 17px;
    opacity: 0.1;
  }
  .hg_blog_top_border {
    margin-bottom: 28px;
  }
  .hg_hr {
    display: block;
    margin-bottom: 32px;
  }
  #live_support, #mobile_apps_banner .image_block .map_bg, #wp_plugin_faq_wrapper .plugin_page_nav, .faq_list .column:nth-child(3) {
    display: none;
  }
  .plugin_manual_wrapper .manual_content .manual_list .image_block {
    width: 100%;
  }
  #plugins_page_primary .plugins_page_head {
    border: 0;
  }
  #plugins_page_primary .plugins_page_list li {
    margin: 0 41px 41px 0;
  }
  #plugins_page_primary .plugins_page_list li.last {
    margin: 0 41px 41px 0;
  }
  #plugins_page_primary .plugins_page_head .title {
    text-transform: uppercase;
    margin: 40px 0 12px;
  }
  .button:visited {
    padding: 0 20px;
    height: 42px;
    font-size: 23px;
    line-height: 42px;
    background-image: linear-gradient(to left, transparent 10px, #f45a2a 10px), linear-gradient(to bottom, transparent 10px, #f45a2a 10px);
  }
  .link_block .button, .view_details .button {
    padding: 0 20px;
    height: 42px;
    font-size: 23px;
    line-height: 42px;
    background-image: linear-gradient(to left, transparent 10px, #f45a2a 10px), linear-gradient(to bottom, transparent 10px, #f45a2a 10px);
  }
  .link_block .button:link, .view_details .button:link {
    padding: 0 20px;
    height: 42px;
    font-size: 23px;
    line-height: 42px;
    background-image: linear-gradient(to left, transparent 10px, #f45a2a 10px), linear-gradient(to bottom, transparent 10px, #f45a2a 10px);
  }
  #order_website_entry .button {
    margin-top: 8px;
    margin-right: 8px;
    padding: 0 16px;
    height: 42px;
    font-size: 19px;
    line-height: 42px;
    background-image: linear-gradient(to left, transparent 10px, #bf1e2e 10px), linear-gradient(to bottom, transparent 10px, #bf1e2e 10px);
  }
  .button:link, .button:visited {
    margin-top: 8px;
    margin-right: 8px;
    padding: 0 16px;
    height: 42px;
    font-size: 19px;
    line-height: 42px;
    background-image: linear-gradient(to left, transparent 10px, #bf1e2e 10px), linear-gradient(to bottom, transparent 10px, #bf1e2e 10px);
  }
  .button:after, .button:before {
    width: 10px;
    height: 10px;
  }
  #order_website_entry .button:before {
    background-color: #000;
  }
  .button:after {
    top: 10px;
  }
  #blog_page_wrapper {
    display: block;
  }
  .content_container {
    width: 98%;
    margin: 0 auto;
    float: none;
    padding: 0 1%;
  }
  .sidebar_container {
    float: none;
    width: 100%;
  }
  #post_content.text_content {
    clear: both;
  }
  #post_date {
    font-size: 11.63px;
  }
  #post_title {
    padding: 0 0 2px;
  }
  #blog_page_wrapper .content_container ul li {
    padding: 0 0 22px;
    margin: 0 0 26px;
    width: 100%;
  }
  #blog_page_wrapper .content_container ul li article p {
    margin: 0 0 6px;
  }
  .page-template-template-blog.hg-body {
    padding-top: 8px;
  }
  #blog_page_wrapper .content_container .loading_image_block {
    height: 30px;
    float: none;
    margin-bottom: 120px;
    margin-right: 0;
    text-align: right;
  }
  .container img {
    height: auto;
  }
  #aditional_payment_page, #verification_page {
    font-size: 15px;
  }
  #aditional_payment_page form .input, #verification_page form .input {
    font-size: 15px;
  }
  #aditional_payment_page form, #verification_page form {
    margin-top: 30px;
  }
  #aditional_payment_page form span, #verification_page form span {
    font-size: 13px;
  }
  #aditional_payment_page form .submit, #verification_page form .submit {
    font-size: 15px;
    line-height: 12px;
    padding: 14px 40px 15px;
  }
  .plugin_versions_table .feature_name {
    font-size: 12px;
    line-height: 32px;
  }
  .plugin_versions_table .feature_name:first-child {
    line-height: 13px;
  }
  .plugin_versions_table .version_name h3 {
    font-size: 14px;
  }
  .plugin_versions_table .feature_value {
    font-size: 12px;
    line-height: 33px;
  }
  .plugin_versions_table .buy_link a {
    font-size: 13px;
  }
  .plugin_versions_table .buy_link a:link, .plugin_versions_table .buy_link a:visited {
    font-size: 13px;
  }
  .plugin_features_content_list .feature h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 25px;
  }
  .plugin_features_content_list .feature p {
    font-size: 13px;
    line-height: 14px;
    text-align: left;
  }
  .plugin_homepage_entry {
    margin: 27px auto 40px;
  }
  .plugin_homepage_entry p {
    font-size: 14px;
  }
  .plugin_versions_table .features_expand {
    font-size: 13px;
  }
  #theme_page_header .text_block .link_block a:before {
    width: 11px;
    background: linear-gradient(225deg, transparent 12px, #1fbba6 12px, #1fbba6 12px, #fff 12px);
  }
  #theme_feature_responsive {
    padding: 15px 0 0;
  }
  #theme_features {
    padding: 16px 0 0;
  }
  #theme_features > h3 {
    width: 100%;
    line-height: 22px;
  }
  #theme_feature_responsive .theme_responsive_text, #theme_page_header .text_block p {
    line-height: 30px;
  }
  .theme_versions_table .features_expand, .theme_versions_table .version_name span {
    line-height: 30px;
  }
  #theme_feature_responsive h3 {
    margin: 0 0 8px;
    font-size: 20px;
  }
  #theme_features > h2 {
    font-size: 20px;
  }
  .theme_versions_table .feature_name {
    font-size: 12px;
    line-height: 33px;
  }
  .theme_versions_table .version_name h3 {
    font-size: 14px;
  }
  #all_wp_plguins_light .text_block h3 {
    font-size: 16px;
  }
  #all_wp_plguins_light .text_block h4 {
    font-size: 20px;
  }
  #all_wp_plguins_light .text_block p {
    font-size: 13px;
  }
  .theme_versions_table .best_seller:after {
    width: 39px;
    height: 39px;
    top: -1px;
    right: -3px;
    background: url(../images/huge-it-template-icons.png) -212px -748px;
  }
  .theme_features_list .feature {
    width: 260px;
  }
  .theme_features_list .feature h4 {
    font-size: 16px;
  }
  .theme_features_list .feature p {
    font-size: 11px;
  }
  .plugin_manual_wrapper .manual_content .manual_list .list_wrapper {
    width: 100%;
  }
  #order_website_entry .title_block .white_light {
    display: inline;
  }
  .plugin_manual_wrapper .manual_content section:after, .plugin_manual_wrapper .manual_navigation {
    display: none;
  }
  #theme_page_header .theme_preview_block a .preview_icon, #theme_page_header .theme_preview_block a:before {
    opacity: 1;
    visibility: visible;
  }
  .plugin_demo_section .demo_navigation_inner h1 {
    text-align: center;
  }
  .plugin_demo_section .demo_navigation_inner h1 .right_title {
    text-align: center;
    position: relative;
    z-index: 99999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    clear: both;
    float: none;
    width: 50%;
    text-align: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-indent: 42px;
  }
  .plugin_demo_section .demo_navigation_inner ul {
    position: relative;
    width: 100%;
    margin: 0 auto;
    right: auto;
  }
  .plugin_demo_section .demo_navigation_inner ul.hg_open_demo_menu li {
    height: 47px;
    font-size: 16px;
  }
  .plugin_demo_section .demo_navigation_inner ul.hg_open_demo_menu li:last-child {
    margin-bottom: 15px;
    border-bottom: 3px solid #bf1e2e;
  }
  .plugin_page_links ul {
    margin-bottom: 25px;
  }
  .plugin_page_links ul li a span {
    opacity: 1;
    top: 120%;
    color: #bf1e2e;
    font-size: 16px;
    width: 100px;
  }
  .plugin_page_links ul li.active a span {
    text-decoration: underline;
  }
  .plugin_page_links ul li a:hover:before, .plugin_page_links ul li.active a:before {
    opacity: 1;
  }
  .plugin_page_links ul li a {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .plugin_page_links ul li a:link, .plugin_page_links ul li a:visited {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #top_plugins_section {
    padding: 0 0 20px;
  }
  #top_plugins_inner h2 {
    font-size: 32px;
  }
  #accept_the_terms, #changes_to_notice, #children_security, #data_security, #information_collect, #license, #privacy, #product_support, #product_usage, #refund_policy, #share_information, #theme_license, #trademark, #user_content, #your_information {
    width: 95%;
    margin: auto;
  }
  .wp_all_plugins_banner p.semibold {
    font-size: 16px;
  }
  .wp_all_plugins_banner {
    background: url(../images/Rectangle.jpg) center center no-repeat;
    background-size: cover;
  }
  .wp_all_plugins_banner h2 {
    font-size: 24px;
    padding: 12px 0 0;
    line-height: 24px;
  }
  .wp_all_plugins_banner h3 {
    font-size: 17px;
    line-height: 17px;
  }
  .container {
    width: 98%;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p {
    font-size: 12px;
    width: 74%;
    margin-top: 5px;
    line-height: 13px;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p.semibold {
    font-size: 12px;
    width: 74%;
    margin-top: 5px;
    line-height: 13px;
  }
  #order_website_features ul li .image_block img {
    width: 170px;
  }
  #order_website_features ul li .description {
    height: 123px;
  }
  #order_website_features ul li:nth-child(3) .description {
    height: 148px;
  }
  .plugin_manual_wrapper .manual_content section {
    margin-bottom: 20px;
  }
  .plugin_manual_wrapper .manual_content .text_block > p {
    width: 100%;
  }
  .plugin_manual_wrapper .manual_content .text_block h2 {
    font-size: 18px;
  }
  #top_plugins_inner ul li:last-child {
    margin-right: auto;
  }
  #order_website_features ul li {
    padding-top: 2px;
    height: auto;
  }
  /*#homepage_slider {
      height: 211px
  }*/
  .plugin_manual_wrapper .manual_content {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }
  .plugin_features_content_list .feature p {
    height: auto;
  }
  .plugin_homepage_demo_links ul li h4 {
    font-size: 17px;
    line-height: 17px;
  }
  .plugin_homepage_demo_links ul li p {
    font-size: 13px;
    line-height: 14px;
    min-height: 98px;
  }
  .plugin_homepage_demo_links ul li .link_block {
    margin-top: 10px;
  }
  .plugin_homepage_demo_links ul li img {
    margin-right: 5%;
    width: 45%;
  }
  .text_content li {
    line-height: 14px;
    margin-bottom: 5px;
    font-size: 12px;
  }
  #blog_page_wrapper .content_container .loading_image_block img {
    margin: -20px auto;
  }
  #huge_it_search_wrapper.container {
    width: 100%;
    padding: 0;
  }
  .plugin_demo_section .demo_navigation_inner {
    width: 100%;
  }
  .theme_usermanual_container {
    width: 100%;
    margin: 20px auto;
    text-align: left;
  }
  .hg_new_wp_banner {
    padding: 10px 0 6px;
  }
  .hg_new_wp_banner h3 {
    font-size: 14px;
    line-height: 20px;
  }
  .hg_new_wp_banner h3 strong {
    font-size: 16px;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center {
    width: 50%;
    margin-right: 3%;
    margin-left: 4%;
  }
  .hg_new_wp_banner span {
    font-size: 12px;
    line-height: 14px;
    margin-top: 8px;
  }
  .hg_new_wp_banner .hg_left_img_block {
    height: 119px;
  }
  .hg_right_button_block {
    margin-top: 88px;
  }
  header .container .hg-login-account-menu .hg-login-account-dropdown-menu {
    top: 56px;
  }
  .hg_wp_plugin_banner .wp_portfolio_catalog h1, .hg_wp_plugin_banner .hg-portfolio-gallery h1, .hg_wp_plugin_banner .hg_video_gallery h1, .hg_wp_plugin_banner .hg_share_buttons h1, .hg_wp_plugin_banner .hg_price_table_builder h1, .hg_wp_plugin_banner .hg_video_gallery h1 span, .hg_wp_plugin_banner .hg_price_table_builder h1 span, .hg_wp_plugin_banner .wp_portfolio_catalog h1 span, .hg_wp_plugin_banner .hg_share_buttons h1 span, .hg_wp_plugin_banner .hg-portfolio-gallery h1 span {
    font-size: 16px;
  }
}

@media screen and (max-width: 682px) {
  .plugin_page_links ul li.forum {
    margin-top: 50px;
  }
}

@media screen and (max-width: 680px) {
  .bbp-forum-index-ask-question-inner-wrapper {
    margin-left: 0 !important;
    margin-right: 16px;
  }
  #aditional_payment_page {
    padding: 30px 10px;
  }
  #aditional_payment_page h2 {
    font-size: 21px;
  }
  #aditional_payment_page p {
    font-size: 14px;
  }
  #aditional_payment_page form {
    margin-bottom: 15px;
  }
  #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul li.bbp-topic-voice-count, #bbpress-forums li.bbp-body ul.forum {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #bbpress-forums li.bbp-body ul li.bbp-topic-reply-count, #bbpress-forums li.bbp-body ul li.bbp-forum-topic-count, #bbpress-forums li.bbp-body ul li.bbp-forum-reply-count {
    font-size: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #bbpress-forums li.bbp-body ul li.bbp-topic-freshness a, #bbpress-forums li.bbp-body ul li.bbp-forum-freshness a {
    font-size: 13px;
  }
  #bbpress-forums li a.bbp-topic-permalink {
    line-height: 20px;
    font-weight: 700;
    font-size: 14px !important;
  }
}

@media screen and (max-width: 640px) {
  #post_title {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #live_support {
    display: none;
  }
  .hg-home-banner-img {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
  }
  .hg_slide_right_block {
    width: 220px;
  }
  .hg_slide_right_block h2.text-longshadow {
    font-size: 20px;
  }
  .title_light {
    font-size: 28px;
    line-height: 15px;
    margin-top: 15px;
  }
  .title_semibold {
    font-size: 19px;
  }
  .title_bold {
    font-size: 24px;
  }
  .title {
    font-size: 15px;
    line-height: 15px;
  }
  .footer_menu {
    width: 47%;
    z-index: 999;
  }
  .footer_menu h5 {
    font-size: 15px;
    margin-top: 15px;
    line-height: 20px;
  }
  .footer_menu#left_footer_menu {
    width: 38%;
    margin-left: 9%;
  }
  .footer_menu#right_footer_menu {
    width: 37%;
    margin-left: 11%;
  }
  .hg_resp_cb {
    border-bottom: none;
  }
  #footer_logo {
    margin-top: 0;
    margin-bottom: 10px;
  }
  #footer_meta_info {
    text-align: center;
    width: 215px;
    margin: 15px auto;
    float: none;
  }
  .hg_footer_cb {
    clear: both;
  }
  .plugin_page_links ul li {
    margin: 0 30px 0 0;
  }
  .hg_horizon_scroll {
    width: 639px;
  }
  .plugin_versions_table, .theme_versions_table {
    overflow-x: auto;
  }
  #all_wp_plguins_light {
    height: 300px;
  }
  #all_wp_plguins_light .container {
    height: 300px;
  }
  #all_wp_plguins_light .image_block {
    width: 71%;
    left: -25%;
  }
  #all_wp_plguins_light .coffee_cup_horizontal {
    bottom: -30px;
    left: -48%;
  }
  #all_wp_plguins_light .text_block p {
    font-size: 12px;
    line-height: 16px;
  }
  .theme_versions_table .features_expand:after {
    right: 4px;
  }
  #all_wp_plguins_light .text_block h4 {
    font-size: 18px;
  }
  #all_wp_plguins_light .text_block h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .page_share_buttons_big_count .s_button {
    margin: 20px 20px 20px 0;
  }
  .theme_tabs_headings li {
    padding: 0 130px;
    border: 1px solid #d8d8d8;
  }
  #theme_page_header .text_block {
    width: 53%;
  }
  #theme_page_header .theme_preview_block {
    width: 40%;
    float: right;
  }
  .text_block .theme_title {
    font-size: 20px;
  }
  #theme_page_home {
    padding-top: 0;
  }
  .hg_banner_img {
    height: 205px;
  }
  .hg_wp_plugin_banner {
    height: 205px;
  }
  .hg_wp_plugin_banner .hg_banner_img {
    background-size: 500px !important;
    background-position: left 8px top 12px !important;
  }
  .hg_wp_plugin_banner .hg_gallery_images h1 {
    margin-top: 7px;
  }
  .hg-text-block {
    width: 38%;
  }
  .hg_wp_plugin_banner h2 {
    font-size: 20px;
    line-height: 20px;
    margin-top: 12px;
  }
  .hg_wp_plugin_banner h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .hg_wp_plugin_banner p {
    font-size: 13px;
    line-height: 18px;
  }
  .plugin_demo_section .demo_navigation_inner h1 {
    font-size: 14px;
  }
  .plugin_demo_section .demo_navigation_inner .demo_navigation_list .right_title {
    font-size: 14px;
  }
  .plugin_demo_section .demo_navigation_inner .demo_navigation_list ul:before {
    right: 0;
  }
  .container {
    width: 98%;
    padding: 0 1%;
  }
  #top_plugins_inner h2 {
    margin: 0 0 5px;
  }
  .plugin_manual_wrapper .manual_content .manual_list .list_wrapper {
    font-size: 11px;
    padding-left: 0;
  }
  .plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li p {
    font-size: 11px;
    padding-left: 0;
  }
  .plugin_manual_wrapper .manual_navigation a {
    height: 30px;
    line-height: 30px;
    width: 55px;
    font-size: 14px;
  }
  .plugin_manual_wrapper .manual_navigation a:link, .plugin_manual_wrapper .manual_navigation a:visited {
    height: 30px;
    line-height: 30px;
    width: 55px;
    font-size: 14px;
  }
  .plugin_manual_wrapper .manual_content .text_block h2 {
    font-size: 15px;
  }
  .plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li > h5 {
    font-size: 13px;
    padding-left: 13px;
  }
  .plugin_manual_wrapper .manual_content .text_block h3 {
    font-size: 14px;
  }
  .text_content li {
    line-height: 12px;
    font-size: 11px;
  }
  .two-columns li:nth-child(even) {
    width: 40%;
  }
  .text_content ul {
    margin-top: 10px;
  }
  .plugin_features_content_list .feature h3 {
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 5px;
  }
  .text_content li {
    margin-bottom: 3px;
  }
  #comments {
    margin: 20px 0 0;
  }
  #reply-title {
    margin: 0 0 20px;
  }
  .plugin_homepage_demo_links ul li .link_block {
    margin-top: 40px;
  }
  #seo_contact input[type=submit] {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .android_banner_link {
    bottom: -22px;
    width: 146px;
    height: 44px;
    background-size: 140px;
  }
  #gaming_single_banner .link_block {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  .hg_new_wp_banner .hg_left_img_block {
    height: 120px;
  }
  .hg_right_button_block {
    margin-top: 89px;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center {
    width: 48%;
    margin-right: 3%;
    margin-left: 3%;
  }
  .hg_new_wp_banner h3 {
    font-size: 13px;
    line-height: 16px;
  }
  .hg_new_wp_banner h3 strong {
    font-size: 14px;
  }
  .hg_new_wp_banner span {
    font-size: 12px;
    line-height: 13px;
    margin-top: 5px;
  }
  .hg_wp_plugin_banner .wp_login h1, .hg_wp_plugin_banner .hg_price_table_builder h1, .hg_wp_plugin_banner h1 {
    font-size: 16px;
  }
  .hg_wp_plugin_banner .wp_login .hg_bold, .hg_wp_plugin_banner .hg_price_table_builder .hg_bold, .hg_wp_plugin_banner .hg_bold {
    font-size: 30px;
  }
  .hg_wp_plugin_banner .wp_login p {
    font-size: 12px;
    line-height: 16px;
  }
  .plugin_page_links ul li.forum {
    margin-top: 0px;
  }
}

@media screen and (max-width: 568px) {
  .plugin_page_links ul li.forum {
    margin-top: 50px;
  }
}

@media screen and (max-width: 570px) {
  #plugins_page_primary .plugins_page_list li {
    margin: 0 auto 41px;
    display: block;
  }
  #plugins_page_primary .plugins_page_list li.last {
    margin: 0 auto 41px;
    display: block;
  }
  #plugins_page_primary .plugins_page_list li.last:nth-child(even) {
    margin: 0 auto 41px;
    display: block;
  }
  #plugins_page_primary .plugins_page_list li:nth-child(even) {
    margin: 0 auto 41px;
    display: block;
  }
  #plugins_page_primary .plugins_page_head .title {
    font-size: 32px;
  }
  #buddypress div#item-header #item-header-cover-image #item-header-content .user-nicename {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 150px;
  }
  #website_development .inner_wrap .service_description {
    font-size: 16px;
  }
  #blog_page_wrapper .content_container ul li article h2 {
    font-size: 15px;
    margin: 0;
  }
  #blog_page_wrapper .content_container ul li article p {
    font-size: 12px;
  }
  #blog_page_wrapper .content_container ul li article img {
    max-width: 100px;
    height: 100px;
  }
  #blog_page_wrapper .content_container ul li article .link_block a {
    font-size: 14px;
  }
  #blog_page_wrapper .content_container ul li article .link_block a:link, #blog_page_wrapper .content_container ul li article .link_block a:visited {
    font-size: 14px;
  }
  #blog_page_wrapper .content_container ul li article p {
    height: 58px;
    margin: 0 0 3px;
  }
  #blog_page_wrapper .content_container ul li article .date_button {
    width: 45px;
    font-size: 14px;
    padding-top: 30px;
    height: 35px;
  }
  .date_button:after, .date_button:before {
    top: 85px;
  }
  #mobile_app_single_banner .text_block {
    top: 70px;
  }
  #mobile_app_single_banner .text_block h1 {
    font-size: 16px;
    margin: 20px 0 5px;
    line-height: 18px;
  }
  #mobile_app_single_banner .text_block p {
    font-size: 12px;
    line-height: 14px;
    width: 80%;
  }
  #mobile_app_single_content p {
    font-size: 12px;
    line-height: 16px;
  }
  #gaming_page_slide {
    height: 230px;
  }
  #gaming_page_slide .image_block {
    -webkit-transform: scale(0.28) !important;
    transform: scale(0.28) !important;
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  #gaming_page_slide .text_block .inner_container {
    width: 200px;
    margin-right: 0;
  }
  #gaming_page_slide .text_block .inner_container h1 {
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 7px;
  }
  #gaming_page_slide .text_block .inner_container h1 .white_bold {
    font-size: 24px;
  }
  #order_website_features ul li .description .title {
    font-size: 16px;
    line-height: 20px;
  }
  #order_website_features ul li .description .title .black_regular, #order_website_features ul li .description .title .blue_regular, #order_website_features ul li .description .title .green_regular, #order_website_features ul li .description .title .grey_bold, #order_website_features ul li .description .title .red_regular {
    font-size: 16px;
  }
  .plugin_homepage_entry h1 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .plugin_homepage_entry p {
    font-size: 14px;
  }
  .hg_banner_img {
    height: 165px;
  }
  .hg_wp_plugin_banner {
    height: 165px;
  }
  .hg_wp_plugin_banner .hg_banner_img {
    background-size: 400px !important;
    background-position: left 8px top 8px !important;
  }
  .hg-text-block {
    width: 46%;
  }
  .hg_wp_plugin_banner h2 {
    font-size: 18px;
    line-height: 18px;
    margin-top: 12px;
  }
  .hg_wp_plugin_banner h3 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .hg_wp_plugin_banner p {
    font-size: 12px;
    line-height: 15px;
  }
  #games_list {
    margin: 20px auto 30px;
  }
  .plugin_demo_section h1 {
    line-height: 26px;
    text-align: center;
  }
  .plugin_demo_section h1 .right_title {
    float: none;
    margin-right: auto;
    width: 100%;
  }
  .plugin_demo_section ul:before {
    right: 10px;
    top: -18px;
  }
  #blog_post {
    margin: 0;
  }
  #post_date {
    margin: 0 0 20px;
  }
  #top_plugins_inner ul li {
    width: 270px;
    float: none;
    margin: 15px auto;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  #top_plugins_inner a {
    display: block;
    text-align: center;
  }
  #top_plugins_inner a:link, #top_plugins_inner a:visited {
    display: block;
    text-align: center;
  }
  #top_plugins_inner h2 {
    font-size: 20px;
    line-height: 20px;
  }
  #accept_the_terms, #changes_to_notice, #children_security, #data_security, #information_collect, #license, #privacy, #product_support, #product_usage, #refund_policy, #share_information, #theme_license, #trademark, #user_content, #your_information {
    width: 94%;
  }
  #mobile_apps_banner .image_block {
    right: -12%;
  }
  .date_button {
    background-size: calc(100% + 15px) 100%, 15px calc(100% + 15px);
    background-position: -15px 100%, 0 calc(100% + 15px);
    text-decoration: none;
  }
  .date_button:after, .date_button:before {
    width: 0;
    height: 0;
  }
  .plugin_homepage_demo_links ul li img {
    margin-right: auto;
    width: 100%;
    margin-bottom: 17px;
  }
  .two-columns li {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  .two-columns li:nth-child(even) {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  .text_content li {
    margin-bottom: 2px;
  }
  .text_content ul {
    margin-top: 5px;
  }
  .plugin_homepage_demo_links ul li .link_block {
    margin-top: 10px;
  }
  .page_share_buttons_big_count .s_button span {
    padding: 0 10px;
    font-size: 16px;
    line-height: 28px;
    height: 28px;
  }
  .page_share_buttons_big_count .s_button a {
    width: 30px;
    height: 30px;
  }
  .page_share_buttons_big_count .s_button a:link, .page_share_buttons_big_count .s_button a:visited {
    width: 30px;
    height: 30px;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p {
    width: 59%;
  }
  #seo_contact_wrapper:after {
    border-width: 0 12px 15px;
    left: calc(50% - 11px);
  }
  #seo_primary .engines {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #seo_contact h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }
  #page_primary .content p {
    font-size: 13px;
    line-height: 18px;
    padding: 0 7px;
  }
  .search_result_article p {
    height: 60px;
    font-size: 14px;
    line-height: 16px;
  }
  .search_result_article h2 {
    font-size: 16px;
    margin: 0;
  }
  .search_result_article .post_link {
    font-size: 15px;
  }
  .search_result_article .post_link:link, .search_result_article .post_link:visited {
    font-size: 15px;
  }
  #seo_primary .colophone p {
    padding: 0 7px;
  }
  #post_content {
    margin: 0 7px;
  }
  #order_website_features ul li:nth-child(3) .image_block img {
    width: 128px;
  }
  #mobile_apps_list li .text_block .links_block {
    padding-left: 7px;
  }
  #plugins_page_primary .plugins_page_list li:last-child {
    margin-right: auto;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center {
    width: 49%;
    margin-right: 0;
    margin-left: 1%;
  }
  .hg_new_wp_banner h3 {
    font-size: 11px;
    line-height: 13px;
  }
  .hg_new_wp_banner h3 strong {
    font-size: 12px;
  }
  .hg_new_wp_banner span {
    font-size: 10px;
    line-height: 12px;
    margin-top: 3px;
  }
  .hg_new_wp_banner .hg_left_img_block {
    height: 101px;
  }
  .hg_right_button_block {
    margin-top: 70px;
  }
  .hg_wp_plugin_banner .wp_login h1, .hg_wp_plugin_banner .hg_price_table_builder h1, .hg_wp_plugin_banner h1 {
    font-size: 16px;
    line-height: 12px;
    margin-top: 10px;
  }
  .hg_wp_plugin_banner .wp_login .hg_bold, .hg_wp_plugin_banner .hg_price_table_builder .hg_bold, .hg_wp_plugin_banner .hg_bold {
    font-size: 24px;
  }
  .hg_wp_plugin_banner .wp_login p, .hg_wp_plugin_banner p {
    font-size: 11px;
    line-height: 14px;
  }
}

@media screen and (max-width: 497px) {
  .alignleft, img.alignleft {
    display: block;
    float: none;
    margin: auto;
  }
  .plugin_demo_section .plugin_demo_content {
    text-align: center;
  }
  .hg_wp_plugin_banner .wp_login p, .hg_wp_plugin_banner p {
    display: none;
  }
  .hg_wp_plugin_banner .wp_login h1, .hg_wp_plugin_banner h1 {
    font-size: 24px;
    line-height: 24px;
    margin-top: 20px;
  }
  .hg_wp_plugin_banner .wp_login .hg_bold, .hg_wp_plugin_banner .hg_bold {
    font-size: 28px;
  }
}

@media screen and (max-width: 482px) {
  .plugin_page_links ul li.usermanual {
    margin-top: 50px;
  }
}

@media screen and (max-width: 479px) {
  #post_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #post_meta .share_buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #post_meta .share_buttons .s_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #bbpress-forums li p.bbp-topic-meta .bbp-topic-started-by {
    display: table;
    text-align: left;
    font-size: 13px;
  }
  #bbpress-forums li p.bbp-topic-meta .bbp-topic-started-by .bbp-author-avatar {
    float: left;
    margin-top: 12px;
    margin-right: 5px;
    font-size: 12px;
  }
  #bbpress-forums li p.bbp-topic-meta .bbp-topic-started-by .bbp-author-name {
    float: left;
    font-size: 12px;
    font-weight: 700;
  }
  #bbpress-forums li p.bbp-topic-meta .bbp-topic-started-in a {
    font-size: 12px;
  }
  #all_wp_plguins_light .coffee_cup_horizontal, #plugins_page_primary .plugins_page_head .description, #theme_page_header .text_block .theme_title:before {
    display: none;
  }
  #blog_post .wp-post-image {
    float: none;
    margin-right: auto;
    width: 100%;
  }
  .hg-home-banner-img {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
  }
  .button-green {
    height: 24px;
    font-size: 13px;
    padding: 0 12px;
    line-height: 24px;
  }
  .button-green:link, .button-green:visited {
    height: 24px;
    font-size: 13px;
    padding: 0 12px;
    line-height: 24px;
  }
  .title_semibold {
    font-size: 11px;
    line-height: 14px;
  }
  .title_bold {
    font-size: 13px;
    line-height: 14px;
  }
  .hg_hr {
    margin-bottom: 5px;
  }
  #plugins_page_primary .plugins_page_list li {
    margin: 0 auto 20px;
  }
  #plugins_page_primary .plugins_page_list li.last {
    margin: 0 auto 20px;
  }
  #plugins_page_primary .plugins_page_list li.last:nth-child(even) {
    margin: 0 auto 20px;
  }
  #plugins_page_primary .plugins_page_list li:nth-child(even) {
    margin: 0 auto 20px;
  }
  #website_development .inner_wrap {
    padding: 10px 0 14px;
  }
  #website_development .inner_wrap h2 {
    font-size: 18px;
    line-height: 18px;
  }
  #website_development .inner_wrap .service_description {
    border: none;
    font-size: 12px;
    width: 80%;
    line-height: 13px;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 29px;
  }
  .plugin_homepage_demo_links {
    margin: 0 auto 40px;
  }
  .plugin_homepage_demo_links ul li:last-child {
    margin-bottom: 40px;
    margin-top: 0;
  }
  .wp_all_plugins_banner h2 {
    font-size: 17px;
    line-height: 17px;
    padding: 10px 0 0;
    margin-bottom: 0;
  }
  .wp_all_plugins_banner h3 {
    font-size: 14px;
    padding: 0;
    margin-bottom: 5px;
  }
  #theme_feature_responsive .theme_responsive_text {
    width: 90%;
  }
  .theme_version_features {
    margin: 35px 0 0;
    padding: 0 0 35px;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p {
    font-size: 11px;
    margin-top: 0;
  }
  #wp_plugin_wrapper .wp_all_plugins_banner p.semibold {
    font-size: 11px;
    margin-top: 0;
  }
  #theme_feature_responsive h3 {
    font-size: 18px;
    line-height: 18px;
  }
  #theme_features {
    margin-bottom: 0;
  }
  #theme_features > h2 {
    font-size: 18px;
    line-height: 18px;
  }
  #theme_features > h3 {
    font-size: 14px;
    line-height: 18px;
  }
  #theme_feature_responsive {
    margin: 0 0 20px;
  }
  .theme_tabs_headings {
    margin: 20px 0;
  }
  #theme_feature_responsive .theme_responsive_text, #theme_page_header .text_block p {
    line-height: 18px;
  }
  .theme_versions_table .features_expand, .theme_versions_table .version_name span {
    line-height: 18px;
  }
  .theme_tabs_contents .theme_tab_content.active {
    text-align: center;
    line-height: 15px;
    font-size: 14px;
    word-spacing: 0;
  }
  .button-grey {
    font-size: 14px;
    line-height: 24px;
    padding: 0 15px;
  }
  .button-grey:link, .button-grey:visited {
    font-size: 14px;
    line-height: 24px;
    padding: 0 15px;
  }
  #all_wp_plguins_light {
    height: 177px;
  }
  #all_wp_plguins_light .link_block {
    margin-top: 15px;
  }
  #all_wp_plguins_light .container {
    height: 177px;
  }
  #theme_page_header {
    margin-bottom: 20px;
  }
  #theme_page_header .text_block {
    width: 100%;
    text-align: center;
    margin: 20px auto;
  }
  #theme_page_header .text_block p {
    width: 100%;
  }
  #theme_page_header .text_block .theme_title {
    padding-left: 0;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  #theme_page_header .theme_preview_block {
    width: 100%;
    float: none;
  }
  #theme_page_header .text_block .link_block {
    margin: 10px 0 0;
  }
  #theme_page_header .text_block .link_block a {
    font-size: 14px;
  }
  #theme_page_header .text_block .link_block a:link, #theme_page_header .text_block .link_block a:visited {
    font-size: 14px;
  }
  .widget_box {
    margin: 0 0 50px;
  }
  #post_content p {
    font-size: 13px;
    line-height: 16px;
    margin: 0 0 20px;
  }
  #wp_plugin_faq_wrapper .plugin_page_links {
    margin-bottom: 0;
  }
  .plugin_faq_content h1, .user_manual_title {
    margin: 20px 0 0;
  }
  .faq_list ul li {
    margin: 0 0 12px;
  }
  #wp_plugin_faq_wrapper .wp_all_plugins_banner h2 {
    font-size: 16px;
    line-height: 16px;
  }
  .plugin_faq_content h1, .user_manual_title {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
  }
  .wp_all_plugins_banner a {
    margin: 12px 0;
  }
  .wp_all_plugins_banner a:link, .wp_all_plugins_banner a:visited {
    margin: 12px 0;
  }
  .wp_all_plugins_banner p {
    font-size: 11px;
    line-height: 12px;
    margin-top: 0;
  }
  #wp_plugin_faq_wrapper .wp_all_plugins_banner {
    background-size: 110%;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  #post_meta .share_buttons {
    width: 282px;
  }
  #post_meta .share_buttons .s_button {
    margin: 0 10px 0 0;
  }
  .plugin_features_content_list .feature h3 {
    font-size: 13px;
    line-height: 13px;
    margin: 0 0 5px;
  }
  .hg-text-block {
    width: 44%;
  }
  .hg_wp_plugin_banner .hg_banner_img {
    background-size: 325px !important;
  }
  .hg_banner_img {
    height: 110px;
  }
  .hg_wp_plugin_banner {
    height: 110px;
  }
  .hg_wp_plugin_banner p {
    font-size: 11px;
    line-height: 12px;
  }
  .plugin_features_content_list .feature p {
    height: auto;
    font-size: 11px;
    line-height: 12px;
  }
  .plugin_features_content_list .feature.right h3 {
    text-align: right;
  }
  .plugin_homepage_entry p {
    font-size: 12px;
    line-height: 15px;
  }
  .plugin_page_links ul, .theme_features_list .feature {
    width: 100%;
  }
  #plugins_page_primary .plugins_page_head .title {
    font-size: 20px;
    margin: 20px 0 0;
    line-height: 20px;
  }
  #website_development {
    margin-bottom: 5px;
    background-size: 100%;
  }
  .plugin_page_nav .plugin_page_nav_inner ul li a {
    font-size: 8px;
  }
  .plugin_page_nav .plugin_page_nav_inner ul li a:link, .plugin_page_nav .plugin_page_nav_inner ul li a:visited {
    font-size: 8px;
  }
  .plugin_homepage_entry {
    margin: 0 auto 25px;
  }
  .plugin_homepage_entry h1 {
    font-size: 15px;
    margin: 0 0 5px;
  }
  .plugin_homepage_demo_links ul li {
    margin: 0 0 20px;
    text-align: center;
  }
  .plugin_homepage_demo_links ul li:first-child {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .plugin_homepage_demo_links ul li .link_block {
    text-align: center;
    margin-bottom: 20px;
  }
  .plugin_homepage_demo_links ul li h4 {
    font-size: 18px;
    text-align: center;
  }
  .hg_wp_plugin_banner h2 {
    font-size: 15px;
    line-height: 15px;
    margin-top: 6px;
  }
  .hg_wp_plugin_banner h3 {
    font-size: 14px;
  }
  .faq_list ul li h2 {
    font-size: 13px;
    padding-right: 25px;
    margin: 0 0 12px;
    line-height: 17px;
  }
  .faq_list ul li h2:after {
    right: 5px;
    top: 6px;
  }
  #order_website_features ul li {
    min-height: 210px;
  }
  #order_website_features ul li:nth-child(1) {
    padding-top: 2px;
    min-height: 210px;
  }
  #order_website_features ul li:last-child {
    margin-bottom: 15px;
  }
  #order_website_entry .link_block a {
    padding: 0 12px;
    height: 24px;
    font-size: 13px;
    line-height: 24px;
    margin-top: 5px;
  }
  #order_website_entry .link_block a:link, #order_website_entry .link_block a:visited {
    padding: 0 12px;
    height: 24px;
    font-size: 13px;
    line-height: 24px;
    margin-top: 5px;
  }
  .theme_tabs_headings li {
    padding: 0 35%;
  }
  #all_wp_plguins_light .text_block h4 {
    margin: 10px 0 0;
    line-height: 14px;
  }
  .faq_list ul li p {
    font-size: 12px;
    line-height: 1.4;
  }
  .button:visited {
    padding: 0 12px;
    height: 24px;
    font-size: 13px;
    line-height: 24px;
  }
  .link_block .button, .view_details .button {
    padding: 0 12px;
    height: 24px;
    font-size: 13px;
    line-height: 24px;
  }
  .link_block .button:link, .view_details .button:link {
    padding: 0 12px;
    height: 24px;
    font-size: 13px;
    line-height: 24px;
  }
  .plugin_demo_section {
    padding-bottom: 20px;
  }
  #page_primary {
    padding-top: 20px;
  }
  #page_primary h1 {
    font-size: 24px;
    line-height: 24px;
  }
  .content h2:not(.grey_heading) {
    font-size: 20px;
    line-height: 18px;
  }
  #gaming_single_content .entry_wrapper .post_content h1 {
    font-size: 20px;
  }
  .post_content p {
    font-size: 11px;
    line-height: 13px;
  }
  #gaming_single_content .hugebob_ad_banner {
    margin-top: 20px;
  }
  .plugin_page_links ul li a {
    width: 55px;
    height: 55px;
    font-size: 13px;
    line-height: 13px;
    margin: 0 auto;
  }
  .plugin_page_links ul li a:link, .plugin_page_links ul li a:visited {
    width: 55px;
    height: 55px;
    font-size: 13px;
    line-height: 13px;
    margin: 0 auto;
  }
  .plugin_page_links ul li.demo a:before, .plugin_page_links ul li.faq a:before, .plugin_page_links ul li.home a:before, .plugin_page_links ul li.usermanual a:before {
    width: 70px;
    height: 70px;
    position: relative;
    top: -3px;
    left: -2px;
  }
  .plugin_page_links ul li a:before {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  .plugin_page_links ul li.home a:before {
    background-position: -160px -470px;
  }
  .plugin_page_links ul li.demo a:before {
    background-position: -159px -114px;
  }
  .plugin_page_links ul li.faq a:before {
    background-position: -158px -296px;
  }
  .plugin_page_links ul li.usermanual a:before {
    background-position: -160px -380px;
  }
  #mobile_apps_banner {
    height: 140px;
    margin-bottom: 16px;
  }
  #mobile_apps_banner .text_block h1 {
    font-size: 15px;
    line-height: 16px;
  }
  #mobile_apps_banner .text_block h1 .white_thin {
    font-size: 14px;
  }
  #mobile_apps_banner .text_block p {
    font-size: 11px;
    line-height: 12px;
  }
  #mobile_apps_entry_text p {
    font-size: 13px;
    line-height: 15px;
    color: #343030;
  }
  #mobile_apps_list li .text_block {
    margin: 20px 0 0;
  }
  #mobile_apps_list li .text_block h2 {
    font-size: 20px;
    padding-left: 8px;
  }
  #mobile_apps_list li .text_block p {
    font-size: 12px;
    line-height: 14px;
  }
  #gaming_single_content .hugebob_ad_banner .hugebob_info {
    left: 2px;
    height: 105px;
    width: 40%;
  }
  #gaming_single_content .hugebob_ad_banner .hugebob_info h4 {
    font-size: 12px;
    line-height: 17px;
    margin: 0 0 5px;
  }
  #gaming_single_content .hugebob_ad_banner .hugebob_info a {
    line-height: 24px;
    font-size: 12px;
    padding: 0 8px;
    border-radius: 5px;
  }
  #gaming_single_content .hugebob_ad_banner .hugebob_info a:link, #gaming_single_content .hugebob_ad_banner .hugebob_info a:visited {
    line-height: 24px;
    font-size: 12px;
    padding: 0 8px;
    border-radius: 5px;
  }
  #gaming_single_banner {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .button-blue {
    height: 24px;
    font-size: 13px;
    padding: 0 12px;
    line-height: 24px;
  }
  .button-blue:link, .button-blue:visited {
    height: 24px;
    font-size: 13px;
    padding: 0 12px;
    line-height: 24px;
  }
  .button-orange {
    height: 24px;
    font-size: 13px;
    padding: 0 12px;
    line-height: 24px;
  }
  .button-orange:link, .button-orange:visited {
    height: 24px;
    font-size: 13px;
    padding: 0 12px;
    line-height: 24px;
  }
  .plugin_page_links ul li a span, .wp_all_plugins_banner p.semibold {
    font-size: 11px;
  }
  #order_website_features ul li .description, #order_website_features ul li:nth-child(3) .description {
    height: 205px;
  }
  #order_website_features ul li .image_block {
    padding-bottom: 0;
    padding-top: 25px;
  }
  .text_content li {
    line-height: 12px;
    margin-bottom: 0;
    font-size: 10px;
  }
  .text_content ul {
    margin-left: 15px;
  }
  .plugin_features_content_list .feature:nth-child(5) {
    min-height: 200px;
  }
  #post_meta .tags {
    display: inline;
    max-width: 100%;
    margin-bottom: 12px;
  }
  #post_content p a {
    display: block;
    margin: auto;
    text-align: center;
    width: 70%;
  }
  .title_light {
    font-size: 15px;
    line-height: 5px;
    margin-top: 0;
  }
  #seo_contact h4 {
    font-size: 10px;
  }
  #huge_it_search_wrapper h1 {
    line-height: 40px;
    height: 40px;
    font-size: 18px;
  }
  .search_result_article p {
    font-size: 13px;
    line-height: 15px;
  }
  .search_result_article h2 {
    font-size: 15px;
    margin: 0;
  }
  .search_result_article .post_link {
    font-size: 14px;
  }
  .search_result_article .post_link:link, .search_result_article .post_link:visited {
    font-size: 14px;
  }
  .theme_tabs_contents .theme_tab_content.active {
    margin-bottom: 20px;
  }
  .plugin_page_links ul li.usermanual {
    margin-top: 0px;
  }
  .plugin_page_links ul li.forum {
    margin-top: 0px;
  }
  .plugin_page_links ul li.forum a:before {
    background-position: -61px -388px;
  }
}

@media screen and (max-width: 369px) {
  .plugin_page_links ul li.forum {
    margin-top: 25px;
  }
}

@media screen and (max-width: 345px) {
  #gaming_page_slide .image_block {
    -webkit-transform: scale(0.16) !important;
    transform: scale(0.16) !important;
  }
  #games_list ul li .text_block .links_box a {
    margin: 0 3px 0 0;
  }
  #games_list ul li .text_block .links_box a:link, #games_list ul li .text_block .links_box a:visited {
    margin: 0 3px 0 0;
  }
  #games_list ul li .text_block .view_game_block {
    margin-right: 5px;
  }
  .hg_wp_plugin_banner .hg_banner_img {
    background-size: 240px !important;
  }
  .hg-text-block {
    width: 51%;
  }
  .hg_banner_img, .hg_wp_plugin_banner {
    height: 100px;
  }
  #gaming_page_slide .text_block .inner_container {
    margin: 3px auto 0;
  }
  #gaming_page_slide .text_block .inner_container h1 {
    margin: 0 0 1px;
  }
  #mobile_app_single_banner {
    height: 110px;
  }
  #mobile_app_single_content {
    margin-top: 30px;
  }
  .android_banner_link {
    bottom: -32px;
  }
  .widget_box {
    margin: 0 0 50px;
  }
  .plugin_page_nav .plugin_page_nav_inner ul li a {
    padding: 0 0 0 16px;
    font-size: 7px;
  }
  .plugin_page_nav .plugin_page_nav_inner ul li a:link, .plugin_page_nav .plugin_page_nav_inner ul li a:visited {
    padding: 0 0 0 16px;
    font-size: 7px;
  }
  .search_result_article p {
    font-size: 11px;
    line-height: 12px;
  }
  .search_result_article h2 {
    font-size: 14px;
  }
  .search_result_article .post_link {
    font-size: 13px;
  }
  .search_result_article .post_link:link, .search_result_article .post_link:visited {
    font-size: 13px;
  }
  .hg_new_wp_banner .hg_left_img_block {
    height: 53px;
  }
  .hg_right_button_block {
    margin-top: 27px;
  }
  .hg_new_wp_banner {
    margin-bottom: 46px;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center {
    width: 48%;
    margin-right: 1%;
    margin-left: 1%;
  }
  .hg_new_wp_banner .hg_right_button_block {
    float: right;
  }
  .hg_new_wp_banner .hg_new_wp_banner_sub_center span {
    display: none;
  }
}

@media screen and (max-width: 300px) {
  .hg_wp_plugin_banner h2 {
    font-size: 13px;
    line-height: 14px;
  }
  .hg_wp_plugin_banner h3 {
    font-size: 11px;
  }
  .hg_wp_plugin_banner p {
    font-size: 10px;
    line-height: 11px;
  }
  .hg-text-block {
    width: 46%;
  }
  .plugin_page_links ul li {
    width: 55px;
  }
  .plugin_page_links ul li a span {
    font-size: 9px;
  }
}

:root {
  --mdc-theme-primary: #fc3232;
  --mdc-theme-secondary: #3789f4;
}

.mdc-button {
  text-transform: none;
}

.mdc-button.secondary-filled-button:not(:disabled) {
  background-color: var(--mdc-theme-secondary, #fc3232);
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/material-icons/iconfont/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: local("Material Icons"), local("../vendor/material-icons/iconfont/MaterialIcons-Regular"), url(../fonts/material-icons/iconfont/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/material-icons/iconfont/MaterialIcons-Regular.woff) format("woff"), url(../fonts/material-icons/iconfont/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.entry-content img {
  margin: 0 0 24px;
}

.-inline-block {
  display: inline-block;
}

.alignleft, img.alignleft {
  margin-right: 36px;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 20px;
  display: inline;
  float: right;
}

.container, .full-width, article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

.spinner {
  background: url(../images/spinner.gif) no-repeat center center;
  background-size: 20px 20px;
  display: inline-block;
  visibility: hidden;
  vertical-align: middle;
  opacity: 0.7;
  filter: alpha(opacity=70);
  width: 20px;
  height: 20px;
  margin: 4px 10px 0;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.text_section {
  margin-top: 40px;
}

.wp-caption {
  margin-bottom: 24px;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 16px;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

.underline {
  padding-bottom: 7px;
  border-bottom: 3px solid #c92e2e;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

a, abbr, acronym, address, applet, big, blockquote, body, caption, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, iframe, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, ul, var {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

address, body {
  font-style: normal;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}

body {
  font-family: Lato, sans-serif;
  color: #444;
  font-size: 15px;
  background: #fff;
  letter-spacing: 0;
  word-spacing: 0;
  font-weight: 400;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

dl, form, h1, h2, h3, h4, h5, h6, li, ol, p, ul, hr {
  margin: 0;
  padding: 0;
}

#flex-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
}

.size-44 {
  line-height: 44px;
}

.-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.required {
  color: #bf1e2e;
}

.relative {
  position: relative;
}

.container {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1025px) {
  .container {
    width: 1024px;
  }
}

@media (max-width: 1025px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container:after {
  content: '';
  display: block;
  clear: both;
}

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

.full-width {
  width: 100%;
}

.full-width:after {
  content: '';
  display: block;
  clear: both;
}

body.en input, body.en select, body.en textarea {
  font-family: Arial, Helvetica, sans-serif, sans;
}

body.ru input, body.ru select, body.ru textarea {
  font-family: Arial, Helvetica, sans-serif, sans;
}

body.hy input, body.hy select, body.hy textarea {
  font-family: "Arian AMU", "Arian AMU Web", "Arial Unicode Ms", Arial, Helvetica, sans-serif, sans;
}

object {
  outline: 0;
}

.margin-v-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.text_content {
  margin-bottom: 60px;
}

.text_content ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.text_content li {
  line-height: 18px;
  margin-bottom: 12px;
}

.text_content p {
  margin: 0 0 12px;
  text-align: justify;
}

.text_content h6 {
  font-size: 18px;
  margin-bottom: 10px;
}

.text_content h5 {
  font-size: 21px;
  margin-bottom: 10px;
}

.text_content h4 {
  font-size: 26px;
  margin-bottom: 10px;
}

.text_content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.text_content h2 {
  font-size: 32px;
  margin-bottom: 13px;
}

.text_content h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.text_content .half-block {
  width: 47%;
  float: left;
  margin-right: 3%;
  margin-top: 20px;
}

.text_content .page_title {
  font-size: 30px;
  margin-bottom: 40px;
  color: #333030;
}

.hide {
  display: none;
}

.new_line, .show {
  display: block;
}

.clear {
  clear: both;
}

.uppercase {
  text-transform: uppercase;
}

.two-columns li {
  float: left;
  width: 48%;
  margin-right: 1%;
}

.hg_recaptcha_block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

#single_page_primary {
  margin-top: 16px;
}

#single_page_primary .page_title {
  position: relative;
  padding: 0 0 12px;
  margin: 39px 0 35px;
  font-family: 'Open Sans', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 44px;
  color: #1f1d1d;
  text-align: center;
}

#single_page_primary .page_title:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 2px;
  width: 112px;
  background: #b7b7b7;
}

#hg_element {
  position: absolute;
  z-index: 1000;
  width: 304px;
  height: 78px;
}

.android_link, .apple_link, .hugebob_link {
  vertical-align: top;
  background: url(../images/huge-it-template-icons.png) no-repeat;
}

.button-grey:hover:after {
  top: 0;
  width: 0;
  height: 0;
}

.hugebob_link {
  position: relative;
  display: inline-block;
  width: 95px;
  height: 31px;
  background-position: 0 -832px;
}

.android_link, .apple_link, .flash_link {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
}

.android_link {
  background-position: 0 -892px;
}

.apple_link {
  background-position: -34px -892px;
}

.flash_link {
  vertical-align: top;
  background-image: url(../images/huge-it-template-icons.png);
  background-repeat: no-repeat;
  background-position: -68px -892px;
}

.android_link_big {
  position: relative;
  vertical-align: top;
  width: 164px;
  height: 49px;
  background-image: url(../images/huge-it-template-icons.png);
  background-repeat: no-repeat;
  display: inline-block;
}

.apple_link_big {
  position: relative;
  vertical-align: top;
  width: 164px;
  height: 49px;
  background-image: url(../images/huge-it-template-icons.png);
  background-repeat: no-repeat;
  display: inline-block;
  background-position: -2px -1033px;
}

.android_link_big {
  background-position: -2px -1087px;
}

#main_logo a img, .four_column_list li, .share_game_section .share_buttons img {
  vertical-align: middle;
}

.android_banner_link {
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: 237px;
  height: 72px;
  border-radius: 10px;
  background: url(../images/huge-it-template-icons.png) 0 -952px no-repeat #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#wordpress_plugins {
  margin: 0;
}

#joomla_plugins {
  margin-top: 2px;
}

#live_support {
  position: absolute;
  display: block;
  top: 140px;
  right: 3%;
  width: 80px;
  height: 80px;
  background: 0 0;
  z-index: 90000;
}

#live_support .inner_blob {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
}

#live_support button .hover_text, #live_support button:after {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
}

#live_support .inner_blob {
  display: block;
  top: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
  border: 1px solid #9A202C;
  border-radius: 100%;
  -webkit-animation-name: pulse_animation;
  animation-name: pulse_animation;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: none;
  animation-fill-mode: none;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

#live_support.active .inner_blob {
  border-color: #7cc576;
}

#live_support:hover .inner_blob {
  -webkit-animation-name: none;
  animation-name: none;
}

#live_support button {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  width: 50px;
  height: 50px;
  background: #9A202C;
  border-radius: 100%;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  cursor: pointer;
}

#live_support button:link, #live_support button:visited {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  width: 50px;
  height: 50px;
  background: #9A202C;
  border-radius: 100%;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  cursor: pointer;
}

#live_support button:active, #live_support button:focus, #live_support button:hover {
  outline: 0;
}

#live_support.active button {
  background: #7cc576;
}

#live_support.active button:link, #live_support.active button:visited {
  background: #7cc576;
}

#live_support:hover button {
  width: 80px;
  height: 80px;
}

#live_support button .hover_text {
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  padding: 0;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background: 0 0;
}

#live_support.active button .hover_text {
  padding-top: 0;
}

#live_support:hover button .hover_text {
  -webkit-transition: opacity .3s .3s;
  transition: opacity .3s .3s;
  opacity: 1;
  filter: alpha(opacity=100);
}

#live_support button:after {
  content: '';
  display: inline-block;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 17px;
  background: url(../images/huge-it-template-icons.png) 0 -156px no-repeat;
  -webkit-transition: opacity .3s ease .3s;
  -webkit-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
}

#live_support:hover button:after {
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  opacity: 0;
  filter: alpha(opacity=0);
}

@-webkit-keyframes pulse_animation {
  0%,
  100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
}

@keyframes pulse_animation {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

#back-to-top-button {
  position: absolute;
  width: 33px;
  height: 33px;
  right: 5%;
  bottom: 30px;
  background: url("../images/go.to.top.png") left top no-repeat;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  z-index: 10;
}

#back-to-top-button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

/*NEW FOOTER*/
#footer {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  padding: 18px 0px 30px 0px;
  background: #000;
}

#footer .footer_navigation {
  position: relative;
  width: 100%;
  margin-bottom: 95px;
}

#footer .footer_navigation .footer_inline_navigation {
  display: table;
  position: relative;
  margin: 0px auto;
  text-align: center;
}

#footer .footer_navigation .footer_inline_navigation li {
  display: inline-block;
  position: relative;
  margin: 0px 25px 0px 25px;
}

#footer .footer_navigation .footer_inline_navigation li.logo-block {
  width: 145px;
  height: 65px;
  top: 28px;
}

#footer .footer_navigation .footer_inline_navigation li.logo-block a {
  display: block;
  font-size: 17px;
  font-family: "Nunito Regular";
}

#footer .footer_navigation .footer_inline_navigation li.logo-block a img {
  width: 145px;
  height: 65px;
}

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

#footer .footer_navigation .footer_inline_navigation li a:hover {
  color: #e53935;
  text-decoration: none;
}

#footer .footer-bottom .social_icons {
  display: table;
  position: relative;
  margin: 0px auto;
}

#footer .footer-bottom .social_icons li {
  display: inline-block;
  position: relative;
}

#footer .footer-bottom .social_icons li a {
  display: block;
  width: 38px;
  height: 38px;
  background-image: url("../images/social_icons.png");
  background-repeat: no-repeat;
  margin: 0px 4px 0px 4px;
}

#footer .footer-bottom .social_icons li a.facebook_link {
  background-position: 0px 0px;
}

#footer .footer-bottom .social_icons li a.facebook_link:hover {
  background-position: 0px -51px;
}

#footer .footer-bottom .social_icons li a.twitter_link {
  background-position: -113px 0px;
}

#footer .footer-bottom .social_icons li a.twitter_link:hover {
  background-position: -113px -51px;
}

#footer .footer-bottom .social_icons li a.google_link {
  background-position: -173px 0px;
}

#footer .footer-bottom .social_icons li a.google_link:hover {
  background-position: -173px -51px;
}

#footer .footer-bottom .social_icons li a.youtube_link {
  background-position: -54px 0px;
}

#footer .footer-bottom .social_icons li a.youtube_link:hover {
  background-position: -54px -51px;
}

#footer .footer-bottom .social_icons li a.pinterest_link {
  background-position: -230px 0px;
}

#footer .footer-bottom .social_icons li a.pinterest_link:hover {
  background-position: -230px -51px;
}

#footer .footer-bottom .footer_rights {
  padding: 10px 0px 0px 0px;
  text-align: center;
}

#footer .footer-bottom .footer_rights span {
  color: #b2b2b2;
  font-size: 13px;
  font-family: "OpenSans";
}

@media (max-width: 1300px) {
  #footer .footer_navigation {
    margin-bottom: 15px;
  }
  #footer .footer_navigation .footer_inline_navigation {
    padding-top: 75px;
  }
  #footer .footer_navigation .footer_inline_navigation li {
    margin: 0px 14px 0px 14px;
  }
  #footer .footer_navigation .footer_inline_navigation li.logo-block {
    position: absolute;
    width: 138px;
    height: 61px;
    top: 0px;
    left: calc(50% - 78px);
  }
  #footer .footer_navigation .footer_inline_navigation li.logo-block a img {
    width: 138px;
    height: 61px;
  }
  #footer .footer_navigation .footer_inline_navigation li a {
    line-height: 33px;
    font-size: 16px;
  }
}

#colophon {
  position: relative;
  float: left;
  width: 100%;
  height: 33px;
  background: url(../images/footer_colophon.jpg) no-repeat;
  background-size: cover;
}

#huge_it_portfolio {
  padding-top: 52px;
  border-top: 1px solid #ccc;
  background: #e5e5e5;
}

#huge_it_portfolio h2 {
  position: relative;
  width: 100%;
  margin: 0 0 28px;
  padding: 0 0 24px;
  border-bottom: 1px solid #ccc;
  font-size: 45px;
  color: #231f20;
  text-align: center;
  line-height: 52px;
  text-transform: uppercase;
}

#huge_it_portfolio h2 .red_bold {
  font-weight: 700;
  color: #bf1e2e;
}

#huge_it_portfolio ul {
  margin-left: 1px;
  list-style-type: none;
}

#huge_it_portfolio ul li {
  position: relative;
  float: left;
  display: block;
  width: 496px;
  margin-right: 30px;
  margin-bottom: 31px;
  overflow: hidden;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

#huge_it_portfolio ul li.last {
  margin-right: 0;
}

#huge_it_portfolio ul li .image_box img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}

#huge_it_portfolio ul li .description_box {
  position: absolute;
  left: calc(-100% + 7px);
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(191, 30, 46, 0.9);
  background-repeat: no-repeat;
  -webkit-transition: left .2s linear;
  -webkit-transition: left 0.2s linear;
  transition: left 0.2s linear;
}

#huge_it_portfolio ul li:hover .description_box {
  left: 0;
}

#huge_it_portfolio ul li .description_box:after {
  content: '';
  display: block;
  position: absolute;
  left: 100%;
  top: calc(50% - 38px);
  top: -moz-calc(50% - 38px);
  width: 12px;
  height: 67px;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  background-image: url(../images/huge-it-template-icons.png);
  background-position: -26px -156px;
}

#huge_it_portfolio ul li .description_box h3 {
  margin: 38px 0 0 43px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
}

#huge_it_portfolio ul li .description_box .view_more {
  position: absolute;
  display: block;
  right: 26px;
  bottom: 85px;
  height: 52px;
  padding: 0 14px;
  line-height: 52px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 50px;
  color: #231f20;
  text-decoration: none;
}

#huge_it_portfolio ul li .description_box .view_more:link, #huge_it_portfolio ul li .description_box .view_more:visited {
  position: absolute;
  display: block;
  right: 26px;
  bottom: 85px;
  height: 52px;
  padding: 0 14px;
  line-height: 52px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 50px;
  color: #231f20;
  text-decoration: none;
}

#huge_it_portfolio ul li .description_box .view_more:active, #huge_it_portfolio ul li .description_box .view_more:focus, #huge_it_portfolio ul li .description_box .view_more:hover {
  text-decoration: none;
}

#huge_it_portfolio ul li .description_box .visite_site {
  position: absolute;
  display: block;
  right: 26px;
  bottom: 23px;
  height: 52px;
  padding: 0 14px;
  line-height: 52px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #231f20;
  text-decoration: none;
}

#huge_it_portfolio ul li .description_box .visite_site:link, #huge_it_portfolio ul li .description_box .visite_site:visited {
  position: absolute;
  display: block;
  right: 26px;
  bottom: 23px;
  height: 52px;
  padding: 0 14px;
  line-height: 52px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: #231f20;
  text-decoration: none;
}

#huge_it_portfolio ul li .description_box .visite_site:active, #huge_it_portfolio ul li .description_box .visite_site:focus, #huge_it_portfolio ul li .description_box .visite_site:hover {
  text-decoration: none;
}

#top_plugins_section {
  padding: 45px 0 54px;
}

#top_plugins_inner a {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

#top_plugins_inner a:link, #top_plugins_inner a:visited {
  display: inline-block;
  color: #000;
  text-decoration: none;
}

#top_plugins_inner h2 {
  display: block;
  position: relative;
  margin: 0 0 17px;
  font-family: 'Open Sans', sans-serif;
  font-size: 50px;
  color: #000;
  font-weight: 400;
}

#top_plugins_inner ul {
  position: relative;
  list-style-type: none;
}

#top_plugins_inner ul li {
  position: relative;
  float: left;
  display: block;
  width: 300px;
  height: 240px;
  margin-right: 62px;
}

#top_plugins_inner ul li:hover:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
}

#top_plugins_inner ul li:last-child {
  margin-right: 0;
}

#top_plugins_inner ul li a {
  display: block;
  position: absolute;
  right: 1px;
  width: 61px;
  height: 117px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  overflow: hidden;
}

#top_plugins_inner ul li a:link, #top_plugins_inner ul li a:visited {
  display: block;
  position: absolute;
  right: 1px;
  width: 61px;
  height: 117px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: all .218s linear;
  transition: all .218s linear;
  overflow: hidden;
}

#top_plugins_inner ul li a:active, #top_plugins_inner ul li a:focus, #top_plugins_inner ul li a:hover {
  background: rgba(255, 255, 255, 0.4);
}

#top_plugins_inner ul li .wp_link {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  top: 2px;
}

#top_plugins_inner ul li .wp_link:link, #top_plugins_inner ul li .wp_link:visited {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  top: 2px;
}

#top_plugins_inner ul li .joomla_link {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  bottom: 2px;
}

#top_plugins_inner ul li .joomla_link:link, #top_plugins_inner ul li .joomla_link:visited {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  bottom: 2px;
}

#top_plugins_inner ul li .joomla_link:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url(../images/huge-it-template-icons.png);
}

#top_plugins_inner ul li .wp_link:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url(../images/huge-it-template-icons.png);
  background-position: 0 -722px;
}

#top_plugins_inner ul li .joomla_link:after {
  background-position: 0 -769px;
}

.four_column_list li:before, .huge_it_list li:before {
  top: 3px;
  height: 13px;
  background: url(../images/huge-it-template-icons.png) 0 -817px no-repeat;
  left: 0;
  content: "";
}

#page_primary {
  padding-top: 49px;
}

#page_primary h1 {
  position: relative;
  display: block;
  margin: 0 0 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 45px;
  color: #bf1e2e;
  text-align: center;
  line-height: 52px;
  text-transform: uppercase;
}

.four_column_list li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 19px;
  color: #232323;
}

.huge_it_list {
  padding-left: 15px;
  margin: 15px 0;
  list-style-type: none;
  text-align: left;
}

.huge_it_list li {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 19px;
  color: #232323;
  position: relative;
  margin: 8px 0;
  padding-left: 11px;
  font-size: 16px;
  text-align: left;
}

.huge_it_list li:before {
  position: absolute;
  display: block;
  width: 4px;
}

.center_text {
  text-align: center !important;
  margin-bottom: 18px !important;
}

.parted {
  margin-bottom: 29px !important;
}

.four_column_list {
  position: relative;
  padding: 0;
  margin: 0 0 55px;
  font-size: 0;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.four_column_list li {
  position: relative;
  display: inline-block;
  width: calc(33.3% - 11px);
  margin: 0 0 6px;
  padding-left: 11px;
  font-size: 16px;
  text-align: left;
}

#primary_404 .inner_wrapper p, .grey_heading {
  font-family: "Open Sans", sans-serif;
}

.four_column_list li:before {
  position: absolute;
  display: block;
  width: 4px;
}

.grey_heading {
  display: block;
  position: relative;
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  color: #acacac;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}

#primary_404 {
  height: 540px;
  text-align: center;
  background: url(../images/404.jpg) center center no-repeat;
}

#primary_404 .eyes {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 62px;
  width: 227px;
  height: 109px;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

#primary_404 .eyes .left, #primary_404 .eyes .right {
  border-radius: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, #020202));
  background-image: linear-gradient(to bottom, transparent 0, #020202 0);
  background-repeat: no-repeat;
  position: absolute;
}

#primary_404 .eyes .left {
  left: 0;
  top: 0;
  width: 111px;
  height: 105px;
  -webkit-animation: blink_left 3s ease infinite;
  animation: blink_left 3s ease infinite;
  background-position: 0 -105px;
}

#primary_404 .eyes .right {
  right: 0;
  top: 9px;
  width: 108px;
  height: 100px;
  -webkit-animation: blink_right 3s ease infinite;
  animation: blink_right 3s ease infinite;
  background-position: 0 -105px;
}

#primary_404 .inner_wrapper {
  position: absolute;
  bottom: 60px;
}

#primary_404 .inner_wrapper p {
  font-size: 22px;
  font-weight: 300;
  color: #000;
  line-height: 25px;
}

@-webkit-keyframes blink_left {
  0%,
  100%,
  12%,
  18%,
  8% {
    background-position: 0 -105px;
  }
  14%,
  4% {
    background-position: 0 0;
  }
}

@keyframes blink_left {
  0%,
  100%,
  12%,
  18%,
  8% {
    background-position: 0 -105px;
  }
  14%,
  4% {
    background-position: 0 0;
  }
}

@-webkit-keyframes blink_right {
  0%,
  100%,
  12%,
  18%,
  8% {
    background-position: 0 -105px;
  }
  14%,
  4% {
    background-position: 0 0;
  }
}

@keyframes blink_right {
  0%,
  100%,
  12%,
  18%,
  8% {
    background-position: 0 -105px;
  }
  14%,
  4% {
    background-position: 0 0;
  }
}

#post_meta .share_buttons .s_button span, .share_game_section .share_buttons .s_button span {
  border-right: 1px solid #cacaca;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.hotlink {
  color: #bf1e2e;
  text-decoration: none;
}

.hotlink:link, .hotlink:visited {
  color: #bf1e2e;
  text-decoration: none;
}

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

.share_game_section .share_buttons {
  font-size: 0;
  padding-bottom: 28px;
  display: table;
  margin: 0 auto;
}

.share_game_section .share_buttons .s_button {
  float: left;
  margin: 0 20px 0 0;
  font-size: 0;
}

.share_game_section .share_buttons .s_button span {
  display: inline-block;
  height: 22px;
  padding: 0 10px;
  background: #f8f8f8;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
  color: #a3a3a3;
}

#post_content p, #post_date, #post_meta .tags, #post_title {
  font-family: Lato, sans-serif;
}

.share_game_section .share_buttons .s_button a {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 24px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  font-size: 13px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.share_game_section .share_buttons .s_button a:link, .share_game_section .share_buttons .s_button a:visited {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 24px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  font-size: 13px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.share_game_section .share_buttons .s_button a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(../images/huge-it-template-icons.png);
}

.share_game_section .share_buttons .fb_share a {
  background-color: #39579a;
}

.share_game_section .share_buttons .fb_share a:link, .share_game_section .share_buttons .fb_share a:visited {
  background-color: #39579a;
}

.share_game_section .share_buttons .fb_share a:active, .share_game_section .share_buttons .fb_share a:focus, .share_game_section .share_buttons .fb_share a:hover {
  background-color: #4869B3;
}

.share_game_section .share_buttons .fb_share a:after {
  width: 7px;
  height: 14px;
  background-position: -275px -274px;
}

.share_game_section .share_buttons .twitter_share a {
  background-color: #27bffc;
}

.share_game_section .share_buttons .twitter_share a:link, .share_game_section .share_buttons .twitter_share a:visited {
  background-color: #27bffc;
}

.share_game_section .share_buttons .twitter_share a:active, .share_game_section .share_buttons .twitter_share a:focus, .share_game_section .share_buttons .twitter_share a:hover {
  background-color: #1998CC;
}

.share_game_section .share_buttons .twitter_share a:after {
  width: 16px;
  height: 12px;
  background-position: -266px -289px;
}

.share_game_section .share_buttons .google_plus_share a {
  background-color: #f54633;
}

.share_game_section .share_buttons .google_plus_share a:link, .share_game_section .share_buttons .google_plus_share a:visited {
  background-color: #f54633;
}

.share_game_section .share_buttons .google_plus_share a:active, .share_game_section .share_buttons .google_plus_share a:focus, .share_game_section .share_buttons .google_plus_share a:hover {
  background-color: #E42B16;
}

.share_game_section .share_buttons .google_plus_share a:after {
  width: 20px;
  height: 12px;
  background-position: -262px -302px;
}

.share_game_section .share_buttons .pinterest_share a {
  background-color: #d9282e;
}

.share_game_section .share_buttons .pinterest_share a:link, .share_game_section .share_buttons .pinterest_share a:visited {
  background-color: #d9282e;
}

.share_game_section .share_buttons .pinterest_share a:active, .share_game_section .share_buttons .pinterest_share a:focus, .share_game_section .share_buttons .pinterest_share a:hover {
  background-color: #EF454A;
}

.share_game_section .share_buttons .pinterest_share a:after {
  width: 13px;
  height: 13px;
  background-position: -269px -315px;
}

#post_title {
  position: relative;
  display: block;
  margin: 0 0 8px;
  padding: 0;
  font-size: 36px;
  color: #4f4d4d;
  text-align: left;
}

#post_date {
  position: relative;
  display: block;
  float: left;
  margin: 0 15px 10px 0;
  font-size: 14px;
  color: #313131;
  line-height: 21px;
  text-align: left;
}

#post_content {
  margin: 0 0 0 7px;
}

#post_content p {
  margin: 0 0 16px;
  font-size: 16px;
  color: #313131;
  line-height: 31px;
}

#post_meta {
  position: relative;
  display: block;
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}

#post_meta .tags {
  position: relative;
  float: left;
  max-width: calc(100% - 340px);
  font-size: 0;
  font-style: italic;
  color: #999;
}

#post_meta .tags a {
  font-family: Lato, sans-serif;
  font-style: italic;
  color: #999;
  text-decoration: none;
}

#post_meta .tags a:link, #post_meta .tags a:visited {
  font-family: Lato, sans-serif;
  font-style: italic;
  color: #999;
  text-decoration: none;
}

#post_meta .tags a:active, #post_meta .tags a:focus, #post_meta .tags a:hover {
  text-decoration: none;
}

#post_meta .share_buttons {
  position: relative;
  float: right;
  width: 340px;
}

#post_meta .share_buttons .s_button {
  float: left;
  margin: 0 20px 0 0;
  font-size: 0;
}

#post_meta .share_buttons .s_button.pinterest_share {
  margin: 0;
}

#post_meta .share_buttons img {
  vertical-align: middle;
}

#post_meta .share_buttons .s_button span {
  display: inline-block;
  height: 22px;
  padding: 0 10px;
  background: #f8f8f8;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
  color: #a3a3a3;
}

#commentform label {
  font-family: 'Open Sans', sans-serif;
  line-height: 15px;
  color: #999;
}

#post_meta .share_buttons .s_button a {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 24px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  font-size: 13px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

#post_meta .share_buttons .s_button a:link, #post_meta .share_buttons .s_button a:visited {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 24px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  font-size: 13px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

#post_meta .share_buttons .s_button a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(../images/huge-it-template-icons.png);
}

#post_meta .share_buttons .fb_share a {
  background-color: #39579a;
}

#post_meta .share_buttons .fb_share a:link, #post_meta .share_buttons .fb_share a:visited {
  background-color: #39579a;
}

#post_meta .share_buttons .fb_share a:active, #post_meta .share_buttons .fb_share a:focus, #post_meta .share_buttons .fb_share a:hover {
  background-color: #4869B3;
}

#post_meta .share_buttons .fb_share a:after {
  width: 7px;
  height: 14px;
  background-position: -275px -274px;
}

#post_meta .share_buttons .twitter_share a {
  background-color: #27bffc;
}

#post_meta .share_buttons .twitter_share a:link, #post_meta .share_buttons .twitter_share a:visited {
  background-color: #27bffc;
}

#post_meta .share_buttons .twitter_share a:active, #post_meta .share_buttons .twitter_share a:focus, #post_meta .share_buttons .twitter_share a:hover {
  background-color: #1998CC;
}

#post_meta .share_buttons .twitter_share a:after {
  width: 16px;
  height: 12px;
  background-position: -266px -289px;
}

#post_meta .share_buttons .google_plus_share a {
  background-color: #f54633;
}

#post_meta .share_buttons .google_plus_share a:link, #post_meta .share_buttons .google_plus_share a:visited {
  background-color: #f54633;
}

#post_meta .share_buttons .google_plus_share a:active, #post_meta .share_buttons .google_plus_share a:focus, #post_meta .share_buttons .google_plus_share a:hover {
  background-color: #E42B16;
}

#post_meta .share_buttons .google_plus_share a:after {
  width: 19px;
  height: 12px;
  background-position: -263px -302px;
}

#post_meta .share_buttons .pinterest_share a {
  background-color: #d9282e;
}

#post_meta .share_buttons .pinterest_share a:link, #post_meta .share_buttons .pinterest_share a:visited {
  background-color: #d9282e;
}

#post_meta .share_buttons .pinterest_share a:active, #post_meta .share_buttons .pinterest_share a:focus, #post_meta .share_buttons .pinterest_share a:hover {
  background-color: #EF454A;
}

#post_meta .share_buttons .pinterest_share a:after {
  width: 13px;
  height: 13px;
  background-position: -269px -315px;
}

#post_meta .tags span {
  font-size: 14px;
}

#reply-title {
  margin: 0 0 31px;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: #313131;
  line-height: 19px;
}

#commentform label {
  display: block;
  margin: 8px 0;
  font-style: italic;
  font-size: 14px;
  height: 15px;
}

#commentform .required {
  color: #bf1e2e;
}

#commentform .form-submit {
  margin: 21px 0 100px;
  text-align: center;
}

.huge_it_recent_posts ul {
  list-style-type: none;
}

.huge_it_recent_posts ul li {
  display: block;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #dedede;
  overflow: auto;
}

.huge_it_recent_posts ul li:last-child {
  border: none;
  margin: 0;
  padding: 0;
}

.huge_it_recent_posts .image_link {
  position: relative;
  display: block;
  float: left;
  margin: 0 20px 0 0;
}

.huge_it_recent_posts .image_link:link, .huge_it_recent_posts .image_link:visited {
  position: relative;
  display: block;
  float: left;
  margin: 0 20px 0 0;
}

.huge_it_recent_posts .image_link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  opacity: 0;
}

.huge_it_recent_posts .image_link:hover:before {
  opacity: 1;
}

.huge_it_recent_posts ul li img {
  vertical-align: middle;
}

.huge_it_recent_posts ul li .title_link {
  display: block;
  margin: 1px 0 15px;
  color: #313131;
  text-decoration: none;
}

.huge_it_recent_posts ul li .title_link:link, .huge_it_recent_posts ul li .title_link:visited {
  display: block;
  margin: 1px 0 15px;
  color: #313131;
  text-decoration: none;
}

.huge_it_recent_posts ul li .title_link:active, .huge_it_recent_posts ul li .title_link:focus, .huge_it_recent_posts ul li .title_link:hover {
  text-decoration: none;
}

.huge_it_recent_posts ul li h4 {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #313131;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.huge_it_recent_posts ul li time {
  display: block;
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 12px;
  color: #999;
  line-height: 12px;
}

#huge_it_search_primary {
  border-top: 3px solid #900;
}

#huge_it_search_wrapper h1 {
  margin: 0 0 39px;
  height: 54px;
  background: #c00;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  color: #fff;
  text-indent: 9px;
  line-height: 54px;
}

.search_result_article {
  position: relative;
  margin: 0 0 26px;
  padding: 0 0 26px;
  overflow: hidden;
  border-bottom: 1px solid #d9d9d9;
}

.search_result_article img {
  float: left;
  width: 126px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 11px 0 1px;
  border: 1px solid #dbdbdb;
}

.search_result_article h2 {
  margin: 0 0 6px;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 18px;
  color: #bf1e2e;
  line-height: 20px;
}

.search_result_article p {
  margin: 0;
  height: 82px;
  overflow: hidden;
  font-family: 'Roboto Light', sans-serif;
  font-size: 16px;
  color: #7c7c7c;
  line-height: 20px;
}

.search_result_article .post_link {
  display: inline-block;
  position: absolute;
  bottom: 8px;
  right: 18px;
  padding-right: 21px;
  font-family: 'Roboto Light', sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 18px;
  text-decoration: none;
}

.search_result_article .post_link:link, .search_result_article .post_link:visited {
  display: inline-block;
  position: absolute;
  bottom: 8px;
  right: 18px;
  padding-right: 21px;
  font-family: 'Roboto Light', sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 18px;
  text-decoration: none;
}

.navigation.pagination .nav-links, .navigation.pagination h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
}

.search_result_article .post_link:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
  width: 13px;
  height: 13px;
  background: url(../images/huge-it-template-icons.png) -63px -255px no-repeat;
}

.navigation.pagination {
  margin: 34px 0 116px;
}

.navigation.pagination h2 {
  margin: 0 0 20px;
  line-height: 1;
  color: #7a7979;
}

.navigation.pagination .current, .navigation.pagination .dots {
  position: relative;
  line-height: 32px;
  margin: 0 9px 0 0;
  height: 32px;
  display: block;
  float: left;
}

.navigation.pagination a {
  position: relative;
  line-height: 32px;
  margin: 0 9px 0 0;
  height: 32px;
  display: block;
  float: left;
}

.navigation.pagination a:link, .navigation.pagination a:visited {
  position: relative;
  line-height: 32px;
  margin: 0 9px 0 0;
  height: 32px;
  display: block;
  float: left;
}

.navigation.pagination .nav-links {
  color: #535553;
}

.navigation.pagination .current {
  background: #d1d1d1;
  padding: 0 12px;
}

.navigation.pagination a {
  padding: 0 12px;
  background: #f8f8f8;
  color: #535553;
  text-decoration: none;
}

.navigation.pagination a:link, .navigation.pagination a:visited {
  padding: 0 12px;
  background: #f8f8f8;
  color: #535553;
  text-decoration: none;
}

.navigation.pagination a:active, .navigation.pagination a:focus, .navigation.pagination a:hover {
  text-decoration: none;
}

.navigation.pagination .next:after, .navigation.pagination .prev:after {
  position: absolute;
  top: 12px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
}

.navigation.pagination .next {
  display: block;
  float: left;
  height: 32px;
  width: 31px;
  padding: 0;
  margin: 0;
  background: #323332;
}

.navigation.pagination .next:link, .navigation.pagination .next:visited {
  display: block;
  float: left;
  height: 32px;
  width: 31px;
  padding: 0;
  margin: 0;
  background: #323332;
}

.navigation.pagination .next:after {
  display: block;
  right: 12px;
  width: 8px;
  height: 8px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
}

.navigation.pagination .prev {
  display: inline-block;
  width: 31px;
  height: 32px;
  padding: 0;
  background: #323332;
}

.navigation.pagination .prev:link, .navigation.pagination .prev:visited {
  display: inline-block;
  width: 31px;
  height: 32px;
  padding: 0;
  background: #323332;
}

.navigation.pagination .prev:after {
  display: block;
  left: 12px;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.page_share_buttons_big_count {
  padding: 54px 0;
  font-size: 0;
  text-align: center;
}

.page_share_buttons_big_count .s_button {
  display: inline-block;
  margin: 0 31px 0 0;
  font-size: 0;
}

.page_share_buttons_big_count .s_button:last-child {
  margin: 0;
}

.page_share_buttons_big_count .s_button span {
  display: inline-block;
  height: 35px;
  padding: 0 15px;
  background: #f8f8f8;
  border-top: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  vertical-align: top;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  color: #a3a3a3;
}

.faq_list ul li h2, .plugin_faq_content h1, .user_manual_title {
  font-family: 'Open Sans', sans-serif;
  color: #5c5959;
  font-weight: 300;
}

.page_share_buttons_big_count .s_button a {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 37px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  font-size: 13px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.page_share_buttons_big_count .s_button a:link, .page_share_buttons_big_count .s_button a:visited {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 37px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  font-size: 13px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.page_share_buttons_big_count .s_button a:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-image: url(../images/huge-it-template-icons.png);
}

.page_share_buttons_big_count .fb_share a {
  background-color: #39579a;
}

.page_share_buttons_big_count .fb_share a:link, .page_share_buttons_big_count .fb_share a:visited {
  background-color: #39579a;
}

.page_share_buttons_big_count .fb_share a:active, .page_share_buttons_big_count .fb_share a:focus, .page_share_buttons_big_count .fb_share a:hover {
  background-color: #4869B3;
}

.page_share_buttons_big_count .fb_share a:after {
  width: 11px;
  height: 22px;
  background-position: -271px -189px;
}

.page_share_buttons_big_count .twitter_share a {
  background-color: #1fb1ed;
}

.page_share_buttons_big_count .twitter_share a:link, .page_share_buttons_big_count .twitter_share a:visited {
  background-color: #1fb1ed;
}

.page_share_buttons_big_count .twitter_share a:active, .page_share_buttons_big_count .twitter_share a:focus, .page_share_buttons_big_count .twitter_share a:hover {
  background-color: #1998CC;
}

.page_share_buttons_big_count .twitter_share a:after {
  width: 24px;
  height: 19px;
  background-position: -258px -213px;
}

.page_share_buttons_big_count .google_plus_share a {
  background-color: #f54633;
}

.page_share_buttons_big_count .google_plus_share a:link, .page_share_buttons_big_count .google_plus_share a:visited {
  background-color: #f54633;
}

.page_share_buttons_big_count .google_plus_share a:active, .page_share_buttons_big_count .google_plus_share a:focus, .page_share_buttons_big_count .google_plus_share a:hover {
  background-color: #E42B16;
}

.page_share_buttons_big_count .google_plus_share a:after {
  width: 29px;
  height: 19px;
  background-position: -253px -233px;
}

.page_share_buttons_big_count .pinterest_share a {
  background-color: #d9282e;
}

.page_share_buttons_big_count .pinterest_share a:link, .page_share_buttons_big_count .pinterest_share a:visited {
  background-color: #d9282e;
}

.page_share_buttons_big_count .pinterest_share a:active, .page_share_buttons_big_count .pinterest_share a:focus, .page_share_buttons_big_count .pinterest_share a:hover {
  background-color: #EF454A;
}

.page_share_buttons_big_count .pinterest_share a:after {
  width: 20px;
  height: 20px;
  background-position: -262px -253px;
}

.faq_list .column, .faq_list ul li {
  position: relative;
  padding: 0;
  width: 500px;
}

#wp_plugin_faq_wrapper .plugin_page_links {
  margin-bottom: 41px;
}

.plugin_faq_content h1, .user_manual_title {
  position: relative;
  margin: 0 0 47px;
  font-size: 36px;
  line-height: 41px;
  text-align: left;
}

.faq_list {
  font-size: 0;
}

.faq_list .column {
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
}

.faq_list .column:nth-child(1) {
  margin-right: 24px;
}

.faq_list ul {
  list-style-type: none;
}

.faq_list ul li {
  display: block;
  border-bottom: 1px solid #dbdad8;
  margin: 0 0 23px;
}

.faq_list ul li h2 {
  margin: 0 0 21px;
  padding-right: 40px;
  font-size: 18px;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq_list ul li h2:after {
  content: '';
  display: block;
  position: absolute;
  right: 21px;
  top: 9px;
  width: 17px;
  height: 10px;
  background: url(../images/huge-it-template-icons.png) -265px -1126px;
}

.faq_list ul li.active h2:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq_list ul li p {
  display: none;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
}

#wp_plugin_faq_wrapper .wp_all_plugins_banner {
  margin-bottom: 73px;
}

.plugin_manual_wrapper {
  margin-top: 30px;
  margin-bottom: 150px;
  position: relative;
}

.plugin_manual_wrapper .manual_navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 108px;
  padding-right: 15px;
}

.plugin_manual_wrapper .manual_navigation ul {
  position: relative;
  display: table;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.plugin_manual_wrapper .manual_navigation ul li {
  position: relative;
  display: table;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.plugin_manual_wrapper .manual_navigation a {
  position: relative;
  display: block;
  height: 35px;
  width: 103px;
  float: left;
  margin-bottom: 20px;
  white-space: nowrap;
  background: #7cc576;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 18px;
  color: #feffff;
  text-align: center;
  line-height: 35px;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  text-decoration: none;
  border-radius: 3px;
}

.plugin_manual_wrapper .manual_navigation a:link, .plugin_manual_wrapper .manual_navigation a:visited {
  position: relative;
  display: block;
  height: 35px;
  width: 103px;
  float: left;
  margin-bottom: 20px;
  white-space: nowrap;
  background: #7cc576;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 18px;
  color: #feffff;
  text-align: center;
  line-height: 35px;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  text-decoration: none;
  border-radius: 3px;
}

.plugin_manual_wrapper .manual_navigation a:active, .plugin_manual_wrapper .manual_navigation a:focus, .plugin_manual_wrapper .manual_navigation a:hover {
  text-decoration: none;
}

.plugin_manual_wrapper .manual_navigation a.active {
  background: #00508a;
}

.plugin_manual_wrapper .manual_navigation a.active:link, .plugin_manual_wrapper .manual_navigation a.active:visited {
  background: #00508a;
}

.plugin_manual_wrapper .manual_navigation a.active:before {
  border-color: transparent transparent transparent #00508a;
}

.plugin_manual_wrapper .manual_navigation a:before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent #7cc576;
}

.plugin_manual_wrapper .manual_navigation a.substep {
  display: none;
  height: 25px;
  width: 80px;
  float: right;
  font-size: 13px;
  line-height: 25px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.plugin_manual_wrapper .manual_navigation a.substep:link, .plugin_manual_wrapper .manual_navigation a.substep:visited {
  display: none;
  height: 25px;
  width: 80px;
  float: right;
  font-size: 13px;
  line-height: 25px;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.plugin_manual_wrapper .manual_navigation a.active ~ ul.sub a.substep {
  display: block;
}

.plugin_manual_wrapper .manual_navigation a.inactive {
  display: none;
}

.plugin_manual_wrapper .manual_navigation a.substep:before {
  top: 8px;
  right: -10px;
  border-width: 5px 0 5px 10px;
}

.plugin_manual_wrapper .manual_content {
  margin-left: 118px;
  padding-left: 21px;
  border-left: 1px solid #dad9d7;
}

.plugin_manual_wrapper .manual_content section {
  position: relative;
  float: left;
  display: block;
  margin-bottom: 104px;
  width: 100%;
}

.plugin_manual_wrapper .manual_content section:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -26.5px;
  width: 10px;
  height: 10px;
  background: #00508a;
  border-radius: 100%;
}

.plugin_manual_wrapper .manual_content .text_block {
  display: block;
  position: relative;
  float: left;
  width: 100%;
}

.plugin_manual_wrapper .manual_content .text_block h2 {
  margin: -10px 0 15px;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 30px;
  color: #00508a;
  line-height: 1;
}

.plugin_manual_wrapper .manual_content .text_block h3 {
  margin: 0 0 15px;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 18px;
  color: #00508a;
  line-height: 1;
}

.plugin_manual_wrapper .manual_content .text_block h4 {
  margin: 17px 0 15px 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #5c5959;
  line-height: 34px;
}

.plugin_manual_wrapper .manual_content .text_block > p {
  width: 49%;
  margin: 0;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 14px;
  color: #303131;
  line-height: 16px;
}

.plugin_manual_wrapper .manual_content .manual_list {
  position: relative;
  width: 100%;
  display: table;
  margin-top: 50px;
}

.plugin_manual_wrapper .manual_content .manual_list.substep:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -25.5px;
  width: 8px;
  height: 8px;
  background: #00508a;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper {
  margin: 0 0 40px;
  position: relative;
  float: left;
  display: table;
  width: 49%;
}

.plugin_manual_wrapper .manual_content .manual_list.img_left .list_wrapper {
  display: table;
  float: right;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul {
  display: table;
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li {
  display: block;
  width: 100%;
  float: left;
  margin: 0 0 11px;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ol > li {
  display: block;
  width: 100%;
  float: left;
  margin: 0 0 11px;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li h5, .plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ol > li h5 {
  position: relative;
  margin: 0 0 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: #303131;
  line-height: 16px;
  cursor: pointer;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li > h5 {
  padding-left: 14px;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ol {
  padding-left: 14px;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ol > li {
  counter-increment: step-counter;
  position: relative;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ol > li::before {
  content: counter(step-counter);
  position: absolute;
  line-height: 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  left: -14px;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li > h5:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 9px;
  height: 13px;
  background: radial-gradient(circle, #00508a 3px, #fcfcfc 3px);
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ul > li p {
  display: block;
  padding-left: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #616161;
  margin-bottom: 0;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper > ol > li p {
  display: block;
  padding-left: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #616161;
  margin-bottom: 0;
}

.plugin_manual_wrapper .manual_content .manual_list .list_wrapper h3, .plugin_manual_wrapper .manual_content .manual_list .list_wrapper h4 {
  margin-top: -4px;
  line-height: 1;
}

.plugin_manual_wrapper .manual_content .manual_list .image_block {
  display: block;
  position: relative;
  float: right;
  width: 49%;
  margin-left: 2%;
}

.plugin_manual_wrapper .manual_content .manual_list.img_left .image_block {
  float: right;
  margin-left: 0;
  margin-right: 2%;
}

.plugin_manual_wrapper .manual_content .manual_list .image_block img {
  display: block;
  margin: 0 auto;
  vertical-align: middle;
}

.plugin_demo_section {
  padding-bottom: 78px;
}

.plugin_demo_section .demo_navigation_inner {
  position: relative;
  padding: 0 10px;
}

.plugin_demo_content {
  margin-top: 50px;
}

.plugin_demo_section .demo_navigation_inner, .plugin_demo_section .plugin_demo_content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.plugin_demo_section .demo_navigation {
  margin-bottom: 0;
  -webkit-box-shadow: 0 1px 4px 0 rgba(124, 118, 118, 0.24);
          box-shadow: 0 1px 4px 0 rgba(124, 118, 118, 0.24);
  position: relative;
}

.plugin_demo_section .demo_navigation_inner h1 {
  margin: 0;
  float: left;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #767373;
  line-height: 63px;
  text-transform: uppercase;
  cursor: pointer;
}

.plugin_demo_section .demo_navigation_inner h1 .regular {
  font-weight: 400;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list {
  display: inline-block;
  height: 45px;
  margin-top: 18px;
  float: right;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list .right_title {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  color: #767373;
  text-transform: none;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list .right_title:after {
  content: '';
  position: absolute;
  display: block;
  top: 10px;
  right: 5px;
  border-style: solid;
  border-width: 11px 9px 0;
  border-color: #767373 transparent transparent;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul {
  list-style-type: none;
  position: absolute;
  display: none;
  top: 100%;
  right: 8px;
  text-align: right;
  padding-right: 10px;
  max-width: 420px;
  z-index: 100;
  background: #fff;
  -webkit-box-shadow: 0 2px 2px rgba(12, 13, 14, 0.2);
          box-shadow: 0 2px 2px rgba(12, 13, 14, 0.2);
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-transition: all .2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li a {
  display: block;
  height: 47px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 47px;
  text-decoration: none;
  -webkit-transition: all .12s linear;
  -webkit-transition: all 0.12s linear;
  transition: all 0.12s linear;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li a:link, .plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li a:visited {
  display: block;
  height: 47px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #000;
  line-height: 47px;
  text-indent: 42px;
  text-decoration: none;
  -webkit-transition: all .12s linear;
  -webkit-transition: all 0.12s linear;
  transition: all 0.12s linear;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li a:active, .plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li a:focus, .plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li a:hover {
  color: #bf1e2e;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li.active a {
  color: #bf1e2e;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li.active a:link, .plugin_demo_section .demo_navigation_inner .demo_navigation_list ul li.active a:visited {
  color: #bf1e2e;
}

.plugin_demo_section .demo_navigation_inner .demo_navigation_list ul.hg_open_demo_menu {
  display: block;
}

@media screen and (min-width: 640px) {
  .plugin_demo_section .demo_navigation_inner .demo_navigation_list:hover ul {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .plugin_demo_section .demo_navigation_inner h1 {
    float: none;
    text-align: center;
  }
  .plugin_demo_section .demo_navigation_inner .demo_navigation_list {
    float: none;
    width: 100%;
    text-align: center;
    margin: 0px auto;
  }
  .plugin_demo_section .demo_navigation_inner .demo_navigation_list ul {
    left: auto;
    right: auto;
    max-width: 90%;
  }
}

#theme_page_header {
  margin-bottom: 67px;
}

#theme_page_header .text_block {
  position: relative;
  width: 424px;
  float: left;
}

#theme_page_header .text_block .theme_title {
  position: relative;
  display: block;
  margin: 0 0 31px;
  padding-left: 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 48px;
  color: #8e8c8c;
  font-weight: 600;
  line-height: 55px;
  text-transform: uppercase;
}

#theme_page_header .text_block .theme_title:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 4px;
  height: 39px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #92cfd1;
}

#theme_page_header .text_block p {
  position: relative;
  display: block;
  width: 420px;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #737272;
  line-height: 24px;
}

#theme_page_header .text_block .link_block {
  margin: 48px 0 0;
}

#theme_page_header .text_block .link_block a {
  padding: 0 18px;
  font-size: 22px;
  background-image: linear-gradient(to left, transparent 12px, #1fbba6 12px), linear-gradient(to bottom, transparent 12px, #1fbba6 12px);
  background-size: 100% 100%, 12px 100%;
}

#theme_page_header .text_block .link_block a:link, #theme_page_header .text_block .link_block a:visited {
  padding: 0 18px;
  font-size: 22px;
  background-image: linear-gradient(to left, transparent 12px, #1fbba6 12px), linear-gradient(to bottom, transparent 12px, #1fbba6 12px);
  background-size: 100% 100%, 12px 100%;
}

#theme_page_header .text_block .link_block a:active, #theme_page_header .text_block .link_block a:focus, #theme_page_header .text_block .link_block a:hover {
  background-size: calc(100% + 12px) 100%, 13px calc(100% + 16px);
  background-position: calc(100% + 12px) 0, 100% -12px;
}

#theme_page_header .text_block .link_block a:before {
  width: 12px;
  height: 12px;
  background-color: #fff;
}

#theme_page_header .text_block .link_block a:hover:before {
  width: 0 !important;
  height: 0 !important;
}

#theme_page_header .text_block .link_block a:after {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  width: 12px;
  height: 12px;
}

#theme_page_header .text_block .link_block a:hover:after {
  top: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

#theme_page_header .theme_preview_block {
  position: relative;
  float: left;
  width: 600px;
}

#theme_page_header .theme_preview_block a {
  display: block;
  position: relative;
  width: 534px;
  margin-left: 58px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-perspective: 1px;
  perspective: 1px;
  text-decoration: none;
  color: #fff;
  -webkit-box-shadow: 0 0 5px 1px rgba(15, 16, 18, 0.11);
          box-shadow: 0 0 5px 1px rgba(15, 16, 18, 0.11);
}

#theme_page_header .theme_preview_block a:link, #theme_page_header .theme_preview_block a:visited {
  display: block;
  position: relative;
  width: 534px;
  margin-left: 58px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-perspective: 1px;
  perspective: 1px;
  text-decoration: none;
  color: #fff;
  -webkit-box-shadow: 0 0 5px 1px rgba(15, 16, 18, 0.11);
          box-shadow: 0 0 5px 1px rgba(15, 16, 18, 0.11);
}

#theme_page_header .theme_preview_block a:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.47);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

#theme_page_header .theme_preview_block a:hover:before {
  opacity: 1;
  visibility: visible;
}

#theme_page_header .theme_preview_block a img {
  vertical-align: middle;
}

#theme_page_header .theme_preview_block a .preview_icon {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 151px;
  height: 34px;
  padding: 0 16px 0 40px;
  margin: auto;
  border-radius: 3px;
  background-color: #70bcbe;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  line-height: 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

#theme_features > h2, #theme_features > h3 {
  font-weight: 300;
  color: #767373;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

#theme_page_header .theme_preview_block a:hover .preview_icon {
  opacity: 1;
  visibility: visible;
}

#theme_page_header .theme_preview_block a .preview_icon:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 17px;
  width: 19px;
  height: 10px;
  background: url(../images/huge-it-template-icons.png) -262px -544px;
}

#theme_features {
  margin-bottom: 36px;
  padding: 27px 0 0;
  border-top: 1px solid #efeeed;
}

#theme_features > h2 {
  font-size: 30px;
  line-height: 34px;
  margin-bottom: 5px;
}

#theme_features > h3 {
  position: relative;
  width: 680px;
  margin: 0 auto 25px;
  font-size: 18px;
  line-height: 25px;
}

.theme_version_features {
  margin: 50px 0 0;
  padding: 0 0 68px;
  border-bottom: 1px solid #efeeed;
}

.theme_versions_table {
  position: relative;
  width: 1008px;
  margin: 0 auto;
}

.theme_versions_table .column {
  position: relative;
  display: block;
  float: left;
  width: 200px;
  margin: 0 2px 33px 0;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #cbcbcb;
  border-right: 1px solid #cbcbcb;
  border-left: 1px solid #cbcbcb;
  border-radius: 4px;
}

.theme_versions_table .column:nth-child(6) {
  margin-right: 0;
}

.theme_versions_table .table_column_1 {
  margin-top: 66px;
}

.theme_versions_table .best_seller {
  border-color: #92cfd1;
}

.theme_versions_table .feature_name, .theme_versions_table .version_name {
  border-bottom: 1px dashed #e1e1e1;
  display: block;
  -webkit-transition: all .2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.theme_versions_table .best_seller:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 49px;
  background: url(../images/huge-it-template-icons.png) -206px -544px;
}

.theme_versions_table .feature_name {
  height: auto;
  line-height: 33px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #524040;
  text-indent: 2px;
}

.theme_versions_table .version_name {
  height: 59px;
}

.theme_versions_table .version_name h3 {
  margin: 6px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #59b4b7;
  line-height: 21px;
  text-align: center;
  text-transform: uppercase;
}

.theme_versions_table .version_name span {
  display: block;
  width: 100%;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 16px;
  color: #989293;
  line-height: 14px;
  text-align: center;
}

.theme_versions_table .buy_link a {
  position: absolute;
  bottom: -31px;
  left: -1px;
  color: #fff;
  font-size: 16px;
  border-radius: 2px;
  text-indent: 8px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

.theme_versions_table .buy_link a:link, .theme_versions_table .buy_link a:visited {
  position: absolute;
  bottom: -31px;
  left: -1px;
  color: #fff;
  font-size: 16px;
  border-radius: 2px;
  text-indent: 8px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

.theme_versions_table .features_expand {
  position: absolute;
  bottom: -31px;
  left: -1px;
  color: #fff;
  font-size: 16px;
  border-radius: 2px;
  text-indent: 8px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
}

#ft_check {
  display: none;
}

.theme_versions_table .features_expand {
  display: block;
  width: calc(100% + 2px);
  height: 33px;
  background: #92cfd1;
  line-height: 33px;
}

.theme_versions_table .features_expand:after {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  right: 26px;
  width: 15px;
  height: 9px;
  background: url(../images/huge-it-template-icons.png) -147px -614px;
  -webkit-transition: all .2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#ft_check ~ .column .feature_names .feature_name:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)), #ft_check ~ .column .feature_values .feature_value:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) {
  overflow: hidden;
  border-width: 0;
  height: 0;
}

.theme_versions_table .buy_link a {
  display: block;
  width: calc(100% + 2px);
  height: 33px;
  background: #92cfd1;
  line-height: 33px;
  text-decoration: none;
  text-align: center;
}

.theme_versions_table .buy_link a:link, .theme_versions_table .buy_link a:visited {
  display: block;
  width: calc(100% + 2px);
  height: 33px;
  background: #92cfd1;
  line-height: 33px;
  text-decoration: none;
  text-align: center;
}

.theme_versions_table .feature_value {
  position: relative;
  display: block;
  height: 33px;
  line-height: 33px;
  border-bottom: 1px dashed #e1e1e1;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #524040;
  text-align: center;
  -webkit-transition: all .2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.theme_versions_table .feature_value.checked:before, .theme_versions_table .feature_value.unchecked:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 21px;
  height: 21px;
}

.theme_versions_table .feature_value.checked:before {
  background: url(../images/huge-it-template-icons.png) -63px -301px;
}

.theme_versions_table .feature_value.unchecked:before {
  background: url(../images/huge-it-template-icons.png) -63px -328px;
}

.theme_features_content_list {
  margin-top: 38px;
  text-align: center;
  overflow: hidden;
}

.theme_features_content_list .feature.right h3 {
  text-align: right;
}

.thene_features_content_list .feature.right p {
  text-align: right;
}

.theme_features_content_list img {
  vertical-align: center;
}

.theme_features_content_list .feature {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  padding: 36px 0 28px;
  border-bottom: 1px solid #efeeed;
}

.theme_features_content_list .feature .image_block {
  float: left;
  width: 468px;
  margin-right: 155px;
}

.theme_features_content_list .feature.right .image_block {
  margin-right: 0;
  margin-left: 155px;
  float: right;
}

.theme_features_content_list .feature .text_block {
  position: absolute;
  display: block;
  width: 460px;
  top: 0;
  height: 100%;
  right: 0;
}

.theme_features_content_list .feature.right .text_block {
  left: 0;
}

.theme_features_content_list .feature .text_block .text_block_inner {
  position: absolute;
  display: table;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.theme_features_content_list .feature img {
  display: block;
  float: right;
  vertical-align: middle;
  margin: 0 !important;
}

.theme_features_content_list .feature.right img {
  float: left;
}

.theme_features_content_list .feature h3 {
  position: relative;
  margin: 0 0 37px;
  font-family: 'Roboto Regular', sans-serif;
  font-size: 30px;
  color: #4c4848;
  line-height: 34px;
}

.theme_features_content_list .feature p {
  position: relative;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #222;
  line-height: 19px;
}

.wp_theme_payment_image {
  margin-top: 38px;
  text-align: center;
}

.theme_tabs_headings {
  position: relative;
  display: block;
  width: 100%;
  margin: 26px 0 88px;
  list-style-type: none;
  text-align: center;
  font-size: 0;
}

.theme_tabs_headings li {
  position: relative;
  display: inline-block;
  margin: 0;
  height: 40px;
  padding: 0 163px;
  background-color: #fff;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  font-family: 'Roboto Bold', sans-serif;
  font-size: 18px;
  color: #7d7979;
  line-height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  -webkit-transition: background-color .05s linear;
  -webkit-transition: background-color 0.05s linear;
  transition: background-color 0.05s linear;
}

.theme_tabs_headings li:hover {
  background-color: rgba(237, 239, 237, 0.25);
}

.theme_tabs_headings li:first-child {
  border-left: 1px solid #d8d8d8;
}

.theme_tabs_headings li:last-child {
  border-right: 1px solid #d8d8d8;
}

.theme_tabs_headings li.active {
  background-color: #edefed;
}

.theme_tabs_contents {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.theme_tabs_contents .theme_tab_content {
  position: relative;
  display: none;
  margin: 0;
}

.theme_tabs_contents .theme_tab_content.active {
  display: block;
}

.theme_features_list {
  position: relative;
  display: block;
  width: calc(100% - 60px);
  margin: 0 auto;
  list-style-type: none;
  font-size: 0;
  text-align: center;
}

.theme_features_list .feature {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  width: 318px;
  height: 255px;
  font-size: 13px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#all_wp_plguins_light .coffee_cup_horizontal img {
  vertical-align: middle;
}

.theme_features_list .feature .image_block img {
  vertical-align: middle;
}

.theme_features_list .feature h4, .theme_features_list .feature p {
  width: calc(100% - 41px);
  overflow: hidden;
  position: relative;
  display: block;
  font-family: "Open Sans", sans-serif;
}

.theme_features_list .feature h4 {
  margin: 14px auto 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 18px;
  color: #92cfd1;
  line-height: 21px;
}

.theme_features_list .feature p {
  height: 41px;
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  color: #797d7d;
  line-height: 20px;
  text-align: center;
}

#theme_feature_responsive {
  margin: 0 0 125px;
  padding: 74px 0 0;
  background-color: #f9f9f9;
}

#theme_feature_responsive h3 {
  position: relative;
  display: block;
  margin: 0 0 19px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #3d4140;
  line-height: 34px;
  text-align: center;
}

#theme_feature_responsive .theme_responsive_text {
  position: relative;
  display: block;
  width: calc(100% - 165px);
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #616766;
  text-align: center;
  line-height: 25px;
}

#theme_feature_responsive .responsive_image {
  margin: 32px 0 -73px 122px;
  vertical-align: middle;
}

#all_wp_plguins_light {
  margin: 0;
  background-color: #92cfd1;
  height: 411px;
}

#all_wp_plguins_light .container {
  height: 411px;
}

#all_wp_plguins_light .image_block {
  position: absolute;
  top: 53px;
  left: -293px;
}

#all_wp_plguins_light .text_block {
  position: absolute;
  top: 0;
  right: 0;
  width: 475px;
  height: 100%;
}

#all_wp_plguins_light .text_block h3 {
  position: relative;
  display: block;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

#all_wp_plguins_light .text_block h4 {
  position: relative;
  display: block;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  margin: 48px 0 6px;
  font-size: 38px;
  color: #fff;
}

#all_wp_plguins_light .text_block h3 {
  height: 56px;
  width: 100%;
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 24px;
  color: #43525f;
  line-height: 56px;
  text-align: center;
}

#all_wp_plguins_light .text_block h3:after {
  content: '';
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  display: block;
}

#all_wp_plguins_light .text_block h3:before {
  content: '';
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  display: block;
  top: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(transparent));
  background-image: linear-gradient(to left, #fff, transparent);
}

#all_wp_plguins_light .text_block h3:after {
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
  background-image: linear-gradient(to right, #fff, transparent);
}

#all_wp_plguins_light .text_block p {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  line-height: 25px;
}

#all_wp_plguins_light .text_block p .semibold {
  font-weight: 600;
}

#all_wp_plguins_light .coffee_cup_horizontal {
  position: absolute;
  display: block;
  bottom: -53px;
  left: -65px;
}

#all_wp_plguins_light .link_block {
  margin-top: 73px;
  text-align: right;
}

.theme_tabs_contents .theme_tab_content.active {
  word-spacing: 4px;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 40px;
}

.hg_download_page {
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

.hg_download_page h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.hg_download_page div {
  font-size: 25px;
}

.hg_download_page a {
  color: #bf1e2e;
}

#aditional_payment_page, #verification_page {
  font-size: 18px;
  color: #333030;
  font-family: 'Roboto', sans-serif;
}

#aditional_payment_page p, #verification_page p {
  margin: 0 0 19px;
}

#aditional_payment_page form, #verification_page form {
  margin-top: 37px;
}

#aditional_payment_page form .input, #verification_page form .input {
  font-size: 24px;
  color: #333030;
  border: 2px solid #7f7f7f;
  border-radius: 2px;
  padding: 10px 10px 9px;
}

#aditional_payment_page form .submit, #verification_page form .submit {
  color: #fff;
  font-family: "Roboto Light", sans-serif;
  font-size: 24px;
  letter-spacing: .075em;
  background-color: #bf1e2e;
  text-transform: uppercase;
  line-height: 15px;
  padding: 18px 75px;
  border: 0;
  border-radius: 2px;
  margin-left: 5px;
  cursor: pointer;
}

#aditional_payment_page form span, #verification_page form span {
  font-size: 16px;
  color: #4f4d4d;
  font-style: italic;
}

#aditional_payment_page {
  -webkit-box-shadow: 5px 6px 14px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 5px 6px 14px 2px rgba(0, 0, 0, 0.08);
  background-color: #fcfcfc;
  padding: 7%;
}

#aditional_payment_page h2 {
  font-size: 26px;
  font-weight: bold;
  color: #c1272d;
}

#aditional_payment_page p {
  font-size: 16px;
  color: #7e7e7e;
}

#aditional_payment_page p span {
  font-style: normal;
  margin-right: 10px;
  margin-left: 3px;
  position: absolute;
  right: 2px;
  top: 1px;
}

#aditional_payment_page p a {
  color: #c5343a;
  text-decoration: none;
}

#aditional_payment_page form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#aditional_payment_page input[type="text"] {
  width: 148px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 35px;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.35);
          box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.35);
  outline: none;
  font-size: 15px;
  color: #4f4d4d;
}

#aditional_payment_page label {
  position: relative;
}

#aditional_payment_page input[type="submit"] {
  height: 35px;
  border-radius: 5px;
  background-color: #a2071b;
  border: none;
  color: #fff;
  padding: 0 10px;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.35);
          box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.35);
  margin-left: 5px;
  outline: none;
  position: relative;
  border-bottom: 3px inset #8c071e;
}

#aditional_payment_page .wp_plugin_payment_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

#blog_page_wrapper .content_container ul li article img {
  height: 117px;
}

.date_button:before {
  bottom: 0;
}

.date_button:after {
  bottom: 0;
  left: 15px;
}

.hg_wp_plugin_banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hg_right_button_block .button-blue:before {
  background-color: #FBFBFB;
}

.hg_wp_plugin_banner .hg_greeny {
  color: #06960d;
}

.hg_wp_plugin_banner .hg_black p {
  color: #252525;
}

.hg_wp_plugin_banner .hg_bold {
  font-weight: 600;
  font-size: 51px;
}

.theme_versions_table .buy_link a:hover, .theme_versions_table .features_expand:hover {
  background-color: #1fbba6;
}

/*
header .container .hg-login-account-menu .hg-login-account-info:hover .hg-login-account-main img{
    border: 2px solid #bf1e2e;
    animation: hover 1.5s;
    animation-duration: 1;
}
*/
@-webkit-keyframes hover {
  0% {
    border-color: #bf1e2e;
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border-top-style: dotted;
  }
  100% {
    border-color: #bf1e2e;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
  }
}

@keyframes hover {
  0% {
    border-color: #bf1e2e;
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border-top-style: dotted;
  }
  100% {
    border-color: #bf1e2e;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
  }
}

/*<<<<<<<<<<<<<<Your product-page>>>>>>>>>>>>>>>*/
.content-product-block {
  display: table;
  margin: 100px auto;
  text-align: center;
  min-height: 452px;
  width: 1024px;
}

.content-product-block h1 {
  margin-bottom: 40px;
  font-size: 2.3rem;
}

.content-product-block .products-list {
  width: 100%;
  border-collapse: collapse;
}

.content-product-block .products-list tr {
  text-align: left;
  height: 80px;
  line-height: 80px;
  border-bottom: 1px solid #d6d3d3;
}

.content-product-block .products-list tr:hover {
  background-color: #f5f5f5;
}

.content-product-block .products-list tr:first-child {
  background: none;
  font-weight: bold;
  text-align: left;
  border: none;
  font-size: 16px;
}

.content-product-block .products-list tr:nth-child(2) {
  border-top: 1px solid #d6d3d3;
}

.content-product-block .products-list tr td {
  padding: 0 20px;
}

.content-product-block .products-list .-download-invoice i {
  color: #444;
  font-size: 22px;
}

.content-product-block .products-list .-download-invoice i:hover {
  color: #c32c3b;
}

.content-product-block .products-list .-view-invoice {
  cursor: pointer;
  display: inline-block;
  width: 37px;
  margin: 0 20px 0 0;
  border: 1px solid #444;
  border-radius: 20px;
  line-height: 25px;
  font-size: 16px;
  padding: 0 10px;
}

.content-product-block .products-list .spinner {
  display: inline-block;
  width: 58px;
  margin: -5px 20px 0 0;
}

.content-product-block .products-list .-view-invoice:hover {
  border-color: #c32c3b;
  color: #c32c3b;
}

.content-product-block .products-list tr .image-icon {
  width: 80px;
  height: 63px;
  float: left;
  margin: 8px 20px 8px 8px;
  overflow: hidden;
}

.content-product-block .products-list tr .image-icon img {
  max-width: 100%;
}

.content-product-block .products-list tr td .download {
  display: inline-block;
  width: 27px;
  height: 27px;
  background-image: url(../images/dummy/new-sprite.png);
  background-position: 0 -537px;
  cursor: pointer;
  top: 7px;
  position: relative;
}

.content-product-block .products-list tr .download-td {
  line-height: 80px;
  padding-left: 90px;
}

.content-product-block .products-list tr td .download:hover {
  background-position: 0 -601px;
}

/*<<<<<<<<<<<<<<Deals-page>>>>>>>>>>>>>>>*/
.content-deals-block {
  display: table;
  margin: 100px auto;
  text-align: center;
  min-height: 418px;
}

/*<<<<<<<<<<<<<<Login, Sign up  popups>>>>>>>>>>>>>>>*/
.hg-login-modal-fit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hg-login-modal-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background: rgba(244, 244, 244, 0.35);
  text-align: center;
  line-height: 34px;
  margin-right: -31px;
  overflow: auto;
}

.hg-login-modal-container {
  position: relative;
  width: 460px;
  background-color: #fff;
  color: #000;
  -webkit-animation: fadeIn 0.4s ease;
  animation: fadeIn 0.4s ease;
  cursor: default;
  -webkit-box-shadow: -1px 2px 28px 4px rgba(0, 0, 0, 0.4);
          box-shadow: -1px 2px 28px 4px rgba(0, 0, 0, 0.4);
  /* margin-bottom: 20px; */
  min-height: 250px;
}

@-webkit-keyframes DropdownPopup {
  from {
    -webkit-transform: translateY(-400px);
    transform: translateY(-400px);
  }
  to {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}

@keyframes DropdownPopup {
  from {
    -webkit-transform: translateY(-400px);
    transform: translateY(-400px);
  }
  to {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}

.hg-login-modal-header {
  background-color: #fff;
  color: #6c6a6a;
  height: 70px;
  line-height: 70px;
  position: relative;
}

.hg-login-modal-header .bold {
  font-size: 20px;
}

.hg-login-modal-close svg {
  fill: #6c6a6a;
  cursor: pointer;
}

.hg-login-modal-header .button--content {
  display: block;
  position: absolute;
  top: 0;
  right: 13px;
}

.hg-login-modal-input {
  width: 80% !important;
  margin: 0 auto;
  position: relative;
  height: 50px;
  padding-top: 10px;
  cursor: pointer;
}

.hg-login-modal-input label {
  color: #7a7a7a;
  position: absolute;
  left: 9%;
  bottom: 0;
  cursor: pointer;
  width: 320px;
  text-align: left;
}

.hg-login-modal-input input[type="checkbox"] {
  display: none;
}

.hg-login-modal-input input[type="checkbox"]:checked ~ label {
  color: #1bbc45;
}

.hg-login-modal-input input[type="checkbox"]:checked ~ label span {
  border-color: #1bbc45;
  background-color: #1bbc45;
}

.hg-login-modal-input input[type="checkbox"]:checked ~ label span:before {
  opacity: 1;
}

.hg-login-modal-input label span {
  width: 15px;
  height: 15px;
  right: 0;
  position: relative;
  left: 0;
  background: none;
  border: 2px solid #ddd;
  border-radius: 1px;
  top: 8px;
  margin-right: 8px;
  float: left;
}

.hg-login-modal-input label span:before {
  content: "";
  background: url(../images/dummy/new-sprite.png) -4px -835px no-repeat;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 2;
  opacity: 0;
}

.hg-login-modal-input label sup {
  color: #c3002f;
  position: absolute;
  text-align: right;
  right: 32px;
  font-size: 12px;
  top: 27px;
}

.hg-login-modal-input label sup:after {
  content: "";
  background: url(../images/dummy/new-sprite.png) -10px -1859px no-repeat;
  display: block;
  width: 18px;
  height: 16px;
  position: absolute;
  right: -25px;
  top: 6px;
}

.hg-login-modal-input label .pass-short {
  color: #c91902;
}

.hg-login-modal-input label .pass-bad {
  color: #ce6301;
}

.hg-login-modal-input label .pass-bad:after {
  background-position: -10px -1884px;
}

.hg-login-modal-input label .pass-good {
  color: #fd9a00;
}

.hg-login-modal-input label .pass-good:after {
  background-position: -10px -1908px;
}

.hg-login-modal-input label .pass-strong {
  color: #28a700;
}

.hg-login-modal-input label .pass-strong:after {
  background-position: -12px -1933px;
}

.hg-login-modal-rememberme {
  float: none;
}

.hg-login-modal-input span {
  width: 0;
  height: 2px;
  background: #1bbc45;
  display: block;
  position: absolute;
  left: 7%;
  bottom: 3px;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.hg-login-modal-input i {
  width: 25px;
  height: 15px;
  background: url(../images/dummy/new-sprite.png) 0 -805px no-repeat;
  display: none;
  position: absolute;
  right: 27px;
  top: 35px;
}

.hg-login-modal-input .hg-login-modal-terms-label {
  margin-top: 8px;
  position: relative;
  display: inline-block;
  left: 0;
  font-size: 14px;
}

.hg-login-modal-input .hg-login-modal-terms-label sup {
  margin-top: 21px;
}

.hg-login-modal-input i.active {
  background: url(../images/dummy/new-sprite.png) 0 -773px no-repeat;
}

.hg-login-modal-input input[type="text"], .hg-login-modal-input input[type="password"] {
  width: 300px;
  height: 35px;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  font-size: 18px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 0 10px;
}

.hg-login-modal-input input[type="text"].invalid, .hg-login-modal-input input[type="password"].invalid {
  border-color: #d50000;
}

.hg-login-modal-input input[type="text"]:focus ~ label, .hg-login-modal-input input[type="text"]:visited ~ label, .hg-login-modal-input input[type="text"]:valid ~ label {
  font-size: 0;
}

.hg-login-modal-input input[type="password"]:focus ~ label, .hg-login-modal-input input[type="password"]:visited ~ label, .hg-login-modal-input input[type="password"]:valid ~ label {
  font-size: 0;
}

.hg-login-modal-input input[type="text"]:focus ~ span, .hg-login-modal-input input[type="password"]:focus ~ span {
  width: 320px;
}

.hg-login-modal-input input[type="text"].invalid:focus ~ span, .hg-login-modal-input input[type="password"].invalid:focus ~ span {
  background-color: #d50000;
}

.hg-login-modal-body-content .login .modal-auth--social-button {
  border-bottom: 1px dotted #ddd;
  width: 320px;
  margin: 0 auto;
  padding-top: 24px;
  margin-top: -35px;
  border-top: 1px solid #ddd;
}

.hg-login-modal-footer {
  height: 60px;
  width: 87%;
  margin: 0 auto;
}

.signup-footer {
  padding: 10px 0 0 0;
}

.hg-login-modal-footer .-layout span {
  color: #b2b1b1;
}

.hg-login-modal-footer .-button:not(.-type-primary) .button--content {
  color: #1bbc45;
  cursor: pointer;
  margin-left: 6px;
}

.hg-login-modal-content .-button .signup-button {
  width: 320px;
  margin: 0 auto;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: #1bbc45;
  color: #fff;
  font-size: 18px;
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
}

#hg-login-button-forgotpass-submit {
  width: auto;
  margin: 0 0 0 10px;
}

#hg-login-modal-reset-pass .hg-login-modal-footer > .-flex {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#hg-login-button-forgotpass-submit .button--content, #hg-login-button-resetpass-submit .button--content {
  width: 100px;
  border-radius: 3px;
  background-color: #1bbc45;
  color: #fff;
  cursor: pointer;
}

.hg-login-modal-content .-button .signup-button:hover, #hg-login-button-forgotpass-submit .button--content:hover, #hg-login-button-resetpass-submit .button--content:hover {
  color: #fff !important;
}

.hg-login-modal-content .-button .login-button {
  color: #09d93f;
}

.hg-login-modal-content .-button .login-button:hover {
  color: #128530 !important;
  background: none !important;
}

.hg-login-modal-footer #hg-login-button-login-submit {
  float: left;
  margin-left: 20px;
}

.-layout #hg-login-button-login-submit {
  width: 320px;
  margin: 0 auto;
  height: 45px;
  text-align: center;
  line-height: 45px;
  background-color: #1bbc45;
  color: #fff;
  font-size: 18px;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 25px;
}

.-layout #hg-login-button-login-submit:hover {
  background-color: #09d93f;
  color: #fff;
}

.hg-login-modal-footer .forgot-login .button--content:hover {
  background: none;
  color: #128530 !important;
}

.hg-login-modal-footer .-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.hg-login-modal-footer .button--content:hover {
  color: #128530;
}

.hg-login-modal-body-content .-center-center {
  padding-bottom: 0;
  width: 320px;
  margin: 0 auto;
}

.hg-login-modal-body-content .hg-login-via-social {
  position: relative;
  background: #fff;
  top: -18px;
  display: inline-block;
  padding: 0 15px;
  color: #b2b1b1;
  width: 160px !important;
}

.hg-login-modal-body-content .hg-login-modal-inputs {
  margin-bottom: 15px;
  margin-top: -15px;
}

.hg-login-modal-recaptcha-wrap {
  position: relative;
  left: 78px;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .hg-login-modal-recaptcha-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    top: -15px;
  }
  .hg-login-modal-recaptcha-wrap .hg-login-modal-recaptcha {
    margin-top: -20px;
  }
  .hg-login-modal-recaptcha-wrap div, .hg-login-modal-recaptcha-wrap .hg-login-modal-recaptcha div iframe html body .rc-anchor-normal {
    width: auto !important;
  }
}

@media screen and (max-width: 382px) {
  .-layout #hg-login-button-login-submit .button--content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    height: 100%;
    line-height: inherit;
  }
  .hg-login-modal-container, .hg-login-modal-body-content .login .modal-auth--social-button {
    width: 305px !important;
  }
  .hg-login-modal-recaptcha-wrap {
    top: -3px;
  }
  .hg-login-modal-overlay {
    margin-left: -16px;
  }
}

.hg-login-modal-body-content #hg-login-button-signup-submit {
  padding-top: 15px;
}

.modal-auth--forgot-password {
  font-size: 14px;
  color: #bfbfbf;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  right: 72px;
  top: -49px;
  float: right;
  cursor: pointer;
  font-style: italic;
}

.modal-auth--forgot-password:hover {
  text-decoration: underline;
}

.modal-auth--social-button .-facebook {
  display: inline-block;
  background: #3b5998;
  width: 140px;
  height: 45px;
  margin-bottom: 15px;
  line-height: 55px;
  border-radius: 3px;
}

.signup-social {
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
  width: 320px;
  margin: 0 auto;
  padding-bottom: 15px;
  border-bottom: 1px dotted #ddd;
}

.hg-login-modal-body-content .hg-login-via-social.signup {
  top: 16px;
}

.signup-social .modal-auth--social-button .-facebook {
  margin-bottom: 0;
}

.modal-auth--social-button .-facebook:hover {
  background-color: #5676c1;
}

.modal-auth--social-button svg {
  fill: #fff;
}

#hg_login_popup_info_temp {
  margin: 2em;
  top: 0;
  right: 0;
  position: fixed;
  background: #4CAF50;
  color: #fff;
  padding: 20px 24px;
  border-radius: 2px;
  float: left;
  min-width: 216px;
  max-width: 426px;
  width: auto;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
  -webkit-animation: show-login-popup-info .15s ease;
  animation: show-login-popup-info .15s ease;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  z-index: 10000;
}

#hg_login_popup_info_temp.-success {
  background: #4CAF50;
}

#hg_login_popup_info_temp.-notice {
  background: #03A9F4;
}

#hg_login_popup_info_temp.-error {
  background: #F44336;
}

#hg_login_popup_info_temp p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

#hg_login_popup_info_temp.close--popup {
  right: -100%;
  opacity: 0;
  -webkit-animation: close-login-popup-info .15s ease;
  animation: close-login-popup-info .15s ease;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes show-login-popup-info {
  from {
    right: -100%;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

/* Standard syntax */
@keyframes show-login-popup-info {
  from {
    right: -100%;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

/* Chrome, Safari, Opera */
@-webkit-keyframes close-login-popup-info {
  from {
    right: 0;
    opacity: 1;
  }
  to {
    right: -100%;
    opacity: 0;
  }
}

/* Standard syntax */
@keyframes close-login-popup-info {
  from {
    right: 0;
    opacity: 1;
  }
  to {
    right: -100%;
    opacity: 0;
  }
}

/*<<<<<<<<<<<<< Forum page >>>>>>>>>>>>>*/
#cover-image-container {
  position: relative;
  z-index: 9;
  height: 225px;
}

#cover-image-container #item-header-avatar a {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

#cover-image-container #item-header-avatar a img {
  vertical-align: middle;
  border: none !important;
  width: auto;
  height: auto;
}

#buddypress {
  font-family: 'Open Sans', sans-serif;
}

#buddypress #header-cover-image {
  height: 100%;
}

.bbp-forum-index-main-forum-list-wrapper ul {
  margin: 20px 30px !important;
}

li.bbp-forum-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

h1.bbp-single-topic-title {
  text-align: center !important;
  font-size: 2rem !important;
  margin-top: 10px;
  padding-bottom: 1px !important;
  margin-bottom: 0;
}

.bbp-single-topic-title-wrap {
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#buddypress #item-header-cover-image #item-header-avatar {
  margin: 50px 0 0 50px;
  float: left;
  overflow: hidden;
  width: 115px;
  height: 115px;
  border-radius: 100%;
}

#buddypress div#item-header div#item-meta {
  margin: 0 !important;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p {
  float: left;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p:first-child a {
  background-position: -7px -1699px;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p:first-child a:hover {
  background-color: #3b5998;
  border-color: #3b5998;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p:nth-child(2) a {
  background-position: -7px -1739px;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p:nth-child(2) a:hover {
  background-color: #55acee;
  border-color: #55acee;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p:last-child a {
  background-position: -7px -1779px;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p:last-child a:hover {
  background-color: #d83a3c;
  border-color: #d83a3c;
}

#buddypress div#item-header div#item-meta .hg-user-header-social-link p a {
  font-size: 0;
  width: 26px;
  height: 26px;
  display: block;
  margin-top: 10px;
  margin-right: 5px;
  background-image: url(../images/dummy/new-sprite.png);
  border-radius: 100%;
  border: 1px solid #fff;
}

#buddypress div#item-header #item-header-cover-image #item-header-content {
  margin-top: -79px;
  margin-left: 188px;
}

#buddypress div#item-header #item-header-cover-image #item-header-content .user-nicename {
  font-size: 24px;
}

#buddypress span.activity {
  display: inline-block;
  font-size: 12px;
  height: 30px;
  border-radius: 27px;
  color: #5a5a5a;
  background-color: #fff;
  line-height: 30px;
  text-align: center;
  padding: 0 12px;
  opacity: 1;
}

#item-nav div.item-list-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f7f7f7;
  overflow: visible;
}

#item-nav div.item-list-tabs ul {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

#item-nav div.item-list-tabs ul li {
  line-height: 72px;
  height: 72px;
  position: relative;
  margin-bottom: 2px;
}

#item-nav div.item-list-tabs ul li a {
  background-color: transparent;
  opacity: 1;
  font-weight: 500;
  font-size: 18px;
  color: #4f5353;
  border-bottom: 2px solid transparent;
  padding: 0 22px;
  height: 100%;
}

#buddypress div.item-list-tabs ul li.current a, #buddypress div.item-list-tabs ul li.selected a {
  background-color: #ebebeb;
  color: #4f5353;
  opacity: 1;
  font-weight: 500;
  border-color: #bf1e2e;
}

#buddypress div.item-list-tabs ul li.current a span, #buddypress div.item-list-tabs ul li.selected a span {
  background-color: #bf1e2e;
  color: #fff;
  border: none;
}

#item-nav div.item-list-tabs ul li a:hover {
  border-color: #bf1e2e;
  color: #bf1e2e;
}

#item-nav div.item-list-tabs ul li a span {
  background-color: #bf1e2e;
  color: #fff;
  border: none;
  padding: 2px 6px;
}

#item-nav div.item-list-tabs ul li a span.no-count {
  position: relative;
  width: 21px;
  height: 21px;
  display: block;
  padding: 0;
  line-height: 21px;
  float: right;
  top: 27px;
  left: 7px;
}

#item-nav div.item-list-tabs ul li a:hover span {
  background-color: #bf1e2e;
  color: #fff;
  border: none;
}

#buddypress div.item-list-tabs#subnav {
  margin: 30px 0;
  overflow: hidden;
}

#buddypress div.item-list-tabs#subnav ul li {
  height: 35px;
  border-radius: 2px;
  margin-right: 10px;
  margin-bottom: 10px;
}

#buddypress div.item-list-tabs#subnav ul li.last {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#buddypress div.item-list-tabs#subnav ul li a {
  color: #5d5d5d;
  line-height: 25px;
  text-align: center;
  font-size: 18px;
  background-color: #fff;
}

#buddypress div.item-list-tabs#subnav ul li a:hover {
  background-color: #f9f9f9;
}

#buddypress div.item-list-tabs#subnav ul li.selected a {
  background-color: #bf1e2e;
  color: #fff;
  border-radius: 3px;
}

#buddypress div.item-list-tabs ul {
  display: block;
}

#buddypress div.item-list-tabs ul li.last select {
  width: 185px;
  height: 35px;
  padding: 0 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  background-repeat: no-repeat;
  background-image: url(../images/dummy/new-sprite.png);
  color: #5d5d5d;
  border: 2px solid #eeefee;
  background-position: 143px -1647px;
  background-color: #fafafa;
  margin-left: 10px;
}

#buddypress div.item-list-tabs#subnav ul li.last {
  margin-right: 0;
}

#buddypress div.message-search {
  margin-right: 0;
}

#buddypress div.message-search #search-message-form {
  position: relative;
}

#buddypress div.message-search form #messages_search {
  height: 35px;
  border-radius: 3px;
  border: 1px solid #eeefee;
  padding: 0 8px;
  position: relative;
  right: -33px;
  outline: none;
}

#buddypress div.message-search form input.button {
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: inherit;
  position: relative;
  right: 5px;
  background-image: url(../images/dummy/new-sprite.png);
  font-size: 0;
  top: -4px;
  border: none;
  background-position: -8px -1816px;
}

#buddypress div.message-search form input.button:hover {
  background-color: #fff;
}

#buddypress #pass-strength-result {
  display: block;
  opacity: 0;
}

#item-body .standard-form input {
  border: 1px solid #eeefee !important;
  height: 30px;
  border-radius: 3px !important;
  outline: none;
}

#buddypress .dir-search input[type=search], #buddypress .dir-search input[type=text] {
  background-color: #fff !important;
  -webkit-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
}

#buddypress .groups-members-search input[type=search], #buddypress .groups-members-search input[type=text] {
  background-color: #fff !important;
  -webkit-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
}

#buddypress .standard-form input[type=color], #buddypress .standard-form input[type=date], #buddypress .standard-form input[type=datetime-local], #buddypress .standard-form input[type=datetime], #buddypress .standard-form input[type=email], #buddypress .standard-form input[type=month], #buddypress .standard-form input[type=number], #buddypress .standard-form input[type=password], #buddypress .standard-form input[type=range], #buddypress .standard-form input[type=search], #buddypress .standard-form input[type=tel], #buddypress .standard-form input[type=text], #buddypress .standard-form input[type=time], #buddypress .standard-form input[type=url], #buddypress .standard-form input[type=week] {
  background-color: #fff !important;
  -webkit-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
}

#buddypress .standard-form select, #buddypress .standard-form textarea {
  background-color: #fff !important;
  -webkit-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.05);
}

#item-body .standard-form input[type="email"] {
  width: calc(100% - 12px);
}

#buddypress #pass-strength-result.short, #buddypress #pass-strength-result.bad, #buddypress #pass-strength-result.error, #buddypress #pass-strength-result.strong, #buddypress #pass-strength-result.good {
  opacity: 1;
}

#buddypress .standard-form div.submit input {
  border: none !important;
  color: #fff;
  background-color: #bf1e2e;
  border-radius: 3px;
  font-size: 16px;
  height: 35px;
}

#buddypress .standard-form legend {
  font-size: 14px !important;
  font-weight: normal !important;
}

#buddypress .standard-form span.label, #buddypress .standard-form label {
  font-size: 15px;
  font-weight: normal;
  color: #3c3c3c;
}

.profile .editfield {
  margin-top: 30px;
}

#buddypress .standard-form .field-visibility-settings label {
  font-size: 13px;
}

#item-body table tr td input[type="radio"] {
  display: none;
}

#item-body table.notification-settings {
  border-collapse: collapse;
  width: 55%;
}

#item-body table.notification-settings tr {
  height: 35px;
  border-bottom: 1px solid #ddd;
  line-height: 35px;
}

#item-body table.notification-settings tr .title {
  font-weight: 700;
  font-size: 18px;
}

#item-body #settings-form p {
  color: #a5a5a5;
  font-style: italic;
  font-size: 14px;
}

#item-body table tr td input[type="radio"]:checked ~ label {
  background: #bf1e2e;
}

#item-body table.notification-settings tr td label {
  width: 19px;
  height: 11px;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: block;
  position: relative;
  padding-top: 8px;
  cursor: pointer;
  margin: 0;
  top: 13px;
  left: 16px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#item-body table tr td input[type="radio"]:checked ~ label:before {
  content: "";
  background: url(../images/dummy/new-sprite.png) -4px -835px no-repeat;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 2px;
}

#buddypress .standard-form textarea#message_content {
  background: #fafafa;
  border: 1px solid #eeefee !important;
  outline: none;
}

#buddypress div#message p {
  font-weight: 400;
  margin-top: 3px;
  text-decoration: none;
  color: #404040;
  border: none;
  background: none;
}

#sitewide-notice p {
  font-weight: 400;
  margin-top: 3px;
  text-decoration: none;
  color: #404040;
  border: none;
  background: none;
}

#item-body .profile h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px !important;
}

#item-body .profile table.profile-fields {
  border-collapse: collapse;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 15px;
}

#item-body .profile table.profile-fields tr {
  border-bottom: 1px solid #ddd;
}

#item-body .profile table.profile-fields tr td {
  font-weight: normal;
  background: none;
  border-right: 1px solid #ddd;
}

#item-body .profile table.profile-fields tr td:last-child {
  border: none;
}

#item-body .profile table.profile-fields tr td.data a {
  color: #31bbf5;
}

#item-body .bp-avatar-nav .avatar-nav-items {
  margin-left: 0;
}

#item-body .profile p a {
  color: #31bbf5;
}

#item-body .profile .drag-drop-buttons input {
  border: none !important;
  color: #fff;
  background-color: #bf1e2e;
  font-size: 16px;
  height: 35px;
  line-height: 28px;
  border-radius: 3px;
}

#item-body .profile .bp-cover-image-status p.warning {
  border: none;
  background: none;
  color: #a5a5a5;
  font-style: italic;
  font-size: 14px;
}

#item-body .profile .bp-cover-image {
  margin-top: 20px;
}

#item-body #notifications-bulk-management #notification-select {
  width: 160px;
  height: 35px;
  padding: 0 10px;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  background-repeat: no-repeat;
  background-image: url(../images/dummy/new-sprite.png);
  color: #5d5d5d;
  border: 2px solid #eeefee;
  background-position: 114px -1647px;
  background-color: #fafafa;
  margin-left: 10px;
}

#item-body #notifications-bulk-management #notification-bulk-manage {
  border: none !important;
  color: #fff;
  background-color: #bf1e2e;
  font-size: 16px;
  height: 34px;
  opacity: 1;
  border-radius: 3px;
  line-height: 19px;
  cursor: pointer;
}

#item-body form .notifications {
  border-collapse: collapse;
  margin-bottom: 20px;
}

#item-body form .notifications tr {
  background: none !important;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

#item-body form .notifications tr th {
  font-weight: 700;
}

#item-body form .notifications tr td a {
  color: #31bbf5;
}

#item-body form .notifications tr td:nth-child(2) {
  width: 50px;
}

#item-body form .notifications tr input[type="checkbox"] {
  display: none;
}

#item-body form .notifications tr td label span, #item-body form .notifications tr th label {
  width: 19px;
  height: 4px;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: block;
  position: relative;
  padding-top: 16px;
  cursor: pointer;
  margin: 0;
  top: 0;
  left: 16px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#item-body form .notifications tr td input[type="checkbox"]:checked ~ span, #item-body form .notifications tr th input[type="checkbox"]:checked ~ label {
  background: #bf1e2e;
}

#item-body form .notifications tr td input[type="checkbox"]:checked ~ span:before, #item-body form .notifications tr th input[type="checkbox"]:checked ~ label:before {
  content: "";
  background: url(../images/dummy/new-sprite.png) -4px -835px no-repeat;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 2px;
}

#item-body table.profile-settings {
  border-collapse: collapse;
  width: 55%;
  border: 1px solid #ddd;
}

#item-body table.profile-settings tr {
  background: none !important;
  border-bottom: 1px solid #ddd;
  height: 52px;
}

#item-body table.profile-settings tr th {
  font-weight: 700;
  line-height: 52px;
}

#item-body table.profile-settings tr td {
  background: none !important;
}

#item-body table.profile-settings tr td:last-child {
  text-align: center;
}

#item-body table.profile-settings tr td select {
  width: 150px;
  height: 35px;
  padding: 0 10px;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 16px;
  background-repeat: no-repeat;
  background-image: url(../images/dummy/new-sprite.png);
  color: #5d5d5d;
  border: 2px solid #eeefee;
  background-position: 104px -1647px;
  background-color: #fafafa;
  margin-left: 10px;
}

#item-body table.profile-settings tr td select:focus {
  background-repeat: no-repeat;
  background-image: url(../images/dummy/new-sprite.png);
  background-position: 104px -1651px;
}

#item-body .profile .bp-cover-image-manage .button {
  border: none !important;
  color: #fff;
  background-color: #bf1e2e;
  font-size: 16px;
  height: 35px;
  line-height: 35px;
  border-radius: 3px;
}

#item-body .profile .bp-cover-image-manage .button:hover {
  background: #bf1e2e;
}

#item-body .profile .bp-cover-image-manage .button:before, #item-body .profile .bp-cover-image-manage .button:after {
  display: none;
}

#item-body .profile fieldset ul li input[type="radio"] {
  display: none;
}

#item-body .profile fieldset ul li span.hg-radio-placeholder {
  width: 19px;
  height: 19px;
  border-radius: 3px;
  border: 1px solid #ddd;
  display: block;
  position: relative;
  cursor: pointer;
  margin: 0;
  top: 0;
  left: 0;
  float: left;
  margin-right: 10px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#item-body .profile fieldset ul li label {
  display: inline-block;
  cursor: pointer;
}

#item-body .profile fieldset ul li input[type="radio"]:checked ~ .hg-radio-placeholder {
  background: #bf1e2e;
}

#item-body .profile fieldset ul li input[type="radio"]:checked ~ .hg-radio-placeholder:before {
  content: "";
  background: url(../images/dummy/new-sprite.png) -4px -835px no-repeat;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 2px;
}

#buddypress ul.button-nav li {
  margin: 0 10px 0 0;
}

#buddypress .standard-form a.clear-value {
  width: 100px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 3px;
  background-color: #bf1e2e;
  text-decoration: none;
  color: #fff;
  margin: 10px 0;
}

#buddypress .field-visibility-settings a, #buddypress .field-visibility-settings-toggle a {
  color: #31bbf5;
}

.avatar-nav-items li a {
  color: #31bbf5;
}

#item-body .profile form ul li.current a {
  border: none !important;
  color: #fff;
  background-color: #bf1e2e;
  font-size: 16px;
  height: 35px;
  border-radius: 3px;
  font-weight: normal;
}

#item-body .profile form ul li a {
  height: 100%;
  color: #5d5d5d;
  line-height: 25px;
  text-align: center;
  font-size: 18px;
  border: none;
  background-color: #fff;
  border-radius: 3px;
}

#item-body .profile form ul li a:hover {
  border: none;
  background-color: #f9f9f9;
}

#item-body .profile form ul li.current a:hover {
  background-color: #bf1e2e;
}

#item-body .profile h2 {
  font-size: 28px;
}

#avatar-crop-actions a, #item-body .profile p a.button {
  border: none !important;
  color: #fff !important;
  background-color: #bf1e2e !important;
  border-radius: 3px;
  font-size: 16px !important;
  height: 35px;
  padding: 0 10px;
  line-height: 35px;
}

#avatar-crop-actions a:hover {
  background-color: #e21c30 !important;
}

#buddypress .standard-form a.clear-value:hover, #buddypress .standard-form div.submit input:hover {
  background-color: #e21c30 !important;
}

#item-body .profile .drag-drop-buttons input:hover, #item-body .profile .bp-cover-image-manage .button:hover, #item-body .profile p a.button:hover {
  background-color: #e21c30 !important;
}

#bbpress-forums fieldset.bbp-form .bbp-submit-wrapper button:hover, .bbp-forum-index-ask-question-inner-wrapper form div.bbp-submit-wrapper button:hover {
  background-color: #e21c30 !important;
}

#avatar-crop-actions a:before, #avatar-crop-actions a:after {
  display: none !important;
}

#item-body .profile p a.button:before, #item-body .profile p a.button:after {
  display: none !important;
}

#buddypress p.warning {
  background-color: #fd9a00;
  border: 1px solid #FF5722;
  color: #fff;
}

body.profile_page_bp-profile-edit.modal-open #TB_ajaxContent p.warning, body.users_page_bp-profile-edit.modal-open #TB_ajaxContent p.warning {
  background-color: #fd9a00;
  border: 1px solid #FF5722;
  color: #fff;
}

#item-body .profile p a.button {
  text-align: center;
}

#buddypress .dir-search form input[type="text"] {
  height: 35px;
  border-radius: 3px;
  padding: 0 10px;
  outline: none;
  background: #fff;
}

#buddypress div.dir-search {
  position: relative;
}

#buddypress #members-dir-search {
  margin-top: 15px;
  top: 37px;
}

#buddypress #members-dir-search ~ form #subnav {
  position: relative;
  margin: 30px 0 0 0;
}

#buddypress #members-dir-list {
  position: relative;
  top: -7px;
}

#buddypress .dir-search form input[type="submit"] {
  width: 30px;
  height: 35px;
  position: absolute;
  top: 1px;
  right: 4px;
  border: none;
  font-size: 0;
  background: url(../images/dummy/new-sprite.png) -4px -1813px no-repeat;
}

#buddypress #members-directory-form .item-list-tabs ul li a {
  background-color: #bf1e2e !important;
  color: #fff !important;
  height: 30px;
  line-height: 30px;
  border-radius: 3px;
}

#buddypress #members-directory-form .item-list-tabs ul li a span {
  background-color: #fff !important;
  color: #bf1e2e !important;
  font-weight: 700;
  padding: 3px 7px !important;
}

#buddypress #members-directory-form .pag-count {
  padding-left: 8px;
  color: #a5a5a5;
  font-style: italic;
  font-size: 14px;
}

#buddypress #members-directory-form #members-list li .item-avatar {
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: 2px solid #1ebf29;
  float: left;
  margin-right: 10px;
}

#buddypress #members-directory-form #members-list li .item .item-title a {
  text-decoration: none;
  margin-left: 10px;
  font-weight: 700;
  color: #818181;
  font-size: 18px;
}

#buddypress #members-directory-form #members-list li .item-avatar a {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

#buddypress #members-directory-form #members-list li .item-avatar a img {
  width: inherit;
  height: auto;
  vertical-align: middle;
}

#subscription-toggle, #favorite-toggle {
  font-size: 14px;
}

#subscription-toggle a, #favorite-toggle a {
  text-decoration: none;
  color: #fff;
}

#subscription-toggle a:hover, #favorite-toggle a:hover {
  text-decoration: underline;
}

#buddypress #profile-edit-form ul.button-nav {
  margin-left: 0;
}

@media screen and (max-width: 500px) {
  html {
    font-size: 16px;
  }
  .hg-login-modal-container {
    width: 350px;
  }
  .hg-login-modal-input input[type="text"], .hg-login-modal-input input[type="password"] {
    width: 200px;
  }
  .hg-login-modal-input span {
    left: 31px;
  }
  .hg-login-modal-input label sup {
    right: 92px;
  }
  .hg-login-modal-input input[type="text"]:focus ~ span, .hg-login-modal-input input[type="password"]:focus ~ span {
    width: 220px;
  }
  .hg-login-modal-input label {
    left: 12%;
  }
  .modal-auth--forgot-password {
    right: 47px;
  }
  .-layout #hg-login-button-login-submit, .hg-login-modal-body-content .-center-center, .signup-social, .hg-login-modal-content .-button .signup-button {
    width: 200px;
  }
}

@media screen and (max-width: 382px) {
  .hg-login-modal-container, .hg-login-modal-body-content .login .modal-auth--social-button {
    width: 275px;
  }
  .modal-auth--forgot-password {
    top: -24px;
  }
  .hg-login-modal-input span {
    left: 0;
  }
  .hg-login-modal-input label {
    left: 3%;
  }
  .hg-login-modal-input label sup {
    right: 53px;
  }
  .hg-login-modal-footer {
    padding-bottom: 20px;
  }
  .hg-login-modal-footer .-flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .hg-login-modal-footer .-layout span {
    margin-right: 10px;
  }
  .-layout #hg-login-button-login-submit .button--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    line-height: 6px;
    border: none;
  }
}

@media screen and (max-width: 782px) {
  #buddypress #item-header-cover-image #item-header-avatar {
    width: 115px !important;
  }
}

@media screen and (max-width: 960px) {
  .bbp-forum-index-main-forum-list-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .bbp-forum-index-main-forum-list-wrapper ul li {
    margin: 10px !important;
  }
  #bbp_topic_search {
    left: 5%;
  }
}

.wp-core-ui .button-group.button-small .button, .wp-core-ui .button.button-small {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*<<<<<<Blog styles>>>>>>>*/
#blog_page_wrapper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar_container {
  margin-top: 40px;
}

/*<<<<<<Blog styles>>>>>>>*/
/*<<<<<<<<<Frontend style>>>>>>>>>>*/
#single_page_primary .bbp-forum-index-ask-question-inner-wrapper {
  top: 30%;
}

#single_page_primary .bbp-forum-index-ask-question-wrapper .hg_login_button_wrapper,
#single_page_primary .bbp-forum-index-ask-question-wrapper .hg_signup_button_wrapper {
  width: 100% !important;
  line-height: 35px;
  text-align: center;
  background-color: #fff;
  font-size: 16px;
  border-radius: 0px;
  cursor: auto;
  margin: 0px;
}

.bbp-forum-index-ask-question-inner-wrapper {
  text-align: center;
}

.bbp-forum-index-ask-question-inner-wrapper .ask-question-or {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 20px auto;
  font-style: normal;
  position: relative;
  border-bottom: 1px solid #ddd;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bbp-forum-index-ask-question-inner-wrapper .ask-question-or i {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  background-color: #fff;
  font-style: normal;
}

.bbp-forum-index-ask-question-wrapper {
  width: auto !important;
  overflow: auto;
  margin-right: -32px;
}

.bbp-forum-index-ask-question-wrapper .hg_signup_button_wrapper {
  width: 75% !important;
  line-height: 35px;
  text-align: center;
  background-color: #1bbc45;
  font-size: 16px;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  margin: 22px auto 10px auto;
}

.bbp-forum-index-ask-question-wrapper .hg_signup_button_wrapper:hover {
  background-color: #09d93f;
}

.hg-login-popup-open {
  position: fixed;
  width: 100%;
}

.hg-login-popup-spinner-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 250px;
}

.hg-login-popup-spinner {
  width: 100px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hg-login-popup-spin {
  width: 8px;
  height: 8px;
  background-color: #737373;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: hg-popup-bouncedelay 1.7s infinite ease-in-out both;
  animation: hg-popup-bouncedelay 1.7s infinite ease-in-out both;
  margin-right: 5px;
}

.hg-login-popup-spin.hg-spinner-1 {
  -webkit-animation-delay: -0.60s;
  animation-delay: -0.60s;
}

.hg-login-popup-spin.hg-spinner-2 {
  -webkit-animation-delay: -0.40s;
  animation-delay: -0.40s;
}

.hg-login-popup-spin.hg-spinner-3 {
  -webkit-animation-delay: -0.20s;
  animation-delay: -0.20s;
}

#sales-popup-notice-section {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.sales-popup-close-popup:hover #sales-popup-notice-section {
  opacity: 1;
}

@-webkit-keyframes hg-popup-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hg-popup-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*<<<<<<<<<Sub plugin style>>>>>>>>>>*/
.sub-plugin-banner {
  font-family: 'Roboto', sans-serif;
  width: 100%;
  max-width: 1026px;
  margin: 0 auto;
}

.sub-plugin-banner .sub-plugin-block .item {
  background-color: #faf9f9;
  border-radius: 3px;
  border: 1px solid #dcdcdc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 25px 0;
}

.sub-plugin-banner .sub-plugin-block .item .text-block h3 {
  font-size: 24px;
  color: #8f8d8d;
  margin: 25px 10px 0 42px;
  font-weight: 100;
  line-height: 23px;
}

.sub-plugin-banner .sub-plugin-block .item .text-block h3 span {
  font-weight: 400;
}

.sub-plugin-banner .sub-plugin-block .item .text-block p {
  margin: 10px 10px 0 42px;
  color: #8f8d8d;
  font-size: 16px;
  font-weight: 300;
}

.sub-plugin-banner .sub-plugin-block .item .text-block a {
  background-color: #bf1e2e;
  text-decoration: none;
  color: #fff;
  padding: 0 20px;
  height: 35px;
  display: inline-block;
  line-height: 35px;
  border-radius: 35px;
  font-size: 16px;
  text-align: center;
  margin: 22px 0 19px 42px;
}

.sub-plugin-banner .sub-plugin-block .item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-plugin-banner .sub-plugin-block .item-block .item {
  margin-right: 9px;
}

.sub-plugin-banner .sub-plugin-block .item-block .item:last-child {
  margin-right: 0;
}

.sub-plugin-banner .sub-plugin-block .item-block .item .text-block h3 {
  font-size: 18px;
  line-height: 23px;
}

.sub-plugin-banner .sub-plugin-block .item .image-1 {
  width: 189px;
  height: 107px;
  margin-right: 42px;
}

.sub-plugin-banner .sub-plugin-block .item .image-2 {
  width: 104px;
  height: 101px;
  margin-right: 42px;
}

.sub-plugin-banner .sub-plugin-block .item .image-3 {
  width: 86px;
  height: 109px;
  margin-right: 42px;
}

.sub-plugin-banner .sub-plugin-block .item .image-4 {
  width: 276px;
  height: 104px;
  margin-right: 42px;
}

@media screen and (max-width: 780px) {
  .sub-plugin-banner .sub-plugin-block .item-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .sub-plugin-banner .sub-plugin-block .item-block .item {
    width: 100%;
    margin-right: 0;
  }
  .sub-plugin-banner .sub-plugin-block .item .text-block h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .sub-plugin-banner .sub-plugin-block .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .sub-plugin-banner .sub-plugin-block .item .img {
    margin: 15px 0;
  }
  .sub-plugin-banner .sub-plugin-block .text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .sub-plugin-banner .sub-plugin-block .item .text-block a, .sub-plugin-banner .sub-plugin-block .item-block .text-block a {
    margin: 15px 0;
  }
}

/** All plugins banner */
.wp_all_plugins_banner {
  padding: 0;
  background-image: url(../images/all_plugins_banner.jpg);
  background-size: cover;
}

.wp_all_plugins_banner h2 {
  position: relative;
  display: table;
  margin: 0 auto 14px auto;
  padding: 23px 0 7px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 56.72px;
  color: #ffffff;
  line-height: 65px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 5px #fbfbfb, 0 5px 5px #000000;
}

.wp_all_plugins_banner h3 {
  position: relative;
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0 0 43px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #bf1e2e;
  line-height: 35px;
  text-align: center;
}

.wp_all_plugins_banner h3:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 66.8%;
  height: 1px;
  background-image: -webkit-gradient(linear, right top, left top, from(#bf1e2e), to(transparent));
  background-image: linear-gradient(to left, #bf1e2e, transparent);
}

.wp_all_plugins_banner h3:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 66.8%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#bf1e2e), to(transparent));
  background-image: linear-gradient(to right, #bf1e2e, transparent);
}

.wp_all_plugins_banner p {
  width: 959px;
  margin: 18px auto 14px auto;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 27px;
  text-align: center;
}

.wp_all_plugins_banner p.semibold {
  font-size: 24px;
}

.wp_all_plugins_banner .link_block {
  text-align: center;
  font-size: 0;
}

.wp_all_plugins_banner a {
  margin: 40px 0 33px 0;
}

.wp_all_plugins_banner a:link, .wp_all_plugins_banner a:visited {
  margin: 40px 0 33px 0;
}

/*<<<<<<<<<<<< pricing table >>>>>>>>>>>>>>>>*/
.huge_it_pricing_table {
  display: table;
  margin: 50px auto 80px;
}

.huge_it_pricing_table table {
  border-collapse: collapse;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 800px;
}

.huge_it_pricing_table table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.huge_it_pricing_table table tr td p {
  width: 95%;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px dashed #e1e1e1;
  padding: 7px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.huge_it_pricing_table table tbody tr td .col .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.huge_it_pricing_table table tbody tr td .col .text h3 {
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #bf1e2e;
  margin: 6px 0;
}

.huge_it_pricing_table table tbody tr td .col .text h4 {
  font-family: 'Roboto Regular', sans-serif;
  font-size: 16px;
  color: #989293;
  line-height: 14px;
  margin-bottom: 16px;
}

.huge_it_pricing_table table tbody tr:first-child td:first-child .col {
  border-top: 1px solid #cbcbcb;
  height: calc(100% + 1px);
}

.huge_it_pricing_table table tbody tr:first-child td .col .best {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 50px;
  height: 49px;
  background: url(../images/huge-it-template-icons.png) -150px -544px;
  display: none;
}

.huge_it_pricing_table table tr td {
  width: 205px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.huge_it_pricing_table table tbody tr:nth-child(2) td .col p {
  border-top: 1px dashed #e1e1e1;
}

.huge_it_pricing_table table tbody tr:nth-child(2) td:first-child .col {
  border-top: 1px solid #cbcbcb;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.huge_it_pricing_table table tbody tr:nth-child(2) td:first-child .col p {
  border-top: none;
}

.huge_it_pricing_table table tbody tr td .col {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  width: 195px;
  border-right: 1px solid #cbcbcb;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 5px;
  border-left: 1px solid #cbcbcb;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #524040;
  text-indent: 2px;
  overflow: hidden;
  position: relative;
}

.huge_it_pricing_table table .first td .col {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  width: 195px;
  border-right: 1px solid #cbcbcb;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 5px;
  border-left: 1px solid #cbcbcb;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #524040;
  text-indent: 2px;
  overflow: hidden;
  position: relative;
}

.huge_it_pricing_table table tbody tr:first-child td .col {
  height: calc(100% + 2px);
  border-top: 1px solid #cbcbcb;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.huge_it_pricing_table table tbody tr:last-child p {
  border-bottom: none;
}

.huge_it_pricing_table table .first td .col {
  border: none;
  background-color: #bf1e2e;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  padding: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.huge_it_pricing_table table .first.col:hover {
  background-color: #e0041a;
}

.huge_it_pricing_table table .first a {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  height: 33px;
  line-height: 33px;
}

.huge_it_pricing_table table .first label {
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  height: 33px;
  line-height: 33px;
  text-align: left;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5px;
}

.huge_it_pricing_table table .first label:after {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  right: 26px;
  width: 15px;
  height: 9px;
  background: url(../images/huge-it-template-icons.png) -147px -614px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.huge_it_pricing_table input[type="checkbox"] {
  display: none;
}

.huge_it_pricing_table table thead {
  display: table;
}

.huge_it_pricing_table table thead tr.first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.huge_it_pricing_table table thead tr td {
  width: 205px;
  padding: 0;
  display: table;
}

.huge_it_pricing_table table tr td p span {
  display: block;
  margin: auto;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.huge_it_pricing_table table tr td:first-child .col p {
  -webkit-box-pack: inherit;
  -ms-flex-pack: inherit;
  justify-content: inherit;
  text-align: left;
}

.huge_it_pricing_table table tr td p span.check {
  background: url(../images/huge-it-template-icons.png) -63px -301px;
}

.huge_it_pricing_table table tr td p span.uncheck {
  background: url(../images/huge-it-template-icons.png) -63px -328px;
}

.huge_it_pricing_table label {
  cursor: pointer;
  text-align: center;
}

.huge_it_pricing_table input[type="checkbox"]:checked ~ table tbody {
  height: 169px;
  overflow: hidden;
  width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.huge_it_pricing_table input[type="checkbox"]:checked ~ table .first label:after {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.free tbody tr td:nth-child(2) .col, .personal tbody tr td:nth-child(3) .col, .multi tbody tr td:nth-child(4) .col, .developer tbody tr td:nth-child(5) .col {
  border-color: #bf1e2e !important;
}

.free tbody tr td:nth-child(2) .col .best, .personal tbody tr td:nth-child(3) .col .best, .multi tbody tr td:nth-child(4) .col .best, .developer tbody tr td:nth-child(5) .col .best {
  display: block !important;
}

@media screen and (max-width: 1060px) {
  .huge_it_pricing_table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow-x: auto;
  }
  .huge_it_pricing_table table tbody tr td .col, .huge_it_pricing_table table .first td .col {
    width: 150px;
  }
  .huge_it_pricing_table table tr td {
    width: 160px !important;
  }
  .huge_it_pricing_table input[type="checkbox"]:checked ~ table tbody {
    height: 202px;
    overflow: hidden;
    width: 800px;
  }
  .huge_it_pricing_table table .first label, .huge_it_pricing_table table .first a {
    font-size: 14px;
  }
  .huge_it_pricing_table table .first label:after {
    right: 12px;
  }
  .huge_it_pricing_table table tbody tr td .col .text h3 {
    font-size: 15px;
  }
  .huge_it_pricing_table table tbody tr td .col .text h4 {
    font-size: 14px;
  }
}

.-invoice {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #000;
}

.-invoice .invoice-number-label {
  display: block;
  position: relative;
  max-width: 100%;
  color: #999;
  line-height: 1.2em;
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 300;
}

.-invoice .invoice-number {
  font-size: 36px;
  font-weight: 200;
  line-height: 1em;
}

.-invoice .invoice-group {
  max-width: none;
  margin: 30px 0 0;
  display: table;
}

.-invoice dt {
  display: block;
  position: relative;
  max-width: 100%;
  color: #999;
  font-weight: 500;
  line-height: 1.2em;
  clear: both;
  float: left;
  width: 100%;
  margin-bottom: 0;
  font-size: 12px;
}

.-invoice dd {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dotted #DDD;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.2em;
}

.-invoice .line-items {
  margin: 30px 0 0;
}

.-invoice .line-items .list {
  width: 100%;
  margin-bottom: 2px;
  border-spacing: 0;
  border-radius: 3px;
  font-size: 14px;
}

.-invoice .line-items .list th {
  border-bottom: 1px solid #E6E6E6;
  font-size: 14px;
  text-align: left;
  padding: 5px 10px 5px 0;
  color: #888;
  font-weight: 700;
  vertical-align: bottom;
}

.line-items .list th:last-child, .line-items .list td:last-child {
  padding: 5px 0 5px 10px;
  text-align: right;
}

.line-items .list th:first-child {
  border-radius: 6px 0 0 0;
}

.-invoice .line-items .list tr {
  margin: 0;
  border-bottom: none;
  text-align: left;
  font-weight: 300;
  padding: 5px 10px 5px 0;
  border-top: 2px solid #FFF;
}

.-invoice .line-items .totals th, .-invoice .line-items .totals td {
  border-top: 1px dotted #E6E6E6;
  border-bottom: none;
}

.-invoice .line-items .totals th {
  font-weight: 700;
  padding-top: 10px;
  color: #333;
}

.-invoice .line-items .totals td {
  padding-top: 10px;
  color: #333;
  border-bottom: none;
  font-size: 21px;
  font-weight: 700;
}

#sales-popup-content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100;
}

#sales-popup-content-inner {
  position: absolute;
  width: 500px;
  height: 370px;
  background-color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-box-shadow: 0 32px 63px 5px rgba(138, 138, 138, 0.53);
          box-shadow: 0 32px 63px 5px rgba(138, 138, 138, 0.53);
  border-radius: 11px;
}

.sales_popup_exit_popup_sale {
  position: absolute;
  left: -108px;
  top: -62px;
}

.sales_popup_offer {
  position: absolute;
  width: 62px;
  top: 51px;
  left: -88px;
  height: 23px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  display: block;
}

.sales_popup_first_title, .sales_popup_second_title {
  color: #fff;
  position: absolute;
  font-weight: 400;
  display: block;
}

.sales_popup_first_title {
  top: 0px;
  left: -11px;
  width: 121px;
  height: 36px;
  font-size: 50px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}

.sales_popup_second_title {
  top: 60px;
  left: 16px;
  width: 83px;
  height: 34px;
  font-size: 40px;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  display: block;
}

.sales_popup_close_btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 999999;
}

.sales_popup_offer_details {
  width: 277px;
  height: 83px;
  color: #2f2f2f;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin-left: 180px;
  padding-top: 21px;
}

.sales_popup_all_plugins, .sales_popup_offer_content {
  position: absolute;
  margin-left: 37px;
}

.sales_popup_all_plugins {
  margin-top: 72px;
  width: 435px;
  height: 17px;
  color: #ac2537;
  font-size: 18px;
  font-weight: 400;
}

.sales_popup_offer_content {
  margin-top: 20px;
  width: 433px;
  height: 66px;
  color: #767d83;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  top: 200px;
}

.sales_popup_get_now, .sales_popup_notice_content {
  position: absolute;
  color: #fff;
  font-weight: 400;
}

.sales_popup_get_now {
  padding: 12px 43px;
  height: 25px;
  border-radius: 7px;
  background-color: #dd1629;
  font-size: 18px;
  text-decoration: none;
  top: 310px;
  left: 176px;
}

.sales_popup_purple_bg {
  position: absolute;
  width: 329px;
  height: 32px;
  top: -40px;
  left: 156px;
}

.sales_popup_notice_content {
  top: -33px;
  left: 192px;
  width: 249px;
  height: 12px;
  font-size: 12px;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.sales-popup-fixed {
  position: fixed;
  bottom: 0px;
  z-index: 100;
}

.sales_popup_close_btn_small {
  position: absolute;
  width: 11px;
  height: 11px;
  right: 10px;
  top: 10px;
}

@media (max-width: 768px) {
  .sales_popup_mobile-popup {
    position: fixed;
    bottom: 81px;
    right: 23px;
  }
  .sales_popup_mobile-popup img {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .sales_popup_first_title, .sales_popup_second_title {
    color: #fff;
    font-family: "Nunito Sans";
    font-weight: 400;
    position: absolute;
    display: block;
  }
  #sales-popup-content {
    position: fixed;
  }
  .sales_popup_exit_popup_sale, .sales_popup_first_title, .sales_popup_offer {
    position: absolute;
  }
  .sales_popup_second_title {
    position: absolute;
    top: 20px;
    left: 11px;
    width: 83px;
    height: 34px;
    font-size: 26px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  .sales_popup_first_title {
    top: -13px;
    left: -1px;
    width: 121px;
    height: 36px;
    font-size: 27px;
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  .sales_popup_offer {
    width: 62px;
    top: 17px;
    left: -47px;
    font-size: 18px;
  }
  .sales_popup_exit_popup_sale {
    left: -55px;
    top: -42px;
    width: 46%;
  }
  #sales-popup-content-inner {
    width: 329px;
    height: 286px;
  }
  .sales_popup_offer_details {
    width: 200px;
    height: 83px;
    font-size: 14px;
    margin-left: 112px;
    padding-top: 16px;
    font-weight: 500;
    left: -183px !important;
  }
  .sales_popup_close_btn {
    right: 11px;
    top: 9px;
    width: 3%;
  }
  .sales_popup_all_plugins {
    margin-left: 14px;
    margin-top: 0;
    font-size: 13px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 24px;
    margin-top: -75px;
    width: 305px;
  }
  .sales_popup_purple_bg {
    width: 249px;
    left: 84px;
  }
  .sales_popup_notice_content {
    left: 92px;
  }
  .sales_popup_get_now {
    top: 219px;
    left: 106px;
    padding: 9px 34px;
  }
  .sales_popup_mobile-popup {
    right: 9px;
  }
  .sales_popup_mobile-popup img {
    width: 100%;
  }
}

@media (max-width: 375px) {
  #sales-popup-content {
    position: fixed;
  }
  #sales-popup-content-inner {
    width: 296px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -48px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: -4px !important;
    left: -44px;
    font-size: 12px !important;
  }
  .sales_popup_first_title {
    top: -28px !important;
    left: -4px !important;
    font-size: 18px;
  }
  .sales_popup_second_title {
    top: -5px !important;
    left: 5px !important;
    font-size: 17px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 94px;
    padding-top: 16px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 65px;
  }
  .sales_popup_notice_content {
    left: 70px;
    font-size: 10px;
  }
  .sales_popup_mobile-popup img {
    width: 100%;
  }
}

@media (max-width: 320px) {
  #sales-popup-content {
    position: fixed;
  }
  #sales-popup-content-inner {
    width: 268px;
    height: 226px;
  }
  .sales_popup_exit_popup_sale {
    left: -43px !important;
    top: -29px !important;
    width: 44% !important;
  }
  .sales_popup_offer {
    top: 17px !important;
    left: -35px;
    font-size: 14px;
  }
  .sales_popup_first_title {
    top: -9px !important;
    left: 0px !important;
    font-size: 21px !important;
  }
  .sales_popup_second_title {
    font-size: 23px !important;
    top: 18px !important;
    left: 10px !important;
  }
  .sales_popup_offer_details {
    font-size: 12px;
    margin-left: 80px;
    width: 174px;
  }
  .sales_popup_all_plugins {
    margin-left: 9px;
    margin-top: -27px;
    font-size: 11px;
  }
  .sales_popup_offer_content {
    font-size: 11px;
    margin-top: -104px;
    width: 238px;
  }
  .sales_popup_get_now {
    top: 183px;
    font-size: 14px;
    padding: 5px 21px;
  }
  .sales_popup_purple_bg {
    width: 199px;
  }
  .sales_popup_notice_content {
    left: 70px;
    font-size: 9px;
    top: -34px;
  }
}

@media (max-width: 1920px) and (min-width: 1525px) {
  .sales_popup_offer_details {
    margin-left: 347px;
    position: relative;
    left: -152px;
  }
}

@media (max-width: 1524px) {
  .sales_popup_offer_details {
    margin-left: 290px;
    position: relative;
    left: -103px;
  }
}

@media (max-width: 1453px) {
  .sales_popup_offer_details {
    left: -80px;
  }
}

@media (max-width: 1353px) {
  .sales_popup_offer_details {
    left: -97px;
  }
}

@media (max-width: 608px) and (min-width: 550px) {
  #sales-popup-content-inner {
    width: 318px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -51px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: 12px;
    left: -44px;
    font-size: 17px;
  }
  .sales_popup_first_title {
    top: -19px;
    left: -5px;
    font-size: 26px;
  }
  .sales_popup_second_title {
    top: 9px;
    left: 5px;
    font-size: 25px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 190px;
    padding-top: 16px;
    width: 207px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 87px;
  }
  .sales_popup_notice_content {
    left: 97px;
    font-size: 10px;
  }
  .sales_popup_close_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 3%;
  }
}

@media (max-width: 549px) and (min-width: 481px) {
  #sales-popup-content {
    left: 95px;
    bottom: 350px;
    width: 318px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -51px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: 12px;
    left: -44px;
    font-size: 17px;
  }
  .sales_popup_first_title {
    top: -19px;
    left: -5px;
    font-size: 26px;
  }
  .sales_popup_second_title {
    top: 10px;
    left: 5px;
    font-size: 25px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 190px;
    padding-top: 16px;
    width: 207px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 90px;
  }
  .sales_popup_notice_content {
    left: 100px;
    font-size: 10px;
  }
  .sales_popup_close_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 3%;
  }
}

@media (max-width: 480px) and (min-width: 415px) {
  #sales-popup-content-inner {
    width: 318px;
    height: 254px;
  }
  .sales_popup_exit_popup_sale {
    left: -51px;
    top: -42px;
    width: 44%;
  }
  .sales_popup_offer {
    top: 12px;
    left: -44px;
    font-size: 17px;
  }
  .sales_popup_first_title {
    top: -18px;
    left: -5px;
    font-size: 26px;
  }
  .sales_popup_second_title {
    top: 16px;
    left: 5px;
    font-size: 25px;
  }
  .sales_popup_offer_details {
    font-size: 15px;
    margin-left: 190px;
    padding-top: 16px;
    width: 207px;
  }
  .sales_popup_all_plugins {
    margin-left: 11px;
    margin-top: -16px;
    font-size: 12px;
  }
  .sales_popup_offer_content {
    font-size: 12px;
    margin-left: 25px;
    margin-top: -92px;
    width: 259px;
  }
  .sales_popup_get_now {
    top: 202px;
    left: 79px;
  }
  .sales_popup_purple_bg {
    width: 226px;
    left: 88px;
  }
  .sales_popup_notice_content {
    left: 100px;
    font-size: 10px;
  }
  .sales_popup_close_btn {
    position: absolute;
    right: 10px;
    top: 9px;
    width: 3%;
  }
}

@media (max-width: 400px) {
  .sales_popup_exit_popup_sale {
    width: 32%;
    left: -38px;
  }
  .sales_popup_first_title {
    font-size: 20px;
    top: -23px;
    left: 2px;
  }
  .sales_popup_second_title {
    top: 1px;
    font-size: 21px;
  }
  .sales_popup_offer {
    top: -1px;
    left: -33px;
    font-size: 13px;
  }
  .sales_popup_offer_details {
    left: -203px !important;
  }
}

/** Forums Page */
.bbp-forum-index-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bbp-forum-index-list li {
  list-style-type: none;
  width: 300px;
  background: #fff;
  -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.09);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 5px;
}

.bbp-forum-index-list li a {
  display: inline-block;
  text-decoration: none;
  color: #444;
  font-size: 18px;
}

.bbp-forum-index-list li .text-block {
  margin: 20px 0;
}

.bbp-forum-index-list li .forum-link {
  text-align: center;
  color: #FFF;
  background-color: #bf1e2e;
  -webkit-box-shadow: 0 4px 0 #981926;
          box-shadow: 0 4px 0 #981926;
  font-size: 15px;
  line-height: 1;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: -4px 0 0;
  padding: 7px 18px;
}

@media screen and (max-width: 1024px) {
  .bbp-forum-index-list {
    padding: 50px;
  }
}

@media screen and (max-width: 765px) {
  .bbp-forum-index-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*CREATE TOPICK POPUP STYLES*/
/*<<<<<<Blog styles>>>>>>>*/
/*<<<<<<<<<Frontend style>>>>>>>>>>*/
.bbp-forum-index-ask-question-inner-wrapper .ask-question-or {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 20px auto;
  font-style: normal;
  position: relative;
  border-bottom: 1px solid #ddd;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bbp-forum-index-ask-question-inner-wrapper .ask-question-or i {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  background-color: #fff;
  font-style: normal;
}

.bbp-forum-index-ask-question-wrapper {
  width: auto !important;
  overflow: auto;
  margin-right: -32px;
}

.bbp-forum-index-ask-question-wrapper .hg_signup_button_wrapper {
  width: 75% !important;
  line-height: 35px;
  text-align: center;
  background-color: #1bbc45;
  font-size: 16px;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  margin: 22px auto 10px auto;
}

.bbp-forum-index-ask-question-wrapper .hg_signup_button_wrapper:hover {
  background-color: #09d93f;
}

.hg-login-popup-open {
  position: fixed;
  width: 100%;
}

.hg-login-popup-spinner-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 250px;
}

.hg-login-popup-spinner {
  width: 100px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hg-login-popup-spin {
  width: 8px;
  height: 8px;
  background-color: #737373;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: hg-popup-bouncedelay 1.7s infinite ease-in-out both;
  animation: hg-popup-bouncedelay 1.7s infinite ease-in-out both;
  margin-right: 5px;
}

.hg-login-popup-spin.hg-spinner-1 {
  -webkit-animation-delay: -0.60s;
  animation-delay: -0.60s;
}

.hg-login-popup-spin.hg-spinner-2 {
  -webkit-animation-delay: -0.40s;
  animation-delay: -0.40s;
}

.hg-login-popup-spin.hg-spinner-3 {
  -webkit-animation-delay: -0.20s;
  animation-delay: -0.20s;
}

#sales-popup-notice-section {
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.sales-popup-close-popup:hover #sales-popup-notice-section {
  opacity: 1;
}

@-webkit-keyframes hg-popup-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes hg-popup-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

/*GRDON BY HAKOB*/
.mdc-select {
  padding-top: 7px;
  background: none !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5) !important;
}

.mdc-select:hover {
  border-color: #000 !important;
}

.mdc-text-field--textarea:not(.mdc-text-field--disabled) {
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0px;
}

.mdc-text-field--textarea .mdc-text-field__input {
  border: 0px;
}
