@charset "UTF-8";
/*
Theme Name: FlowCal Custom
Author: Sneaker Web Design, LLC
Description: Custom Theme for FlowCal
Version: 1.0

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Formsa
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,400);
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * 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,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 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;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*
 * We make sure that the CSS parser knows how to tranform the bytes into characters
 * correctly if we have non-ASCII characters in font names, content property, selectors, etc.
 */
/*!
 * Font Awesome 4.4.0
 * http://fontawesome.io
 * License under MIT
 * Author @davegandy
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?v=4.4.0");
  src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right {
  margin-left: .3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}

.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "\f000";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}

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

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

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

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

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

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

.fa-circle-thin:before {
  content: "\f1db";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}

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

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

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

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

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

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

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

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

.fa-genderless:before {
  content: "\f22d";
}

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

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

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

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

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

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

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

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

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

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

.fa-medium:before {
  content: "\f23a";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ========================= */
/*!
 * animsition v4.0.0
 * http://blivesta.com/
 * License under MIT
 * Author @blivesta
 * http://blivesta.github.io/animsition
 */
.animsition, .animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd;
}

.animsition-loading, .animsition-loading:after {
  width: 2pc;
  height: 2pc;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -1pc;
  margin-left: -1pc;
  border-radius: 50%;
  z-index: 2;
}

.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
  animation-name: animsition-loading;
}

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-out {
  -webkit-animation-name: fade-out;
  animation-name: fade-out;
}

@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

@-webkit-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0;
  }
}
@keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0;
  }
}
.fade-out-up {
  -webkit-animation-name: fade-out-up;
  animation-name: fade-out-up;
}

@-webkit-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(75pt);
    transform: translateY(75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(75pt);
    transform: translateY(75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up-sm {
  -webkit-animation-name: fade-in-up-sm;
  animation-name: fade-in-up-sm;
}

@-webkit-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-75pt);
    transform: translateY(-75pt);
    opacity: 0;
  }
}
@keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-75pt);
    transform: translateY(-75pt);
    opacity: 0;
  }
}
.fade-out-up-sm {
  -webkit-animation-name: fade-out-up-sm;
  animation-name: fade-out-up-sm;
}

@-webkit-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(750pt);
    transform: translateY(750pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(750pt);
    transform: translateY(750pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-up-lg {
  -webkit-animation-name: fade-in-up-lg;
  animation-name: fade-in-up-lg;
}

@-webkit-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-750pt);
    transform: translateY(-750pt);
    opacity: 0;
  }
}
@keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(-750pt);
    transform: translateY(-750pt);
    opacity: 0;
  }
}
.fade-out-up-lg {
  -webkit-animation-name: fade-out-up-lg;
  animation-name: fade-out-up-lg;
}

@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
}

@-webkit-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0;
  }
}
@keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0;
  }
}
.fade-out-down {
  -webkit-animation-name: fade-out-down;
  animation-name: fade-out-down;
}

@-webkit-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-75pt);
    transform: translateY(-75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-75pt);
    transform: translateY(-75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-down-sm {
  -webkit-animation-name: fade-in-down-sm;
  animation-name: fade-in-down-sm;
}

@-webkit-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(75pt);
    transform: translateY(75pt);
    opacity: 0;
  }
}
@keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(75pt);
    transform: translateY(75pt);
    opacity: 0;
  }
}
.fade-out-down-sm {
  -webkit-animation-name: fade-out-down-sm;
  animation-name: fade-out-down-sm;
}

.fade-in-down-lg {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down;
}

@-webkit-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(750pt);
    transform: translateY(750pt);
    opacity: 0;
  }
}
@keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateY(750pt);
    transform: translateY(750pt);
    opacity: 0;
  }
}
.fade-out-down-lg {
  -webkit-animation-name: fade-out-down-lg;
  animation-name: fade-out-down-lg;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

@-webkit-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0;
  }
}
@keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0;
  }
}
.fade-out-left {
  -webkit-animation-name: fade-out-left;
  animation-name: fade-out-left;
}

@-webkit-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-75pt);
    transform: translateX(-75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-75pt);
    transform: translateX(-75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left-sm {
  -webkit-animation-name: fade-in-left-sm;
  animation-name: fade-in-left-sm;
}

@-webkit-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-75pt);
    transform: translateX(-75pt);
    opacity: 0;
  }
}
@keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-75pt);
    transform: translateX(-75pt);
    opacity: 0;
  }
}
.fade-out-left-sm {
  -webkit-animation-name: fade-out-left-sm;
  animation-name: fade-out-left-sm;
}

@-webkit-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left-lg {
  -webkit-animation-name: fade-in-left-lg;
  animation-name: fade-in-left-lg;
}

@-webkit-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0;
  }
}
@keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0;
  }
}
.fade-out-left-lg {
  -webkit-animation-name: fade-out-left-lg;
  animation-name: fade-out-left-lg;
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

@-webkit-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0;
  }
}
@keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0;
  }
}
.fade-out-right {
  -webkit-animation-name: fade-out-right;
  animation-name: fade-out-right;
}

@-webkit-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(75pt);
    transform: translateX(75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(75pt);
    transform: translateX(75pt);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right-sm {
  -webkit-animation-name: fade-in-right-sm;
  animation-name: fade-in-right-sm;
}

@-webkit-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(75pt);
    transform: translateX(75pt);
    opacity: 0;
  }
}
@keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(75pt);
    transform: translateX(75pt);
    opacity: 0;
  }
}
.fade-out-right-sm {
  -webkit-animation-name: fade-out-right-sm;
  animation-name: fade-out-right-sm;
}

@-webkit-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right-lg {
  -webkit-animation-name: fade-in-right-lg;
  animation-name: fade-in-right-lg;
}

@-webkit-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0;
  }
}
@keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  to {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0;
  }
}
.fade-out-right-lg {
  -webkit-animation-name: fade-out-right-lg;
  animation-name: fade-out-right-lg;
}

@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
@keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
.rotate-in {
  -webkit-animation-name: rotate-in;
  animation-name: rotate-in;
}

@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: center center;
    opacity: 0;
  }
}
@keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: center center;
    opacity: 0;
  }
}
.rotate-out {
  -webkit-animation-name: rotate-out;
  animation-name: rotate-out;
}

@-webkit-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
@keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
.rotate-in-sm {
  -webkit-animation-name: rotate-in-sm;
  animation-name: rotate-in-sm;
}

@-webkit-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    opacity: 0;
  }
}
@keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    opacity: 0;
  }
}
.rotate-out-sm {
  -webkit-animation-name: rotate-out-sm;
  animation-name: rotate-out-sm;
}

@-webkit-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
@keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transform-origin: center center;
    opacity: 0;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}
.rotate-in-lg {
  -webkit-animation-name: rotate-in-lg;
  animation-name: rotate-in-lg;
}

@-webkit-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transform-origin: center center;
    opacity: 0;
  }
}
@keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  0%,to {
    -webkit-transform-origin: center center;
  }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transform-origin: center center;
    opacity: 0;
  }
}
.rotate-out-lg {
  -webkit-animation-name: rotate-out-lg;
  animation-name: rotate-out-lg;
}

@-webkit-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
}
.flip-in-x {
  -webkit-animation-name: flip-in-x;
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
}
.flip-out-x {
  -webkit-animation-name: flip-out-x;
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateX(90deg);
    transform: perspective(75pt) rotateX(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(75pt) rotateX(0deg);
    transform: perspective(75pt) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateX(90deg);
    transform: perspective(75pt) rotateX(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(75pt) rotateX(0deg);
    transform: perspective(75pt) rotateX(0deg);
    opacity: 1;
  }
}
.flip-in-x-nr {
  -webkit-animation-name: flip-in-x-nr;
  animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateX(0deg);
    transform: perspective(75pt) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(75pt) rotateX(90deg);
    transform: perspective(75pt) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateX(0deg);
    transform: perspective(75pt) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(75pt) rotateX(90deg);
    transform: perspective(75pt) rotateX(90deg);
    opacity: 0;
  }
}
.flip-out-x-nr {
  -webkit-animation-name: flip-out-x-nr;
  animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateX(90deg);
    transform: perspective(750pt) rotateX(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(750pt) rotateX(0deg);
    transform: perspective(750pt) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateX(90deg);
    transform: perspective(750pt) rotateX(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(750pt) rotateX(0deg);
    transform: perspective(750pt) rotateX(0deg);
    opacity: 1;
  }
}
.flip-in-x-fr {
  -webkit-animation-name: flip-in-x-fr;
  animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateX(0deg);
    transform: perspective(750pt) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(750pt) rotateX(90deg);
    transform: perspective(750pt) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateX(0deg);
    transform: perspective(750pt) rotateX(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(750pt) rotateX(90deg);
    transform: perspective(750pt) rotateX(90deg);
    opacity: 0;
  }
}
.flip-out-x-fr {
  -webkit-animation-name: flip-out-x-fr;
  animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in-y {
  -webkit-animation-name: flip-in-y;
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
}
.flip-out-y {
  -webkit-animation-name: flip-out-y;
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateY(90deg);
    transform: perspective(75pt) rotateY(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(75pt) rotateY(0deg);
    transform: perspective(75pt) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateY(90deg);
    transform: perspective(75pt) rotateY(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(75pt) rotateY(0deg);
    transform: perspective(75pt) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in-y-nr {
  -webkit-animation-name: flip-in-y-nr;
  animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateY(0deg);
    transform: perspective(75pt) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(75pt) rotateY(90deg);
    transform: perspective(75pt) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(75pt) rotateY(0deg);
    transform: perspective(75pt) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(75pt) rotateY(90deg);
    transform: perspective(75pt) rotateY(90deg);
    opacity: 0;
  }
}
.flip-out-y-nr {
  -webkit-animation-name: flip-out-y-nr;
  animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateY(90deg);
    transform: perspective(750pt) rotateY(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(750pt) rotateY(0deg);
    transform: perspective(750pt) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateY(90deg);
    transform: perspective(750pt) rotateY(90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(750pt) rotateY(0deg);
    transform: perspective(750pt) rotateY(0deg);
    opacity: 1;
  }
}
.flip-in-y-fr {
  -webkit-animation-name: flip-in-y-fr;
  animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateY(0deg);
    transform: perspective(750pt) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(750pt) rotateY(90deg);
    transform: perspective(750pt) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(750pt) rotateY(0deg);
    transform: perspective(750pt) rotateY(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(750pt) rotateY(90deg);
    transform: perspective(750pt) rotateY(90deg);
    opacity: 0;
  }
}
.flip-out-y-fr {
  -webkit-animation-name: flip-out-y-fr;
  animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-in {
  -webkit-animation-name: zoom-in;
  animation-name: zoom-in;
}

@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  50%,to {
    opacity: 0;
  }
}
@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  50%,to {
    opacity: 0;
  }
}
.zoom-out {
  -webkit-animation-name: zoom-out;
  animation-name: zoom-out;
}

@-webkit-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-in-sm {
  -webkit-animation-name: zoom-in-sm;
  animation-name: zoom-in-sm;
}

@-webkit-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50%,to {
    opacity: 0;
  }
}
@keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50%,to {
    opacity: 0;
  }
}
.zoom-out-sm {
  -webkit-animation-name: zoom-out-sm;
  animation-name: zoom-out-sm;
}

@-webkit-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.zoom-in-lg {
  -webkit-animation-name: zoom-in-lg;
  animation-name: zoom-in-lg;
}

@-webkit-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  50%,to {
    opacity: 0;
  }
}
@keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  50%,to {
    opacity: 0;
  }
}
.zoom-out-lg {
  -webkit-animation-name: zoom-out-lg;
  animation-name: zoom-out-lg;
}

@-webkit-keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.overlay-slide-in-top {
  top: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-top;
  animation-name: overlay-slide-in-top;
}

@-webkit-keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.overlay-slide-out-top {
  top: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-top;
  animation-name: overlay-slide-out-top;
}

@-webkit-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-bottom;
  animation-name: overlay-slide-in-bottom;
}

@-webkit-keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-bottom;
  animation-name: overlay-slide-out-bottom;
}

@-webkit-keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
.overlay-slide-in-left {
  width: 0;
  -webkit-animation-name: overlay-slide-in-left;
  animation-name: overlay-slide-in-left;
}

@-webkit-keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.overlay-slide-out-left {
  left: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-left;
  animation-name: overlay-slide-out-left;
}

@-webkit-keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  to {
    width: 0;
  }
}
.overlay-slide-in-right {
  right: 0;
  width: 0;
  -webkit-animation-name: overlay-slide-in-right;
  animation-name: overlay-slide-in-right;
}

@-webkit-keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.overlay-slide-out-right {
  right: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-right;
  animation-name: overlay-slide-out-right;
}

/* ========================= */
/**
* Swiper 3.1.7
* Most modern mobile touch slider and framework with hardware accelerated transitions
* 
* http://www.idangero.us/swiper/
* 
* Copyright 2015, Vladimir Kharlampidi
* The iDangero.us
* http://www.idangero.us/
* 
* Licensed under MIT
* 
* Released on: October 10, 2015
*/
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -o-transform: translate(0, -50%);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  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 {
  position: relative;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  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 #aaa;
  border-radius: 4px;
  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;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  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: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.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;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  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;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.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__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #000 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  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 #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.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--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.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-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  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-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 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-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 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: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.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__remove {
  margin-left: 2px;
  margin-right: auto;
}

.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 {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  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[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*
 * jQuery FlexSlider v2.6.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 *
 */
.flex-direction-nav a, .flex-direction-nav a:before {
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

@font-face {
  font-family: flexslider-icon;
  src: url(../fonts/flexslider/flexslider-icon.eot);
  src: url(../fonts/flexslider/flexslider-icon.eot?#iefix) format("embedded-opentype"), url(../fonts/flexslider/flexslider-icon.woff) format("woff"), url(../fonts/flexslider/flexslider-icon.ttf) format("truetype"), url(../fonts/flexslider/flexslider-icon.svg#flexslider-icon) format("svg");
  font-weight: 400;
  font-style: normal;
}
.flex-container a:hover, .flex-slider a:hover {
  outline: 0;
}

.flex-control-nav, .flex-direction-nav, .slides, .slides > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.flexslider {
  padding: 0;
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .flexslider .slides {
  display: block;
}

* html .flexslider .slides {
  height: 1%;
}

.no-js .flexslider .slides > li:first-child {
  display: block;
}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides img {
  width: 100%;
  display: block;
  height: auto;
  -moz-user-select: none;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.flex-direction-nav a:before {
  font-family: flexslider-icon;
  font-size: 40px;
  display: inline-block;
  content: '\f001';
}

.flex-direction-nav a.flex-next:before {
  content: '\f002';
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: .7;
  left: 10px;
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: .7;
  right: 10px;
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: .8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: flexslider-icon;
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/*! Magnific Popup - v1.0.0 - 2015-12-16
* http://dimsemenov.com/plugins/magnific-popup/
* Copyright (c) 2015 Dmitry Semenov; */
.mfp-bg, .mfp-wrap {
  position: fixed;
  left: 0;
  top: 0;
}

.mfp-bg, .mfp-container, .mfp-wrap {
  height: 100%;
  width: 100%;
}

.mfp-container:before, .mfp-figure:after {
  content: '';
}

.mfp-bg {
  z-index: 1042;
  overflow: hidden;
  background: #0b0b0b;
  opacity: .8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  z-index: 1043;
  outline: 0 !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-close, .mfp-preloader {
  text-align: center;
  position: absolute;
}

.mfp-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  top: 50%;
  width: auto;
  margin-top: -.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-close, .mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-error .mfp-content, .mfp-s-ready .mfp-preloader {
  display: none;
}

button.mfp-arrow, button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: 0;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  right: 0;
  top: 0;
  text-decoration: none;
  opacity: .65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  font-style: normal;
  font-size: 28px;
  font-family: Arial,Baskerville,monospace;
}

.mfp-close:focus, .mfp-close:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-figure, img.mfp-img {
  line-height: 0;
}

.mfp-arrow {
  position: absolute;
  opacity: .65;
  filter: alpha(opacity=65);
  margin: -55px 0 0;
  top: 50%;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:focus, .mfp-arrow:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow .mfp-a, .mfp-arrow .mfp-b, .mfp-arrow:after, .mfp-arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: inset transparent;
}

.mfp-arrow .mfp-a, .mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow .mfp-b, .mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: .7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left .mfp-a, .mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left .mfp-b, .mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right .mfp-a, .mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right .mfp-b, .mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-image-holder .mfp-content, img.mfp-img {
  max-width: 100%;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.mfp-figure:after, img.mfp-img {
  width: auto;
  height: auto;
  display: block;
}

img.mfp-img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0;
  margin: 0 auto;
}

.mfp-figure:after {
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  right: 0;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/**
 * YITH Magnifier
 * 
 * @version 0.1
 * @author Your Inspiration Themes Team <info@yithemes.com>
 *
 * MIT License.
 */
.yith_magnifier_zoom_wrap {
  top: 0;
  z-index: 9999;
  position: relative;
}

.yith_magnifier_loading {
  color: #fff;
  background: #222;
  padding: 3px;
  border: 1px solid #000;
  position: absolute;
  text-align: center;
  top: 10%;
  z-index: 9999;
}

.yith_magnifier_zoom {
  position: relative;
  display: block;
}

.yith_magnifier_zoom img {
  display: block;
}

.yith_magnifier_mousetrap {
  z-index: 999;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
}

.ie .yith_magnifier_mousetrap {
  background-image: url(".");
}

.yith_magnifier_lens {
  display: none;
  z-index: 98;
  position: absolute;
  overflow: hidden;
  border: 1px solid #ccc;
}

.yith_magnifier_lens img {
  width: auto !important;
  max-width: none !important;
  -webkit-transition: all ease-in-out 0s !important;
  -moz-transition: all ease-in-out 0s !important;
  -o-transition: all ease-in-out 0s !important;
  transition: all ease-in-out 0s !important;
}

.yith_magnifier_zoom_magnifier {
  display: none;
  position: absolute;
  z-index: 99;
  border: 4px solid #ccc;
  overflow: hidden;
}

.yith_magnifier_gallery {
  list-style: none;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-pulse, .la-ball-pulse > div {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.la-ball-pulse {
  display: block;
  font-size: 0;
  color: #fff;
}

.la-ball-pulse.la-dark {
  color: #333;
}

.la-ball-pulse > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.la-ball-pulse {
  width: 54px;
  height: 18px;
}

.la-ball-pulse > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  -moz-animation-delay: -200ms;
  -o-animation-delay: -200ms;
  animation-delay: -200ms;
}

.la-ball-pulse > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  -moz-animation-delay: -100ms;
  -o-animation-delay: -100ms;
  animation-delay: -100ms;
}

.la-ball-pulse > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  -moz-animation-delay: 0ms;
  -o-animation-delay: 0ms;
  animation-delay: 0ms;
}

.la-ball-pulse > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  -webkit-animation: ball-pulse 1s ease infinite;
  -moz-animation: ball-pulse 1s ease infinite;
  -o-animation: ball-pulse 1s ease infinite;
  animation: ball-pulse 1s ease infinite;
}

.la-ball-pulse.la-sm {
  width: 26px;
  height: 8px;
}

.la-ball-pulse.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.la-ball-pulse.la-2x {
  width: 108px;
  height: 36px;
}

.la-ball-pulse.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.la-ball-pulse.la-3x {
  width: 162px;
  height: 54px;
}

.la-ball-pulse.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

@-webkit-keyframes ball-pulse {
  0%,60%,100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    opacity: .1;
    -webkit-transform: scale(0.01);
    transform: scale(0.01);
  }
}
@-moz-keyframes ball-pulse {
  0%,60%,100% {
    opacity: 1;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  30% {
    opacity: .1;
    -moz-transform: scale(0.01);
    transform: scale(0.01);
  }
}
@-o-keyframes ball-pulse {
  0%,60%,100% {
    opacity: 1;
    -o-transform: scale(1);
    transform: scale(1);
  }
  30% {
    opacity: .1;
    -o-transform: scale(0.01);
    transform: scale(0.01);
  }
}
@keyframes ball-pulse {
  0%,60%,100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  30% {
    opacity: .1;
    -webkit-transform: scale(0.01);
    -moz-transform: scale(0.01);
    -o-transform: scale(0.01);
    transform: scale(0.01);
  }
}
/*
Theme Name: FlowCal Custom
Author: Sneaker Web Design, LLC
Description: Custom Theme for FlowCal
Version: 1.0
*/
/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

a:focus, img:focus {
  /* remember to define focus styles! */
  outline: 0;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a img {
  border: 0;
}

img, iframe {
  max-width: 100%;
}

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

.clearer {
  clear: both;
}

.hidden {
  display: none !important;
}

ul.arrows li {
  background: url(images/li-arrow-gray.png) no-repeat left 3px;
  padding-left: 15px;
  list-style-type: none;
  margin-bottom: .25em;
  list-style-position: inside;
}

/* =Structure
----------------------------------------------- */
body {
  padding: 0;
}

#page_wrapper_outer {
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4yOSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.29) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.29)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.29) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.29) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.29) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.29) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#4a000000',GradientType=0 );
  /* IE6-8 */
}

#page_wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#content {
  padding: 0 10px;
}

#secondary img {
  max-width: 100%;
  height: auto;
}

#primary.right-col {
  float: left;
  padding-left: 15px;
}

#secondary.right-col {
  float: left;
  padding-top: 45px;
}

/* Attachments */
.singular .image-attachment .entry-content {
  margin: 0 auto;
  width: auto;
}

.singular .image-attachment .entry-description {
  margin: 0 auto;
  width: 68.9%;
}

/* error404 */
.error404 #primary {
  float: none;
  margin: 0;
}

.error404 #primary #content {
  margin: 0 18px;
  width: auto;
}

/* Alignment */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.625em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.625em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* One column */
.one-column #content {
  margin: 0 3%;
  width: auto;
}

.one-column #nav-below {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1.625em;
}

.one-column #secondary {
  float: none;
  margin: 0 7.6%;
  width: auto;
}

/* Remove the margin on singular articles */
.one-column.singular .entry-header,
.one-column.singular .entry-content,
.one-column.singular footer.entry-meta,
.one-column.singular #comments-title {
  width: 100%;
}

/* Simplify the pullquotes and pull styles */
.one-column.singular blockquote.pull {
  margin: 0 0 1.625em;
}

.one-column.singular .pull.alignleft {
  margin: 0 1.625em 0 0;
}

.one-column.singular .pull.alignright {
  margin: 0 0 0 1.625em;
}

.one-column.singular .entry-meta .edit-link a {
  margin-bottom: 25px;
}

.one-column.singular #author-info {
  margin: 2.2em -8.8% 0;
  padding: 20px 8.8%;
}

/* Make sure we have room for our comment avatars */
.one-column .commentlist > li.comment {
  margin-left: 102px;
  width: auto;
}

/* Talking avatars take up too much room at this size */
.one-column .commentlist > li.comment {
  margin-left: 0;
}

.one-column .commentlist > li.comment .comment-meta,
.one-column .commentlist > li.comment .comment-content {
  margin-right: 85px;
}

.one-column .commentlist .avatar {
  background: transparent;
  display: block;
  padding: 0;
  top: 1.625em;
  left: auto;
  right: 1.625em;
}

.one-column .commentlist .children .avatar {
  background: none;
  padding: 0;
  position: absolute;
  top: 2.2em;
  left: 2.2em;
}

.one-column #respond {
  width: auto;
}

/* =Global
----------------------------------------------- */
body, input, textarea {
  color: #555;
  font: 14px Arial,"Trebuchet MS", Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.42;
}

#body_wrapper {
  /*background: #fff url(images/background-page-gradient.jpg) repeat-x top;*/
}

#page {
  background: #fff;
}

/* Headings */
h1
 {
  clear: both;
}

h4, h5 {
  font-weight: bold;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.625em;
  clear: both;
}

/* Text elements */
p {
  margin-bottom: 1.625em;
}

ul, ol {
  margin: 0 0 1.625em 2.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style-type: decimal;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

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

dl {
  margin: 0 1.625em;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 1.625em;
}

strong {
  font-weight: bold;
}

cite, em, i {
  font-style: italic;
}

blockquote {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-style: italic;
  font-weight: normal;
  margin: 0 3em;
}

blockquote em, blockquote i, blockquote cite {
  font-style: normal;
}

blockquote cite {
  color: #666;
  font: 12px "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

pre {
  background: #f4f4f4;
  font: 13px "Courier 10 Pitch", Courier, monospace;
  line-height: 1.5;
  margin-bottom: 1.625em;
  overflow: auto;
  padding: 0.75em 1.625em;
}

code, kbd {
  font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr, acronym, dfn {
  border-bottom: 1px dotted #666;
  cursor: help;
}

address {
  display: block;
  margin: 0 0 1.625em;
}

ins {
  background: #fff9c0;
  text-decoration: none;
}

sup,
sub {
  font-size: 10px;
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

/* Forms */
input[type=text],
input[type=password],
textarea {
  background: #fafafa;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  color: #888;
}

textarea {
  padding: 5px 7px !important;
}

input[type=text]:focus,
textarea:focus {
  color: #373737;
  -moz-box-shadow: 0 0px 3px #7abed5;
  -webkit-box-shadow: 0 0px 3px #7abed5;
  box-shadow: 0 0px 3px #7abed5;
}

input[type=text]:hover, textarea:hover {
  background: #fdfdfd;
  transition: background-color .7s;
  -moz-transition: background-color .7s;
  /* Firefox 4 */
  -webkit-transition: background-color .7s;
  /* Safari and Chrome */
  -o-transition: background-color .7s;
  /* Opera */
}

textarea {
  padding-left: 3px;
  width: 90%;
}

input[type=text] {
  padding: 3px;
}

input#s {
  -moz-border-radius: 2px;
  border-radius: 10px;
  font-size: 14px;
  height: auto;
  width: 100%;
  line-height: 1.2em;
  padding: 15px 10px;
  background-color: #F2F2F2;
  border: 1px solid #000;
}
input#s:focus, input#s:hover, input#s:active {
  background-color: #fff;
  outline: 0;
  text-decoration: none;
  box-shadow: none;
}

input#searchsubmit {
  display: block;
  margin-top: 20px;
  background-color: #13B5EA;
  color: #fff;
  padding: 5px 37px;
  text-transform: uppercase;
}
input#searchsubmit:hover {
  background-color: #005596;
  border-color: transparent;
}

/* Links */
a {
  color: #157a9b;
  text-decoration: none;
}

a:focus,
a:active,
a:hover {
  text-decoration: underline;
}

/* Assistive text */
.assistive-text {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

#access a.assistive-text:active,
#access a.assistive-text:focus {
  background: #eee;
  border-bottom: 1px solid #ddd;
  color: #157a9b;
  clip: auto !important;
  font-size: 12px;
  position: absolute;
  text-decoration: underline;
  top: 0;
  left: 7.6%;
}

/* Search Form */
#branding #searchform {
  position: absolute;
  top: 3.8em;
  right: 7.6%;
  text-align: right;
  display: none;
}

#branding #searchform div {
  margin: 0;
}

#branding #s {
  float: right;
  -webkit-transition-duration: 400ms;
  -webkit-transition-property: width, background;
  -webkit-transition-timing-function: ease;
  -moz-transition-duration: 400ms;
  -moz-transition-property: width, background;
  -moz-transition-timing-function: ease;
  -o-transition-duration: 400ms;
  -o-transition-property: width, background;
  -o-transition-timing-function: ease;
  width: 72px;
  background-color: #b5e6f5;
}

#branding #s:focus {
  background-color: #f9f9f9;
  width: 196px;
}

#branding #searchsubmit {
  display: none;
}

/* =Content
----------------------------------------------- */
#main_wrapper {
  background: #fff;
  z-index: 1;
  position: relative;
}

#main {
  clear: both;
  margin: 0px auto auto auto;
}

.page-title {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}

.category .page-title {
  font-size: 18px;
  font-style: italic;
}

.page-title a {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  text-transform: none;
}

.hentry:last-child,
.no-results {
  border-bottom: none;
}

.blog .sticky .entry-header .entry-meta {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

.entry-title,
.entry-header .entry-meta {
  padding-right: 76px;
}

.entry-title {
  clear: both;
  font-size: 26px;
  line-height: 1.5em;
  padding-bottom: .3em;
  font-family: Arial, sans-serif;
}

.archive .entry-title {
  font-size: 18px;
}

.entry-title,
.entry-title a {
  color: #157a9b;
  text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus,
.entry-title a:active {
  color: #157a9b;
}

.entry-meta {
  color: #666;
  clear: both;
  font-size: 12px;
  line-height: 18px;
}

.entry-meta {
  display: none;
}

.entry-meta a {
  font-weight: bold;
}

.single-author .entry-meta .by-author {
  display: none;
}

.entry-content,
.entry-summary {
  padding: .25em 0 0;
}

.entry-content h1,
.comment-content h1, .feature-video h1 {
  color: #157a9b;
  font-weight: bold;
  margin: 0 0 .8125em;
}

.entry-content h2,
.comment-content h2, .feature-video h2 {
  color: #157a9b;
  font-weight: bold;
  margin: 0 0 15px;
}

h1 {
  font-size: 25px;
}

/*.entry-content
*/
h2 {
  font-size: 22px;
}

/*
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 2.6em;
}
.single-flowcal_products h3, */
h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: normal;
  letter-spacing: .1em;
}

.single-flowcal_products h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #157a9b;
}

.entry-content table,
.comment-content table {
  border-bottom: 1px solid #ddd;
  margin: 0 0 1.625em;
  width: 100%;
}

.entry-content th,
.comment-content th {
  color: #666;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  text-transform: uppercase;
}

.entry-content td,
.comment-content td {
  border: 1px solid #ddd;
  padding: 6px 10px 6px 0;
}

/* some users group styles */
#main .entry-content .ug_side {
  font-size: 85%;
  background-color: #F0F9FC;
  border: 1px solid #ddd;
  padding: 13px;
}

#main .entry-content .users_group_t td, #main .entry-content table.users_group_t {
  border: none !important;
  vertical-align: top;
}

#main .entry-content .users_group_t th {
  font-weight: bold;
  font-size: 10px;
  color: #333;
  width: 150px;
  vertical-align: top;
}

#main .entry-content .users_group_t th, #main .entry-content .users_group_t td {
  padding: 4px;
}

#main .entry-content .shove_rt {
  margin-left: 45px;
}

.entry-content #s {
  width: 75%;
}

.comment-content ul,
.comment-content ol {
  margin-bottom: 1.625em;
}

.comment-content ul ul,
.comment-content ol ol,
.comment-content ul ol,
.comment-content ol ul {
  margin-bottom: 0;
}

dl.gallery-item {
  margin: 0;
}

.page-link {
  clear: both;
  display: block;
  margin: 0 0 1.625em;
}

.page-link a {
  background: #eee;
  color: #373737;
  margin: 0;
  padding: 2px 3px;
  text-decoration: none;
}

.page-link a:hover {
  background: #888;
  color: #fff;
  font-weight: bold;
}

.page-link span {
  margin-right: 6px;
}

.edit-link {
  text-align: right;
}

.entry-meta {
  margin-bottom: 25px;
}

.entry-meta .edit-link a,
.commentlist .edit-link a {
  background: #eee;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #666;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: 300;
  text-decoration: none;
  padding: 0 8px;
}

.entry-meta .edit-link a:hover,
.commentlist .edit-link a:hover {
  background: #888;
  color: #fff;
}

.entry-content .edit-link {
  clear: both;
  display: block;
}

/* Images */
img[class*="align"],
img[class*="x-image-"] {
  height: auto;
  /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

img.size-full {
  max-width: 100%;
  width: auto;
  /* Prevent stretching of full-size images with height and width attributes in IE8 */
}

.entry-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 1.625em;
}

p img,
.wp-caption {
  margin-top: 0.4em;
}

.wp-caption {
  background: #eee;
  margin-bottom: 1.625em;
  max-width: 96%;
  padding: 9px;
}

.wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 98%;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  color: #666;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 12px;
}

.wp-caption .wp-caption-text {
  margin-bottom: 0.6em;
  padding: 10px 0 5px 40px;
  position: relative;
}

.wp-caption .wp-caption-text:before {
  color: #666;
  content: '\2014';
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  margin-right: 5px;
  position: absolute;
  left: 10px;
  top: 7px;
}

#content .gallery {
  margin: 0 auto 1.625em;
}

#content .gallery a img {
  border: none;
}

img#wpstats {
  display: block;
  margin: 0 auto 1.625em;
}

#content .gallery-columns-4 .gallery-item {
  width: 23%;
  padding-right: 2%;
}

#content .gallery-columns-4 .gallery-item img {
  width: 100%;
  height: auto;
}

/* Image borders */
/* 2/9/12 - Taking out the border from the content area images */
/*
img[class*="align"],
img[class*="wp-image-"],
*/
#content .gallery .gallery-icon img, #content .img_border {
  /* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
  border: 1px solid #ddd;
}

.wp-caption img {
  border-color: #eee;
}

a:focus img[class*="align"],
a:hover img[class*="align"],
a:active img[class*="align"],
a:focus img[class*="wp-image-"],
a:hover img[class*="wp-image-"],
a:active img[class*="wp-image-"],
#content .gallery .gallery-icon a:focus img,
#content .gallery .gallery-icon a:hover img,
#content .gallery .gallery-icon a:active img {
  /* Add some useful style to those fancy borders for linked images ... */
  background: #eee;
  border-color: #bbb;
}

.wp-caption a:focus img,
.wp-caption a:active img,
.wp-caption a:hover img {
  /* ... including captioned images! */
  background: #fff;
  border-color: #ddd;
}

/* Password Protected Posts */
.post-password-required .entry-header .comments-link {
  margin: 1.625em 0 0;
}

.post-password-required input[type=password] {
  margin: 0.8125em 0;
}

.post-password-required input[type=password]:focus {
  background: #f7f7f7;
}

/* Author Info */
#author-info {
  font-size: 12px;
  overflow: hidden;
}

.singular #author-info {
  background: #f9f9f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 20px 10%;
  margin-top: 15px;
}

.archive #author-info {
  border-bottom: 1px solid #ddd;
  margin: 0 0 2.2em;
  padding: 0 0 2.2em;
}

#author-avatar {
  float: left;
  margin-right: -78px;
}

#author-avatar img {
  background: #fff;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px #bbb;
  -moz-box-shadow: 0 1px 2px #bbb;
  box-shadow: 0 1px 2px #bbb;
  padding: 3px;
}

#author-description {
  float: left;
  margin-left: 108px;
}

#author-description h2 {
  color: #000;
  font-size: 15px;
  font-weight: bold;
  margin: 5px 0 10px;
}

/* Comments link */
.entry-header .comments-link a {
  background: #eee url(images/comment-bubble.png) no-repeat;
  color: #666;
  font-size: 13px;
  font-weight: normal;
  line-height: 35px;
  overflow: hidden;
  padding: 0 0 0;
  position: absolute;
  top: 1.5em;
  right: 0;
  text-align: center;
  text-decoration: none;
  width: 43px;
  height: 36px;
}

.entry-header .comments-link a:hover,
.entry-header .comments-link a:focus,
.entry-header .comments-link a:active {
  background-color: #157a9b;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
}

.entry-header .comments-link .leave-reply {
  visibility: hidden;
}

/*
Post Formats Headings
To hide the headings, display: none the ".entry-header .entry-format" selector,
and remove the padding rules below.
*/
.entry-header .entry-format {
  color: #666;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  position: absolute;
  text-transform: uppercase;
  top: -5px;
}

.entry-header hgroup .entry-title {
  padding-top: 15px;
}

article.format-aside .entry-content,
article.format-link .entry-content,
article.format-status .entry-content {
  padding: 20px 0 0;
}

.recent-posts .entry-header .entry-format {
  display: none;
}

.recent-posts .entry-header hgroup .entry-title {
  padding-top: 0;
}

blockquote.pull {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.6125em;
  margin: 0 0 1.625em;
  text-align: center;
}

.singular blockquote.pull {
  margin: 0 -22.25% 1.625em;
}

.pull.alignleft {
  margin: 0 1.625em 0 0;
  text-align: right;
  width: 33%;
}

.singular .pull.alignleft {
  margin: 0 1.625em 0 -22.25%;
}

.pull.alignright {
  margin: 0 0 0 1.625em;
  text-align: left;
  width: 33%;
}

.singular .pull.alignright {
  margin: 0 -22.25% 0 1.625em;
}

.singular blockquote.pull.alignleft,
.singular blockquote.pull.alignright {
  width: 33%;
}

/* =Aside
----------------------------------------------- */
.format-aside .entry-title,
.format-aside .entry-header .comments-link {
  display: none;
}

.singular .format-aside .entry-title {
  display: block;
}

.format-aside .entry-content {
  padding: 0;
}

.singular .format-aside .entry-content {
  padding: 1.625em 0 0;
}

/* =Link
----------------------------------------------- */
.format-link .entry-title,
.format-link .entry-header .comments-link {
  display: none;
}

.singular .format-link .entry-title {
  display: block;
}

.format-link .entry-content {
  padding: 0;
}

.singular .format-link .entry-content {
  padding: 1.625em 0 0;
}

/* =Gallery
----------------------------------------------- */
.format-gallery .gallery-thumb {
  float: left;
  display: block;
  margin: .375em 1.625em 0 0;
}

/* =Status
----------------------------------------------- */
.format-status .entry-title,
.format-status .entry-header .comments-link {
  display: none;
}

.singular .format-status .entry-title {
  display: block;
}

.format-status .entry-content {
  padding: 0;
}

.singular .format-status .entry-content {
  padding: 1.625em 0 0;
}

.format-status img.avatar {
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px #ccc;
  -moz-box-shadow: 0 1px 2px #ccc;
  box-shadow: 0 1px 2px #ccc;
  float: left;
  margin: 4px 10px 2px 0;
  padding: 0;
}

/* =Quote
----------------------------------------------- */
.format-quote blockquote {
  color: #555;
  font-size: 17px;
  margin: 0;
}

/* =Image
----------------------------------------------- */
.indexed.format-image .entry-header {
  min-height: 61px;
  /* Prevent the comment icon from colliding with the image when there is no title */
}

.indexed.format-image .entry-content {
  padding-top: 0.5em;
}

.indexed.format-image p,
.indexed.format-image p img {
  margin-bottom: 0;
}

.indexed.format-image footer.entry-meta {
  background: #ddd;
  margin-top: -7px;
  padding: 20px 30px;
  overflow: hidden;
}

.indexed.format-image div.entry-meta {
  display: inline-block;
  float: left;
  width: 35%;
}

.indexed.format-image div.entry-meta + div.entry-meta {
  float: none;
  width: 65%;
}

.indexed.format-image .entry-meta span.cat-links,
.indexed.format-image .entry-meta span.tag-links,
.indexed.format-image .entry-meta span.comments-link {
  display: block;
}

.indexed.format-image footer.entry-meta a {
  color: #444;
}

.indexed.format-image footer.entry-meta a:hover {
  color: #fff;
}

#content .indexed.format-image img {
  border: none;
  max-width: 100%;
  padding: 0;
}

.indexed.format-image .wp-caption {
  background: #111;
  margin-bottom: 0;
  max-width: 96%;
  padding: 11px;
}

.indexed.format-image .wp-caption .wp-caption-text {
  color: #ddd;
}

.indexed.format-image .wp-caption .wp-caption-text:before {
  color: #444;
}

.indexed.format-image a:hover img {
  opacity: 0.8;
}

/* =error404
----------------------------------------------- */
.error404 #main #searchform {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-width: 1px 0;
  margin: 0 0 1.625em;
  overflow: hidden;
  padding: 1.625em 8.9%;
}

.error404 #main #s {
  width: 95%;
}

.error404 #main .widget {
  clear: none;
  float: left;
  margin-right: 3.7%;
  width: 30.85%;
}

.error404 #main .widget_archive {
  margin-right: 0;
}

.error404 #main .widget_tag_cloud {
  float: none;
  margin-right: 0;
  width: 100%;
}

.error404 .widgettitle {
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  text-transform: uppercase;
}

/* Recent Posts */
section.recent-posts {
  padding: 0 0 1.625em;
}

section.recent-posts .hentry {
  border: none;
  margin: 0;
}

section.recent-posts .other-recent-posts {
  border-bottom: 1px solid #ddd;
  list-style: none;
  margin: 0;
}

section.recent-posts .other-recent-posts li {
  padding: 0.3125em 0;
  position: relative;
}

section.recent-posts .other-recent-posts .entry-title {
  border-top: 1px solid #ddd;
  font-size: 17px;
}

section.recent-posts .other-recent-posts a[rel="bookmark"] {
  color: #373737;
  float: left;
  max-width: 84%;
}

section.recent-posts .other-recent-posts a[rel="bookmark"]:after {
  content: '-';
  color: transparent;
  font-size: 11px;
}

section.recent-posts .other-recent-posts .comments-link a,
section.recent-posts .other-recent-posts .comments-link > span {
  border-bottom: 2px solid #999;
  bottom: -2px;
  color: #444;
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.76333em;
  padding: 0.3125em 0 0.3125em 1em;
  position: absolute;
  right: 0;
  text-align: right;
  text-transform: uppercase;
  z-index: 1;
}

section.recent-posts .other-recent-posts .comments-link > span {
  border-color: #bbb;
  color: #888;
}

section.recent-posts .other-recent-posts .comments-link a:hover {
  color: #157a9b;
  border-color: #157a9b;
}

section.recent-posts .other-recent-posts li:after {
  clear: both;
  content: '.';
  display: block;
  height: 0;
  visibility: hidden;
}

/* =Attachments
----------------------------------------------- */
.image-attachment div.attachment {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-width: 1px 0;
  margin: 0 -8.9% 1.625em;
  overflow: hidden;
  padding: 1.625em 1.625em 0;
  text-align: center;
}

.image-attachment div.attachment img {
  display: block;
  height: auto;
  margin: 0 auto 1.625em;
  max-width: 100%;
}

.image-attachment div.attachment a img {
  border-color: #f9f9f9;
}

.image-attachment div.attachment a:focus img,
.image-attachment div.attachment a:hover img,
.image-attachment div.attachment a:active img {
  border-color: #ddd;
  background: #fff;
}

.image-attachment .entry-caption p {
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 2.6em;
  margin: 0 0 2.6em;
  text-transform: uppercase;
}

/* =Navigation
-------------------------------------------------------------- */
#content nav {
  clear: both;
  overflow: hidden;
  padding: 0 0 1.625em;
}

#content nav a {
  font-size: 12px;
  font-weight: bold;
  line-height: 2.2em;
}

#nav-above {
  padding: 0 0 1.625em;
}

#nav-above {
  display: none;
}

.paged #nav-above {
  display: block;
}

.nav-previous {
  float: left;
  width: 50%;
  margin: 0;
}

.nav-next {
  float: right;
  text-align: right;
  width: 50%;
  margin: 0;
  padding-right: 30px;
}

#content nav .meta-nav {
  font-weight: normal;
}

/* Singular navigation */
#nav-single {
  float: right;
  position: relative;
  top: -0.3em;
  text-align: right;
  width: 100%;
  z-index: 1;
  margin-bottom: 20px;
}

#nav-single .nav-previous,
#nav-single .nav-next {
  float: none;
  width: auto;
}

#nav-single .nav-next {
  padding-left: .5em;
}

/* =Widgets
----------------------------------------------- */
.widget-area {
  font-size: 12px;
}

.widget {
  clear: both;
  margin: 0 15px 2.2em 15px;
}

.widget-title {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.widget ul {
  font-size: 15px;
  margin: 0;
}

.widget ul ul {
  margin-left: 1.5em;
}

.widget ul li {
  color: #777;
  font-size: 13px;
}

.widget a {
  font-weight: bold;
  text-decoration: none;
}

#secondary .wdiget a:hover {
  text-decoration: none;
  color: #1a92bb;
}

.widget a:hover,
.widget a:focus,
.widget a:active {
  text-decoration: underline;
}

/* Search Widget */
.widget_search form {
  margin: 0 0 1.625em;
}

.widget_search #s {
  width: 77%;
}

.widget_search #searchsubmit {
  background: #ddd;
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
  box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.09);
  color: #888;
  font-size: 13px;
  line-height: 25px;
  position: relative;
  top: -2px;
}

.widget_search #searchsubmit:active {
  background: #157a9b;
  border-color: #0861a5;
  -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.1);
  color: #bfddf3;
}

/* Ephemera Widget */
section.ephemera ol,
.widget_flowcal_ephemera ol {
  list-style: square;
  margin: 5px 0 0;
}

.widget_flowcal_ephemera .widget-entry-title {
  font-size: 15px;
  font-weight: bold;
  padding: 0;
}

.widget_flowcal_ephemera .comments-link a,
.widget_flowcal_ephemera .comments-link > span {
  color: #666;
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.76333em;
  text-transform: uppercase;
}

section.ephemera .entry-title a span {
  color: #29628d;
}

/* Twitter */
.widget_twitter li {
  list-style-type: none;
  margin-bottom: 14px;
}

.widget_twitter .timesince {
  display: block;
  font-size: 11px;
  margin-right: -10px;
  text-align: right;
}

/* Widget Image */
.widget_image img {
  height: auto;
  max-width: 100%;
}

/* Calendar Widget */
.widget_calendar #wp-calendar {
  color: #555;
  width: 95%;
  text-align: center;
}

.widget_calendar #wp-calendar caption,
.widget_calendar #wp-calendar td,
.widget_calendar #wp-calendar th {
  text-align: center;
}

.widget_calendar #wp-calendar caption {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 0 3px 0;
  text-transform: uppercase;
}

.widget_calendar #wp-calendar th {
  background: #f4f4f4;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

.widget_calendar #wp-calendar tfoot td {
  background: #f4f4f4;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* =Comments
----------------------------------------------- */
#comments {
  clear: both;
}

#comments-title {
  color: #666;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.6em;
  padding: 0 0 2.6em;
  text-transform: uppercase;
}

.nopassword,
.nocomments {
  color: #aaa;
  font-size: 24px;
  font-weight: 100;
  margin: 26px 0;
  text-align: center;
  display: none;
}

/*Hide no comments from appropriate categories*/
.single-flowcal_products .nocomments {
  display: none;
}

.commentlist {
  list-style: none;
  margin: 0 auto;
  width: 68.9%;
}

.content .commentlist,
.page-template-sidebar-page-php .commentlist {
  width: 100%;
  /* reset the width for the one-column and sidebar page layout */
}

.commentlist > li.comment {
  background: #f6f6f6;
  border: 1px solid #ddd;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0 0 1.625em;
  padding: 1.625em;
  position: relative;
}

.commentlist .pingback {
  margin: 0 0 1.625em;
  padding: 0 1.625em;
}

.commentlist .children {
  list-style: none;
  margin: 0;
}

.commentlist .children li.comment {
  background: #fff;
  border-left: 1px solid #ddd;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  margin: 1.625em 0 0;
  padding: 1.625em;
  position: relative;
}

.commentlist .children li.comment .fn {
  display: block;
}

.comment-meta .fn {
  font-style: normal;
}

.comment-meta {
  color: #666;
  font-size: 12px;
  line-height: 2.2em;
}

.commentlist .children li.comment .comment-meta {
  line-height: 1.625em;
  margin-left: 50px;
}

.commentlist .children li.comment .comment-content {
  margin: 1.625em 0 0;
}

.comment-meta a {
  font-weight: bold;
}

.commentlist .avatar {
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px #ccc;
  -moz-box-shadow: 0 1px 2px #ccc;
  box-shadow: 0 1px 2px #ccc;
  left: -102px;
  padding: 0;
  position: absolute;
  top: 0;
}

.commentlist > li:before {
  content: url(images/comment-arrow.png);
  left: -21px;
  position: absolute;
}

.commentlist > li.pingback:before {
  content: '';
}

.commentlist .children .avatar {
  background: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  left: 2.2em;
  padding: 0;
  top: 2.2em;
}

a.comment-reply-link {
  background: #eee;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #666;
  display: inline-block;
  font-size: 12px;
  padding: 0 8px;
  text-decoration: none;
}

a.comment-reply-link:hover,
a.comment-reply-link:focus,
a.comment-reply-link:active {
  background: #888;
  color: #fff;
}

a.comment-reply-link > span {
  display: inline-block;
  position: relative;
  top: -1px;
}

/* Post author highlighting */
.commentlist > li.bypostauthor {
  background: #ddd;
  border-color: #d3d3d3;
}

.commentlist > li.bypostauthor .comment-meta {
  color: #575757;
}

.commentlist > li.bypostauthor:before {
  content: url(images/comment-arrow-bypostauthor.png);
}

/* Post Author threaded comments */
.commentlist .children > li.bypostauthor {
  background: #ddd;
  border-color: #d3d3d3;
}

/* sidebar-page.php comments */
/* Make sure we have room for our comment avatars */
.page-template-sidebar-page-php .commentlist > li.comment,
.page-template-sidebar-page-php.commentlist .pingback {
  margin-left: 102px;
  width: auto;
}

/* And a full-width comment form */
.page-template-sidebar-page-php #respond {
  width: auto;
}

#secondary #advanced-recent-posts-2 ul {
  margin-bottom: 7px;
}

/* Comment Form */
#respond {
  background: #ddd;
  border: 1px solid #d3d3d3;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin: 0 auto 1.625em;
  padding: 1.625em;
  position: relative;
  width: 68.9%;
}

#respond input[type="text"],
#respond textarea {
  background: #fff;
  border: 4px solid #eee;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 3px rgba(204, 204, 204, 0.95);
  -moz-box-shadow: inset 0 1px 3px rgba(204, 204, 204, 0.95);
  box-shadow: inset 0 1px 3px rgba(204, 204, 204, 0.95);
  position: relative;
  padding: 10px;
  text-indent: 80px;
}

#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url,
#respond .comment-form-comment {
  position: relative;
}

#respond .comment-form-author label,
#respond .comment-form-email label,
#respond .comment-form-url label,
#respond .comment-form-comment label {
  background: #eee;
  -webkit-box-shadow: 1px 2px 2px rgba(204, 204, 204, 0.8);
  -moz-box-shadow: 1px 2px 2px rgba(204, 204, 204, 0.8);
  box-shadow: 1px 2px 2px rgba(204, 204, 204, 0.8);
  color: #555;
  display: inline-block;
  font-size: 13px;
  left: 4px;
  min-width: 60px;
  padding: 4px 10px;
  position: relative;
  top: 40px;
  z-index: 1;
}

#respond input[type="text"]:focus,
#respond textarea:focus {
  text-indent: 0;
  z-index: 1;
}

#respond textarea {
  resize: vertical;
  width: 95%;
}

#respond .comment-form-author .required,
#respond .comment-form-email .required {
  color: #bd3500;
  font-size: 22px;
  font-weight: bold;
  left: 75%;
  position: absolute;
  top: 45px;
  z-index: 1;
}

#respond .comment-notes,
#respond .logged-in-as {
  font-size: 13px;
}

#respond p {
  margin: 10px 0;
}

#respond .form-submit {
  float: right;
  margin: -20px 0 10px;
}

#respond input#submit {
  background: #222;
  border: none;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
  color: #eee;
  cursor: pointer;
  font-size: 15px;
  margin: 20px 0;
  padding: 5px 42px 5px 22px;
  position: relative;
  left: 30px;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}

#respond input#submit:active {
  background: #157a9b;
  color: #bfddf3;
}

#respond #cancel-comment-reply-link {
  color: #666;
  margin-left: 10px;
  text-decoration: none;
}

#respond .logged-in-as a:hover,
#respond #cancel-comment-reply-link:hover {
  text-decoration: underline;
}

.commentlist #respond {
  margin: 1.625em 0 0;
  width: auto;
}

#reply-title {
  color: #373737;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

#cancel-comment-reply-link {
  color: #888;
  display: block;
  font-size: 10px;
  font-weight: normal;
  line-height: 2.2em;
  letter-spacing: 0.05em;
  position: absolute;
  right: 1.625em;
  text-decoration: none;
  text-transform: uppercase;
  top: 1.1em;
}

#cancel-comment-reply-link:focus,
#cancel-comment-reply-link:active,
#cancel-comment-reply-link:hover {
  color: #ff4b33;
}

#respond label {
  line-height: 2.2em;
}

#respond input[type=text] {
  display: block;
  height: 24px;
  width: 75%;
}

#respond p {
  font-size: 12px;
}

p.comment-form-comment {
  margin: 0;
}

.form-allowed-tags {
  display: none;
}

/*Other Content Styles*/
.button_link, .advanced_recent_posts_widget .button_link, body .eventsListWidget .dig-in a, body .Cart66ButtonPrimary, body .Cart66ButtonSecondary, body #content .Cart66ButtonPrimary, body #content .Cart66ButtonSecondary, body.Cart66CartButton .purAddToCart {
  color: #fef4e9;
  border-top: 1px solid #454545;
  background: #597288;
  background: -webkit-gradient(linear, left top, left bottom, from(#42b4e6), to(#597288));
  background: -moz-linear-gradient(top, #42b4e6, #597288);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#42b4e6', endColorstr='#597288');
  /* original */
  /*background: -webkit-gradient(linear,left top,left bottom,from(#00aeed),to(#0087b8));
  background: -moz-linear-gradient(top,#00aeed,#0087b8);*/
  padding: 5px 10px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: black 0 1px 0;
  -moz-box-shadow: black 0 1px 0;
  box-shadow: black 0 1px 0;
  text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
  color: white;
  font-size: 12px;
  font-family: Arial,Sans-Serif;
  text-decoration: none;
  vertical-align: middle;
}

body #viewCartTable .Cart66ButtonSecondary, body .Cart66CompleteOrderButton {
  padding-top: 0px !important;
}

.Cart66CompleteOrderButton, .Cart66CheckoutButton, .Cart66ButtonPrimary, .Cart66CartContinueShopping {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}

#emptyCartMsg a.Cart66ButtonSecondary {
  line-height: 2em;
  height: auto;
}

.phorm2.shipping {
  margin-bottom: 25px;
}

.phorm2 li.checkbox input[type=checkbox] {
  position: static;
  margin-left: 0px;
  float: left;
  width: 10%;
  margin: 0px;
  padding: 0px;
}

#contactPaymentInfo li.checkbox label {
  float: left;
  width: 70%;
  margin: 0px 0px;
  padding: 0px;
  text-align: left;
}

#contactPaymentInfo li.checkbox {
  clear: both;
}

@media screen and (max-width: 480px) {
  body #viewCartTable td:first-child {
    word-break: break-word;
    /* To allow for the table to show properly on mobile*/
  }

  body #viewCartTable td {
    padding-left: 0px;
    padding-right: 0px;
  }

  body #viewCartTable th {
    padding-left: 0px;
    padding-right: 0px;
  }

  .fab8_thumb {
    white-space: inherit;
  }
}
.button_link:hover, .advanced_recent_posts_widget .button_link:hover, body .eventsListWidget .dig-in a:hover, .button:hover,
body .Cart66ButtonPrimary:hover,
body .Cart66ButtonSecondary:hover,
body #content .Cart66ButtonPrimary:hover,
body #content .Cart66ButtonSecondary:hover,
body.Cart66CartButton .purAddToCart:hover {
  border-top-color: #28597a;
  background: #28597a;
  color: #fff;
  text-decoration: none;
}

a.rss {
  padding-left: 20px;
  background: url(images/feed-icon-14x14.png) no-repeat center left;
}

/*Contact form 7*/
.wpcf7-checkbox .wpcf7-list-item {
  display: block;
}

/*Home page*/
#home-slider
#home_feature-1 {
  border-bottom: 1px solid #ccc;
  /* margin-top: -20px; */
}

#home_feature-1 .widget {
  margin: 0px;
}

.home #main {
  padding-top: 0px;
  margin-top: 0px;
}

#page-content {
  padding: 15px;
}

body .advanced_recent_posts_widget .post-title {
  font-size: 13px;
  font-weight: bold;
}

body .advanced_recent_posts_widget ul li {
  border-bottom: 0px;
}

/*Product Roundabout*/
#home_feature-2 {
  position: relative;
}

#product_roundabout_container {
  width: 60%;
  margin-top: 100px;
  margin-left: 100px;
  position: relative;
  height: 200px;
  left: -9999px;
}

#product_roundabout li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

#product_roundabout li img {
  border: 2px solid #999;
  padding: 4px;
  background-color: #fff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

#product_thumbnails {
  clear: both;
  position: absolute;
  bottom: 0px;
  left: 115px;
}

#product_thumbnails li {
  display: block;
  float: left;
  margin-right: 25px;
  cursor: pointer;
}

#product_descriptions {
  padding: 25px 25px 25px 25px;
  min-height: 320px;
  margin-left: 0px;
}

#product_descriptions li {
  display: none;
  text-align: center;
  list-style-type: none;
}

#product_descriptions li:first-child {
  display: block;
}

#product_descriptions li a.button_link {
  font-size: 17px;
  margin-top: 15px;
}

#product_descriptions .descrip_text {
  margin-bottom: 25px;
}

.roundabout-movable-item {
  opacity: 1 !important;
}

/* 
 *  Tribe events widget
 */
.tribe-events-list-widget .duration {
  font-weight: normal;
}

.tribe-events-list-widget ol {
  margin-left: 0px;
}

.tribe-events-list-widget-events .entry-title {
  font-size: inherit;
  margin-bottom: 0px;
}

.tribe-events-list-widget ol li {
  margin-bottom: .75em;
}

.tribe-events-widget-link a, ul.tribe-events-sub-nav a {
  font-size: 12px !important;
  font-weight: 700;
}

#tribe-events-footer .tribe-events-sub-nav, #tribe-events-header .tribe-events-sub-nav {
  margin-top: 15px !important;
}

/**********
*Products pages
*
***************/
/*** Product Listings Page  ***/
.product_listing {
  clear: both;
  margin-bottom: 45px;
  background: url(images/faded_border.png) no-repeat bottom center;
  padding-bottom: 25px;
}

.product_listing:first-child {
  margin-top: 35px;
}

.product_listing .product_screenshot {
  margin-bottom: 25px;
}

.product_listing .product_logo {
  display: block;
}

.product_listing p {
  margin: 15px 0px;
}

.product_listing .button_link {
  float: right;
  margin-right: 25px;
}

/*
.single-flowcal_products #secondary {
	font-size: 12px;
}
*/
.single-flowcal_products #product_thumbs {
  float: left;
  width: 120px;
  list-style-type: none;
  margin-left: 0px;
}

.single-flowcal_products #main_images {
  list-style-type: none;
  float: left;
  width: 475px;
  height: 300px;
  margin-left: 0px;
  margin-right: 15px;
  max-width: 100%;
}

.single-flowcal_products #main_images iframe {
  /*margin-top: 25px;*/
}

.single-flowcal_products #main_images li {
  display: none;
}

.single-flowcal_products #main_images li:first-child {
  display: block;
}

.single-flowcal_products #product_thumbs img {
  display: block;
  margin-bottom: 15px;
  cursor: pointer;
}

/*Shortcodes */
body .su-spoiler-style-1 {
  margin-bottom: 0px;
}

body.page-id-49 .su-spoiler-style-1 + p {
  display: none;
}

/*Contact Form*/
.wpcf7 p {
  margin-bottom: 15px;
}

.wpcf7 textarea {
  width: 90%;
  height: 75px;
}

body span.wpcf7-not-valid-tip, body div.wpcf7-validation-errors {
  position: static;
  background: #fccdd5;
  color: #ed0d0e;
  font-weight: bold;
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: none;
  padding: 4px 8px;
  width: 200px;
  margin-left: 10px;
}

.wpcf7 .required {
  color: #ed0d0e;
}

body div.wpcf7-validation-errors {
  width: auto;
  border: none;
}

.su-box, .su-box-content {
  background: #eee !important;
}

.su-box-title {
  background: #ccc !important;
  border-bottom: 1px solid #ccc;
  border-top: 2px solid #ccc !important;
  text-shadow: none !important;
  color: #157a9b !important;
  font-size: 20px !important;
  padding: 6px 15px !important;
}

/* Testimonials */
#secondary .testimonial {
  background: url(images/quote_open.png) no-repeat left top;
  clear: both;
  margin-bottom: 15px;
}

#secondary .testimonial_excerpt {
  background: url(images/quote_close.png) no-repeat bottom right;
  padding: 0px 10px 0px 25px;
}

.testimonial_excerpt p {
  margin: 0px;
  padding: 0px;
}

#secondary .testimonial img {
  float: right;
  margin-top: 4px;
  margin-right: 25px;
}

/* FAB 8 */
#fab8 {
  margin: 0 -28px;
}

/* Old Fab* setting to make logo appear on the left - uncomment to restore when changing back */
#FAB8LogoBlock {
  height: 410px;
  width: 250px;
  margin: 0px 20px 0px 18px;
  background-image: url("images/fab8/FAB8LogoBlock.png");
  background-repeat: no-repeat;
  /* float: left; */
  position: relative;
  z-index: 20;
  max-width: 100%;
}

/* New and Temporary Fab8 photo setting with Gayle in place of logo */
/*
#FAB8LogoBlock {
	height: 410px;
	width: 250px;
	margin: 0px 20px 0px 6px;
	background-image: url('http://flowcaltesting.com/wp-content/uploads/2012/02/Gayle-Westbrook.png');
	background-repeat: no-repeat;
	float: left;
	position: relative;
	z-index: 20;
}
*/
/* End of Changes */
.fab8_thumb {
  /*float: left;*/
  height: 225px;
  /*
  width: 170px;
  */
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}

.fab8_thumb .img {
  height: 165px;
  width: 115px;
  margin: auto;
  text-align: center;
  background-repeat: no-repeat;
  background-position: right;
  padding-left: 15px;
}

#fab8 #Jarred {
  background-image: url(images/fab8/Jarred.png);
}

#fab8 #Fiorini {
  background-image: url(images/fab8/Fiorini.png);
}

#fab8 #Sargent {
  background-image: url(images/fab8/Sargent.png);
}

#fab8 #Westbrook {
  background-image: url(images/fab8/Westbrook.png);
}

#fab8 #Workmon {
  background-image: url(images/fab8/Workmon.png);
}

#fab8 #Merkins {
  background-image: url(images/fab8/Merkins.png);
}

#fab8 #Whitman {
  background-image: url(images/fab8/Whitman.png);
}

#fab8 #Gatewood {
  background-image: url(images/fab8/Gatewood.png);
}

#fab8 .fab8-row {
  clear: both;
  margin-bottom: 25px;
}

@media screen and (min-width: 992px) {
  #fab8 .rows {
    margin-left: -40px;
  }

  #fab8 .rows .row {
    padding-bottom: 15px;
  }
}
.fab8adjust {
  line-height: 15px !important;
}

#strip {
  position: relative;
  z-index: 20;
  height: 3px;
  width: 100%;
  top: 223px;
  background-color: #1ab7ea;
}

/**Events**/
#tribe-events-calendar-header p {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}



#tribe-events-loop {
  margin-top: 25px;
}

body #tribe-events-loop h2.entry-title, body #tribe-events-loop h4.event-day {
  margin-bottom: 15px !important;
}

body #tribe-events-loop .tribe-events-event {
  border-top: 1px solid #ccc;
}

a.sign_up {
  display: block;
  width: 100px;
  text-align: center;
  clear: both;
  padding: 3px 0;
  margin-top: 15px;
  font-weight: bold;
}

body #tribe-events-loop .tribe-events-event.hentry {
  padding-top: 0px !important;
}

body.single-tribe_events .navlink {
  display: none;
}

.tax-tribe_events_cat h3.gform_title,
.single-tribe_events h3.gform_title,
.tax-tribe_events .cat_training span.gform_description,
.single-tribe_events h3.gform_description {
  display: none;
}

┬á┬á┬á┬á┬á
dt.event-label.event-label-updated, dd.event-meta.event-meta-updated {
  display: none;
}

#tribe-events-single-section.training dl {
  margin: 0px;
}

#tribe-events-single-section.training .event-label {
  width: 108px;
  float: left;
  font-size: 12px;
  clear: left;
}

/*Gravity Forms*/
/*General*/
body .gform_wrapper input[type="text"], body .gform_wrapper input[type="url"], body .gform_wrapper input[type="email"], body .gform_wrapper input[type="tel"], body .gform_wrapper input[type="number"], body .gform_wrapper input[type="password"] {
  outline-style: none;
  font-size: 13px;
  font-family: inherit;
  padding: 3px 4px 3px 4px;
  letter-spacing: normal;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border: 1px solid #ccc;
  height: 20px;
}

body .gform_wrapper .ginput_complex label, body .gform_wrapper .gfield_time_hour label, body .gform_wrapper .gfield_time_minute label, body .gform_wrapper .gfield_date_month label, body .gform_wrapper .gfield_date_day label, body .gform_wrapper .gfield_date_year label, body .gform_wrapper .instruction {
  display: block;
  margin: 3px 0;
  font-size: 13px;
  letter-spacing: 0.5pt;
}

body .gform_wrapper .gfield_required {
  color: #C60000;
  margin-left: 4px;
  font-size: 16px;
}

.gform_wrapper .gfield_html.gfield_no_follows_desc {
  margin-top: 10px;
  margin-bottom: 10px;
}

.gchoice_18_8 {
  clear: left;
}

.gform_wrapper input:focus + label {
  font-weight: normal !important;
}

/*
 .gchoice_18_8, .gchoice_18_9, .gchoice_18_10, .gchoice_18_11, .gchoice_18_12     {
	margin-top: 15px !important;
}

body .gform_wrapper .gform_heading h3.gform_title {
  display: none !important;
}

*/
/*Errors*/
body .gform_wrapper li.gfield.gfield_error, body .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: #FFDFDF;
  margin-bottom: 6px !important;
  padding: 6px 10px 4px 10px !important;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: none;
}

body .gform_wrapper li.gfield.gfield_error .gfield_description {
  color: #ED0D0E;
  font-size: 12px;
  font-weight: bold;
}

body .gform_wrapper .gfield_error .gfield_label {
  color: #ED0D0E;
}

body .gform_wrapper .button {
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  /* padding: 3px 15px; */
  padding: 0 1em;
  border: 1px solid #454545;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  color: white;
}

body .Cart66ButtonPrimary, .Cart66ButtonSecondary, #content .Cart66ButtonPrimary,
#content .Cart66ButtonSecondary, .Cart66CartButton .purAddToCart {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
  padding: 0 1em;
  border: 1px solid #454545;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  background-color: #597288;
  color: #fff;
}

body #Cart66CartForm .Cart66ApplyCouponButton {
  margin-top: 10px;
}

.page-id-745 #Cart66InvoiceButton, .page-id-745 #Cart66CheckoutButton {
  margin-bottom: 5px;
  text-align: center;
}

#invoiceShopping {
  float: right;
  clear: right;
}

body .gform_wrapper .button:hover {
  border-color: #597288;
  cursor: pointer;
}

body .gform_wrapper div.charleft {
  display: none;
}

body .gform_wrapper textarea {
  font-size: 13px;
}

/*Specific Form Styling*/
#gform_wrapper_2 {
  width: 70%;
}

#gform_wrapper_2 .gf_progressbar {
  width: 40%;
}

.gform_wrapper .ginput_price {
  display: none;
}

#gform_5 #field_5_47 {
  margin: 25px 0;
  padding: 25px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

#gform_5 .ginput_complex label {
  margin-bottom: 15px;
}

#gform_5 #field_5_45 {
  margin-bottom: 25px;
}

#gform_5 .gchoice_18_12 {
  margin-top: 15px;
}

#gform_5 h3 {
  margin: 25px 0 10px 0;
  font-weight: bold;
  font-size: 110%;
}

#gform_5 .gform_heading {
  margin-bottom: 45px;
}

#gform_5 select.small {
  width: 12%;
}

#gform_5 ul li.gfield.fl {
  float: left;
  clear: none;
}

#gform_5 #field_5_49 {
  width: 35%;
  padding-right: 5%;
}

#gform_5 #field_5_23 {
  width: 60%;
}

.gform_wrapper .subscription-text {
  font-weight: normal;
}

input#input_113_76 {
  height: 23px !important;
}

.support-total, div.product-total {
  color: #13B5EA;
  font-family: 'Kiro-Bold';
  display: block;
  margin-top: .5em;
}

h3.product-total {
  color: #157A9B;
}

h3.product-total span {
  font-size: .8em;
  letter-spacing: normal;
}

body .gform_wrapper .gf_step span.gf_step_number {
  font-family: Tahoma, Arial, sans-serif;
  margin-right: 3px;
}

body .gform_wrapper .gf_step {
  margin-right: 25px;
}

.gform_wrapper ul.gfield_radio li input[type=radio] {
  margin-left: 2px;
}

/* for the Users Group */
#breakoutsessions {
  float: left;
  width: 670px;
  margin: 0px 0px 0px 20px;
  padding: 0px;
}

#sessionsForm {
  margin: 0px 0px 50px;
  padding: 0px;
}

/**************BREAKOUT SESSIONS STYLES ****************************/
/*changed to classes*/
.breakoutsessions {
  float: left;
  width: 715px;
  margin: 0px 0px 0px 20px;
  padding: 0px;
}

table.sessionslist {
  width: 100%;
  background: #F0F9FC url(../images/greySymbol.gif) no-repeat center bottom;
  border: 1px solid #333333;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table.sessionslist td.col_1 {
  text-align: right;
}

.sessionslist thead {
  font-size: 15px;
  color: #FFFFFF;
  /*text-align: left;*/
  font-weight: bold;
}

.sessionslist thead td {
  padding: 10px 30px;
  background: #666666;
}

table.sessionslist tr.breakout_sessions_row {
  background: #9ec0d8;
}

table.sessionslist tr.breakout_sessions_row td {
  color: #333;
  padding: 7px;
}

table.sessionslist tr.breakout_sessions_row td.breakout_sesh_lg {
  font-size: 13px;
}

.sessionslist td {
  border: 1px solid #999999;
  border-collapse: collapse;
}

.sessionslist tbody tr {
  background: #F0F9FC;
}

.sessionslist tbody tr:hover {
  background: #B6D6ED;
}

.sessionslist tbody td {
  font-size: 11px;
  color: #000;
  /*text-align: left;*/
  padding: 7px;
  vertical-align: bottom;
}

.scheduleHeader {
  font-weight: bold;
  text-align: center !important;
}

#breakoutsessions {
  float: left;
  width: 670px;
  margin: 0px 0px 0px 20px;
  padding: 0px;
}

/*Accordions*/
body .su-spoiler-style-2 .su-spoiler-title {
  background-color: #fff;
}

/*Cart 66*/
body #Cart66CartForm .haveCoupon, body #Cart66CartForm .promoMessage {
  margin-bottom: 0;
  padding-top: 25px;
}

.reg_again {
  display: none;
  clear: left;
  float: left;
  font-weight: bold;
  margin-top: 15px;
}

.digital-product h3.product-total, .gfield_html_formatted {
  margin-top: 1em;
  font-weight: bold;
}

/*Users group page specifics*/
.post-610 .su-spacer {
  border-top: 1px solid #ccc;
}

.post-610 .su-column-style-1 {
  padding-bottom: 45px;
  position: relative;
}

.post-610 .su-column-style-1 .button_link {
  position: absolute;
  bottom: 0px;
}

#aio-slideshow {
  z-index: 0;
}

.faded-hr {
  background: url(images/faded_border.png) no-repeat center bottom;
  height: 2px;
  clear: both;
}

.home-feature-2 {
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.home-feature-2 .feature-video {
  float: left;
  margin-left: 25px;
}

.home-feature-2 .feature-video img {
  padding: 5px;
  border: 1px solid #ccc;
}

/*JCarousel for home page*/
.home-feature-2 .jcarousel-skin-tango {
  height: 180px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-container {
    /*
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
   border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;
	*/
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-direction-rtl {
  direction: rtl;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-container-horizontal {
  width: 835px;
  padding: 20px 50px;
  margin-left: 30px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-container-vertical {
  width: 75px;
  height: 245px;
  padding: 40px 20px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-clip {
  overflow: hidden;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-clip-horizontal {
  width: 98%;
  height: 160px;
  margin-left: 7px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-clip-vertical {
  width: 75px;
  height: 245px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-item {
  width: 120px;
  height: 155px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-item-horizontal {
  margin-left: 0;
  margin-right: 20px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
  margin-left: 10px;
  margin-right: 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-item-vertical {
  margin-bottom: 10px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-item-placeholder {
  background: #fff;
  color: #000;
}

/**
 *  Horizontal Buttons
 */
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-horizontal {
  position: absolute;
  top: 43px;
  right: 0px;
  width: 40px;
  height: 49px;
  cursor: pointer;
  background: transparent url(images/next-horizontal.png) no-repeat 0 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
  left: 5px;
  right: auto;
  background-image: url(images/prev-horizontal.png);
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-next-horizontal:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-horizontal:focus {
  background-position: 0px 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-next-horizontal:active {
  /*background-position: -64px 0;*/
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:focus,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
  cursor: default;
  background-position: -96px 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-horizontal {
  position: absolute;
  top: 43px;
  left: 0px;
  width: 40px;
  height: 49px;
  cursor: pointer;
  background: transparent url(images/prev-horizontal.png) no-repeat 0 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
  left: auto;
  right: 5px;
  background-image: url(images/next-horizontal.png);
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-horizontal:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-horizontal:focus {
  background-position: 0px 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-horizontal:active {
  background-position: -64px 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:focus,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
  cursor: default;
  background-position: -96px 0;
}

/**
 *  Vertical Buttons
 */
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-vertical {
  position: absolute;
  bottom: 5px;
  left: 43px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent url(images/next-vertical.png) no-repeat 0 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-next-vertical:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-vertical:focus {
  background-position: 0 -32px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-next-vertical:active {
  background-position: 0 -64px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-vertical,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-vertical:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-vertical:focus,
.home-feature-2 .jcarousel-skin-tango .jcarousel-next-disabled-vertical:active {
  cursor: default;
  background-position: 0 -96px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-vertical {
  position: absolute;
  top: 5px;
  left: 43px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent url(images/prev-vertical.png) no-repeat 0 0;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-vertical:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-vertical:focus {
  background-position: 0 -32px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-vertical:active {
  background-position: 0 -64px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-vertical,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:hover,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:focus,
.home-feature-2 .jcarousel-skin-tango .jcarousel-prev-disabled-vertical:active {
  cursor: default;
  background-position: 0 -96px;
}

/*Tube press & Jcarousel*/
.home-feature-2 .tubepress_thumbs {
  width: 100%;
  overflow: hidden;
  height: 225px;
}

.home-feature-2 .jcarousel-skin-tango .jcarousel-container {
  background: none;
  border: none;
}

.home-feature-2 .tubepress_thumb {
  width: 155px !important;
  padding: 0px;
}

.home-feature-2 .tubepress_thumb dl {
  margin: 0px;
}

.home-feature-2 .tubepress_meta_title {
  line-height: 1.2em;
}

.home-feature-2 .tubepress_meta_group {
  width: 85%;
  padding: 0 10% 0 10%;
}

.home-feature-2 .tubepress_container {
  margin-bottom: 0px;
}

.tubepress_thumb a {
  color: #555 !important;
}

.home-feature-2 h2 {
  color: #157a9b;
  margin-bottom: .5em;
  font-weight: bold;
}

#mycarousel li {
  color: #157a9b;
  text-align: center;
}

#mycarousel li .title {
  font-weight: bold;
  line-height: 1em;
  font-size: 12px;
}

#mycarousel li .subtitle {
  font-style: italic;
  font-size: .8em;
}

.flowcal-gallery {
  margin-left: -24px;
}

.flowcal-gallery li {
  display: block;
  float: left;
  border: 1px solid #ccc;
  padding: 16px;
  margin-left: 22px;
  margin-bottom: 25px;
  width: 214px;
  height: 155px;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0px;
}

.flowcal-gallery li img {
  margin-bottom: 5px;
}

.flowcal-gallery li .video-embed {
  display: none;
}

.flowcal-gallery li h5, .flowcal-gallery li h6 {
  font-size: 13px;
}

.flowcal-gallery li h5 {
  color: #337491;
}

.flowcal-gallery li h6 {
  font-style: italic;
}

a.more-videos {
  border-top: 1px solid #454545;
  background: #597288;
  background: -webkit-gradient(linear, left top, left bottom, from(#42b4e6), to(#597288));
  background: -moz-linear-gradient(top, #42b4e6, #597288);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#42b4e6', endColorstr='#597288');
  padding: 5px 10px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  -webkit-box-shadow: black 0 1px 0;
  -moz-box-shadow: black 0 1px 0;
  box-shadow: black 0 1px 0;
  text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
  color: white;
  font-size: 12px;
  font-family: Arial,Sans-Serif;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
}

a.more-videos:hover {
  border-top-color: #28597a;
  background: #28597a;
  color: #fff;
  text-decoration: none;
}

/*Gallery listings on home page*/
.home .flowcal-gallery li {
  margin-left: 0px;
  width: 85%;
  border-width: 2px;
  padding: 0px;
}

.textwidget .flowcal-gallery div.overlay {
  background: url(images/youtube-play.png) no-repeat center center;
}

.textwidget .flowcal-gallery div:hover.overlay {
  background: url(images/youtube-play-hover.png) no-repeat center center;
}

#flowcal-gallery-current {
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 25px;
}

#flowcal-gallery-current .current-video {
  float: left;
  margin-right: 25px;
}

#flowcal-gallery-current .current-title {
  margin-top: 15px;
}

#main_img .overlay + .overlay {
  background: url(images/youtube-play-large.png) no-repeat center center;
  cursor: pointer;
  max-width: 100% !important;
}

.page-id-55 #main_img {
  float: right;
  margin-right: 25px;
  width: 400px;
  max-width: 100% !important;
}

#main_img .overlay + .overlay:hover {
  background: url(images/youtube-play-hover-large.png) no-repeat center center;
}

@media print {
  #home-slider_container {
    display: none;
  }

  #site-title {
    display: none;
  }

  #site-title-print {
    display: block;
  }
}
/*Webinar listings on Webinar page*/
div.listing-item {
  display: inline;
  float: left;
  margin-right: 1.625em;
  padding-left: 60px;
  height: 190px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 47%;
}

div.listing-item .image {
  display: inline;
  float: left;
  margin-right: 1.625em;
}

.listing-item a.title {
  display: block;
  padding-bottom: 5px;
}

.listing-item a.image {
  height: 100%;
}

.page-template-no-header-template-php #header_wrapper {
  display: none;
}

body.page-template-blank-template-php {
  background: #fff;
}

.display-posts-listing .excerpt-dash {
  display: none;
}

.team_member {
  padding: 10px;
}

.team_member:hover {
  background: #e4f0fe;
}

.clearfix:after {
  content: " ";
  /* Older browser do not support empty content */
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.team_member img {
  float: left;
  border-radius: 93px;
  border: 6px solid #197898;
  margin-right: 25px;
}

.wp-core-ui .button-primary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#42b4e6), to(#21759b)) !important;
  background-image: -webkit-linear-gradient(top, #42b4e6, #21759b) !important;
  background-image: -moz-linear-gradient(top, #42b4e6, #21759b) !important;
  background-image: -ms-linear-gradient(top, #42b4e6, #21759b) !important;
  background-image: -o-linear-gradient(top, #42b4e6, #21759b) !important;
  background-image: linear-gradient(to bottom, #42b4e6, #21759b) !important;
}

body .Cart66CompleteOrderButton {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#42b4e6), to(#21759b)) !important;
}

#ngg-gallery-12982-1 br {
  display: none;
}

@media screen and (max-width: 1200px) {
  #access ul.menu > li {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  /* Menu */
  #access_wrapper {
    display: none;
  }

  #access_wrapper, #access {
    height: auto;
  }

  #access li {
    float: none;
    border-top: 1px solid #fff;
  }

  #access li:first-child {
    border-top: 0px;
  }

  #access ul.sub-menu {
    position: static;
    float: none;
    width: 100%;
  }

  #access ul ul a {
    width: 100%;
  }

  #access ul.menu > li, #access ul.menu li, #access ul.menu a {
    margin: 0px;
  }

  #access ul.menu > li {
    padding: 0px;
  }

  #access ul.menu > li > a:focus, #access ul.menu > li.current-menu-item, #access ul.menu > li.current-menu-ancestor, #access ul.menu li:hover,
  #access ul.menu > li > a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
  }

  #access ul.sub-menu {
    box-shadow: none;
  }

  /*Webinar archives*/
  div.listing-item {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  #footer ul.menu > li {
    float: none;
    margin-left: 0px;
  }

  #footer .facebook, #footer .twitter, #footer .linkedin, #footer .youtube {
    margin-top: 2em !important;
  }

  #footer .facebook {
    clear: left !important;
  }

  #copyright {
    padding-bottom: 50px;
  }

  #product_descriptions {
    min-height: auto;
  }

  .strip-padding-xs {
    padding: 0px !important;
  }

  .strip-padding-left-xs {
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 600px) {
  body div#ccInfo, body .phorm2, body #ccInfo div {
    min-width: 100%;
  }

  body #Cart66CheckoutButtonDiv {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #product_roundabout_container {
    margin-left: 50px;
  }

  #product_thumbnails {
    left: 0;
  }

  .fab8_thumb {
    white-space: inherit;
  }
}
@media screen and (max-width: 320px) {
  #product_thumbnails {
    margin-top: 20px;
    bottom: 0px;
    width: 81%;
    margin: 0 5% 0 15%;
    text-align: center;
  }

  #product_thumbnails li {
    margin-right: 10px;
  }

  .home-feature-2 .feature-video {
    margin: auto;
    margin-bottom: 1em;
  }

  .home-feature-2 img.alignleft {
    margin: auto;
    float: none;
    display: block;
  }

  #fab8 {
    margin-bottom: 25px;
  }

  .fab8_thumb {
    white-space: inherit;
    margin-bottom: 3px;
  }

  #top_menu .menu li, #top_menu .login .menu li {
    padding: 0 3px 0 5px;
  }

  .strip-padding-xxs {
    padding: 0px !important;
  }

  .strip-padding-left-xxs {
    padding-left: 0px !important;
  }

  .clearfix-xxs {
    clear: both;
  }
}
.banner {
  text-align: center;
}
.banner h1 {
  text-align: center;
  background-color: #13B5EA;
  margin: 0 auto;
  color: #fff;
  display: inline-block;
  padding: 15.6px;
  position: relative;
  font-family: 'Kiro-Thin';
  font-size: 48px;
  font-weight: normal;
  min-width: 300px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .banner h1 {
    padding: 16px;
  }
}
.banner h1:before {
  content: "";
  background-image: url("images/blue-left.svg");
  width: 83px;
  height: 83px;
  position: absolute;
  left: -82px;
  top: 1px;
}
.banner h1:after {
  content: "";
  background-image: url("images/blue-right.svg");
  width: 82px;
  height: 83px;
  position: absolute;
  right: -81px;
  top: 1px;
}
@media screen and (max-width: 850px) {
  .banner h1 {
    width: 100%;
  }
  .banner h1:before {
    content: none;
  }
  .banner h1:after {
    content: none;
  }
}
.banner h2 {
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Kiro-Thin';
  font-size: 35px;
}
.banner h2 strong,
.banner h2 b {
  font-family: 'Kiro-Bold';
  font-weight: 400;
}
.banner .image {
  min-height: 283px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.banner img {
  width: 100%;
  min-height: 240px;
}
.banner .top-blue-line {
  width: 100%;
  background-color: #13B5EA;
  height: 45px;
}
.banner .btn.btn-white {
  text-transform: uppercase;
  padding: 10px 35px;
  margin-top: 25px;
  font-size: 13px !important;
}

.bottom-yellow-bar {
  width: 100%;
  position: relative;
  z-index: 5;
}
.bottom-yellow-bar .yellow-left {
  width: 12%;
  background-color: #f1cb00;
  height: 64px;
  left: 0;
  position: absolute;
  top: -27px;
}
.bottom-yellow-bar .yellow-left:after {
  content: "";
  background-image: url("images/yellow-left.svg");
  width: 52px;
  height: 64px;
  position: absolute;
  right: -51px;
}
.bottom-yellow-bar .yellow-center {
  width: 100%;
  background-color: #f1cb00;
  height: 10px;
  float: left;
}
.bottom-yellow-bar .yellow-right {
  width: 15%;
  background-color: #f1cb00;
  height: 64px;
  right: 0;
  position: absolute;
  top: -27px;
}
.bottom-yellow-bar .yellow-right.newletter {
  width: 37%;
}
.bottom-yellow-bar .yellow-right.newletter .fa {
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}
.bottom-yellow-bar .yellow-right.newletter .envelope {
  margin-top: 15px;
  text-align: left;
}
.bottom-yellow-bar .yellow-right.newletter .envelope .fa span {
  font-size: 24px;
  font-family: 'Kiro-Light';
}
.bottom-yellow-bar .yellow-right.newletter .envelope .fa span:hover {
  text-decoration: none;
}
.bottom-yellow-bar .yellow-right.newletter .envelope .fa:before {
  padding-right: 10px;
  padding-left: 10px;
}
.bottom-yellow-bar .yellow-right.newletter a {
  color: #fff;
  font-size: 24px;
  font-family: 'Kiro-Light';
}
.bottom-yellow-bar .yellow-right.newletter a:hover {
  text-decoration: none;
  color: #005596;
}
.bottom-yellow-bar .yellow-right.newletter a:hover i {
  color: #005596;
}
.bottom-yellow-bar .yellow-right:before {
  content: "";
  background-image: url("images/yellow-right.svg");
  width: 53px;
  height: 64px;
  position: absolute;
  left: -52px;
}

.video_testimonials {
  margin-bottom: -40px;
}

.page-content {
  margin-top: 60px;
  margin-bottom: 40px;
}
.page-content ul {
  list-style: none;
}
.page-content hr {
  background-color: #13B5EA;
  margin: 34px 0;
}
.page-content .paragraf {
  color: #000000;
  font-weight: 300;
  text-align: left;
  padding: 0px;
}
.page-content .p-large {
  font-size: 21px;
  line-height: 34px;
  font-family: 'Kiro-Light';
  padding-right: 5px;
}
.page-content .p-medium {
  font-size: 18px;
  line-height: 29px;
  font-family: 'Kiro-Light';
  margin-bottom: 12px;
}
.page-content .p-medium a {
  color: #13B5EA;
}
.page-content .p-medium a:hover {
  color: #005596;
}
.page-content .p-blue {
  color: #005596;
  font-family: 'Kiro-Bold';
}
.page-content .p-blue a {
  color: #13B5EA;
}
.page-content .p-medium-bullets {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  position: relative;
}
.page-content .p-medium-bullets:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: -13px;
  top: 13px;
}
@-moz-document url-prefix() {
  .page-content .p-medium-bullets:before {
    top: 15px;
  }
}
.page-content .page-content ul li {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  position: relative;
}
.page-content .page-content ul li:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: -13px;
  top: 13px;
}
@-moz-document url-prefix() {
  .page-content .page-content ul li:before {
    top: 15px;
  }
}
.page-content .h2 {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
}
.page-content .h3 {
  font-size: 26px;
  color: #005596;
  font-family: 'Kiro-Light';
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 15px;
}
.page-content .h6 {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}
.page-content .h6 a {
  color: #13B5EA;
}
.page-content .h7 {
  color: #13B5EA;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}

.btn {
  border-radius: 0;
  background-color: transparent;
  padding: 9px 22px;
  margin-top: 30px;
  font-family: 'Kiro-Bold';
  font-size: 14px;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.btn:hover {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background-color: #13B5EA;
  border: 1px solid #13B5EA;
  color: #fff;
}
.btn:visited, .btn:focus, .btn:active {
  outline: 0;
  box-shadow: none;
  color: #fff;
  text-decoration: none;
}

.btn-white {
  border: 1px solid #fff;
  color: #fff;
}

.btn-black {
  border: 1px solid #D7D7D7;
  color: #000;
}

.btn-gray {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: #005596;
  font-size: 14px;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 35px;
}
.btn-gray:hover {
  border-color: #13B5EA;
  background-color: #13B5EA;
  color: #fff;
}

@media screen and (max-width: 560px) {
  .banner h1 {
    font-size: 35px;
  }
  .banner h2 {
    font-size: 25px;
  }
}
@media screen and (min-width: 560px) and (max-width: 600px) {
  .banner h1 {
    font-size: 44px;
    padding: 17.5px;
  }
}
@media screen and (min-width: 560px) and (max-width: 600px) and (-webkit-min-device-pixel-ratio: 0) {
  .banner h1 {
    padding: 18px;
  }
}
@media screen and (min-width: 560px) and (max-width: 600px) {
  @-moz-document url-prefix() {
    .banner h1 {
      padding: 18px;
    }
  }
  .banner h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 900px) {
  .envelope {
    text-align: center !important;
  }
  .envelope span {
    display: none;
  }

  .yellow-right.newletter {
    width: 17% !important;
  }
}
.user-group-registration_wrapper .ginput_complex .ginput_right input[type=text],
.user-group-registration_wrapper .ginput_complex .ginput_right input[type=url],
.user-group-registration_wrapper .ginput_complex .ginput_right input[type=email],
.user-group-registration_wrapper .ginput_complex .ginput_right input[type=tel],
.user-group-registration_wrapper .ginput_complex .ginput_right input[type=number],
.user-group-registration_wrapper .ginput_complex .ginput_right input[type=password],
.user-group-registration_wrapper .ginput_complex .ginput_right select {
  /*width: 98% !important;*/
  width: 100% !important;
}
.user-group-registration_wrapper .ginput_complex .ginput_full input[type=text],
.user-group-registration_wrapper .ginput_complex .ginput_full input[type=url],
.user-group-registration_wrapper .ginput_complex .ginput_full input[type=email],
.user-group-registration_wrapper .ginput_complex .ginput_full input[type=tel],
.user-group-registration_wrapper .ginput_complex .ginput_full input[type=number],
.user-group-registration_wrapper .ginput_complex .ginput_full input[type=password] {
  /*width: 99% !important;*/
  width: 100% !important;
}
.user-group-registration_wrapper .top_label li.gfield.gf_left_half input.medium,
.user-group-registration_wrapper .top_label li.gfield.gf_left_half input.large,
.user-group-registration_wrapper .top_label li.gfield.gf_left_half select.medium,
.user-group-registration_wrapper .top_label li.gfield.gf_left_half select.large,
.user-group-registration_wrapper .top_label li.gfield.gf_right_half input.medium,
.user-group-registration_wrapper .top_label li.gfield.gf_right_half input.large,
.user-group-registration_wrapper .top_label li.gfield.gf_right_half select.medium,
.user-group-registration_wrapper .top_label li.gfield.gf_right_half select.large {
  /*width: 98% !important;*/
  width: 100% !important;
}
@media screen and (max-width: 700px) {
  .user-group-registration_wrapper .top_label li.gfield.gf_left_half,
  .user-group-registration_wrapper .top_label li.gfield.gf_right_half {
    width: 100%;
  }
}
.user-group-registration_wrapper input[type=text],
.user-group-registration_wrapper input[type=tel],
.user-group-registration_wrapper input[type=email] {
  background-color: transparent;
  height: 35px !important;
  box-shadow: none !important;
}
.user-group-registration_wrapper input[type=text]:focus,
.user-group-registration_wrapper input[type=tel]:focus,
.user-group-registration_wrapper input[type=email]:focus {
  box-shadow: none !important;
}
.user-group-registration_wrapper input[type=radio] {
  margin-top: 4px;
}
.user-group-registration_wrapper input[type=checkbox] {
  margin-top: 2px;
}
.user-group-registration_wrapper input[type=radio]:focus,
.user-group-registration_wrapper input[type=checkbox]:focus {
  box-shadow: none !important;
}
.user-group-registration_wrapper input[type=radio]:checked + label {
  font-weight: normal;
}
.user-group-registration_wrapper a {
  color: #13B5EA;
  text-decoration: none;
}
.user-group-registration_wrapper .gfield_html_formatted {
  font-weight: normal;
}
.user-group-registration_wrapper .gfield_description {
  font-family: 'Kiro-Light';
  font-size: 18px;
  color: #000;
  font-weight: normal;
  margin-bottom: 15px;
}
.user-group-registration_wrapper .gform_fields h3 {
  font-family: 'Kiro-Light';
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: 0;
  margin-top: 20px;
}
.user-group-registration_wrapper .gform_fields h3 strong {
  font-weight: normal;
}
.user-group-registration_wrapper .top_label {
  font-family: 'Kiro-Light';
  font-size: 18px;
  color: #000;
  font-weight: normal;
}
.user-group-registration_wrapper .gfield_label {
  font-weight: normal;
  font-family: 'Kiro-Light';
  font-size: 18px;
}
.user-group-registration_wrapper .gf_page_steps {
  border-bottom: 0px;
  width: 100%;
}
.user-group-registration_wrapper .gf_page_steps .gf_step {
  font-family: 'Kiro-Light';
  font-size: 24px;
  font-weight: 300;
  color: #005596;
  margin-bottom: 30px;
}
.user-group-registration_wrapper .gf_page_steps .gf_step_number {
  font-family: 'Kiro-Bold';
  font-size: 24px;
  font-weight: 300;
  color: #005596;
}
.user-group-registration_wrapper .gf_page_steps .gf_step_clear {
  background-color: #13b5ea;
  border-bottom: 0px;
  width: 100%;
}
.user-group-registration_wrapper .ginput_container select {
  height: 35px;
  font-size: 16px;
  font-family: 'Kiro-Light';
}
.user-group-registration_wrapper .gform_page_footer {
  border: 0;
  margin-top: 20px;
}
.user-group-registration_wrapper .gform_page_footer .gform_previous_button {
  padding-right: 38px !important;
  padding-left: 38px !important;
  margin-right: 15px;
}
.user-group-registration_wrapper .gform_page_footer input[type=button],
.user-group-registration_wrapper .gform_page_footer input[type=submit] {
  font-family: 'Kiro-Bold';
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  padding-left: 55px;
  padding-right: 55px;
  text-transform: uppercase;
  height: 40px;
  background-color: #13b5ea;
  max-width: 265px;
}
.user-group-registration_wrapper .gform_page_footer input[type=button]:hover,
.user-group-registration_wrapper .gform_page_footer input[type=submit]:hover {
  background-color: #005596;
}
.user-group-registration_wrapper .gform_page_footer input[type=submit] {
  padding-left: 39px;
  padding-right: 39px;
}
.user-group-registration_wrapper #field_113_49 {
  width: 50%;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .user-group-registration_wrapper #field_113_49 {
    /*margin-right: 35px;*/
  }
}
.user-group-registration_wrapper #field_113_59 {
  /*margin-left: 35px !important;*/
  width: 50%;
  float: none;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .user-group-registration_wrapper #field_113_59 {
    margin-left: 0px !important;
  }
}
.user-group-registration_wrapper #field_113_42 .gfield_label {
  font-family: 'Kiro-Light';
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 5px;
  margin-top: 20px;
}
.user-group-registration_wrapper #field_113_50 {
  max-width: 980px;
}
.user-group-registration_wrapper #field_113_56 .gfield_description {
  max-width: 777px;
}
.user-group-registration_wrapper #field_113_39 {
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  color: #000;
  max-width: 300px;
  margin-top: 25px;
}
.user-group-registration_wrapper #field_113_51 {
  max-width: 850px;
  margin-bottom: 20px;
}
.user-group-registration_wrapper #field_113_51 strong {
  color: #13b5ea;
}
.user-group-registration_wrapper #field_113_42,
.user-group-registration_wrapper #field_113_56 {
  border-bottom: 1px solid #13b5ea;
  padding-bottom: 20px;
}
.user-group-registration_wrapper #field_113_42 {
  border-top: 1px solid #13b5ea;
}
.user-group-registration_wrapper #field_113_75 {
  border-top: 1px solid #13b5ea;
  padding-top: 20px;
}
.user-group-registration_wrapper #field_113_75 .gfield_label {
  margin-bottom: 15px;
  font-family: 'Kiro-Light';
  font-size: 24px;
  color: #005596;
}
.user-group-registration_wrapper #field_113_56 .gfield_label,
.user-group-registration_wrapper #field_113_14 .gfield_label,
.user-group-registration_wrapper #field_113_80 .gfield_label,
.user-group-registration_wrapper #field_113_83 .gfield_label {
  margin-bottom: 15px;
  font-family: 'Kiro-Light';
  font-size: 24px;
  color: #005596;
  margin-top: 20px;
}
.user-group-registration_wrapper #field_113_23 {
  border-bottom: 1px solid #13b5ea;
  padding-bottom: 20px;
}
.user-group-registration_wrapper #field_113_14,
.user-group-registration_wrapper #field_113_80,
.user-group-registration_wrapper #field_113_83 {
  max-width: 300px;
  float: left;
  clear: none;
  margin-bottom: 20px;
}
.user-group-registration_wrapper #field_113_14 .ginput_container ul li,
.user-group-registration_wrapper #field_113_80 .ginput_container ul li,
.user-group-registration_wrapper #field_113_83 .ginput_container ul li {
  width: 100%;
}
.user-group-registration_wrapper #field_113_54 {
  border-top: 1px solid #13b5ea;
  margin-top: 30px;
  float: left;
}
.user-group-registration_wrapper #field_113_54 .gfield_label {
  font-family: 'Kiro-Light';
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
  letter-spacing: 0;
  margin-top: 20px;
}
.user-group-registration_wrapper #field_113_54 textarea {
  background-color: transparent;
  height: 150px;
  max-width: 770px;
}
.user-group-registration_wrapper #field_113_54 textarea:focus {
  box-shadow: none !important;
}
.user-group-registration_wrapper #field_113_36 {
  margin: 0;
}
.user-group-registration_wrapper #field_113_36 h4 {
  color: #13B5EA !important;
  font-family: 'Kiro-Bold' !important;
  font-size: 18px !important;
}
.user-group-registration_wrapper #input_113_25_6_container select {
  margin: 0px;
}
@media screen and (min-width: 1000px) {
  .user-group-registration_wrapper #input_113_25_2_container {
    width: 48%;
  }
  .user-group-registration_wrapper #input_113_25_5_container {
    width: 15%;
    float: left;
  }
  .user-group-registration_wrapper #input_113_25_6_container {
    width: 31%;
  }
}
.user-group-registration_wrapper #field_113_60 {
  padding-bottom: 10px;
}
.user-group-registration_wrapper #field_113_87 {
  margin-bottom: 30px;
}
.user-group-registration_wrapper #field_113_21,
.user-group-registration_wrapper #field_113_35,
.user-group-registration_wrapper #field_113_62,
.user-group-registration_wrapper #field_113_34,
.user-group-registration_wrapper #field_113_53,
.user-group-registration_wrapper #field_113_63,
.user-group-registration_wrapper #field_113_52,
.user-group-registration_wrapper #field_113_64,
.user-group-registration_wrapper #field_113_18,
.user-group-registration_wrapper #field_113_73,
.user-group-registration_wrapper #field_113_84 {
  clear: both !important;
  float: left;
}
.user-group-registration_wrapper #field_113_21 .gfield_label,
.user-group-registration_wrapper #field_113_35 .gfield_label,
.user-group-registration_wrapper #field_113_62 .gfield_label,
.user-group-registration_wrapper #field_113_34 .gfield_label,
.user-group-registration_wrapper #field_113_53 .gfield_label,
.user-group-registration_wrapper #field_113_63 .gfield_label,
.user-group-registration_wrapper #field_113_52 .gfield_label,
.user-group-registration_wrapper #field_113_64 .gfield_label,
.user-group-registration_wrapper #field_113_18 .gfield_label,
.user-group-registration_wrapper #field_113_73 .gfield_label,
.user-group-registration_wrapper #field_113_84 .gfield_label {
  font-family: 'Kiro-Light' !important;
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 15px;
  letter-spacing: 0;
  margin-top: 20px;
}
.user-group-registration_wrapper #field_113_21 .gfield_description,
.user-group-registration_wrapper #field_113_35 .gfield_description,
.user-group-registration_wrapper #field_113_62 .gfield_description,
.user-group-registration_wrapper #field_113_34 .gfield_description,
.user-group-registration_wrapper #field_113_53 .gfield_description,
.user-group-registration_wrapper #field_113_63 .gfield_description,
.user-group-registration_wrapper #field_113_52 .gfield_description,
.user-group-registration_wrapper #field_113_64 .gfield_description,
.user-group-registration_wrapper #field_113_18 .gfield_description,
.user-group-registration_wrapper #field_113_73 .gfield_description,
.user-group-registration_wrapper #field_113_84 .gfield_description {
  max-width: 500px;
  padding: 0px;
}
.user-group-registration_wrapper #field_113_73 {
  border-bottom: 1px solid #13b5ea;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.user-group-registration_wrapper #field_113_65 {
  display: block;
}
.user-group-registration_wrapper #field_113_61 {
  border-top: 1px solid #13b5ea;
  margin-top: 30px;
}
.user-group-registration_wrapper #field_113_60 .gfield_label,
.user-group-registration_wrapper #field_113_55 .gfield_label,
.user-group-registration_wrapper #field_113_61 .gfield_label {
  font-family: 'Kiro-Light' !important;
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
  letter-spacing: 0;
  margin-top: 20px;
}
.user-group-registration_wrapper #field_113_60 .gfield_description h3,
.user-group-registration_wrapper #field_113_55 .gfield_description h3,
.user-group-registration_wrapper #field_113_61 .gfield_description h3 {
  font-family: 'Kiro-Bold';
  color: #13B5EA;
  font-size: 18px;
  margin-top: 0px;
}
.user-group-registration_wrapper #field_113_18 {
  border-bottom: 1px solid #13b5ea;
  border-top: 1px solid #13b5ea;
  margin-top: 30px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  width: 100%;
}
.user-group-registration_wrapper #field_113_45 .gfield_label {
  font-family: 'Kiro-Light' !important;
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0;
  margin-top: 20px;
}
.user-group-registration_wrapper #field_113_45 .gfield_description h3 {
  font-family: 'Kiro-Bold';
  color: #13B5EA;
  font-size: 18px;
  margin-top: 0px;
}
.user-group-registration_wrapper #field_113_86 {
  width: 100%;
  clear: none;
  margin-right: 20px;
  margin-bottom: 35px;
}
.user-group-registration_wrapper #field_113_86 select {
  width: 25%;
}
.user-group-registration_wrapper #field_113_86 .gfield_label {
  font-family: 'Kiro-Light' !important;
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0;
}
.user-group-registration_wrapper #field_113_85 {
  width: 100%;
  border-top: 1px solid #13b5ea;
  margin-top: 30px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.user-group-registration_wrapper #field_113_85 .gfield_label {
  font-family: 'Kiro-Light' !important;
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.user-group-registration_wrapper #field_113_85 select {
  width: 25%;
}
.user-group-registration_wrapper #field_113_47,
.user-group-registration_wrapper #field_113_88,
.user-group-registration_wrapper #field_113_87 {
  margin-top: 10px;
  border-top: 1px solid #13b5ea;
}

.user-group-registration_wrapper.gform_wrapper li input[type="checkbox"] {
  opacity: 0;
}
/*,.user-group-registration_wrapper.gform_wrapper li input[type="radio"]*/

.user-group-registration_wrapper.gform_wrapper li input[type="checkbox"] + label:before
 {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #29ABE2;
  background-color: transparent;
  
  position: absolute;
  left: 0;
  top: 10px;
}
//
/**/
.user-group-registration_wrapper.gform_wrapper li input[type="radio"] + label:before{
  border-radius: 100%;
}
.user-group-registration_wrapper.gform_wrapper li input[type="checkbox"]:checked + label,
.user-group-registration_wrapper.gform_wrapper li input[type="radio"]:checked + label {
  color: #29ABE2;
  font-weight: normal !important;
  font-family: 'Kiro-Bold';
}
.user-group-registration_wrapper.gform_wrapper li input[type="checkbox"]:checked + label:before,
.user-group-registration_wrapper.gform_wrapper li input[type="radio"]:checked + label:before {
  background-color: #29ABE2;
}
.user-group-registration_wrapper.gform_wrapper li input[type="checkbox"] + label,
.user-group-registration_wrapper.gform_wrapper li input[type="radio"] + label {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 19px;
  font-weight: 300;
  text-align: left;
  line-height: 34px;
  display: inline-block !important;
  padding-left: 3px; 
}

@media screen and (min-width: 1000px) {
  .consulting .p-large,
  .consulting .p-medium {
    padding-right: 25px;
  }

  .health-check .p-large {
    padding-right: 25px;
  }

  .measurement-services .p-large,
  .measurement-services .p-medium {
    padding-right: 25px;
  }

  .university .col-md-8 .p-medium {
    padding-right: 17px;
  }
  .university .col-md-4 .p-medium {
    padding-right: 5px;
  }

  .course-registration .padding-left .button-right .col-md-9 .p-medium {
    padding-right: 80px;
  }
}
.su-spoiler-content {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.su-spoiler-content .paragraf.p-medium {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

#emptyCartMsg .Cart66ButtonSecondary {
  font-family: 'Kiro-Bold';
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  text-transform: uppercase;
  background: #13b5ea;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
  box-shadow: none;
}
#emptyCartMsg .Cart66ButtonSecondary:hover {
  background: #005596;
}

.top-cart + h1 {
  font-family: 'Kiro-Light';
  color: #005596;
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 34px;
  text-align: left;
}

#billing-country,
#shipping-country {
  width: 60% !important;
  height: 35px !important;
}

#billing-state,
#shipping-state {
  height: 35px !important;
}

#Cart66CheckoutButtonDiv .description {
  margin-top: 20px;
  float: left;
  width: 65%;
  font-size: 16px;
  color: #000;
  font-family: 'Kiro-Light';
  font-weight: normal !important;
}
#Cart66CheckoutButtonDiv .description strong {
  font-family: 'Kiro-Bold';
  color: #005596;
  font-weight: normal !important;
}

#payment-cardType,
#payment-cardNumber,
#payment-securityId,
#payment-phone,
#payment-email,
#payment-company {
  width: 62% !important;
}

#contactPaymentInfo input[type="text"] {
  background-color: transparent;
  border-radius: 5px;
  box-shadow: none;
  height: 25px;
}
#contactPaymentInfo input[type="text"]:focus {
  outline: 0px;
}
#contactPaymentInfo .checkbox {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 5px;
}

#shippingAddressCheckbox label {
  width: auto !important;
}

#sameAsBilling {
  margin-top: 12px;
}

.limited-countries-label-billing, .limited-countries-label-shipping {
  margin-top: 10px;
  width: 60%;
}

#viewCartTable {
  border: 0px !important;
}
#viewCartTable .cart66-align-right {
  text-align: center;
}
#viewCartTable th {
  border-bottom: 0px !important;
}
#viewCartTable thead {
  border-top: 2px solid #005596;
}
#viewCartTable thead th {
  min-width: 120px;
  background-color: #ECF8FC;
  padding-top: 17px;
  padding-bottom: 17px;
}
#viewCartTable .full-border {
  border-top: 1px solid #005596;
  border-bottom: 1px solid #005596;
}
#viewCartTable .border-bottom-big {
  border-bottom: 2px solid #005596;
}
#viewCartTable .border-bottom-big > td {
  padding-top: 40px;
  padding-bottom: 40px;
}
#viewCartTable .border-bottom-big > td:hover a {
  color: #005596;
}
#viewCartTable .border-bottom-big > td:hover a:after {
  color: #005596;
}
#viewCartTable .border-bottom-big .showGfFormData {
  margin-top: 20px;
}
#viewCartTable .box-border {
  border-top: 1px solid #005596;
  border-bottom: 1px solid #005596;
  border-left: 1px solid #005596;
  border-right: 1px solid #005596;
  text-align: center;
}
#viewCartTable .box-border .itemQuantity {
  text-align: center;
}
#viewCartTable input[type="submit"] {
  font-family: 'Kiro-Bold';
  background: #13B5EA;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  height: 40px;
  padding-top: 10px !important;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 7px;
}
#viewCartTable input[type="submit"]:hover {
  background-color: #005596;
}
#viewCartTable .entry-view-field-value {
  font-family: 'Kiro-Light';
  font-size: 18px;
}
#viewCartTable ul li:before {
  display: none !important;
}

#Cart66CartForm .entry-view-field-name {
  padding-left: 0px;
  background-color: #fff !important;
  font-size: 24px;
  color: #005596;
  font-family: 'Kiro-Bold';
  font-weight: normal !important;
  padding-left: 26px !important;
}
#Cart66CartForm .bulleted {
  margin: 0;
}
#Cart66CartForm .form-table.entry-details .entry-view-field-value {
  position: relative;
}

#cartButtonsLeft {
  float: left;
  width: 50%;
}

#cartButtonsRight {
  float: right;
  width: 50%;
}

#invoiceShopping a,
#continueShopping a,
#checkoutShopping a {
  font-family: 'Kiro-Bold';
  background: #13B5EA;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  height: 30px;
  padding-top: 10px !important;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 0px;
}
#invoiceShopping a:hover,
#continueShopping a:hover,
#checkoutShopping a:hover {
  background-color: #005596;
}

#viewCartNav + p + p,
#viewCartNav + p + p + p + div {
  display: none;
}

#invoiceShopping a,
#checkoutShopping a {
  padding-left: 25px;
  padding-right: 25px;
}

.type-bold {
  font-family: 'Kiro-Bold';
  color: #005596;
  font-size: 24px;
  padding-left: 20px !important;
}

.type-normal {
  font-family: 'Kiro-Light';
  font-size: 22px;
  text-align: center;
  color: #005596;
}

.blue-bold-price {
  font-family: 'Kiro-Bold';
  font-size: 24px;
  color: #13B5EA;
}

.paragraf-text-product {
  font-family: 'Kiro-Light';
  font-size: 21px;
  color: #005596;
  padding-left: 20px !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

#couponCode input[type="text"] {
  background-color: transparent;
  box-shadow: none;
  max-width: 150px;
  border-radius: 5px;
}
#couponCode input[type="text"]:focus {
  outline: 0;
}

.showEntriesLink.details {
  font-family: 'Kiro-Light';
  color: #13B5EA;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}
.showEntriesLink.details:after {
  font-family: FontAwesome;
  position: absolute;
  content: "\f107";
  color: #13B5EA;
  margin-left: 5px;
}
.showEntriesLink.details:hover {
  text-decoration: none;
}

#payment-securityId {
  width: 18% !important;
}

#billingInfo input[type="text"], #shippingInfo input[type="text"] {
  background-color: transparent;
  border-radius: 5px;
  box-shadow: none;
  height: 25px;
  width: 60% !important;
}
#billingInfo input[type="text"]:focus, #shippingInfo input[type="text"]:focus {
  outline: 0px;
}

#ccInfo select {
  height: 33px;
}
#ccInfo select:focus {
  outline: 0;
}
#ccInfo #paymentInfo h2,
#ccInfo #billingInfo h2,
#ccInfo #shippingInfo h2 {
  font-family: 'Kiro-Light';
  font-size: 26px;
  color: #005596;
  letter-spacing: 3px;
  text-align: left;
  text-transform: uppercase;
  padding-top: 30px;
  padding-bottom: 30px;
}
#ccInfo label {
  width: 100%;
  text-align: left;
  font-family: 'Kiro-Light';
  font-size: 18px;
  color: #000;
}
#ccInfo #billing-state,
#ccInfo #shipping-state {
  height: 25px;
  width: 60%;
}
#ccInfo #contactPaymentInfo .description {
  margin-left: 0px;
}

#Cart66CheckoutButton {
  font-family: 'Kiro-Bold';
  background: #13B5EA;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  box-shadow: none;
  text-align: center;
  vertical-align: middle;
  height: 40px;
  padding-left: 25px;
  padding-right: 25px;
  background-image: none !important;
  margin-left: 0px !important;
  float: left;
}
#Cart66CheckoutButton:hover {
  background-color: #005596;
}

#contactPaymentInfo .checkbox input {
  text-align: left;
  float: left;
  position: relative;
  width: 4%;
  margin-left: 0px;
  margin-right: 10px;
  margin-top: 6px;
}

#payment-cardExpirationMonth {
  width: 100px;
  height: 35px !important;
}

#payment-cardExpirationYear {
  width: 130px;
  height: 35px !important;
}

#couponCode {
  width: 130px;
  margin-bottom: 20px !important;
}
#couponCode input[type="text"] {
  max-width: 130px;
}

.total {
  border-bottom: 2px solid #005596;
}

.text-align-center {
  text-align: center;
  color: #000;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 80px;
  font-family: 'Kiro-Light';
}

.haveCoupon {
  font-family: 'Kiro-Light';
  color: #000;
  font-size: 14.5px;
}

#viewCartTable .subtotal td,
#viewCartTable .shipping td {
  padding-top: 25px;
}
#viewCartTable .total td {
  padding-bottom: 35px;
}

@media screen and (max-width: 800px) {
  .entry-view-field-name {
    font-size: 20px !important;
    padding: 10px !important;
  }

  .entry-view-field-value {
    padding-left: 0px !important;
    padding: 10px !important;
  }

  #viewCartTable .subtotal td:first-child,
  #viewCartTable .shipping td:first-child {
    display: none;
  }
  #viewCartTable .subtotal td,
  #viewCartTable .shipping td {
    padding-left: 0px !important;
    padding-top: 10px;
    padding-bottom: 5px;
  }
  #viewCartTable .total td {
    padding-left: 0px !important;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #viewCartTable #couponCode,
  #viewCartTable #updateCart {
    float: left;
  }
  #viewCartTable .border-bottom-big > td {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0px !important;
  }
  #viewCartTable .border-bottom-big .showEntriesLink.details {
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  #viewCartTable thead {
    display: none;
  }
  #viewCartTable tr td {
    display: block;
    float: left;
    position: relative;
    padding: 25px;
    padding-right: 10px;
    padding-left: 120px !important;
    text-align: left !important;
    width: 100% !important;
  }
  #viewCartTable tr td:before {
    content: attr(data-title);
    position: absolute;
    top: 25px;
    left: 5px;
  }

  .box-border {
    border-top: 0px !important;
    border-bottom: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
  }
}
.ginput_complex.ginput_container span label {
  font-size: 12px;
  font-style: italic;
  color: #A6A6A6;
}

.panel-group .panel + .panel {
  margin-top: 15px;
}

.entry-content {
  padding: 0.1px;
}

@media screen and (min-width: 800px) {
  .Cart66UpdateTotalButton {
    float: right !important;
  }
}
@media screen and (min-width: 992px) {
  .big-top {
    margin-top: 300px !important;
  }
}
@media screen and (min-width: 1200px) {
  #branding .container .row .col-lg-3 {
    padding-right: 0px;
  }
}
button.mfp-close {
  top: -15% !important;
  background: white !important;
  color: black !important;
  right: 0% !important;
  width: 5% !important;
  text-align: center !important;
  padding: 0px !important;
}

.zoom-gallery img {
  margin-bottom: 40px;
}

.event .gform_footer.top_label {
  text-align: right;
}
.event .gform_footer.top_label input[type="submit"] {
  top: 50px;
  position: relative;
}
/* Courses Registration changes */
@media screen and (max-width: 992px) {
	.event .gform_footer.top_label input[type="submit"] {
	  top: 25px;
	}
	.event .gform_footer {
    	padding-bottom: 0px !important;
	}
}
.event input[type="checkbox"] {
  margin-top: 0px !important;
  margin-right: 5px;
}

.wpfilebase-attachment {
  display: none !important;
}



@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .flowcal_products .features ul {
    margin-left: 20px;
  }
}
.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  padding: 1px 4px 3px !important;
}

/***Users Group Gallery********************/
#users-group-gallery {
  background-color: #005596;
  display: inline-block;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 10px 10px 68px;
  position: relative;
  max-width: 100%;
}

#users-group-gallery #slider {
  max-width: 100% !important;
  max-height: 100% !important;
}

#users-group-gallery h6 {
  color: #ebebeb;
  font-family: "Kiro-Bold";
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  margin-top: -5px;
  text-transform: none;
}

#users-group-gallery p {
  margin: 0 !important;
}

#users-group-gallery .gallery-overlay {
  background-color: rgba(19, 181, 234, 0.7);
  bottom: 0;
  color: #fff;
  font-family: "Kiro-Thin";
  font-size: 26px;
  font-weight: 300;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: none;
}

@media all and (max-width: 500px) {
  #users-group-gallery .gallery-overlay {
    font-size: 18px !important;
  }
}
#users-group-gallery .gallery-overlay span {
  left: 50%;
  position: absolute;
  top: 50%;
  width: 90%;
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: translate(-50%, -50%);
  /* Safari */
  transform: translate(-50%, -50%);
}

#users-group-gallery .slideshowlink {
  display: none !important;
}

#users-group-gallery .ngg-slideshow {
  float: left;
  margin-left: 0px;
}

#users-group-gallery h3 {
  display: none;
}

#users-group-gallery div#slider_container .nivo_slider .nivo-controlNav {
  margin-left: 26px;
  bottom: -57px;
  position: absolute;
  text-align: left;
  width: 10000px !important;
}

#users-group-gallery div#slider_container .nivo_slider .nivo-controlNav a {
  color: #333333;
  float: left;
  font-size: 11px;
  margin: 0 7px 0 0 !important;
  text-decoration: none;
  position: relative;
}

#users-group-gallery div#slider_container .nivo_slider .nivo-controlNav a.active:after {
  background-color: rgba(27, 117, 187, 0.5);
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#users-group-gallery .nivo-slice {
  background-size: cover !important;
  overflow: hidden !important;
}

#users-group-gallery .nivo-slice:after {
  background-color: #005596;
  position: absolute;
  height: 1px;
  width: 100%;
}

#users-group-gallery .nivo_slider .nivo-directionNav a {
  background: none;
  text-indent: 0;
}

#users-group-gallery .nivo_slider .nivo-directionNav a .fa {
  color: #ebebeb;
  font-size: 60px !important;
  font-weight: 300 !important;
}

#users-group-gallery .nivo_slider .nivo-directionNav .nivo-prevNav {
  left: 25px;
  margin-top: -30px;
  top: 50%;
}

#users-group-gallery .nivo_slider .nivo-directionNav .nivo-nextNav {
  right: 25px;
  margin-top: -30px;
  top: 50%;
}

#users-group-gallery .thumbnails-left-arrow, #users-group-gallery .thumbnails-right-arrow {
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 5px solid #005596;
  border-top: 5px solid #005596;
  bottom: 6px;
  color: #ebebeb;
  cursor: pointer;
  font-size: 32px;
  height: 58px;
  line-height: 36px;
  padding: 5px;
  position: absolute;
  z-index: 11;
}

#users-group-gallery .thumbnails-left-arrow {
  border-left: 10px solid #005596;
  border-right: 5px solid #005596;
  left: 0;
}

#users-group-gallery .thumbnails-right-arrow {
  border-right: 10px solid #005596;
  border-left: 5px solid #005596;
  right: 0;
}

#users-group-gallery .slider-bottom-line {
  background-color: #005596;
  bottom: 67px;
  height: 3px;
  position: absolute;
  width: 100%;
  z-index: 11;
}

/*******************************/
/**
 * Typography
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("fonts/fontawesome/fontawesome-webfont.eot?v=#4.1.0");
  src: url("fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=#4.1.0") format("embedded-opentype"), url("fonts/fontawesome/fontawesome-webfont.woff2?v=#4.1.0") format("woff2"), url("fonts/fontawesome/fontawesome-webfont.woff?v=#4.1.0") format("woff"), url("fonts/fontawesome/fontawesome-webfont.ttf?v=#4.1.0") format("truetype"), url("fonts/fontawesome/fontawesome-webfont.svg?v=#4.1.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
* Kiro fonts
*/
@font-face {
  font-family: 'Kiro-Thin';
  src: url("fonts/KiroWebfont/KiroW01-Thin.eot") format("eot"), url("fonts/KiroWebfont/KiroW01-Thin.svg") format("svg"), url("fonts/KiroWebfont/KiroW01-Thin.ttf") format("ttf"), url("fonts/KiroWebfont/KiroW01-Thin.woff") format("woff"), url("fonts/KiroWebfont/KiroW01-Thin.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Kiro-Light';
  src: url("fonts/KiroWebfont/KiroW01-Light.eot") format("eot"), url("fonts/KiroWebfont/KiroW01-Light.svg") format("svg"), url("fonts/KiroWebfont/KiroW01-Light.ttf") format("ttf"), url("fonts/KiroWebfont/KiroW01-Light.woff") format("woff"), url("fonts/KiroWebfont/KiroW01-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Kiro-Bold';
  src: url("fonts/KiroWebfont/KiroW01-Bold.eot") format("eot"), url("fonts/KiroWebfont/KiroW01-Bold.svg") format("svg"), url("fonts/KiroWebfont/KiroW01-Bold.ttf") format("ttf"), url("fonts/KiroWebfont/KiroW01-Bold.woff") format("woff"), url("fonts/KiroWebfont/KiroW01-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Kiro-Regular';
  src: url("fonts/KiroWebfont/KiroW01-Regular.eot") format("eot"), url("fonts/KiroWebfont/KiroW01-Regular.svg") format("svg"), url("fonts/KiroWebfont/KiroW01-Regular.ttf") format("ttf"), url("fonts/KiroWebfont/KiroW01-Regular.woff") format("woff"), url("fonts/KiroWebfont/KiroW01-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Kiro-Italic';
  src: url("fonts/KiroWebfont/KiroW01-Italic.eot") format("eot"), url("fonts/KiroWebfont/KiroW01-Italic.svg") format("svg"), url("fonts/KiroWebfont/KiroW01-Italic.ttf") format("ttf"), url("fonts/KiroWebfont/KiroW01-Italic.woff") format("woff"), url("fonts/KiroWebfont/KiroW01-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}
.navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }

  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

.navbar-inverse {
  background-color: #222;
  border-color: #090909;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #090909;
}
.navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #090909;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #090909;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

/* =Header
----------------------------------------------- */
#header_wrapper {
  background: transparent;
  color: #000;
  z-index: 10;
  position: relative;
}

#site-title {
  margin-top: 30px;
}
@media screen and (max-width: 500px) {
  #site-title img {
    max-width: 180px;
  }
}
#site-title.rezerve + h1 {
  visibility: hidden;
  position: absolute;
}

#site-title, #site-title-print {
  clear: none;
}

#site-title-print {
  display: none;
  padding: 10px 0 0px 22px;
}

#branding img {
  float: left;
  margin: 0;
  width: 100%;
  max-width: 200px;
}

#header_phone {
  font-size: 14px;
  float: left;
  clear: left;
  margin-left: 22px;
  padding-top: 5px;
}

#header_phone a.mobile, a.mobile {
  text-decoration: underline !important;
  color: #fff !important;
}

#top_menu_wrapper {
  padding-top: 20px;
}
@media screen and (min-width: 1200px) {
  #top_menu_wrapper {
    float: right;
    width: 80%;
    padding-left: 0;
  }
}

.top-menu-container {
  clear: right;
}

#top_menu .menu {
  text-align: right;
  float: right;
  display: table;
  margin: 0;
  margin-bottom: 10px;
}

#top_menu .menu a {
  color: #000;
  font-size: 12px;
  letter-spacing: 0em;
}

#top_menu .login .menu {
  clear: right;
}

#top_menu .menu li.newsletter {
  padding-bottom: 0;
  padding-right: 4px;
  box-sizing: border-box;
}

#top_menu .menu li.newsletter:after {
  display: table;
  content: '';
  zoom: 1;
}

#top_menu li.newsletter a {
  margin-bottom: 0;
  display: block;
  text-decoration: none;
  font-size: 14px;
  line-height: 17px;
  text-align: right;
  font-weight: 400;
  font-family: 'Kiro-Regular';
}

#top_menu .menu li, #top_menu .login .menu li {
  display: inline-block;
  padding: 0px 10px;
  line-height: 12px;
}

#top_menu .menu li:last-of-type {
  border-left: 1px solid #000;
}

#top_menu .menu li:first-child {
	border-right: 1px solid #FFF;
}

#top_menu .login .menu li {
  border-left: 1px solid #000 !important;
}

#top_menu .menu li:first-child, #top_menu .menu li:nth-child(2), ∩╗┐#top_menu .menu li#menu-item-979, #top_menu li.newsletter {
  border-left: none !important;
}

#menu-top-menu2 {
  margin-bottom: 5px;
  margin-right: 5px;
}

#menu-top-menu2 li a {
  margin-top: 13px !important;
  width: 27px !important;
  height: 27px;
  background-size: cover;
}

/* =Menu
-------------------------------------------------------------- */
#nav-toggle {
  font-size: 20px;
  text-transform: uppercase;
  color: #1cb5e9 !important;
  line-height: 24px;
  display: block;
  float: right;
  text-decoration: none;
}

#nav-toggle span {
  display: inline-block;
  height: 16px;
  width: 16px;
  background: url(images/menu-icon.gif) no-repeat;
  background-size: cover;
}

#access_wrapper {
  margin-top: 0px;
  overflow: visible;
  background: #42b4e6;
  padding-top: 10px;
  clear: both;
}

#access {
  float: none;
  height: auto;
  margin: 0;
  clear: both;
  	/*ul.menu>li>a[href]:hover{
  		background: none;
  		color: #13B5EA!important;
  
  		-moz-border-top-left-radius: 15px;
  		-o-border-top-left-radius: 15px;
  		-webkit-border-top-left-radius: 15px;
  		-ms-border-top-left-radius: 15px;
  		
  		-moz-border-top-right-radius: 15px;
  		-o-border-top-right-radius: 15px;
  		-webkit-border-top-right-radius: 15px;
  		-ms-border-top-right-radius: 15px;
  		
  		border-top-left-radius: 15px;
  		border-top-right-radius: 15px;
  	}*/
}
#access ul {
  font-size: 18px;
  list-style: none;
  margin: 0em;
  margin-bottom: 0px;
  padding-left: 0;
  float: right;
}
@media screen and (max-width: 1200px) {
  #access ul {
    padding-top: 20px;
    float: none;
  }
}
#access ul.menu > li {
  padding: 0;
  padding-bottom: 0px;
  margin: 0;
}
#access ul.menu > li:first-child {
  margin-left: 0px;
}
#access ul.menu > li:last-child a {
  padding-right: 0;
}
@media screen and (max-width: 1400px) {
	#access ul.menu > li:last-child .sub-menu {
	  left: auto;
	  right: 0;
	}
}
#access ul.menu > li > a {
  font-family: 'Kiro-Bold';
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  #access ul.menu > li > a {
    text-align: left;
    padding: 0;
  }
}
#access ul ul {
  box-shadow: none;
  display: none;
  float: left;
  margin: 0;
  position: absolute;
  top: 20px;
  left: 10px;
  width: 162px;
  z-index: 99999;
  padding: 0px;
  padding-top: 20px;
}
@media screen and (max-width: 1200px) {
  #access ul ul {
    top: 0;
    padding-top: 0;
  }
}
#access ul.sub-menu li {
  padding-top: 0px;
  padding-bottom: 0px;
  width: 100%;
  background-color: #95CEE5;
}
#access ul ul ul {
  left: 99%;
  top: 0;
}
#access ul ul a {
  color: #000 !important;
  font-family: 'Kiro-Bold';
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0px;
  height: auto;
  line-height: 1.4em;
  padding: 10px;
  width: 100%;
  margin: 0px;
}
@media screen and (max-width: 1200px) {
  #access ul ul a {
    text-align: left;
    padding-left: 40px;
  }
}
#access ul a:hover, #access #access ul.menu ul > li.current-menu-item a {
  background: #13B5EA;
  /*transitions*/
  -webkit-transition: background-color .3s, color .3s;
  -o-transition: background-color .3s, color .3s;
  /* Opera */
  -ms-transition: background-color .3s, color .3s;
  -moz-transition: background-color .3s, color .3s;
  transition: background-color .3s, color .3s;
}
#access ul.menu > li > a:hover {
  /*color: #000;*/
  background: none;
}
#access ul.menu > li > a:focus, #access #access ul.menu > li.current-menu-item, #access #access ul.menu > li.current-menu-ancestor, #access #access ul.menu li:hover {
  -moz-border-top-left-radius: 15px;
  -o-border-top-left-radius: 15px;
  -webkit-border-top-left-radius: 15px;
  -ms-border-top-left-radius: 15px;
  -moz-border-top-right-radius: 15px;
  -o-border-top-right-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -ms-border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media screen and (min-width: 1200px) {
  #access ul li:hover > ul {
    display: block;
  }
}
#access ul li.open > ul {
  display: block;
}
#access li {
  float: left;
  position: relative;
  padding: 0;
}
#access a {
  color: #000;
  display: block;
  line-height: 30px;
  text-decoration: none;
  font-weight: normal;
  font-size: 16px;
  padding: 0 20px;
}
@media screen and (max-width: 1550px) {
  #access a {
    padding: 0 15px;
  }
}
#access .menu > ul a {
  font-family: 'Ubuntu', Arial, sans-serif;
}

header {
  background-color: #fff;
  padding-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  header .col-lg-3 {
    width: 20%;
  }
}
header.affix {
  position: fixed;
  z-index: 99;
  width: 100%;
}
header.affix + div {
  height: 100px;
}
header.affix.collected {
  background-color: white;
  -webkit-box-shadow: 0px 1px 7px -1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 7px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 7px -1px rgba(0, 0, 0, 0.5);
}
header.affix.collected #site-title {
  margin-top: 10px;
}
header.affix.collected #site-title.rezerve {
  visibility: hidden;
  position: absolute;
}
header.affix.collected #site-title.rezerve + h1 {
  visibility: visible;
  position: relative;
}
header.affix.collected #top_menu_wrapper {
  padding-top: 10px;
}
header.affix.collected #top_menu {
  display: none;
}
header.affix.collected #access a {
  color: #000;
}
header.affix.collected #access ul ul {
  padding-top: 31px;
}
header #site-title {
  z-index: 9;
  position: relative;
}
header #top_menu li a {
  text-decoration: none;
}
header #top_menu li a span.twitter:before {
  content: "\f081";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #000;
  vertical-align: middle;
}
header #top_menu li a span.linkedin:before {
  content: "\f08c";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #000;
  vertical-align: middle;
}
header #top_menu li a span.facebook:before {
  content: "\f082";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #000;
  vertical-align: middle;
}
header #top_menu li a span.youtube:before {
  content: "\f16a";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #000;
  vertical-align: middle;
}
header #top_menu li a:hover {
  color: #13B5EA;
}
header #top_menu li a:hover span.twitter:before {
  color: #00ACED;
}
header #top_menu li a:hover span.linkedin:before {
  color: #0177B5;
}
header #top_menu li a:hover span.facebook:before {
  color: #4867AA;
}
header #top_menu li a:hover span.youtube:before {
  color: #E32C28;
}
@media screen and (max-width: 1200px) {
  header #top_menu {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  header #access .menu-toggle {
    display: none;
  }
}
header #access .responsive-menu .menu-main-menu-container {
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  header #access .responsive-menu .menu-main-menu-container {
    display: none;
  }
}
header #access .responsive-menu.visible .menu-main-menu-container {
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  header #access .responsive-menu.visible .menu-main-menu-container {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
  header #access li {
    width: 100%;
  }
}

.home header {
  background: transparent;
}
@media screen and (max-width: 1200px) {
  .home header {
    background: #fff;
  }
  .home header #site-title {
    visibility: visible;
    position: relative;
  }
  .home header #site-title.rezerve {
    visibility: hidden;
    position: absolute;
  }
}
.home header #top_menu li:last-of-type {
  border-left: 1px solid #fff;
}
.home header #top_menu li a {
  color: #fff;
}
.home header #top_menu li a span.twitter:before,
.home header #top_menu li a span.linkedin:before,
.home header #top_menu li a span.facebook:before,
.home header #top_menu li a span.youtube:before {
  color: #fff;
}
.home header #top_menu li a:hover {
  color: #13B5EA;
}
.home header #top_menu li a:hover span.twitter:before {
  color: #00ACED;
}
.home header #top_menu li a:hover span.linkedin:before {
  color: #0177B5;
}
.home header #top_menu li a:hover span.facebook:before {
  color: #4867AA;
}
.home header #top_menu li a:hover span.youtube:before {
  color: #E32C28;
}
@media screen and (min-width: 1200px) {
  .home header #access a {
    color: #fff;
  }
}

/* =Footer
----------------------------------------------- */
#footer a {
  color: #fff;
  text-transform: none;
  line-height: 22px;
  font-size: 14px;
  font-family: 'Kiro-Light';
  font-weight: 300;
  display: table;
}
@media screen and (max-width: 992px) {
  #footer a {
    text-align: center;
    margin: auto;
  }
}

#footer ul.menu a:hover {
  text-decoration: none;
}

#footer ul.menu ul.sub-menu a:hover {
  color: #ddd;
  text-shadow: #333 0.1em 0.1em 0.2em;
}

#footer ul.menu {
  margin: 0px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#footer ul#footer3_menu {
  margin-top: 30px;
}

#footer ul.menu > li {
  display: block;
  float: left;
  padding: 0 5px;
  margin-bottom: 10px;
  text-align: left;
}

#footer ul.footer_menu > li {
  float: left;
  padding: 0 5px;
  margin-bottom: 20px;
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 680px) {
  #footer ul.footer_menu > li {
    text-align: center;
  }
}

#footer ul.menu ul.sub-menu {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 0;
}

#footer ul.menu ul.sub-menu li {
  list-style-type: none;
  font-size: 12px;
}

#footer .menu-footer2-container {
  clear: left;
  margin-bottom: 0px;
}

#footer .menu-footer2-container ul.menu li {
  display: block;
  float: left;
  padding: 0 10px;
  margin: 0px;
  border-left: 1px solid #ccc;
  line-height: 12px;
}

#footer .menu-footer2-container ul.menu li a {
  line-height: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  font-family: 'Kiro-Light';
  font-weight: 300;
}
@media screen and (max-width: 922px) {
  #footer .menu-footer2-container ul.menu li a {
    display: block;
  }
}

#footer .menu-footer2-container ul.menu li:first-child {
  border: none;
  padding-left: 0px;
}

#footer .menu-footer2-container ul.menu li.facebook, #footer .menu-footer2-container ul.menu li.twitter, #footer .menu-footer2-container ul.menu li.linkedin, #footer .menu-footer2-container ul.menu li.facebook, #footer .menu-footer2-container ul.menu li.youtube {
  border-left: 0px;
  margin-right: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

#footer li.facebook a, #footer li.twitter a, #footer li.linkedin a, #footer li.youtube a {
  display: block;
  margin-top: -15px;
  width: 45px;
  height: 45px;
  background: url(images/social/Facebook-1.png) no-repeat center center;
}

#footer li.twitter a {
  background-image: url(images/social/Twitter.png);
}

#footer li.linkedin a {
  background-image: url(images/social/Linkedin.png);
}

#footer li.youtube a {
  background-image: url(images/social/Youtube-1.png);
}

.menu ul.menu li.facebook, ul.menu li.twitter, ul.menu li.linkedin, ul.menu li.facebook, ul.menu li.youtube {
  border-left: 0px !important;
  margin-right: 0px !important;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

li.facebook a, li.twitter a, li.linkedin a, li.youtube a {
  display: block;
  margin-top: -15px;
  width: 45px;
  height: 45px;
  background: url(images/social/Facebook-1.png) no-repeat center center;
}

li.twitter a {
  background-image: url(images/social/Twitter.png);
}

li.linkedin a {
  background-image: url(images/social/Linkedin.png);
}

li.youtube a {
  background-image: url(images/social/Youtube-1.png);
}

#footer ul.footer_menu.menu {
  display: table;
  margin-top: 40px;
}
#footer ul.footer_menu.menu > li > a {
  text-transform: uppercase;
  font-family: 'Kiro-Bold';
}
@media screen and (max-width: 770px) {
  #footer ul.footer_menu.menu {
    display: table;
    width: 100%;
    float: none;
    clear: both;
    margin-top: 0;
  }
  #footer ul.footer_menu.menu li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  #footer ul.footer_menu.menu > li {
    margin-top: 20px;
  }
}
#footer .topsection {
  background-color: #333333;
  text-align: center;
}
#footer .topsection .footer-logo {
  margin-top: 40px;
  max-width: 200px;
  width: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#footer .topsection .footer-logo:hover {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
}
#footer .bottomsection {
  background-color: #3B3B3B;
  padding: 10px 0;
  padding-bottom: 35px;
}
#footer #social_menu {
  float: right;
  margin: 0 !important;
}
#footer #social_menu li {
  margin-left: 10px !important;
}
#footer #social_menu li a {
  text-decoration: none;
}
#footer #social_menu li a span.twitter:before {
  content: "\f081";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #fff;
  vertical-align: middle;
}
#footer #social_menu li a span.linkedin:before {
  content: "\f08c";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #fff;
  vertical-align: middle;
}
#footer #social_menu li a span.facebook:before {
  content: "\f082";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #fff;
  vertical-align: middle;
}
#footer #social_menu li a span.youtube:before {
  content: "\f16a";
  font-family: 'FontAwesome';
  font-size: 24px;
  color: #fff;
  vertical-align: middle;
}
#footer #social_menu li a:hover {
  color: #13B5EA;
}
#footer #social_menu li a:hover span.twitter:before {
  color: #00ACED;
}
#footer #social_menu li a:hover span.linkedin:before {
  color: #0177B5;
}
#footer #social_menu li a:hover span.facebook:before {
  color: #4867AA;
}
#footer #social_menu li a:hover span.youtube:before {
  color: #E32C28;
}
@media screen and (max-width: 992px) {
  #footer #social_menu {
    float: none;
    clear: both;
    text-align: center;
    display: inline-block;
  }
  #footer #social_menu li {
    display: inline-block;
  }
}
@media screen and (max-width: 992px) {
  #footer #footer2_menu {
    display: inline-block;
  }
  #footer #footer2_menu li {
    width: 100%;
    border: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  #footer .menu-footer2-container,
  #footer .menu-social-container {
    text-align: center;
  }
}
#footer .menu-footer3-container {
  float: none;
  clear: both;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
  #footer .menu-footer3-container {
    display: table;
  }
}
#footer .menu-footer3-container #footer3_menu li {
  padding: 0;
}
#footer .menu-footer3-container #footer3_menu li a {
  padding: 0 10px;
}
#footer .menu-footer3-container #footer3_menu li:first-of-type a {
  padding-left: 0;
}
#footer .menu-footer3-container #footer3_menu li:last-of-type a {
  border-left: 1px solid #fff;
}
#footer #copyright {
  clear: both;
  padding: 0;
  font-size: .8em;
  margin-top: 10px;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 992px) {
  #footer #copyright {
    text-align: center;
  }
}

.productsection {
  position: relative;
  z-index: 1;
}
.productsection .background1 {
  background-size: cover !important;
}
.productsection .background2 {
  background: url("./images/diagram2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.productsection .sub-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}
.productsection .sub-title h2 {
  font-family: 'Kiro-Thin';
  font-size: 48px;
  font-weight: 200;
  color: #fff;
}
@media screen and (max-width: 570px) {
  .productsection .sub-title h2 {
    font-size: 36px;
  }
}
.productsection .nav-tabs {
  border: 0;
  margin: 0;
  margin-bottom: 0;
}
.productsection .nav-tabs > li {
  margin-bottom: 0;
  min-width: 0 !important;
  float: none;
}
.productsection .nav-tabs > li.active:nth-child(2n-1) a {
  background-color: rgba(19, 181, 234, 0.75);
}
.productsection .nav-tabs > li.active:nth-child(2n-2) a {
  background-color: rgba(120, 182, 0, 0.75);
}
@media screen and (min-width: 992px) {
  .productsection .nav-tabs > li:last-of-type a {
    margin: 0;
  }
}
.productsection .nav-tabs > li a {
  font-family: 'Kiro-Bold';
  font-size: 16px;
  color: #fff;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 0;
  text-align: center;
  margin-right: 1px;
  border-radius: 0;
}
.productsection .nav-tabs > li a:focus, .productsection .nav-tabs > li a:active, .productsection .nav-tabs > li a:hover {
  border: 0;
  outline: 0;
  color: #fff;
  text-decoration: none;
}
.productsection .nav-tabs > li:nth-child(2n-1) a:hover {
  background-color: rgba(19, 181, 234, 0.75);
}
.productsection .nav-tabs > li:nth-child(2n-2) a:hover {
  background-color: rgba(120, 182, 0, 0.75);
}
@media screen and (max-width: 992px) {
  .productsection .nav-tabs > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
  }
  .productsection .nav-tabs > li a {
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .productsection .nav-tabs > li:first-child {
    width: 266px;
  }
}
@media screen and (min-width: 992px) {
  .productsection .nav-tabs {
    display: table;
    width: 100%;
  }
  .productsection .nav-tabs > li {
    display: table-cell;
    vertical-align: baseline;
  }
}
.productsection .tab-pane {
  padding: 40px 150px;
}
@media screen and (max-width: 700px) {
  .productsection .tab-pane {
    padding: 40px;
  }
}
.productsection .tab-pane:first-of-type {
  padding: 0;
}
.productsection .tab-pane:nth-child(2n-1) {
  background-color: rgba(19, 181, 234, 0.75);
}
.productsection .tab-pane:nth-child(2n-2) {
  background-color: rgba(120, 182, 0, 0.75);
}
.productsection .tab-pane h2 {
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
}
.productsection .tab-pane p {
  font-family: 'Kiro-Regular';
  font-size: 16px;
  text-align: left;
  color: #fff;
  font-weight: 400;
}
.productsection .tab-pane a {
  text-align: left;
  color: #fff;
}
.productsection .tab-pane a:hover {
  color: darkern(#fff, 10%);
  text-decoration: none;
}
.productsection .tab-pane .enterprise-product {
  padding-top: 15px;
  padding-bottom: 15px;
}
.productsection .tab-pane .enterprise-product:nth-child(2n-1) {
  background-color: rgba(19, 181, 234, 0.75);
}
.productsection .tab-pane .enterprise-product:nth-child(2n-2) {
  background-color: rgba(120, 182, 0, 0.75);
}
@media screen and (min-width: 992px) {
  .productsection .tab-pane .tab-pane-body {
    display: table;
    width: 100%;
    height: 100%;
  }
  .productsection .tab-pane .tab-pane-body .enterprise-product {
    float: none;
    display: table-cell;
    vertical-align: top;
    height: 100% !important;
  }
}

.banner-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("images/banner.jpg");
  text-align: center;
  margin-top: -150px;
  overflow: hidden !important;
  padding-top: 250px;
  padding-bottom: 150px;
  position: relative;
}
.banner-section video {
  width: 100%;
  position: absolute;
  display: block;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  margin: auto;
}
.banner-section .gif {
  background: transparent url("images/lines02.gif") no-repeat center center;
  background-size: cover;
  height: 605px;
  width: 100%;
  opacity: 0.15;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
  filter: alpha(opacity=15);
  position: absolute;
  top: -90px;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .banner-section .gif {
    display: none;
  }
}
.banner-section .container {
  min-height: 250px;
  position: relative;
  z-index: 5;
}
.banner-section h2 {
  font-family: 'Kiro-Thin';
  font-weight: 200;
  font-size: 100px;
  color: #fff;
  display: none;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.banner-section h3 {
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  color: #fff;
  display: none;
  letter-spacing: 0.7px;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}
.banner-section a {
  color: #fff;
  display: none;
}
.banner-section a button {
  border: 1px solid #fff;
  margin-top: 40px;
  padding: 10px 30px;
}
@media screen and (max-width: 992px) {
  .banner-section video {
    display: none !important;
  }
  .banner-section h2 {
    font-size: 62px;
  }
  .banner-section h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 570px) {
  .banner-section h2 {
    font-size: 32px;
  }
  .banner-section h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .banner-section {
    margin-top: 0;
    padding-top: 150px;
  }
}
@media screen and (max-width: 992px) {
  .banner-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 700px) {
  .banner-section {
    padding-top: 10px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 460px) {
  .banner-section video {
    height: 100%;
    width: auto;
  }
}

.bottom-yellow-bar.product .yellow-left {
  width: 10%;
}
@media screen and (max-width: 1500px) {
  .bottom-yellow-bar.product .yellow-left {
    width: 0;
  }
}

.section-3 {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 0;
}
.section-3 h2 {
  font-family: 'Kiro-Bold';
  font-size: 28px;
  line-height: 39px;
  letter-spacing: 0px;
  font-weight: normal;
  color: #fff;
  margin: 0;
}
.section-3 h3 {
  font-family: 'Kiro-Light';
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0px;
  font-weight: 300;
  color: #fff;
  margin: 0;
}
.section-3 p {
  font-family: 'Kiro-Regular';
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
}
.section-3 a button {
  border: 1px solid #fff;
  color: #fff;
  margin-top: 20px;
  margin-right: 10px;
}
.section-3 .image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
}
.section-3 .image img {
  margin: auto;
}
.section-3 .image a {
  position: relative;
  display: table;
}
.section-3 .image a:before {
  content: "\f16a";
  position: absolute;
  font-size: 55px;
  line-height: 0.5;
  font-family: "FontAwesome";
  color: #000;
  background-color: #fff;
  width: 40px;
  height: auto;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
}
.section-3 .image a:hover:before {
  color: red;
}

.section-6 {
  padding: 40px 0;
}
.section-6 h2 {
  font-family: 'Kiro-Thin';
  line-height: 47px;
  text-align: left;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #005596;
  font-size: 36px;
  font-weight: 200;
}
.section-6 p {
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  margin-bottom: 0;
  margin-top: 20px;
}
.section-6 a {
  text-decoration: none;
}
.section-6 button {
  border: 1px solid #D7D7D7;
  color: #000;
  margin-right: 10px;
}
.section-6 button:hover {
  color: #fff;
}
.section-6 img {
  width: 100%;
  max-width: 130px;
}
.section-6 .same-section:nth-child(2) {
  min-height: 430px;
  border-right: 1px solid #D7D7D7;
}
@media screen and (max-width: 992px) {
  .section-6 .same-section:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .section-6 .same-section {
    margin-bottom: 40px;
  }
}

.events-section {
  padding: 20px 0;
  text-align: center;
}
.events-section h2 {
  font-size: 48px;
  line-height: 58px;
  color: #005596;
  font-family: 'Kiro-Thin';
  text-align: center;
  margin-top: 15px;
  font-weight: 300;
}
@media screen and (max-width: 570px) {
  .events-section h2 {
    font-size: 36px;
  }
}
.events-section .tab-pane {
  text-align: left;
}
.events-section .tab-pane div {
  margin-bottom: 40px;
}
.events-section .tab-pane div:last-of-type {
  text-align: center;
}
.events-section .tab-pane h4 {
  color: #13B5EA;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  margin-bottom: 10px;
}
.events-section .tab-pane p {
  font-size: 16px;
  text-align: left;
  line-height: 22px;
  font-family: 'Kiro-Light';
  font-weight: 300;
}
.events-section .tab-pane a {
  font-size: 16px;
  text-align: left;
  line-height: 26px;
  color: #13B5EA;
  font-family: 'Kiro-Regular';
  font-weight: 400;
}
.events-section .tab-pane a button {
  color: #000;
  border: 1px solid #D7D7D7;
  padding: 10px 40px;
  margin: 0;
}
.events-section .tab-pane a button:hover {
  color: #fff;
}
.events-section .nav-tabs {
  display: inline-block;
  margin: auto;
  border: 0;
  margin-bottom: 20px;
}
.events-section .nav-tabs li a {
  border: 0;
  color: #000;
  font-family: 'Kiro-Bold';
  font-size: 16px;
  line-height: 24px;
  padding: 10px 30px;
}
.events-section .nav-tabs li a i {
  color: #000;
  display: block;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}
.events-section .nav-tabs li a:active, .events-section .nav-tabs li a:focus {
  border: 0;
  outline: 0;
  text-decoration: none;
}
.events-section .nav-tabs li a:hover {
  color: #13B5EA;
  background: none;
  border: 0;
  border-bottom: 1px solid #13B5EA;
}
.events-section .nav-tabs li a:hover i {
  color: #13B5EA;
}
.events-section .nav-tabs li.active a {
  border-bottom: 1px solid #13B5EA;
  color: #13B5EA;
}
.events-section .nav-tabs li.active a i {
  color: #13B5EA;
}
@media screen and (max-width: 770px) {
  .events-section .nav-tabs li {
    width: 100%;
  }
}

.section-7 {
  padding-bottom: 20px;
  padding-top: 40px;
}
.section-7 a button {
  color: #000;
  border: 1px solid #D7D7D7;
  padding: 10px 40px;
  margin-bottom: 40px;
}
.section-7 a button:hover {
  color: #fff;
}
.section-7 h2 {
  line-height: 47px;
  text-align: left;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #005596;
  font-size: 36px;
  font-family: 'Kiro-Thin';
  font-weight: 200;
}
.section-7 p {
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  margin-bottom: 0;
}
.section-7 .home-webinars h4 {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
  text-align: left;
  padding: 0;
}
.section-7 .home-webinars p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 16px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
  margin-bottom: 15px;
}
.section-7 .home-webinars a {
  color: #13B5EA;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  line-height: 22px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  padding-top: 10px;
  font-family: 'Kiro-Bold';
}

/**
 * 404 Styles
 */
.no-results,
.error-404 {
  margin-top: 100px;
}
.no-results p,
.error-404 p {
  text-align: center;
}

.tribe_bottom_background.university .padding-left {
  padding-left: 0px;
  padding-right: 28px;
}
.tribe_bottom_background.university .padding-right {
  padding-right: 15px;
}
@media screen and (max-width: 995px) {
  .tribe_bottom_background.university .padding-right {
    padding-left: 0px;
  }
  .tribe_bottom_background.university .padding-left .paragraf {
    margin: 0px;
  }
}

.schedule_page .banner .container h2 {
  font-family: 'Kiro-Thin';
  font-weight: normal;
}
.schedule_page .banner .container h2 strong {
  font-family: 'Kiro-Regular';
}
@media screen and (min-width: 992px) {
  .schedule_page .schedule {
    padding-bottom: 240px !important;
  }
}

.course-registration .h2 {
  margin-bottom: 15px;
}
.course-registration .button-right .col-md-3 {
  text-align: center;
}
.course-registration .button-right .col-md-3 .price-blue {
  color: #13B5EA;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
}
@media screen and (max-width: 992px) {
  .course-registration .button-right .col-md-3 .price-blue {
    line-height: 50px;
  }
}
.course-registration .button-right a {
  text-decoration: none;
}
.course-registration .button-right button {
  background-color: transparent;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  line-height: 35px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 13px;
  font-family: 'Kiro-Bold';
  padding: 0 40px;
  font-weight: 600;
  margin-top: 10px;
}
/* Courses Registration changes */
.course-registration .button-right.new button {
  line-height: 1.4;
  font-size: 12px;
  width: 122px;
  padding: 3px 9px;
  letter-spacing: 0.1px;
  margin-top: 0;
  font-weight: 400;
}
.course-registration .button-right.new a {
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 35px;
  display: inline-block;
  float: left;
}
@media screen and (max-width: 1200px){
  .course-registration .button-right.new a {
    margin-left: 20px;
	margin-right: 0px;
	margin-top: 5px;
	margin-bottom: 35px;
  }
}
.course-registration .button-right.new hr {
  width: 84%;
}
@media screen and (max-width: 1200px){
  .course-registration .button-right.new hr {
    width: 100%;
    margin-top: 10px;
  }
}
.course-registration .button-right.new button.blue {
  color: #fff;
  background-color: #13B5EA;
  border: 1px solid #13B5EA;
}
.course-registration .button-right.new button.blue:hover {
  background-color: #005596;
}
.course-registration .button-right.new .padding-right {
  padding-right: 50px;
}
@media screen and (max-width: 1530px){
  .course-registration .button-right.new .padding-right {
	width: 64%;
  }
}
@media screen and (max-width: 1200px){
  .course-registration .button-right.new .padding-right {
	width: 100%;
  }
}
.course-registration .button-right.new .buttons {
  padding-left: 0;
  padding-right: 0;
  margin-left: -5px;
  margin-right: -5px;
}
@media screen and (max-width: 1530px){
  .course-registration .button-right.new .buttons {
	width: 36%;
  }
}
@media screen and (max-width: 1200px){
  .course-registration .button-right.new .buttons {
	width: 100%;
  }
}
.course-registration p {
  margin-bottom: 5px;
}
.course-registration .padding-left {
  padding-left: 0px;
}
@media screen and (max-width: 992px){
  .course-registration .padding-left {
    padding-right: 0px;
  }
}
.course-registration .padding-right {
  padding-right: 0px;
  margin-bottom: 10px;
}
.course-registration .padding-right {
  padding-right: 3px;
}
.course-registration .padding-right .paragraf {
  margin: 0;
  padding: 0;
}
.course-registration .padding-r {
  padding-right: 5px;
}
.course-registration .padding-r .paragraf {
  margin: 0;
  padding: 0;
}
.course-registration .padding-r .p-medium {
  padding-right: 6px !important;
}
@media screen and (max-width: 992px) {
  .course-registration .button-right button {
    float: left;
    margin-bottom: 20px;
  }
  .course-registration .padding-r {
    padding-left: 0px;
  }
}
/* Courses Registration changes */
.tribe-events-single-event-description.online-training .gform_heading{
	display: none;
}
.tribe-events-single-event-description.online-training .gfield_product_116_12{
	display: none;
}
.tribe-events-single-event-description.online-training .gfield_option_116_12 > label {
	margin-bottom: 0!important;
}
.tribe-events-single-event-description.online-training .gfield.hidden-label > label {
	display: none;
}
.tribe-events-single-event-description.online-training .gfield_radio input {
	float: left;
	margin-right: 1px;
    margin-top: 8px!important;
}
.tribe-events-single-event-description.online-training .gfield_checkbox label {
	font-family: "Kiro-Light";
	font-size: 16px;
}
.tribe-events-single-event-description.online-training .gfield_radio label {
	float: left;
	font-weight: normal!important;
	font-size: 16px;
    font-family: "Kiro-Light";
}
.tribe-events-single-event-description.online-training .gfield_radio label i {
	position: absolute;
	left: 18px;
    bottom: 0px;
	font-size: 15px;
}
.tribe-events-single-event-description.online-training .gfield_radio label .ginput_price {
	display: inline;
}
.tribe-events-single-event-description.online-training .gfield_radio li:last-child {
	padding-bottom: 20px!important;
}
.tribe-events-single-event-description.online-training .gfield_radio div {
	display: inline;
	color: #888;
}
.tribe-events-single-event-description.online-training .gfield_checkbox input {
	margin-right: 5px;
}
.tribe-events-single-event-description.online-training .gfield_checkbox label {
	font-weight: normal!important;
}
.tribe-events-single-event-description.online-training .shipping_label {
    font-family: "Kiro-Light";
    color: #005596;
    font-size: 24px;
    font-weight: normal;
    padding-top: 15px;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid #13b5ea;
    margin-top: 15px;
}

.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right input[type=text],
.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right input[type=url],
.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right input[type=email],
.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right input[type=tel],
.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right input[type=number],
.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right input[type=password],
.tribe-events-single-event-description .gform_wrapper .ginput_complex .ginput_right select {
  width: 97% !important;
}
.tribe-events-single-event-description .gform_heading {
  margin-bottom: 5px !important;
}
.tribe-events-single-event-description .gform_heading .gform_description {
  color: #005596;
  font-family: "Kiro-Light";
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 3px;
}
.tribe-events-single-event-description .populate-price .gfield_label {
  color: #000 !important;
  font-family: "Kiro-Light" !important;
  font-size: 24px !important;
  font-weight: normal !important;
}
.tribe-events-single-event-description .populate-price .ginput_container {
  margin-bottom: 20px;
}
.tribe-events-single-event-description .populate-price .ginput_container .ginput_product_price_label,
.tribe-events-single-event-description .populate-price .ginput_container .ginput_product_price {
  font-family: "Kiro-Light";
  color: #005596;
  font-size: 24px;
  font-weight: normal;
}
.tribe-events-single-event-description .gfield.populate-dates {
  border-top: 1px solid #13b5ea;
}
.tribe-events-single-event-description .gfield.populate-dates .gfield_label {
  font-family: "Kiro-Light";
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  padding-top: 10px;
  margin-bottom: 17px;
}
.tribe-events-single-event-description .gfield.populate-dates select {
  width: 27% !important;
  font-size: 13px;
  height: 30px;
  margin-bottom: 10px;
}
.tribe-events-single-event-description .gfield.populate-dates + .gfield {
  border-top: 1px solid #13b5ea;
  border-bottom: 1px solid #13b5ea;
  margin-top: 15px;
  margin-bottom: 15px;
}
.tribe-events-single-event-description .gfield.populate-dates + .gfield .gfield_label {
  font-family: "Kiro-Light";
  color: #005596;
  font-size: 24px;
  font-weight: normal;
  padding-top: 17px;
  margin-bottom: 17px;
}
.tribe-events-single-event-description .gfield.populate-dates + .gfield .ginput_container {
  margin-bottom: 30px;
}
.tribe-events-single-event-description .gfield_contains_required .gfield_label {
  font-family: "Kiro-Light";
  font-size: 18px;
  color: #000;
  text-align: left;
  font-weight: normal !important;
}
.tribe-events-single-event-description .gfield_contains_required + .gfield .gfield_label {
  font-family: "Kiro-Light";
  font-size: 18px;
  color: #000;
  text-align: left;
  font-weight: normal !important;
}
.tribe-events-single-event-description textarea {
  max-width: 554.5px;
  background-color: transparent;
  height: 152px !important;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #ccc;
}
.tribe-events-single-event-description textarea:focus {
  box-shadow: none !important;
}
.tribe-events-single-event-description input[type="text"],
.tribe-events-single-event-description input[type="email"] {
  background-color: transparent;
  height: 25px !important;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #ccc;
}
.tribe-events-single-event-description input[type="text"]:focus,
.tribe-events-single-event-description input[type="email"]:focus {
  box-shadow: none !important;
}
.tribe-events-single-event-description input[type="tel"] {
  background-color: transparent;
  height: 25px !important;
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #ccc;
}
.tribe-events-single-event-description input[type="tel"]:focus {
  box-shadow: none !important;
}

.tribe-events-single-event-description {
  border-bottom: 1px solid #13b5ea;
}

.gform_footer {
  margin: 0px !important;
  padding-bottom: 0px !important;
}
.gform_footer input[type="submit"] {
  margin-top: 60px;
}
@media screen and (max-width: 992px) {
  .gform_footer {
    padding-bottom: 60px !important;
  }
}

.policy {
  max-width: 610px;
  font-family: "Kiro-Light";
  font-size: 16px;
  line-height: 21px;
  margin-top: 30px;
  min-height: 50px;
}
.policy p {
  margin-bottom: 55px;
}
.policy strong {
  color: #005596;
  font-family: "Kiro-Bold";
  font-weight: normal;
}

.gform_wrapper {
  max-width: 100% !important;
}

.event-meta-email a {
  text-decoration: none;
  color: #000;
}

@media screen and (max-width: 992px) {
  .tribe-events-meta-group.col-md-4 {
    padding-left: 0px;
    border-left: 0px !important;
  }
}
.background-line {
  background-size: cover !important;
  min-height: 235px;
}

.event-description .description {
  font-family: 'Kiro-Light';
  font-size: 24px;
  line-height: 38px;
  color: #fff;
  padding-right: 50px;
  margin: 0;
}
.event-description .description strong {
  color: #005596;
  text-transform: uppercase;
  font-family: 'Kiro-Regular';
  font-weight: normal;
}

@media screen and (max-width: 992px) {
  .event-description .description {
    font-size: 15px;
    padding: 20px;
    line-height: 20px;
    padding-top: 25px;
  }

  .gform_footer input[type="submit"] {
    margin-top: 80px;
    float: left !important;
  }

  .policy {
    float: left;
  }
}
.banner.events .description {
  font-size: 35px;
  font-weight: 200;
  line-height: 49px;
  text-align: center;
  font-family: 'Kiro-Thin';
  color: #fff;
  margin-top: 70px;
}
.banner.events .description p {
  margin: 0px !important;
}
.banner.events .description strong {
  font-family: 'Kiro-Regular';
  font-weight: normal;
}
.banner.events .description i {
  font-style: normal;
  padding: 0px 28px;
}
@media screen and (max-width: 700px) {
  .banner.events .description {
    font-size: 24px;
    line-height: 27px;
  }
}

.container.event {
  margin-top: 40px !important;
}
.container.event .h6 {
  color: #005596;
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  font-family: 'Kiro-Bold';
}
.container.event hr {
  background-color: #13B5EA;
}
.container.event .event-label {
  font-size: 24px !important;
  line-height: 38px;
  text-align: left;
  color: #005596;
  font-family: 'Kiro-Regular';
  font-weight: normal;
}
.container.event h3 {
  font-size: 24px !important;
  line-height: 38px;
  text-align: left;
  color: #005596;
  font-family: 'Kiro-Regular';
  font-weight: normal;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.container.event .box {
  display: block;
  text-align: left;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  padding: 5px;
}
.container.event .box p {
  margin: 0;
}
.container.event .box .day {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  display: inline;
}
.container.event .box .mounth {
  font-family: 'Kiro-Light';
  color: #005596;
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline;
}
.container.event .box .year {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  display: inline;
}
.container.event .box .separator {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  display: inline;
  text-transform: lowercase;
}
.container.event .p-large {
  color: #000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  line-height: 34px;
  text-align: left;
  list-style: none;
  position: relative;
  margin-left: 30px;
  margin-bottom: 10px;
}
.container.event .p-large:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 100%;
  position: absolute;
  left: -13px;
  top: 17px;
}
.container.event .blue_label {
  margin-bottom: 15px;
}
.container.event .blue_label .gfield_label {
  color: #13B5EA;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 30px !important;
  text-align: left;
  font-weight: normal !important;
}
.container.event .blue_label input {
  background-color: #fff;
  height: 30px;
}
.container.event .blue_label .ginput_container {
  font-family: 'Kiro-Light';
  font-size: 18px;
  text-align: left;
  font-weight: normal;
}
.container.event .blue_label .ginput_container select {
  font-family: 'Kiro-Light';
  font-size: 18px;
  text-align: left;
  font-weight: normal;
  padding: 0px;
}
.container.event .black_label .gfield_label {
  font-family: 'Kiro-Light';
  color: #000;
  font-size: 21px;
  line-height: 34px;
  text-align: left;
  font-weight: normal !important;
  margin-top: 0;
}
.container.event .black_label input {
  background-color: #fff;
  height: 30px;
  border-radius: 7px;
}
.container.event .black_label textarea {
  background-color: #fff;
  height: 150px;
  border-radius: 7px;
  margin-bottom: 40px;
}
.container.event .tribe-events-button,
.container.event .gform_footer.top_label input[type="submit"] {
  font-family: 'Kiro-Bold' !important;
  font-weight: normal !important;
  color: #fff !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  letter-spacing: 1px !important;
  background-color: #13B5EA !important;
  border-radius: 0px !important;
  padding: 8px 45px;
  height: auto;
  border: 1px solid #13B5EA;
  float: right;
}
.container.event .tribe-events-button:hover,
.container.event .gform_footer.top_label input[type="submit"]:hover {
  background-color: #005596 !important;
}
.container.event .tribe-events-button {
  padding: 11px 30px !important;
}

.tribe-events-gcal,
.tribe-events-ical {
  display: none !important;
}

#gform_wrapper_93 {
  max-width: 100%;
}

/* Courses Registration changes */
.tribe-events-meta-group.small-text .event-label, .tribe-events-meta-group.small-text dd{
	font-size: 18px!important;
    line-height: 22px!important;
    margin-bottom: 0px!important;
}

.tribe-events-meta-group dt {
  width: auto !important;
  margin-right: 10px;
}
.tribe-events-meta-group dd {
  margin-bottom: 10px !important;
  margin-left: 0px !important;
  font-family: "Kiro-Light" !important;
  font-size: 24px !important;
  line-height: 38px !important;
}
@media screen and (max-width: 400px) {
  .tribe-events-meta-group dd {
    font-size: 18px !important;
  }
}
.tribe-events-meta-group p {
  font-family: "Kiro-Light";
  max-width: 600px;
  font-size: 18px;
  color: #000;
  line-height: 29px;
  margin-bottom: 10px;
}

.tribe-events-meta-group.col-md-4 {
  padding-bottom: 30px;
}

#tribe-events .banner .container h2 {
  font-family: 'Kiro-Thin';
  font-weight: normal;
  position: absolute;
  top: -215px;
  left: 15px;
  right: 15px;
}
#tribe-events .banner .container h2 b {
  font-family: 'Kiro-Regular';
  font-weight: bold;
}

.about .feature-video a {
  position: relative;
  display: table;
  text-decoration: none;
}
.about .feature-video a:before {
  content: "";
  background: transparent url("./images/play_button02.png") no-repeat center top;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  top: 37%;
  left: 40%;
  width: 66px;
  height: 63px;
}
.about .feature-video a:hover {
  text-decoration: none;
}
.about .feature-video a:hover:before {
  text-decoration: none;
  background-position: bottom;
}
.about .feature-video .alignright {
  margin: 0px;
}
@media screen and (max-width: 500px) {
  .about .feature-video .alignright {
    max-width: 300px;
  }
}
.about .about-logo {
  width: 358px;
  height: 77px;
  margin-top: 32px;
}
.about .alignnone {
  margin-top: 25px;
  margin-left: 7px;
}
@media screen and (max-width: 992px) {
  .about .alignnone {
    margin-top: 0px !important;
  }
}
.about .col-md-8 {
  padding-right: 15px;
  padding-left: 0px;
}
.about .col-md-4 {
  padding-right: 0px;
}
.about .row {
  margin-bottom: 50px;
}
.about .p-large {
  padding-right: 18px;
}
.about .p-medium {
  padding-right: 5px;
}
@media screen and (max-width: 991px) {
  .about .about-logo {
    margin-top: 0px;
  }
  .about .col-md-4 {
    padding-left: 0px;
  }
  .about .col-md-4 .col-md-12 {
    padding-left: 0px;
  }
  .about .alignright {
    float: left;
    margin: 0;
  }
  .about .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  .about .row .col-md-12 {
    padding-left: 0;
  }
}

.registration .gf_page_steps {
  font-family: 'Kiro-Light';
  text-align: left;
  font-size: 24px;
  line-height: 38px;
  color: #005596;
}
.registration .button {
  background-color: #13b5ea;
  border: 0px none;
  border-radius: 0px;
  color: white;
  font-family: "Kiro-Bold";
  letter-spacing: 1px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 30px;
  padding-right: 30px;
}

.over .description {
  margin-top: 58px !important;
  margin-bottom: 0px;
}
.over .btn {
  margin-top: 10px;
}
.over .image {
  min-height: 310px;
}

.overview strong {
  font-family: 'Kiro-Bold';
  font-weight: normal;
}
.overview .video a {
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
}
.overview .video a:after {
  content: "";
  background: transparent url("./images/play_button02.png") no-repeat center top;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  top: 35%;
  left: 40%;
  width: 66px;
  height: 63px;
}
.overview .video a:hover:after {
  background-position: center bottom;
}
.overview .title-small {
  font-family: 'Kiro-Bold';
  font-size: 18px;
  color: #005596;
  margin-bottom: 10px;
}
.overview .left-down p {
  margin-bottom: 10px !important;
}
.overview .register-btn {
  font-family: 'Kiro-Bold';
  font-weight: normal;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  background-color: #13B5EA;
  border-radius: 0px;
  padding: 10px 30px;
  height: auto;
  border: 1px solid #13B5EA;
  margin-top: 15px;
  margin-bottom: 15px;
}
.overview .register-btn:hover {
  background-color: #005596;
  border: 1px solid #005596;
}
.overview .h2 {
  margin-top: 0px;
}
.overview .col-md-8 .paragraf {
  padding-right: 25px;
}
.overview .col-md-4 .paragraf {
  padding-right: 10px;
}
.overview .paragraf.p-medium {
  padding-bottom: 0px;
  margin-bottom: 0px;
  padding-right: 26px;
}

#overview .overview .btn-info{
  color: #fff;
  background-color: #13B5EA;
}

#overview .overview .btn-info:hover {
  background-color: #005596;
}

body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html.html_product ul,
body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html.html_product ul {
  margin: 0 !important;
}

body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html.html_product ul ul,
body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html.html_product ul ul {
  margin: 0 !important;
  margin-left: 40px !important;
}

.purchase-calcit .html_product {
  margin-bottom: 40px !important;
}
.purchase-calcit .html_product .title {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 22px;
  text-align: left;
  font-weight: normal;
  margin: 0;
}
.purchase-calcit .html_product .sub_title {
  color: #000;
  font-family: 'Kiro-Light';
  font-size: 22px;
  text-align: left;
  font-weight: normal;
  margin: 0;
}
.purchase-calcit .html_product .product {
  color: #000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  text-align: left;
  font-weight: normal;
  margin: 0;
}
.purchase-calcit .html_product .description {
  color: #757575;
  font-family: 'Kiro-Light';
  font-size: 18px;
  text-align: left;
  font-style: italic;
  font-weight: normal;
  margin: 0;
}
.purchase-calcit .ginput_container.ginput_container_singleproduct {
  display: inline-block;
  margin-left: 10px;
}
.purchase-calcit .description-product {
  font-family: 'Kiro-Light';
  font-size: 16px;
  margin: 0;
  color: #A6A6A6;
  margin-left: 26px !important;
  font-weight: 300;
  max-width: 290px;
  margin-top: 0px !important;
}
.purchase-calcit ul .subscription-options label {
  font-family: 'Kiro-Light';
  font-size: 21px !important;
}
.purchase-calcit ul .subscription-options > label {
  display: none !important;
}
.purchase-calcit ul .subscription-options.label {
  padding: 0;
  margin-top: 20px !important;
}
.purchase-calcit ul .subscription-options.label ul label {
  float: left;
  text-align: left;
  color: #000;
  font-weight: 400;
}
.purchase-calcit ul .subscription-options.label > label {
  display: block !important;
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  font-weight: 300 !important;
  line-height: 38px !important;
  text-align: left;
}
.purchase-calcit ul .subscription-options.label > label + div {
  margin: 0;
}
.purchase-calcit ul li {
  display: block;
}
.purchase-calcit ul li label {
  position: relative;
}
.purchase-calcit .gform_wrapper {
  margin: 0;
}
.purchase-calcit .panel.panel-default {
  border: 0;
  box-shadow: none;
}
.purchase-calcit .align-right {
  margin-left: 65px;
}
.purchase-calcit .align-right .h6 {
  margin-top: 45px;
}
.purchase-calcit .align-right .p-medium {
  margin-bottom: 40px;
}
.purchase-calcit .align-right a {
  color: #13B5EA;
  font-family: 'Kiro-Light';
  font-size: 18px;
  text-decoration: none;
}
.purchase-calcit .align-right a:hover {
  text-decoration: none;
}
.purchase-calcit input[type="checkbox"] {
  display: none !important;
}
.purchase-calcit input[type="checkbox"] + label span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #29ABE2;
  background-color: transparent;
  border-radius: 100%;
  position: absolute;
  left: -23px;
  top: 9px;
}
.purchase-calcit input[type="checkbox"]:checked + label {
  color: #29ABE2 !important;
}
.purchase-calcit input[type="checkbox"]:checked + label i {
  color: #29ABE2;
  font-weight: 700;
}
.purchase-calcit input[type="checkbox"]:checked + label span {
  background-color: #29ABE2;
}
.purchase-calcit .panel-title {
  color: #13B5EA;
  font-family: 'Kiro-Light';
  font-size: 26px;
  letter-spacing: 3px;
  text-align: left;
  position: relative;
}
.purchase-calcit .panel-title a {
  text-decoration: none;
  position: relative;
}
.purchase-calcit .panel-title a:hover {
  text-decoration: none;
}
.purchase-calcit .panel-title a:active {
  text-decoration: none;
}
.purchase-calcit .panel-title a:after {
  font-family: "FontAwesome";
  content: "\f107";
  font-size: 25px;
  position: absolute;
  right: -28px;
  top: 0px;
}
.purchase-calcit .panel-body {
  padding-left: 0px;
}
.purchase-calcit .panel-title {
  padding-bottom: 40px;
}
.purchase-calcit .panel-group li {
  font-family: 'Kiro-Light';
  font-size: 21px;
  text-align: left;
}
.purchase-calcit .gform_heading {
  display: none;
}
.purchase-calcit .gfield_label,
.purchase-calcit .product-total {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px !important;
  line-height: 38px !important;
  text-align: left;
  font-weight: normal !important;
}
.purchase-calcit .product-total span {
  color: #000;
  display: block;
  margin-top: 15px;
}
.purchase-calcit h3.product-total {
  position: relative;
  margin-top: 40px;
}
.purchase-calcit h3.product-total:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #13B5EA;
  position: absolute;
  top: -30px;
}
.purchase-calcit .span-right {
  float: right;
  font-family: 'Kiro-Light';
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
  color: #A6A6A6;
  margin-left: 10px;
  margin-top: -3px;
}
.purchase-calcit .gfield_price {
  position: relative;
}
.purchase-calcit .ginput_product_price_label {
  display: none;
}
.purchase-calcit .ginput_product_price {
  color: #13B5EA !important;
  font-family: 'Kiro-Bold';
  font-size: 24px;
}
.purchase-calcit .bold-price {
  color: #13B5EA;
  font-family: 'Kiro-Bold';
}
.purchase-calcit .subscription-text {
  position: relative;
}
.purchase-calcit .support-total {
  position: absolute;
  top: 2px;
  left: 75px;
  font-size: 24px;
  margin: 0;
  display: inline-block;
  margin-left: 20px;
}
.purchase-calcit .product-total {
  display: block;
  margin: 0;
}
.purchase-calcit div.product-total {
  position: absolute;
  top: 0px;
  left: 170px;
}
.purchase-calcit .product-total-price {
  margin-left: 20px;
  display: inline-block;
}
.purchase-calcit .subscription-text strong {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  line-height: 38px !important;
  text-align: left;
  font-weight: normal !important;
}
.purchase-calcit .gform_button.button {
  font-family: 'Kiro-Bold';
  font-weight: normal;
  color: #fff;
  font-size: 13px !important;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  background-color: #13B5EA;
  border-radius: 0px;
  height: auto;
  border: 1px solid #13B5EA;
  margin-top: 15px;
  margin-bottom: 15px;
}
.purchase-calcit .gform_button.button:hover {
  background-color: #005596;
  border: 1px solid #005596;
}
.purchase-calcit .gfield_checkbox {
  margin-top: 10px !important;
  margin: 0 !important;
}
.purchase-calcit .gfield_checkbox li {
  margin: 0 !important;
}
.purchase-calcit .gfield_checkbox label {
  margin-left: 24px !important;
}
@media screen and (max-width: 394px) {
  .purchase-calcit .ginput_product_price {
    left: 0px;
    top: 75px;
  }
}
@media screen and (min-width: 394px) and (max-width: 460px) {
  .purchase-calcit .ginput_product_price {
    left: 0px;
    top: 35px;
  }
}
@media screen and (max-width: 460px) {
  .purchase-calcit .gfield_checkbox label {
    position: relative;
    margin-bottom: 23px !important;
  }
  .purchase-calcit .span-right {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .purchase-calcit .align-right {
    margin-left: 0px;
  }
}

.tabs .images {
  min-height: 310px;
}
.tabs .description {
  margin-top: 60px !important;
  margin-bottom: 0px;
}
.tabs .btn {
  margin-top: 10px;
}

.tabs {
  text-align: center;
  margin-top: -50px;
}
.tabs .nav-tabs {
  display: inline-block;
  border: 0;
  position: relative;
  z-index: 9;
  margin: 0;
  background-color: #F1CB00;
}
.tabs .nav-tabs:before {
  content: "";
  background-image: url("images/yellow-white-left.png");
  position: absolute;
  width: 83px;
  height: 55px;
  left: -80px;
  top: 0;
}
.tabs .nav-tabs:after {
  content: "";
  background-image: url("images/yellow-white-right.png");
  position: absolute;
  width: 83px;
  height: 55px;
  right: -80px;
  top: 0;
}
@media screen and (max-width: 992px) {
  .tabs .nav-tabs:after, .tabs .nav-tabs:before {
    content: none;
  }
}
.tabs .nav-tabs li {
  margin-bottom: -10px;
  margin-top: 10px;
  padding-bottom: 15px;
  margin-left: 47px;
  margin-right: 47px;
  padding-left: 0px;
  padding-right: 0px;
}
.tabs .nav-tabs li:first-of-type {
  margin-left: 0;
}
.tabs .nav-tabs li:last-of-type {
  margin-right: 5px;
}
@media screen and (max-width: 992px) {
  .tabs .nav-tabs li {
    margin-left: 0;
    margin-right: 0;
  }
}
.tabs .nav-tabs li a {
  margin: 0;
  border-radius: 0;
  background-color: transparent;
  color: #000;
  border: 0;
  text-align: center;
  font-size: 21px;
  font-family: 'Kiro-Light';
  font-weight: 300;
  padding: 0;
  padding-top: 10px;
}
.tabs .nav-tabs li a:focus, .tabs .nav-tabs li a:hover {
  background: transparent;
  border: 0;
}
.tabs .nav-tabs li:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.tabs .nav-tabs li:hover:before {
  content: url("images/r1.png");
  position: absolute;
  top: 0;
  left: -73px;
  z-index: 2;
  opacity: .5;
}
.tabs .nav-tabs li:hover:after {
  content: url("images/l1.png");
  position: absolute;
  top: 0;
  right: -73px;
  z-index: 2;
  opacity: .5;
}
@media screen and (max-width: 992px) {
  .tabs .nav-tabs li:hover:after, .tabs .nav-tabs li:hover:before {
    content: none;
  }
}
.tabs .nav-tabs li.active {
  background-color: #fff;
}
.tabs .nav-tabs li.active:before {
  content: url("images/r1.png");
  position: absolute;
  top: 0;
  left: -72px;
  z-index: 2;
  opacity: 1;
}
.tabs .nav-tabs li.active:after {
  content: url("images/l1.png");
  position: absolute;
  top: 0;
  right: -72px;
  z-index: 2;
  opacity: 1;
}
.tabs .nav-tabs li.active a {
  color: #13B5EA;
}
@media screen and (max-width: 992px) {
  .tabs .nav-tabs li.active:after, .tabs .nav-tabs li.active:before {
    content: none;
  }
}
@media screen and (max-width: 992px) {
  .tabs .nav-tabs {
    width: 100%;
  }
  .tabs .nav-tabs li {
    width: 100%;
  }
}

.transparent-btn {
  background-color: rgba(245, 245, 245, 0.8);
  color: #005596;
}
.transparent-btn:hover {
  border-color: #13B5EA;
  background-color: #13b5ea;
  color: #fff;
}

.bottom-yellow-bar.tabs {
  margin-top: -15px;
}
@media screen and (max-width: 992px) {
  .bottom-yellow-bar.tabs {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .bottom-yellow-bar.w0 .yellow-right,
  .bottom-yellow-bar.w0 .yellow-left {
    width: 0;
  }
}
@media screen and (max-width: 1200px) {
  .bottom-yellow-bar .yellow-right.w0,
  .bottom-yellow-bar .yellow-left.w0 {
    width: 0;
  }
}

.fab-8 #gform_wrapper_52 input {
  background-color: transparent;
  height: 25px;
  box-shadow: none !important;
}
.fab-8 #gform_wrapper_52 input:focus {
  outline: 0;
}
.fab-8 #gform_wrapper_52 .gfield {
  font-family: "Kiro-Light";
  font-size: 24px;
  font-weight: normal;
  padding-top: 17px;
  margin-bottom: 17px;
}
.fab-8 #gform_wrapper_52 .gfield_label,
.fab-8 #gform_wrapper_52 .gfield_description {
  font-weight: normal;
  font-family: 'Kiro-Light';
  font-size: 18px;
}
.fab-8 #gform_wrapper_52 .gfield_checkbox li {
  display: inline-block;
  width: 30%;
}
@media screen and (max-width: 670px) {
  .fab-8 #gform_wrapper_52 .gfield_checkbox li {
    width: 100%;
  }
}
.fab-8 #gform_wrapper_52 .gfield_checkbox li label {
  font-weight: normal;
  font-family: 'Kiro-Light';
  font-size: 18px;
}
.fab-8 #gform_wrapper_52 .gfield_checkbox li input {
  margin: 0px;
}
.fab-8 #gform_wrapper_52 input[type=submit] {
  font-family: 'Kiro-Bold';
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  padding-left: 55px;
  padding-right: 55px;
  text-transform: uppercase;
  height: 40px;
  background-color: #13b5ea;
  max-width: 265px;
  margin: 0px;
}
.fab-8 #gform_wrapper_52 input[type=submit]:hover {
  background-color: #005596;
}

.api_chapter.proveit-product,
.api_chapter.pycit-product {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.api_chapter.proveit-product .gform_title,
.api_chapter.proveit-product .entry-title,
.api_chapter.pycit-product .gform_title,
.api_chapter.pycit-product .entry-title {
  display: none;
}
.api_chapter.proveit-product .subscription-text,
.api_chapter.pycit-product .subscription-text {
  margin-top: 20px !important;
  font-family: 'Kiro-Light';
  font-size: 18px;
}
.api_chapter.proveit-product .subscription-text strong,
.api_chapter.pycit-product .subscription-text strong {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  line-height: 38px !important;
  text-align: left;
  font-weight: normal !important;
}
.api_chapter.proveit-product .support-total,
.api_chapter.pycit-product .support-total {
  display: inline-block;
  margin-left: 20px;
}
.api_chapter.proveit-product .support-total,
.api_chapter.proveit-product .product-total,
.api_chapter.pycit-product .support-total,
.api_chapter.pycit-product .product-total {
  color: #13B5EA;
  font-size: 24px;
  font-family: 'Kiro-Bold';
  font-weight: 400;
}
.api_chapter.proveit-product h3.product-total,
.api_chapter.pycit-product h3.product-total {
  display: inline-block;
  border-top: 1px solid #13B5EA;
  padding-top: 15px;
  width: 100%;
}
.api_chapter.proveit-product h3.product-total .product-total-price,
.api_chapter.pycit-product h3.product-total .product-total-price {
  margin-left: 20px;
  display: inline-block;
}
.api_chapter.proveit-product h3.product-total span,
.api_chapter.pycit-product h3.product-total span {
  color: #000;
  display: block;
  margin-top: 20px;
  font-family: 'Kiro-Light';
  font-weight: normal;
}
.api_chapter.proveit-product ul .subscription-options > label,
.api_chapter.pycit-product ul .subscription-options > label {
  display: none !important;
}
.api_chapter.proveit-product ul .subscription-options.label,
.api_chapter.pycit-product ul .subscription-options.label {
  padding: 0;
  margin-top: 20px !important;
  display: block;
}
.api_chapter.proveit-product ul .subscription-options.label > label,
.api_chapter.pycit-product ul .subscription-options.label > label {
  display: inline-block !important;
}
.api_chapter.proveit-product ul .subscription-options.label > label + div,
.api_chapter.pycit-product ul .subscription-options.label > label + div {
  margin: 0;
}
.api_chapter.proveit-product .span-right,
.api_chapter.pycit-product .span-right {
  float: right;
  font-family: 'Kiro-Light';
  font-size: 24px;
  font-style: normal;
  color: #A6A6A6;
  margin-left: 10px;
  margin-top: -3px;
}
.api_chapter.proveit-product input[type="checkbox"]:checked + label,
.api_chapter.pycit-product input[type="checkbox"]:checked + label {
  color: #29ABE2;
}
.api_chapter.proveit-product input[type="checkbox"]:checked + label i,
.api_chapter.pycit-product input[type="checkbox"]:checked + label i {
  color: #29ABE2;
  font-weight: 700;
}
.api_chapter.proveit-product .max-width p,
.api_chapter.pycit-product .max-width p {
  font-size: 21px;
  line-height: 1.7;
}
.api_chapter.proveit-product .size-full,
.api_chapter.pycit-product .size-full {
  margin-top: 35px;
  margin-bottom: 20px;
}
.api_chapter.proveit-product .description h6,
.api_chapter.pycit-product .description h6 {
  font-family: 'Kiro-Bold';
  font-weight: normal;
  color: #005596;
  font-size: 18px;
  margin-bottom: 10px;
}
.api_chapter.proveit-product .description p,
.api_chapter.pycit-product .description p {
  font-family: 'Kiro-Light';
  font-size: 18px;
  padding-right: 25px;
}
.api_chapter.proveit-product .description p a,
.api_chapter.pycit-product .description p a {
  color: #13B5EA;
}
.api_chapter.proveit-product .ginput_product_price,
.api_chapter.proveit-product .support-total,
.api_chapter.pycit-product .ginput_product_price,
.api_chapter.pycit-product .support-total {
  font-size: 24px;
}
.api_chapter.proveit-product .gfield_checkbox,
.api_chapter.pycit-product .gfield_checkbox {
  margin: 0;
}
.api_chapter.proveit-product .gfield_checkbox label,
.api_chapter.pycit-product .gfield_checkbox label {
  font-family: 'Kiro-Light';
  font-size: 21px;
  margin-left: 10px;
}
.api_chapter.proveit-product .gform_button button,
.api_chapter.pycit-product .gform_button button {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  margin-top: 30px !important;
}
.api_chapter.proveit-product .description-product,
.api_chapter.pycit-product .description-product {
  font-family: 'Kiro-Light';
  font-size: 16px;
  margin: 0;
  color: #A6A6A6;
  margin-left: 26px !important;
  font-weight: 300;
  max-width: 290px;
  margin-top: 0px !important;
}

.location iframe {
  width: 100%;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .single-flowcal_products .info_box .features ul {
    margin-left: 20px;
  }
}
.fab-8 .bottom-yellow-bar .yellow-right {
  width: 40%;
}

/*** Single Product Pages ****/
.single-flowcal_products .entry-header, h4 {
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
  padding: 0px 0px 10px;
}

.single-flowcal_products img.product_logo {
  margin-bottom: 0;
}

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

.flowcal_products {
  padding-top: 50px;
  padding-bottom: 20px;
}
.flowcal_products strong {
  font-weight: 400;
  font-family: 'Kiro-Bold';
}
.flowcal_products hr {
  background: #13B5EA;
}
.flowcal_products h2 {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
}
.flowcal_products p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}
.flowcal_products .product_logo {
  margin-top: 0px;
}
@media screen and (min-width: 992px) {
  .flowcal_products .product_logo img {
    float: right;
  }
}
.flowcal_products .zoom-gallery {
  margin-top: 35px;
}
.flowcal_products .zoom-gallery a img {
  margin-bottom: 40px;
}
.flowcal_products .zoom-gallery a.popup-youtube {
  height: 100%;
  width: auto;
  display: inline-block;
  position: relative;
}
.flowcal_products .zoom-gallery a.popup-youtube:before {
  content: "";
  background: transparent url("./images/play_button02.png") no-repeat center top;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  top: 29%;
  left: 35.5%;
  width: 66px;
  height: 63px;
}
.flowcal_products .zoom-gallery a.popup-youtube:hover:before {
  background-position: bottom;
}
.flowcal_products .info_box {
  clear: both;
  border-bottom: 1px solid #13B5EA;
  padding-bottom: 20px;
}
.flowcal_products .info_box button {
  margin: 0;
  color: #fff;
  background-color: #13B5EA;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Kiro-Bold';
  padding: 7px 37px;
}
.flowcal_products .info_box button:hover {
  background-color: #005596;
}
.flowcal_products .features h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.flowcal_products .features li {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}
.flowcal_products .features .panel {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.flowcal_products .features .panel a {
  border: 0;
  text-decoration: none;
  line-height: 18px;
  font-size: 18px;
  font-family: 'Kiro-Bold';
  color: #005596;
}
.flowcal_products .features .panel a:after {
  content: "\f106";
  font-family: FontAwesome;
  color: #005596;
}
.flowcal_products .features .panel a.collapsed {
  color: #13B5EA;
}
.flowcal_products .features .panel a.collapsed:after {
  content: "\f107";
  color: #13B5EA;
}
.flowcal_products .features .panel a:hover {
  color: #005596;
}
.flowcal_products .features .panel a:hover:after {
  color: #005596;
}
.flowcal_products .features .panel .panel-body {
  padding: 0;
  padding-top: 5px;
}
.flowcal_products .features .panel .panel-body p {
  margin-bottom: 15px;
}

.enterprise .product_logo {
  margin-top: 20px;
}

/*	Annual subscription	*/
.subscription-program .annual-check {
  display: inline-block;
  opacity: 0;
}
.subscription-program .ginput_product_price_label {
  display: inline;
  margin-left: 10px;
  position: relative;
  color: #29ABE2 !important;
  font-family: 'Kiro-Light' !important;
}
.subscription-program .ginput_product_price_label:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  left: -25px;
  top: 5px;
  border: 1px solid #29ABE2;
}
.subscription-program .ginput_product_price_label i.fa {
  display: none;
}
.subscription-program .ginput_product_price_label.active i.fa {
  display: block;
  position: absolute;
  left: -23px;
  top: 6px;
  color: #005596;
  font-size: 12px;
}
.subscription-program .subscription-description {
  margin-left: 27px;
}

.webinars {
  padding: 50px 0;
}
.webinars .text {
  margin-bottom: 40px;
  border-bottom: 1px solid #13B5EA;
}
.webinars .text p {
  margin-bottom: 40px;
}
.webinars .text + div p {
  font-size: 16px;
}
.webinars .right p {
  font-size: 18px;
  line-height: 29px;
}
.webinars .right button {
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: #13B5EA;
  color: #fff;
  text-transform: uppercase;
}
.webinars .right button:hover {
  background-color: #005596;
}
.webinars .right > div {
  margin-bottom: 20px;
  border-bottom: 1px solid #13B5EA;
}
.webinars .right > div:last-of-type {
  border: 0;
}
.webinars p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
  margin-bottom: 15px;
}
.webinars h2 {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
}
.webinars h3 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.webinars h4 {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
  text-align: left;
  padding: 0;
}

.warchives .tab-pane {
  padding: 50px 0;
}
.warchives .tab-pane .color {
  padding: 20px 0;
}
.warchives .tab-pane .color:nth-child(2n-2) {
  background-color: #ECF8FC;
}
.warchives .tab-pane .color i {
  font-size: 32px;
  color: #13B8EB;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.warchives .tab-pane .color i:hover {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
  color: #005596;
}
.warchives .tab-pane .color a {
  display: table;
}
.warchives .tab-pane .color h2 {
  font-size: 24px;
  line-height: 24px;
  color: #005596;
  font-family: 'Kiro-Bold';
  text-align: left;
  margin-bottom: 10px;
}
.warchives .tab-pane .color .video {
  position: relative;
}
.warchives .tab-pane .color .icon {
  position: absolute;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 700px) {
  .warchives .tab-pane .color .icon {
    left: 10px;
  }
}
.warchives .tab-pane .color .content {
  margin-left: 12%;
}
@media screen and (max-width: 992px) {
  .warchives .tabs {
    margin-top: 0px;
  }
}

.members .people {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #13B5EA;
}
.members .people h2 {
  line-height: 47px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #005596;
  text-align: center;
  font-size: 36px;
  font-family: 'Kiro-Thin';
  font-weight: 200;
}
.members .people .col-md-2 {
  max-width: 200px;
  margin: auto;
  margin-top: 20px;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .members .people .col-md-2 {
    margin-left: 15px;
  }
}
.members .people .col-md-2 img {
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .members .people .row {
    text-align: center;
  }
}
.members .people .photo {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 185px;
  height: 185px;
  border: 1px solid #fff;
  padding: 0;
  margin: auto;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 992px) {
  .members .people .photo {
    float: none;
    margin-bottom: 215px !important;
  }
}
.members .people .photo div {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 85, 150, 0.85);
  padding: 10px 5px;
}
@media screen and (max-width: 992px) {
  .members .people .photo div {
    visibility: visible;
    opacity: 1;
    top: 188px;
    position: absolute;
  }
}
.members .people .photo h6 {
  padding-top: 20px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 25px;
  font-family: 'Kiro-Bold';
}
.members .people .photo p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-family: 'Kiro-Italic';
  font-weight: 400;
  margin-bottom: 10px;
}
.members .people .photo p strong {
  font-family: 'Kiro-Bold';
}
.members .people .photo:hover div {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
.members h2 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 20px;
}
.members h4 {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
  text-align: left;
  padding: 0;
}
.members button {
  margin: 0;
  background-color: #13B5EA;
  color: #fff;
  text-transform: uppercase;
}
.members button:hover {
  background-color: #005596;
  border-color: transparent;
}
.members .mail {
  margin-top: 20px;
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  line-height: 25px;
  text-align: left;
}
.members .mail a {
  color: #13B5EA;
}
.members .content h2 {
  padding-top: 20px;
  border-top: 1px solid #13B5EA;
}

.search_results,
.single-page,
.news,
.press-releases {
  padding-top: 50px;
}
.search_results section#primary,
.single-page section#primary,
.news section#primary,
.press-releases section#primary {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .search_results section#primary,
  .single-page section#primary,
  .news section#primary,
  .press-releases section#primary {
    border-right: 1px solid #13B5EA;
  }
}
.search_results section#primary > .row,
.single-page section#primary > .row,
.news section#primary > .row,
.press-releases section#primary > .row {
  margin-bottom: 40px;
  margin-left: 0;
  margin-right: 0;
}
.search_results .col-sm-1,
.single-page .col-sm-1,
.news .col-sm-1,
.press-releases .col-sm-1 {
  padding-left: 0;
  padding-top: 10px;
}
.search_results .col-md-push-8,
.single-page .col-md-push-8,
.news .col-md-push-8,
.press-releases .col-md-push-8 {
  margin-bottom: 40px;
}
.search_results #searchform,
.single-page #searchform,
.news #searchform,
.press-releases #searchform {
  margin: 40px 0;
}
.search_results h1,
.single-page h1,
.news h1,
.press-releases h1 {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
  padding: 20px 0;
}
.search_results h2,
.single-page h2,
.news h2,
.press-releases h2 {
  letter-spacing: 0px;
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
}
.search_results h2 a:active, .search_results h2 a:focus, .search_results h2 a:hover,
.single-page h2 a:active,
.single-page h2 a:focus,
.single-page h2 a:hover,
.news h2 a:active,
.news h2 a:focus,
.news h2 a:hover,
.press-releases h2 a:active,
.press-releases h2 a:focus,
.press-releases h2 a:hover {
  text-decoration: none;
}
.search_results h3,
.single-page h3,
.news h3,
.press-releases h3 {
  color: #13B5EA;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
}
.search_results p,
.single-page p,
.news p,
.press-releases p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
}
.search_results .pdf,
.single-page .pdf,
.news .pdf,
.press-releases .pdf {
  display: block;
  width: 50px;
  height: 61px;
  position: relative;
  background: transparent url("images/noun_86005_cc.png") no-repeat left top;
  background-size: cover;
}
.search_results .pdf:hover,
.single-page .pdf:hover,
.news .pdf:hover,
.press-releases .pdf:hover {
  background-repeat: no-repeat;
  background-position: center bottom;
}
.search_results .paper,
.single-page .paper,
.news .paper,
.press-releases .paper {
  display: block;
  width: 62px;
  height: 46px;
  position: relative;
  background: transparent url("images/news02.png") no-repeat left top;
  background-size: cover;
}
.search_results .paper:hover,
.single-page .paper:hover,
.news .paper:hover,
.press-releases .paper:hover {
  background-repeat: no-repeat;
  background-position: center bottom;
}

.news {
  padding-top: 80px;
}
.news section#primary .row {
  margin-bottom: 55px;
}
.news h1 {
  padding: 0;
  padding-bottom: 40px;
}
.news h3, .news h2 {
  padding-left: 10px;
  padding-right: 10px;
}
.news .nav-previous {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .news #primary {
    border-right: 0px !important;
  }
}
@media screen and (max-width: 770px) {
  .news #primary .col-sm-10 {
    margin-top: 60px;
    padding-left: 0px;
  }
  .news #primary .col-sm-10 h3,
  .news #primary .col-sm-10 h2 {
    padding-left: 0px;
  }
}
@media screen and (max-width: 770px) {
  .news #primary .col-sm-1 {
    width: 15%;
    float: left;
  }
  .news #primary .col-sm-11 {
    width: 80%;
    float: left;
  }
}
@media screen and (max-width: 400px) {
  .news #primary .col-sm-1 {
    width: 25%;
  }
  .news #primary .col-sm-11 {
    width: 65%;
    padding-right: 0px;
  }
}

.single-page {
  padding-top: 80px;
}
.single-page h2 {
  margin-bottom: 25px;
}
.single-page #primary {
  margin-bottom: 20px;
}
.single-page #primary h3 {
  letter-spacing: 0.5px;
}
.single-page .paper {
  width: 31px;
  height: 23px;
}
.single-page .col-md-4 .col-sm-2 {
  padding-left: 0px;
  padding-right: 0px;
}
.single-page .col-md-4 .col-sm-11 h3 {
  font-size: 16px;
  margin-top: 3px;
}
.single-page .col-md-4 .col-sm-11 h2 {
  font-size: 16px;
  margin-top: -5px;
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  .single-page .col-md-4 .col-sm-11 {
    padding-left: 0px;
  }
}
.single-page .col-md-4 h2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
  .single-page .col-md-4 h2 {
    margin-top: 35px;
  }
}

.search_results {
  padding: 25px 0;
}

.press-releases section#primary {
  border: 0;
}
.press-releases .excerpt p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}

.news .slidebar h2,
.single-page .slidebar h2 {
  font-family: 'Kiro-Light';
  font-weight: 300;
  color: #005596;
  font-size: 26px;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.news .slidebar p,
.single-page .slidebar p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}

.single-page .slidebar {
  margin-top: 40px;
}

.standards h1 {
  font-family: 'Kiro-Thin';
  font-weight: 200;
  font-size: 48px;
  color: #fff;
  text-align: center;
}
.standards p {
  font-family: 'Kiro-Regular';
  font-size: 16px;
  line-height: 22px;
  padding-top: 10px;
  color: #fff;
  margin-bottom: 15px;
}
.standards a {
  font-family: 'Kiro-Regular';
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.standards .background1 {
  background: #0b293d url("./images/diagram.png") no-repeat center center;
  background-size: cover;
  padding-top: 38px;
  padding-bottom: 57px;
}
.standards .background2 {
  background: url("./images/diagram2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.standards .background2 .color {
  padding: 20px 20px;
}
.standards .background2 .color:nth-child(1), .standards .background2 .color:nth-child(2), .standards .background2 .color:nth-child(5), .standards .background2 .color:nth-child(6) {
  background-color: rgba(19, 181, 234, 0.75);
}
.standards .background2 .color:nth-child(3), .standards .background2 .color:nth-child(4) {
  background-color: rgba(120, 182, 0, 0.75);
  /*background-color: rgba(141,203,0,0.75);*/
}
@media screen and (max-width: 1460px) {
  .standards .background2 .color:nth-child(2), .standards .background2 .color:nth-child(4), .standards .background2 .color:nth-child(6) {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .standards .background2 .color:nth-child(2), .standards .background2 .color:nth-child(4), .standards .background2 .color:nth-child(6) {
    padding-bottom: 80px;
  }
}
.standards .title {
  padding: 20px 0;
  margin-top: -59px;
}
.standards .title h3 {
  font-family: 'Kiro-Bold';
  font-weight: 400;
  text-align: center;
  color: #fff;
  line-height: 19px;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0px;
}
.standards .img {
  width: 100%;
  text-align: center;
  min-height: 100px;
}
.standards .section3 {
  padding-top: 50px;
  padding-bottom: 40px;
}
.standards .section3 p {
  color: #000;
  font-family: 'Kiro-Light';
  font-size: 24px;
  font-weight: 300;
  line-height: 38px;
  text-align: left;
  padding: 0;
  margin-bottom: 15px;
}
.standards .section3 p strong {
  color: #005596;
}
.standards .section3 img {
  max-width: 370px;
  width: 100%;
  margin-top: 10px;
}

.venue ul li {
  list-style: initial;
}
.venue .row:nth-of-type(1) .paragraf {
  margin-top: 20px;
}
.venue hr:first-of-type {
  margin-top: 0px;
}
.venue .left-down hr {
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .venue .row:nth-of-type(1) .col-md-4 {
    margin-bottom: 20px;
  }
}

.customer img {
  margin-right: 20px !important;
}

.release-notes .su-tabs-nav span {
  font-family: 'Kiro-Light';
  font-size: 18px;
}
.release-notes .release {
  margin-top: 50px;
}
@media screen and (max-width: 1500px) {
  .release-notes .release .yellow-right,
  .release-notes .release .yellow-left {
    width: 5%;
  }
}
@media screen and (max-width: 1300px) {
  .release-notes .release .yellow-right,
  .release-notes .release .yellow-left {
    width: 0;
  }
}
.release-notes .release .su-tabs {
  text-align: center;
  border: 0;
  background: none;
}
.release-notes .release .su-tabs-panes {
  text-align: left;
}
.release-notes .release .su-tabs-nav {
  display: inline-block;
  border: 0;
  position: relative;
  z-index: 9;
  margin: 0;
  background-color: #F1CB00;
  top: -58px;
}
.release-notes .release .su-tabs-nav:before {
  content: "";
  background-image: url("images/yellow-white-left.png");
  position: absolute;
  width: 83px;
  height: 55px;
  left: -80px;
  top: 0;
}
.release-notes .release .su-tabs-nav:after {
  content: "";
  background-image: url("images/yellow-white-right.png");
  position: absolute;
  width: 83px;
  height: 55px;
  right: -80px;
  top: 0;
}
.release-notes .release .su-tabs-nav span {
  position: relative;
  margin-bottom: -10px;
  margin-top: 10px;
  padding-bottom: 15px;
  margin-left: 40px;
  margin-right: 40px;
  padding-left: 7px;
  padding-right: 7px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.release-notes .release .su-tabs-nav span:hover {
  background: rgba(255, 255, 255, 0.5);
}
.release-notes .release .su-tabs-nav span:hover:before {
  content: url("images/r1.png");
  position: absolute;
  top: 0;
  left: -73px;
  z-index: 2;
  opacity: .5;
}
.release-notes .release .su-tabs-nav span:hover:after {
  content: url("images/l1.png");
  position: absolute;
  top: 0;
  right: -73px;
  z-index: 2;
  opacity: .5;
}
.release-notes .release .su-tabs-nav span:first-of-type {
  margin-left: 0;
}
.release-notes .release .su-tabs-nav span:last-of-type {
  margin-right: 0;
}
.release-notes .release .su-tabs-nav span:last-of-type:hover:after {
  right: -70px;
}
.release-notes .release .su-tabs-nav span.su-tabs-current:before {
  content: url("images/r1.png");
  position: absolute;
  top: 0;
  left: -72px;
  z-index: 2;
  opacity: 1;
}
.release-notes .release .su-tabs-nav span.su-tabs-current:after {
  content: url("images/l1.png");
  position: absolute;
  top: 0;
  right: -72px;
  z-index: 2;
  opacity: 1;
}
.release-notes .release .su-tabs-nav span.su-tabs-current:last-of-type:after {
  right: -69px;
}
.release-notes .release .su-tabs-nav span.su-tabs-current:hover {
  background: white;
}
@media screen and (max-width: 992px) {
  .release-notes .release .su-tabs-nav {
    width: 100%;
  }
  .release-notes .release .su-tabs-nav:before, .release-notes .release .su-tabs-nav:after {
    content: none;
  }
  .release-notes .release .su-tabs-nav span {
    width: 100%;
    margin: 0;
  }
  .release-notes .release .su-tabs-nav span:before, .release-notes .release .su-tabs-nav span:after {
    content: none !important;
  }
}

.additional-standards .section1 {
  padding: 10px 0;
  padding-top: 70px;
}
.additional-standards .section1 p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
  margin-bottom: 15px;
}
.additional-standards .section1 p strong {
  font-family: 'Kiro-Bold';
  font-weight: 400;
}
.additional-standards .section1 p a {
  color: #13B5EA;
}
.additional-standards .section1 hr {
  background-color: #13B5EA;
  width: 100%;
  height: 1px;
}
.additional-standards .section2 h2 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .additional-standards .section2 h2 {
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
.additional-standards .section2 p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  margin-bottom: 0;
  padding: 0;
  border: 0;
}
.additional-standards .section2 p a {
  color: #13B5EA;
  padding-left: 10px;
}
.additional-standards .section2 img {
  float: none;
  max-width: 160px;
  display: block;
  margin: 0 auto;
  margin-bottom: 90px;
  margin-top: 0;
}
.additional-standards .section2 img:last-of-type {
  margin-bottom: 0px;
}
.additional-standards .section2 .logo {
  text-align: center;
}
@media screen and (max-width: 992px) {
  .additional-standards .section2 h2,
  .additional-standards .section2 p,
  .additional-standards .section2 .col-md-offset-2 {
    text-align: center;
  }
  .additional-standards .section2 img {
    float: none;
    margin-bottom: 30px;
  }
  .additional-standards .section2 img:first-of-type {
    margin-top: 20px;
  }
}
.additional-standards .section3 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.additional-standards .section3 p {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  max-width: 650px;
}
.additional-standards .section3 p a {
  color: #13B5EA;
}

.api_chapter .tab-content {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .api_chapter .gf_browser_chrome.gform_wrapper .gform_heading {
    width: 57%;
  }
}
.api_chapter hr {
  width: 100%;
  background-color: #005596;
  margin-top: 24px;
  margin-bottom: 24px;
}
.api_chapter h2 {
  /*border-top: 1px solid #005596;*/
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 20px;
  /*padding-top: 20px;*/
}
.api_chapter h3 {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: left;
  margin-bottom: 20px;
  letter-spacing: 0px;
}
.api_chapter ul {
  list-style: none;
  margin: 0;
  margin-bottom: 11px;
}
.api_chapter ul li {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  margin: 0;
  margin-bottom: 10px;
}
.api_chapter .intro p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 20px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  margin-bottom: 10px;
}
.api_chapter .intro p strong {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}
.api_chapter .slidebar p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  line-height: 21px;
}
.api_chapter #a2 h2 {
  margin-bottom: 45px;
  margin-top: 5px;
}
.api_chapter p {
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Kiro-Light';
  font-weight: 300;
}
.api_chapter .list {
  border-bottom: 1px solid #005596;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: -20px;
  padding-bottom: 20px;
}
.api_chapter .list:last-of-type {
  border-bottom: none;
}
.api_chapter .list .line {
  width: 100%;
  display: list-item;
  float: left;
  /*border-top: 1px solid #005596;*/
  padding: 0 40px 0 0;
  margin-left: 40px;
}
.api_chapter .list .line:last-of-type {
  /*border-bottom: 1px solid #005596;*/
  margin-bottom: 10px;
  padding-bottom: 0px !important;
}
.api_chapter .list .line.margin {
  display: inline-block;
  margin-left: 0;
  padding: 20px 0;
}
.api_chapter .list .line .price,
.api_chapter .list .line .title {
  background-color: transparent;
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Kiro-Light';
  font-weight: 300;
  margin: 0;
}
.api_chapter .list .line .title {
  width: 100%;
  display: inline-block;
  margin-top: -4px;
  margin-bottom: 5px;
  vertical-align: top;
}
.api_chapter .list .line .price {
  display: none;
  float: right;
}
.api_chapter .gform_wrapper {
  margin-bottom: 0px;
}
.api_chapter .gform_wrapper li {
  margin: 0 !important;
}
.api_chapter .gform_wrapper li input {
  opacity: 0;
}
.api_chapter .gform_wrapper li input + label:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #29ABE2;
  background-color: transparent;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 10px;
}
.api_chapter .gform_wrapper li input:checked + label {
  color: #29ABE2;
  font-weight: normal !important;
  font-family: 'Kiro-Bold';
}
.api_chapter .gform_wrapper li input:checked + label:before {
  background-color: #29ABE2;
}
.api_chapter .gform_wrapper li label {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  text-align: left;
  line-height: 34px;
  display: inline-block !important;
}
.api_chapter .gform_wrapper .gform_heading {
  margin-bottom: 0;
}
.api_chapter .gform_wrapper .gform_description {
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0px;
  color: #000000;
  font-family: 'Kiro-Light';
  font-weight: 300;
  line-height: 18px;
  font-style: italic;
}
.api_chapter .gform_wrapper .gfield_description {
  color: #000000;
  font-family: 'Kiro-Light';
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  max-width: 350px;
  margin-left: 38px;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .api_chapter .gform_wrapper .gfield_description {
    max-width: 80%;
  }
}
.api_chapter .gform_wrapper .ginput_product_price_label,
.api_chapter .gform_wrapper .gfield_label {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 24px;
  font-weight: 300 !important;
  line-height: 38px !important;
  text-align: left;
}
.api_chapter .gform_wrapper .ginput_total,
.api_chapter .gform_wrapper .ginput_product_price {
  color: #13B5EA;
  font-size: 24px;
  font-family: 'Kiro-Bold';
  font-weight: 400;
}
.api_chapter .gform_wrapper .gform_title {
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #13B5EA;
  text-align: left;
  margin-top: 25px;
}
.api_chapter .gform_wrapper input[type="submit"] {
  margin-top: 10px;
  border: 0;
  border-color: transparent;
  background-color: #13B5EA;
  line-height: 35px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  padding: 5px 30px;
  width: auto;
  height: auto;
  border-radius: 0px;
}
.api_chapter .gform_wrapper input[type="submit"]:hover {
  background-color: #005596;
}
.api_chapter .gform_wrapper .name label {
  display: none !important;
}
.api_chapter .gform_wrapper .total {
  border-top: 1px solid #13B5EA;
  border-bottom: 0;
  margin-top: 24px !important;
}
.api_chapter .gform_wrapper .total div {
  float: right;
  margin-right: 35%;
  margin-top: 12px;
}
@media screen and (max-width: 700px) {
  .api_chapter .gform_wrapper .total div {
    margin-right: 0;
  }
}
.api_chapter .gform_wrapper .subproduct {
  margin-left: 20px !important;
  position: relative;
  padding-bottom: 40px !important;
}
.api_chapter .gform_wrapper .subproduct .gfield_description {
  margin: 0;
  max-width: 100%;
}
.api_chapter .gform_wrapper .subproduct .ginput_container {
  position: absolute;
  bottom: 0;
  left: 0;
}
.api_chapter .gform_wrapper .subproduct .ginput_container span {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  line-height: 34px;
  font-weight: 300;
  text-align: left;
}
.api_chapter .gform_wrapper .subproduct label {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  line-height: 34px;
  font-weight: 300;
  text-align: left;
}
.api_chapter .purchasing_box {
  border-top: 1px solid #13B5EA;
  border-bottom: 1px solid #13B5EA;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
  width: auto;
  display: block;
  margin-top: 30px;
  margin-bottom: 10px;
}
.api_chapter .purchasing_box button {
  background-color: #13B5EA;
  line-height: 0;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: 'Kiro-Bold';
  margin: 0;
  margin-bottom: 30px;
  padding: 20px 45px;
}
.api_chapter .purchasing_box button:hover {
  background-color: #005596;
}
.api_chapter .purchasing {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  margin-top: 20px;
}
.api_chapter hr.form-bar {
  width: 100%;
  height: 3px;
  background-color: #13B5EA;
  margin-top: 10px;
  margin-bottom: 10px;
}
.api_chapter .bottom {
  margin-top: 20px;
}
.api_chapter .bottom p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  padding: 0px 0px 10px;
}

.purchase-api,
.purchase-calcit {
  padding: 50px 0;
}
.purchase-api p,
.purchase-calcit p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}
.purchase-api input[type='submit'],
.purchase-calcit input[type='submit'] {
  display: block;
  background-color: #13B5EA;
  padding-top: 2px;
  padding-bottom: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 1px;
  min-width: 145px;
  min-height: 37px;
  font-family: 'Kiro-Bold';
}
.purchase-api input[type='submit']:hover,
.purchase-calcit input[type='submit']:hover {
  background-color: #005596;
}
.purchase-api select,
.purchase-calcit select {
  font-family: 'Kiro-Light';
  position: 5px;
}
.purchase-api select:focus,
.purchase-calcit select:focus {
  outline: 0;
}
.purchase-api .step1 select,
.purchase-calcit .step1 select {
  letter-spacing: 1.2px;
  font-family: 'Kiro-Light';
  font-size: 16px;
  height: 23px;
  width: 465px;
  margin-bottom: 48px;
}
.purchase-api .step1 select option,
.purchase-calcit .step1 select option {
  letter-spacing: 1.2px;
  font-family: 'Kiro-Light';
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .purchase-api .step1 select,
  .purchase-calcit .step1 select {
    width: 250px;
  }
}
.purchase-api .step1 .size-full,
.purchase-calcit .step1 .size-full {
  margin-top: 35px;
  margin-bottom: 20px;
}
.purchase-api .step1 .description h6,
.purchase-calcit .step1 .description h6 {
  font-family: 'Kiro-Bold';
  font-weight: normal;
  color: #005596;
  font-size: 18px;
  margin-bottom: 10px;
}
.purchase-api .step1 .description p,
.purchase-calcit .step1 .description p {
  font-family: 'Kiro-Light';
  font-size: 18px;
  padding-right: 25px;
}
.purchase-api .step1 .description p a,
.purchase-calcit .step1 .description p a {
  color: #13B5EA;
}
.purchase-api .step1 .ginput_product_price,
.purchase-api .step1 .support-total,
.purchase-calcit .step1 .ginput_product_price,
.purchase-calcit .step1 .support-total {
  font-size: 24px;
}
.purchase-api .step1 .gfield_checkbox label,
.purchase-calcit .step1 .gfield_checkbox label {
  font-family: 'Kiro-Light';
  font-size: 21px;
  color: #000;
  font-weight: 300;
  float: left;
  text-align: left;
}
.purchase-api .step1 .gform_button button,
.purchase-calcit .step1 .gform_button button {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  margin-top: 30px !important;
}
.purchase-api .step1 .description-product,
.purchase-calcit .step1 .description-product {
  font-family: 'Kiro-Light';
  font-size: 16px;
  margin: 0;
  color: #A6A6A6;
  margin-left: 26px !important;
  font-weight: 300;
  max-width: 290px;
  margin-top: 0px !important;
}
.purchase-api .step2 .discount-price,
.purchase-calcit .step2 .discount-price {
  font-family: 'Kiro-Bold';
  position: absolute;
  right: -7px;
  top: 30px;
  font-size: 14px;
  color: #A5A5A5;
  line-height: 1;
  width: 85px;
}
.purchase-api .step2 .api_chapter .gform_heading .gform_title,
.purchase-calcit .step2 .api_chapter .gform_heading .gform_title {
  padding-bottom: 15px;
}
.purchase-api .step2 .api_chapter .gform_heading .gform_title .ginput_product_price,
.purchase-calcit .step2 .api_chapter .gform_heading .gform_title .ginput_product_price {
  padding-top: 0px !important;
  position: relative;
}
.purchase-api .step2 .api_chapter .gform_footer,
.purchase-calcit .step2 .api_chapter .gform_footer {
  padding-top: 42px;
}
.purchase-api .step2 .api_chapter .sub_description,
.purchase-calcit .step2 .api_chapter .sub_description {
  margin-bottom: 40px;
}

.purchase-api .api_chapter hr {
  background-color: #13B5EA;
  margin-top: 40px;
  margin-bottom: 20px;
}
.purchase-api .api_chapter .gform_wrapper .subproduct {
  margin-left: 0 !important;
  padding-bottom: 25px !important;
}
.purchase-api .api_chapter .gform_wrapper .subproduct label {
  color: #13B5EA;
  font-family: 'Kiro-Light';
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  text-align: left;
  margin-left: 10px;
}
.purchase-api .api_chapter .gform_wrapper li input:checked + label {
  color: #005596;
  font-family: 'Kiro-Bold';
}
.purchase-api .api_chapter .gform_wrapper li input:checked + label:before {
  background-color: #005596;
  border-color: #005596;
}
.purchase-api .api_chapter .gform_wrapper .ginput_product_price_label,
.purchase-api .api_chapter .gform_wrapper .gform_title {
  width: 100%;
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 20px;
  letter-spacing: 0;
}
.purchase-api .api_chapter .gform_wrapper .ginput_product_price_label .ginput_product_price,
.purchase-api .api_chapter .gform_wrapper .gform_title .ginput_product_price {
  float: right;
  color: #13B5EA;
  font-family: 'Kiro-Bold';
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  padding-top: 4px;
}
.purchase-api .subtitle {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  text-align: left;
}
.purchase-api .sub_description {
  color: #A5A5A5;
  font-family: 'Kiro-Light';
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
}

.top-cart {
  width: 100%;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #13B5EA;
  margin-bottom: 20px;
}
.top-cart p {
  display: inline-block;
  margin-right: 20px;
  color: #BFBDBD;
  font-family: 'Kiro-Light';
  font-size: 24px;
  font-weight: 300;
  line-height: 38px;
  text-align: left;
  margin-bottom: 0;
}
.top-cart p.active {
  color: #005596;
}
.top-cart p span {
  font-family: 'Kiro-Bold';
  font-weight: 400;
  margin-right: 5px;
}
@media screen and (max-width: 755px) {
  .top-cart p {
    display: block;
  }
}

#gform_fields_98 {
  margin-bottom: 0px;
  padding-bottom: 0px !important;
}
#gform_fields_98 .sub_description {
  margin-left: 26px;
  margin-bottom: 15px;
}

@media screen and (max-width: 400px) {
  #gform_fields_98 label {
    font-size: 15px;
  }
}
.flowcal_products .features ul {
  list-style: disc;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style-position: inside;
}
.flowcal_products .features ul li {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
  padding-left: 2em;
  text-indent: -2em;
}
.flowcal_products .entry-content ul li {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}
.flowcal_products p a {
  white-space: nowrap;
}

@-moz-document url-prefix() {
  .flowcal_products .features ul li {
    padding-left: 1em;
    text-indent: -0.9em;
  }
}
@media screen and (min-width: 992px) {
  .customer .col-md-12 .paragraf {
    margin-left: 140px;
  }
}
.venue .col-md-5 {
  display: inline-block;
}
.venue .col-md-4 p {
  padding: 0 !important;
  margin: 0;
  margin-bottom: 1px !important;
}
.venue h2 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.venue h3 {
  color: #005596;
  font-family: 'Kiro-Bold';
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}
.venue p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
}

@media screen and (max-width: 700px) {
  .careers .banner .container p {
    font-size: 25px;
    line-height: 30px;
  }
}
.careers .feature-video a {
  height: 100%;
  width: auto;
  display: inline-block;
  position: relative;
}
.careers .feature-video a:before {
  content: "";
  background: transparent url("./images/play_button02.png") no-repeat center top;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  top: 37%;
  left: 40%;
  width: 66px;
  height: 63px;
}
.careers .feature-video a:hover:before {
  background-position: bottom;
}
.careers .background {
  min-height: 200px;
  background-size: cover !important;
  padding-top: 80px;
  padding-bottom: 20px;
}
.careers .background h2 {
  color: #fff;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.careers .background p {
  font-family: 'Kiro-Light';
  font-weight: 300;
  text-align: left;
  font-size: 24px;
  line-height: 38px;
  color: #FFFFFF;
}
.careers .background img {
  margin: 0;
}
.careers .content {
  padding-top: 30px;
  padding-bottom: 30px;
}
.careers .content h2 {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.careers .content h3 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.careers .content p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
}
.careers .content img {
  margin-bottom: 20px;
  height: 201px;
  width: 96.5%;
}
@media screen and (max-width: 992px) {
  .careers .content img {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.careers .content .col-md-4 {
  margin-top: 125px;
}
@media screen and (max-width: 992px) {
  .careers .content .col-md-4 {
    margin-top: 0;
  }
}
.careers .image p {
  margin: 0;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.55), 0px 0px 8px rgba(0, 0, 0, 0.55);
  color: #FFFFFF;
  font-family: 'Kiro-Thin';
  font-size: 35px;
  font-weight: 200;
  line-height: 49px;
  text-align: center;
}
.careers .image button {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  color: #005596;
  font-size: 14px;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 35px;
}
.careers .image button:hover {
  border-color: #13B5EA;
  background-color: #13B5EA;
  color: #fff;
}

.fw-page-builder-content {
  display: inline-block;
  float: left;
  width: 100%;
}

.cart-top-builder {
  margin-bottom: 25px;
}

.phorm2 {
  display: inline-block;
  width: 100%;
}

.video-testimonials {
  display: inline-block;
  width: 100%;
}
.video-testimonials #flowcal-gallery-current {
  border: 1px solid #33bbee;
}
.video-testimonials .current-title {
  font-size: 26px;
  color: #005596;
  font-family: 'Kiro-Light';
  letter-spacing: 3px;
  margin-bottom: 15px;
}
.video-testimonials p,
.video-testimonials .subtitle {
  font-size: 18px;
  line-height: 29px;
  font-family: 'Kiro-Light';
  margin-bottom: 12px;
}
.video-testimonials .title {
  font-family: 'Kiro-Light';
  font-size: 18px;
  color: #33bbee;
}

.flowcal-gallery li {
  border: 1px solid #33bbee;
  margin-left: 24px;
  height: 185px;
}

.white-paper-download-now {
  margin-top: 50px;
  margin-bottom: 50px;
}
.white-paper-download-now h1 {
  font-size: 26px;
  color: #005596;
  font-family: 'Kiro-Light';
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 15px;
}
.white-paper-download-now p {
  font-size: 18px;
  line-height: 29px;
  font-family: 'Kiro-Light';
  margin-bottom: 12px;
}
.white-paper-download-now .button_link {
  font-family: 'Kiro-Bold';
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: uppercase;
  height: 40px;
  background: #13b5ea;
  max-width: 265px;
  margin: 0px;
  box-shadow: none;
}
.white-paper-download-now .button_link:hover {
  background: #005596;
}

.white-paper-form input {
  border: 1px solid #ccc;
  background-color: #fff;
  height: 25px !important;
  box-shadow: none;
  display: block;
}
.white-paper-form h2 {
  font-size: 36px;
  color: #005596;
  text-transform: uppercase;
  font-family: 'Kiro-Thin';
  letter-spacing: 3px;
}
.white-paper-form .gform_description {
  font-size: 18px;
  color: #000;
  font-family: 'Kiro-Light';
}
.white-paper-form input:focus {
  box-shadow: none;
}
.white-paper-form .white-paper-name,
.white-paper-form .white-paper-id {
  display: none;
}
@media screen and (max-width: 640px) {
  .white-paper-form .ginput_complex.ginput_container {
    width: 100% !important;
  }
}
@media screen and (min-width: 641px) {
  .white-paper-form .ginput_complex.ginput_container {
    width: 49.5% !important;
  }
}
.white-paper-form #input_89_3_3_container,
.white-paper-form #input_89_3_6_container,
.white-paper-form #input_89_14_3_container,
.white-paper-form #input_89_14_4_container {
  width: 100%;
  padding-right: 0px;
}
.white-paper-form .gform_button {
  font-family: 'Kiro-Bold';
  font-size: 14px !important;
  letter-spacing: 1px;
  border-radius: 0px !important;
  border: 0px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  text-transform: uppercase;
  height: 40px !important;
  background: #13b5ea;
  max-width: 265px;
  margin: 0px !important;
  box-shadow: none;
  margin-top: 40px !important;
}
.white-paper-form .gform_button:hover {
  background: #005596;
}
.white-paper-form .gfield_label {
  font-size: 18px !important;
  color: #000;
  text-align: left;
  font-family: 'Kiro-Light';
  font-weight: normal !important;
}
.white-paper-form .gform_wrapper .top_label .ginput_container {
  margin-top: 0px !important;
}

.customer_support .home-webinars .feature-video img {
  max-width: 99%;
}
.customer_support .member .col-md-4 .member-image {
  width: 130px;
  height: 150px;
  background-size: cover;
  border-radius: 0px 40px 0px 40px;
}
.customer_support .intro p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 21px;
  font-weight: 300;
  line-height: 34px;
  text-align: left;
  padding: 0px 0px 10px;
  margin: 0;
}
.customer_support h2 {
  color: #005596;
  font-family: 'Kiro-Thin';
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 3px;
  line-height: 47px;
  text-align: left;
  text-transform: uppercase;
  padding: 0px 0px 10px;
}
.customer_support .member h3 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  padding: 5px 0px 15px;
}
.customer_support .member p {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  text-align: left;
  padding: 0px 0px 10px;
}
.customer_support .member img {
  -webkit-border-top-right-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -moz-border-radius-topright: 50px;
  -moz-border-radius-bottomleft: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-top: 9px;
}
.customer_support .popup-youtube2 {
  height: 100%;
  width: auto;
  display: inline-block;
  position: relative;
}
.customer_support .popup-youtube2:before {
  content: "";
  background: transparent url("./images/play_button02.png") no-repeat center top;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  top: 37%;
  left: 40%;
  width: 66px;
  height: 63px;
}
.customer_support .popup-youtube2:hover:before {
  background-position: bottom;
}

@media screen and (min-width: 992px) {
  .tribe-events-calendar {
    margin-bottom: 40px !important;
  }
}
.tribe-events-event-thumb img {
  min-height: auto;
}

.tribe-events-page-title {
  margin-top: -10px;
}

h2.tribe-events-page-title a {
  color: #FFF !important;
}

h2.tribe-events-page-title a:hover {
  color: #FFF !important;
}

.container.tribe_bar {
  padding: 0;
  position: relative;
  top: -111px;
}

table.tribe-events-calendar {
  position: relative;
  top: -119px;
}

.tribe-events-calendar.tribe-events-calendar-blue {
  background-color: #fff;
  margin-top: 0 !important;
}
@media screen and (min-width: 992px) {
  .tribe-events-calendar.tribe-events-calendar-blue {
    margin-bottom: 45px;
  }
}
.tribe-events-calendar.tribe-events-calendar-blue thead th {
  font-family: 'Kiro-Bold';
  font-weight: 400;
  color: white;
  font-size: 12px;
  background-color: #21759A;
  border-left: 1px solid #21759A;
  border-right: 1px solid #21759A;
}
.tribe-events-calendar.tribe-events-calendar-blue td {
  padding-bottom: 15px;
}
.tribe-events-calendar.tribe-events-calendar-blue div[id*=tribe-events-daynum-] {
  background-color: #14B5EB;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  color: white;
  font-size: 16px;
}
.tribe-events-calendar.tribe-events-calendar-blue div[id*=tribe-events-daynum-] a {
  background-color: transparent;
}
.tribe-events-calendar.tribe-events-calendar-blue td.tribe-events-past div[id*=tribe-events-daynum-] {
  background-color: #A5E6FC;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  color: white;
  font-size: 16px;
}
.tribe-events-calendar.tribe-events-calendar-blue td.tribe-events-past div[id*=tribe-events-daynum-] > a {
  background-color: transparent;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  color: white;
  font-size: 16px;
}
.tribe-events-calendar.tribe-events-calendar-blue td.tribe-events-present div[id*=tribe-events-daynum-] {
  background-color: #21759A;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  color: white;
  font-size: 16px;
}
.tribe-events-calendar.tribe-events-calendar-blue h3.tribe-events-month-event-title a {
  font-family: 'Kiro-Bold';
  font-weight: 400;
  color: #21759A;
  font-size: 20px !important;
}
.tribe-events-calendar.tribe-events-calendar-blue td.tribe-events-past .tribe-events-month-event-title a,
.tribe-events-calendar.tribe-events-calendar-blue td.tribe-events-past .tribe-events-viewmore a {
  color: transparent;
  text-shadow: 0 0 1px #21759A;
}

.tribe-events-page-title {
  margin-top: -10px !important;
}
@media screen and (max-width: 760px) {
  .tribe-events-page-title {
    font-size: 25px !important;
    /*top: -225px!important;*/
  }
}

.tribe_top_background {
  height: 215px;
  background: #0B293D url("images/diagram.png") no-repeat center center;
  background-size: cover !important;
}

.tribe_bottom_background {
  padding-top: 1px;
  background: url("images/event_background.jpg");
  background-size: cover;
  background-position: center center;
}
.tribe_bottom_background div#tribe-events-content {
  /*margin-top: -220px !important;*/
}
.tribe_bottom_background h2 {
  color: #fff;
  font-family: 'Kiro-Thin';
  font-size: 42px;
  text-align: center;
  font-weight: 200;
  margin-bottom: -28px;
}

#tribe-events #tribe-events-footer {
  background-color: none !important;
  border: none !important;
}

#tribe-events .notices {
  text-align: center;
}

#tribe-events-bar {
  margin-bottom: 0;
  z-index: 22;
}
#tribe-events-bar form {
  background: none;
}
#tribe-events-bar #tribe-bar-views {
  background-color: #F0C900;
  padding: 0;
}
#tribe-events-bar #tribe-bar-views > div {
  background-color: #F0C900;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 30px;
}
#tribe-events-bar #tribe-bar-views ul {
  padding: 0;
}
#tribe-events-bar #tribe-bar-views ul a {
  background-color: #F0C900;
  color: #000;
}
#tribe-events-bar #tribe-bar-form.tribe-bar-full .tribe-bar-filters {
  display: none !important;
}

#tribe-events-footer {
  margin-bottom: 20px;
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent !important;
  top: -220px;
}

.tribe-events-list .tribe-events-loop {
  max-width: 100%;
}

.tribe-events-list #tribe-events-footer {
  top: -260px;
}

.tribe-events-list .tribe-event-url, .tribe-events-day .url {
  float: left;
}

.tribe-events-list .tribe-events-event-meta, .tribe-events-day .tribe-events-event-meta {
  width: 100% !important;
  display: inline-block !important;
  text-align: left;
}

.tribe-events-list .tribe-events-content, .tribe-events-day .tribe-events-content {
  text-align: left;
  width: 100% !important;
  display: inline-block !important;
}

.tribe-events-list .tribe-events-list-separator-month {
  line-height: 0.5;
}

#tribe-events-day h2 {
  color: #000 !important;
  top: auto !important;
  font-size: 36px !important;
  margin-top: -40px;
}

.tribe-events-sub-nav .tribe-events-nav-left a span {
  display: inline !important;
  left: auto !important;
  position: relative !important;
  top: auto !important;
}

.tribe-events-sub-nav .tribe-events-nav-right a span {
  display: inline !important;
  right: auto !important;
  position: relative !important;
  top: auto !important;
}

.tribe-events-list .tribe-events-list-event-title {
  text-align: left;
  top: auto !important;
  display: inline-block;
  position: relative !important;
}

.tribe-events-list {
  font-family: 'Kiro-Light';
}

#tribe-events-content table.tribe-events-calendar {
  top: -135px;
}

.entry-content {
  width: 100% !important;
}

.tribe-events-widget-link a,
ul.tribe-events-sub-nav a {
  font-family: 'Kiro-Light';
  font-size: 18px !important;
  font-weight: 300;
  line-height: 29px;
  color: #00BFF3;
  padding: 0px 0px 10px;
}

.tribe-events-sub-nav li a {
  background-color: transparent !important;
}
.tribe-events-sub-nav li a:hover {
  color: #fff;
}

#tribe-events-footer::after,
#tribe-events-footer::before,
#tribe-events-header::after,
#tribe-events-header::before {
  background-color: transparent !important;
}

@media screen and (max-width: 770px) {
  .tribe-events-sub-nav {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .tribe-events-list #tribe-events-footer {
    top: -140px !important;
  }

  #tribe-events-content table.tribe-events-calendar {
    top: -85px !important;
  }

  .tribe-events-month #tribe-events-footer {
    top: -120px !important;
  }
}
@media screen and (max-width: 450px) {
  .tribe-events-sub-nav {
    margin-top: 20px;
  }
}
.tribe-bar-filters {
  visibility: hidden;
  display: none !important;
}

#tribe-bar-collapse-toggle {
  visibility: hidden;
}

.tribe-events-ajax-loading {
  background: #13B5EA !important;
  width: 50px;
  height: 50px;
}
.tribe-events-ajax-loading img {
  max-width: 30px !important;
  min-height: 20px !important;
}

.tribe-events-spinner-medium {
  width: 20px;
  height: 20px !important;
  font-size: 20px;
}
.tribe-events-spinner-medium img {
  width: 20px;
  height: 20px !important;
}

.schedule_page .schedule {
  padding-top: 70px;
  padding-bottom: 30px;
}
.schedule_page .schedule_table tr td {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  padding: 7px 20px;
  border: 1px solid #005596;
  border-top: 0;
}
@media screen and (max-width: 550px) {
  .schedule_page .schedule_table tr td {
    padding: 5px;
    width: auto;
  }
}
.schedule_page .schedule_table tr td:nth-child(1), .schedule_page .schedule_table tr td:nth-child(2) {
  border-right: 0;
}
.schedule_page .schedule_table tr:first-of-type td {
  border-top: 1px solid #005596;
}
.schedule_page .schedule_table tr.blue {
  background-color: #ECF8FC;
}
.schedule_page .schedule_table thead td {
  padding-left: 0;
  border: 0 !important;
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.schedule_page .image h2 {
  margin-bottom: 5px;
}
.schedule_page .image button {
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  /*color: #FFFFFF;*/
  font-size: 14px;
  font-family: 'Kiro-Bold';
  font-weight: 400;
  border: 1px solid #fff;
  padding: 10px 35px;
}
.schedule_page .image button:hover {
  border-color: #13B5EA;
  background-color: #13B5EA;
}

.video_testimonials .color {
  padding: 20px 0;
  padding-bottom: 0px;
}
.video_testimonials .color:nth-child(2n-2) {
  background-color: #ECF8FC;
}
.video_testimonials .color i {
  font-size: 32px;
  color: #13B8EB;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.video_testimonials .color i:hover {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #005596;
}
.video_testimonials .color a {
  display: block;
}
.video_testimonials .color h2 {
  font-size: 24px;
  line-height: 24px;
  color: #005596;
  font-family: 'Kiro-Bold';
  text-align: left;
  margin-bottom: 10px;
  min-height: 50px;
}
.video_testimonials .color .video {
  position: relative;
}
.video_testimonials .color .icon {
  position: absolute;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 700px) {
  .video_testimonials .color .icon {
    left: 5px;
  }
}
.video_testimonials .color .content {
  margin-left: 12%;
  max-width: 175px;
}
.video_testimonials .color .content img {
  margin-top: 20px;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.video_testimonials .color .content img:hover {
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (max-width: 992px) {
  .video_testimonials .color .video {
    width: 50%;
    float: left;
    height: 240px;
  }
}
@media screen and (max-width: 500px) {
  .video_testimonials .color .video {
    width: 100%;
    float: none;
    height: 240px;
  }
}

.login_page .background {
  width: 100%;
  min-height: 300px;
  background-size: cover !important;
  background-position: center center !important;
}
.login_page .background .white {
  background-color: rgba(255, 255, 255, 0.5);
  padding-top: 75px;
  padding-bottom: 42px;
}
.login_page .background .right {
  padding-top: 20px;
  padding-bottom: 70px;
}
@media screen and (min-width: 992px) {
  .login_page .background .right {
    border-left: 1px solid #00BFF3;
  }
}
.login_page .background .right .description {
  max-width: 430px;
}
.login_page .background .left {
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: center;
}
.login_page .background .left .description {
  max-width: 330px;
}
.login_page .background .left .img img {
  max-width: 220px;
}
.login_page .background .left a {
  color: #005596;
  font-family: "Kiro-Regular";
  font-size: 16px;
}
.login_page .background .description {
  text-align: center;
  margin: auto;
  margin-top: 20px;
}
.login_page .background .description p {
  font-size: 14px;
  text-align: center;
  line-height: 18px;
  color: #000000;
  font-family: 'Kiro-Light';
}
.login_page .background .img {
  text-align: center;
  max-width: 100%;
  display: block;
  margin: auto;
}
.login_page .background form {
  text-align: center;
}
.login_page .background form fieldset {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.login_page .background form fieldset legend {
  display: none;
}
.login_page .background form label {
  color: #000000;
  font-family: 'Kiro-Light';
  font-size: 18px;
  font-weight: 300;
  line-height: 29px;
  width: 100%;
}
.login_page .background form label input {
  width: 100%;
}
.login_page .background form .button_div,
.login_page .background form .div_text {
  text-align: center !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
}
.login_page .background form .button_div input.buttons,
.login_page .background form .div_text input.buttons {
  display: block;
  margin: 0 auto !important;
}
.login_page .background form input {
  outline: 0;
  box-shadow: none;
  padding: 4px !important;
  max-width: 227px !important;
  -webkit-border-radius: 5px !important;
  -moz-border-radius: 5px !important;
  border-radius: 5px !important;
  background-color: #fff;
}
.login_page .background form input:focus {
  box-shadow: none;
  outline: 0;
}
.login_page .background form input[type=submit] {
  font-family: 'Kiro-Bold';
  background-color: #13B5EA;
  border: 0;
  color: white;
  padding: 7px 40px !important;
  text-transform: uppercase;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}
.login_page .background form input[type=submit]:hover {
  background-color: #005596;
}
.login_page .background #forgotPassword {
  text-align: center;
  margin: auto;
  margin-top: 20px;
}
.login_page .background #forgotPassword a {
  font-family: 'Kiro-Regular';
  font-size: 16px;
  color: #005596;
}

#wpmem_reg input, #wpmem_reg button, #wpmem_reg select, #wpmem_reg textarea, #wpmem_login input, #wpmem_login button {
  font-size: 14px !important;
}

#wpmem_reg input[type="submit"]:focus, #wpmem_login input[type="submit"]:focus {
  border: none !important;
}

#wpmem_reg input:focus, #wpmem_reg textarea:focus, #wpmem_login input:focus {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#wpmem_reg .button_div, #wpmem_login .button_div {
  font-family: 'Kiro-Regular';
}

#wpmem_login input[type="checkbox"] {
  margin: 12px 2px 16px !important;
  vertical-align: middle;
}

.shipping_page .shipping {
  padding: 50px 0;
}

.webinar-page {
  font-family: 'Kiro-Light';
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
}

.webinar-page #nav-single {
  display: none !important;
}

.webinar-page h1 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 36px;
  padding-right: 0;
}

.webinar-page p {
  font-size: 16px;
}

.tribe-organizer-url a {
  word-wrap: break-word;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  #tribe-events .event-description .description {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.gform_wrapper .blue-header {
  font-family: "Kiro-Light";
  font-size: 24px;
}

.gform_wrapper .border-bottom {
  border-bottom: 1px solid #13b5ea;
  padding-bottom: 17px !important;
  margin-bottom: 17px !important;
}

.off-season-description h2 strong {
  font-family: 'Kiro-Bold';
  font-weight: normal !important;
}

.off-season {
  margin-top: 70px;
}
.off-season .first {
  margin-bottom: 20px;
}
.off-season .first .col-md-4 {
  text-align: center;
}
.off-season .first .col-md-4 img {
  max-width: 196px;
}
.off-season .up {
  font-family: 'Kiro-Light';
  font-size: 24px;
  color: #005596;
}
.off-season .up strong {
  font-family: 'Kiro-Bold' !important;
  color: #00BFF3;
  font-weight: normal;
}
.off-season .down-right {
  padding-top: 20px;
}
@media screen and (min-width: 1000px) {
  .off-season .down-right {
    border-top: 1px solid #13b5ea;
    padding-left: 0px;
    padding-right: 25px;
  }
}
.off-season .down-right p {
  font-family: 'Kiro-Light';
  font-size: 18px;
  margin-bottom: 5px;
}
.off-season .down-right em {
  color: #13B5EA;
  font-style: normal;
}
.off-season .slide {
  padding-right: 25px;
  height: 435px;
}
.off-season .swiper-pagination {
  text-align: right;
  bottom: 2px;
  height: 45px;
  background-color: #13B5EA;
  color: #005596;
}
.off-season .swiper-pagination-bullet {
  background: #005596;
  width: 25px;
  height: 25px;
  margin: 10px 7.5px !important;
  opacity: 1;
}
.off-season .swiper-pagination-bullet-active {
  background-color: #fff;
}
.off-season .photo {
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.off-season .description {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 80%;
  z-index: 13;
  color: #fff;
  pointer-events: none;
}
.off-season .description p {
  margin: 0;
  font-size: 14px;
  font-family: 'Kiro-Regular';
}
.off-season .swiper-pagination span:last-of-type {
  margin-right: 10px !important;
}
.off-season .second {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .off-season .slide {
    height: 250px;
  }
  .off-season .slide .swiper-pagination {
    text-align: center;
    bottom: 0px;
  }
  .off-season .slide .photo {
    background-position: center;
    background-size: cover;
  }
  .off-season .slide .description {
    top: 0;
    text-align: center;
    width: 100%;
    margin: 0;
    left: 0;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1000px) {
  .off-season .slide {
    height: 300px;
  }
  .off-season .slide .swiper-pagination {
    text-align: center;
    bottom: 0px;
  }
  .off-season .slide .photo {
    background-position: center;
    background-size: cover;
  }
  .off-season .slide .description {
    top: 0;
    text-align: center;
    width: 100%;
    margin: 0;
    left: 0;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1530px) {
  .off-season .slide {
    height: 400px;
  }
  .off-season .slide .swiper-pagination {
    text-align: center;
    bottom: 0px;
  }
  .off-season .slide .photo {
    background-position: center;
    background-size: cover;
  }
  .off-season .slide .description {
    top: 0;
    text-align: center;
    width: 100%;
    margin: 0;
    left: 0;
    padding-right: 5px;
    padding-left: 5px;
  }
}

.activities hr {
  background-color: #13b5ea;
  width: 100%;
}
.activities iframe#forecast_embed .fe_title {
  display: none !important;
}
.activities .right > div {
  max-width: 100%;
}
.activities .right h3 {
  color: #005596;
  font-family: 'Kiro-Light';
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 34px;
  text-align: left;
  text-transform: uppercase;
  padding: 5px 0px 15px;
  padding-top: 0px;
}
.activities .panel {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.activities .up {
  margin-bottom: 20px;
}
.activities .up .col-md-8 {
  padding-left: 0px;
  padding-right: 20px;
}
.activities .up .col-md-8 p {
  font-family: 'Kiro-Light';
  font-size: 21px;
  margin-bottom: 0px;
  line-height: 34px;
  text-align: left;
  color: #000;
  padding-right: 20px;
  min-height: 150px;
}
.activities .up .col-md-4 {
  text-align: center;
}
.activities .up .col-md-4 img {
  max-width: 196px;
}
.activities .left a {
  color: #13B5EA;
}
.activities .left a:focus, .activities .left a:active {
  text-decoration: none;
}
.activities .left p {
  padding-right: 25px;
}
.activities .left img {
  margin-top: -5px;
  margin-bottom: 25px;
}
.activities .left .left-img {
  margin: 0;
}
.activities .left .left-img img {
  float: left;
  margin: 0;
  margin-right: 30px;
}
.activities .left .right-img img {
  margin: 0;
  margin-bottom: 15px;
}
.activities .left h4 {
  padding: 0px;
}
.activities .left h4 p {
  margin-bottom: 0px !important;
}
.activities .left .panel-body p {
  font-size: 18px;
  line-height: 29px;
  font-family: 'Kiro-Light';
  margin-bottom: 12px;
}
.activities .left .panel-body .bold,
.activities .left .panel-body .nonblock {
  color: #13B5EA;
}
.activities .left .panel-body .bold:hover,
.activities .left .panel-body .nonblock:hover {
  text-decoration: underline;
}
.activities .left .panel-title p {
  font-family: 'Kiro-Light';
  font-size: 26px;
  color: #005596;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 3px;
  position: relative;
}
.activities .left .panel-title p:after {
  position: absolute;
  content: "\f106";
  font-family: FontAwesome;
  color: #005596;
  margin-left: 10px;
}
.activities .left .panel-title:hover {
  color: #005596;
}
.activities .left .panel-title .collapsed p {
  color: #13B5EA;
}
.activities .left .panel-title .collapsed p:hover {
  color: #005596;
}
.activities .left .panel-title .collapsed p:after {
  content: "\f107";
  color: #13B5EA;
}
.activities .left .panel-title .collapsed:hover {
  color: #005596;
}
.activities .left .panel.panel-default {
  border: 0px;
  background-color: transparent;
}
.activities .left .panel-heading {
  background-color: transparent;
  padding: 0px;
  margin-bottom: 30px;
}
.activities .left .panel-body {
  border-top: 0px !important;
  padding: 0px;
}
.activities .left .in {
  margin-bottom: 20px;
}
.activities .left #accordion3 img {
  margin-top: 20px;
}
.activities .left #accordion3 .bold {
  font-family: 'Kiro-Bold';
}
@media screen and (min-width: 992px) {
  .activities .col-md-12.down .col-md-4.right {
    padding-left: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .activities .up .col-md-8 {
    padding-right: 0px;
  }
  .activities .up .col-md-4 {
    text-align: center;
  }
  .activities .up .col-md-4 img {
    margin-top: 15px;
    margin-left: 0px;
  }
}
@media screen and (max-width: 1529px) {
  .activities .left-img img {
    margin-bottom: 10px !important;
  }
}

.contact #gform_wrapper_39 input {
  background-color: transparent;
  height: 25px;
  box-shadow: none !important;
}
.contact #gform_wrapper_39 textarea {
  background-color: transparent;
  box-shadow: none !important;
}
.contact #gform_wrapper_39 .gfield_label {
  font-weight: normal;
  font-family: 'Kiro-Light';
  font-size: 18px;
}
.contact #gform_wrapper_39 .gform_footer input[type=submit] {
  font-family: 'Kiro-Bold';
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0px;
  border: 0px;
  padding-left: 55px;
  padding-right: 55px;
  text-transform: uppercase;
  height: 40px;
  background-color: #13b5ea;
  max-width: 265px;
  margin: 0px;
}
.contact #gform_wrapper_39 .gform_footer input[type=submit]:hover {
  background-color: #005596;
}

/**
 * General Layout
 */
.container-1050 {
  max-width: 1050px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 991px) {
  .container-1050 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-inner:before, .container-inner:after {
  content: " ";
  display: table;
}
.container-inner:after {
  clear: both;
}

.site-content:before, .site-content:after {
  content: " ";
  display: table;
}
.site-content:after {
  clear: both;
}

/**
 * Full width & homepage template
 */
.container-850 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.container-text {
  max-width: 70%;
  text-align: left;
  margin: 0 auto !important;
}

.site-content {
  background-color: #fff;
}

body {
  color: #000;
  background-color: #fff;
}

.container {
  margin: 0 auto !important;
}

.vc_row {
  margin: auto !important;
}

@media (min-width: 1200px) {
  .container {
    width: 1133px !important;
  }
}
@media (min-width: 1530px) {
  .container {
    width: 1200px !important;
  }
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1530px) {
  .container {
    width: 1500px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.33333%;
}

.col-xs-pull-2 {
  right: 16.66667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.33333%;
}

.col-xs-pull-5 {
  right: 41.66667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.33333%;
}

.col-xs-pull-8 {
  right: 66.66667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.33333%;
}

.col-xs-pull-11 {
  right: 91.66667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.33333%;
}

.col-xs-push-2 {
  left: 16.66667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.33333%;
}

.col-xs-push-5 {
  left: 41.66667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.33333%;
}

.col-xs-push-8 {
  left: 66.66667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.33333%;
}

.col-xs-push-11 {
  left: 91.66667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.33333%;
}

.col-xs-offset-2 {
  margin-left: 16.66667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333%;
}

.col-xs-offset-5 {
  margin-left: 41.66667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333%;
}

.col-xs-offset-8 {
  margin-left: 66.66667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333%;
}

.col-xs-offset-11 {
  margin-left: 91.66667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

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

  .col-sm-1 {
    width: 8.33333%;
  }

  .col-sm-2 {
    width: 16.66667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333%;
  }

  .col-sm-5 {
    width: 41.66667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333%;
  }

  .col-sm-8 {
    width: 66.66667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333%;
  }

  .col-sm-11 {
    width: 91.66667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-pull-1 {
    right: 8.33333%;
  }

  .col-sm-pull-2 {
    right: 16.66667%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-4 {
    right: 33.33333%;
  }

  .col-sm-pull-5 {
    right: 41.66667%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-7 {
    right: 58.33333%;
  }

  .col-sm-pull-8 {
    right: 66.66667%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-10 {
    right: 83.33333%;
  }

  .col-sm-pull-11 {
    right: 91.66667%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-push-1 {
    left: 8.33333%;
  }

  .col-sm-push-2 {
    left: 16.66667%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-4 {
    left: 33.33333%;
  }

  .col-sm-push-5 {
    left: 41.66667%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-7 {
    left: 58.33333%;
  }

  .col-sm-push-8 {
    left: 66.66667%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-10 {
    left: 83.33333%;
  }

  .col-sm-push-11 {
    left: 91.66667%;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

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

  .col-md-1 {
    width: 8.33333%;
  }

  .col-md-2 {
    width: 16.66667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333%;
  }

  .col-md-5 {
    width: 41.66667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333%;
  }

  .col-md-8 {
    width: 66.66667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333%;
  }

  .col-md-11 {
    width: 91.66667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-pull-1 {
    right: 8.33333%;
  }

  .col-md-pull-2 {
    right: 16.66667%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-4 {
    right: 33.33333%;
  }

  .col-md-pull-5 {
    right: 41.66667%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-7 {
    right: 58.33333%;
  }

  .col-md-pull-8 {
    right: 66.66667%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-10 {
    right: 83.33333%;
  }

  .col-md-pull-11 {
    right: 91.66667%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-push-1 {
    left: 8.33333%;
  }

  .col-md-push-2 {
    left: 16.66667%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-4 {
    left: 33.33333%;
  }

  .col-md-push-5 {
    left: 41.66667%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-7 {
    left: 58.33333%;
  }

  .col-md-push-8 {
    left: 66.66667%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-10 {
    left: 83.33333%;
  }

  .col-md-push-11 {
    left: 91.66667%;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-1 {
    width: 8.33333%;
  }

  .col-lg-2 {
    width: 16.66667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333%;
  }

  .col-lg-5 {
    width: 41.66667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333%;
  }

  .col-lg-8 {
    width: 66.66667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333%;
  }

  .col-lg-11 {
    width: 91.66667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-pull-1 {
    right: 8.33333%;
  }

  .col-lg-pull-2 {
    right: 16.66667%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-4 {
    right: 33.33333%;
  }

  .col-lg-pull-5 {
    right: 41.66667%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-7 {
    right: 58.33333%;
  }

  .col-lg-pull-8 {
    right: 66.66667%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-10 {
    right: 83.33333%;
  }

  .col-lg-pull-11 {
    right: 91.66667%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-push-1 {
    left: 8.33333%;
  }

  .col-lg-push-2 {
    left: 16.66667%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-4 {
    left: 33.33333%;
  }

  .col-lg-push-5 {
    left: 41.66667%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-7 {
    left: 58.33333%;
  }

  .col-lg-push-8 {
    left: 66.66667%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-10 {
    left: 83.33333%;
  }

  .col-lg-push-11 {
    left: 91.66667%;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

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

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

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

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

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

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

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

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table !important;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/**
 * Back to top
 */
.go-to-top {
  text-align: right;
  position: fixed;
  right: -15px;
  bottom: 14px;
  z-index: 99;
  padding-bottom: 10px;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.go-to-top.on {
  right: 15px;
  opacity: 0.8;
  filter: alpha(opacity=0.8);
  visibility: visible;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.go-to-top a span {
  display: inline-block;
  position: relative;
  z-index: 999;
  padding: 0px 6px;
  line-height: 1.575;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
.go-to-top a span i {
  color: white;
  font-size: 1.675em;
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}
@media screen and (min-width: 768px) {
  .go-to-top:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: all 0.3s ease 0.1s;
    -moz-transition: all 0.3s ease 0.1s;
    -ms-transition: all 0.3s ease 0.1s;
    -o-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
  }
  .go-to-top:hover a span i {
    color: black;
    -webkit-transition: all 0.3s ease 0.1s;
    -moz-transition: all 0.3s ease 0.1s;
    -ms-transition: all 0.3s ease 0.1s;
    -o-transition: all 0.3s ease 0.1s;
    transition: all 0.3s ease 0.1s;
  }
}

/* Checkbox */
.ui-radio,
.frm_opt_container .frm_radio,
.ui-checkbox {
  display: block;
  position: relative;
}

.ui-radio label,
.frm_opt_container .frm_radio label,
.ui-checkbox label {
  font-weight: inherit;
  margin-bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
  position: static;
}

.ui-radio label > input,
.frm_opt_container .frm_radio label > input,
.ui-checkbox label > input {
  cursor: pointer;
  display: none;
  margin-left: -15px;
}

.ui-radio label > span,
.frm_opt_container .frm_radio label > span,
.ui-checkbox label > span {
  padding-left: 16px;
  position: relative;
  top: -3px;
}

.ui-radio label > span::before,
.ui-radio label > span::after,
.frm_opt_container .frm_radio label > span::before,
.frm_opt_container .frm_radio label > span::after,
.ui-checkbox label > span::before,
.ui-checkbox label > span::after {
  position: absolute;
}

.ui-radio label > span::before,
.frm_opt_container .frm_radio label > span::before {
  border-radius: 100%;
  top: 1px;
}

.ui-radio label > span::before,
.frm_opt_container .frm_radio label > span::before {
  background-color: #fff;
  border: 1px solid #dadada;
  content: "";
  height: 28px;
  width: 28px;
  left: 0;
  top: 1px;
}

.ui-checkbox label > span::before {
  background-color: #FFF;
  border: 1px solid #bcbcbc;
  content: "";
  height: 22px;
  width: 22px;
  left: 0px;
  top: -4px;
  border-radius: 3px;
}

.ui-checkbox label > input:checked + span::after {
  color: #fff;
  content: "\f00c";
  font-family: 'FontAwesome';
  font-size: 13px;
  top: -4px;
  left: 0px;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #4F35B1 none repeat scroll 0% 0%;
  border-color: #4F35B1;
}

.ui-radio label > input:checked + span::after,
.frm_opt_container .frm_radio label > input:checked + span::after {
  background-color: #ed1c24;
}

.ui-radio label > input:checked + span::after,
.frm_opt_container .frm_radio label > input:checked + span::after {
  border-radius: 100%;
  content: "";
  height: 12px;
  left: 0px;
  top: 9px;
  width: 12px;
}

.circle > div {
  max-width: 270px;
  height: 270px;
  border-radius: 100%;
  background-color: #13B5EA;
  z-index: 2;
  margin-top: 10px;
  line-height: 1.3;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 980px) {
  .circle > div {
    margin: 0 auto;
  }
}
.circle > div:hover {
  background-color: #0f91bb;
}
.circle > div h2 {
  color: #fff;
  font-size: 24px !important;
  margin: 0;
  text-transform: none;
  font-family: 'Dosis' !important;
  font-weight: 400 !important;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  max-width: 182px;
  border-bottom: 1px solid;
  padding-bottom: 35px;
  line-height: 1.2 !important;
}
.circle > div h3 {
  color: #fff;
  font-size: 18px;
  margin: 0;
  font-family: 'CaeciliaLTStdItalic';
  font-style: italic;
  font-weight: 400;
  margin-top: 8px;
}
.circle > div h4 {
  color: #fff;
  font-size: 19px;
  margin: 0;
  font-family: 'Dosis';
}

.loader.hide-loader {
  opacity: 0;
  z-index: -1;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background: #fff none repeat scroll 0% 0%;
  z-index: 999999;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.loader > div {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  margin: -16px 0px 0px -16px;
}

.loader > .la-redish-custom {
  color: #13B5EA;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/**
 * Simple dropdown based on Bootstrap
 */
.dropdown-menu {
  display: none;
}

.open > .dropdown-menu {
  display: block;
}

.sk-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #13B5EA;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
#menu-toggle {
  position: absolute;
  right: 5%;
  top: -4px;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0;
  padding: 10px 10px;
  float: right;
  display: block;
  background-color: #eee;
  box-shadow: none;
  stroke: none;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  outline: 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#menu-toggle span.icon-bar.icon-bar-firster,
#menu-toggle span.icon-bar.icon-bar-laster,
#menu-toggle span.icon-bar.icon-bar-middler {
  width: 30px;
  height: 3px;
  background-color: black;
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
  margin-top: 5px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#menu-toggle:hover {
  background-color: #13B5EA;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
#menu-toggle:hover span.icon-bar.icon-bar-firster,
#menu-toggle:hover span.icon-bar.icon-bar-laster,
#menu-toggle:hover span.icon-bar.icon-bar-middler {
  background-color: white;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.menu-toggle.toggled-on span.icon-bar.icon-bar-firster {
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  transform: rotate(44deg);
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
}
.menu-toggle.toggled-on span.icon-bar.icon-bar-middler {
  display: none !important;
}
.menu-toggle.toggled-on span.icon-bar.icon-bar-laster {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  -webkit-transform: rotate(-44deg);
  -moz-transform: rotate(-44deg);
  -ms-transform: rotate(-44deg);
  -o-transform: rotate(-44deg);
  transform: rotate(-44deg);
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.image-source-link {
  color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-bottom-bar {
  display: none;
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.energy-standards .top-blue-line {
    display: none;
}

.energy-standards .banner.events {
    display: none;
}

.energy-standards .bottom-yellow-bar.banner {
    display: none;
}

.api_chapter p.api-same-height {
  height: auto; 
}

/*# sourceMappingURL=style.css.map */

/* Home banner overlay */
.banner-overlay{
    /*background: #0B293D url('/wp-content/themes/flowcal-custom/images/diagram.png') no-repeat center center;*/
    background: #0B293D url('images/banner.jpg') no-repeat center;
    width: 375px;
    height: 262px;
    text-align: center;
    position: absolute;
    z-index: 9999;
    top: 200px;
    right: 0;
    -webkit-box-shadow: 0px 0px 10px #000;
    -moz-box-shadow: 0px 0px 10px #000;
    box-shadow: 0px 0px 10px #000;
}
.banner-overlay .image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: auto;
    width: 375px;
    height: 262px;
    position: relative;
}

.close-modal{
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0,0,0,.8);
    color: #fff;
    opacity: .5;
    width: 27px;
    height: 27px;
    line-height: 26px;
    cursor: pointer;
    z-index: 70;
}
.close-modal:hover{
    opacity: .8;
}
.banner-overlay .banner-link{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}
@media screen and (max-width: 1200px) {
    .banner-overlay{
        box-shadow: none;
        width: 100%;
        position: relative;
        top: 0;
        z-index: 1;
        padding: 50px 0 40px;
        height: auto;
        border-bottom: 10px solid #f1cb00;
        -webkit-box-shadow: 0px 0px 10px #000;
        -moz-box-shadow: 0px 0px 10px #000;
        box-shadow: 0px 0px 10px #000;
    }
}

@media screen and (max-width: 415px) {
    .banner-overlay .image{
        width: 318px;
        height: 222px;
    }
}
/* END - Home banner overlay */

.activities .up .col-md-4 img {
    max-width: 100% !important;
    width: auto;
}