@charset "UTF-8";
/*

Fluid Font Size
Example Usage

h1 {
  @include fluid-font-size(28px, 54px);
}

*/
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Normalize default `font-family` and set `font-size` to support `rem` units
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 * 3. Style
 */
html {
  /* 1 */
  font: normal 16px / 26px "Poppins", sans-serif;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  background: #eee;
  color: #444;
  letter-spacing: 0.2px;
}

/*
 * Removes default margin.
 */
body {
  margin: 0;
  background: #eee;
  font-family: "Poppins", sans-serif;
}

/* Embedded content
 ========================================================================== */
/*
 * Remove the gap between embedded content and the bottom of their containers.
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Responsiveness
 * 1. Sets a maximum width relative to the parent and auto scales the height
 * 2. Corrects `max-width` behavior if padding and border are used
 */
audio,
canvas,
img,
svg,
video {
  /* 1 */
  max-width: 100%;
  height: auto;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * Preserve original dimensions
 */
.ap-img-preserve,
.ap-img-preserve audio,
.ap-img-preserve canvas,
.ap-img-preserve img,
.ap-img-preserve svg,
.ap-img-preserve video {
  max-width: none;
}

/*
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/*
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Lists
 ========================================================================== */
ul,
ol {
  padding-left: 30px;
}

/*
 * Reset margin for nested lists
 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
}

/* Description lists
 ========================================================================== */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Horizontal rules
 ========================================================================== */
/*
 * 1. Address differences between Firefox and other browsers.
 * 2. Style
 */
hr {
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 15px 0;
  border: 0;
  border-top: 1px solid #ddd;
}

/* Address
 ========================================================================== */
address {
  font-style: normal;
}

/* Blockquotes
 ========================================================================== */
blockquote {
  padding-left: 15px;
  border-left: 5px solid #ddd;
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
}

/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  padding: 10px;
  background: #f5f5f5;
  font: 12px / 18px Consolas, monospace, serif;
  color: #444;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  /* 1 */
  overflow: auto;
}

/* Selection pseudo-element
 ========================================================================== */
::-moz-selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #39f;
  color: #fff;
  text-shadow: none;
}

/* HTML5 elements
 ========================================================================== */
/*
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/*
 * Prevent displaying `audio` without controls in Chrome, Safari and Opera
 */
audio:not([controls]) {
  display: none;
}

/*
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Iframe
 ========================================================================== */
iframe {
  border: 0;
}

/* Fix viewport for IE10 snap mode
 ========================================================================== */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width;
  }
}
/* ========================================================================
   Component: Alert
 ========================================================================== */
.ap-alert {
  margin-bottom: 15px;
  padding: 15px;
  background: #ebf7fd;
  color: #444;
  position: relative;
  font-size: 15px;
  line-height: 22px;
  font-weight: bold;
}
.ap-alert .ap-close {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 1;
}

/*
 * Add margin if adjacent element
 */
* + .ap-alert {
  margin-top: 15px;
}

/*
 * Remove margin from the last-child
 */
.ap-alert > :last-child {
  margin-bottom: 0;
}

/*
 * Keep color for headings if the default heading color is changed
 */
.ap-alert h1,
.ap-alert h2,
.ap-alert h3,
.ap-alert h4,
.ap-alert h5,
.ap-alert h6 {
  color: inherit;
}

/* Close in alert
 ========================================================================== */
.ap-alert > .ap-close:first-child {
  float: right;
}

/*
 * Remove margin from adjacent element
 */
.ap-alert > .ap-close:first-child + * {
  margin-top: 0;
}

/* Modifier: `ap-alert-success`
 ========================================================================== */
.ap-alert-success {
  background: #fff;
}
.ap-alert-success .fa {
  color: #79c553;
}

/* Modifier: `ap-alert-warning`
 ========================================================================== */
.ap-alert-warning {
  background: #fff;
}
.ap-alert-warning .fa {
  color: #c57c0f;
}

/* Modifier: `ap-alert-danger`
 ========================================================================== */
.ap-alert-danger {
  background: #fff;
}
.ap-alert-danger .icon {
  color: #a31b1b;
}

/* Modifier: `ap-alert-large`
 ========================================================================== */
.ap-alert-large {
  padding: 20px;
}

.ap-alert-large > .ap-close:first-child {
  margin: -10px -10px 0 0;
}

/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*=ap-animation-] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Hide animated element if scrollspy is used */
@media screen {
  [data-ap-scrollspy*=ap-animation-]:not([data-ap-scrollspy*=target]) {
    opacity: 0;
  }
}
/*
 * Fade
 * Higher specificity (!important) needed because of reverse modifier
 */
.ap-animation-fade {
  -webkit-animation-name: ap-fade;
  animation-name: ap-fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}

/*
 * Fade with scale
 */
.ap-animation-scale-up {
  -webkit-animation-name: ap-fade-scale-02;
  animation-name: ap-fade-scale-02;
}

.ap-animation-scale-down {
  -webkit-animation-name: ap-fade-scale-18;
  animation-name: ap-fade-scale-18;
}

/*
 * Fade with slide
 */
.ap-animation-slide-top {
  -webkit-animation-name: ap-fade-top;
  animation-name: ap-fade-top;
}

.ap-animation-slide-bottom {
  -webkit-animation-name: ap-fade-bottom;
  animation-name: ap-fade-bottom;
}

.ap-animation-slide-left {
  -webkit-animation-name: ap-fade-left;
  animation-name: ap-fade-left;
}

.ap-animation-slide-right {
  -webkit-animation-name: ap-fade-right;
  animation-name: ap-fade-right;
}

/*
 * Scale
 */
.ap-animation-scale {
  -webkit-animation-name: ap-scale-12;
  animation-name: ap-scale-12;
}

/*
 * Shake
 */
.ap-animation-shake {
  -webkit-animation-name: ap-shake;
  animation-name: ap-shake;
}

/* Direction modifiers
 ========================================================================== */
.ap-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Duration modifiers
========================================================================== */
.ap-animation-15 {
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
}

/* Origin modifiers
========================================================================== */
.ap-animation-top-left {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.ap-animation-top-center {
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.ap-animation-top-right {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.ap-animation-middle-left {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.ap-animation-middle-right {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.ap-animation-bottom-left {
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}

.ap-animation-bottom-center {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.ap-animation-bottom-right {
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

/* Sub-object: `ap-animation-hover`
========================================================================== */
/*
 * Enable animation only on hover
 * Note: Firefox also needs this because animations are not triggered when switching between display `hidden` and `block`
 */
.ap-animation-hover:not(:hover),
.ap-animation-hover:not(:hover) [class*=ap-animation-],
.ap-touch .ap-animation-hover:not(.ap-hover),
.ap-touch .ap-animation-hover:not(.ap-hover) [class*=ap-animation-] {
  -webkit-animation-name: none;
  animation-name: none;
}

/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */
@-webkit-keyframes ap-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ap-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Keyframes: Fade with slide
 ========================================================================== */
/*
 * Top
 */
@-webkit-keyframes ap-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes ap-fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Bottom
 */
@-webkit-keyframes ap-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes ap-fade-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Left
 */
@-webkit-keyframes ap-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes ap-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes ap-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes ap-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* Keyframes: Fade with scale
 ========================================================================== */
/*
 * Scale by 0.2
 */
@-webkit-keyframes ap-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes ap-fade-scale-02 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
 * Scale by 1.5
 * Used by slideshow component
 */
@-webkit-keyframes ap-fade-scale-15 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes ap-fade-scale-15 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
 * Scale by 1.8
 */
@-webkit-keyframes ap-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@keyframes ap-fade-scale-18 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.8);
            transform: scale(1.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Keyframes: Slide
 * Used by slideshow component
 ========================================================================== */
/*
 * Left
 */
@-webkit-keyframes ap-slide-left {
  0% {
    -webkit-transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes ap-slide-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Right
 */
@-webkit-keyframes ap-slide-right {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes ap-slide-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Left third
 */
@-webkit-keyframes ap-slide-left-33 {
  0% {
    -webkit-transform: translateX(33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes ap-slide-left-33 {
  0% {
    -webkit-transform: translateX(33%);
            transform: translateX(33%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*
 * Right third
 */
@-webkit-keyframes ap-slide-right-33 {
  0% {
    -webkit-transform: translateX(-33%);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes ap-slide-right-33 {
  0% {
    -webkit-transform: translateX(-33%);
            transform: translateX(-33%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* Keyframes: Scale
 ========================================================================== */
@-webkit-keyframes ap-scale-12 {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes ap-scale-12 {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* Keyframes: Rotate
 * Used by icon component
 ========================================================================== */
@-webkit-keyframes ap-rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes ap-rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
/* Keyframes: Shake
 ========================================================================== */
@-webkit-keyframes ap-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
  }
}
@keyframes ap-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(-9px);
            transform: translateX(-9px);
  }
  20% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  30% {
    -webkit-transform: translateX(-7px);
            transform: translateX(-7px);
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  60% {
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
  }
  70% {
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  90% {
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}
/* Keyframes: Fade with slide fixed
 * Used by dropdown and search component
 ========================================================================== */
/*
 * Top fixed
 */
@-webkit-keyframes ap-slide-top-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes ap-slide-top-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*
 * Bottom fixed
 */
@-webkit-keyframes ap-slide-bottom-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes ap-slide-bottom-fixed {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ========================================================================
   Component: Badge
 ========================================================================== */
.ap-badge {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 5px;
  border: 0;
  background: #333;
  font-size: 10px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}
.ap-badge + .ap-badge {
  margin-left: 2.5px;
}
.ap-badge .fa {
  color: inherit !important;
}

/*
 * Keep color when badge is a link
 */
a.ap-badge:hover {
  color: #fff;
}

/* Modifier: `ap-badge-notification`;
 ========================================================================== */
.ap-badge-notification {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #4d4c4c;
  /*	min-width: $badge-notification-line-height;
  border-radius: 500px;
  font-size: $badge-notification-font-size;
  line-height: $badge-notification-line-height;*/
}

/* Color modifier
 ========================================================================== */
/*
 * Modifier: `ap-badge-success`
 */
.ap-badge-success {
  background-color: #79c553;
}

/*
 * Modifier: `ap-badge-warning`
 */
.ap-badge-warning {
  background: #c57c0f;
  color: #fff;
}

/*
 * Modifier: `ap-badge-danger`
 */
.ap-badge-danger {
  background-color: #a31b1b;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.ap-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ap-button {
  -webkit-appearance: none;
  margin: 0;
  border: 1px solid #333;
  overflow: visible;
  font: inherit;
  color: #fff;
  text-transform: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 18px;
  background: #333;
  vertical-align: middle;
  line-height: 22px;
  min-height: 30px;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}
.ap-button + .ap-button {
  margin-left: 10px;
}

.ap-button:not(:disabled) {
  cursor: pointer;
}

.ap-button:hover,
.ap-button:focus {
  opacity: 0.75;
  color: #fff;
  outline: none;
  text-decoration: none;
}

/* Active */
.ap-button:active,
.ap-button.ap-active {
  background-color: #ddd;
  color: #444;
}

.ap-button-xl {
  line-height: 50px;
  padding: 0 25px;
}

/* Color modifiers
 ========================================================================== */
/*
 * Modifier: `ap-button-primary`
 */
.ap-button-primary {
  background-color: #333;
  color: #fff;
}

/* Hover */
.ap-button-primary:hover,
.ap-button-primary:focus {
  color: #fff;
}

/* Active */
.ap-button-primary:active,
.ap-button-primary.ap-active {
  background-color: #0091ca;
  color: #fff;
}

/*
 * Modifier: `ap-button-success`
 */
.ap-button-success {
  background-color: #333;
  color: #fff;
}

/* Hover */
.ap-button-success:hover,
.ap-button-success:focus {
  background-color: #8ec73b;
  color: #fff;
}

/* Active */
.ap-button-success:active,
.ap-button-success.ap-active {
  background-color: #72ae41;
  color: #fff;
}

.ap-button-secondary {
  background-color: transparent;
  border-color: #333;
  border: 1px solid;
  color: #333;
}

/* Hover */
.ap-button-secondary:hover,
.ap-button-secondary:focus,
.ap-button-secondary:active {
  opacity: 0.75;
  border-color: #333;
  border: 1px solid;
  color: #333;
  background-color: transparent;
}

.ap-button-clear {
  background-color: transparent;
  border-color: none;
  border: 0;
  padding: 0;
  color: #333;
}
.ap-button-clear img {
  max-width: inherit;
}

/* Hover */
.ap-button-clear:hover,
.ap-button-clear:focus {
  opacity: 1;
  border-color: none;
  border: 0;
  color: #333;
  background-color: transparent;
}
.ap-button-clear:hover img,
.ap-button-clear:focus img {
  opacity: 0.4;
}

/* Active */
.ap-button-clear:active,
.ap-button-clear.ap-active {
  background-color: transparent;
  color: #333;
}

/*
 * Modifier: `ap-button-danger`
 */
.ap-button-danger {
  background-color: #da314b;
  color: #fff;
}

/* Hover */
.ap-button-danger:hover,
.ap-button-danger:focus {
  background-color: #e4354f;
  color: #fff;
}

/* Active */
.ap-button-danger:active,
.ap-button-danger.ap-active {
  background-color: #c91032;
  color: #fff;
}

/* Disabled state
 * Overrides also the color modifiers
 ========================================================================== */
/* Equal for all button types */
.ap-button:disabled {
  background-color: #f5f5f5;
  color: #999;
}

/* Modifier: `ap-button-link`
 ========================================================================== */
/* Reset */
.ap-button-link,
.ap-button-link:hover,
.ap-button-link:focus,
.ap-button-link:active,
.ap-button-link.ap-active,
.ap-button-link:disabled {
  border-color: transparent;
  background: none;
}

/* Color */
.ap-button-link {
  color: #333;
  padding-left: 0;
  padding-right: 0;
}

.ap-button-link:hover,
.ap-button-link:focus,
.ap-button-link:active,
.ap-button-link.ap-active {
  color: #000;
  text-decoration: underline;
}

.ap-button-link:disabled {
  color: #999;
}

/* Focus */
.ap-button-link:focus {
  outline: 1px dotted;
}

/* Size modifiers
 ========================================================================== */
.ap-button-mini {
  min-height: 20px;
  padding: 0 6px;
  line-height: 20px;
  font-size: 11px;
}

.ap-button-small {
  min-height: 25px;
  padding: 0 10px;
  line-height: 25px;
  font-size: 12px;
}

.ap-button-large {
  min-height: 40px;
  padding: 0 15px;
  line-height: 40px;
  font-size: 16px;
}

/* Sub-object `ap-button-group`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 * 3. Remove whitespace between child elements when using `inline-block`
 * 4. Prevent buttons from wrapping
 * 5. Remove whitespace between child elements when using `inline-block`
 */
.ap-button-group {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  font-size: 0.001px;
  /* 4 */
  white-space: nowrap;
}

.ap-button-group > * {
  display: inline-block;
}

/* 5 */
.ap-button-group .ap-button {
  vertical-align: top;
}

/* Sub-object: `ap-button-dropdown`
 ========================================================================== */
/*
 * 1. Behave like buttons
 * 2. Create position context for dropdowns
 */
.ap-button + .ap-button-dropdown {
  margin-left: 20px;
}

.ap-button-dropdown {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.ap-button-dropdown.ap-open img {
  opacity: 0.5;
}
.ap-button-dropdown.ap-open:before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: 10;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #333;
  font-size: 0;
  line-height: 0;
}

/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Removes inner padding and border in Firefox 4+.
 */
.ap-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Correct inability to style clickable `input` types in iOS.
 * 2. Remove margins in Chrome, Safari and Opera.
 * 3. Remove borders for `button`.
 * 4. Address `overflow` set to `hidden` in IE 8/9/10/11.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Address inconsistent `text-transform` inheritance which is only inherit in Firefox and IE
 * 7. Remove default `button` padding and background color
 * 8. Style
 */
.ap-close {
  /* 1 */
  -webkit-appearance: none;
  /* 2 */
  margin: 0;
  /* 3 */
  border: none;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background: transparent;
  /* 8 */
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 20px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  opacity: 0.3;
}

/* Icon */
.ap-close:after {
  display: block;
  content: "\f00d";
  font-family: FontAwesome;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 */
.ap-close:hover,
.ap-close:focus {
  opacity: 0.5;
  /* 2 */
  outline: none;
  /* 3 */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* Modifier
 ========================================================================== */
.ap-close-alt {
  padding: 2px;
  border-radius: 50%;
  background: #eee;
  opacity: 1;
}

/* Hover */
.ap-close-alt:hover,
.ap-close-alt:focus {
  opacity: 1;
}

/* Icon */
.ap-close-alt:after {
  opacity: 0.5;
}

.ap-close-alt:hover:after,
.ap-close-alt:focus:after {
  opacity: 0.8;
}

/* ========================================================================
   Component: Column
 ========================================================================== */
[class*=ap-column-] {
  -webkit-column-gap: 25px;
  -moz-column-gap: 25px;
  column-gap: 25px;
}

/* Width modifiers
 ========================================================================== */
.ap-column-1-2 {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.ap-column-1-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.ap-column-1-4 {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;
}

.ap-column-1-5 {
  -webkit-column-count: 5;
  -moz-column-count: 5;
  column-count: 5;
}

.ap-column-1-6 {
  -webkit-column-count: 6;
  -moz-column-count: 6;
  column-count: 6;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .ap-column-small-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .ap-column-small-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .ap-column-small-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .ap-column-small-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .ap-column-small-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-column-medium-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .ap-column-medium-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .ap-column-medium-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .ap-column-medium-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .ap-column-medium-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-column-large-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .ap-column-large-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .ap-column-large-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .ap-column-large-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .ap-column-large-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .ap-column-xlarge-1-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .ap-column-xlarge-1-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .ap-column-xlarge-1-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .ap-column-xlarge-1-5 {
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .ap-column-xlarge-1-6 {
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
  }
}
/* ========================================================================
   Component: Contrast
 ========================================================================== */
.ap-contrast {
  color: #fff;
  /* Active */
}
.ap-contrast a:not([class]),
.ap-contrast .ap-link {
  color: fade(#fff, 70%);
  text-decoration: none;
}
.ap-contrast a:not([class]):hover,
.ap-contrast .ap-link:hover {
  color: #fff;
  text-decoration: underline;
}
.ap-contrast :not(pre) > code,
.ap-contrast :not(pre) > kbd,
.ap-contrast :not(pre) > samp {
  color: #fff;
}
.ap-contrast em {
  color: #fff;
}
.ap-contrast h1,
.ap-contrast h2,
.ap-contrast h3,
.ap-contrast h4,
.ap-contrast h5,
.ap-contrast h6 {
  color: #fff;
}
.ap-contrast hr {
  border-top-color: fade(#fff, 20%);
}
.ap-contrast .ap-nav li > a,
.ap-contrast .ap-nav li > a:hover {
  text-decoration: none;
}
.ap-contrast .ap-nav-side > li > a {
  color: #fff;
}
.ap-contrast .ap-nav-side > li > a:hover,
.ap-contrast .ap-nav-side > li > a:focus {
  background: fade(#fff, 10%);
  color: #fff;
}
.ap-contrast .ap-nav-side > li.ap-active > a {
  background: #fff;
  color: #444;
}
.ap-contrast .ap-nav-side .ap-nav-header {
  color: #fff;
}
.ap-contrast .ap-nav-side .ap-nav-divider {
  border-top-color: fade(#fff, 20%);
}
.ap-contrast .ap-nav-side ul a {
  color: fade(#fff, 70%);
}
.ap-contrast .ap-nav-side ul a:hover {
  color: #fff;
}
.ap-contrast .ap-subnav > * > a {
  color: fade(#fff, 70%);
  text-decoration: none;
}
.ap-contrast .ap-subnav > * > a:hover,
.ap-contrast .ap-subnav > * > a:focus {
  color: #fff;
  text-decoration: none;
}
.ap-contrast .ap-subnav > .ap-active > a {
  color: #fff;
}
.ap-contrast .ap-subnav-line > :nth-child(n+2):before {
  border-left-color: fade(#fff, 20%);
}
.ap-contrast .ap-subnav-pill > * > a:hover,
.ap-contrast .ap-subnav-pill > * > a:focus {
  background: fade(#fff, 70%);
  color: #444;
  text-decoration: none;
}
.ap-contrast .ap-subnav-pill > .ap-active > a {
  background: #fff;
  color: #444;
}
.ap-contrast .ap-tab {
  border-bottom-color: fade(#fff, 20%);
}
.ap-contrast .ap-tab > li > a {
  border-color: transparent;
  color: fade(#fff, 70%);
}
.ap-contrast .ap-tab > li > a:hover,
.ap-contrast .ap-tab > li > a:focus,
.ap-contrast .ap-tab > li.ap-open > a {
  border-color: fade(#fff, 70%);
  background: fade(#fff, 70%);
  color: #444;
  text-decoration: none;
}
.ap-contrast .ap-tab > li.ap-active > a {
  border-color: fade(#fff, 20%);
  border-bottom-color: transparent;
  background: #fff;
  color: #444;
}
.ap-contrast .ap-tab-center {
  border-bottom-color: fade(#fff, 20%);
}
.ap-contrast .ap-tab-grid:before {
  border-top-color: fade(#fff, 20%);
}
.ap-contrast .ap-list-line > li:nth-child(n+2) {
  border-top-color: fade(#fff, 20%);
}
.ap-contrast .ap-form select,
.ap-contrast .ap-form textarea,
.ap-contrast .ap-form input:not([type]),
.ap-contrast .ap-form input[type=text],
.ap-contrast .ap-form input[type=password],
.ap-contrast .ap-form input[type=datetime],
.ap-contrast .ap-form input[type=datetime-local],
.ap-contrast .ap-form input[type=date],
.ap-contrast .ap-form input[type=month],
.ap-contrast .ap-form input[type=time],
.ap-contrast .ap-form input[type=week],
.ap-contrast .ap-form input[type=number],
.ap-contrast .ap-form input[type=email],
.ap-contrast .ap-form input[type=url],
.ap-contrast .ap-form input[type=search],
.ap-contrast .ap-form input[type=tel],
.ap-contrast .ap-form input[type=color] {
  border-color: fade(#fff, 80%);
  background: fade(#fff, 80%);
  color: #444;
  background-clip: padding-box;
}
.ap-contrast .ap-form select:focus,
.ap-contrast .ap-form textarea:focus,
.ap-contrast .ap-form input:not([type]):focus,
.ap-contrast .ap-form input[type=text]:focus,
.ap-contrast .ap-form input[type=password]:focus,
.ap-contrast .ap-form input[type=datetime]:focus,
.ap-contrast .ap-form input[type=datetime-local]:focus,
.ap-contrast .ap-form input[type=date]:focus,
.ap-contrast .ap-form input[type=month]:focus,
.ap-contrast .ap-form input[type=time]:focus,
.ap-contrast .ap-form input[type=week]:focus,
.ap-contrast .ap-form input[type=number]:focus,
.ap-contrast .ap-form input[type=email]:focus,
.ap-contrast .ap-form input[type=url]:focus,
.ap-contrast .ap-form input[type=search]:focus,
.ap-contrast .ap-form input[type=tel]:focus,
.ap-contrast .ap-form input[type=color]:focus {
  border-color: #fff;
  background: #fff;
  color: #444;
}
.ap-contrast .ap-form :-ms-input-placeholder {
  color: fade(#444, 70%) !important;
}
.ap-contrast .ap-form ::-moz-placeholder {
  color: fade(#444, 70%);
}
.ap-contrast .ap-form ::-webkit-input-placeholder {
  color: fade(#444, 70%);
}
.ap-contrast .ap-button {
  color: #444;
  background: #fff;
}
.ap-contrast .ap-button:hover,
.ap-contrast .ap-button:focus {
  background-color: fade(#fff, 80%);
  color: #444;
}
.ap-contrast .ap-button:active,
.ap-contrast .ap-button.ap-active {
  background-color: fade(#fff, 70%);
  color: #444;
}
.ap-contrast .ap-button-primary {
  background-color: #00a8e6;
  color: #fff;
}
.ap-contrast .ap-button-primary:hover,
.ap-contrast .ap-button-primary:focus {
  background-color: #35b3ee;
  color: #fff;
}
.ap-contrast .ap-button-primary:active,
.ap-contrast .ap-button-primary.ap-active {
  background-color: #0091ca;
  color: #fff;
}
.ap-contrast .ap-icon-hover {
  color: fade(#fff, 70%);
}
.ap-contrast .ap-icon-hover:hover {
  color: #fff;
}
.ap-contrast .ap-icon-button {
  background: #fff;
  color: #444;
}
.ap-contrast .ap-icon-button:hover,
.ap-contrast .ap-icon-button:focus {
  background-color: fade(#fff, 80%);
  color: #444;
}
.ap-contrast .ap-icon-button:active {
  background-color: fade(#fff, 70%);
  color: #444;
}
.ap-contrast .ap-text-muted {
  color: fade(#fff, 60%) !important;
}
.ap-contrast .ap-text-primary {
  color: #2d7091 !important;
}

/* ========================================================================
   Font Awesome
 ========================================================================== */
.fa.fa-times {
  color: #a31b1b;
}
.fa.fa-check {
  color: #79c553;
}

/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2"), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
 * 1. Allow margin
 * 2. Prevent inherit font style
 * 4. Correct line-height
 * 5. Better font rendering
 * 6. Remove `text-decoration` for anchors
 */
[class*=ap-icon-] {
  font-family: FontAwesome;
  /* 1 */
  display: inline-block;
  /* 2 */
  font-weight: normal;
  font-style: normal;
  /* 4 */
  line-height: 1;
  /* 5 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 6 */
[class*=ap-icon-],
[class*=ap-icon-]:hover,
[class*=ap-icon-]:focus {
  text-decoration: none;
}

/* Size modifiers
 ========================================================================== */
.ap-icon-small {
  font-size: 150%;
  vertical-align: -10%;
}

.ap-icon-medium {
  font-size: 200%;
  vertical-align: -16%;
}

.ap-icon-large {
  font-size: 250%;
  vertical-align: -22%;
}

/* Modifier: `ap-icon-justify`
 ========================================================================== */
.ap-icon-justify {
  width: 1em;
  text-align: center;
}

/* Modifier: `ap-icon-spin`
 ========================================================================== */
.ap-icon-spin {
  display: inline-block;
  -webkit-animation: ap-rotate 2s infinite linear;
  animation: ap-rotate 2s infinite linear;
}

/* Modifier: `ap-icon-hover`
 ========================================================================== */
.ap-icon-hover {
  color: #999;
}

/*
 * Hover
 */
.ap-icon-hover:hover {
  color: #444;
}

/* Modifier: `ap-icon-button`
 ========================================================================== */
.ap-icon-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #eee;
  line-height: 35px;
  color: #444;
  font-size: 18px;
  text-align: center;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-icon-button:hover,
.ap-icon-button:focus {
  background-color: #f5f5f5;
  color: #444;
  /* 2 */
  outline: none;
}

/* Active */
.ap-icon-button:active {
  background-color: #ddd;
  color: #444;
}

/* Icon mapping
 ========================================================================== */
.ap-icon-glass:before {
  content: "\f000";
}

.ap-icon-music:before {
  content: "\f001";
}

.ap-icon-search:before {
  content: "\f002";
}

.ap-icon-envelope-o:before {
  content: "\f003";
}

.ap-icon-heart:before {
  content: "\f004";
}

.ap-icon-star:before {
  content: "\f005";
}

.ap-icon-star-o:before {
  content: "\f006";
}

.ap-icon-user:before {
  content: "\f007";
}

.ap-icon-film:before {
  content: "\f008";
}

.ap-icon-th-large:before {
  content: "\f009";
}

.ap-icon-th:before {
  content: "\f00a";
}

.ap-icon-th-list:before {
  content: "\f00b";
}

.ap-icon-check:before {
  content: "\f00c";
}

.ap-icon-remove:before,
.ap-icon-close:before,
.ap-icon-times:before {
  content: "\f00d";
}

.ap-icon-search-plus:before {
  content: "\f00e";
}

.ap-icon-search-minus:before {
  content: "\f010";
}

.ap-icon-power-off:before {
  content: "\f011";
}

.ap-icon-signal:before {
  content: "\f012";
}

.ap-icon-gear:before,
.ap-icon-cog:before {
  content: "\f013";
}

.ap-icon-trash-o:before {
  content: "\f014";
}

.ap-icon-home:before {
  content: "\f015";
}

.ap-icon-file-o:before {
  content: "\f016";
}

.ap-icon-clock-o:before {
  content: "\f017";
}

.ap-icon-road:before {
  content: "\f018";
}

.ap-icon-download:before {
  content: "\f019";
}

.ap-icon-arrow-circle-o-down:before {
  content: "\f01a";
}

.ap-icon-arrow-circle-o-up:before {
  content: "\f01b";
}

.ap-icon-inbox:before {
  content: "\f01c";
}

.ap-icon-play-circle-o:before {
  content: "\f01d";
}

.ap-icon-rotate-right:before,
.ap-icon-repeat:before {
  content: "\f01e";
}

.ap-icon-refresh:before {
  content: "\f021";
}

.ap-icon-list-alt:before {
  content: "\f022";
}

.ap-icon-lock:before {
  content: "\f023";
}

.ap-icon-flag:before {
  content: "\f024";
}

.ap-icon-headphones:before {
  content: "\f025";
}

.ap-icon-volume-off:before {
  content: "\f026";
}

.ap-icon-volume-down:before {
  content: "\f027";
}

.ap-icon-volume-up:before {
  content: "\f028";
}

.ap-icon-qrcode:before {
  content: "\f029";
}

.ap-icon-barcode:before {
  content: "\f02a";
}

.ap-icon-tag:before {
  content: "\f02b";
}

.ap-icon-tags:before {
  content: "\f02c";
}

.ap-icon-book:before {
  content: "\f02d";
}

.ap-icon-bookmark:before {
  content: "\f02e";
}

.ap-icon-print:before {
  content: "\f02f";
}

.ap-icon-camera:before {
  content: "\f030";
}

.ap-icon-font:before {
  content: "\f031";
}

.ap-icon-bold:before {
  content: "\f032";
}

.ap-icon-italic:before {
  content: "\f033";
}

.ap-icon-text-height:before {
  content: "\f034";
}

.ap-icon-text-width:before {
  content: "\f035";
}

.ap-icon-align-left:before {
  content: "\f036";
}

.ap-icon-align-center:before {
  content: "\f037";
}

.ap-icon-align-right:before {
  content: "\f038";
}

.ap-icon-align-justify:before {
  content: "\f039";
}

.ap-icon-list:before {
  content: "\f03a";
}

.ap-icon-dedent:before,
.ap-icon-outdent:before {
  content: "\f03b";
}

.ap-icon-indent:before {
  content: "\f03c";
}

.ap-icon-video-camera:before {
  content: "\f03d";
}

.ap-icon-photo:before,
.ap-icon-image:before,
.ap-icon-picture-o:before {
  content: "\f03e";
}

.ap-icon-pencil:before {
  content: "\f040";
}

.ap-icon-map-marker:before {
  content: "\f041";
}

.ap-icon-adjust:before {
  content: "\f042";
}

.ap-icon-tint:before {
  content: "\f043";
}

.ap-icon-edit:before,
.ap-icon-pencil-square-o:before {
  content: "\f044";
}

.ap-icon-share-square-o:before {
  content: "\f045";
}

.ap-icon-check-square-o:before {
  content: "\f046";
}

.ap-icon-arrows:before {
  content: "\f047";
}

.ap-icon-step-backward:before {
  content: "\f048";
}

.ap-icon-fast-backward:before {
  content: "\f049";
}

.ap-icon-backward:before {
  content: "\f04a";
}

.ap-icon-play:before {
  content: "\f04b";
}

.ap-icon-pause:before {
  content: "\f04c";
}

.ap-icon-stop:before {
  content: "\f04d";
}

.ap-icon-forward:before {
  content: "\f04e";
}

.ap-icon-fast-forward:before {
  content: "\f050";
}

.ap-icon-step-forward:before {
  content: "\f051";
}

.ap-icon-eject:before {
  content: "\f052";
}

.ap-icon-chevron-left:before {
  content: "\f053";
}

.ap-icon-chevron-right:before {
  content: "\f054";
}

.ap-icon-plus-circle:before {
  content: "\f055";
}

.ap-icon-minus-circle:before {
  content: "\f056";
}

.ap-icon-times-circle:before {
  content: "\f057";
}

.ap-icon-check-circle:before {
  content: "\f058";
}

.ap-icon-question-circle:before {
  content: "\f059";
}

.ap-icon-info-circle:before {
  content: "\f05a";
}

.ap-icon-crosshairs:before {
  content: "\f05b";
}

.ap-icon-times-circle-o:before {
  content: "\f05c";
}

.ap-icon-check-circle-o:before {
  content: "\f05d";
}

.ap-icon-ban:before {
  content: "\f05e";
}

.ap-icon-arrow-left:before {
  content: "\f060";
}

.ap-icon-arrow-right:before {
  content: "\f061";
}

.ap-icon-arrow-up:before {
  content: "\f062";
}

.ap-icon-arrow-down:before {
  content: "\f063";
}

.ap-icon-mail-forward:before,
.ap-icon-share:before {
  content: "\f064";
}

.ap-icon-expand:before {
  content: "\f065";
}

.ap-icon-compress:before {
  content: "\f066";
}

.ap-icon-plus:before {
  content: "\f067";
}

.ap-icon-minus:before {
  content: "\f068";
}

.ap-icon-asterisk:before {
  content: "\f069";
}

.ap-icon-exclamation-circle:before {
  content: "\f06a";
}

.ap-icon-gift:before {
  content: "\f06b";
}

.ap-icon-leaf:before {
  content: "\f06c";
}

.ap-icon-fire:before {
  content: "\f06d";
}

.ap-icon-eye:before {
  content: "\f06e";
}

.ap-icon-eye-slash:before {
  content: "\f070";
}

.ap-icon-warning:before,
.ap-icon-exclamation-triangle:before {
  content: "\f071";
}

.ap-icon-plane:before {
  content: "\f072";
}

.ap-icon-calendar:before {
  content: "\f073";
}

.ap-icon-random:before {
  content: "\f074";
}

.ap-icon-comment:before {
  content: "\f075";
}

.ap-icon-magnet:before {
  content: "\f076";
}

.ap-icon-chevron-up:before {
  content: "\f077";
}

.ap-icon-chevron-down:before {
  content: "\f078";
}

.ap-icon-retweet:before {
  content: "\f079";
}

.ap-icon-shopping-cart:before {
  content: "\f07a";
}

.ap-icon-folder:before {
  content: "\f07b";
}

.ap-icon-folder-open:before {
  content: "\f07c";
}

.ap-icon-arrows-v:before {
  content: "\f07d";
}

.ap-icon-arrows-h:before {
  content: "\f07e";
}

.ap-icon-bar-chart-o:before,
.ap-icon-bar-chart:before {
  content: "\f080";
}

.ap-icon-twitter-square:before {
  content: "\f081";
}

.ap-icon-facebook-square:before {
  content: "\f082";
}

.ap-icon-camera-retro:before {
  content: "\f083";
}

.ap-icon-key:before {
  content: "\f084";
}

.ap-icon-gears:before,
.ap-icon-cogs:before {
  content: "\f085";
}

.ap-icon-comments:before {
  content: "\f086";
}

.ap-icon-thumbs-o-up:before {
  content: "\f087";
}

.ap-icon-thumbs-o-down:before {
  content: "\f088";
}

.ap-icon-star-half:before {
  content: "\f089";
}

.ap-icon-heart-o:before {
  content: "\f08a";
}

.ap-icon-sign-out:before {
  content: "\f08b";
}

.ap-icon-linkedin-square:before {
  content: "\f08c";
}

.ap-icon-thumb-tack:before {
  content: "\f08d";
}

.ap-icon-external-link:before {
  content: "\f08e";
}

.ap-icon-sign-in:before {
  content: "\f090";
}

.ap-icon-trophy:before {
  content: "\f091";
}

.ap-icon-github-square:before {
  content: "\f092";
}

.ap-icon-upload:before {
  content: "\f093";
}

.ap-icon-lemon-o:before {
  content: "\f094";
}

.ap-icon-phone:before {
  content: "\f095";
}

.ap-icon-square-o:before {
  content: "\f096";
}

.ap-icon-bookmark-o:before {
  content: "\f097";
}

.ap-icon-phone-square:before {
  content: "\f098";
}

.ap-icon-twitter:before {
  content: "\f099";
}

.ap-icon-facebook-f:before,
.ap-icon-facebook:before {
  content: "\f09a";
}

.ap-icon-github:before {
  content: "\f09b";
}

.ap-icon-unlock:before {
  content: "\f09c";
}

.ap-icon-credit-card:before {
  content: "\f09d";
}

.ap-icon-rss:before {
  content: "\f09e";
}

.ap-icon-hdd-o:before {
  content: "\f0a0";
}

.ap-icon-bullhorn:before {
  content: "\f0a1";
}

.ap-icon-bell:before {
  content: "\f0f3";
}

.ap-icon-certificate:before {
  content: "\f0a3";
}

.ap-icon-hand-o-right:before {
  content: "\f0a4";
}

.ap-icon-hand-o-left:before {
  content: "\f0a5";
}

.ap-icon-hand-o-up:before {
  content: "\f0a6";
}

.ap-icon-hand-o-down:before {
  content: "\f0a7";
}

.ap-icon-arrow-circle-left:before {
  content: "\f0a8";
}

.ap-icon-arrow-circle-right:before {
  content: "\f0a9";
}

.ap-icon-arrow-circle-up:before {
  content: "\f0aa";
}

.ap-icon-arrow-circle-down:before {
  content: "\f0ab";
}

.ap-icon-globe:before {
  content: "\f0ac";
}

.ap-icon-wrench:before {
  content: "\f0ad";
}

.ap-icon-tasks:before {
  content: "\f0ae";
}

.ap-icon-filter:before {
  content: "\f0b0";
}

.ap-icon-briefcase:before {
  content: "\f0b1";
}

.ap-icon-arrows-alt:before {
  content: "\f0b2";
}

.ap-icon-group:before,
.ap-icon-users:before {
  content: "\f0c0";
}

.ap-icon-chain:before,
.ap-icon-link:before {
  content: "\f0c1";
}

.ap-icon-cloud:before {
  content: "\f0c2";
}

.ap-icon-flask:before {
  content: "\f0c3";
}

.ap-icon-cut:before,
.ap-icon-scissors:before {
  content: "\f0c4";
}

.ap-icon-copy:before,
.ap-icon-files-o:before {
  content: "\f0c5";
}

.ap-icon-paperclip:before {
  content: "\f0c6";
}

.ap-icon-save:before,
.ap-icon-floppy-o:before {
  content: "\f0c7";
}

.ap-icon-square:before {
  content: "\f0c8";
}

.ap-icon-navicon:before,
.ap-icon-reorder:before,
.ap-icon-bars:before {
  content: "\f0c9";
}

.ap-icon-list-ul:before {
  content: "\f0ca";
}

.ap-icon-list-ol:before {
  content: "\f0cb";
}

.ap-icon-strikethrough:before {
  content: "\f0cc";
}

.ap-icon-underline:before {
  content: "\f0cd";
}

.ap-icon-table:before {
  content: "\f0ce";
}

.ap-icon-magic:before {
  content: "\f0d0";
}

.ap-icon-truck:before {
  content: "\f0d1";
}

.ap-icon-pinterest:before {
  content: "\f0d2";
}

.ap-icon-pinterest-square:before {
  content: "\f0d3";
}

.ap-icon-google-plus-square:before {
  content: "\f0d4";
}

.ap-icon-google-plus:before {
  content: "\f0d5";
}

.ap-icon-money:before {
  content: "\f0d6";
}

.ap-icon-caret-down:before {
  content: "\f0d7";
}

.ap-icon-caret-up:before {
  content: "\f0d8";
}

.ap-icon-caret-left:before {
  content: "\f0d9";
}

.ap-icon-caret-right:before {
  content: "\f0da";
}

.ap-icon-columns:before {
  content: "\f0db";
}

.ap-icon-unsorted:before,
.ap-icon-sort:before {
  content: "\f0dc";
}

.ap-icon-sort-down:before,
.ap-icon-sort-desc:before {
  content: "\f0dd";
}

.ap-icon-sort-up:before,
.ap-icon-sort-asc:before {
  content: "\f0de";
}

.ap-icon-envelope:before {
  content: "\f0e0";
}

.ap-icon-linkedin:before {
  content: "\f0e1";
}

.ap-icon-rotate-left:before,
.ap-icon-undo:before {
  content: "\f0e2";
}

.ap-icon-legal:before,
.ap-icon-gavel:before {
  content: "\f0e3";
}

.ap-icon-dashboard:before,
.ap-icon-tachometer:before {
  content: "\f0e4";
}

.ap-icon-comment-o:before {
  content: "\f0e5";
}

.ap-icon-comments-o:before {
  content: "\f0e6";
}

.ap-icon-flash:before,
.ap-icon-bolt:before {
  content: "\f0e7";
}

.ap-icon-sitemap:before {
  content: "\f0e8";
}

.ap-icon-umbrella:before {
  content: "\f0e9";
}

.ap-icon-paste:before,
.ap-icon-clipboard:before {
  content: "\f0ea";
}

.ap-icon-lightbulb-o:before {
  content: "\f0eb";
}

.ap-icon-exchange:before {
  content: "\f0ec";
}

.ap-icon-cloud-download:before {
  content: "\f0ed";
}

.ap-icon-cloud-upload:before {
  content: "\f0ee";
}

.ap-icon-user-md:before {
  content: "\f0f0";
}

.ap-icon-stethoscope:before {
  content: "\f0f1";
}

.ap-icon-suitcase:before {
  content: "\f0f2";
}

.ap-icon-bell-o:before {
  content: "\f0a2";
}

.ap-icon-coffee:before {
  content: "\f0f4";
}

.ap-icon-cutlery:before {
  content: "\f0f5";
}

.ap-icon-file-text-o:before {
  content: "\f0f6";
}

.ap-icon-building-o:before {
  content: "\f0f7";
}

.ap-icon-hospital-o:before {
  content: "\f0f8";
}

.ap-icon-ambulance:before {
  content: "\f0f9";
}

.ap-icon-medkit:before {
  content: "\f0fa";
}

.ap-icon-fighter-jet:before {
  content: "\f0fb";
}

.ap-icon-beer:before {
  content: "\f0fc";
}

.ap-icon-h-square:before {
  content: "\f0fd";
}

.ap-icon-plus-square:before {
  content: "\f0fe";
}

.ap-icon-angle-double-left:before {
  content: "\f100";
}

.ap-icon-angle-double-right:before {
  content: "\f101";
}

.ap-icon-angle-double-up:before {
  content: "\f102";
}

.ap-icon-angle-double-down:before {
  content: "\f103";
}

.ap-icon-angle-left:before {
  content: "\f104";
}

.ap-icon-angle-right:before {
  content: "\f105";
}

.ap-icon-angle-up:before {
  content: "\f106";
}

.ap-icon-angle-down:before {
  content: "\f107";
}

.ap-icon-desktop:before {
  content: "\f108";
}

.ap-icon-laptop:before {
  content: "\f109";
}

.ap-icon-tablet:before {
  content: "\f10a";
}

.ap-icon-mobile-phone:before,
.ap-icon-mobile:before {
  content: "\f10b";
}

.ap-icon-circle-o:before {
  content: "\f10c";
}

.ap-icon-quote-left:before {
  content: "\f10d";
}

.ap-icon-quote-right:before {
  content: "\f10e";
}

.ap-icon-spinner:before {
  content: "\f110";
}

.ap-icon-circle:before {
  content: "\f111";
}

.ap-icon-mail-reply:before,
.ap-icon-reply:before {
  content: "\f112";
}

.ap-icon-github-alt:before {
  content: "\f113";
}

.ap-icon-folder-o:before {
  content: "\f114";
}

.ap-icon-folder-open-o:before {
  content: "\f115";
}

.ap-icon-smile-o:before {
  content: "\f118";
}

.ap-icon-frown-o:before {
  content: "\f119";
}

.ap-icon-meh-o:before {
  content: "\f11a";
}

.ap-icon-gamepad:before {
  content: "\f11b";
}

.ap-icon-keyboard-o:before {
  content: "\f11c";
}

.ap-icon-flag-o:before {
  content: "\f11d";
}

.ap-icon-flag-checkered:before {
  content: "\f11e";
}

.ap-icon-terminal:before {
  content: "\f120";
}

.ap-icon-code:before {
  content: "\f121";
}

.ap-icon-mail-reply-all:before,
.ap-icon-reply-all:before {
  content: "\f122";
}

.ap-icon-star-half-empty:before,
.ap-icon-star-half-full:before,
.ap-icon-star-half-o:before {
  content: "\f123";
}

.ap-icon-location-arrow:before {
  content: "\f124";
}

.ap-icon-crop:before {
  content: "\f125";
}

.ap-icon-code-fork:before {
  content: "\f126";
}

.ap-icon-unlink:before,
.ap-icon-chain-broken:before {
  content: "\f127";
}

.ap-icon-question:before {
  content: "\f128";
}

.ap-icon-info:before {
  content: "\f129";
}

.ap-icon-exclamation:before {
  content: "\f12a";
}

.ap-icon-superscript:before {
  content: "\f12b";
}

.ap-icon-subscript:before {
  content: "\f12c";
}

.ap-icon-eraser:before {
  content: "\f12d";
}

.ap-icon-puzzle-piece:before {
  content: "\f12e";
}

.ap-icon-microphone:before {
  content: "\f130";
}

.ap-icon-microphone-slash:before {
  content: "\f131";
}

.ap-icon-shield:before {
  content: "\f132";
}

.ap-icon-calendar-o:before {
  content: "\f133";
}

.ap-icon-fire-extinguisher:before {
  content: "\f134";
}

.ap-icon-rocket:before {
  content: "\f135";
}

.ap-icon-maxcdn:before {
  content: "\f136";
}

.ap-icon-chevron-circle-left:before {
  content: "\f137";
}

.ap-icon-chevron-circle-right:before {
  content: "\f138";
}

.ap-icon-chevron-circle-up:before {
  content: "\f139";
}

.ap-icon-chevron-circle-down:before {
  content: "\f13a";
}

.ap-icon-html5:before {
  content: "\f13b";
}

.ap-icon-css3:before {
  content: "\f13c";
}

.ap-icon-anchor:before {
  content: "\f13d";
}

.ap-icon-unlock-alt:before {
  content: "\f13e";
}

.ap-icon-bullseye:before {
  content: "\f140";
}

.ap-icon-ellipsis-h:before {
  content: "\f141";
}

.ap-icon-ellipsis-v:before {
  content: "\f142";
}

.ap-icon-rss-square:before {
  content: "\f143";
}

.ap-icon-play-circle:before {
  content: "\f144";
}

.ap-icon-ticket:before {
  content: "\f145";
}

.ap-icon-minus-square:before {
  content: "\f146";
}

.ap-icon-minus-square-o:before {
  content: "\f147";
}

.ap-icon-level-up:before {
  content: "\f148";
}

.ap-icon-level-down:before {
  content: "\f149";
}

.ap-icon-check-square:before {
  content: "\f14a";
}

.ap-icon-pencil-square:before {
  content: "\f14b";
}

.ap-icon-external-link-square:before {
  content: "\f14c";
}

.ap-icon-share-square:before {
  content: "\f14d";
}

.ap-icon-compass:before {
  content: "\f14e";
}

.ap-icon-toggle-down:before,
.ap-icon-caret-square-o-down:before {
  content: "\f150";
}

.ap-icon-toggle-up:before,
.ap-icon-caret-square-o-up:before {
  content: "\f151";
}

.ap-icon-toggle-right:before,
.ap-icon-caret-square-o-right:before {
  content: "\f152";
}

.ap-icon-euro:before,
.ap-icon-eur:before {
  content: "\f153";
}

.ap-icon-gbp:before {
  content: "\f154";
}

.ap-icon-dollar:before,
.ap-icon-usd:before {
  content: "\f155";
}

.ap-icon-rupee:before,
.ap-icon-inr:before {
  content: "\f156";
}

.ap-icon-cny:before,
.ap-icon-rmb:before,
.ap-icon-yen:before,
.ap-icon-jpy:before {
  content: "\f157";
}

.ap-icon-ruble:before,
.ap-icon-rouble:before,
.ap-icon-rub:before {
  content: "\f158";
}

.ap-icon-won:before,
.ap-icon-krw:before {
  content: "\f159";
}

.ap-icon-bitcoin:before,
.ap-icon-btc:before {
  content: "\f15a";
}

.ap-icon-file:before {
  content: "\f15b";
}

.ap-icon-file-text:before {
  content: "\f15c";
}

.ap-icon-sort-alpha-asc:before {
  content: "\f15d";
}

.ap-icon-sort-alpha-desc:before {
  content: "\f15e";
}

.ap-icon-sort-amount-asc:before {
  content: "\f160";
}

.ap-icon-sort-amount-desc:before {
  content: "\f161";
}

.ap-icon-sort-numeric-asc:before {
  content: "\f162";
}

.ap-icon-sort-numeric-desc:before {
  content: "\f163";
}

.ap-icon-thumbs-up:before {
  content: "\f164";
}

.ap-icon-thumbs-down:before {
  content: "\f165";
}

.ap-icon-youtube-square:before {
  content: "\f166";
}

.ap-icon-youtube:before {
  content: "\f167";
}

.ap-icon-xing:before {
  content: "\f168";
}

.ap-icon-xing-square:before {
  content: "\f169";
}

.ap-icon-youtube-play:before {
  content: "\f16a";
}

.ap-icon-dropbox:before {
  content: "\f16b";
}

.ap-icon-stack-overflow:before {
  content: "\f16c";
}

.ap-icon-instagram:before {
  content: "\f16d";
}

.ap-icon-flickr:before {
  content: "\f16e";
}

.ap-icon-adn:before {
  content: "\f170";
}

.ap-icon-bitbucket:before {
  content: "\f171";
}

.ap-icon-bitbucket-square:before {
  content: "\f172";
}

.ap-icon-tumblr:before {
  content: "\f173";
}

.ap-icon-tumblr-square:before {
  content: "\f174";
}

.ap-icon-long-arrow-down:before {
  content: "\f175";
}

.ap-icon-long-arrow-up:before {
  content: "\f176";
}

.ap-icon-long-arrow-left:before {
  content: "\f177";
}

.ap-icon-long-arrow-right:before {
  content: "\f178";
}

.ap-icon-apple:before {
  content: "\f179";
}

.ap-icon-windows:before {
  content: "\f17a";
}

.ap-icon-android:before {
  content: "\f17b";
}

.ap-icon-linux:before {
  content: "\f17c";
}

.ap-icon-dribbble:before {
  content: "\f17d";
}

.ap-icon-skype:before {
  content: "\f17e";
}

.ap-icon-foursquare:before {
  content: "\f180";
}

.ap-icon-trello:before {
  content: "\f181";
}

.ap-icon-female:before {
  content: "\f182";
}

.ap-icon-male:before {
  content: "\f183";
}

.ap-icon-gittip:before,
.ap-icon-gratipay:before {
  content: "\f184";
}

.ap-icon-sun-o:before {
  content: "\f185";
}

.ap-icon-moon-o:before {
  content: "\f186";
}

.ap-icon-archive:before {
  content: "\f187";
}

.ap-icon-bug:before {
  content: "\f188";
}

.ap-icon-vk:before {
  content: "\f189";
}

.ap-icon-weibo:before {
  content: "\f18a";
}

.ap-icon-renren:before {
  content: "\f18b";
}

.ap-icon-pagelines:before {
  content: "\f18c";
}

.ap-icon-stack-exchange:before {
  content: "\f18d";
}

.ap-icon-arrow-circle-o-right:before {
  content: "\f18e";
}

.ap-icon-arrow-circle-o-left:before {
  content: "\f190";
}

.ap-icon-toggle-left:before,
.ap-icon-caret-square-o-left:before {
  content: "\f191";
}

.ap-icon-dot-circle-o:before {
  content: "\f192";
}

.ap-icon-wheelchair:before {
  content: "\f193";
}

.ap-icon-vimeo-square:before {
  content: "\f194";
}

.ap-icon-turkish-lira:before,
.ap-icon-try:before {
  content: "\f195";
}

.ap-icon-plus-square-o:before {
  content: "\f196";
}

.ap-icon-space-shuttle:before {
  content: "\f197";
}

.ap-icon-slack:before {
  content: "\f198";
}

.ap-icon-envelope-square:before {
  content: "\f199";
}

.ap-icon-wordpress:before {
  content: "\f19a";
}

.ap-icon-openid:before {
  content: "\f19b";
}

.ap-icon-institution:before,
.ap-icon-bank:before,
.ap-icon-university:before {
  content: "\f19c";
}

.ap-icon-mortar-board:before,
.ap-icon-graduation-cap:before {
  content: "\f19d";
}

.ap-icon-yahoo:before {
  content: "\f19e";
}

.ap-icon-google:before {
  content: "\f1a0";
}

.ap-icon-reddit:before {
  content: "\f1a1";
}

.ap-icon-reddit-square:before {
  content: "\f1a2";
}

.ap-icon-stumbleupon-circle:before {
  content: "\f1a3";
}

.ap-icon-stumbleupon:before {
  content: "\f1a4";
}

.ap-icon-delicious:before {
  content: "\f1a5";
}

.ap-icon-digg:before {
  content: "\f1a6";
}

.ap-icon-pied-piper:before {
  content: "\f1a7";
}

.ap-icon-pied-piper-alt:before {
  content: "\f1a8";
}

.ap-icon-drupal:before {
  content: "\f1a9";
}

.ap-icon-joomla:before {
  content: "\f1aa";
}

.ap-icon-language:before {
  content: "\f1ab";
}

.ap-icon-fax:before {
  content: "\f1ac";
}

.ap-icon-building:before {
  content: "\f1ad";
}

.ap-icon-child:before {
  content: "\f1ae";
}

.ap-icon-paw:before {
  content: "\f1b0";
}

.ap-icon-spoon:before {
  content: "\f1b1";
}

.ap-icon-cube:before {
  content: "\f1b2";
}

.ap-icon-cubes:before {
  content: "\f1b3";
}

.ap-icon-behance:before {
  content: "\f1b4";
}

.ap-icon-behance-square:before {
  content: "\f1b5";
}

.ap-icon-steam:before {
  content: "\f1b6";
}

.ap-icon-steam-square:before {
  content: "\f1b7";
}

.ap-icon-recycle:before {
  content: "\f1b8";
}

.ap-icon-automobile:before,
.ap-icon-car:before {
  content: "\f1b9";
}

.ap-icon-cab:before,
.ap-icon-taxi:before {
  content: "\f1ba";
}

.ap-icon-tree:before {
  content: "\f1bb";
}

.ap-icon-spotify:before {
  content: "\f1bc";
}

.ap-icon-deviantart:before {
  content: "\f1bd";
}

.ap-icon-soundcloud:before {
  content: "\f1be";
}

.ap-icon-database:before {
  content: "\f1c0";
}

.ap-icon-file-pdf-o:before {
  content: "\f1c1";
}

.ap-icon-file-word-o:before {
  content: "\f1c2";
}

.ap-icon-file-excel-o:before {
  content: "\f1c3";
}

.ap-icon-file-powerpoint-o:before {
  content: "\f1c4";
}

.ap-icon-file-photo-o:before,
.ap-icon-file-picture-o:before,
.ap-icon-file-image-o:before {
  content: "\f1c5";
}

.ap-icon-file-zip-o:before,
.ap-icon-file-archive-o:before {
  content: "\f1c6";
}

.ap-icon-file-sound-o:before,
.ap-icon-file-audio-o:before {
  content: "\f1c7";
}

.ap-icon-file-movie-o:before,
.ap-icon-file-video-o:before {
  content: "\f1c8";
}

.ap-icon-file-code-o:before {
  content: "\f1c9";
}

.ap-icon-vine:before {
  content: "\f1ca";
}

.ap-icon-codepen:before {
  content: "\f1cb";
}

.ap-icon-jsfiddle:before {
  content: "\f1cc";
}

.ap-icon-life-bouy:before,
.ap-icon-life-buoy:before,
.ap-icon-life-saver:before,
.ap-icon-support:before,
.ap-icon-life-ring:before {
  content: "\f1cd";
}

.ap-icon-circle-o-notch:before {
  content: "\f1ce";
}

.ap-icon-ra:before,
.ap-icon-rebel:before {
  content: "\f1d0";
}

.ap-icon-ge:before,
.ap-icon-empire:before {
  content: "\f1d1";
}

.ap-icon-git-square:before {
  content: "\f1d2";
}

.ap-icon-git:before {
  content: "\f1d3";
}

.ap-icon-hacker-news:before {
  content: "\f1d4";
}

.ap-icon-tencent-weibo:before {
  content: "\f1d5";
}

.ap-icon-qq:before {
  content: "\f1d6";
}

.ap-icon-wechat:before,
.ap-icon-weixin:before {
  content: "\f1d7";
}

.ap-icon-send:before,
.ap-icon-paper-plane:before {
  content: "\f1d8";
}

.ap-icon-send-o:before,
.ap-icon-paper-plane-o:before {
  content: "\f1d9";
}

.ap-icon-history:before {
  content: "\f1da";
}

.ap-icon-genderless:before,
.ap-icon-circle-thin:before {
  content: "\f1db";
}

.ap-icon-header:before {
  content: "\f1dc";
}

.ap-icon-paragraph:before {
  content: "\f1dd";
}

.ap-icon-sliders:before {
  content: "\f1de";
}

.ap-icon-share-alt:before {
  content: "\f1e0";
}

.ap-icon-share-alt-square:before {
  content: "\f1e1";
}

.ap-icon-bomb:before {
  content: "\f1e2";
}

.ap-icon-soccer-ball-o:before,
.ap-icon-futbol-o:before {
  content: "\f1e3";
}

.ap-icon-tty:before {
  content: "\f1e4";
}

.ap-icon-binoculars:before {
  content: "\f1e5";
}

.ap-icon-plug:before {
  content: "\f1e6";
}

.ap-icon-slideshare:before {
  content: "\f1e7";
}

.ap-icon-twitch:before {
  content: "\f1e8";
}

.ap-icon-yelp:before {
  content: "\f1e9";
}

.ap-icon-newspaper-o:before {
  content: "\f1ea";
}

.ap-icon-wifi:before {
  content: "\f1eb";
}

.ap-icon-calculator:before {
  content: "\f1ec";
}

.ap-icon-paypal:before {
  content: "\f1ed";
}

.ap-icon-google-wallet:before {
  content: "\f1ee";
}

.ap-icon-cc-visa:before {
  content: "\f1f0";
}

.ap-icon-cc-mastercard:before {
  content: "\f1f1";
}

.ap-icon-cc-discover:before {
  content: "\f1f2";
}

.ap-icon-cc-amex:before {
  content: "\f1f3";
}

.ap-icon-cc-paypal:before {
  content: "\f1f4";
}

.ap-icon-cc-stripe:before {
  content: "\f1f5";
}

.ap-icon-bell-slash:before {
  content: "\f1f6";
}

.ap-icon-bell-slash-o:before {
  content: "\f1f7";
}

.ap-icon-trash:before {
  content: "\f1f8";
}

.ap-icon-copyright:before {
  content: "\f1f9";
}

.ap-icon-at:before {
  content: "\f1fa";
}

.ap-icon-eyedropper:before {
  content: "\f1fb";
}

.ap-icon-paint-brush:before {
  content: "\f1fc";
}

.ap-icon-birthday-cake:before {
  content: "\f1fd";
}

.ap-icon-area-chart:before {
  content: "\f1fe";
}

.ap-icon-pie-chart:before {
  content: "\f200";
}

.ap-icon-line-chart:before {
  content: "\f201";
}

.ap-icon-lastfm:before {
  content: "\f202";
}

.ap-icon-lastfm-square:before {
  content: "\f203";
}

.ap-icon-toggle-off:before {
  content: "\f204";
}

.ap-icon-toggle-on:before {
  content: "\f205";
}

.ap-icon-bicycle:before {
  content: "\f206";
}

.ap-icon-bus:before {
  content: "\f207";
}

.ap-icon-ioxhost:before {
  content: "\f208";
}

.ap-icon-angellist:before {
  content: "\f209";
}

.ap-icon-cc:before {
  content: "\f20a";
}

.ap-icon-shekel:before,
.ap-icon-sheqel:before,
.ap-icon-ils:before {
  content: "\f20b";
}

.ap-icon-meanpath:before {
  content: "\f20c";
}

.ap-icon-buysellads:before {
  content: "\f20d";
}

.ap-icon-connectdevelop:before {
  content: "\f20e";
}

.ap-icon-dashcube:before {
  content: "\f210";
}

.ap-icon-forumbee:before {
  content: "\f211";
}

.ap-icon-leanpub:before {
  content: "\f212";
}

.ap-icon-sellsy:before {
  content: "\f213";
}

.ap-icon-shirtsinbulk:before {
  content: "\f214";
}

.ap-icon-simplybuilt:before {
  content: "\f215";
}

.ap-icon-skyatlas:before {
  content: "\f216";
}

.ap-icon-cart-plus:before {
  content: "\f217";
}

.ap-icon-cart-arrow-down:before {
  content: "\f218";
}

.ap-icon-diamond:before {
  content: "\f219";
}

.ap-icon-ship:before {
  content: "\f21a";
}

.ap-icon-user-secret:before {
  content: "\f21b";
}

.ap-icon-motorcycle:before {
  content: "\f21c";
}

.ap-icon-street-view:before {
  content: "\f21d";
}

.ap-icon-heartbeat:before {
  content: "\f21e";
}

.ap-icon-venus:before {
  content: "\f221";
}

.ap-icon-mars:before {
  content: "\f222";
}

.ap-icon-mercury:before {
  content: "\f223";
}

.ap-icon-transgender:before {
  content: "\f224";
}

.ap-icon-transgender-alt:before {
  content: "\f225";
}

.ap-icon-venus-double:before {
  content: "\f226";
}

.ap-icon-mars-double:before {
  content: "\f227";
}

.ap-icon-venus-mars:before {
  content: "\f228";
}

.ap-icon-mars-stroke:before {
  content: "\f229";
}

.ap-icon-mars-stroke-v:before {
  content: "\f22a";
}

.ap-icon-mars-stroke-h:before {
  content: "\f22b";
}

.ap-icon-neuter:before {
  content: "\f22c";
}

.ap-icon-facebook-official:before {
  content: "\f230";
}

.ap-icon-pinterest-p:before {
  content: "\f231";
}

.ap-icon-whatsapp:before {
  content: "\f232";
}

.ap-icon-server:before {
  content: "\f233";
}

.ap-icon-user-plus:before {
  content: "\f234";
}

.ap-icon-user-times:before {
  content: "\f235";
}

.ap-icon-hotel:before,
.ap-icon-bed:before {
  content: "\f236";
}

.ap-icon-viacoin:before {
  content: "\f237";
}

.ap-icon-train:before {
  content: "\f238";
}

.ap-icon-subway:before {
  content: "\f239";
}

.ap-icon-medium-logo:before {
  content: "\f23a";
}

.ap-icon-500px:before {
  content: "\f26e";
}

.ap-icon-amazon:before {
  content: "\f270";
}

.ap-icon-balance-scale:before {
  content: "\f24e";
}

.ap-icon-battery-empty:before,
.ap-icon-battery-0:before {
  content: "\f244";
}

.ap-icon-battery-quarter:before,
.ap-icon-battery-1:before {
  content: "\f243";
}

.ap-icon-battery-half:before,
.ap-icon-battery-2:before {
  content: "\f242";
}

.ap-icon-battery-three-quarters:before,
.ap-icon-battery-3:before {
  content: "\f241";
}

.ap-icon-battery-full:before,
.ap-icon-battery-4:before {
  content: "\f240";
}

.ap-icon-black-tie:before {
  content: "\f27e";
}

.ap-icon-calendar-check-o:before {
  content: "\f274";
}

.ap-icon-calendar-minus-o:before {
  content: "\f272";
}

.ap-icon-calendar-plus-o:before {
  content: "\f271";
}

.ap-icon-calendar-times-o:before {
  content: "\f273";
}

.ap-icon-cc-diners-club:before {
  content: "\f24c";
}

.ap-icon-cc-jcb:before {
  content: "\f24b";
}

.ap-icon-chrome:before {
  content: "\f268";
}

.ap-icon-clone:before {
  content: "\f24d";
}

.ap-icon-commenting:before {
  content: "\f27a";
}

.ap-icon-commenting-o:before {
  content: "\f27b";
}

.ap-icon-contao:before {
  content: "\f26d";
}

.ap-icon-creative-commons:before {
  content: "\f25e";
}

.ap-icon-expeditedssl:before {
  content: "\f23e";
}

.ap-icon-firefox:before {
  content: "\f269";
}

.ap-icon-fonticons:before {
  content: "\f280";
}

.ap-icon-get-pocket:before {
  content: "\f265";
}

.ap-icon-gg:before {
  content: "\f260";
}

.ap-icon-gg-circle:before {
  content: "\f261";
}

.ap-icon-hand-lizard-o:before {
  content: "\f258";
}

.ap-icon-hand-stop-o:before,
.ap-icon-hand-paper-o:before {
  content: "\f256";
}

.ap-icon-hand-peace-o:before {
  content: "\f25b";
}

.ap-icon-hand-pointer-o:before {
  content: "\f25a";
}

.ap-icon-hand-grab-o:before,
.ap-icon-hand-rock-o:before {
  content: "\f255";
}

.ap-icon-hand-scissors-o:before {
  content: "\f257";
}

.ap-icon-hand-spock-o:before {
  content: "\f259";
}

.ap-icon-hourglass:before {
  content: "\f254";
}

.ap-icon-hourglass-o:before {
  content: "\f250";
}

.ap-icon-hourglass-1:before,
.ap-icon-hourglass-start:before {
  content: "\f251";
}

.ap-icon-hourglass-2:before,
.ap-icon-hourglass-half:before {
  content: "\f252";
}

.ap-icon-hourglass-3:before,
.ap-icon-hourglass-end:before {
  content: "\f253";
}

.ap-icon-houzz:before {
  content: "\f27c";
}

.ap-icon-i-cursor:before {
  content: "\f246";
}

.ap-icon-industry:before {
  content: "\f275";
}

.ap-icon-internet-explorer:before {
  content: "\f26b";
}

.ap-icon-map:before {
  content: "\f279";
}

.ap-icon-map-o:before {
  content: "\f278";
}

.ap-icon-map-pin:before {
  content: "\f276";
}

.ap-icon-map-signs:before {
  content: "\f277";
}

.ap-icon-mouse-pointer:before {
  content: "\f245";
}

.ap-icon-object-group:before {
  content: "\f247";
}

.ap-icon-object-ungroup:before {
  content: "\f248";
}

.ap-icon-odnoklassniki:before {
  content: "\f263";
}

.ap-icon-odnoklassniki-square:before {
  content: "\f264";
}

.ap-icon-opencart:before {
  content: "\f23d";
}

.ap-icon-opera:before {
  content: "\f26a";
}

.ap-icon-optin-monster:before {
  content: "\f23c";
}

.ap-icon-registered:before {
  content: "\f25d";
}

.ap-icon-safari:before {
  content: "\f267";
}

.ap-icon-sticky-note:before {
  content: "\f249";
}

.ap-icon-sticky-note-o:before {
  content: "\f24a";
}

.ap-icon-tv:before,
.ap-icon-television:before {
  content: "\f26c";
}

.ap-icon-trademark:before {
  content: "\f25c";
}

.ap-icon-tripadvisor:before {
  content: "\f262";
}

.ap-icon-vimeo:before {
  content: "\f27d";
}

.ap-icon-wikipedia-w:before {
  content: "\f266";
}

.ap-icon-yc:before,
.ap-icon-y-combinator:before {
  content: "\f23b";
}

.ap-icon-yc-square:before,
.ap-icon-y-combinator-square:before {
  content: "\f1d4";
}

.ap-icon-bluetooth:before {
  content: "\f293";
}

.ap-icon-bluetooth-b:before {
  content: "\f294";
}

.ap-icon-codiepie:before {
  content: "\f284";
}

.ap-icon-credit-card-alt:before {
  content: "\f283";
}

.ap-icon-edge:before {
  content: "\f282";
}

.ap-icon-fort-awesome:before {
  content: "\f286";
}

.ap-icon-hashtag:before {
  content: "\f292";
}

.ap-icon-mixcloud:before {
  content: "\f289";
}

.ap-icon-modx:before {
  content: "\f285";
}

.ap-icon-pause-circle:before {
  content: "\f28b";
}

.ap-icon-pause-circle-o:before {
  content: "\f28c";
}

.ap-icon-percent:before {
  content: "\f295";
}

.ap-icon-product-hunt:before {
  content: "\f288";
}

.ap-icon-reddit-alien:before {
  content: "\f281";
}

.ap-icon-scribd:before {
  content: "\f28a";
}

.ap-icon-shopping-bag:before {
  content: "\f290";
}

.ap-icon-shopping-basket:before {
  content: "\f291";
}

.ap-icon-stop-circle:before {
  content: "\f28d";
}

.ap-icon-stop-circle-o:before {
  content: "\f28e";
}

.ap-icon-usb:before {
  content: "\f287";
}

.ap-icon-american-sign-language-interpreting:before,
.ap-icon-asl-interpreting:before {
  content: "\f2a3";
}

.ap-icon-assistive-listening-systems:before {
  content: "\f2a2";
}

.ap-icon-audio-description:before {
  content: "\f29e";
}

.ap-icon-blind:before {
  content: "\f29d";
}

.ap-icon-braille:before {
  content: "\f2a1";
}

.ap-icon-deaf:before,
.ap-icon-deafness:before {
  content: "\f2a4";
}

.ap-icon-envira:before {
  content: "\f299";
}

.ap-icon-font-awesome:before,
.ap-icon-fa:before {
  content: "\f2b4";
}

.ap-icon-first-order:before {
  content: "\f2b0";
}

.ap-icon-gitlab:before {
  content: "\f296";
}

.ap-icon-glide:before {
  content: "\f2a5";
}

.ap-icon-glide-g:before {
  content: "\f2a6";
}

.ap-icon-hard-of-hearing:before {
  content: "\f2a4";
}

.ap-icon-low-vision:before {
  content: "\f2a8";
}

.ap-icon-question-circle-o:before {
  content: "\f29c";
}

.ap-icon-sign-language:before,
.ap-icon-signing:before {
  content: "\f2a7";
}

.ap-icon-snapchat:before {
  content: "\f2ab";
}

.ap-icon-snapchat-ghost:before {
  content: "\f2ac";
}

.ap-icon-snapchat-square:before {
  content: "\f2ad";
}

.ap-icon-themeisle:before {
  content: "\f2b2";
}

.ap-icon-universal-access:before {
  content: "\f29a";
}

.ap-icon-viadeo:before {
  content: "\f2a9";
}

.ap-icon-viadeo-square:before {
  content: "\f2aa";
}

.ap-icon-volume-control-phone:before {
  content: "\f2a0";
}

.ap-icon-wheelchair-alt:before {
  content: "\f29b";
}

.ap-icon-wpbeginner:before {
  content: "\f297";
}

.ap-icon-wpforms:before {
  content: "\f298";
}

.ap-icon-yoast:before {
  content: "\f2b1";
}

/* ========================================================================
   Component: Overlay
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Set max-width for responsive images to prevent `inline-block` consequences
 * 4. Remove the gap between the container and its child element
 * 5. Needed for transitions and to fixed wrong scaling calculation for images in Chrome
 * 6. Fixed `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 * 7. Reset margin
 */
.ap-overlay {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -webkit-transform: translateZ(0);
  /* 7 */
  margin: 0;
}

/* 6 for Safari */
.ap-overlay.ap-border-circle {
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

/*
 * Remove margin from content
 */
.ap-overlay > :first-child {
  margin-bottom: 0;
}

/* Sub-object `ap-overlay-panel`
 ========================================================================== */
/*
 * 1. Position cover
 * 2. Style
 */
.ap-overlay-panel {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 20px;
  color: #fff;
}

/*
 * Remove margin from the last-child
 */
.ap-overlay-panel > :last-child,
.ap-overlay-panel.ap-flex > * > :last-child {
  margin-bottom: 0;
}

/*
 * Keep color for headings if the default heading color is changed
 */
.ap-overlay-panel h1,
.ap-overlay-panel h2,
.ap-overlay-panel h3,
.ap-overlay-panel h4,
.ap-overlay-panel h5,
.ap-overlay-panel h6 {
  color: inherit;
}

.ap-overlay-panel a:not([class]) {
  color: inherit;
  text-decoration: underline;
}

.ap-overlay-panel a[class*=ap-icon-]:not(.ap-icon-button) {
  color: inherit;
}

/* Sub-object `ap-overlay-hover` and `ap-overlay-active`
 ========================================================================== */
.ap-overlay-hover:not(:hover):not(.ap-hover) .ap-overlay-panel:not(.ap-ignore) {
  opacity: 0;
}

.ap-overlay-active :not(.ap-active) > .ap-overlay-panel:not(.ap-ignore) {
  opacity: 0;
}

/* Modifier `ap-overlay-background`
 ========================================================================== */
.ap-overlay-background {
  background: rgba(0, 0, 0, 0.5);
}

/* Modifier `ap-overlay-image`
 ========================================================================== */
/*
 * Reset panel
 */
.ap-overlay-image {
  padding: 0;
}

/* Position modifiers
 ========================================================================== */
.ap-overlay-top {
  bottom: auto;
}

.ap-overlay-bottom {
  top: auto;
}

.ap-overlay-left {
  right: auto;
}

.ap-overlay-right {
  left: auto;
}

/* Sub-object `ap-overlay-icon`
 ========================================================================== */
.ap-overlay-icon:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #fff;
}

/* Transitions
 ========================================================================== */
.ap-overlay-fade,
.ap-overlay-scale,
.ap-overlay-spin,
.ap-overlay-grayscale,
.ap-overlay-blur,
[class*=ap-overlay-slide] {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, transform, filter;
  transition-property: opacity, transform, filter, -webkit-transform, -webkit-filter;
}

.ap-overlay-active .ap-overlay-fade,
.ap-overlay-active .ap-overlay-scale,
.ap-overlay-active .ap-overlay-spin,
.ap-overlay-active [class*=ap-overlay-slide] {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

/*
 * Fade
 */
.ap-overlay-fade {
  opacity: 0.7;
}

.ap-overlay-hover:hover .ap-overlay-fade,
.ap-overlay-hover.ap-hover .ap-overlay-fade,
.ap-overlay-active .ap-active > .ap-overlay-fade {
  opacity: 1;
}

/*
 * Scale
 */
.ap-overlay-scale {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.ap-overlay-hover:hover .ap-overlay-scale,
.ap-overlay-hover.ap-hover .ap-overlay-scale,
.ap-overlay-active .ap-active > .ap-overlay-scale {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*
 * Spin
 */
.ap-overlay-spin {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.ap-overlay-hover:hover .ap-overlay-spin,
.ap-overlay-hover.ap-hover .ap-overlay-spin,
.ap-overlay-active .ap-active > .ap-overlay-spin {
  -webkit-transform: scale(1.1) rotate(3deg);
  transform: scale(1.1) rotate(3deg);
}

/*
 * Grayscale
 */
.ap-overlay-grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.ap-overlay-hover:hover .ap-overlay-grayscale,
.ap-overlay-hover.ap-hover .ap-overlay-grayscale,
.ap-overlay-active .ap-active > .ap-overlay-grayscale {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/*
 * Slide
 */
[class*=ap-overlay-slide] {
  opacity: 0;
}

/* Top */
.ap-overlay-slide-top {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

/* Bottom */
.ap-overlay-slide-bottom {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

/* Left */
.ap-overlay-slide-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

/* Right */
.ap-overlay-slide-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/* Hover */
.ap-overlay-hover:hover [class*=ap-overlay-slide],
.ap-overlay-hover.ap-hover [class*=ap-overlay-slide],
.ap-overlay-active .ap-active > [class*=ap-overlay-slide] {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

/* DEPRECATED
 * Sub-object `ap-overlay-area`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.ap-overlay-area {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  background: rgba(0, 0, 0, 0.3);
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}

/*
 * Hover
 * 1. `ap-hover` to support touch devices
 * 2. Use optional `ap-overlay-toggle` to trigger the overlay earlier
 */
.ap-overlay:hover .ap-overlay-area,
.ap-overlay.ap-hover .ap-overlay-area,
.ap-overlay-toggle:hover .ap-overlay-area,
.ap-overlay-toggle.ap-hover .ap-overlay-area {
  opacity: 1;
}

/*
 * Icon
 */
.ap-overlay-area:empty:before {
  content: "\f002";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-left: -25px;
  font-size: 50px;
  line-height: 1;
  font-family: FontAwesome;
  text-align: center;
  color: #fff;
}

/* DEPRECATED
 * Sub-object `ap-overlay-area-content`
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 * Needed for Firefox
 */
.ap-overlay-area:not(:empty) {
  font-size: 0.001px;
}

/*
 * 1. Needed for vertical alignment
 */
.ap-overlay-area:not(:empty):before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*
 * 1. Set vertical alignment
 * 2. Reset whitespace hack
 * 3. Set horizontal alignment
 * 4. Set style
 */
.ap-overlay-area-content {
  /* 1 */
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  /* 2 */
  font-size: 1rem;
  /* 3 */
  text-align: center;
  /* 4 */
  padding: 0 15px;
  color: #fff;
}

/*
 * Remove margin from the last-child
 */
.ap-overlay-area-content > :last-child {
  margin-bottom: 0;
}

/*
 * Links in overlay area
 */
.ap-overlay-area-content a:not([class]),
.ap-overlay-area-content a:not([class]):hover {
  color: inherit;
}

/* DEPRECATED
 * Sub-object `ap-overlay-caption`
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set style
 * 3. Fade-in transition
 */
.ap-overlay-caption {
  /* 1 */
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* 2 */
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  /* 3 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  -webkit-transform: translate3d(0, 0, 0);
}

/*
 * Hover
 * 1. `ap-hover` to support touch devices
 * 2. Use optional `ap-overlay-toggle` to trigger the overlay earlier
 */
.ap-overlay:hover .ap-overlay-caption,
.ap-overlay.ap-hover .ap-overlay-caption,
.ap-overlay-toggle:hover .ap-overlay-caption,
.ap-overlay-toggle.ap-hover .ap-overlay-caption {
  opacity: 1;
}

/* Headings
 ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  text-transform: none;
}

/*
 * Margins
 */
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 0;
}

/*
 * Sizes
 */
h1,
.ap-h1 {
  font-size: 36px;
  line-height: 42px;
}

h2,
.ap-h2 {
  font-size: 24px;
  line-height: 30px;
}

h3,
.ap-h3 {
  font-size: 18px;
  line-height: 24px;
}

h4,
.ap-h4 {
  font-size: 16px;
  line-height: 22px;
}

h5,
.ap-h5 {
  font-size: 14px;
  line-height: 20px;
}

h6,
.ap-h6 {
  font-size: 12px;
  line-height: 18px;
}

/* Links
 ========================================================================== */
/*
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
  color: inherit;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

/*
 * Improve readability of focused elements when they are also in an active/hover state.
 */
a:active,
a:focus,
a:hover,
.ap-link:active,
.ap-link:focus,
.ap-link:hover {
  outline: 0;
  color: #747272;
  text-decoration: none;
}

/* Text-level semantics
 ========================================================================== */
p {
  margin-bottom: 0;
  margin-top: 25px;
}
p:first-of-type {
  margin-top: 0;
}
p.small {
  font-size: 14px;
}
p.large {
  font-size: 18px;
}

/*
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/*
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Consolas has a better baseline in running text compared to `Courier`
 */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 12px;
  /* 2 */
  font-family: Consolas, monospace, serif;
  /* 3 */
  color: #d05;
  white-space: nowrap;
}

/*
 * Emphasize
 */
em {
  color: inherit;
  font-style: normal;
}

/*
 * Insert
 */
ins {
  background: #ffa;
  color: #444;
  text-decoration: none;
}

/*
 * Mark
 * Note: Addresses styling not present in IE 8/9.
 */
mark {
  background: #ffa;
  color: #444;
}

/*
 * Quote
 */
q {
  font-style: italic;
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Block elements
 ========================================================================== */
/*
 * Reset margin
 */
blockquote,
figure {
  margin: 0;
}

/*
 * Margins
 */
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0 0 0 0;
}

/* ========================================================================
   Component: Text
 ========================================================================== */
/* Size modifiers
 ========================================================================== */
.ap-text-small {
  font-size: 11px;
  line-height: 16px;
}

.ap-text-large {
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}

/* Weight modifiers
 ========================================================================== */
.ap-text-bold {
  font-weight: bold;
}

/* Color modifiers
 ========================================================================== */
.ap-text-muted {
  color: #999 !important;
}

.ap-text-primary {
  color: #2d7091 !important;
}

.ap-text-success {
  color: #659f13 !important;
}

.ap-text-warning {
  color: #e28327 !important;
}

.ap-text-danger {
  color: #d85030 !important;
}

.ap-text-contrast {
  color: #fff !important;
}

/* Alignment modifiers
 ========================================================================== */
.ap-text-left {
  text-align: left !important;
}

.ap-text-right {
  text-align: right !important;
}

.ap-text-center {
  text-align: center !important;
}

.ap-text-justify {
  text-align: justify !important;
}

.ap-text-top {
  vertical-align: top !important;
}

.ap-text-middle {
  vertical-align: middle !important;
}

.ap-text-bottom {
  vertical-align: bottom !important;
}

/* Only tablets portrait and smaller */
@media (max-width: 959px) {
  .ap-text-center-medium {
    text-align: center !important;
  }
  .ap-text-left-medium {
    text-align: left !important;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  .ap-text-center-small {
    text-align: center !important;
  }
  .ap-text-left-small {
    text-align: left !important;
  }
}
/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.ap-text-nowrap {
  white-space: nowrap;
}

/*
 * Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 */
.ap-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
 * Break strings if their length exceeds the width of their container
 */
.ap-text-break {
  word-wrap: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* Transform modifiers
 ========================================================================== */
.ap-text-capitalize {
  text-transform: capitalize !important;
}

.ap-text-lowercase {
  text-transform: lowercase !important;
}

.ap-text-uppercase {
  text-transform: uppercase !important;
}

/* ========================================================================
   Component: Thumbnail
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Responsive behavior
 * 3. Corrects `max-width` behavior sed
 * 4. Required for `figure` element
 * 5. Style
 */
.ap-thumbnail {
  /* 1 */
  display: inline-block;
  /* 2 */
  max-width: 100%;
  /* 3 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 3 */
  margin: 0;
  /* 4 */
  padding: 4px;
  border: 1px solid #ddd;
  background: #fff;
}

/*
 * Hover state for `a` elements
 * 1. Apply hover style also to focus state
 * 2. Needed for caption
 * 3. Remove default focus style
 */
a.ap-thumbnail:hover,
a.ap-thumbnail:focus {
  border-color: #aaa;
  background-color: #fff;
  /* 2 */
  text-decoration: none;
  /* 3 */
  outline: none;
}

/* Caption
 ========================================================================== */
.ap-thumbnail-caption {
  padding-top: 4px;
  text-align: center;
  color: #444;
}

/* Sizes
 ========================================================================== */
.ap-thumbnail-mini {
  width: 150px;
}

.ap-thumbnail-small {
  width: 200px;
}

.ap-thumbnail-medium {
  width: 300px;
}

.ap-thumbnail-large {
  width: 400px;
}

.ap-thumbnail-expand,
.ap-thumbnail-expand > img {
  width: 100%;
}

/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Box-sizing is needed for `ap-dropdown-justify`
 * 4. Set width
 */
.ap-dropdown,
.ap-dropdown-blank {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 5000;
  /* 3 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 4 */
  width: 250px;
}

/*
 * Dropdown style
 * 1. Reset button group whitespace hack
 */
.ap-dropdown {
  padding: 5px;
  background: #333333;
  color: #444;
  font-size: 1rem;
  vertical-align: top;
}
.ap-dropdown .ap-nav {
  padding: 0;
}
.ap-dropdown .ap-nav li a {
  color: #fff;
}

/* Focus */
.ap-dropdown:focus {
  outline: none;
}

/*
 * 1. Show dropdown
 * 2. Set animation
 * 3. Needed for scale animation
 */
.ap-open > .ap-dropdown,
.ap-open > .ap-dropdown-blank {
  /* 1 */
  display: block;
  /* 2 */
  -webkit-animation: ap-fade 0.2s ease-in-out;
  animation: ap-fade 0.2s ease-in-out;
  /* 3 */
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* Alignment modifiers
 ========================================================================== */
/*
 * Modifier
 */
.ap-dropdown-top {
  margin-top: -2.5px;
}

.ap-dropdown-bottom {
  margin-top: 2.5px;
}

.ap-dropdown-left {
  margin-left: -2.5px;
}

.ap-dropdown-right {
  margin-left: 2.5px;
}

/* Nav in dropdown
 ========================================================================== */
/* Grid and panel in dropdown
 ========================================================================== */
/*
* Vertical gutter
*/
/*
 * Grid
 * Higher specificity to override large gutter
 */
.ap-grid .ap-dropdown-grid + .ap-dropdown-grid {
  margin-top: 15px;
}

/* Panels */
.ap-dropdown-grid > [class*=ap-width-] > .ap-panel + .ap-panel {
  margin-top: 15px;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  /*
      * Horizontal gutter
      */
  .ap-dropdown:not(.ap-dropdown-stack) > .ap-dropdown-grid {
    margin-left: -15px;
    margin-right: -15px;
  }
  .ap-dropdown:not(.ap-dropdown-stack) > .ap-dropdown-grid > [class*=ap-width-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  /*
      * Column divider
      */
  .ap-dropdown:not(.ap-dropdown-stack) > .ap-dropdown-grid > [class*=ap-width-]:nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
  /*
      * Width multiplier for dropdown columns
      */
  .ap-dropdown-width-2:not(.ap-dropdown-stack) {
    width: 500px;
  }
  .ap-dropdown-width-3:not(.ap-dropdown-stack) {
    width: 750px;
  }
  .ap-dropdown-width-4:not(.ap-dropdown-stack) {
    width: 1000px;
  }
  .ap-dropdown-width-5:not(.ap-dropdown-stack) {
    width: 1250px;
  }
}
/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
      * Stack columns and take full width
      */
  .ap-dropdown-grid > [class*=ap-width-] {
    width: 100%;
  }
  /*
      * Vertical gutter
      */
  .ap-dropdown-grid > [class*=ap-width-]:nth-child(n+2) {
    margin-top: 15px;
  }
}
/*
* Stack grid columns
*/
.ap-dropdown-stack > .ap-dropdown-grid > [class*=ap-width-] {
  width: 100%;
}

.ap-dropdown-stack > .ap-dropdown-grid > [class*=ap-width-]:nth-child(n+2) {
  margin-top: 15px;
}

/* Modifier `ap-dropdown-small`
 ========================================================================== */
/*
 * Set min-width and text expands dropdown if needed
 */
.ap-dropdown-small {
  min-width: 150px;
  width: auto;
  padding: 5px;
  white-space: nowrap;
}

/*
 * Nav in dropdown
 */
.ap-dropdown-small .ap-nav {
  margin: 0 -5px;
}

/* Modifier: `ap-dropdown-navbar`
 ========================================================================== */
.ap-dropdown-navbar {
  margin-top: 0;
  background: #f5f5f5;
  color: #444;
}

.ap-open > .ap-dropdown-navbar {
  -webkit-animation: ap-slide-top-fixed 0.2s ease-in-out;
  animation: ap-slide-top-fixed 0.2s ease-in-out;
}

/* Modifier `ap-dropdown-scrollable`
 ========================================================================== */
/*
 * Usefull for long lists
 */
.ap-dropdown-scrollable {
  overflow-y: auto;
  max-height: 200px;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * This is the modal overlay and modal dialog container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Allow scrolling for the modal dialog
 * 4. Mask the background page
 * 5. Fade-in transition
 * 6. Deactivate browser history navigation in IE11
 * 7. force hardware acceleration to prevent browser rendering hiccups
 */
.ap-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  background: rgba(0, 0, 0, 0.9);
  /* 5 */
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  /* 6 */
  -ms-touch-action: cross-slide-y pinch-zoom double-tap-zoom;
      touch-action: cross-slide-y pinch-zoom double-tap-zoom;
  /* 7 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/*
 * Open state
 */
.ap-modal.ap-open {
  opacity: 1;
}

/*
 * Prevents duplicated scrollbar caused by 4.
 */
.ap-modal-page,
.ap-modal-page body {
  overflow: hidden;
}

/* Sub-object: `ap-modal-dialog`
 ========================================================================== */
/*
 * 1. Create position context for caption, spinner and close button
 * 2. Set box sizing
 * 3. Set style
 * 4. Slide-in transition
 */
.ap-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 50px auto;
  padding: 40px;
  width: 600px;
  max-width: 100%;
  max-width: calc(100% - 20px);
  /* 3 */
  background: #fff;
  /* 4 */
  opacity: 0;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.ap-modal-dialog.modal-clear {
  background: transparent;
}
.ap-modal-dialog.modal-clear .ap-close {
  color: #fff;
  opacity: 1;
}

/* Phone landscape and smaller */
@media (max-width: 767px) {
  /*
      * Fit in small screen
      */
  .ap-modal-dialog {
    width: auto;
    margin: 10px auto;
  }
}
/*
 * Open state
 */
.ap-open .ap-modal-dialog {
  /* 4 */
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/*
 * Remove margin from the last-child
 */
.ap-modal-dialog > :not([class*=ap-modal-]):last-child {
  margin-bottom: 0;
}

/* Close in modal
 ========================================================================== */
.ap-modal-dialog > .ap-close:first-child {
  margin: -10px -10px 0 0;
  float: right;
}

/*
 * Remove margin from adjacent element
 */
.ap-modal-dialog > .ap-close:first-child + :not([class*=ap-modal-]) {
  margin-top: 0;
}

/* Modifier: `ap-modal-dialog-lightbox`
 ========================================================================== */
.ap-modal-dialog-lightbox {
  margin: 15px auto;
  padding: 0;
  max-width: 95%;
  max-width: calc(100% - 30px);
  min-height: 50px;
}

/*
 * Close button
 */
.ap-modal-dialog-lightbox > .ap-close:first-child {
  position: absolute;
  top: -12px;
  right: -12px;
  margin: 0;
  float: none;
}

/* Phone landscape and smaller */
@media (max-width: 767px) {
  .ap-modal-dialog-lightbox > .ap-close:first-child {
    top: -7px;
    right: -7px;
  }
}
/* Modifier: `ap-modal-dialog-blank`
 ========================================================================== */
.ap-modal-dialog-blank {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

/*
* Close button
*/
.ap-modal-dialog-blank > .ap-close:first-child {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  margin: 0;
  float: none;
}

/* Modifier: `ap-modal-dialog-large`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-modal-dialog-large {
    width: 930px;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .ap-modal-dialog-large {
    width: 1130px;
  }
}
/* Sub-Object: `ap-modal-header` and `ap-modal-footer`
 ========================================================================== */
.ap-modal-header {
  margin-bottom: 15px;
}

.ap-modal-footer {
  margin-top: 15px;
}

/*
 * Remove margin from the last-child
 */
.ap-modal-header > :last-child,
.ap-modal-footer > :last-child {
  margin-bottom: 0;
}

/* Sub-Object: `ap-modal-caption`
 ========================================================================== */
.ap-modal-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  margin-bottom: -10px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sub-Object: `ap-modal-spinner`
 ========================================================================== */
.ap-modal-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #ddd;
}

.ap-modal-spinner:after {
  content: "\f110";
  display: block;
  font-family: FontAwesome;
  -webkit-animation: ap-rotate 2s infinite linear;
  animation: ap-rotate 2s infinite linear;
}

/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * This is the offcanvas overlay and bar container
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Deactivate browser touch actions in IE11
 * 4. Mask the background page
 */
.ap-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  z-index: 1000;
  /* 3 */
  -ms-touch-action: none;
      touch-action: none;
  /* 4 */
  background: rgba(0, 0, 0, 0.1);
}
.ap-offcanvas h2,
.ap-offcanvas h3,
.ap-offcanvas h4,
.ap-offcanvas h5 {
  color: #fff !important;
}
.ap-offcanvas .ap-button.ap-button-primary {
  background: #878787 !important;
  border-color: #878787 !important;
}
.ap-offcanvas .ap-button.ap-button-secondary {
  color: #fff !important;
  background: #4d4c4c !important;
  border-color: #4d4c4c !important;
}
.ap-offcanvas .ap-button.ap-button-link {
  color: #fff !important;
}

.ap-offcanvas.ap-active {
  display: block;
}

/* Sub-object `ap-offcanvas-page`
 ========================================================================== */
/*
 * Prepares the whole HTML page to slide-out
 * 1. Fix the main page and disallow scrolling
 * 2. Side-out transition
 * 3. Needed for the transition to work instead of just letting it pop to the side
 */
.ap-offcanvas-page {
  /* 1 */
  position: fixed;
  /* 2 */
  -webkit-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  /* 3 */
  margin-left: 0;
}

/* Sub-object `ap-offcanvas-bar`
 ========================================================================== */
/*
 * This is the offcanvas bar
 * 1. Set fixed position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Side-out transition
 * 5. Deactivate scroll chaining in IE11
 */
.ap-offcanvas-bar {
  /* 1 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 90%;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  background: #333;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}
@media (min-width: 768px) {
  .ap-offcanvas-bar {
    width: 500px;
  }
}
.ap-offcanvas-bar .ap-button-primary {
  margin-bottom: 10px;
}
.ap-offcanvas-bar .ap-button-primary + .ap-button-primary,
.ap-offcanvas-bar .ap-button-primary + .ap-button-secondary {
  margin-left: 0;
  margin-right: 0;
}
.ap-offcanvas-bar .ap-button-secondary {
  margin-bottom: 10px;
}
.ap-offcanvas-bar .ap-button-secondary + .ap-button-primary,
.ap-offcanvas-bar .ap-button-secondary + .ap-button-secondary {
  margin-left: 0;
  margin-right: 0;
}

.ap-offcanvas.ap-active .ap-offcanvas-bar.ap-offcanvas-bar-show {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/* Modifier `ap-offcanvas-bar-flip`
 ========================================================================== */
.ap-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/* Offcanvase modes
 ========================================================================== */
.ap-offcanvas-bar[mode=none] {
  -webkit-transition: none;
  transition: none;
}

.ap-offcanvas-bar[mode=reveal] {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  clip: rect(0, 0, 100vh, 0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out, clip 0.3s ease-in-out;
  -webkit-transition: clip 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: clip 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.ap-offcanvas-bar-flip[mode=reveal] {
  clip: none;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.ap-offcanvas-bar-flip[mode=reveal] > * {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.ap-offcanvas.ap-active .ap-offcanvas-bar-flip[mode=reveal].ap-offcanvas-bar-show > * {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/* Panel in offcanvas
 ========================================================================== */
.ap-offcanvas .ap-panel {
  margin: 20px 15px;
  color: #fff;
}

.ap-offcanvas .ap-panel-title {
  color: #fff;
}

.ap-offcanvas .ap-panel a:not([class]) {
  color: #fff;
}

.ap-offcanvas .ap-panel a:not([class]):hover {
  color: #fff;
}

/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * 1. Deactivate browser history navigation in IE11
 */
.ap-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
  /* 1 */
  -ms-touch-action: cross-slide-y pinch-zoom double-tap-zoom;
      touch-action: cross-slide-y pinch-zoom double-tap-zoom;
}

/*
 * Items
 */
.ap-switcher > :not(.ap-active) {
  display: none;
}

/* ========================================================================
   Component: Description list
 ========================================================================== */
/* Modifier: `ap-description-list-horizontal`
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-description-list-horizontal {
    overflow: hidden;
  }
  .ap-description-list-horizontal > dt {
    width: 160px;
    float: left;
    clear: both;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ap-description-list-horizontal > dd {
    margin-left: 180px;
  }
}
/* Modifier: `ap-description-list-line`
 ========================================================================== */
.ap-description-list-line > dt {
  font-weight: normal;
}

.ap-description-list-line > dt:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}

.ap-description-list-line > dd {
  color: #999;
}

/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `button`, `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Correct `font` properties and `color` not being inherited.
 */
.ap-form input,
.ap-form select,
.ap-form textarea {
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  color: inherit;
}

/*
 * Address inconsistent `text-transform` inheritance which is only inherit in Firefox
 */
.ap-form select {
  text-transform: none;
}

/*
 * 1. Correct `font` properties not being inherited.
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.ap-form optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
.ap-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * Removes excess padding in IE 8/9/10.
 */
.ap-form input[type=checkbox],
.ap-form input[type=radio] {
  padding: 0;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.ap-form input[type=checkbox]:not(:disabled),
.ap-form input[type=radio]:not(:disabled) {
  cursor: pointer;
}

/*
 * Remove default style in iOS.
 */
.ap-form textarea,
.ap-form input:not([type]),
.ap-form input[type=text],
.ap-form input[type=password],
.ap-form input[type=email],
.ap-form input[type=url],
.ap-form input[type=search],
.ap-form input[type=tel],
.ap-form input[type=number],
.ap-form input[type=datetime] {
  -webkit-appearance: none;
}

/*
 * Remove inner padding and search cancel button in Chrome, Safari and Opera on OS X.
 */
.ap-form input[type=search]::-webkit-search-cancel-button,
.ap-form input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
.ap-form input[type=number]::-webkit-inner-spin-button,
.ap-form input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Define consistent border, margin, and padding.
 */
.ap-form fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/*
 * 1. Remove default vertical scrollbar in IE 8/9/10/11.
 * 2. Improve readability and alignment in all browsers.
 */
.ap-form textarea {
  /* 1 */
  overflow: auto;
  /* 2 */
  vertical-align: top;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.ap-form ::-moz-placeholder {
  opacity: 1;
}

/*
 * Removes `box-shadow` for invalid controls in Firefox.
 */
.ap-form :invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*
 * Vertical alignment
 */
.ap-form input:not([type=radio]):not([type=checkbox]),
.ap-form select {
  vertical-align: middle;
}

/* Style
 ========================================================================== */
/*
 * Controls
 * Except for `range`, `radio`, `checkbox`, `file`, `submit`, `reset`, `button` and `image`
 * 1. Must be `height` because `min-height` is not working in OSX
 * 2. Responsiveness: Sets a maximum width relative to the parent to scale on narrower viewports
 * 3. Vertical `padding` needed for `select` elements in Firefox
 * 4. Style
 */
.ap-form select,
.ap-form textarea,
.ap-form input:not([type]),
.ap-form input[type=text],
.ap-form input[type=password],
.ap-form input[type=datetime],
.ap-form input[type=datetime-local],
.ap-form input[type=date],
.ap-form input[type=month],
.ap-form input[type=time],
.ap-form input[type=week],
.ap-form input[type=number],
.ap-form input[type=email],
.ap-form input[type=url],
.ap-form input[type=search],
.ap-form input[type=tel],
.ap-form input[type=color] {
  height: 40px;
  max-width: 100%;
  padding: 4px 6px;
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  -webkit-transition: all 0.2s linear;
  -webkit-transition-property: border, background, color, box-shadow, padding;
  transition: all 0.2s linear;
  -webkit-transition-property: border, background, color, padding, -webkit-box-shadow;
  transition-property: border, background, color, padding, -webkit-box-shadow;
  transition-property: border, background, color, box-shadow, padding;
  transition-property: border, background, color, box-shadow, padding, -webkit-box-shadow;
}
.ap-form select:focus,
.ap-form textarea:focus,
.ap-form input:not([type]):focus,
.ap-form input[type=text]:focus,
.ap-form input[type=password]:focus,
.ap-form input[type=datetime]:focus,
.ap-form input[type=datetime-local]:focus,
.ap-form input[type=date]:focus,
.ap-form input[type=month]:focus,
.ap-form input[type=time]:focus,
.ap-form input[type=week]:focus,
.ap-form input[type=number]:focus,
.ap-form input[type=email]:focus,
.ap-form input[type=url]:focus,
.ap-form input[type=search]:focus,
.ap-form input[type=tel]:focus,
.ap-form input[type=color]:focus {
  border-color: #ebebeb;
  outline: 0;
  background: #f8f8f8;
  color: #444;
}
.ap-form select:disabled,
.ap-form textarea:disabled,
.ap-form input:not([type]):disabled,
.ap-form input[type=text]:disabled,
.ap-form input[type=password]:disabled,
.ap-form input[type=datetime]:disabled,
.ap-form input[type=datetime-local]:disabled,
.ap-form input[type=date]:disabled,
.ap-form input[type=month]:disabled,
.ap-form input[type=time]:disabled,
.ap-form input[type=week]:disabled,
.ap-form input[type=number]:disabled,
.ap-form input[type=email]:disabled,
.ap-form input[type=url]:disabled,
.ap-form input[type=search]:disabled,
.ap-form input[type=tel]:disabled,
.ap-form input[type=color]:disabled {
  border-color: #ddd;
  background-color: #f5f5f5;
  color: #999;
}

.ap-form input[type=radio]:disabled {
  border-color: #ddd;
  background-color: #f5f5f5;
  color: #999;
}

/*
 * Placeholder
 */
.ap-form :-ms-input-placeholder {
  color: #999 !important;
}

.ap-form ::-moz-placeholder {
  color: #999;
}

.ap-form ::-webkit-input-placeholder {
  color: #999;
}

.ap-form :disabled:-ms-input-placeholder {
  color: #999 !important;
}

.ap-form :disabled::-moz-placeholder {
  color: #999;
}

.ap-form :disabled::-webkit-input-placeholder {
  color: #999;
}

/*
 * Legend
 * 1. Behave like block element
 * 2. Correct `color` not being inherited in IE 8/9/10/11.
 * 3. Remove padding
 * 4. `margin-bottom` is not working in Safari and Opera.
 *    Using `padding` and :after instead to create the border
 * 5. Style
 */
.ap-form legend {
  /* 1 */
  width: 100%;
  /* 2 */
  border: 0;
  /* 3 */
  padding: 0;
  /* 4 */
  padding-bottom: 25px;
  /* 5 */
  font-size: 18px;
  line-height: 30px;
}

/*
 * 1. Fixes IE9
 */
.ap-form legend:after {
  content: "";
  display: block;
  border-bottom: 1px solid #ddd;
  /* 1 */
  width: 100%;
}

/* Size modifiers
 * Higher specificity needed to override defaults
 ========================================================================== */
select.ap-form-small,
textarea.ap-form-small,
input[type].ap-form-small,
input:not([type]).ap-form-small {
  height: 25px;
  padding: 3px 3px;
  font-size: 12px;
}

select.ap-form-large,
textarea.ap-form-large,
input[type].ap-form-large,
input:not([type]).ap-form-large {
  height: 40px;
  padding: 8px 6px;
  font-size: 16px;
}

/* Reset height
 * Must be after size modifiers
 ========================================================================== */
.ap-form textarea,
.ap-form select[multiple],
.ap-form select[size] {
  height: auto;
  min-height: 160px;
}

/* Validation states
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Error state
 */
.ap-form-danger {
  border-color: #dc8d99 !important;
  background: #fff7f8 !important;
  color: #d85030 !important;
}

/*
 * Success state
 */
.ap-form-success {
  border-color: #8ec73b !important;
  background: #fafff2 !important;
  color: #659f13 !important;
}

/* Style modifiers
 * Using !important to keep the selector simple
 ========================================================================== */
/*
 * Blank form
 */
.ap-form-blank {
  border-color: transparent !important;
  border-style: dashed !important;
  background: none !important;
}

.ap-form-blank:focus {
  border-color: #ddd !important;
}

/* Size sub-modifiers
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.ap-form-width-mini {
  width: 40px;
}

select.ap-form-width-mini {
  width: 65px;
}

.ap-form-width-small {
  width: 130px;
}

.ap-form-width-medium {
  width: 200px;
}

.ap-form-width-large {
  width: 500px;
}

/* Sub-objects: `ap-form-row`
 * Groups labels and controls in rows
 ========================================================================== */
/*
 * Micro clearfix
 * Needed for `ap-form-horizontal` modifier
 */
.ap-form-row:before,
.ap-form-row:after {
  content: "";
  display: table;
}

.ap-form-row:after {
  clear: both;
}

/*
 * Vertical gutter
 */
.ap-form-row {
  margin-top: 25px !important;
}
.ap-form-row:first-of-type {
  margin-top: 0;
}
.ap-form-row.half {
  width: 100%;
}
@media (min-width: 768px) {
  .ap-form-row.half {
    width: calc(50% - 15px);
    display: inline-block;
    padding-right: 10px;
  }
  .ap-form-row.half:first-of-type {
    margin: 0;
  }
}
.ap-form-row hr {
  margin: 20px auto 5px auto;
  opacity: 0.75;
}
.ap-form-row .js-address-postcode {
  width: 100%;
}
.ap-form-row .js-address-get-address {
  position: absolute;
  right: 0;
}

/* Help text
 * Sub-object: `ap-form-help-inline`, `ap-form-help-block`
 ========================================================================== */
.ap-form-help-inline {
  display: inline-block;
  margin: 0 0 0 10px;
}

.ap-form-help-block {
  margin: 5px 0 0 0;
}

/* Controls content
 * Sub-object: `ap-form-controls`, `ap-form-controls-condensed`
 ========================================================================== */
/*
 * Remove margins
 */
.ap-form-controls > :first-child {
  margin-top: 0;
}

.ap-form-controls > :last-child {
  margin-bottom: 0;
}

/*
 * Group controls and text into blocks with a small spacing between blocks
 */
.ap-form-controls-condensed {
  margin: 5px 0;
}

/* Modifier: `ap-form-stacked`
 * Requires sub-object: `ap-form-label`
 ========================================================================== */
.ap-form-stacked .ap-form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Modifier: `ap-form-horizontal`
 * Requires sub-objects: `ap-form-label`, `ap-form-controls`
 ========================================================================== */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `ap-form-stacked` */
  .ap-form-horizontal .ap-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-form-horizontal .ap-form-label {
    width: 200px;
    margin-top: 5px;
    float: left;
  }
  .ap-form-horizontal .ap-form-controls {
    margin-left: 215px;
  }
  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .ap-form-horizontal .ap-form-controls-text {
    padding-top: 5px;
  }
}
/* Sub-object: `ap-form-icon`
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.ap-form-icon {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}

/*
 * 1. Make form element clickable through icon
 */
.ap-form-icon > [class*=ap-icon-] {
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999;
  text-align: center;
  z-index: 50;
  pointer-events: none;
}

.ap-form-icon:not(.ap-form-icon-flip) > input {
  padding-left: 30px !important;
}

/*
 * Sub-modifier: `ap-form-icon-flip`
 */
.ap-form-icon-flip > [class*=ap-icon-] {
  right: 0;
}

.ap-form-icon-flip > input {
  padding-right: 30px !important;
}

/* ========================================================================
   Component: List
 ========================================================================== */
.ap-list {
  padding: 0;
  list-style: none;
}

/*
 * Micro clearfix to make list more robust
 */
.ap-list > li:before,
.ap-list > li:after {
  content: "";
  display: table;
}

.ap-list > li:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.ap-list > li > :last-child {
  margin-bottom: 0;
}

/*
 * Nested lists
 */
.ap-list ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

/* Modifier: `ap-list-line`
 ========================================================================== */
.ap-list-line li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 23px;
  padding-left: 20px;
  position: relative;
}
.ap-list-line li:before {
  content: "";
  height: 1px;
  width: 7px;
  left: 0;
  position: absolute;
  top: 12px;
  background: #4d4c4c;
}

/* Modifier: `ap-list-underline`
 ========================================================================== */
.ap-list-underline > li:nth-child(n+2) {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #ddd;
}

/* Modifier: `ap-list-striped`
 ========================================================================== */
.ap-list-striped > li {
  padding: 5px 5px;
}

.ap-list-striped > li:nth-of-type(odd) {
  background: #f5f5f5;
}

/* Modifier: `ap-list-space`
 ========================================================================== */
.ap-list-space > li:nth-child(n+2) {
  margin-top: 10px;
}

/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Block element behavior
 * 3. Style
 */
.ap-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 15px;
}

/*
 * Add margin if adjacent element
 */
.ap-table th,
.ap-table td {
  padding: 8px 8px;
}

/*
 * Set alignment
 */
.ap-table th {
  text-align: left;
  font-size: 15px;
  line-height: 16px;
}

.ap-table td {
  vertical-align: top;
}

.ap-table thead th {
  vertical-align: bottom;
}

/*
 * Caption and footer
 */
.ap-table caption,
.ap-table tfoot {
  font-size: 12px;
  font-style: italic;
}

.ap-table caption {
  text-align: left;
  color: #999;
}

/*
 * Active State
 */
.ap-table tbody tr.ap-active {
  background: #eee;
}

/* Sub-modifier: `ap-table-middle`
 ========================================================================== */
.ap-table-middle,
.ap-table-middle td {
  vertical-align: middle !important;
}

/* Modifier: `ap-table-striped`
 ========================================================================== */
.ap-table-striped tbody tr:nth-of-type(odd) {
  background: #f5f5f5;
}

/* Modifier: `ap-table-condensed`
 ========================================================================== */
.ap-table-condensed td {
  padding: 4px 8px;
}

/* Modifier: `ap-table-hover`
 ========================================================================== */
.ap-table-hover tbody tr:hover {
  background: #eee;
}

/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix to make articles more robust
 */
.ap-article:before,
.ap-article:after {
  content: "";
  display: table;
}

.ap-article:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.ap-article > :last-child {
  margin-bottom: 0;
}

/*
 * Vertical gutter for articles
 */
.ap-article + .ap-article {
  margin-top: 25px;
}

/* Sub-object `ap-article-title`
 ========================================================================== */
.ap-article-title {
  font-size: 36px;
  line-height: 42px;
  font-weight: normal;
  text-transform: none;
}

.ap-article-title a {
  color: inherit;
  text-decoration: none;
}

/* Sub-object `ap-article-meta`
 ========================================================================== */
.ap-article-meta {
  font-size: 12px;
  line-height: 18px;
  color: #999;
}

/* Sub-object `ap-article-lead`
 ========================================================================== */
.ap-article-lead {
  color: #444;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
}

/* Sub-object `ap-article-divider`
 ========================================================================== */
.ap-article-divider {
  margin-bottom: 25px;
  border-color: #ddd;
}

* + .ap-article-divider {
  margin-top: 25px;
}

/* ========================================================================
   Component: Block
 ========================================================================== */
.ap-block {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  background: #fff;
}
@media (min-width: 768px) {
  .ap-block {
    padding: 25px;
  }
}

/*
 * Micro clearfix to make blocks more robust
 */
.ap-block:before,
.ap-block:after {
  content: "";
  display: table;
}

.ap-block:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.ap-block > :last-child {
  margin-bottom: 0;
}

/* Padding Modifier
 ========================================================================== */
/*
 * Large padding
 */
.ap-block-large {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Tablets and bigger */
@media (min-width: 768px) {
  .ap-block-large {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-block-large {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* Color Modifier
 ========================================================================== */
/*
 * Default
 */
.ap-block-default {
  background: #fff;
}

/*
 * Muted
 */
.ap-block-muted {
  background: #f9f9f9;
}

/*
 * Primary
 */
.ap-block-primary {
  background: #00a8e6;
}

/*
 * Secondary
 */
.ap-block-secondary {
  background: #222;
}

/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sub-object `ap-comment-header`
 ========================================================================== */
.ap-comment-header {
  margin-bottom: 15px;
}

/*
 * Micro clearfix
 */
.ap-comment-header:before,
.ap-comment-header:after {
  content: "";
  display: table;
}

.ap-comment-header:after {
  clear: both;
}

/* Sub-object `ap-comment-avatar`
 ========================================================================== */
.ap-comment-avatar {
  margin-right: 15px;
  float: left;
}

/* Sub-object `ap-comment-title`
 ========================================================================== */
.ap-comment-title {
  margin: 5px 0 0 0;
  font-size: 16px;
  line-height: 22px;
}

/* Sub-object `ap-comment-meta`
 ========================================================================== */
.ap-comment-meta {
  margin: 2px 0 0 0;
  font-size: 11px;
  line-height: 16px;
  color: #999;
}

/* Sub-object `ap-comment-body`
 ========================================================================== */
/*
 * Remove margin from the last-child
 */
.ap-comment-body > :last-child {
  margin-bottom: 0;
}

/* Sub-object `ap-comment-list`
 ========================================================================== */
.ap-comment-list {
  padding: 0;
  list-style: none;
}

.ap-comment-list .ap-comment + ul {
  margin: 15px 0 0 0;
  list-style: none;
}

.ap-comment-list > li:nth-child(n+2),
.ap-comment-list .ap-comment + ul > li:nth-child(n+2) {
  margin-top: 15px;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-comment-list .ap-comment + ul {
    padding-left: 100px;
  }
}
/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Background image always covers and centers its element
 */
.ap-cover-background {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

/*
 * Emulates image cover, works with video and image elements
 * 1. Parent container which clips resized object
 * 2. Resizes the object to always covers its container
 * 3. Reset the responsive image CSS
 * 4. Center object
 */
/* 1 */
.ap-cover {
  overflow: hidden;
}

.ap-cover-object {
  /* 2 */
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  /* 3 */
  max-width: none;
  /* 4 */
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*
 * To center iframes use `data-ap-cover` JavaScript
 */
[data-ap-cover] {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.ap-flex {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.ap-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
}

/*
 * Fixes initial flex-shrink value in IE10
 */
.ap-flex > *,
.ap-flex-inline > * {
  -ms-flex-negative: 1;
}

/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.ap-flex-top {
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

.ap-flex-middle {
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.ap-flex-bottom {
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
}

/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.ap-flex-center {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
}

.ap-flex-right {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.ap-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.ap-flex-space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* Direction
 ========================================================================== */
.ap-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.ap-flex-column {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.ap-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
          flex-direction: column-reverse;
}

/* Wrap
 ========================================================================== */
.ap-flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.ap-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ap-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.ap-flex-wrap-top {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.ap-flex-wrap-middle {
  -ms-flex-line-pack: center;
  align-content: center;
}

.ap-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}

.ap-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.ap-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.ap-flex-order-first {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
          order: -1;
}

.ap-flex-order-last {
  -ms-flex-order: 99;
  -webkit-box-ordinal-group: 100;
          order: 99;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .ap-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .ap-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .ap-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .ap-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .ap-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .ap-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-box-ordinal-group: 100;
            order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.ap-flex-item-none {
  -ms-flex: none;
  -webkit-box-flex: 0;
          flex: none;
}

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.ap-flex-item-auto {
  -ms-flex: auto;
  -webkit-box-flex: 1;
          flex: auto;
  /* 1 */
  -ms-flex-negative: 1;
}

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.ap-flex-item-1 {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

/* Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
.ap-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  margin-left: -20px;
  padding: 0;
  /*
   * Grid cell
   * 1. Space is allocated solely based on content dimensions
   * 2. Makes grid more robust so that it can be used with other block elements
   * 3. DEPRECATED Using `float` to support IE9
   */
}
.ap-grid:before, .ap-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.ap-grid:after {
  clear: both;
}
.ap-grid > * {
  /* 1 */
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  /* 3 */
  float: left;
  /* 2 */
  margin: 0;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*
   * Remove margin from the last-child
   */
}

/* Grid gutter
 ========================================================================== */
@media (min-width: 1220px) {
  .ap-grid {
    margin-left: -20px;
  }
  .ap-grid > * {
    padding-left: 20px;
  }
}
/*
 * Collapse gutter
 */
.ap-grid-collapse {
  margin-left: 0;
}
.ap-grid-collapse > * {
  padding-left: 0;
}

.ap-grid-collapse + .ap-grid-collapse,
.ap-grid-collapse > .ap-grid-margin,
.ap-grid-collapse > * > .ap-panel + .ap-panel {
  margin-top: 0;
}

/*
 * Small gutter
 */
.ap-grid-small {
  margin-left: -10px;
}
.ap-grid-small > * {
  padding-left: 10px;
}

.ap-grid-small + .ap-grid-small,
.ap-grid-small > .ap-grid-margin,
.ap-grid-small > * > .ap-panel + .ap-panel {
  margin-top: 10px;
}

/*
 * Medium gutter
 */
.ap-grid-medium {
  margin-left: -20px;
}
.ap-grid-medium > * {
  padding-left: 20px;
}

.ap-grid-medium + .ap-grid-medium,
.ap-grid-medium > .ap-grid-margin,
.ap-grid-medium > * > .ap-panel + .ap-panel {
  margin-top: 20px;
}

/* Modifier: `f-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with .ap-push-*`, .ap-pull-*` and not if the columns float into the next row.
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-grid-divider:not(:empty) {
    margin-left: -20px;
    margin-right: -20px;
  }
  .ap-grid-divider > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ap-grid-divider > [class*=f-width-1-]:not(.ap-width-1-1):nth-child(n+2),
  .ap-grid-divider > [class*=f-width-2-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-3-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-4-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-5-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-6-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-7-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-8-]:nth-child(n+2),
  .ap-grid-divider > [class*=f-width-9-]:nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
  .ap-grid-divider > [class*=f-width-medium-]:not(.ap-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-grid-divider > [class*=f-width-large-]:not(.ap-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid #ddd;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
   * Large gutter
   */
  .ap-grid-divider:not(:empty) {
    margin-left: -20px;
    margin-right: -20px;
  }
  .ap-grid-divider > * {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ap-grid-divider:empty {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
/*
 * Vertical divider
 */
.ap-grid-divider:empty {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Match panels in grids
 ========================================================================== */
.ap-grid-match > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ap-grid-match > * > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

/* Even grid cell widths
 ========================================================================== */
[class*=f-grid-width] > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.ap-grid-width-1-2 > * {
  width: 50%;
}

.ap-grid-width-1-3 > * {
  width: 33.333%;
}

.ap-grid-width-1-4 > * {
  width: 25%;
}

.ap-grid-width-1-5 > * {
  width: 20%;
}

.ap-grid-width-1-6 > * {
  width: 16.666%;
}

.ap-grid-width-1-8 > * {
  width: 12.5%;
}

.ap-grid-width-1-10 > * {
  width: 10%;
}

.ap-grid-width-1-12 > * {
  width: 8.333%;
}

.ap-grid-width-auto > * {
  width: auto;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .ap-grid-width-small-1-1 > * {
    width: 100%;
  }
  .ap-grid-width-small-1-2 > * {
    width: 50%;
  }
  .ap-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .ap-grid-width-small-1-4 > * {
    width: 25%;
  }
  .ap-grid-width-small-1-5 > * {
    width: 20%;
  }
  .ap-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .ap-grid-width-small-1-8 > * {
    width: 12.5%;
  }
  .ap-grid-width-small-1-10 > * {
    width: 10%;
  }
  .ap-grid-width-small-1-12 > * {
    width: 8.333%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-grid-width-medium-1-1 > * {
    width: 100%;
  }
  .ap-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .ap-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .ap-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .ap-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .ap-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .ap-grid-width-medium-1-8 > * {
    width: 12.5%;
  }
  .ap-grid-width-medium-1-10 > * {
    width: 10%;
  }
  .ap-grid-width-medium-1-12 > * {
    width: 8.333%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-grid-width-large-1-1 > * {
    width: 100%;
  }
  .ap-grid-width-large-1-2 > * {
    width: 50%;
  }
  .ap-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .ap-grid-width-large-1-4 > * {
    width: 25%;
  }
  .ap-grid-width-large-1-5 > * {
    width: 20%;
  }
  .ap-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .ap-grid-width-large-1-8 > * {
    width: 12.5%;
  }
  .ap-grid-width-large-1-10 > * {
    width: 10%;
  }
  .ap-grid-width-large-1-12 > * {
    width: 8.333%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .ap-grid-width-xlarge-1-1 > * {
    width: 100%;
  }
  .ap-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .ap-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .ap-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .ap-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .ap-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .ap-grid-width-xlarge-1-8 > * {
    width: 12.5%;
  }
  .ap-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
  .ap-grid-width-xlarge-1-12 > * {
    width: 8.333%;
  }
}
/* Sub-objects: `f-width-*`
 ========================================================================== */
[class*=f-width] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

/*
 * Widths
 */
.ap-width-1-1 {
  width: 100%;
}

.ap-width-1-2,
.ap-width-2-4,
.ap-width-3-6,
.ap-width-4-8,
.ap-width-5-10,
.ap-width-6-12 {
  width: 50%;
}

.ap-width-1-3,
.ap-width-2-6,
.ap-width-4-12 {
  width: 33.333%;
}

.ap-width-2-3,
.ap-width-4-6,
.ap-width-8-12 {
  width: 66.666%;
}

.ap-width-1-4,
.ap-width-2-8,
.ap-width-3-12 {
  width: 25%;
}

.ap-width-3-4,
.ap-width-6-8,
.ap-width-9-12 {
  width: 75%;
}

.ap-width-1-5,
.ap-width-2-10 {
  width: 20%;
}

.ap-width-2-5,
.ap-width-4-10 {
  width: 40%;
}

.ap-width-3-5,
.ap-width-6-10 {
  width: 60%;
}

.ap-width-4-5,
.ap-width-8-10 {
  width: 80%;
}

.ap-width-1-6,
.ap-width-2-12 {
  width: 16.666%;
}

.ap-width-5-6,
.ap-width-10-12 {
  width: 83.333%;
}

.ap-width-1-8 {
  width: 12.5%;
}

.ap-width-3-8 {
  width: 37.5%;
}

.ap-width-5-8 {
  width: 62.5%;
}

.ap-width-7-8 {
  width: 87.5%;
}

.ap-width-1-10 {
  width: 10%;
}

.ap-width-3-10 {
  width: 30%;
}

.ap-width-7-10 {
  width: 70%;
}

.ap-width-9-10 {
  width: 90%;
}

.ap-width-1-12 {
  width: 8.333%;
}

.ap-width-5-12 {
  width: 41.666%;
}

.ap-width-7-12 {
  width: 58.333%;
}

.ap-width-11-12 {
  width: 91.666%;
}

/* Phone landscape and bigger */
@media (min-width: 480px) {
  .ap-width-small-1-1 {
    width: 100%;
  }
  .ap-width-small-1-2,
  .ap-width-small-2-4,
  .ap-width-small-3-6,
  .ap-width-small-4-8,
  .ap-width-small-5-10,
  .ap-width-small-6-12 {
    width: 50%;
  }
  .ap-width-small-1-3,
  .ap-width-small-2-6,
  .ap-width-small-4-12 {
    width: 33.333%;
  }
  .ap-width-small-2-3,
  .ap-width-small-4-6,
  .ap-width-small-8-12 {
    width: 66.666%;
  }
  .ap-width-small-1-4,
  .ap-width-small-2-8,
  .ap-width-small-3-12 {
    width: 25%;
  }
  .ap-width-small-3-4,
  .ap-width-small-6-8,
  .ap-width-small-9-12 {
    width: 75%;
  }
  .ap-width-small-1-5,
  .ap-width-small-2-10 {
    width: 20%;
  }
  .ap-width-small-2-5,
  .ap-width-small-4-10 {
    width: 40%;
  }
  .ap-width-small-3-5,
  .ap-width-small-6-10 {
    width: 60%;
  }
  .ap-width-small-4-5,
  .ap-width-small-8-10 {
    width: 80%;
  }
  .ap-width-small-1-6,
  .ap-width-small-2-12 {
    width: 16.666%;
  }
  .ap-width-small-5-6,
  .ap-width-small-10-12 {
    width: 83.333%;
  }
  .ap-width-small-1-8 {
    width: 12.5%;
  }
  .ap-width-small-3-8 {
    width: 37.5%;
  }
  .ap-width-small-5-8 {
    width: 62.5%;
  }
  .ap-width-small-7-8 {
    width: 87.5%;
  }
  .ap-width-small-1-10 {
    width: 10%;
  }
  .ap-width-small-3-10 {
    width: 30%;
  }
  .ap-width-small-7-10 {
    width: 70%;
  }
  .ap-width-small-9-10 {
    width: 90%;
  }
  .ap-width-small-1-12 {
    width: 8.333%;
  }
  .ap-width-small-5-12 {
    width: 41.666%;
  }
  .ap-width-small-7-12 {
    width: 58.333%;
  }
  .ap-width-small-11-12 {
    width: 91.666%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-width-medium-1-1 {
    width: 100%;
  }
  .ap-width-medium-1-2,
  .ap-width-medium-2-4,
  .ap-width-medium-3-6,
  .ap-width-medium-4-8,
  .ap-width-medium-5-10,
  .ap-width-medium-6-12 {
    width: 50%;
  }
  .ap-width-medium-1-3,
  .ap-width-medium-2-6,
  .ap-width-medium-4-12 {
    width: 33.333%;
  }
  .ap-width-medium-2-3,
  .ap-width-medium-4-6,
  .ap-width-medium-8-12 {
    width: 66.666%;
  }
  .ap-width-medium-1-4,
  .ap-width-medium-2-8,
  .ap-width-medium-3-12 {
    width: 25%;
  }
  .ap-width-medium-3-4,
  .ap-width-medium-6-8,
  .ap-width-medium-9-12 {
    width: 75%;
  }
  .ap-width-medium-1-5,
  .ap-width-medium-2-10 {
    width: 20%;
  }
  .ap-width-medium-2-5,
  .ap-width-medium-4-10 {
    width: 40%;
  }
  .ap-width-medium-3-5,
  .ap-width-medium-6-10 {
    width: 60%;
  }
  .ap-width-medium-4-5,
  .ap-width-medium-8-10 {
    width: 80%;
  }
  .ap-width-medium-1-6,
  .ap-width-medium-2-12 {
    width: 16.666%;
  }
  .ap-width-medium-5-6,
  .ap-width-medium-10-12 {
    width: 83.333%;
  }
  .ap-width-medium-1-8 {
    width: 12.5%;
  }
  .ap-width-medium-3-8 {
    width: 37.5%;
  }
  .ap-width-medium-5-8 {
    width: 62.5%;
  }
  .ap-width-medium-7-8 {
    width: 87.5%;
  }
  .ap-width-medium-1-10 {
    width: 10%;
  }
  .ap-width-medium-3-10 {
    width: 30%;
  }
  .ap-width-medium-7-10 {
    width: 70%;
  }
  .ap-width-medium-9-10 {
    width: 90%;
  }
  .ap-width-medium-1-12 {
    width: 8.333%;
  }
  .ap-width-medium-5-12 {
    width: 41.666%;
  }
  .ap-width-medium-7-12 {
    width: 58.333%;
  }
  .ap-width-medium-11-12 {
    width: 91.666%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-width-large-1-1 {
    width: 100%;
  }
  .ap-width-large-1-2,
  .ap-width-large-2-4,
  .ap-width-large-3-6,
  .ap-width-large-4-8,
  .ap-width-large-5-10,
  .ap-width-large-6-12 {
    width: 50%;
  }
  .ap-width-large-1-3,
  .ap-width-large-2-6,
  .ap-width-large-4-12 {
    width: 33.333%;
  }
  .ap-width-large-2-3,
  .ap-width-large-4-6,
  .ap-width-large-8-12 {
    width: 66.666%;
  }
  .ap-width-large-1-4,
  .ap-width-large-2-8,
  .ap-width-large-3-12 {
    width: 25%;
  }
  .ap-width-large-3-4,
  .ap-width-large-6-8,
  .ap-width-large-9-12 {
    width: 75%;
  }
  .ap-width-large-1-5,
  .ap-width-large-2-10 {
    width: 20%;
  }
  .ap-width-large-2-5,
  .ap-width-large-4-10 {
    width: 40%;
  }
  .ap-width-large-3-5,
  .ap-width-large-6-10 {
    width: 60%;
  }
  .ap-width-large-4-5,
  .ap-width-large-8-10 {
    width: 80%;
  }
  .ap-width-large-1-6,
  .ap-width-large-2-12 {
    width: 16.666%;
  }
  .ap-width-large-5-6,
  .ap-width-large-10-12 {
    width: 83.333%;
  }
  .ap-width-large-1-8 {
    width: 12.5%;
  }
  .ap-width-large-3-8 {
    width: 37.5%;
  }
  .ap-width-large-5-8 {
    width: 62.5%;
  }
  .ap-width-large-7-8 {
    width: 87.5%;
  }
  .ap-width-large-1-10 {
    width: 10%;
  }
  .ap-width-large-3-10 {
    width: 30%;
  }
  .ap-width-large-7-10 {
    width: 70%;
  }
  .ap-width-large-9-10 {
    width: 90%;
  }
  .ap-width-large-1-12 {
    width: 8.333%;
  }
  .ap-width-large-5-12 {
    width: 41.666%;
  }
  .ap-width-large-7-12 {
    width: 58.333%;
  }
  .ap-width-large-11-12 {
    width: 91.666%;
  }
}
/* Large desktop and bigger */
@media (min-width: 1220px) {
  .ap-width-xlarge-1-1 {
    width: 100%;
  }
  .ap-width-xlarge-1-2,
  .ap-width-xlarge-2-4,
  .ap-width-xlarge-3-6,
  .ap-width-xlarge-4-8,
  .ap-width-xlarge-5-10,
  .ap-width-xlarge-6-12 {
    width: 50%;
  }
  .ap-width-xlarge-1-3,
  .ap-width-xlarge-2-6,
  .ap-width-xlarge-4-12 {
    width: 33.333%;
  }
  .ap-width-xlarge-2-3,
  .ap-width-xlarge-4-6,
  .ap-width-xlarge-8-12 {
    width: 66.666%;
  }
  .ap-width-xlarge-1-4,
  .ap-width-xlarge-2-8,
  .ap-width-xlarge-3-12 {
    width: 25%;
  }
  .ap-width-xlarge-3-4,
  .ap-width-xlarge-6-8,
  .ap-width-xlarge-9-12 {
    width: 75%;
  }
  .ap-width-xlarge-1-5,
  .ap-width-xlarge-2-10 {
    width: 20%;
  }
  .ap-width-xlarge-2-5,
  .ap-width-xlarge-4-10 {
    width: 40%;
  }
  .ap-width-xlarge-3-5,
  .ap-width-xlarge-6-10 {
    width: 60%;
  }
  .ap-width-xlarge-4-5,
  .ap-width-xlarge-8-10 {
    width: 80%;
  }
  .ap-width-xlarge-1-6,
  .ap-width-xlarge-2-12 {
    width: 16.666%;
  }
  .ap-width-xlarge-5-6,
  .ap-width-xlarge-10-12 {
    width: 83.333%;
  }
  .ap-width-xlarge-1-8 {
    width: 12.5%;
  }
  .ap-width-xlarge-3-8 {
    width: 37.5%;
  }
  .ap-width-xlarge-5-8 {
    width: 62.5%;
  }
  .ap-width-xlarge-7-8 {
    width: 87.5%;
  }
  .ap-width-xlarge-1-10 {
    width: 10%;
  }
  .ap-width-xlarge-3-10 {
    width: 30%;
  }
  .ap-width-xlarge-7-10 {
    width: 70%;
  }
  .ap-width-xlarge-9-10 {
    width: 90%;
  }
  .ap-width-xlarge-1-12 {
    width: 8.333%;
  }
  .ap-width-xlarge-5-12 {
    width: 41.666%;
  }
  .ap-width-xlarge-7-12 {
    width: 58.333%;
  }
  .ap-width-xlarge-11-12 {
    width: 91.666%;
  }
}
/* Sub-object: `f-push-*` and `f-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `f-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*=f-push-],
  [class*=f-pull-] {
    position: relative;
  }
  /*
   * Push
   */
  .ap-push-1-2,
  .ap-push-2-4,
  .ap-push-3-6,
  .ap-push-4-8,
  .ap-push-5-10,
  .ap-push-6-12 {
    left: 50%;
  }
  .ap-push-1-3,
  .ap-push-2-6,
  .ap-push-4-12 {
    left: 33.333%;
  }
  .ap-push-2-3,
  .ap-push-4-6,
  .ap-push-8-12 {
    left: 66.666%;
  }
  .ap-push-1-4,
  .ap-push-2-8,
  .ap-push-3-12 {
    left: 25%;
  }
  .ap-push-3-4,
  .ap-push-6-8,
  .ap-push-9-12 {
    left: 75%;
  }
  .ap-push-1-5,
  .ap-push-2-10 {
    left: 20%;
  }
  .ap-push-2-5,
  .ap-push-4-10 {
    left: 40%;
  }
  .ap-push-3-5,
  .ap-push-6-10 {
    left: 60%;
  }
  .ap-push-4-5,
  .ap-push-8-10 {
    left: 80%;
  }
  .ap-push-1-6,
  .ap-push-6-12 {
    left: 16.666%;
  }
  .ap-push-5-6,
  .ap-push-10-12 {
    left: 83.333%;
  }
  .ap-push-1-8 {
    left: 12.5%;
  }
  .ap-push-3-8 {
    left: 37.5%;
  }
  .ap-push-5-8 {
    left: 62.5%;
  }
  .ap-push-7-8 {
    left: 87.5%;
  }
  .ap-push-1-10 {
    left: 10%;
  }
  .ap-push-3-10 {
    left: 30%;
  }
  .ap-push-7-10 {
    left: 70%;
  }
  .ap-push-9-10 {
    left: 90%;
  }
  .ap-push-1-12 {
    left: 8.333%;
  }
  .ap-push-5-12 {
    left: 41.666%;
  }
  .ap-push-7-12 {
    left: 58.333%;
  }
  .ap-push-11-12 {
    left: 91.666%;
  }
  /*
   * Pull
   */
  .ap-pull-1-2,
  .ap-pull-2-4,
  .ap-pull-3-6,
  .ap-pull-4-8,
  .ap-pull-5-10,
  .ap-pull-6-12 {
    left: -50%;
  }
  .ap-pull-1-3,
  .ap-pull-2-6,
  .ap-pull-4-12 {
    left: -33.333%;
  }
  .ap-pull-2-3,
  .ap-pull-4-6,
  .ap-pull-8-12 {
    left: -66.666%;
  }
  .ap-pull-1-4,
  .ap-pull-2-8,
  .ap-pull-3-12 {
    left: -25%;
  }
  .ap-pull-3-4,
  .ap-pull-6-8,
  .ap-pull-9-12 {
    left: -75%;
  }
  .ap-pull-1-5,
  .ap-pull-2-10 {
    left: -20%;
  }
  .ap-pull-2-5,
  .ap-pull-4-10 {
    left: -40%;
  }
  .ap-pull-3-5,
  .ap-pull-6-10 {
    left: -60%;
  }
  .ap-pull-4-5,
  .ap-pull-8-10 {
    left: -80%;
  }
  .ap-pull-1-6,
  .ap-pull-6-12 {
    left: -16.666%;
  }
  .ap-pull-5-6,
  .ap-pull-10-12 {
    left: -83.333%;
  }
  .ap-pull-1-8 {
    left: -12.5%;
  }
  .ap-pull-3-8 {
    left: -37.5%;
  }
  .ap-pull-5-8 {
    left: -62.5%;
  }
  .ap-pull-7-8 {
    left: -87.5%;
  }
  .ap-pull-1-10 {
    left: -10%;
  }
  .ap-pull-3-10 {
    left: -30%;
  }
  .ap-pull-7-10 {
    left: -70%;
  }
  .ap-pull-9-10 {
    left: -90%;
  }
  .ap-pull-1-12 {
    left: -8.333%;
  }
  .ap-pull-5-12 {
    left: -41.666%;
  }
  .ap-pull-7-12 {
    left: -58.333%;
  }
  .ap-pull-11-12 {
    left: -91.666%;
  }
}
/* ========================================================================
   Component: Panel
 ========================================================================== */
/*
 * 1. Needed for `a` elements
 * 2. Create position context for badges
 */
.ap-panel {
  /* 1 */
  display: block;
  /* 2 */
  position: relative;
}

/*
 * Allow panels to be anchors
 */
.ap-panel,
.ap-panel:hover {
  text-decoration: none;
}

/*
 * Micro clearfix to make panels more robust
 */
.ap-panel:before,
.ap-panel:after {
  content: "";
  display: table;
}

.ap-panel:after {
  clear: both;
}

/*
 * Remove margin from the last-child if not `ap-widget-title`
 */
.ap-panel > :not(.ap-panel-title):last-child {
  margin-bottom: 0;
}

/* Sub-object: `ap-panel-title`
 ========================================================================== */
.ap-panel-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  font-weight: normal;
  text-transform: none;
  color: #444;
}

/* Sub-object: `ap-panel-badge`
 ========================================================================== */
.ap-panel-badge {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

/* Sub-object: `ap-panel-teaser`
 ========================================================================== */
.ap-panel-teaser {
  margin-bottom: 15px;
}

/* Sub-object: `ap-panel-body`
 ========================================================================== */
.ap-panel-body {
  padding: 15px;
}

/* Modifier: `ap-panel-box`
 ========================================================================== */
.ap-panel-box {
  padding: 15px;
  background: #f5f5f5;
  color: #444;
}

.ap-panel-box-hover:hover {
  color: #444;
}

.ap-panel-box .ap-panel-title {
  color: #444;
}

.ap-panel-box .ap-panel-badge {
  top: 10px;
  right: 10px;
}

.ap-panel-box > .ap-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

/*
 * Nav in panel
 */
.ap-panel-box > .ap-nav-side {
  margin: 0 -15px;
}

/*
 * Sub-modifier: `ap-panel-box-primary`
 */
.ap-panel-box-primary {
  background-color: #ebf7fd;
  color: #2d7091;
}

.ap-panel-box-primary-hover:hover {
  color: #2d7091;
}

.ap-panel-box-primary .ap-panel-title {
  color: #2d7091;
}

/*
 * Sub-modifier: `ap-panel-box-secondary`
 */
.ap-panel-box-secondary {
  background-color: #eee;
  color: #444;
}

.ap-panel-box-secondary-hover:hover {
  color: #444;
}

.ap-panel-box-secondary .ap-panel-title {
  color: #444;
}

/* Modifier: `ap-panel-hover`
 ========================================================================== */
.ap-panel-hover {
  padding: 15px;
  color: #444;
}

.ap-panel-hover:hover {
  background: #f5f5f5;
  color: #444;
}

.ap-panel-hover .ap-panel-badge {
  top: 10px;
  right: 10px;
}

.ap-panel-hover > .ap-panel-teaser {
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
}

/* Modifier: `ap-panel-header`
 ========================================================================== */
.ap-panel-header .ap-panel-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  color: #444;
}

/* Modifier: `ap-panel-space`
 ========================================================================== */
.ap-panel-space {
  padding: 30px;
}

.ap-panel-space .ap-panel-badge {
  top: 30px;
  right: 30px;
}

/* Modifier: `ap-panel-divider`
 ========================================================================== */
.ap-panel + .ap-panel-divider {
  margin-top: 50px !important;
}

.ap-panel + .ap-panel-divider:before {
  content: "";
  display: block;
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  border-top: 1px solid #ddd;
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .ap-panel + .ap-panel-divider {
    margin-top: 70px !important;
  }
  .ap-panel + .ap-panel-divider:before {
    top: -35px;
  }
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Container
 ========================================================================== */
.ap-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 980px;
  padding: 0 20px;
}

/* Large screen and bigger */
@media (min-width: 1220px) {
  .ap-container {
    max-width: 1200px;
    padding: 0 20px;
  }
}
/*
 * Micro clearfix
 */
.ap-container:before,
.ap-container:after {
  content: "";
  display: table;
}

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

/*
 * Center container
 */
.ap-container-center {
  margin-left: auto;
  margin-right: auto;
}

/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `table` is used again with `:after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
.ap-clearfix:before {
  content: "";
  display: table-cell;
}

.ap-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*
 *  Create a new block formatting context
 */
.ap-nbfc {
  overflow: hidden;
}

.ap-nbfc-alt {
  display: table-cell;
  width: 10000px;
}

/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.ap-float-left {
  float: left;
}

.ap-float-right {
  float: right;
}

/* 1 */
[class*=ap-float-] {
  max-width: 100%;
}

/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*=ap-align-] {
  display: block;
  margin-bottom: 15px;
}

.ap-align-left {
  margin-right: 15px;
  float: left;
}

.ap-align-right {
  margin-left: 15px;
  float: right;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-align-medium-left {
    margin-right: 15px;
    float: left;
  }
  .ap-align-medium-right {
    margin-left: 15px;
    float: right;
  }
}
.ap-align-center {
  margin-left: auto;
  margin-right: auto;
}

/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.ap-vertical-align {
  font-size: 0.001px;
}

/*
 *  The `ap-vertical-align` container needs a specific height
 */
.ap-vertical-align:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.ap-vertical-align-middle,
.ap-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
  font-size: 1rem;
}

.ap-vertical-align-middle {
  vertical-align: middle;
}

.ap-vertical-align-bottom {
  vertical-align: bottom;
}

/* Height
 ========================================================================== */
/*
 * More robust if padding and border are used
 */
[class*=ap-height] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * Useful to extend the `html` and `body` element to the full height of the page.
 */
.ap-height-1-1 {
  height: 100%;
}

/*
 * Useful to create image teasers
 */
.ap-height-viewport {
  height: 100vh;
  min-height: 600px;
}

/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.ap-responsive-width,
.ap-responsive-height {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * `important` needed to override `ap-img-preserve img`
 */
.ap-responsive-width {
  max-width: 100% !important;
  height: auto;
}

/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.ap-responsive-height {
  max-height: 100%;
  width: auto;
}

/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.ap-margin {
  margin-bottom: 15px;
}

* + .ap-margin {
  margin-top: 15px;
}

.ap-margin-top {
  margin-top: 15px !important;
}

.ap-margin-bottom {
  margin-bottom: 15px !important;
}

.ap-margin-left {
  margin-left: 15px !important;
}

.ap-margin-right {
  margin-right: 15px !important;
}

/*
 * Larger margins
 */
.ap-margin-large {
  margin-bottom: 50px;
}

* + .ap-margin-large {
  margin-top: 50px;
}

.ap-margin-large-top {
  margin-top: 50px !important;
}

.ap-margin-large-bottom {
  margin-bottom: 50px !important;
}

.ap-margin-large-left {
  margin-left: 50px !important;
}

.ap-margin-large-right {
  margin-right: 50px !important;
}

/*
 * Smaller margins
 */
.ap-margin-small {
  margin-bottom: 5px;
}

* + .ap-margin-small {
  margin-top: 5px;
}

.ap-margin-small-top {
  margin-top: 5px !important;
}

.ap-margin-small-bottom {
  margin-bottom: 5px !important;
}

.ap-margin-small-left {
  margin-left: 5px !important;
}

.ap-margin-small-right {
  margin-right: 5px !important;
}

/*
 * Remove margins
 */
.ap-margin-remove {
  margin: 0 !important;
}

.ap-margin-top-remove {
  margin-top: 0 !important;
}

.ap-margin-bottom-remove {
  margin-bottom: 0 !important;
}

/* Padding
 ========================================================================== */
.ap-padding-remove {
  padding: 0 !important;
}

.ap-padding-top-remove {
  padding-top: 0 !important;
}

.ap-padding-bottom-remove {
  padding-bottom: 0 !important;
}

.ap-padding-vertical-remove {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Border
 ========================================================================== */
.ap-border-circle {
  border-radius: 50%;
}

.ap-border-rounded {
  border-radius: 5px;
}

/* Headings
 ========================================================================== */
.ap-heading-large {
  font-size: 36px;
  line-height: 42px;
}

/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-heading-large {
    font-size: 52px;
    line-height: 64px;
  }
}
/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.ap-link-muted,
.ap-link-muted a {
  color: #444;
}

.ap-link-muted:hover,
.ap-link-muted a:hover {
  color: #444;
}

/*
 * Reset link style
 */
.ap-link-reset,
.ap-link-reset a,
.ap-link-reset:hover,
.ap-link-reset a:hover,
.ap-link-reset:focus,
.ap-link-reset a:focus {
  color: inherit;
  text-decoration: none;
}

/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.ap-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

/*
 * Box with scrolling enabled
 */
.ap-scrollable-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #ddd;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

.ap-scrollable-box > :last-child {
  margin-bottom: 0;
}

/* Overflow
 ========================================================================== */
.ap-overflow-hidden {
  overflow: hidden;
}

/*
 * Enable scrollbars if content is clipped
 */
.ap-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.ap-overflow-container > :last-child {
  margin-bottom: 0;
}

/* Position
 ========================================================================== */
.ap-position-absolute,
[class*=ap-position-top],
[class*=ap-position-bottom] {
  position: absolute !important;
}

/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.ap-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.ap-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.ap-position-top-left {
  top: 0;
  left: 0;
}

.ap-position-top-right {
  top: 0;
  right: 0;
}

.ap-position-bottom-left {
  bottom: 0;
  left: 0;
}

.ap-position-bottom-right {
  bottom: 0;
  right: 0;
}

/*
 * Cover
 */
.ap-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/*
 * Relative
 */
.ap-position-relative {
  position: relative !important;
}

/*
 * Z-index
 */
.ap-position-z-index {
  z-index: 1;
}

/* Display
 ========================================================================== */
/*
 * Display
 * 1. Required if child is a responsive image
 */
.ap-display-block {
  display: block !important;
}

.ap-display-inline {
  display: inline !important;
}

.ap-display-inline-block {
  display: inline-block !important;
  /* 1 */
  max-width: 100%;
}

/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .ap-visible-small {
    display: none !important;
  }
  .ap-visible-medium {
    display: none !important;
  }
  .ap-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .ap-visible-small {
    display: none !important;
  }
  .ap-visible-large {
    display: none !important;
  }
  .ap-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .ap-visible-medium {
    display: none !important;
  }
  .ap-visible-large {
    display: none !important;
  }
  .ap-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.ap-hidden {
  display: none !important;
  visibility: hidden !important;
}

/* It's hidden, but still affects layout */
.ap-invisible {
  visibility: hidden !important;
}

/* Show on hover */
.ap-visible-hover:hover .ap-hidden,
.ap-visible-hover:hover .ap-invisible {
  display: block !important;
  visibility: visible !important;
}

.ap-visible-hover-inline:hover .ap-hidden,
.ap-visible-hover-inline:hover .ap-invisible {
  display: inline-block !important;
  visibility: visible !important;
}

/* Hide on touch */
.ap-touch .ap-hidden-touch,
.ap-notouch .ap-hidden-notouch {
  display: none !important;
}

/* A&P PADDING & MARGINS
 ========================================================================== */
.p-0 {
  padding: 0;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-30 {
  padding: 30px;
}

.p-35 {
  padding: 35px;
}

.p-40 {
  padding: 40px;
}

.p-45 {
  padding: 45px;
}

.p-50 {
  padding: 50px;
}

.p-55 {
  padding: 55px;
}

.p-60 {
  padding: 60px;
}

.p-65 {
  padding: 65px;
}

.p-70 {
  padding: 70px;
}

.p-75 {
  padding: 75px;
}

.p-80 {
  padding: 80px;
}

.p-85 {
  padding: 85px;
}

.p-90 {
  padding: 90px;
}

.p-95 {
  padding: 95px;
}

.p-100 {
  padding: 100px;
}

.p-t-0 {
  padding-top: 0;
}

.p-t-5 {
  padding-top: 5px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-t-35 {
  padding-top: 35px;
}

.p-t-40 {
  padding-top: 40px;
}

.p-t-45 {
  padding-top: 45px;
}

.p-t-50 {
  padding-top: 50px;
}

.p-t-55 {
  padding-top: 55px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-t-65 {
  padding-top: 65px;
}

.p-t-70 {
  padding-top: 70px;
}

.p-t-75 {
  padding-top: 75px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-t-85 {
  padding-top: 85px;
}

.p-t-90 {
  padding-top: 90px;
}

.p-t-95 {
  padding-top: 95px;
}

.p-t-100 {
  padding-top: 100px;
}

.p-r-0 {
  padding-right: 0;
}

.p-r-5 {
  padding-right: 5px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-r-30 {
  padding-right: 30px;
}

.p-r-35 {
  padding-right: 35px;
}

.p-r-40 {
  padding-right: 40px;
}

.p-r-45 {
  padding-right: 45px;
}

.p-r-50 {
  padding-right: 50px;
}

.p-r-55 {
  padding-right: 55px;
}

.p-r-60 {
  padding-right: 60px;
}

.p-r-65 {
  padding-right: 65px;
}

.p-r-70 {
  padding-right: 70px;
}

.p-r-75 {
  padding-right: 75px;
}

.p-r-80 {
  padding-right: 80px;
}

.p-r-85 {
  padding-right: 85px;
}

.p-r-90 {
  padding-right: 90px;
}

.p-r-95 {
  padding-right: 95px;
}

.p-r-100 {
  padding-right: 100px;
}

.p-b-0 {
  padding-bottom: 0;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-b-35 {
  padding-bottom: 35px;
}

.p-b-40 {
  padding-bottom: 40px;
}

.p-b-45 {
  padding-bottom: 45px;
}

.p-b-50 {
  padding-bottom: 50px;
}

.p-b-55 {
  padding-bottom: 55px;
}

.p-b-60 {
  padding-bottom: 60px;
}

.p-b-65 {
  padding-bottom: 65px;
}

.p-b-70 {
  padding-bottom: 70px;
}

.p-b-75 {
  padding-bottom: 75px;
}

.p-b-80 {
  padding-bottom: 80px;
}

.p-b-85 {
  padding-bottom: 85px;
}

.p-b-90 {
  padding-bottom: 90px;
}

.p-b-95 {
  padding-bottom: 95px;
}

.p-b-100 {
  padding-bottom: 100px;
}

.p-l-0 {
  padding-left: 0;
}

.p-l-5 {
  padding-left: 5px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-l-20 {
  padding-left: 20px;
}

.p-l-25 {
  padding-left: 25px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-l-35 {
  padding-left: 35px;
}

.p-l-40 {
  padding-left: 40px;
}

.p-l-45 {
  padding-left: 45px;
}

.p-l-50 {
  padding-left: 50px;
}

.p-l-55 {
  padding-left: 55px;
}

.p-l-60 {
  padding-left: 60px;
}

.p-l-65 {
  padding-left: 65px;
}

.p-l-70 {
  padding-left: 70px;
}

.p-l-75 {
  padding-left: 75px;
}

.p-l-80 {
  padding-left: 80px;
}

.p-l-85 {
  padding-left: 85px;
}

.p-l-90 {
  padding-left: 90px;
}

.p-l-95 {
  padding-left: 95px;
}

.p-l-100 {
  padding-left: 100px;
}

.m-0 {
  margin: 0;
}

.m-5 {
  margin: 5px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-30 {
  margin: 30px;
}

.m-35 {
  margin: 35px;
}

.m-40 {
  margin: 40px;
}

.m-45 {
  margin: 45px;
}

.m-50 {
  margin: 50px;
}

.m-55 {
  margin: 55px;
}

.m-60 {
  margin: 60px;
}

.m-65 {
  margin: 65px;
}

.m-70 {
  margin: 70px;
}

.m-75 {
  margin: 75px;
}

.m-80 {
  margin: 80px;
}

.m-85 {
  margin: 85px;
}

.m-90 {
  margin: 90px;
}

.m-95 {
  margin: 95px;
}

.m-100 {
  padding: 100px;
}

.m-t-0 {
  margin-top: 0;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-15 {
  margin-top: 15px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-25 {
  margin-top: 25px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-35 {
  margin-top: 35px;
}

.m-t-40 {
  margin-top: 40px;
}

.m-t-45 {
  margin-top: 45px;
}

.m-t-50 {
  margin-top: 50px;
}

.m-t-55 {
  margin-top: 55px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-t-65 {
  margin-top: 65px;
}

.m-t-70 {
  margin-top: 70px;
}

.m-t-75 {
  margin-top: 75px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-t-85 {
  margin-top: 85px;
}

.m-t-90 {
  margin-top: 90px;
}

.m-t-95 {
  margin-top: 95px;
}

.m-t-100 {
  margin-top: 100px;
}

.m-r-0 {
  margin-right: 0;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-15 {
  margin-right: 15px;
}

.m-r-20 {
  margin-right: 20px;
}

.m-r-25 {
  margin-right: 25px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-r-35 {
  margin-right: 35px;
}

.m-r-40 {
  margin-right: 40px;
}

.m-r-45 {
  margin-right: 45px;
}

.m-r-50 {
  margin-right: 50px;
}

.m-r-55 {
  margin-right: 55px;
}

.m-r-60 {
  margin-right: 60px;
}

.m-r-65 {
  margin-right: 65px;
}

.m-r-70 {
  margin-right: 70px;
}

.m-r-75 {
  margin-right: 75px;
}

.m-r-80 {
  margin-right: 80px;
}

.m-r-85 {
  margin-right: 85px;
}

.m-r-90 {
  margin-right: 90px;
}

.m-r-95 {
  margin-right: 95px;
}

.m-r-100 {
  margin-right: 100px;
}

.m-b-0 {
  margin-bottom: 0;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-b-15 {
  margin-bottom: 15px;
}

.m-b-20 {
  margin-bottom: 20px;
}

.m-b-25 {
  margin-bottom: 25px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-b-35 {
  margin-bottom: 35px;
}

.m-b-40 {
  margin-bottom: 40px;
}

.m-b-45 {
  margin-bottom: 45px;
}

.m-b-50 {
  margin-bottom: 50px;
}

.m-b-55 {
  margin-bottom: 55px;
}

.m-b-60 {
  margin-bottom: 60px;
}

.m-b-65 {
  margin-bottom: 65px;
}

.m-b-70 {
  margin-bottom: 70px;
}

.m-b-75 {
  margin-bottom: 75px;
}

.m-b-80 {
  margin-bottom: 80px;
}

.m-b-85 {
  margin-bottom: 85px;
}

.m-b-90 {
  margin-bottom: 90px;
}

.m-b-95 {
  margin-bottom: 95px;
}

.m-b-100 {
  margin-bottom: 100px;
}

.m-l-0 {
  margin-left: 0;
}

.m-l-5 {
  margin-left: 5px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-l-15 {
  margin-left: 15px;
}

.m-l-20 {
  margin-left: 20px;
}

.m-l-25 {
  margin-left: 25px;
}

.m-l-30 {
  margin-left: 30px;
}

.m-l-35 {
  margin-left: 35px;
}

.m-l-40 {
  margin-left: 40px;
}

.m-l-45 {
  margin-left: 45px;
}

.m-l-50 {
  margin-left: 50px;
}

.m-l-55 {
  margin-left: 55px;
}

.m-l-60 {
  margin-left: 60px;
}

.m-l-65 {
  margin-left: 65px;
}

.m-l-70 {
  margin-left: 70px;
}

.m-l-75 {
  margin-left: 75px;
}

.m-l-80 {
  margin-left: 80px;
}

.m-l-85 {
  margin-left: 85px;
}

.m-l-90 {
  margin-left: 90px;
}

.m-l-95 {
  margin-left: 95px;
}

.m-l-100 {
  margin-left: 100px;
}

/* ========================================================================
   Component: Nav
 ========================================================================== */
.ap-nav,
.ap-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Items
 */
.ap-nav li > a {
  display: block;
  text-decoration: none;
}

.ap-nav > li > a {
  padding: 10px 15px;
}

/*
 * Nested items
 */
.ap-nav ul {
  padding-left: 15px;
}

.ap-nav ul a {
  padding: 2px 0;
}

/*
 * Item subtitle
 */
.ap-nav li > a > div {
  font-size: 12px;
  line-height: 18px;
}

/* Sub-object: `ap-nav-header`
 ========================================================================== */
.ap-nav-header {
  padding: 10px 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}

.ap-nav-header:not(:first-child) {
  margin-top: 15px;
}

/* Sub-object: `ap-nav-divider`
 ========================================================================== */
.ap-nav-divider {
  margin: 9px 15px;
}

/* Sub-object: `ap-nav-sub`
 ========================================================================== */
/*
 * `ul` needed for higher specificity to override padding
 */
ul.ap-nav-sub {
  padding: 5px 0 5px 15px;
}

/* Modifier: `ap-nav-parent-icon`
 ========================================================================== */
.ap-nav-parent-icon > .ap-parent > a:after {
  content: "\f104";
  width: 20px;
  margin-right: -10px;
  float: right;
  font-family: FontAwesome;
  text-align: center;
}

.ap-nav-parent-icon > .ap-parent.ap-open > a:after {
  content: "\f107";
}

/* Modifier `ap-nav-side`
 ========================================================================== */
/*
 * Items
 */
.ap-nav-side > li > a {
  color: #444;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-nav-side > li > a:hover,
.ap-nav-side > li > a:focus {
  background: rgba(0, 0, 0, 0.05);
  color: #444;
  /* 2 */
  outline: none;
}

/* Active */
.ap-nav-side > li.ap-active > a {
  background: #00a8e6;
  color: #fff;
}

/*
 * Sub-object: `ap-nav-header`
 */
.ap-nav-side .ap-nav-header {
  color: #444;
}

/*
 * Sub-object: `ap-nav-divider`
 */
.ap-nav-side .ap-nav-divider {
  border-top: 1px solid #ddd;
}

/*
 * Nested items
 */
.ap-nav-side ul a {
  color: #07d;
}

.ap-nav-side ul a:hover {
  color: #059;
}

/* Modifier `ap-nav-dropdown`
 ========================================================================== */
/*
 * Items
 */
.ap-nav-dropdown > li {
  border-top: 1px solid #535353;
}
.ap-nav-dropdown > li:first-of-type {
  border: none;
}

.ap-nav-dropdown > li > a {
  color: #444;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-nav-dropdown > li > a:hover,
.ap-nav-dropdown > li > a:focus {
  color: #fff;
  opacity: 0.75;
  outline: none;
}

/*
 * Sub-object: `ap-nav-header`
 */
.ap-nav-dropdown .ap-nav-header {
  color: #999;
}

/*
 * Sub-object: `ap-nav-divider`
 */
.ap-nav-dropdown .ap-nav-divider {
  border-top: 1px solid #ddd;
}

/*
 * Nested items
 */
.ap-nav-dropdown ul a {
  color: #07d;
}

.ap-nav-dropdown ul a:hover {
  color: #059;
}

/* Modifier `ap-nav-navbar`
 ========================================================================== */
/*
 * Items
 */
.ap-nav-navbar > li > a {
  color: #444;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-nav-navbar > li > a:hover,
.ap-nav-navbar > li > a:focus {
  color: #fff;
  outline: none;
}

/*
 * Sub-object: `ap-nav-header`
 */
.ap-nav-navbar .ap-nav-header {
  color: #999;
}

/*
 * Sub-object: `ap-nav-divider`
 */
.ap-nav-navbar .ap-nav-divider {
  border-top: 1px solid #ddd;
}

/*
 * Nested items
 */
.ap-nav-navbar ul a {
  color: #07d;
}

.ap-nav-navbar ul a:hover {
  color: #059;
}

/* Modifier `ap-nav-offcanvas`
 ========================================================================== */
/*
 * Items
 */
.ap-nav-offcanvas > li > a {
  color: #ccc;
  padding: 10px 15px;
}

/*
 * Hover
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-nav-offcanvas > .ap-open > a,
html:not(.ap-touch) .ap-nav-offcanvas > li > a:hover,
html:not(.ap-touch) .ap-nav-offcanvas > li > a:focus {
  background: #404040;
  color: #fff;
  /* 2 */
  outline: none;
}

/*
 * Active
 * `html .ap-nav` needed for higher specificity to override hover
 */
html .ap-nav.ap-nav-offcanvas > li.ap-active > a {
  background: #1a1a1a;
  color: #fff;
}

/*
 * Sub-object: `ap-nav-header`
 */
.ap-nav-offcanvas .ap-nav-header {
  color: #777;
}

/*
 * Sub-object: `ap-nav-divider`
 */
.ap-nav-offcanvas .ap-nav-divider {
  border-top: 1px solid #1a1a1a;
}

/*
 * Nested items
 * No hover on touch devices because it behaves buggy in fixed offcanvas
 */
.ap-nav-offcanvas ul a {
  color: #ccc;
}

html:not(.ap-touch) .ap-nav-offcanvas ul a:hover {
  color: #fff;
}

/* ========================================================================
   Component: Navbar
 ========================================================================== */
.ap-navbar {
  color: #444;
  background: #fff;
}

/*
 * Micro clearfix
 */
.ap-navbar:before,
.ap-navbar:after {
  content: "";
  display: table;
}

.ap-navbar:after {
  clear: both;
}

/* Sub-object: `ap-navbar-nav`
 ========================================================================== */
.ap-navbar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .ap-navbar-nav {
    float: left;
  }
}

/*
 * 1. Create position context for dropdowns
 */
.ap-navbar-nav > li {
  position: relative;
}
@media (min-width: 768px) {
  .ap-navbar-nav > li {
    float: left;
    border-right: 1px solid #ddd;
  }
}
.ap-navbar-nav > li:last-of-type {
  border: none;
}

/*
 * 1. Dimensions
 * 2. Style
 */
.ap-navbar-nav > li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  height: 50px;
  padding: 0 15px;
  line-height: 50px;
  /* 2 */
  color: #444;
  font-size: 16px;
  font-weight: normal;
}

/* Appear not as link */
.ap-navbar-nav > li > a[href="#"] {
  cursor: text;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.ap-navbar-nav > li:hover > a,
.ap-navbar-nav > li > a:focus,
.ap-navbar-nav > li.ap-open > a {
  background-color: #f5f5f5;
  color: #444;
  /* 3 */
  outline: none;
}

/* OnClick */
.ap-navbar-nav > li.ap-active {
  background-color: #f5f5f5;
  color: #444;
}

/* Active */
.ap-navbar-nav > li.ap-active > a {
  color: #444;
}

/* Sub-objects: `ap-navbar-nav-subtitle`
 ========================================================================== */
.ap-navbar-nav .ap-navbar-nav-subtitle {
  line-height: 38px;
}

.ap-navbar-nav-subtitle > div {
  margin-top: -10px;
  font-size: 10px;
  line-height: 12px;
}

/* Sub-objects: `ap-navbar-content`, `ap-navbar-brand`, `ap-navbar-toggle`
 ========================================================================== */
/*
 * Imitate navbar items
 */
.ap-navbar-content,
.ap-navbar-brand,
.ap-navbar-toggle {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: 50px;
  padding: 0 15px;
  float: left;
}

/*
 * Helper to center all child elements vertically
 */
.ap-navbar-content:before,
.ap-navbar-brand:before,
.ap-navbar-toggle:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* Sub-objects: `ap-navbar-content`
 ========================================================================== */
/*
 * Better sibling spacing
 */
.ap-navbar-content + .ap-navbar-content:not(.ap-navbar-center) {
  padding-left: 0;
}

/*
 * Link colors
 */
.ap-navbar-content > a:not([class]) {
  color: #07d;
}

.ap-navbar-content > a:not([class]):hover {
  color: #059;
}

/* Sub-objects: `ap-navbar-brand`
 ========================================================================== */
.ap-navbar-brand {
  font-size: 18px;
  color: #444;
  text-decoration: none;
}

/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-navbar-brand:hover,
.ap-navbar-brand:focus {
  color: #444;
  text-decoration: none;
  /* 2 */
  outline: none;
}

/* Sub-object: `ap-navbar-toggle`
 ========================================================================== */
.ap-navbar-toggle {
  font-size: 18px;
  color: #444;
  text-decoration: none;
}

/*
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-navbar-toggle:hover,
.ap-navbar-toggle:focus {
  color: #444;
  text-decoration: none;
  /* 2 */
  outline: none;
}

/*
 * 1. Center icon vertically
 */
.ap-navbar-toggle:after {
  content: "\f0c9";
  font-family: FontAwesome;
  /* 1 */
  vertical-align: middle;
}

.ap-navbar-toggle-alt:after {
  content: "\f002";
}

/* Sub-object: `ap-navbar-center`
 ========================================================================== */
/*
 * The element with this class needs to be last child in the navbar
 * 1. This hack is needed because other float elements shift centered text
 */
.ap-navbar-center {
  float: none;
  text-align: center;
  /* 1 */
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

/* Sub-object: `ap-navbar-flip`
 ========================================================================== */
.ap-navbar-flip {
  float: right;
}

/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Remove default list style
 * 2. Center pagination by default
 * 3. Remove whitespace between child elements when using `inline-block`
 */
.ap-pagination {
  /* 1 */
  padding: 0;
  list-style: none;
  /* 2 */
  text-align: center;
  /* 3 */
  font-size: 0.001px;
}

/*
 * Micro clearfix
 * Needed if `ap-pagination-previous` or `ap-pagination-next` sub-objects are used
 */
.ap-pagination:before,
.ap-pagination:after {
  content: "";
  display: table;
}

.ap-pagination:after {
  clear: both;
}

/* Items
 ========================================================================== */
/*
 * 1. Reset whitespace hack
 * 2. Remove the gap at the bottom of it container
 */
.ap-pagination > li {
  display: inline-block;
  /* 1 */
  font-size: 1rem;
  /* 2 */
  vertical-align: top;
}

.ap-pagination > li:nth-child(n+2) {
  margin-left: 5px;
}

/*
 * 1. Makes pagination more robust against different box-sizing use
 * 2. Reset text-align to center if alignment modifier is used
 */
.ap-pagination > li > a,
.ap-pagination > li > span {
  display: inline-block;
  min-width: 16px;
  padding: 3px 5px;
  line-height: 20px;
  text-decoration: none;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
  text-align: center;
}

/*
 * Links
 */
.ap-pagination > li > a {
  background: #eee;
  color: #444;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-pagination > li > a:hover,
.ap-pagination > li > a:focus {
  background-color: #f5f5f5;
  color: #444;
  /* 2 */
  outline: none;
}

/* OnClick */
.ap-pagination > li > a:active {
  background-color: #ddd;
  color: #444;
}

/*
 * Active
 */
.ap-pagination > .ap-active > span {
  background: #00a8e6;
  color: #fff;
}

/*
 * Disabled
 */
.ap-pagination > .ap-disabled > span {
  background-color: #f5f5f5;
  color: #999;
}

/* Previous and next navigation
 ========================================================================== */
.ap-pagination-previous {
  float: left;
}

.ap-pagination-next {
  float: right;
}

/* Alignment modifiers
 ========================================================================== */
.ap-pagination-left {
  text-align: left;
}

.ap-pagination-right {
  text-align: right;
}

/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.ap-subnav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  /* 2 */
  padding: 0;
  list-style: none;
  position: relative;
  /*	li {
  	border: 1px solid #ccc;
  	padding: 0 15px;
  }*/
}

.ap-subnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-box-flex: 0;
          flex: none;
  /* 2 */
  margin-top: 10px;
  /* 3 */
  position: relative;
}

/*
 * DEPRECATED IE9 Support
 */
.ap-subnav:before,
.ap-subnav:after {
  content: "";
  display: block;
  overflow: hidden;
}

.ap-subnav:after {
  clear: both;
}

.ap-subnav > * {
  float: left;
}

/* Items
 ========================================================================== */
.ap-subnav > * > * {
  display: inline-block;
  color: #444;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.ap-subnav.ap-subnav-pill li:hover:after, .ap-subnav.ap-subnav-pill li.ap-active:after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #ddd;
  font-size: 0;
  line-height: 0;
}

/* Modifier: 'subnav-line'
 ========================================================================== */
.ap-subnav-line > :before {
  content: "";
  display: inline-block;
  height: 10px;
  vertical-align: middle;
}

.ap-subnav-line > :nth-child(n+2):before {
  margin-right: 10px;
  border-left: 1px solid #ddd;
}

/* Modifier: 'subnav-pill'
 ========================================================================== */
.ap-subnav-pill li {
  background: #fff;
  padding: 5px;
  border-radius: 25px;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .ap-subnav-pill li {
    font-size: 15px;
  }
}
.ap-subnav-pill li .ap-badge {
  margin-left: 2.5px;
}
.ap-subnav-pill li:first-of-type {
  margin-left: 0;
}
.ap-subnav-pill li .fa-check {
  color: #79c553;
}
.ap-subnav-pill li .fa-times,
.ap-subnav-pill li .fa-exclamation-circle {
  color: lightgrey;
}
.ap-subnav-pill li.ap-active, .ap-subnav-pill li:hover {
  background: #ddd;
}
.ap-subnav-pill li.ap-active .fa-check, .ap-subnav-pill li:hover .fa-check {
  color: #79c553;
}
.ap-subnav-pill li.ap-active .fa-times,
.ap-subnav-pill li.ap-active .fa-exclamation-circle, .ap-subnav-pill li:hover .fa-times,
.ap-subnav-pill li:hover .fa-exclamation-circle {
  color: #9d9d9d;
}
.ap-subnav-pill li.ap-active .ap-badge, .ap-subnav-pill li:hover .ap-badge {
  background: #fff;
  color: #000;
}

.ap-subnav-pill > * > * {
  padding: 3px 9px;
}

/* Modifier: 'subnav-block'
 ========================================================================== */
.ap-subnav-block li {
  background: #fff;
  padding: 5px;
  border-radius: 0;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .ap-subnav-block li {
    font-size: 15px;
  }
}
.ap-subnav-block li:first-of-type {
  margin-left: 0;
}
.ap-subnav-block li.ap-active {
  background: #ddd;
}
.ap-subnav-block.sticky {
  padding: 20px 0;
  background: #eee;
}
.ap-subnav-block.flex-stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ap-subnav-block.flex-stretch li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  margin: 0;
  font-weight: bold;
  border-right: 1px solid #eee;
}
.ap-subnav-block.flex-stretch li:last-of-type {
  border: none;
  border-radius: 0 8px 8px 0;
}
.ap-subnav-block.flex-stretch li:first-of-type {
  border-radius: 8px 0 0 8px;
}
.ap-subnav-block.flex-stretch li a {
  display: block;
}
.ap-subnav-block.flex-stretch li .fa-check {
  color: #79c553;
}
.ap-subnav-block.flex-stretch li .fa-times,
.ap-subnav-block.flex-stretch li .fa-exclamation-circle {
  color: #ddd;
}

.ap-subnav-block > * > * {
  padding: 3px 9px;
}

/* Disabled state
 ========================================================================== */
.ap-subnav > .ap-disabled > * {
  background: none;
  color: #999;
  text-decoration: none;
  cursor: text;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
.ap-tab {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #ddd;
}

/*
 * Micro clearfix on the deepest container
 */
.ap-tab:before,
.ap-tab:after {
  content: "";
  display: table;
}

.ap-tab:after {
  clear: both;
}

/*
 * Items
 * 1. Create position context for dropdowns
 */
.ap-tab > li {
  margin-bottom: -1px;
  float: left;
  /* 1 */
  position: relative;
}

.ap-tab > li > a {
  display: block;
  padding: 8px 12px 8px 12px;
  border: 1px solid transparent;
  border-bottom-width: 0;
  color: #07d;
  text-decoration: none;
}

.ap-tab > li:nth-child(n+2) > a {
  margin-left: 5px;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Also apply if dropdown is opened
 * 3. Remove default focus style
 */
.ap-tab > li > a:hover,
.ap-tab > li > a:focus,
.ap-tab > li.ap-open > a {
  border-color: #f5f5f5;
  background: #f5f5f5;
  color: #059;
  /* 2 */
  outline: none;
}

.ap-tab > li:not(.ap-active) > a:hover,
.ap-tab > li:not(.ap-active) > a:focus,
.ap-tab > li.ap-open:not(.ap-active) > a {
  margin-bottom: 1px;
  padding-bottom: 7px;
}

/* Active */
.ap-tab > li.ap-active > a {
  border-color: #ddd;
  border-bottom-color: transparent;
  background: #fff;
  color: #444;
}

/* Disabled */
.ap-tab > li.ap-disabled > a {
  color: #999;
  cursor: text;
}

.ap-tab > li.ap-disabled > a:hover,
.ap-tab > li.ap-disabled > a:focus,
.ap-tab > li.ap-disabled.ap-active > a {
  background: none;
  border-color: transparent;
}

/* Modifier: 'tab-flip'
 ========================================================================== */
.ap-tab-flip > li {
  float: right;
}

.ap-tab-flip > li:nth-child(n+2) > a {
  margin-left: 0;
  margin-right: 5px;
}

/* Modifier: 'tab-responsive'
 ========================================================================== */
.ap-tab > li.ap-tab-responsive > a {
  margin-left: 0;
  margin-right: 0;
}

/*
 * Icon
 */
.ap-tab-responsive > a:before {
  content: "\f0c9 ";
  font-family: FontAwesome;
}

/* Modifier: 'tab-center'
 ========================================================================== */
.ap-tab-center {
  border-bottom: 1px solid #ddd;
}

.ap-tab-center-bottom {
  border-bottom: none;
  border-top: 1px solid #ddd;
}

.ap-tab-center:before,
.ap-tab-center:after {
  content: "";
  display: table;
}

.ap-tab-center:after {
  clear: both;
}

/*
 * 1. Using `right` to prevent vertical scrollbar caused by centering if to many tabs
 */
.ap-tab-center .ap-tab {
  position: relative;
  right: 50%;
  border: none;
  float: right;
}

.ap-tab-center .ap-tab > li {
  position: relative;
  right: -50%;
}

.ap-tab-center .ap-tab > li > a {
  text-align: center;
}

/* Modifier: 'tab-bottom'
 ========================================================================== */
.ap-tab-bottom {
  border-top: 1px solid #ddd;
  border-bottom: none;
}

.ap-tab-bottom > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.ap-tab-bottom > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom-width: 1px;
  border-top-width: 0;
}

.ap-tab-bottom > li:not(.ap-active) > a:hover,
.ap-tab-bottom > li:not(.ap-active) > a:focus,
.ap-tab-bottom > li.ap-open:not(.ap-active) > a {
  margin-bottom: 0;
  margin-top: 1px;
  padding-bottom: 8px;
  padding-top: 7px;
}

.ap-tab-bottom > li.ap-active > a {
  border-top-color: transparent;
  border-bottom-color: #ddd;
}

/* Modifier: 'tab-grid'
 ========================================================================== */
/*
 * 1. Create position context to prevent hidden border because of negative `z-index`
 */
.ap-tab-grid {
  margin-left: -5px;
  border-bottom: none;
  /* 1 */
  position: relative;
  z-index: 0;
}

.ap-tab-grid:before {
  display: block;
  position: absolute;
  left: 5px;
  right: 0;
  bottom: -1px;
  border-top: 1px solid #ddd;
  /* 1 */
  z-index: -1;
}

.ap-tab-grid > li:first-child > a {
  margin-left: 5px;
}

.ap-tab-grid > li > a {
  text-align: center;
}

/*
 * If `ap-tab-bottom`
 */
.ap-tab-grid.ap-tab-bottom {
  border-top: none;
}

.ap-tab-grid.ap-tab-bottom:before {
  top: -1px;
  bottom: auto;
}

/* Modifier: 'tab-left', 'tab-right'
 ========================================================================== */
/* Tablet and bigger */
@media (min-width: 768px) {
  .ap-tab-left,
  .ap-tab-right {
    border-bottom: none;
  }
  .ap-tab-left > li,
  .ap-tab-right > li {
    margin-bottom: 0;
    float: none;
  }
  .ap-tab-left > li > a,
  .ap-tab-right > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .ap-tab-left > li:nth-child(n+2) > a,
  .ap-tab-right > li:nth-child(n+2) > a {
    margin-left: 0;
    margin-top: 5px;
  }
  .ap-tab-left > li.ap-active > a,
  .ap-tab-right > li.ap-active > a {
    border-color: #ddd;
  }
  /*
      * Modifier: 'tab-left'
      */
  .ap-tab-left {
    border-right: 1px solid #ddd;
  }
  .ap-tab-left > li {
    margin-right: -1px;
  }
  .ap-tab-left > li > a {
    border-bottom-width: 1px;
    border-right-width: 0;
  }
  .ap-tab-left > li:not(.ap-active) > a:hover,
  .ap-tab-left > li:not(.ap-active) > a:focus {
    margin-bottom: 0;
    margin-right: 1px;
    padding-bottom: 8px;
    padding-right: 11px;
  }
  .ap-tab-left > li.ap-active > a {
    border-right-color: transparent;
  }
  /*
      * Modifier: 'tab-right'
      */
  .ap-tab-right {
    border-left: 1px solid #ddd;
  }
  .ap-tab-right > li {
    margin-left: -1px;
  }
  .ap-tab-right > li > a {
    border-bottom-width: 1px;
    border-left-width: 0;
  }
  .ap-tab-right > li:not(.ap-active) > a:hover,
  .ap-tab-right > li:not(.ap-active) > a:focus {
    margin-bottom: 0;
    margin-left: 1px;
    padding-bottom: 8px;
    padding-left: 11px;
  }
  .ap-tab-right > li.ap-active > a {
    border-left-color: transparent;
  }
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
/* Sub-object: `ap-accordion-title`
 ========================================================================== */
.ap-accordion-title {
  cursor: pointer;
  margin-top: 20px;
}
.ap-accordion-title:first-of-type {
  margin-top: 0;
}

/* Sub-object: `ap-accordion-content`
 ========================================================================== */
.ap-accordion-content {
  padding: 0;
}

/*
 * Micro clearfix to make panels more robust
 */
.ap-accordion-content:before,
.ap-accordion-content:after {
  content: "";
  display: table;
}

.ap-accordion-content:after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.ap-accordion-content > :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Datepicker
 ========================================================================== */
/*
 * 1. Highest z-index
 * 2. Reset dropdown width
 * 3. Set animation
 * 4. Needed for scale animation
 */
.ap-datepicker {
  z-index: 1050;
  width: auto;
  background: #333;
  color: white;
  -webkit-animation: ap-fade 0.2s ease-in-out;
  animation: ap-fade 0.2s ease-in-out;
  padding: 15px;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* Sub-object: `ap-datepicker-nav`
========================================================================== */
.ap-datepicker-nav {
  margin-bottom: 15px;
  text-align: center;
  line-height: 20px;
}

/*
 * Micro clearfix
 */
.ap-datepicker-nav:before,
.ap-datepicker-nav:after {
  content: "";
  display: table;
}

.ap-datepicker-nav:after {
  clear: both;
}

/*
 * Previous and next navigation
 */
.ap-datepicker-nav a {
  text-decoration: none;
}

.ap-datepicker-nav a:hover {
  opacity: 0.5;
}

.ap-datepicker-previous {
  float: left;
}

.ap-datepicker-next {
  float: right;
}

.ap-datepicker-previous:after,
.ap-datepicker-next:after {
  width: 20px;
  font-family: FontAwesome;
}

.ap-datepicker-previous:after {
  content: "\f053";
}

.ap-datepicker-next:after {
  content: "\f054";
}

/* Sub-object: `ap-datepicker-heading`
========================================================================== */
/* Sub-object: `ap-datepicker-table`
========================================================================== */
/* Block element behavior */
.ap-datepicker-table {
  width: 100%;
}

.ap-datepicker-table th,
.ap-datepicker-table td {
  padding: 2px;
}

.ap-datepicker-table th {
  font-size: 12px;
}

/*
 * Item
 */
.ap-datepicker-table a {
  display: block;
  width: 26px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
}

/*
 * Sub-object: `ap-datepicker-table-muted`
 */
a.ap-datepicker-table-muted {
  opacity: 0.4;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-datepicker-table a:hover,
.ap-datepicker-table a:focus {
  background-color: #ddd;
  color: #444;
  /* 2 */
  outline: none;
}

/* OnClick */
.ap-datepicker-table a:active {
  background-color: #ccc;
  color: #444;
}

/*
 * Active
 */
.ap-datepicker-table a.ap-active {
  background: white;
  border-radius: 7.5px;
  color: #333;
  font-weight: bold;
}

/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Gutter
 * 2. Remove default list style
 */
.ap-dotnav {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin-left: -15px;
  margin-top: -15px;
  /* 2 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions
 * 2. Horizontal gutter is using `padding` so `ap-width-*` classes can be applied
 */
.ap-dotnav > * {
  /* 1 */
  -ms-flex: none;
  -webkit-box-flex: 0;
          flex: none;
  /* 2 */
  padding-left: 15px;
  margin-top: 15px;
}

/*
 * DEPRECATED IE9 Support
 */
.ap-dotnav:before,
.ap-dotnav:after {
  content: "";
  display: block;
  overflow: hidden;
}

.ap-dotnav:after {
  clear: both;
}

.ap-dotnav > * {
  float: left;
}

/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.ap-dotnav > * > * {
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(50, 50, 50, 0.1);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.ap-dotnav > * > :hover,
.ap-dotnav > * > :focus {
  background: rgba(50, 50, 50, 0.4);
  /* 2 */
  outline: none;
}

/* OnClick */
.ap-dotnav > * > :active {
  background: rgba(50, 50, 50, 0.6);
}

/* Active */
.ap-dotnav > .ap-active > * {
  background: rgba(50, 50, 50, 0.4);
}

/* Modifier: `ap-dotnav-contrast`
 ========================================================================== */
.ap-dotnav-contrast > * > * {
  background: rgba(255, 255, 255, 0.4);
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.ap-dotnav-contrast > * > :hover,
.ap-dotnav-contrast > * > :focus {
  background: rgba(255, 255, 255, 0.7);
}

/* OnClick */
.ap-dotnav-contrast > * > :active {
  background: rgba(255, 255, 255, 0.9);
}

/* Active */
.ap-dotnav-contrast > .ap-active > * {
  background: rgba(255, 255, 255, 0.9);
}

/* Modifier: 'ap-dotnav-vertical'
 ========================================================================== */
/*
 * DEPRECATED
 */
.ap-dotnav-vertical {
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

/*
 * DEPRECATED IE9 Support
 */
.ap-dotnav-vertical > * {
  float: none;
}

/* ========================================================================
   Component: Form advanced
   Note: Only works in Webkit at the moment
 ========================================================================== */
/*
 * 1. Style
 * 2. Makes box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 */
.ap-form input[type=radio],
.ap-form input[type=checkbox] {
  /* 1 */
  display: inline-block;
  height: 14px;
  width: 14px;
  border: 1px solid #ddd;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  outline: 0;
  /* 5 */
  background: transparent;
}

/* Radio */
.ap-form input[type=radio] {
  border-radius: 50%;
}

/*
 * Checked
 */
.ap-form input[type=radio]:before,
.ap-form input[type=checkbox]:before {
  display: block;
}

/* Radio */
.ap-form input[type=radio]:checked:before {
  content: "";
  width: 8px;
  height: 8px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: #00a8e6;
}

/* Checkbox */
.ap-form input[type=checkbox]:checked:before,
.ap-form input[type=checkbox]:indeterminate:before {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: 12px;
  color: #00a8e6;
}

.ap-form input[type=checkbox]:indeterminate:before {
  content: "\f068";
}

/*
 * Disabled
 */
.ap-form input[type=radio]:disabled,
.ap-form input[type=checkbox]:disabled {
  border-color: #ddd;
}

.ap-form input[type=radio]:disabled:checked:before {
  background-color: #aaa;
}

.ap-form input[type=checkbox]:disabled:checked:before,
.ap-form input[type=checkbox]:disabled:indeterminate:before {
  color: #aaa;
}

.multiselect .noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.multiselect {
  border: 1px solid #ddd;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  outline: none;
  background: white;
}

.multiselect > .title {
  cursor: pointer;
  height: 16px;
  padding: 0 10px;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.multiselect > .title > .text {
  max-width: 100%;
  line-height: 40px;
  height: 40px;
  display: block;
  overflow: hidden;
}

.multiselect > .title > .expand-icon,
.multiselect > .title > .close-icon {
  position: absolute;
  right: 10px;
  top: 7.5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: none;
}

.multiselect > .title .fa-times {
  color: #aaa;
}

.multiselect.selection > .title > .expand-icon {
  display: none;
}

.multiselect > .title > .expand-icon,
.multiselect.selection > .title > .close-icon {
  display: block;
}

.multiselect.active .container {
  border: 1px solid #ddd;
  border-top: 0;
  margin-top: 1px;
}

.multiselect > .container {
  max-height: 250px;
  overflow: auto;
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  margin-left: -1px;
  z-index: 99;
  background: #fff;
}

.multiselect > .container > option {
  display: none;
  padding: 5px 10px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-bottom: 2px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.multiselect > .container > option.selected {
  font-weight: bold;
  position: relative;
}

.multiselect > .container > option.selected:after {
  content: "\f00c";
  position: absolute;
  right: 10px;
  top: 5px;
  opacity: 0.7;
  font-family: FontAwesome;
}

.multiselect > .container > option:hover {
  background: #eee;
}

.multiselect.active > .container > option {
  display: block;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  width: 100% !important;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 40px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px 10px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-results__option:hover {
  background: #eee;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 10px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 35px;
  line-height: 35px;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ddd;
  outline: none;
  padding: 0 10px;
}
.select2-container--default .select2-selection--single:focus {
  outline: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  position: absolute;
  top: 1px;
  right: 5px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: black;
  color: white;
  border-radius: 10px;
  display: inline-block;
  margin-right: 7.5px;
  margin-bottom: 10px;
  font-size: 13px;
  padding: 2.5px 10px;
  font-weight: bold;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding-right: 4px;
  margin-right: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  color: #aaa;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  border: none;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #ddd;
  font: inherit;
  font-size: 15px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: 1px solid #ddd;
  width: 100% !important;
  padding: 0 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 42px;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-search--inline .select2-search__field:focus {
  border: 1px solid #bbb;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  padding-bottom: 10px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  font-weight: bold;
  position: relative;
}
.select2-container--default .select2-results__option--selected:before {
  content: "";
  position: relative;
  font-family: FontAwesome;
  z-index: 5;
  content: "\f00c" !important;
  margin-right: 2.5px;
  font-size: 12px;
}
.select2-container--default .select2-results__option--selected:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 7.5px;
  font-family: FontAwesome;
  z-index: 5;
  content: "\f068" !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  position: relative;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 7.5px;
  font-family: FontAwesome;
  z-index: 5;
  content: "\f067";
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eee));
  background-image: linear-gradient(to bottom, white 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 40px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eee));
  background-image: linear-gradient(to bottom, white 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(white));
  background-image: linear-gradient(to bottom, #eee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: none !important;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: black;
  color: white;
  border-radius: 5px;
  display: inline-block;
  margin-right: 7.5px;
  margin-bottom: 7.5px;
  padding: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding-right: 4px;
  margin-right: 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
  border: 1px solid orange;
}

.select2-search--inline {
  position: relative;
  -webkit-box-sizing: initial !important;
          box-sizing: initial !important;
  display: block;
}
.select2-search--inline:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 7.5px;
  opacity: 0.7;
  font-family: FontAwesome;
  z-index: 25;
  content: "\f002";
}
.select2-search--inline:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 7.5px;
  font-family: FontAwesome;
  z-index: 25;
  content: "\f078";
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/* ========================================================================
   Component: Form file
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.ap-form-file {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}

/*
 * 1. Required for Firefox
 * 2. Expand height and required for the cursor
 */
.ap-form-file input[type=file] {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  font-size: 500px;
}

/* ========================================================================
   Component: Form password
 ========================================================================== */
/*
 * 1. Container width fits its content
 * 2. Create position context
 * 3. Prevent `inline-block` consequences
 */
.ap-form-password {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
}

.ap-form-password-toggle {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  font-size: 13px;
  line-height: 13px;
  color: #999;
}

.ap-form-password-toggle:hover {
  color: #999;
  text-decoration: none;
}

.ap-form-password > input {
  padding-right: 50px !important;
}

/* ========================================================================
   Component: Form select
 ========================================================================== */
/*
 * 1. Behave like form elements
 * 2. Create position context for dropdowns
 * 3. Clip content
 */
.ap-form-select {
  /* 1 */
  display: inline-block;
  vertical-align: middle;
  /* 2 */
  position: relative;
  /* 3 */
  overflow: hidden;
}

/*
 * 1. Required for Firefox
 * 1. Required for Webkit to make `height` work
 */
.ap-form-select select {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  /* 1 */
  left: 0;
  /* 2 */
  -webkit-appearance: none;
}

/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.ap-placeholder {
  margin-bottom: 15px;
  padding: 20px;
  border: 1px dashed #ddd;
  background: #fafafa;
  color: #444;
}

/*
 * Add margin if adjacent element
 */
* + .ap-placeholder {
  margin-top: 15px;
}

/*
 * Remove margin from the last-child
 */
.ap-placeholder > :last-child {
  margin-bottom: 0;
}

/* Modifier: `ap-placeholder-large`
 ========================================================================== */
.ap-placeholder-large {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Clearing
 * 2. Vertical alignment if text is used
 */
.ap-progress {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 30px;
  background: #eee;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  /* 2 */
  line-height: 30px;
  margin-top: 20px !important;
  margin-bottom: 15px;
}
.ap-progress.white {
  background: #fff;
}

/*
 * Add margin if adjacent element
 */
* + .ap-progress {
  margin-top: 15px;
}

/* Sub-object: `ap-progress-bar`
 ========================================================================== */
/*
 * 1. Transition
 * 2. Needed for text
 */
.ap-progress-bar {
  width: 0;
  height: 100%;
  background: #a7a7a7;
  float: left;
  border-radius: 20px;
  font-weight: bold;
  /* 1 */
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  /* 2 */
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/* Size modifiers
 ========================================================================== */
/* Mini */
.ap-progress-mini {
  height: 6px;
}

/* Small */
.ap-progress-small {
  height: 12px;
}

/* Color modifiers
 ========================================================================== */
.ap-progress-success .ap-progress-bar {
  background-color: #8cc14c;
}

.ap-progress-warning .ap-progress-bar {
  background-color: #faa732;
}

.ap-progress-danger .ap-progress-bar {
  background-color: #da314b;
}

/* Modifier: `ap-progress-striped`
 ========================================================================== */
.ap-progress-striped .ap-progress-bar {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
}

/*
 * Animation
 */
.ap-progress-striped.ap-active .ap-progress-bar {
  -webkit-animation: ap-progress-bar-stripes 2s linear infinite;
  animation: ap-progress-bar-stripes 2s linear infinite;
}

@-webkit-keyframes ap-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
@keyframes ap-progress-bar-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 30px 0;
  }
}
/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * 1. Required for `a` elements
 * 2. Dimension
 * 3. Style
 */
.ap-slidenav {
  /* 1 */
  display: inline-block;
  /* 2 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 60px;
  height: 60px;
  /* 3 */
  line-height: 60px;
  color: rgba(50, 50, 50, 0.4);
  font-size: 60px;
  text-align: center;
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 * 3. Required for `a` elements
 * 4. Style
 */
.ap-slidenav:hover,
.ap-slidenav:focus {
  /* 2 */
  outline: none;
  /* 3 */
  text-decoration: none;
  /* 4 */
  color: rgba(50, 50, 50, 0.7);
  cursor: pointer;
}

/* Active */
.ap-slidenav:active {
  color: rgba(50, 50, 50, 0.9);
}

/*
 * Icons
 */
.ap-slidenav-previous:before {
  content: "\f104";
  font-family: FontAwesome;
}

.ap-slidenav-next:before {
  content: "\f105";
  font-family: FontAwesome;
}

/* Sub-object: `ap-slidenav-position`
 ========================================================================== */
/*
 * Create position context
 */
.ap-slidenav-position {
  position: relative;
}

/*
 * Center vertically
 */
.ap-slidenav-position .ap-slidenav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  margin-top: -30px;
}

.ap-slidenav-position:hover .ap-slidenav {
  display: block;
}

.ap-slidenav-position .ap-slidenav-previous {
  left: 20px;
}

.ap-slidenav-position .ap-slidenav-next {
  right: 20px;
}

/* Modifier: `ap-slidenav-contrast`
 ========================================================================== */
.ap-slidenav-contrast {
  color: rgba(255, 255, 255, 0.5);
}

/*
 * Hover
 * 1. Apply hover style also to focus state
 */
.ap-slidenav-contrast:hover,
.ap-slidenav-contrast:focus {
  color: rgba(255, 255, 255, 0.7);
}

/* Active */
.ap-slidenav-contrast:active {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * RTL Compatibility
 */
[data-ap-slider] {
  direction: ltr;
}

html[dir=rtl] .ap-slider > * {
  direction: rtl;
}

/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Deactivate browser history navigation in IE11
 */
.ap-slider {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

/*
 * 1. Reset list style without interfering with grid
 */
.ap-slider:not(.ap-grid) {
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Sub-object item
 * 1. Position items above each other
 */
.ap-slider > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
}

/*
 * Clip child elements
 */
.ap-slider-container {
  overflow: hidden;
}

/*
 * Dragged
 */
.ap-slider:not(.ap-drag) {
  -webkit-transition: -webkit-transform 200ms linear;
  transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
  transition: transform 200ms linear, -webkit-transform 200ms linear;
}

/*
 * 1. Makes text unselectable
 */
.ap-slider.ap-drag {
  cursor: col-resize;
  /* 1 */
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*
 * 1. Prevents images and links from being dragged (default browser behavior)
 * 2. Disables the default callout shown when you touch and hold a touch target
 * Currently only works in Webkit
 */
.ap-slider a,
.ap-slider img {
  /* 1 */
  -webkit-user-drag: none;
  user-drag: none;
  /* 2 */
  -webkit-touch-callout: none;
}

/*
 * 1. Prevents images and links from being dragged in Firefox
 */
.ap-slider img {
  pointer-events: none;
}

/* Modifier: `ap-slider-fullscreen`
 ========================================================================== */
.ap-slider-fullscreen,
.ap-slider-fullscreen > li {
  height: 100vh;
}

/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Create position context
 * 2. Create stacking context to prevent z-index issues with other components
 * 3. Set width because child elements are positioned absolute. Height is set via JS
 * 4. Reset list style
 * 5. Clip child elements
 * 6. Deactivate browser history navigation in IE11
 */
.ap-slideshow {
  /* 1 */
  position: relative;
  /* 2 */
  z-index: 0;
  /* 3 */
  width: 100%;
  /* 4 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 5 */
  overflow: hidden;
  /* 6 */
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

/*
 * Sub-object item
 * 1. Position items above each other
 * 2. Expand to parent container width
 * 3. Hide by default
 */
.ap-slideshow > li {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  opacity: 0;
}

/*
 * Active
 * 1. Stack at first
 * 2. Show slide
 */
.ap-slideshow > .ap-active {
  /* 1 */
  z-index: 10;
  /* 2 */
  opacity: 1;
}

/*
 * Hide default images which is only relevant to keep existing proportions
 */
.ap-slideshow > li > img {
  visibility: hidden;
}

/*
 * Pointer for controls
 */
[data-ap-slideshow-slide] {
  cursor: pointer;
}

/* Modifier: `ap-slideshow-fullscreen`
 ========================================================================== */
.ap-slideshow-fullscreen,
.ap-slideshow-fullscreen > li {
  height: 100vh;
}

/* Animations
 ========================================================================== */
/*
 * Fade
 */
.ap-slideshow-fade-in {
  -webkit-animation: ap-fade 0.5s linear;
  animation: ap-fade 0.5s linear;
}

.ap-slideshow-fade-out {
  -webkit-animation: ap-fade 0.5s linear reverse;
  animation: ap-fade 0.5s linear reverse;
}

/*
 * Scroll
 */
.ap-slideshow-scroll-forward-in {
  -webkit-animation: ap-slide-right 0.5s ease-in-out;
  animation: ap-slide-right 0.5s ease-in-out;
}

.ap-slideshow-scroll-forward-out {
  -webkit-animation: ap-slide-left 0.5s ease-in-out reverse;
  animation: ap-slide-left 0.5s ease-in-out reverse;
}

.ap-slideshow-scroll-backward-in {
  -webkit-animation: ap-slide-left 0.5s ease-in-out;
  animation: ap-slide-left 0.5s ease-in-out;
}

.ap-slideshow-scroll-backward-out {
  -webkit-animation: ap-slide-right 0.5s ease-in-out reverse;
  animation: ap-slide-right 0.5s ease-in-out reverse;
}

/*
 * Scale
 */
.ap-slideshow-scale-out {
  -webkit-animation: ap-fade-scale-15 0.5s ease-in-out reverse;
  animation: ap-fade-scale-15 0.5s ease-in-out reverse;
}

/*
 * Swipe
 */
.ap-slideshow-swipe-forward-in {
  -webkit-animation: ap-slide-left-33 0.5s ease-in-out;
  animation: ap-slide-left-33 0.5s ease-in-out;
}

.ap-slideshow-swipe-forward-out {
  -webkit-animation: ap-slide-left 0.5s ease-in-out reverse;
  animation: ap-slide-left 0.5s ease-in-out reverse;
}

.ap-slideshow-swipe-backward-in {
  -webkit-animation: ap-slide-right-33 0.5s ease-in-out;
  animation: ap-slide-right-33 0.5s ease-in-out;
}

.ap-slideshow-swipe-backward-out {
  -webkit-animation: ap-slide-right 0.5s ease-in-out reverse;
  animation: ap-slide-right 0.5s ease-in-out reverse;
}

.ap-slideshow-swipe-forward-in:before,
.ap-slideshow-swipe-backward-in:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: ap-fade 0.5s ease-in-out reverse;
  animation: ap-fade 0.5s ease-in-out reverse;
}

/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. More robust if padding and border are used
 * 2. Enable hardware acceleration for iOS browsers, resolves scrolling issue
 */
[data-ap-sticky].ap-active {
  z-index: 980;
  /* 1 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 2 */
  -webkit-backface-visibility: hidden;
}

/*
 * Faster animations
 */
[data-ap-sticky][class*=ap-animation-] {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

[data-ap-sticky].ap-animation-reverse {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set fixed position
 * 3. Set dimensions
 * 4. Set style
 */
.ap-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 220px;
  padding: 5px 8px;
  /* 4 */
  background: #333;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 18px;
  word-break: break-all !important;
}

/* Triangle
 ========================================================================== */
/*
 * 1. Dashed is less antialised than solid
 */
.ap-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  /* 1 */
  border: 5px dashed #333;
}

/* Direction modifiers
 ========================================================================== */
/*
 * Top
 */
.ap-tooltip-top:after,
.ap-tooltip-top-left:after,
.ap-tooltip-top-right:after {
  bottom: -5px;
  border-top-style: solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: #333;
}

/*
 * Bottom
 */
.ap-tooltip-bottom:after,
.ap-tooltip-bottom-left:after,
.ap-tooltip-bottom-right:after {
  top: -5px;
  border-bottom-style: solid;
  border-top: none;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #333;
}

/*
 * Top/Bottom center
 */
.ap-tooltip-top:after,
.ap-tooltip-bottom:after {
  left: 50%;
  margin-left: -5px;
}

/*
 * Top/Bottom left
 */
.ap-tooltip-top-left:after,
.ap-tooltip-bottom-left:after {
  left: 10px;
}

/*
 * Top/Bottom right
 */
.ap-tooltip-top-right:after,
.ap-tooltip-bottom-right:after {
  right: 10px;
}

/*
 * Left
 */
.ap-tooltip-left:after {
  right: -5px;
  top: 50%;
  margin-top: -5px;
  border-left-style: solid;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}

/*
 * Right
 */
.ap-tooltip-right:after {
  left: -5px;
  top: 50%;
  margin-top: -5px;
  border-right-style: solid;
  border-left: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: #333;
}

/* ========================================================================
   Component: Upload
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.ap-dragover {
  -webkit-box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
          box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

header {
  background: #fff;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 768px) {
  header {
    padding: 25px 30px;
  }
}
@media (min-width: 1220px) {
  header {
    padding: 25px 50px;
  }
}

.subheading {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.subheading .mobileheading {
  padding: 15px;
  position: relative;
}
.subheading .mobileheading i {
  float: right;
  position: relative;
  font-size: 20px;
  top: 2.5px;
}
.subheading .menu {
  padding: 0;
  margin: 0 0 0 0;
  position: relative;
}
.subheading .menu.updates {
  display: block;
}
@media (min-width: 768px) {
  .subheading .menu.updates {
    margin: 0 10px;
  }
}
@media (min-width: 1220px) {
  .subheading .menu.updates {
    margin: 0 30px;
  }
}
.subheading .menu.updates li {
  display: block;
}
.subheading .menu.updates li.ap-active:after, .subheading .menu.updates li:hover:after {
  display: none;
}
.subheading .menu.updates li a {
  line-height: 20px;
}
.subheading .menu.updates .fa {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .subheading .menu {
    margin: 0 0 0 10px;
  }
}
@media (min-width: 1220px) {
  .subheading .menu {
    margin: 0 0 0 30px;
  }
}
.subheading .menu li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  border-right: 1px solid #ddd;
  position: relative;
}
.subheading .menu li .ap-dropdown {
  background: #fafafa;
  border-top: 1px solid #d9d9d9;
}
.subheading .menu li .ap-dropdown.ap-dropdown-bottom {
  margin: 0;
}
.subheading .menu li .ap-dropdown .ap-nav {
  margin: 0;
}
.subheading .menu li .ap-dropdown .ap-nav li {
  border-right: none;
  display: block;
  border-bottom: 1px solid #d9d9d9;
}
.subheading .menu li .ap-dropdown .ap-nav li:hover {
  opacity: 0.75;
}
.subheading .menu li .ap-dropdown .ap-nav li:hover:after {
  display: none;
}
.subheading .menu li .ap-dropdown .ap-nav li:last-of-type {
  border: none;
}
.subheading .menu li .ap-dropdown .ap-nav li a {
  padding: 7.5px 20px;
  color: #444;
}
.subheading .menu li.ap-active:after, .subheading .menu li:hover:after {
  content: "";
  background: #d9d9d9;
  height: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
}
.subheading .menu li.ap-parent:hover:after {
  display: none;
}
.subheading .menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 15px;
}
.subheading .menu li:last-of-type {
  border-right: 0;
}
.subheading .menu .ap-badge {
  padding: 3px 5px 2px 5px;
  position: relative;
  font-size: 9px;
  line-height: 9px;
  background: #b7b7b7;
}

.mobile-navigation .ap-accordion-title {
  padding: 15px;
  border: 1px solid #888;
  position: relative;
}
.mobile-navigation .ap-accordion-title i {
  position: absolute;
  right: 15px;
  top: 20px;
}
.mobile-navigation .ap-accordion-content {
  margin-top: 15px;
}
.mobile-navigation .ap-accordion-content li {
  border-bottom: 1px solid #595959;
  padding: 7.5px 0;
}
.mobile-navigation .ap-accordion-content li:last-of-type {
  border: 0;
}
.mobile-navigation .ap-accordion-content li.ap-active a, .mobile-navigation .ap-accordion-content li.ap-active:before, .mobile-navigation .ap-accordion-content li:hover a, .mobile-navigation .ap-accordion-content li:hover:before {
  color: #bfbfbf;
}
.mobile-navigation .ap-accordion-content li .ap-badge {
  background: #666666;
}
.mobile-navigation .ap-accordion-content .breadcrumb li {
  padding: 0 0 10px 15px;
}

main {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media (min-width: 768px) {
  main {
    min-height: calc(100vh - 170px);
  }
}
@media (min-width: 960px) {
  main {
    width: calc(100% - 180px);
    margin-left: 180px;
  }
}
@media (min-width: 1220px) {
  main {
    width: calc(100% - 200px);
    margin-left: 200px;
  }
}
main section {
  padding: 30px 20px;
}
@media (min-width: 768px) {
  main section {
    padding: 30px;
  }
}
@media (min-width: 1220px) {
  main section {
    padding: 50px;
  }
}
@media (min-width: 960px) {
  main.case section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
main.case article {
  width: 100%;
}
@media (min-width: 960px) {
  main.case article {
    width: calc(100% - 200px);
    padding-right: 20px;
  }
}
@media (min-width: 1220px) {
  main.case article {
    width: calc(100% - 300px);
    padding-right: 30px;
  }
}
main.case aside {
  width: 100%;
}
@media (min-width: 960px) {
  main.case aside {
    width: 200px;
  }
}
@media (min-width: 1220px) {
  main.case aside {
    width: 300px;
  }
}

.max-300 {
  max-width: 300px;
}

.max-800 {
  max-width: 800px;
}

.max-1200 {
  max-width: 1200px;
}

.ap-product.selected {
  border: 10px solid #333;
}
.ap-product.green {
  background: rgba(51, 255, 0, 0.24);
}
.ap-product.orange {
  background: rgba(255, 153, 0, 0.24);
}
.ap-product.red {
  background: rgba(255, 0, 0, 0.24);
}

.ap-section {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .ap-section {
    margin-bottom: 35px;
  }
}
.ap-section.white {
  background: #fff;
  padding: 20px 25px 25px 25px;
}
@media (min-width: 768px) {
  .ap-section.white {
    padding: 30px 40px 40px 40px;
  }
}
.ap-section.white.ap-grid {
  margin-left: 0;
}
@media (min-width: 768px) {
  .ap-section.white.ap-grid {
    padding: 30px 40px 40px 20px;
  }
}
.ap-section.grey {
  background: #ddd;
  padding: 20px 25px 25px 25px;
}
@media (min-width: 768px) {
  .ap-section.grey {
    padding: 30px 40px 40px 40px;
  }
}
.ap-section.green {
  background: rgba(51, 255, 0, 0.24);
}
.ap-section.orange {
  background: rgba(255, 153, 0, 0.24);
}
.ap-section.red {
  background: rgba(255, 0, 0, 0.24);
}
.ap-section.nopadding {
  padding: 0 !important;
}
.ap-section .multiple + .multiple {
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}
.ap-section .ap-section-title {
  padding: 25px;
  background: #e6e6e6;
}
@media (min-width: 768px) {
  .ap-section .ap-section-title {
    padding: 40px;
  }
}
.ap-section .ap-section-content {
  padding: 25px;
}
@media (min-width: 768px) {
  .ap-section .ap-section-content {
    padding: 40px;
  }
}
.ap-section p {
  margin-top: 0;
  margin-bottom: 20px;
}
.ap-section ul li.fa-exclamation-circle {
  color: #965e0b;
}
.ap-section label {
  display: block;
  margin-bottom: 10px;
  padding-right: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 20px;
}
.ap-section label.small {
  font-size: 14px;
  line-height: 15px;
  margin-top: 10px;
  padding-left: 18px;
  color: #777777;
  position: relative;
}
.ap-section label.small:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  font-family: FontAwesome;
  content: "\f06a";
  color: #a31b1b;
}
.ap-section label .ap-badge {
  margin-left: 5px;
  position: relative;
  top: -1px;
  border-radius: 5px;
}
.ap-section .tooltip {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  color: #aaa;
}
.ap-section .ap-accordion-title {
  padding: 20px 50px 20px 20px;
}
.ap-section .ap-accordion-content {
  padding: 20px;
}

nav {
  width: 100%;
  background: #333333;
  color: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 960px) {
  nav {
    width: 180px;
    height: 100vh;
    position: fixed;
  }
}
@media (min-width: 1220px) {
  nav {
    width: 200px;
  }
}
nav .burger {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 10;
  padding: 0 10px;
  background: none;
  border: 0;
}
nav .burger img {
  width: 25px;
}
nav ul li {
  margin-bottom: 15px;
}
nav ul li .ap-badge {
  color: #000;
  background: #b7b7b7;
}
nav ul li a {
  color: #cccccc;
}
nav ul li a:hover {
  color: #fff;
}

.app-sidebar {
  margin-top: 0;
  font-size: 14px;
}

.spanner {
  position: absolute;
  top: 50%;
  left: 0;
  background: #2a2a2a;
  width: 100%;
  display: block;
  text-align: center;
  height: 300px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1000;
  visibility: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
}

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}

.loader {
  color: #fff;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@-webkit-keyframes load7 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
.show {
  visibility: visible;
}

.spanner,
.overlay {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.spanner.show,
.overlay.show {
  opacity: 1;
}

.accordion .ap-accordion-title {
  position: relative;
  color: #000;
  padding: 20px 30px 20px 20px;
  background: white;
  border-bottom: 1px solid #ccc;
  font-size: 18px;
  line-height: 24px;
}
.accordion .ap-accordion-title .status {
  min-width: 20px;
  display: inline-block;
}
.accordion .ap-accordion-title .fa-exclamation-circle,
.accordion .ap-accordion-title .fa-times {
  color: #ddd;
}
.accordion .ap-accordion-title .fa-plus {
  position: absolute;
  color: #000;
  right: 20px;
  top: calc(50% - 10px);
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}
.accordion .ap-accordion-title.ap-active .fa-plus {
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion .ap-accordion-content {
  background: white;
  padding: 20px 20px 20px 20px;
}
.accordion.xl .ap-accordion-title {
  padding: 20px 40px 20px 40px;
}
.accordion.xl .ap-accordion-content {
  padding: 30px 40px 50px 40px;
}

.ap-form [class*=ap-width-] {
  position: relative;
}
.ap-form .range-slider {
  position: relative;
  /* All the same stuff for Firefox */
  /* All the same stuff for IE */
}
.ap-form .range-slider input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: #ddd;
  border-radius: 10px;
}
.ap-form .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.ap-form .range-slider input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}
.ap-form .range-slider input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: #ddd;
  border-color: transparent;
  color: transparent;
}
.ap-form .range-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #aaaaaa;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  margin-top: -2px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}
.ap-form .range-slider input[type=range]::-moz-range-thumb {
  border: 1px solid #aaaaaa;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
}
.ap-form .range-slider input[type=range]::-ms-thumb {
  border: 1px solid #aaaaaa;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
}
.ap-form .range-slider .value {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-weight: bold;
  width: 100px;
}
.ap-form .switch-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-top: 10px;
}
.ap-form .switch-field.full {
  display: block;
  overflow: visible;
}
.ap-form .switch-field.full label {
  border-radius: 4px !important;
}
.ap-form .switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.ap-form .switch-field input:checked + label {
  background-color: #333;
  color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: bold;
  position: relative;
}
.ap-form .switch-field input:checked + label:before {
  font-family: FontAwesome;
  content: "\f00c";
  margin-right: 2.5px;
}
.ap-form .switch-field.xl {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .ap-form .switch-field.xl {
    display: block;
  }
  .ap-form .switch-field.xl label {
    display: inline-block;
    margin-right: 5px;
  }
  .ap-form .switch-field.xl label:first-of-type, .ap-form .switch-field.xl label:last-of-type {
    border-radius: 0;
  }
}
.ap-form .switch-field.xl label {
  padding: 12px 20px;
  font-size: 18px;
}
.ap-form .switch-field label {
  background-color: white;
  color: grey;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 8px 16px;
  margin-right: -1px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.ap-form .switch-field label:first-of-type {
  border-radius: 4px 0 0 4px;
}
.ap-form .switch-field label:last-of-type {
  border-radius: 0 4px 4px 0;
}
.ap-form .switch-field label:hover {
  cursor: pointer;
}
.ap-form .switch-field input:checked + label.radio-tab-red {
  background: rgba(163, 27, 27, 0.1);
  color: #a31b1b;
  border-color: rgba(163, 27, 27, 0.2);
}
.ap-form .switch-field input:checked + label.radio-tab-amber {
  background: rgba(197, 124, 15, 0.1);
  color: #c57c0f;
  border-color: rgba(197, 124, 15, 0.2);
}
.ap-form .switch-field input:checked + label.radio-tab-green {
  background: rgba(121, 197, 83, 0.1);
  color: #79c553;
  border-color: rgba(121, 197, 83, 0.2);
}
.ap-form .icon-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.ap-form .icon-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}
.ap-form .icon-field input:checked + label {
  color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ap-form .icon-field input:checked + label .fa-frown-o {
  color: #a31b1b;
}
.ap-form .icon-field input:checked + label .fa-meh-o {
  color: #c57c0f;
}
.ap-form .icon-field input:checked + label .fa-smile-o {
  color: #79c553;
}
.ap-form .icon-field input:checked + label .fa-star {
  color: #ffc000;
}
.ap-form .icon-field label {
  background-color: white;
  color: grey;
  font-size: 40px;
  text-align: center;
  padding: 8px 16px;
  margin-right: -1px;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.ap-form .icon-field label:first-of-type {
  padding-left: 0;
}
.ap-form .icon-field label:hover {
  cursor: pointer;
}
.ap-form .list-field {
  /* Basic styles */
  /* Checkbox */
  /* :checked */
  /* Transition */
}
.ap-form .list-field input[type=checkbox],
.ap-form .list-field input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.ap-form .list-field.small label {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}
.ap-form .list-field label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 50px;
  cursor: pointer;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 40px;
}
.ap-form .list-field label:hover {
  opacity: 0.75;
}
.ap-form .list-field label:first-of-type {
  margin-top: 5px;
}
.ap-form .list-field label::before,
.ap-form .list-field label::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
}
.ap-form .list-field.small label::before,
.ap-form .list-field.small label::after {
  top: -2px;
}
.ap-form .list-field.small input[type=checkbox] + label::after,
.ap-form .list-field.small input[type=radio] + label::after {
  top: 3px;
}
.ap-form .list-field input[type=checkbox] + label::before {
  content: " ";
  border: 2px solid #ddd;
  border-radius: 20%;
}
.ap-form .list-field input[type=radio] + label::before {
  content: " ";
  border: 2px solid #ddd;
  border-radius: 50%;
}
.ap-form .list-field input[type=checkbox] + label::after,
.ap-form .list-field input[type=radio] + label::after {
  content: "\f00c";
  font-family: FontAwesome;
  color: #000;
  font-size: 20px;
  left: 2px;
  top: 3px;
  text-align: center;
}
.ap-form .list-field input[type=checkbox]:checked + label::before,
.ap-form .list-field input[type=radio]:checked + label::before {
  /* */
}
.ap-form .list-field input[type=checkbox] + label::after,
.ap-form .list-field input[type=radio] + label::after {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.ap-form .list-field input[type=checkbox]:checked + label::after,
.ap-form .list-field input[type=radio]:checked + label::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ap-form .list-field label::before,
.ap-form .list-field label::after {
  -webkit-transition: 0.25s all ease;
  transition: 0.25s all ease;
}

.form-steps-scroll {
  width: 100%;
  overflow-y: scroll;
  position: relative;
  margin-bottom: 0;
}

.ap-form select[multiple] {
  min-height: auto !important;
}

.error {
  border-color: #a31b1b !important;
}

.telephone-success td p {
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.telephone-success td {
  background: #79c553 !important;
}

.js-telephone-log-message-holder {
  margin: 0 !important;
  font-weight: 700;
  padding-top: 5px;
}

@media (min-width: 768px) {
  .ap-product .product-description .item {
    width: calc(50% - 10px) !important;
  }
}
.ap-product .product-main {
  border-bottom: 1px solid #fff !important;
}

.ap-product .product-description .item {
  background: #fff !important;
}

.ap-product .product-description .item {
  font-size: 14px;
}

.ap-product .product-description .result {
  width: 15px !important;
}

.ap-product .product-description .feature {
  width: 50% !important;
}

.ap-product .product-description .figure {
  width: calc(50% - 25px) !important;
}

.title-bar .title .logo img {
  width: 200px !important;
  height: auto !important;
}

.fa.fa-check.amber {
  color: #de8702;
}

.ap-product .products-page .item {
  background: #f2f2f2 !important;
}

.ap-form-row a {
  text-decoration: underline;
}

.ap-form input:not([type]),
.ap-form input[type=text],
.ap-form input[type=password],
.ap-form input[type=email],
.ap-form input[type=url],
.ap-form input[type=search],
.ap-form input[type=tel],
.ap-form input[type=number],
.ap-form input[type=datetime],
.ap-form input[type=datetime-local],
.ap-form input[type=date],
.ap-form input[type=month],
.ap-form input[type=time],
.ap-form input[type=week],
.ap-form input[type=color],
.ap-form select,
.ap-form textarea {
  min-width: 300px;
}

@media (max-width: 410px) {
  .ap-form input:not([type]),
  .ap-form input[type=text],
  .ap-form input[type=password],
  .ap-form input[type=email],
  .ap-form input[type=url],
  .ap-form input[type=search],
  .ap-form input[type=tel],
  .ap-form input[type=number],
  .ap-form input[type=datetime],
  .ap-form input[type=datetime-local],
  .ap-form input[type=date],
  .ap-form input[type=month],
  .ap-form input[type=time],
  .ap-form input[type=week],
  .ap-form input[type=color],
  .ap-form select,
  .ap-form textarea {
    min-width: auto;
  }
}
@media (min-width: 960px) and (max-width: 1280px) {
  .ap-form input:not([type]),
  .ap-form input[type=text],
  .ap-form input[type=password],
  .ap-form input[type=email],
  .ap-form input[type=url],
  .ap-form input[type=search],
  .ap-form input[type=tel],
  .ap-form input[type=number],
  .ap-form input[type=datetime],
  .ap-form input[type=datetime-local],
  .ap-form input[type=date],
  .ap-form input[type=month],
  .ap-form input[type=time],
  .ap-form input[type=week],
  .ap-form input[type=color],
  .ap-form select,
  .ap-form textarea {
    min-width: auto;
  }
}
.remove-min-width .ap-form input:not([type]),
.remove-min-width .ap-form input[type=text],
.remove-min-width .ap-form input[type=password],
.remove-min-width .ap-form input[type=email],
.remove-min-width .ap-form input[type=url],
.remove-min-width .ap-form input[type=search],
.remove-min-width .ap-form input[type=tel],
.remove-min-width .ap-form input[type=number],
.remove-min-width .ap-form input[type=datetime],
.remove-min-width .ap-form input[type=datetime-local],
.remove-min-width .ap-form input[type=date],
.remove-min-width .ap-form input[type=month],
.remove-min-width .ap-form input[type=time],
.remove-min-width .ap-form input[type=week],
.remove-min-width .ap-form input[type=color],
.remove-min-width .ap-form select,
.remove-min-width .ap-form textarea {
  min-width: auto !important;
}

.ap-form-row .ap-table input:not([type]),
.ap-form-row .ap-table input[type=text],
.ap-form-row .ap-table input[type=password],
.ap-form-row .ap-table input[type=email],
.ap-form-row .ap-table input[type=url],
.ap-form-row .ap-table input[type=search],
.ap-form-row .ap-table input[type=tel],
.ap-form-row .ap-table input[type=number],
.ap-form-row .ap-table input[type=datetime],
.ap-form-row .ap-table input[type=datetime-local],
.ap-form-row .ap-table input[type=date],
.ap-form-row .ap-table input[type=month],
.ap-form-row .ap-table input[type=time],
.ap-form-row .ap-table input[type=week],
.ap-form-row .ap-table input[type=color],
.ap-form-row .ap-table select,
.ap-form-row .ap-table textarea {
  min-width: auto !important;
}

.ap-form-row .ap-table th {
  background-color: #333;
  color: #fff;
  padding: 15px;
}

.applicantsearch input {
  min-width: auto !important;
}

.ap-modal-dialog input {
  min-width: auto !important;
}

.tel-log-filter input {
  min-width: auto !important;
}

.email-log-filter input {
  min-width: auto !important;
}

.small-weight {
  font-weight: 100;
}

.form-builder input[readonly] {
  background-color: rgb(235, 235, 228) !important;
}
.form-builder select[readonly].select2-hidden-accessible + .select2-container {
  pointer-events: none;
  -ms-touch-action: none;
      touch-action: none;
}
.form-builder select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
  border-color: darkgrey !important;
  border-style: solid !important;
  border-width: 1px !important;
  background-color: rgb(235, 235, 228) !important;
  color: rgb(84, 84, 84) !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-builder select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow,
.form-builder select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
  display: none;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  counter-reset: breadcrumb-counter;
}
.breadcrumb li {
  list-style: none;
  margin: 0;
  padding: 0 22px 0 15px;
  counter-increment: breadcrumb-counter;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb li:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
.breadcrumb li .icon {
  position: absolute;
  right: 0;
  top: 2.5px;
  color: inherit;
}
.breadcrumb li .icon.fa-check {
  color: #79c553;
}
.breadcrumb li .icon.fa-times, .breadcrumb li .icon.fa-exclamation-circle {
  color: #ddd;
}
.breadcrumb li::before {
  content: counter(breadcrumb-counter);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
}

.applicants-list {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}
.applicants-list th {
  padding: 10px 5px;
  background: none;
  font-weight: bold;
  text-align: left;
  font-size: 13px;
}
.applicants-list tr {
  margin-bottom: 5px;
  display: inline-table;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.applicants-list td {
  padding: 12.5px 5px;
  background: white;
  text-align: left;
  font-size: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.applicants-list td .ap-button.options {
  padding: 0 15px;
}
.applicants-list td.nopadding {
  padding-right: 12.5px;
}
.applicants-list td:first-child {
  padding-left: 10px;
}
@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
  .applicants-list {
    /* Force table to not be like tables anymore */
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  .applicants-list table {
    width: 100%;
  }
  .applicants-list table,
  .applicants-list thead,
  .applicants-list tbody,
  .applicants-list th,
  .applicants-list td,
  .applicants-list tr {
    display: block;
  }
  .applicants-list thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .applicants-list td,
  .applicants-list th {
    width: 100% !important;
  }
  .applicants-list td:first-child {
    padding-left: 35%;
  }
  .applicants-list td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 35%;
  }
  .applicants-list td.nopadding {
    padding: 15px;
  }
  .applicants-list tr {
    margin-bottom: 15px;
  }
  .applicants-list td:before {
    /* Now like a table header */
    position: absolute;
    top: 12.5px;
    left: 15px;
    width: 60%;
    padding-right: 10px;
    white-space: nowrap;
    /* Label the data */
    content: attr(data-column);
    color: #000;
    font-weight: bold;
  }
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.searchItemContainer {
  position: relative;
}

.btnOpenFAQVideoModal {
  position: absolute;
  right: 60px;
  top: 12px;
}

.js-document-view .ap-dropdown,
.js-document-view .ap-dropdown-blank {
  width: 500px;
}
.js-document-view .ap-dropdown .ap-nav li a {
  font-size: 14px;
}

.ap-product {
  background: #fff;
  padding: 0;
}
.ap-product .product-main {
  border-bottom: 1px solid #ccc;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ap-product .product-description {
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ap-product .product-description + .product-description {
  padding-top: 0;
}
.ap-product .product-description .item {
  background: #f2f2f2;
  padding: 10px;
  margin-bottom: 5px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .ap-product .product-description .item {
    width: calc(50% - 5px);
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
  }
}
.ap-product .product-description .feature {
  width: calc(100% - 100px);
  display: inline-block;
  vertical-align: top;
}
.ap-product .product-description .figure {
  width: 75px;
  display: inline-block;
  vertical-align: top;
}
.ap-product .product-description .result {
  width: 25px;
  display: inline-block;
  vertical-align: top;
}

.our-products-table td,
.our-products-table th {
  font-size: 12px;
}
.our-products-table select.flt {
  font-size: 10px;
  min-width: auto;
  width: 100px;
}
.our-products-table .fa {
  position: relative;
  top: -2px;
}

.dashboard .summary .ap-block {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .dashboard .summary .ap-block {
    margin-bottom: 20px;
  }
}
.dashboard .summary .ap-block em {
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
  min-width: 30px;
  text-align: left;
  vertical-align: top;
}
.dashboard .summary .ap-block em span {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .dashboard .summary .ap-block em {
    outline: none;
    text-align: center;
    font-size: 36px;
    margin: 0;
    line-height: 36px;
    margin-bottom: 10px;
    width: 100%;
  }
}
.dashboard .summary .ap-block p {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .dashboard .summary .ap-block p {
    font-size: 14px;
    line-height: 16px;
  }
}
.dashboard .summary .ap-block p + p {
  margin-top: 20px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .dashboard .summary .ap-block p {
    text-align: center;
    width: 100%;
  }
}
.dashboard .summary .ap-block .fa {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 1;
}
@media (min-width: 768px) {
  .dashboard .summary .ap-block .fa {
    display: none;
  }
}

.ap-open > .ap-dropdown,
.ap-open > .ap-dropdown-blank {
  z-index: 9999;
}

.ap-button-dropdown.ap-button:hover,
.ap-button-dropdown.ap-button:focus {
  opacity: 1;
}

.ap-list .js-case-document-uploads-remove {
  float: right;
  margin-top: 15px;
}

.ap-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.applicantsearch {
  background: #fff;
  padding: 20px;
}

.feed li {
  /*		display: flex;
  align-content: center;*/
  background: #fff;
  padding: 15px 20px;
  width: 100%;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.feed li .content {
  width: calc(100% - 90px);
}
.feed li .cta {
  width: 90px;
}

body.green-theme h1,
body.green-theme h2,
body.green-theme .ap-button-secondary,
body.green-theme .ap-button-clear,
body.green-theme .ap-button-link,
body.green-theme .dashboard .summary .ap-block em,
body.green-theme .applicants-list td a:hover {
  color: #81bc00;
}
body.green-theme .ap-progress-bar,
body.green-theme .ap-button-primary {
  background: #81bc00;
}
body.green-theme .ap-button-primary,
body.green-theme .ap-button-secondary {
  border-color: #81bc00;
}

body.pink-theme h1,
body.pink-theme h2,
body.pink-theme .ap-button-secondary,
body.pink-theme .ap-button-clear,
body.pink-theme .ap-button-link,
body.pink-theme .dashboard .summary .ap-block em {
  color: #c33a2a;
}
body.pink-theme .ap-progress-bar,
body.pink-theme .ap-button-primary {
  background: #c33a2a;
}
body.pink-theme .ap-button-primary,
body.pink-theme .ap-button-secondary {
  border-color: #c33a2a;
}

body.blue-theme h1,
body.blue-theme h2,
body.blue-theme .ap-button-secondary,
body.blue-theme .ap-button-clear,
body.blue-theme .ap-button-link,
body.blue-theme .dashboard .summary .ap-block em {
  color: #165a8f;
}
body.blue-theme .ap-progress-bar,
body.blue-theme .ap-button-primary {
  background: #165a8f;
}
body.blue-theme .ap-button-primary,
body.blue-theme .ap-button-secondary {
  border-color: #165a8f;
}

#js-user-alerts {
  color: #da314b;
}

.select-green {
  background-color: #c1ffc1 !important;
}

.select-red {
  background-color: #faa !important;
}

.amber {
  background-color: #ffefbe !important;
}

/*!
 * Copyright (c) 2017 Tamble, Inc.
 * Licensed under MIT (https://github.com/tamble/jquery-ui-daterangepicker/raw/master/LICENSE.txt)
 */
.comiseo-daterangepicker-triggerbutton.ui-button {
  text-align: left;
  min-width: 18em;
}

.comiseo-daterangepicker-triggerbutton .ui-button-icon {
  /* fix v1.12 */
  position: absolute;
  right: 0.5em;
  top: 50%;
  margin-top: -8px;
}

.comiseo-daterangepicker {
  position: absolute;
  padding: 5px;
}

.comiseo-daterangepicker-mask {
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  /* required for IE */
  background-color: #fff;
  opacity: 0;
  filter: alpha(opacity=0);
}

.comiseo-daterangepicker-presets,
.comiseo-daterangepicker-calendar {
  display: table-cell;
  vertical-align: top;
  height: 230px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-presets {
  padding: 2px 7px 7px 2px;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-presets {
  padding: 2px 2px 7px 7px;
}

.comiseo-daterangepicker-presets .ui-menu {
  padding: 2px; /* fix v1.11 */
  white-space: nowrap;
}

.comiseo-daterangepicker-presets .ui-menu-item {
  /* fix v1.11 */
  padding: 0;
}

.comiseo-daterangepicker-presets .ui-menu-item > * {
  /* fix v1.11 */
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  min-height: 0; /* support: IE7 */
}

.comiseo-daterangepicker .ui-widget-content,
.comiseo-daterangepicker .ui-datepicker .ui-state-highlight {
  border-width: 0;
}

.comiseo-daterangepicker > .comiseo-daterangepicker-main.ui-widget-content {
  border-bottom-width: 1px;
}

.comiseo-daterangepicker .ui-datepicker .ui-datepicker-today .ui-state-highlight {
  border-width: 1px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-calendar {
  border-left-width: 1px;
  padding-left: 5px;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-calendar {
  border-right-width: 1px;
  padding-right: 5px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-buttonpanel {
  float: left;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-buttonpanel {
  float: right;
}

.comiseo-daterangepicker-buttonpanel > button {
  margin-top: 6px;
}

.comiseo-daterangepicker-right .comiseo-daterangepicker-buttonpanel > button {
  margin-right: 6px;
}

.comiseo-daterangepicker-left .comiseo-daterangepicker-buttonpanel > button {
  margin-left: 6px;
}

/* themeable styles */
.comiseo-daterangepicker-calendar .ui-state-highlight a.ui-state-default {
  background: #b0c4de;
  color: #fff;
}

.ui-widget .ui-widget {
  font-size: 14px !important;
}

.options-box .ap-button {
  width: 100%;
  margin-bottom: 15px;
}
.options-box .ap-button + .ap-button {
  margin-left: 0;
}
@media (min-width: 768px) {
  .options-box .ap-button {
    width: auto;
    margin-bottom: 0;
  }
  .options-box .ap-button + .ap-button {
    margin-left: 10px;
  }
}

.title-bar .title {
  width: 100%;
}
@media (min-width: 768px) {
  .title-bar .title {
    width: calc(100% - 280px);
    display: inline-block;
    vertical-align: top;
  }
}
.title-bar .title .logo {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}
.title-bar .title .logo img {
  height: 48px;
  width: auto;
}
.title-bar .title .desc {
  display: inline-block;
  vertical-align: top;
}
.title-bar .cta {
  width: 100%;
  text-align: left;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .title-bar .cta {
    margin-top: 0;
    text-align: right;
    width: 280px;
    display: inline-block;
    vertical-align: top;
  }
}

.status-box .pod {
  margin-bottom: 15px;
  background: #fff;
}
@media (min-width: 768px) {
  .status-box .pod {
    margin-bottom: 0;
  }
}
.status-box .pod .ap-block {
  padding: 25px;
}
.status-box .pod .cta {
  border-top: 1px solid #ddd;
  padding: 10px;
  cursor: pointer;
}
.status-box .pod .cta .ap-button {
  color: #4d4c4c;
  font-weight: normal;
  text-decoration: none;
}
.status-box .pod .cta:hover {
  background: #fafafa;
  text-decoration: none;
}

.chase-ask .entry {
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  position: relative;
  background: #fff;
  margin-bottom: 10px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 960px) {
  .chase-ask .entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
  }
}
.chase-ask .entry .info {
  position: relative;
}
@media (min-width: 768px) {
  .chase-ask .entry .info {
    padding-right: 50px;
  }
}
@media (min-width: 960px) {
  .chase-ask .entry .info {
    padding: 0;
    width: calc(100% - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 960px) {
  .chase-ask .entry .info .date {
    width: 60px;
  }
}
.chase-ask .entry .info .date span {
  display: inline-block;
}
@media (min-width: 960px) {
  .chase-ask .entry .info .date span {
    display: block;
  }
}
.chase-ask .entry .info .user {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  .chase-ask .entry .info .user {
    width: 260px;
    padding-right: 15px;
    overflow: hidden;
    margin-bottom: 0;
  }
}
.chase-ask .entry .info .message {
  width: 100%;
}
@media (min-width: 960px) {
  .chase-ask .entry .info .message {
    width: calc(100% - 440px);
    padding-right: 20px;
    overflow: hidden;
  }
}
.chase-ask .entry .info .notification {
  width: 100%;
}
@media (min-width: 960px) {
  .chase-ask .entry .info .notification {
    width: 120px;
  }
}
.chase-ask .entry .attachments {
  width: 50px;
  text-align: right;
  position: absolute;
  right: 60px;
  top: 22px;
}
.chase-ask .entry .attachments .fa {
  font-size: 18px;
}
@media (min-width: 960px) {
  .chase-ask .entry .attachments .fa {
    font-size: 24px;
  }
}
@media (min-width: 960px) {
  .chase-ask .entry .attachments {
    top: auto;
    right: auto;
    position: relative;
  }
}
.chase-ask .entry .options {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
}
@media (min-width: 960px) {
  .chase-ask .entry .options {
    width: 50px;
    top: auto;
    right: auto;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.chase-ask .details {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 960px) {
  .chase-ask .details {
    width: 250px;
    padding-right: 20px;
  }
}
.chase-ask .fullmessage {
  width: 100%;
}
@media (min-width: 960px) {
  .chase-ask .fullmessage {
    width: calc(100% - 250px);
  }
}

.login.password .hero {
  background-image: url("/buildstore/assets/images/newbuild.jpg");
}
.login .hero {
  background-color: #333;
  background-image: url("/buildstore/assets/images/family.jpg");
  background-position: top;
  background-size: cover;
}
@media (min-width: 768px) {
  .login .hero {
    height: 100vh;
    position: fixed;
    width: 40%;
    background-position: center center;
  }
}
.login .hero img {
  max-width: 230px;
  padding: 20px;
  display: block;
}
@media (min-width: 768px) {
  .login .hero img {
    max-width: 300px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (min-width: 768px) {
  .login .entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
  }
}
.login .entry .logo {
  width: 240px;
}
.login .entry h2 {
  color: #000;
}
.login .entry .ap-section {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .login .entry .ap-section {
    max-width: 600px;
  }
}

#password-strength-status {
  padding: 5px 10px;
  border-radius: 4px;
  margin-top: 10px;
}

.medium-password {
  background-color: #fffceb;
  border: rgba(226, 131, 39, 0.3) 1px solid;
  color: #e28327;
}

.weak-password {
  background-color: #fff1f0;
  border: rgba(216, 80, 48, 0.3) 1px solid;
  color: #d85030;
}

.strong-password {
  background-color: #f2fae3;
  border: rgba(101, 159, 19, 0.3) 1px solid;
  color: #659f13;
}

.bottom-footer {
  width: 100% !important;
  margin-left: 0 !important;
  padding: 0 !important;
  position: relative !important;
  bottom: auto !important;
}
.bottom-footer .ap-grid {
  padding: 20px;
}

.register .hero {
  background-color: #333;
  background-image: url("/buildstore/assets/images/newhome.jpg");
  background-position: bottom;
  background-size: cover;
  height: 100vh;
}
@media (max-width: 960px) {
  .register .hero {
    display: none;
  }
}
@media (min-width: 960px) {
  .register .hero {
    position: fixed;
    width: 40%;
    background-position: bottom;
  }
}
.register .hero img {
  max-width: 230px;
  padding: 20px;
  display: block;
}
@media (min-width: 960px) {
  .register .hero img {
    max-width: 300px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.register .entry {
  padding: 40px;
}
.register .entry .logo {
  width: 240px;
}
.register .entry h2 {
  color: #ffc000;
}
.register .entry .ap-button-primary {
  background: #ffc000;
  border-color: #ffc000;
}
@media (min-width: 960px) {
  .register .entry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    padding: 60px 40px;
    max-width: 600px;
  }
}
@media (min-width: 1220px) {
  .register .entry {
    padding: 80px 20px;
  }
}
.register .entry .ap-section {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 960px) {
  .register .entry .ap-section {
    margin: 0;
    width: 100%;
    display: block;
  }
}
.register .entry .ap-section:last-of-type {
  margin-bottom: 30px;
}

.survey {
  background-color: #eee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23aaaaaa' fill-opacity='0.21' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}
.survey .yellow {
  color: #ffc000;
}
.survey .ap-section .section-heading {
  margin-bottom: 20px;
}
.survey .ap-button-primary {
  background: #ffc000;
  color: #000;
  border-color: #ffc000;
}
.survey .logo {
  width: 240px;
}
.survey .header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
.survey .progress-container {
  background-color: #ddd;
  height: 10px;
  width: 100%;
}
.survey .progress-bar {
  background-color: #ffc000;
  height: 10px;
  width: 0;
}
.survey .survey-questions {
  counter-reset: my-awesome-counter;
}
.survey .survey-questions .ap-section {
  counter-increment: my-awesome-counter;
  position: relative;
}
.survey .survey-questions .ap-section:before {
  content: counter(my-awesome-counter) "";
  position: absolute;
  left: -15px;
  width: 30px;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  top: -6px;
  z-index: 10;
  color: #000;
}
@media (min-width: 768px) {
  .survey .survey-questions .ap-section:before {
    top: 35px;
  }
}
.survey .survey-questions .ap-section:after {
  content: "";
  position: absolute;
  left: -15px;
  top: -8px;
  background: #ffc000;
  border-radius: 50%;
  z-index: 5;
  height: 30px;
  width: 30px;
}
@media (min-width: 768px) {
  .survey .survey-questions .ap-section:after {
    top: 33px;
  }
}
@media (max-width: 768px) {
  .survey .survey-questions .multiselect {
    font-size: 18px;
  }
  .survey .survey-questions .multiselect li {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .survey .survey-questions .multiselect li .title {
    font-weight: bold;
    font-size: 20px;
  }
  .survey .survey-questions .multiselect li label {
    margin-bottom: 0 !important;
  }
}
.survey .ap-subnav-pill li {
  font-weight: bold;
}
.survey .ap-subnav li.ap-active:after {
  border-top: 9px solid #ffc000;
}
.survey .ap-subnav-pill li.ap-active {
  background: #ffc000;
}
.survey .social-icons .fa {
  font-size: 40px;
}
.survey .social-icons .fa.fa-facebook-square {
  color: #3b5998;
}
.survey .social-icons .fa.fa-twitter-square {
  color: #00acee;
}
.survey .social-icons .fa:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .calc .calc-container {
    display: block;
  }
}
.calc .calc-container .budget-input {
  width: 100%;
}
@media (min-width: 768px) {
  .calc .calc-container .budget-input {
    width: calc(100% - 280px);
    margin-right: 30px;
  }
}
@media (min-width: 1220px) {
  .calc .calc-container .budget-input {
    width: calc(100% - 320px);
  }
}
.calc .calc-container .budget-input .policy {
  padding-top: 20px;
}
.calc .calc-container .budget-input .policy + .policy {
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}
.calc .calc-container .budget-totals {
  width: 100%;
}
@media (min-width: 768px) {
  .calc .calc-container .budget-totals {
    width: 310px;
  }
}
@media (min-width: 1220px) {
  .calc .calc-container .budget-totals {
    width: 350px;
  }
}

[data-tooltip] {
  position: relative;
}

[data-tooltip]::before,
[data-tooltip]::after {
  opacity: 0;
  visbility: hidden;
  margin-top: -0.5em;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  display: block;
  position: absolute;
  top: 53px;
  left: 50%;
  margin-left: -4.75em;
  width: 8em;
  text-align: center;
  border-radius: 4px;
  background: black;
  color: white;
  font-size: 12px;
  line-height: 15px;
  padding: 0.75em 0.95em;
  z-index: 1000;
}

[data-tooltip]::after {
  content: "";
  border: 10px solid transparent;
  border-bottom-color: black;
  position: absolute;
  top: 34px;
  left: 50%;
  margin-left: -10px;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  visiblity: visible;
}

/* -------------------------------- 

Basic Style

-------------------------------- */
.ap-multi-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}

.ap-multi-steps::after {
  clear: both;
  content: "";
  display: table;
}

.ap-multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 14px;
  line-height: 16px;
  width: 150px;
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.ap-multi-steps li .icon {
  position: absolute;
  top: -17.5px;
  z-index: 10;
  left: 0;
  right: 0;
}

.ap-multi-steps li span {
  display: none;
}
@media (min-width: 480px) {
  .ap-multi-steps li span {
    font-size: 10px;
    display: none;
  }
}
@media (min-width: 768px) {
  .ap-multi-steps li span {
    font-size: 12px;
    display: block;
  }
}
.ap-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: "»";
  margin: 0 0.6em;
  color: #959fa5;
}

.ap-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.ap-multi-steps li > * {
  /* single step */
  display: inline-block;
  color: #2c3f4c;
}

.ap-multi-steps li.current > * {
  /* selected step */
  color: #96c03d;
}

.no-touch .ap-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}

.ap-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: "";
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}

.ap-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 0.4em;
  margin-top: -2px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg) no-repeat 0 0;
  vertical-align: middle;
}

.ap-multi-steps {
  padding: 0 1.2em;
}

.ap-multi-steps li {
  margin: 1.2em 0;
}

.cd-breadcrumb li::after,
.ap-multi-steps li::after {
  margin: 0 1em;
}

/* -------------------------------- 




/* -------------------------------- 

Multi steps indicator 

-------------------------------- */
.ap-multi-steps {
  /* reset style */
  background-color: transparent;
  padding: 0;
  text-align: center;
}

.ap-multi-steps li {
  position: relative;
  float: none;
  padding: 0 2.5px;
  /*margin: .4em 40px .4em 0;*/
  margin: 0;
}

.ap-multi-steps li:last-of-type {
  margin-right: 0;
}

.ap-multi-steps li::after {
  /* this is the line connecting 2 adjacent items */
  position: absolute;
  content: "";
  height: 4px;
  background: #edeff0;
  /* reset style */
  margin: 0;
}

.ap-multi-steps li::after {
  background-color: #b3b2b2;
}

.ap-multi-steps li > *,
.ap-multi-steps li.current > * {
  position: relative;
  color: #2c3f4c;
}

.ap-multi-steps.custom-separator li::after {
  /* reset style */
  height: 4px;
  background: #edeff0;
}

.ap-multi-steps.text-center li::after {
  width: 100%;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%) translateX(-1px);
  transform: translateY(-50%) translateX(-1px);
}

.ap-multi-steps.text-center li > * {
  z-index: 1;
  padding: 0.6em 1em;
  border-radius: 0.25em;
  background-color: #edeff0;
}

.no-touch .ap-multi-steps.text-center a:hover {
  background-color: #2c3f4c;
}

.ap-multi-steps.text-center li.current > *,
.ap-multi-steps.text-center li > * {
  color: #fff;
  background-color: #b3b2b2;
}

.ap-multi-steps.text-center li.current {
  background-color: #000;
}

.ap-multi-steps.text-center.custom-icons li a::before {
  /* change the custom icon for the visited item - check icon */
  background-position: 0 -60px;
}

.ap-multi-steps.text-bottom li {
  text-align: center;
}

.ap-multi-steps.text-bottom li a {
  position: relative;
}

.ap-multi-steps.text-bottom li::after {
  /* this is the line connecting 2 adjacent items */
  position: absolute;
  left: 50%;
  /* 40px is the <li> right margin value 
  width: calc(100% + 40px);*/
  width: 100%;
  top: 10px;
}

.ap-multi-steps.text-bottom li > *::before {
  /* this is the spot indicator */
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #edeff0;
}

.ap-multi-steps.text-bottom li > *::before {
  background-color: #b3b2b2;
}

.ap-multi-steps.text-bottom li:hover *::before {
  background-color: #000;
}

.ap-multi-steps.text-bottom li:hover .fa::before {
  background-color: transparent;
}

.ap-multi-steps.text-bottom li.current > *::before {
  background-color: #000;
}

.no-touch .ap-multi-steps.text-top a:hover,
.no-touch .ap-multi-steps.text-bottom a:hover {
  color: #96c03d;
}

.no-touch .ap-multi-steps.text-top a:hover::before,
.no-touch .ap-multi-steps.text-bottom a:hover::before {
  -webkit-box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
          box-shadow: 0 0 0 3px rgba(150, 192, 61, 0.3);
}

.ap-multi-steps.text-top li::after {
  /* this is the line connecting 2 adjacent items */
  bottom: 4px;
}

.ap-multi-steps.text-top li > * {
  padding-bottom: 20px;
}

.ap-multi-steps.text-top li > *::before {
  /* this is the spot indicator */
  bottom: 0;
}

.ap-multi-steps.text-bottom li > *::before {
  /* this is the spot indicator */
  top: 0;
}

/* -------------------------------- 

Add a counter to the multi-steps indicator 

-------------------------------- */
.ap-multi-steps.count li {
  counter-increment: steps;
}

.ap-multi-steps.count li > *::before {
  content: counter(steps) " - ";
}

.ap-multi-steps.text-top.count li > *::before,
.ap-multi-steps.text-bottom.count li > *::before {
  /* this is the spot indicator */
  content: counter(steps);
  height: 26px;
  width: 26px;
  line-height: 26px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.ap-multi-steps.text-top.count li::after {
  bottom: 11px;
}

.ap-multi-steps.text-top.count li > * {
  padding-bottom: 30px;
}

.ap-multi-steps.text-bottom.count li > * {
  padding-top: 35px;
}

.boxed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  background: white;
  border-radius: 8px;
}
.boxed li {
  border-right: 1px solid #eee;
  display: inline-block;
  float: left;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 12px;
  line-height: 14px;
  width: 150px;
  background: white;
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: center;
  counter-increment: steps;
  position: relative;
}
@media (min-width: 1110px) {
  .boxed li a:before, .boxed li a:after {
    opacity: 0 !important;
    border: 2px solid red;
  }
}
.boxed li span {
  display: none;
}
@media (min-width: 1110px) {
  .boxed li span {
    display: block;
  }
}
.boxed li:hover {
  background: #f1f1f1;
}
.boxed li .icon {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  font-size: 16px;
}
.boxed li .icon.fa-check-circle {
  color: #79c553;
}
.boxed li .icon.fa-exclamation-circle {
  color: #ddd;
}
.boxed li a {
  position: absolute;
  display: block;
  padding: 15px 5px 15px 5px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1110px) {
  .boxed li a {
    position: relative;
    display: block;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding: 0 5px 15px 5px;
  }
}
.boxed li.current {
  background: #ddd;
}
.boxed li:first-of-type {
  border-radius: 8px 0 0 8px;
}
.boxed li:last-of-type {
  border-radius: 0 8px 8px 0;
  border: 0;
}
.boxed li:before {
  content: counter(steps) "";
  font-weight: bold;
  display: block;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 1110px) {
  .boxed li:before {
    margin-bottom: 5px;
  }
}

body.affiliate .register .entry h2 {
  color: #5f295d;
}
body.affiliate .register .entry .ap-button-primary {
  background-color: #5f295d;
  border-color: #5f295d;
}
body.affiliate .grey-box {
  background-color: #919aa0;
}
body.affiliate .grey-box h3,
body.affiliate .grey-box h4 {
  color: #fff;
}
body.affiliate .phone {
  color: #5f295d;
  font-size: 18px;
  padding: 0;
  margin: 0;
}

/* jquery.Jcrop.css v0.9.12 - MIT License */
/*
  The outer-most container in a typical Jcrop instance
  If you are having difficulty with formatting related to styles
  on a parent element, place any fixes here or in a like selector

  You can also style this element if you want to add a border, etc
  A better method for styling can be seen below with .jcrop-light
  (Add a class to the holder and style elements for that extended class)
*/
.jcrop-holder {
  direction: ltr;
  text-align: left;
}

/* Selection Border */
.jcrop-vline,
.jcrop-hline {
  background: #fff;
  font-size: 0;
  position: absolute;
}

.jcrop-vline {
  height: 100%;
  width: 1px !important;
}

.jcrop-vline.right {
  right: 0;
}

.jcrop-hline {
  height: 1px !important;
  width: 100%;
}

.jcrop-hline.bottom {
  bottom: 0;
}

/* Invisible click targets */
.jcrop-tracker {
  height: 100%;
  width: 100%;
  /* "turn off" link highlight */
  -webkit-tap-highlight-color: transparent;
  /* disable callout, image save panel */
  -webkit-touch-callout: none;
  /* disable cut copy paste */
  -webkit-user-select: none;
}

.jcrop-keymgr {
  opacity: 0;
}

/* Selection Handles */
.jcrop-handle {
  background-color: #333;
  border: 1px #eee solid;
  width: 7px;
  height: 7px;
  font-size: 1px;
}

.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}

.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px;
}

.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%;
}

.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%;
}

.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}

.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0;
}

.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0;
}

.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px;
}

/* Dragbars */
.jcrop-dragbar.ord-n,
.jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%;
}

.jcrop-dragbar.ord-e,
.jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px;
}

.jcrop-dragbar.ord-n {
  margin-top: -4px;
}

.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px;
}

.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0;
}

.jcrop-dragbar.ord-w {
  margin-left: -4px;
}

/* The "jcrop-light" class/extension */
.jcrop-light .jcrop-vline,
.jcrop-light .jcrop-hline {
  background: #fff;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}

.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #000;
  border-color: #fff;
  border-radius: 3px;
}

/* The "jcrop-dark" class/extension */
.jcrop-dark .jcrop-vline,
.jcrop-dark .jcrop-hline {
  background: #000;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}

.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #fff;
  border-color: #000;
  border-radius: 3px;
}

/* Simple macro to turn off the antlines */
.solid-line .jcrop-vline,
.solid-line .jcrop-hline {
  background: #fff;
}

/* Fix for twitter bootstrap et al. */
.jcrop-holder img,
img.jcrop-preview {
  max-width: none;
}

.jcrop-holder #preview-pane {
  display: block;
  position: absolute;
  z-index: 2000;
  top: 10px;
  right: -280px;
  padding: 6px;
  border: 1px rgba(0, 0, 0, 0.4) solid;
  background-color: white;
  border-radius: 6px;
  -webkit-box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.2);
}

.btn-image-crop-submit {
  margin-top: 15px;
  margin-bottom: 15px;
}

#field_Logo_Filename_upload {
  display: none;
}

.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  max-width: 80%;
  font-size: 18px;
  /* 20px */
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  /* 10px 20px */
}

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */
}

/* style 1 */
.inputfile-1 + label {
  color: #f1e5e6;
  background-color: #333;
  border-radius: 0;
  margin-top: 15px;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background-color: #262626;
}

span.bold {
  font-family: 700;
}

.absence .inputfile-1 + label {
  background-color: #333;
}

.progress {
  margin-top: 55px;
}

/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.xl-modal {
  width: 90%;
}
/*# sourceMappingURL=style.css.map */