@import url('https://fonts.googleapis.com/css?family=Oswald:200,400,600,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900');
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Main Stylesheet
 Here's where the magic happens. Here, you'll see we are calling in
 the separate media queries. The base mobile goes outside any query
 and is called at the beginning, after that we call the rest
 of the styles inside media queries.
 Helpful articles on Sass file organization:
 http://thesassway.com/advanced/modular-css-naming-conventions
 ******************************************************************/
/*********************
 IMPORTING PARTIALS
 These files are needed at the beginning so that we establish all
 our mixins, functions, and variables that we'll be using across
 the whole project.
 *********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
 HTML5 display definitions
 ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio, canvas, video {
  display: inline-block;
}
/**
 * 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.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden], template {
  display: none;
}
/* ==========================================================================
 Base
 ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after 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;
}
/* ==========================================================================
 Links
 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active, a:hover {
  outline: 0;
}
/* ==========================================================================
 Typography
 ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b, strong, .strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn, em, .em {
  font-style: italic;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
 */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}
/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before, q:after {
  content: '';
  content: none;
}
small, .small {
  font-size: 75%;
}
/**
 * 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;
}
/* ==========================================================================
 Lists
 ========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl, menu, ol, ul {
  margin: 1em 0;
}
dd {
  margin: 0;
}
/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}
ol, ul {
  padding: 0;
}
/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}
/* ==========================================================================
 Embedded content
 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
 Figures
 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}
/* ==========================================================================
 Forms
 ========================================================================== */
/**
 * 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.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button, input, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button, input {
  line-height: normal;
}
/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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"] {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled], html input[disabled] {
  cursor: default;
}
/**
 * 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 */
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
/* ==========================================================================
 Tables
 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement, .ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.clearfix, .cf, .comment-respond {
  zoom: 1;
}
.clearfix:before, .cf:before, .comment-respond:before, .clearfix:after, .cf:after, .comment-respond:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .comment-respond:after {
  clear: both;
}
/*
 use the best ampersand
 http://simplebits.com/notebook/2008/08/14/ampersands-2/
 */
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif !important;
  font-style: italic;
}
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Variables
 Here is where we declare all our variables like colors, fonts,
 base values, and defaults. We want to make sure this file ONLY
 contains variables that way our files don't get all messy.
 No one likes a mess.
 ******************************************************************/
/*********************
 COLORS
 Need help w/ choosing your colors? Try this site out:
 http://0to255.com/
 *********************/
/*
 Here's a great tutorial on how to
 use color variables properly:
 http://sachagreif.com/sass-color-variables/
 */
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Typography
 Need to import a font or set of icons for your site? Drop them in
 here or just use this to establish your typographical grid. Or not.
 Do whatever you want to...GOSH!
 Helpful Articles:
 http://trentwalton.com/2012/06/19/fluid-type/
 http://ia.net/blog/responsive-typography-the-basics/
 http://alistapart.com/column/responsive-typography-is-a-physical-discipline
 ******************************************************************/
/*********************
 FONT FACE (IN YOUR FACE)
 *********************/
/*  To embed your own fonts, use this syntax
 and place your fonts inside the
 library/fonts folder. For more information
 on embedding fonts, go to:
 http://www.fontsquirrel.com/
 Be sure to remove the comment brackets.
 */
/*  @font-face {
 font-family: 'Font Name';
 src: url('library/fonts/font-name.eot');
 src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
 url('library/fonts/font-name.woff') format('woff'),
 url('library/fonts/font-name.ttf') format('truetype'),
 url('library/fonts/font-name.svg#font-name') format('svg');
 font-weight: normal;
 font-style: normal;
 }
 */
/*
 The following is based of Typebase:
 https://github.com/devinhunt/typebase.css
 I've edited it a bit, but it's a nice starting point.
 */
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
 */
/*
 some nice typographical defaults
 more here: http://www.newnet-soft.com/blog/csstypography
 */
/*
 p {
 -ms-word-wrap: break-word;
 word-break: break-word; //non-standart css for webkit
 word-wrap: break-word;
 // cleaning up the ragged lines and breaks
 -webkit-hyphens: auto;
 -moz-hyphens: auto;
 hyphens: auto;
 // sets a minimum number of characters before and after the break
 -webkit-hyphenate-before: 2;
 -webkit-hyphenate-after: 3;
 hyphenate-lines: 3;
 // enabling fancy ligatures when available
 -webkit-font-feature-settings: "liga", "dlig";
 -moz-font-feature-settings: "liga=1, dlig=1";
 -ms-font-feature-settings: "liga", "dlig";
 -o-font-feature-settings: "liga", "dlig";
 font-feature-settings: "liga", "dlig";
 }
 */
.menu-collapser {
  position: relative;
  width: 100%;
  height: 48px;
  padding: 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 48px;
  background-color: #fff;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.collapse-button {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 40px;
  padding: 7px 10px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: black;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.collapse-button:hover, .collapse-button:focus {
  color: #fff;
  background-color: #040404;
}
.collapse-button .icon-bar {
  display: block;
  height: 2px;
  width: 18px;
  margin: 2px 0;
  background-color: #f5f5f5;
  border-radius: 1px;
}
ul.slimmenu {
  width: auto;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: right;
}
ul.slimmenu:before, ul.slimmenu:after {
  content: '';
  display: table;
}
ul.slimmenu:after {
  clear: both;
}
ul.slimmenu.collapsed li {
  display: block;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
ul.slimmenu.collapsed li > ul {
  position: static;
  display: none;
}
ul.slimmenu.collapsed li a {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
ul.slimmenu.collapsed li .sub-toggle {
  height: 40px;
}
ul.slimmenu li {
  position: relative;
  float: left;
  display: inline-block;
}
ul.slimmenu li ul {
  margin: 0;
  list-style-type: none;
}
ul.slimmenu li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  display: none;
  width: 100%;
}
ul.slimmenu li > ul > li ul {
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  display: none;
  width: 100%;
}
ul.slimmenu li:last-child a {
  padding-right: 0px;
}
ul.slimmenu li a {
  font-family: 'Roboto', sans-serif;
  display: block;
  /*padding: 12px 0px 12px 64px;*/
  color: black !important;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 0.5s ease-out;
  -o-transition: background-color 0.5s ease-out;
  -moz-transition: background-color 0.5s ease-out;
  -webkit-transition: background-color 0.5s ease-out;
  outline: none;
  padding-left: 35px;
  padding-right: 35px;
}
ul.slimmenu li a:focus, ul.slimmenu li a:active, ul.slimmenu li a:hover {
  color: black !important;
  text-decoration: none;
}
ul.slimmenu li a:hover {
  font-weight: 900;
}
ul.slimmenu li .sub-toggle {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.075);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 48px;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
ul.slimmenu li .sub-toggle:before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
}
ul.slimmenu li .sub-toggle > i {
  display: inline-block;
  color: #333;
  font-size: 18px;
  vertical-align: middle;
}
ul.slimmenu > li.has-submenu + li {
  border-left: 0;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Sass Functions
 You can do a lot of really cool things in Sass. Functions help you
 make repeated actions a lot easier. They are really similar to mixins,
 but can be used for so much more.
 Anyway, keep them all in here so it's easier to find when you're
 looking for one.
 For more info on functions, go here:
 http://sass-lang.com/documentation/Sass/Script/Functions.html
 ******************************************************************/
/*********************
 COLOR FUNCTIONS
 These are helpful when you're working
 with shadows and such things. It's essentially
 a quicker way to write RGBA.
 Example:
 box-shadow: 0 0 4px black(0.3);
 compiles to:
 box-shadow: 0 0 4px rgba(0,0,0,0.3);
 *********************/
/*********************
 RESPONSIVE HELPER FUNCTION
 If you're creating a responsive site, then
 you've probably already read
 Responsive Web Design: http://www.abookapart.com/products/responsive-web-design
 Here's a nice little helper function for calculating
 target / context
 as mentioned in that book.
 Example:
 width: cp(650px, 1000px);
 or
 width: calc-percent(650px, 1000px);
 both compile to:
 width: 65%;
 *********************/
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Mixins Stylesheet
 This is where you can take advantage of Sass' great features: Mixins.
 I won't go in-depth on how they work exactly,
 there are a few articles below that will help do that. What I will
 tell you is that this will help speed up simple changes like
 changing a color or adding CSS3 techniques gradients.
 A WORD OF WARNING: It's very easy to overdo it here. Be careful and
 remember less is more.
 Helpful:
 http://sachagreif.com/useful-sass-mixins/
 http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
 http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/
 ******************************************************************/
/*********************
 TRANSITION
 *********************/
/*
 I totally rewrote this to be cleaner and easier to use.
 You'll need to be using Sass 3.2+ for these to work.
 Thanks to @anthonyshort for the inspiration on these.
 USAGE: @include transition(all 0.2s ease-in-out);
 */
/*********************
 CSS3 GRADIENTS
 Be careful with these since they can
 really slow down your CSS. Don't overdo it.
 *********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
 BOX SIZING
 *********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
 probably best not to use it. I mean, were you going to anyway? */
/*!
 * Bootstrap v4.0.0-beta.2 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #2980b9;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #7dd667;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #868e96;
  --gray-dark: #343a40;
  --primary: #2980b9;
  --secondary: #868e96;
  --success: #7dd667;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}
@media print {
  *, *::before, *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td, .table th {
    background-color: #fff !important;
  }
  .table-bordered th, .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus {
  outline: none !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
dfn {
  font-style: italic;
}
b, strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #0095bd;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #005971;
  text-decoration: underline;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}
pre, code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
a, area, button, [role="button"], input:not([type="range"]), label, select, summary, textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1, .h1 {
  font-size: 2.5rem;
}
h2, .h2 {
  font-size: 2rem;
}
h3, .h3 {
  font-size: 1.75rem;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.25rem;
}
h6, .h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(50, 57, 68, .1);
}
small, .small {
  font-size: 80%;
  font-weight: 400;
}
mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 5px;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #868e96;
}
.blockquote-footer::before {
  content: "\2014 \00A0";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 90%;
  color: #868e96;
}
code, kbd, pre, samp {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
code {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #bd4147;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}
a > code {
  padding: 0;
  color: inherit;
  background-color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 90%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 90%;
  color: #212529;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .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, .col-sm, .col-sm-auto, .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, .col-md, .col-md-auto, .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, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}
.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}
.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}
.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table th, .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e9ecef;
}
.table tbody + tbody {
  border-top: 2px solid #e9ecef;
}
.table .table {
  background-color: #fff;
}
.table-sm th, .table-sm td {
  padding: 0.3rem;
}
.table-bordered {
  border: 1px solid #e9ecef;
}
.table-bordered th, .table-bordered td {
  border: 1px solid #e9ecef;
}
.table-bordered thead th, .table-bordered thead td {
  border-bottom-width: 2px;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(50, 57, 68, .05);
}
.table-hover tbody tr:hover {
  background-color: rgba(50, 57, 68, .075);
}
.table-primary, .table-primary > th, .table-primary > td {
  background-color: #c3dbeb;
}
.table-hover .table-primary:hover {
  background-color: #b0d0e5;
}
.table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
  background-color: #b0d0e5;
}
.table-secondary, .table-secondary > th, .table-secondary > td {
  background-color: #dddfe2;
}
.table-hover .table-secondary:hover {
  background-color: #cfd3d6;
}
.table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
  background-color: #cfd3d6;
}
.table-success, .table-success > th, .table-success > td {
  background-color: #dbf4d4;
}
.table-hover .table-success:hover {
  background-color: #c9eec0;
}
.table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
  background-color: #c9eec0;
}
.table-info, .table-info > th, .table-info > td {
  background-color: #bee5eb;
}
.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
  background-color: #abdde5;
}
.table-warning, .table-warning > th, .table-warning > td {
  background-color: #ffeeba;
}
.table-hover .table-warning:hover {
  background-color: #ffe7a0;
}
.table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
  background-color: #ffe7a0;
}
.table-danger, .table-danger > th, .table-danger > td {
  background-color: #f5c6cb;
}
.table-hover .table-danger:hover {
  background-color: #f1b1b7;
}
.table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
  background-color: #f1b1b7;
}
.table-light, .table-light > th, .table-light > td {
  background-color: #fdfdfe;
}
.table-hover .table-light:hover {
  background-color: #f1f1f1;
}
.table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
  background-color: #f1f1f1;
}
.table-dark, .table-dark > th, .table-dark > td {
  background-color: #c6c8ca;
}
.table-hover .table-dark:hover {
  background-color: #b9bbbd;
}
.table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
  background-color: #b9bbbd;
}
.table-active, .table-active > th, .table-active > td {
  background-color: rgba(50, 57, 68, .075);
}
.table-hover .table-active:hover {
  background-color: rgba(39, 45, 53, .075);
}
.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
  background-color: rgba(39, 45, 53, .075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #e9ecef;
}
.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark th, .table-dark td, .table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, .05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, .075);
}
@media (max-width: 575px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm.table-bordered {
    border: 0;
  }
}
@media (max-width: 767px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md.table-bordered {
    border: 0;
  }
}
@media (max-width: 991px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg.table-bordered {
    border: 0;
  }
}
@media (max-width: 1199px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl.table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive.table-bordered {
  border: 0;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #7fbbe3;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, .25);
}
.form-control::placeholder {
  color: #868e96;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-file, .form-control-range {
  display: block;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.col-form-legend {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  font-size: 1rem;
}
.form-control-plaintext {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .input-group-sm > .form-control.form-control-plaintext, .input-group-sm > .input-group-addon.form-control-plaintext, .input-group-sm > .input-group-btn > .btn.form-control-plaintext, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control.form-control-plaintext, .input-group-lg > .input-group-addon.form-control-plaintext, .input-group-lg > .input-group-btn > .btn.form-control-plaintext {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), .input-group-sm > select.input-group-addon:not([size]):not([multiple]), .input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}
.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), .input-group-lg > select.input-group-addon:not([size]):not([multiple]), .input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}
.form-group {
  margin-bottom: 1rem;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col, .form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}
.form-check {
  position: relative;
  display: block;
  margin-bottom: 0.5rem;
}
.form-check.disabled .form-check-label {
  color: #868e96;
}
.form-check-label {
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: -1.25rem;
}
.form-check-inline {
  display: inline-block;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-label {
  vertical-align: middle;
}
.valid-feedback {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #7dd667;
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(125, 214, 103, .8);
  border-radius: 0.2rem;
}
.was-validated .form-control:valid, .was-validated .custom-select:valid, .form-control.is-valid, .custom-select.is-valid {
  border-color: #7dd667;
}
.was-validated .form-control:valid:focus, .was-validated .custom-select:valid:focus, .form-control.is-valid:focus, .custom-select.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, .25);
}
.was-validated .form-control:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-feedback, .form-control.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-check-input:valid + .form-check-label, .form-check-input.is-valid + .form-check-label {
  color: #7dd667;
}
.was-validated .custom-control-input:valid ~ .custom-control-indicator, .custom-control-input.is-valid ~ .custom-control-indicator {
  background-color: rgba(125, 214, 103, .25);
}
.was-validated .custom-control-input:valid ~ .custom-control-description, .custom-control-input.is-valid ~ .custom-control-description {
  color: #7dd667;
}
.was-validated .custom-file-input:valid ~ .custom-file-control, .custom-file-input.is-valid ~ .custom-file-control {
  border-color: #7dd667;
}
.was-validated .custom-file-input:valid ~ .custom-file-control::before, .custom-file-input.is-valid ~ .custom-file-control::before {
  border-color: inherit;
}
.was-validated .custom-file-input:valid:focus, .custom-file-input.is-valid:focus {
  box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, .25);
}
.invalid-feedback {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc3545;
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  width: 250px;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, .8);
  border-radius: 0.2rem;
}
.was-validated .form-control:invalid, .was-validated .custom-select:invalid, .form-control.is-invalid, .custom-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus, .was-validated .custom-select:invalid:focus, .form-control.is-invalid:focus, .custom-select.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .25);
}
.was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-check-input:invalid + .form-check-label, .form-check-input.is-invalid + .form-check-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-indicator, .custom-control-input.is-invalid ~ .custom-control-indicator {
  background-color: rgba(220, 53, 69, .25);
}
.was-validated .custom-control-input:invalid ~ .custom-control-description, .custom-control-input.is-invalid ~ .custom-control-description {
  color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-control, .custom-file-input.is-invalid ~ .custom-file-control {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-control::before, .custom-file-input.is-invalid ~ .custom-file-control::before {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid:focus, .custom-file-input.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .25);
}
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  .form-inline .form-check-label {
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }
  .form-inline .custom-control-indicator {
    position: static;
    display: inline-block;
    margin-right: 0.25rem;
    vertical-align: text-bottom;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:focus, .btn:hover {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, .25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active {
  background-image: none;
}
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #fff;
  background-color: #2980b9;
  border-color: #2980b9;
}
.btn-primary:hover {
  color: #fff;
  background-color: #226a9a;
  border-color: #20638f;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, .5);
}
.btn-primary.disabled, .btn-primary:disabled {
  background-color: #2980b9;
  border-color: #2980b9;
}
.btn-primary:not([disabled]):not(.disabled):active, .btn-primary:not([disabled]):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #20638f;
  border-color: #1d5c85;
  box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, .5);
}
.btn-secondary {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #727b84;
  border-color: #6c757d;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, .5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  background-color: #868e96;
  border-color: #868e96;
}
.btn-secondary:not([disabled]):not(.disabled):active, .btn-secondary:not([disabled]):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #666e76;
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, .5);
}
.btn-success {
  color: #111;
  background-color: #7dd667;
  border-color: #7dd667;
}
.btn-success:hover {
  color: #111;
  background-color: #63ce49;
  border-color: #5bcb3f;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, .5);
}
.btn-success.disabled, .btn-success:disabled {
  background-color: #7dd667;
  border-color: #7dd667;
}
.btn-success:not([disabled]):not(.disabled):active, .btn-success:not([disabled]):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #111;
  background-color: #5bcb3f;
  border-color: #53c736;
  box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, .5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, .5);
}
.btn-info.disabled, .btn-info:disabled {
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not([disabled]):not(.disabled):active, .btn-info:not([disabled]):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, .5);
}
.btn-warning {
  color: #111;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #111;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, .5);
}
.btn-warning.disabled, .btn-warning:disabled {
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not([disabled]):not(.disabled):active, .btn-warning:not([disabled]):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #111;
  background-color: #d39e00;
  border-color: #c69500;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, .5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .5);
}
.btn-danger.disabled, .btn-danger:disabled {
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not([disabled]):not(.disabled):active, .btn-danger:not([disabled]):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .5);
}
.btn-light {
  color: #111;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #111;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5);
}
.btn-light.disabled, .btn-light:disabled {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not([disabled]):not(.disabled):active, .btn-light:not([disabled]):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #111;
  background-color: #dae0e5;
  border-color: #d3d9df;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, .5);
}
.btn-dark.disabled, .btn-dark:disabled {
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not([disabled]):not(.disabled):active, .btn-dark:not([disabled]):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, .5);
}
.btn-outline-primary {
  color: #2980b9;
  background-color: transparent;
  background-image: none;
  border-color: #2980b9;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #2980b9;
  border-color: #2980b9;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, .5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #2980b9;
  background-color: transparent;
}
.btn-outline-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #2980b9;
  border-color: #2980b9;
  box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, .5);
}
.btn-outline-secondary {
  color: #868e96;
  background-color: transparent;
  background-image: none;
  border-color: #868e96;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, .5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #868e96;
  background-color: transparent;
}
.btn-outline-secondary:not([disabled]):not(.disabled):active, .btn-outline-secondary:not([disabled]):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #868e96;
  border-color: #868e96;
  box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, .5);
}
.btn-outline-success {
  color: #7dd667;
  background-color: transparent;
  background-image: none;
  border-color: #7dd667;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #7dd667;
  border-color: #7dd667;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, .5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #7dd667;
  background-color: transparent;
}
.btn-outline-success:not([disabled]):not(.disabled):active, .btn-outline-success:not([disabled]):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #7dd667;
  border-color: #7dd667;
  box-shadow: 0 0 0 0.2rem rgba(125, 214, 103, .5);
}
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, .5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not([disabled]):not(.disabled):active, .btn-outline-info:not([disabled]):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, .5);
}
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, .5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not([disabled]):not(.disabled):active, .btn-outline-warning:not([disabled]):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, .5);
}
.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not([disabled]):not(.disabled):active, .btn-outline-danger:not([disabled]):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .5);
}
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not([disabled]):not(.disabled):active, .btn-outline-light:not([disabled]):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, .5);
}
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, .5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not([disabled]):not(.disabled):active, .btn-outline-dark:not([disabled]):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, .5);
}
.btn-link {
  font-weight: 400;
  color: #0095bd;
  background-color: transparent;
}
.btn-link:hover {
  color: #005971;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  border-color: transparent;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #868e96;
}
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  width: 100%;
}
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.show {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.show {
  display: block;
}
tr.collapse.show {
  display: table-row;
}
tbody.collapse.show {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.dropup, .dropdown {
  position: relative;
}
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(50, 57, 68, .15);
  border-radius: 0.25rem;
}
.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background: none;
  border: 0;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #2980b9;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #868e96;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #868e96;
  white-space: nowrap;
}
.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}
.btn-group > .btn:hover, .btn-group-vertical > .btn:hover {
  z-index: 2;
}
.btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn, .btn-group-vertical .btn + .btn, .btn-group .btn + .btn-group, .btn-group-vertical .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group-vertical .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn + .dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.btn + .dropdown-toggle-split::after {
  margin-left: 0;
}
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical .btn, .btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group .form-control:focus, .input-group .form-control:active, .input-group .form-control:hover {
  z-index: 3;
}
.input-group-addon, .input-group-btn, .input-group .form-control {
  display: flex;
  align-items: center;
}
.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon, .input-group-btn {
  white-space: nowrap;
}
.input-group-addon {
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-addon.form-control-sm, .input-group-sm > .form-control.input-group-addon, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn.input-group-addon {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.input-group-addon.form-control-lg, .input-group-lg > .form-control.input-group-addon, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn.input-group-addon {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:not(:last-child), .input-group-addon:not(:last-child), .input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group > .btn, .input-group-btn:not(:last-child) > .dropdown-toggle, .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-addon:not(:last-child) {
  border-right: 0;
}
.input-group .form-control:not(:first-child), .input-group-addon:not(:first-child), .input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group > .btn, .input-group-btn:not(:first-child) > .dropdown-toggle, .input-group-btn:not(:last-child) > .btn:not(:first-child), .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-control + .input-group-addon:not(:first-child) {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  align-items: stretch;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:focus, .input-group-btn > .btn:active, .input-group-btn > .btn:hover {
  z-index: 3;
}
.input-group-btn:first-child > .btn + .btn {
  margin-left: 0;
}
.input-group-btn:not(:last-child) > .btn, .input-group-btn:not(:last-child) > .btn-group {
  margin-right: -1px;
}
.input-group-btn:not(:first-child) > .btn, .input-group-btn:not(:first-child) > .btn-group {
  z-index: 2;
  margin-left: 0;
}
.input-group-btn:not(:first-child) > .btn:first-child, .input-group-btn:not(:first-child) > .btn-group:first-child {
  margin-left: -1px;
}
.input-group-btn:not(:first-child) > .btn:focus, .input-group-btn:not(:first-child) > .btn-group:focus, .input-group-btn:not(:first-child) > .btn:active, .input-group-btn:not(:first-child) > .btn-group:active, .input-group-btn:not(:first-child) > .btn:hover, .input-group-btn:not(:first-child) > .btn-group:hover {
  z-index: 3;
}
.custom-control {
  position: relative;
  display: inline-flex;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-right: 1rem;
}
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-indicator {
  color: #fff;
  background-color: #2980b9;
}
.custom-control-input:focus ~ .custom-control-indicator {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(41, 128, 185, .25);
}
.custom-control-input:active ~ .custom-control-indicator {
  color: #fff;
  background-color: #a9d1ec;
}
.custom-control-input:disabled ~ .custom-control-indicator {
  background-color: #e9ecef;
}
.custom-control-input:disabled ~ .custom-control-description {
  color: #868e96;
}
.custom-control-indicator {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  user-select: none;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox .custom-control-indicator {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
  background-color: #2980b9;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-indicator {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-indicator {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-controls-stacked {
  display: flex;
  flex-direction: column;
}
.custom-controls-stacked .custom-control {
  margin-bottom: 0.25rem;
}
.custom-controls-stacked .custom-control + .custom-control {
  margin-left: 0;
}
.custom-select {
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #7fbbe3;
  outline: none;
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple] {
  height: auto;
  background-image: none;
}
.custom-select:disabled {
  color: #868e96;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}
.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}
.custom-file {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}
.custom-file-input {
  min-width: 14rem;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-control {
  box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #2980b9;
}
.custom-file-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  user-select: none;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-control:lang(en):empty::after {
  content: "Choose file...";
}
.custom-file-control::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 6;
  display: block;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}
.custom-file-control:lang(en)::before {
  content: "Browse";
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:focus, .nav-link:hover {
  text-decoration: none;
}
.nav-link.disabled {
  color: #868e96;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #ddd;
}
.nav-tabs .nav-link.disabled {
  color: #868e96;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #2980b9;
}
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar > .container, .navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:focus, .navbar-brand:hover {
  text-decoration: none;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:focus, .navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 767px) {
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 991px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 1199px) {
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container, .navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container, .navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
}
.navbar-light .navbar-brand {
  color: rgba(50, 57, 68, .9);
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color: rgba(50, 57, 68, .9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(50, 57, 68, .5);
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(50, 57, 68, .7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(50, 57, 68, .3);
}
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
  color: rgba(50, 57, 68, .9);
}
.navbar-light .navbar-toggler {
  color: rgba(50, 57, 68, .5);
  border-color: rgba(50, 57, 68, .1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(50, 57, 68, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(50, 57, 68, .5);
}
.navbar-light .navbar-text a {
  color: rgba(50, 57, 68, .9);
}
.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
  color: rgba(50, 57, 68, .9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, .5);
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, .75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, .25);
}
.navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, .5);
  border-color: rgba(255, 255, 255, .1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, .5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {
  color: #fff;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(50, 57, 68, .125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(50, 57, 68, .03);
  border-bottom: 1px solid rgba(50, 57, 68, .125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(50, 57, 68, .03);
  border-top: 1px solid rgba(50, 57, 68, .125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-deck {
  display: flex;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group {
  display: flex;
  flex-direction: column;
}
.card-group .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  .card-group .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group .card:only-child .card-img-top {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group .card:only-child .card-img-bottom {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom {
    border-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #868e96;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #868e96;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #2980b9;
  border-color: #2980b9;
}
.page-item.disabled .page-link {
  color: #868e96;
  pointer-events: none;
  background-color: #fff;
  border-color: #ddd;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #0095bd;
  background-color: #fff;
  border: 1px solid #ddd;
}
.page-link:focus, .page-link:hover {
  color: #005971;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #ddd;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #2980b9;
}
.badge-primary[href]:focus, .badge-primary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #20638f;
}
.badge-secondary {
  color: #fff;
  background-color: #868e96;
}
.badge-secondary[href]:focus, .badge-secondary[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #6c757d;
}
.badge-success {
  color: #111;
  background-color: #7dd667;
}
.badge-success[href]:focus, .badge-success[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #5bcb3f;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:focus, .badge-info[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}
.badge-warning {
  color: #111;
  background-color: #ffc107;
}
.badge-warning[href]:focus, .badge-warning[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #d39e00;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-danger[href]:focus, .badge-danger[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}
.badge-light {
  color: #111;
  background-color: #f8f9fa;
}
.badge-light[href]:focus, .badge-light[href]:hover {
  color: #111;
  text-decoration: none;
  background-color: #dae0e5;
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:focus, .badge-dark[href]:hover {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.alert-primary {
  color: #154360;
  background-color: #d4e6f1;
  border-color: #c3dbeb;
}
.alert-primary hr {
  border-top-color: #b0d0e5;
}
.alert-primary .alert-link {
  color: #0c2636;
}
.alert-secondary {
  color: #464a4e;
  background-color: #e7e8ea;
  border-color: #dddfe2;
}
.alert-secondary hr {
  border-top-color: #cfd3d6;
}
.alert-secondary .alert-link {
  color: #2e3033;
}
.alert-success {
  color: #416f36;
  background-color: #e5f7e1;
  border-color: #dbf4d4;
}
.alert-success hr {
  border-top-color: #c9eec0;
}
.alert-success .alert-link {
  color: #2d4d25;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c32;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe7a0;
}
.alert-warning .alert-link {
  color: #533f02;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b1b7;
}
.alert-danger .alert-link {
  color: #491217;
}
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #f1f1f1;
}
.alert-light .alert-link {
  color: #686868;
}
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbd;
}
.alert-dark .alert-link {
  color: #040505;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2980b9;
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:focus, .list-group-item-action:hover {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(50, 57, 68, .125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item:focus, .list-group-item:hover {
  text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #868e96;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #2980b9;
  border-color: #2980b9;
}
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}
.list-group-item-primary {
  color: #154360;
  background-color: #c3dbeb;
}
a.list-group-item-primary, button.list-group-item-primary {
  color: #154360;
}
a.list-group-item-primary:focus, button.list-group-item-primary:focus, a.list-group-item-primary:hover, button.list-group-item-primary:hover {
  color: #154360;
  background-color: #b0d0e5;
}
a.list-group-item-primary.active, button.list-group-item-primary.active {
  color: #fff;
  background-color: #154360;
  border-color: #154360;
}
.list-group-item-secondary {
  color: #464a4e;
  background-color: #dddfe2;
}
a.list-group-item-secondary, button.list-group-item-secondary {
  color: #464a4e;
}
a.list-group-item-secondary:focus, button.list-group-item-secondary:focus, a.list-group-item-secondary:hover, button.list-group-item-secondary:hover {
  color: #464a4e;
  background-color: #cfd3d6;
}
a.list-group-item-secondary.active, button.list-group-item-secondary.active {
  color: #fff;
  background-color: #464a4e;
  border-color: #464a4e;
}
.list-group-item-success {
  color: #416f36;
  background-color: #dbf4d4;
}
a.list-group-item-success, button.list-group-item-success {
  color: #416f36;
}
a.list-group-item-success:focus, button.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:hover {
  color: #416f36;
  background-color: #c9eec0;
}
a.list-group-item-success.active, button.list-group-item-success.active {
  color: #fff;
  background-color: #416f36;
  border-color: #416f36;
}
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
a.list-group-item-info, button.list-group-item-info {
  color: #0c5460;
}
a.list-group-item-info:focus, button.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:hover {
  color: #0c5460;
  background-color: #abdde5;
}
a.list-group-item-info.active, button.list-group-item-info.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
a.list-group-item-warning, button.list-group-item-warning {
  color: #856404;
}
a.list-group-item-warning:focus, button.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:hover {
  color: #856404;
  background-color: #ffe7a0;
}
a.list-group-item-warning.active, button.list-group-item-warning.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
a.list-group-item-danger, button.list-group-item-danger {
  color: #721c24;
}
a.list-group-item-danger:focus, button.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:hover {
  color: #721c24;
  background-color: #f1b1b7;
}
a.list-group-item-danger.active, button.list-group-item-danger.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
a.list-group-item-light, button.list-group-item-light {
  color: #818182;
}
a.list-group-item-light:focus, button.list-group-item-light:focus, a.list-group-item-light:hover, button.list-group-item-light:hover {
  color: #818182;
  background-color: #f1f1f1;
}
a.list-group-item-light.active, button.list-group-item-light.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
a.list-group-item-dark, button.list-group-item-dark {
  color: #1b1e21;
}
a.list-group-item-dark:focus, button.list-group-item-dark:focus, a.list-group-item-dark:hover, button.list-group-item-dark:hover {
  color: #1b1e21;
  background-color: #b9bbbd;
}
a.list-group-item-dark.active, button.list-group-item-dark.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #323944;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:focus, .close:hover {
  color: #323944;
  text-decoration: none;
  opacity: 0.75;
}
button.close {
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(50, 57, 68, .2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #323944;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 15px;
  margin: -15px -15px -15px auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 15px;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 100px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
}
.tooltip .arrow::before {
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tooltip.bs-tooltip-top, .tooltip.bs-tooltip-auto[x-placement^="top"] {
  padding: 5px 0;
}
.tooltip.bs-tooltip-top .arrow, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}
.tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #323944;
}
.tooltip.bs-tooltip-right, .tooltip.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 5px;
}
.tooltip.bs-tooltip-right .arrow, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
}
.tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #323944;
}
.tooltip.bs-tooltip-bottom, .tooltip.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 5px 0;
}
.tooltip.bs-tooltip-bottom .arrow, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}
.tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #323944;
}
.tooltip.bs-tooltip-left, .tooltip.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 5px;
}
.tooltip.bs-tooltip-left .arrow, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
}
.tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #323944;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #323944;
  border-radius: 0.25rem;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(50, 57, 68, .2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  border-color: transparent;
  border-style: solid;
}
.popover .arrow::before {
  content: "";
  border-width: 0.8rem;
}
.popover .arrow::after {
  content: "";
  border-width: 0.8rem;
}
.popover.bs-popover-top, .popover.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.8rem;
}
.popover.bs-popover-top .arrow, .popover.bs-popover-auto[x-placement^="top"] .arrow {
  bottom: 0;
}
.popover.bs-popover-top .arrow::before, .popover.bs-popover-auto[x-placement^="top"] .arrow::before, .popover.bs-popover-top .arrow::after, .popover.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-bottom-width: 0;
}
.popover.bs-popover-top .arrow::before, .popover.bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: -0.8rem;
  margin-left: -0.8rem;
  border-top-color: rgba(50, 57, 68, 0.25);
}
.popover.bs-popover-top .arrow::after, .popover.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: calc((0.8rem - 1px) * -1);
  margin-left: -0.8rem;
  border-top-color: #fff;
}
.popover.bs-popover-right, .popover.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.8rem;
}
.popover.bs-popover-right .arrow, .popover.bs-popover-auto[x-placement^="right"] .arrow {
  left: 0;
}
.popover.bs-popover-right .arrow::before, .popover.bs-popover-auto[x-placement^="right"] .arrow::before, .popover.bs-popover-right .arrow::after, .popover.bs-popover-auto[x-placement^="right"] .arrow::after {
  margin-top: -0.8rem;
  border-left-width: 0;
}
.popover.bs-popover-right .arrow::before, .popover.bs-popover-auto[x-placement^="right"] .arrow::before {
  left: -0.8rem;
  border-right-color: rgba(50, 57, 68, 0.25);
}
.popover.bs-popover-right .arrow::after, .popover.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: calc((0.8rem - 1px) * -1);
  border-right-color: #fff;
}
.popover.bs-popover-bottom, .popover.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.8rem;
}
.popover.bs-popover-bottom .arrow, .popover.bs-popover-auto[x-placement^="bottom"] .arrow {
  top: 0;
}
.popover.bs-popover-bottom .arrow::before, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before, .popover.bs-popover-bottom .arrow::after, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  margin-left: -0.8rem;
  border-top-width: 0;
}
.popover.bs-popover-bottom .arrow::before, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: -0.8rem;
  border-bottom-color: rgba(50, 57, 68, 0.25);
}
.popover.bs-popover-bottom .arrow::after, .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: calc((0.8rem - 1px) * -1);
  border-bottom-color: #fff;
}
.popover.bs-popover-bottom .popover-header::before, .popover.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 20px;
  margin-left: -10px;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}
.popover.bs-popover-left, .popover.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.8rem;
}
.popover.bs-popover-left .arrow, .popover.bs-popover-auto[x-placement^="left"] .arrow {
  right: 0;
}
.popover.bs-popover-left .arrow::before, .popover.bs-popover-auto[x-placement^="left"] .arrow::before, .popover.bs-popover-left .arrow::after, .popover.bs-popover-auto[x-placement^="left"] .arrow::after {
  margin-top: -0.8rem;
  border-right-width: 0;
}
.popover.bs-popover-left .arrow::before, .popover.bs-popover-auto[x-placement^="left"] .arrow::before {
  right: -0.8rem;
  border-left-color: rgba(50, 57, 68, 0.25);
}
.popover.bs-popover-left .arrow::after, .popover.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: calc((0.8rem - 1px) * -1);
  border-left-color: #fff;
}
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  perspective: 1000px;
}
.carousel-item.active, .carousel-item-next, .carousel-item-prev {
  display: block;
}
.carousel-item-next, .carousel-item-prev {
  position: absolute;
  top: 0;
}
.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  transform: translate3d(0, 0, 0);
}
.carousel-item-next, .active.carousel-item-right {
  transform: translateX(100%);
}
@supports (transform-style: preserve-3d) {
  transform: translate3d(100%, 0, 0);
}
.carousel-item-prev, .active.carousel-item-left {
  transform: translateX(-100%);
}
@supports (transform-style: preserve-3d) {
  transform: translate3d(-100%, 0, 0);
}
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-prev:focus, .carousel-control-next:focus, .carousel-control-prev:hover, .carousel-control-next:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, .5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.bg-primary {
  background-color: #2980b9 !important;
}
a.bg-primary:focus, a.bg-primary:hover {
  background-color: #20638f !important;
}
.bg-secondary {
  background-color: #868e96 !important;
}
a.bg-secondary:focus, a.bg-secondary:hover {
  background-color: #6c757d !important;
}
.bg-success {
  background-color: #7dd667 !important;
}
a.bg-success:focus, a.bg-success:hover {
  background-color: #5bcb3f !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:focus, a.bg-info:hover {
  background-color: #117a8b !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:focus, a.bg-warning:hover {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:focus, a.bg-danger:hover {
  background-color: #bd2130 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:focus, a.bg-light:hover {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:focus, a.bg-dark:hover {
  background-color: #1d2124 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #ccc !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #2980b9 !important;
}
.border-secondary {
  border-color: #868e96 !important;
}
.border-success {
  border-color: #7dd667 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
.d-print-block {
  display: none !important;
}
@media print {
  .d-print-block {
    display: block !important;
  }
}
.d-print-inline {
  display: none !important;
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
}
.d-print-inline-block {
  display: none !important;
}
@media print {
  .d-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}
.embed-responsive-16by9::before {
  padding-top: 56.25%;
}
.embed-responsive-4by3::before {
  padding-top: 75%;
}
.embed-responsive-1by1::before {
  padding-top: 100%;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}
.position-relative {
  position: relative !important;
}
.position-absolute {
  position: absolute !important;
}
.position-fixed {
  position: fixed !important;
}
.position-sticky {
  position: sticky !important;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports (position: sticky) {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}
.w-25 {
  width: 25% !important;
}
.w-50 {
  width: 50% !important;
}
.w-75 {
  width: 75% !important;
}
.w-100 {
  width: 100% !important;
}
.h-25 {
  height: 25% !important;
}
.h-50 {
  height: 50% !important;
}
.h-75 {
  height: 75% !important;
}
.h-100 {
  height: 100% !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0, .my-0 {
  margin-top: 0 !important;
}
.mr-0, .mx-0 {
  margin-right: 0 !important;
}
.mb-0, .my-0 {
  margin-bottom: 0 !important;
}
.ml-0, .mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1, .my-1 {
  margin-top: 0.25rem !important;
}
.mr-1, .mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1, .my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1, .mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2, .my-2 {
  margin-top: 0.5rem !important;
}
.mr-2, .mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2, .my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2, .mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3, .my-3 {
  margin-top: 1rem !important;
}
.mr-3, .mx-3 {
  margin-right: 1rem !important;
}
.mb-3, .my-3 {
  margin-bottom: 1rem !important;
}
.ml-3, .mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4, .my-4 {
  margin-top: 1.5rem !important;
}
.mr-4, .mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4, .my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4, .mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5, .my-5 {
  margin-top: 3rem !important;
}
.mr-5, .mx-5 {
  margin-right: 3rem !important;
}
.mb-5, .my-5 {
  margin-bottom: 3rem !important;
}
.ml-5, .mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0, .py-0 {
  padding-top: 0 !important;
}
.pr-0, .px-0 {
  padding-right: 0 !important;
}
.pb-0, .py-0 {
  padding-bottom: 0 !important;
}
.pl-0, .px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1, .py-1 {
  padding-top: 0.25rem !important;
}
.pr-1, .px-1 {
  padding-right: 0.25rem !important;
}
.pb-1, .py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1, .px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2, .py-2 {
  padding-top: 0.5rem !important;
}
.pr-2, .px-2 {
  padding-right: 0.5rem !important;
}
.pb-2, .py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2, .px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3, .py-3 {
  padding-top: 1rem !important;
}
.pr-3, .px-3 {
  padding-right: 1rem !important;
}
.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}
.pl-3, .px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4, .py-4 {
  padding-top: 1.5rem !important;
}
.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}
.pb-4, .py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5, .py-5 {
  padding-top: 3rem !important;
}
.pr-5, .px-5 {
  padding-right: 3rem !important;
}
.pb-5, .py-5 {
  padding-bottom: 3rem !important;
}
.pl-5, .px-5 {
  padding-left: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto, .my-auto {
  margin-top: auto !important;
}
.mr-auto, .mx-auto {
  margin-right: auto !important;
}
.mb-auto, .my-auto {
  margin-bottom: auto !important;
}
.ml-auto, .mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0, .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1, .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1, .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1, .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1, .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2, .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2, .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2, .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2, .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0, .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1, .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1, .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1, .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1, .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2, .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2, .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2, .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2, .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto, .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0, .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0, .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0, .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1, .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1, .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1, .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1, .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2, .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2, .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2, .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2, .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3, .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3, .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5, .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5, .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0, .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0, .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0, .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0, .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1, .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1, .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1, .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1, .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2, .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2, .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2, .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2, .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3, .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3, .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3, .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5, .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5, .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5, .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto, .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto, .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto, .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto, .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1, .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1, .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1, .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1, .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2, .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2, .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2, .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2, .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0, .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0, .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1, .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1, .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1, .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1, .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2, .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2, .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2, .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2, .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto, .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0, .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1, .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1, .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1, .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1, .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2, .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2, .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2, .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2, .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0, .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0, .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0, .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1, .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1, .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1, .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1, .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2, .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2, .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2, .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2, .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto, .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #2980b9 !important;
}
a.text-primary:focus, a.text-primary:hover {
  color: #20638f !important;
}
.text-secondary {
  color: #868e96 !important;
}
a.text-secondary:focus, a.text-secondary:hover {
  color: #6c757d !important;
}
.text-success {
  color: #7dd667 !important;
}
a.text-success:focus, a.text-success:hover {
  color: #5bcb3f !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:focus, a.text-info:hover {
  color: #117a8b !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:focus, a.text-warning:hover {
  color: #d39e00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:focus, a.text-danger:hover {
  color: #bd2130 !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:focus, a.text-light:hover {
  color: #dae0e5 !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:focus, a.text-dark:hover {
  color: #1d2124 !important;
}
.text-muted {
  color: #868e96 !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.ekko-lightbox {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 0 !important;
}
.ekko-lightbox-container {
  position: relative;
}
.ekko-lightbox-container > div.ekko-lightbox-item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
.ekko-lightbox iframe {
  width: 100%;
  height: 100%;
}
.ekko-lightbox-nav-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
}
.ekko-lightbox-nav-overlay a {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s;
  color: #fff;
  font-size: 30px;
  z-index: 1;
}
.ekko-lightbox-nav-overlay a > * {
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.ekko-lightbox-nav-overlay a > :focus {
  outline: none;
}
.ekko-lightbox-nav-overlay a span {
  padding: 0 30px;
}
.ekko-lightbox-nav-overlay a:last-child span {
  text-align: right;
}
.ekko-lightbox-nav-overlay a:hover {
  text-decoration: none;
}
.ekko-lightbox-nav-overlay a:focus {
  outline: none;
}
.ekko-lightbox-nav-overlay a.disabled {
  cursor: default;
  visibility: hidden;
}
.ekko-lightbox a:hover {
  opacity: 1;
  text-decoration: none;
}
.ekko-lightbox .modal-dialog {
  display: none;
}
.ekko-lightbox .modal-footer {
  text-align: left;
}
.ekko-lightbox-loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.ekko-lightbox-loader > div {
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
}
.ekko-lightbox-loader > div > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: a 2s infinite ease-in-out;
}
.ekko-lightbox-loader > div > div:last-child {
  animation-delay: -1s;
}
.modal-dialog .ekko-lightbox-loader > div > div {
  background-color: #333;
}
@keyframes a {
  0%, to {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.bx-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper li {
  max-width: 400px;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
}
.bxslider div {
  max-height: 520px;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
.bx-viewport li {
  cursor: pointer;
}
/** THEME
 ===================================*/
.bx-wrapper {
  background: #fff;
}
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../images/bx_loader.gif') center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
}
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}
.bx-wrapper .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
.bx-wrapper .bx-prev {
  left: 10px;
  background: url('../images/controls.png') no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:hover, .bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url('../images/controls.png') no-repeat -43px -32px;
}
.bx-wrapper .bx-next:hover, .bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url('images/controls.png') -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls-auto .bx-start.active, .bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url('../images/controls.png') -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls-auto .bx-stop.active, .bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714em;
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before, .fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before, .fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before, .fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before, .fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-feed:before, .fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before, .fa-users:before {
  content: "\f0c0";
}
.fa-chain:before, .fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before, .fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before, .fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before, .fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before, .fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before, .fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before, .fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before, .fa-usd:before {
  content: "\f155";
}
.fa-rupee:before, .fa-inr:before {
  content: "\f156";
}
.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158";
}
.fa-won:before, .fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before, .fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before, .fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-pp:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before, .fa-car:before {
  content: "\f1b9";
}
.fa-cab:before, .fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before, .fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-intersex:before, .fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-genderless:before {
  content: "\f22d";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before, .fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b";
}
.fa-optin-monster:before {
  content: "\f23c";
}
.fa-opencart:before {
  content: "\f23d";
}
.fa-expeditedssl:before {
  content: "\f23e";
}
.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240";
}
.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241";
}
.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242";
}
.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243";
}
.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244";
}
.fa-mouse-pointer:before {
  content: "\f245";
}
.fa-i-cursor:before {
  content: "\f246";
}
.fa-object-group:before {
  content: "\f247";
}
.fa-object-ungroup:before {
  content: "\f248";
}
.fa-sticky-note:before {
  content: "\f249";
}
.fa-sticky-note-o:before {
  content: "\f24a";
}
.fa-cc-jcb:before {
  content: "\f24b";
}
.fa-cc-diners-club:before {
  content: "\f24c";
}
.fa-clone:before {
  content: "\f24d";
}
.fa-balance-scale:before {
  content: "\f24e";
}
.fa-hourglass-o:before {
  content: "\f250";
}
.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251";
}
.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252";
}
.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253";
}
.fa-hourglass:before {
  content: "\f254";
}
.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255";
}
.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256";
}
.fa-hand-scissors-o:before {
  content: "\f257";
}
.fa-hand-lizard-o:before {
  content: "\f258";
}
.fa-hand-spock-o:before {
  content: "\f259";
}
.fa-hand-pointer-o:before {
  content: "\f25a";
}
.fa-hand-peace-o:before {
  content: "\f25b";
}
.fa-trademark:before {
  content: "\f25c";
}
.fa-registered:before {
  content: "\f25d";
}
.fa-creative-commons:before {
  content: "\f25e";
}
.fa-gg:before {
  content: "\f260";
}
.fa-gg-circle:before {
  content: "\f261";
}
.fa-tripadvisor:before {
  content: "\f262";
}
.fa-odnoklassniki:before {
  content: "\f263";
}
.fa-odnoklassniki-square:before {
  content: "\f264";
}
.fa-get-pocket:before {
  content: "\f265";
}
.fa-wikipedia-w:before {
  content: "\f266";
}
.fa-safari:before {
  content: "\f267";
}
.fa-chrome:before {
  content: "\f268";
}
.fa-firefox:before {
  content: "\f269";
}
.fa-opera:before {
  content: "\f26a";
}
.fa-internet-explorer:before {
  content: "\f26b";
}
.fa-tv:before, .fa-television:before {
  content: "\f26c";
}
.fa-contao:before {
  content: "\f26d";
}
.fa-500px:before {
  content: "\f26e";
}
.fa-amazon:before {
  content: "\f270";
}
.fa-calendar-plus-o:before {
  content: "\f271";
}
.fa-calendar-minus-o:before {
  content: "\f272";
}
.fa-calendar-times-o:before {
  content: "\f273";
}
.fa-calendar-check-o:before {
  content: "\f274";
}
.fa-industry:before {
  content: "\f275";
}
.fa-map-pin:before {
  content: "\f276";
}
.fa-map-signs:before {
  content: "\f277";
}
.fa-map-o:before {
  content: "\f278";
}
.fa-map:before {
  content: "\f279";
}
.fa-commenting:before {
  content: "\f27a";
}
.fa-commenting-o:before {
  content: "\f27b";
}
.fa-houzz:before {
  content: "\f27c";
}
.fa-vimeo:before {
  content: "\f27d";
}
.fa-black-tie:before {
  content: "\f27e";
}
.fa-fonticons:before {
  content: "\f280";
}
.fa-reddit-alien:before {
  content: "\f281";
}
.fa-edge:before {
  content: "\f282";
}
.fa-credit-card-alt:before {
  content: "\f283";
}
.fa-codiepie:before {
  content: "\f284";
}
.fa-modx:before {
  content: "\f285";
}
.fa-fort-awesome:before {
  content: "\f286";
}
.fa-usb:before {
  content: "\f287";
}
.fa-product-hunt:before {
  content: "\f288";
}
.fa-mixcloud:before {
  content: "\f289";
}
.fa-scribd:before {
  content: "\f28a";
}
.fa-pause-circle:before {
  content: "\f28b";
}
.fa-pause-circle-o:before {
  content: "\f28c";
}
.fa-stop-circle:before {
  content: "\f28d";
}
.fa-stop-circle-o:before {
  content: "\f28e";
}
.fa-shopping-bag:before {
  content: "\f290";
}
.fa-shopping-basket:before {
  content: "\f291";
}
.fa-hashtag:before {
  content: "\f292";
}
.fa-bluetooth:before {
  content: "\f293";
}
.fa-bluetooth-b:before {
  content: "\f294";
}
.fa-percent:before {
  content: "\f295";
}
.fa-gitlab:before {
  content: "\f296";
}
.fa-wpbeginner:before {
  content: "\f297";
}
.fa-wpforms:before {
  content: "\f298";
}
.fa-envira:before {
  content: "\f299";
}
.fa-universal-access:before {
  content: "\f29a";
}
.fa-wheelchair-alt:before {
  content: "\f29b";
}
.fa-question-circle-o:before {
  content: "\f29c";
}
.fa-blind:before {
  content: "\f29d";
}
.fa-audio-description:before {
  content: "\f29e";
}
.fa-volume-control-phone:before {
  content: "\f2a0";
}
.fa-braille:before {
  content: "\f2a1";
}
.fa-assistive-listening-systems:before {
  content: "\f2a2";
}
.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}
.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4";
}
.fa-glide:before {
  content: "\f2a5";
}
.fa-glide-g:before {
  content: "\f2a6";
}
.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7";
}
.fa-low-vision:before {
  content: "\f2a8";
}
.fa-viadeo:before {
  content: "\f2a9";
}
.fa-viadeo-square:before {
  content: "\f2aa";
}
.fa-snapchat:before {
  content: "\f2ab";
}
.fa-snapchat-ghost:before {
  content: "\f2ac";
}
.fa-snapchat-square:before {
  content: "\f2ad";
}
.fa-pied-piper:before {
  content: "\f2ae";
}
.fa-first-order:before {
  content: "\f2b0";
}
.fa-yoast:before {
  content: "\f2b1";
}
.fa-themeisle:before {
  content: "\f2b2";
}
.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3";
}
.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4";
}
.fa-handshake-o:before {
  content: "\f2b5";
}
.fa-envelope-open:before {
  content: "\f2b6";
}
.fa-envelope-open-o:before {
  content: "\f2b7";
}
.fa-linode:before {
  content: "\f2b8";
}
.fa-address-book:before {
  content: "\f2b9";
}
.fa-address-book-o:before {
  content: "\f2ba";
}
.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb";
}
.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc";
}
.fa-user-circle:before {
  content: "\f2bd";
}
.fa-user-circle-o:before {
  content: "\f2be";
}
.fa-user-o:before {
  content: "\f2c0";
}
.fa-id-badge:before {
  content: "\f2c1";
}
.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2";
}
.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3";
}
.fa-quora:before {
  content: "\f2c4";
}
.fa-free-code-camp:before {
  content: "\f2c5";
}
.fa-telegram:before {
  content: "\f2c6";
}
.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7";
}
.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8";
}
.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9";
}
.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca";
}
.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb";
}
.fa-shower:before {
  content: "\f2cc";
}
.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd";
}
.fa-podcast:before {
  content: "\f2ce";
}
.fa-window-maximize:before {
  content: "\f2d0";
}
.fa-window-minimize:before {
  content: "\f2d1";
}
.fa-window-restore:before {
  content: "\f2d2";
}
.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3";
}
.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4";
}
.fa-bandcamp:before {
  content: "\f2d5";
}
.fa-grav:before {
  content: "\f2d6";
}
.fa-etsy:before {
  content: "\f2d7";
}
.fa-imdb:before {
  content: "\f2d8";
}
.fa-ravelry:before {
  content: "\f2d9";
}
.fa-eercast:before {
  content: "\f2da";
}
.fa-microchip:before {
  content: "\f2db";
}
.fa-snowflake-o:before {
  content: "\f2dc";
}
.fa-superpowers:before {
  content: "\f2dd";
}
.fa-wpexplorer:before {
  content: "\f2de";
}
.fa-meetup:before {
  content: "\f2e0";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
/*********************
 IMPORTING MODULES
 Modules are reusable blocks or elements we use throughout the project.
 We can break them up as much as we want or just keep them all in one.
 I mean, you can do whatever you want. The world is your oyster. Unless
 you hate oysters, then the world is your peanut butter & jelly sandwich.
 *********************/
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Alert Styles
 If you want to use these alerts in your design, you can. If not,
 you can just remove this stylesheet.
 ******************************************************************/
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Button Styles
 Buttons are a pretty important part of your site's style, so it's
 important to have a consistent baseline for them. Use this stylesheet
 to create all kinds of buttons.
 Helpful Links:
 http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/
 ******************************************************************/
/*********************
 BUTTON DEFAULTS
 We're gonna use a placeholder selector here
 so we can use common styles. We then use this
 to load up the defaults in all our buttons.
 Here's a quick video to show how it works:
 http://www.youtube.com/watch?v=hwdVpKiJzac
 *********************/
.social-round, .social-rect {
  color: #fff !important;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}
.social-round:hover, .social-rect:hover {
  color: #fff;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15);
}
.social-round:active, .social-rect:active, .social-round:focus, .social-rect:focus, .social-round.active, .social-rect.active {
  outline: 0;
  color: #fff;
}
.social-round {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  margin: 10px;
  padding: 0;
  display: inline-block;
  width: 47px;
  height: 47px;
}
.social-round i {
  width: inherit;
  text-align: center;
  display: inline-block;
  line-height: 37px;
  color: #fff;
  font-size: 0.93rem;
  margin-top: 5px;
}
.social-rect {
  padding: 0.85rem 2.13rem;
  border-radius: 2px;
  margin: 6px;
  white-space: normal !important;
  word-wrap: break-word;
}
.social-rect i {
  position: relative;
  margin-top: -2px;
}
.btn-fb {
  background-color: #3b5998;
}
.btn-fb:hover {
  background-color: #4264aa !important;
}
.btn-tw {
  background-color: #55acee;
}
.btn-tw:hover {
  background-color: #6cb7f0 !important;
}
.btn-gplus {
  background-color: #dd4b39;
}
.btn-gplus:hover {
  background-color: #e15f4f !important;
}
.btn-li {
  background-color: #0082ca;
}
.btn-li:hover {
  background-color: #0092e4 !important;
}
.btn-git {
  background-color: #4183c4;
}
.btn-git:hover {
  background-color: #5490ca !important;
}
.btn-pin {
  background-color: #c61118;
}
.btn-pin:hover {
  background-color: #dd131b !important;
}
.btn-ins {
  background-color: #3f729b;
}
.btn-ins:hover {
  background-color: #467fad !important;
}
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Form Styles
 We put all the form and button styles in here to setup a consistent
 look. If we need to customize them, we can do this in the main
 stylesheets and just override them. Easy Peasy.
 You're gonna see a few data-uri thingies down there. If you're not
 sure what they are, check this link out:
 http://css-tricks.com/data-uris/
 If you want to create your own, use this helpful link:
 http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/
 ******************************************************************/
/*********************
 BASE (MOBILE) SIZE
 This are the mobile styles. It's what people see on their phones. If
 you set a great foundation, you won't need to add too many styles in
 the other stylesheets. Remember, keep it light: Speed is Important.
 *********************/
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Base Mobile Stylesheet
 Be light and don't over style since everything here will be
 loaded by mobile devices. You want to keep it as minimal as
 possible. This is called at the top of the main stylsheet
 and will be used across all viewports.
 ******************************************************************/
/*********************
 GENERAL STYLES
 *********************/
.svgsprite {
  display: none !important;
}
#ihf-main-container .row:after, #ihf-main-container .row:before {
  content: "" !important;
  display: none !important;
}
button.btn.btn-xs.ihf-share-btn.ihf-share-btn-print {
  display: none !important;
}
.failed .iconic {
  opacity: 1;
}
.success .iconic {
  opacity: 0;
}
.ekko-lightbox .modal-header {
  border: none;
  height: 0;
}
#areaPickerInputWrapper .iconic {
  top: 20px;
}
#ihf-map-canvas .ihf-map-info-window-photo {
  overflow: hidden;
}
button.dropdown-toggle:after {
  position: relative;
  display: flex;
  align-self: center;
  left: 5px;
}
@media (max-width: 576px) {
  #featured-listings-100-container .grid.row .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.iconic {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 25px;
  top: 15px;
  transition: all 0.2s;
}
.header-logo-part {
  font-size: 2.3rem;
  font-weight: 300;
  text-transform: uppercase;
}
.header-logo-part.header-logo-part-1 {
  color: #383838;
}
.header-logo-part.header-logo-part-2 {
  color: #13a89e;
}
#ihf-main-container a {
  text-decoration: none;
}
#ihf-main-container a:hover {
  text-decoration: none !important;
}
#ihf-market-report-nav-container {
  margin-top: 0 !important;
  margin-bottom: 5px;
  padding: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#ihf-market-report-nav-container .col-sm-4.text-center.ihf-market-report-nav-column.pull-right {
  background-color: #454545 !important;
  border: 0px solid #454545 !important;
  border-radius: 0 !important;
  color: white;
  display: flex;
  text-align: left;
  justify-content: center;
  height: 50px;
  align-items: center;
}
#ihf-market-report-nav-container .col-sm-4.text-center.ihf-market-report-nav-column.pull-right:hover {
  background-color: #2c2c2c !important;
}
#ihf-market-report-nav-container .col-sm-4.text-center.ihf-market-report-nav-column.pull-right a.ihf-market-report-nav {
  background-color: #454545 !important;
  border: 1px solid #454545 !important;
  border-bottom: none !important;
  color: white;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ihf-market-report-nav-container .col-sm-4.text-center.ihf-market-report-nav-column.pull-right a.ihf-market-report-nav:hover {
  background-color: #2c2c2c !important;
  border: 1px solid #2c2c2c !important;
}
#ihf-market-report-nav-container .col-sm-4.text-center.ihf-market-report-nav-column.pull-right a.ihf-market-report-nav.ihf-market-report-nav-active {
  background-color: #13a89e !important;
  border: 1px solid #13a89e !important;
}
#ihf-market-report-nav-container .col-sm-4.text-center.ihf-market-report-nav-column.pull-right a.ihf-market-report-nav.ihf-market-report-nav-active:hover {
  background-color: #0e7a73 !important;
  border: 1px solid #0e7a73 !important;
}
#ihf-market-report-forsale-sold-toggle-buttons {
  margin-bottom: 5px;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ihf-market-report-forsale-sold-toggle-buttons div.col-12.col-sm-8 {
  display: flex;
  justify-content: center;
}
#ihf-market-report-forsale-sold-toggle-buttons div.col-12.col-sm-8 a.btn.btn-primary {
  box-shadow: none !important;
  background-color: #454545 !important;
  border: 1px solid #454545 !important;
  color: #fff;
}
#ihf-market-report-forsale-sold-toggle-buttons div.col-12.col-sm-8 a.btn.btn-primary:hover {
  background-color: #2c2c2c !important;
  border: 1px solid #2c2c2c !important;
}
#ihf-market-report-forsale-sold-toggle-buttons div.col-12.col-sm-8 a.btn.btn-primary.active {
  background-color: #13a89e !important;
  border: 1px solid #13a89e !important;
}
#ihf-market-report-forsale-sold-toggle-buttons div.col-12.col-sm-8 a.btn.btn-primary.active:hover {
  background-color: #0e7a73 !important;
  border: 1px solid #0e7a73 !important;
}
div#ihf-agent-sellers-rep {
  padding-top: 50px;
}
div#ihf-board-detail-disclaimer {
  padding-top: 25px;
}
div#ihf-board-detail-updatetext {
  padding-top: 25px;
}
#ihf-main-container .error {
  font-size: 14px !important;
}
#ihf-main-container .ihf-mapsearch-refine-overlay .field-label, #ihf-main-container .ihf-mapsearch-refine-overlay label {
  color: #fff !important;
}
#ihf-main-container label.ihf-mapsearch-refine-checkbox-label {
  color: #fff !important;
}
body {
  font-family: 'Roboto', sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: black;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#ihf-polygon-tab {
  display: none;
}
#ihf-main-container button[disabled], #ihf-main-container html input[disabled], button[disabled], input[disabled] {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}
.basecolor {
  color: #13a89e !important;
}
.bottomspacing {
  margin-bottom: 75px;
}
.ihf-powered-by {
  display: none !important;
}
.minh {
  min-height: 600px;
}
.widget_ihomefinderlinkwidget {
  padding-left: 0 !important;
}
#mort {
  margin-bottom: 75px;
}
#mortagecalc label {
  height: 50px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
}
#mortagecalc input, #mortagecalc .chosen-single {
  height: 50px;
  margin-bottom: 0.5rem;
  border-radius: 0 !important;
  border: 1px solid #000 !important;
  color: #000;
  padding-left: 15px !important;
}
#montlycost, #maximumloan {
  margin-bottom: 0.5rem;
  height: 50px;
}
.btn-primary.btn--active {
  background-color: #13a89e !important;
  border: 1px solid #13a89e !important;
}
.btn-primary:focus {
  box-shadow: none;
}
.btn-primary {
  background-color: #454545 !important;
  border: 1px solid #454545 !important;
  border-radius: 0 !important;
  color: white;
  display: flex;
  text-align: left;
  justify-content: flex-start;
  padding-left: 15px;
}
.chosen-single span {
  font-size: 1rem;
}
.chosen-single {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset;
  color: #444;
  display: block;
  height: 34px;
  line-height: 24px;
  overflow: hidden;
  padding: 4px 0 0 8px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  height: 50px !important;
  vertical-align: middle !important;
  background: none !important;
  font-size: 14px !important;
  display: flex !important;
  padding: 4px 0px 0 12px !important;
  align-items: center !important;
  line-height: normal !important;
}
.chosen-container-single .chosen-single div b {
  background-position: 0px 16px !important;
  color: #000 !important;
}
/********************
 WORDPRESS BODY CLASSES
 style a page via class
 ********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
 LINK STYLES
 *********************/
a, a:visited {
  color: #13a89e;
  outline: none;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:visited:hover, a:focus, a:visited:focus {
  text-decoration: underline;
}
a:link, a:visited:link {
  /*
   this highlights links on iPhones/iPads.
   so it basically works like the :hover selector
   for mobile devices.
   */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
/******************************************************************
 H1, H2, H3, H4, H5 STYLES
 ******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-family: 'Oswald', sans-serif;
  text-rendering: optimizelegibility;
  font-weight: 500;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}
h1, .h1 {
  font-size: 4.5em;
  line-height: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  color: #383838;
}
h1.pagetitle, .h1.pagetitle, h1.prepagetitle, .h1.prepagetitle {
  color: rgba(255, 255, 255, 0.8);
  hyphens: auto;
  word-break: break-word;
}
#single-title h2, #single-title .h2 {
  color: #fff;
}
h2, .h2 {
  color: #383838;
  font-size: 1.9em;
  line-height: 1.1em;
  margin-bottom: 0.75em;
  text-transform: uppercase;
  font-weight: bold;
}
h2.title, .h2.title {
  margin: 0px 0 45px 0;
}
h2.green, .h2.green {
  color: #13a89e;
}
h3, .h3 {
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
}
h3.blogtitle, .h3.blogtitle {
  font-size: 1.75em;
}
h3.subheading, .h3.subheading {
  color: #fff;
}
h3.presubheading, .h3.presubheading {
  color: #fff;
}
h4, .h4 {
  font-size: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
}
h4.blogdate, .h4.blogdate {
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1em;
}
h4.tab-font, .h4.tab-font {
  color: #fff;
}
h5, .h5 {
  font-size: 0.85em;
  line-height: 1.2em;
  letter-spacing: 1px;
}
h1.white, h2.white, h3.white, h4.white, h5.white {
  color: #fff;
}
h2.headline, h2.preheadline {
  color: #454545;
  margin-bottom: 0;
}
#contact h2.headline, .colinfoIT h2.headline, .colinfoTI h2.headline, #contact h2.preheadline, .colinfoIT h2.preheadline, .colinfoTI h2.preheadline {
  color: #fff;
}
h3.grey, h4.grey, h5.grey {
  color: #454545;
}
p {
  line-height: 1.3em;
  margin-bottom: 2em;
}
p.white {
  color: #fff;
}
p.blue {
  color: #13a89e;
}
a, a:visited, a:hover {
  color: #13a89e;
}
span.white {
  color: #fff;
}
.fa {
  padding: 0 3px 0 3px;
}
#iconbar .fa-2x {
  padding: 0 25px 0 0;
  font-size: 1.75em;
}
#footersection .fa-2x {
  padding: 0 15px 0 0;
  font-size: 1.5em;
}
#copyright p {
  text-transform: uppercase;
}
.colinfoTI {
  background-color: #000;
}
.colinfoIT {
  background-color: #000;
}
#footersection h4 {
  font-size: 1em;
}
.fa_w {
  color: #fff;
}
.fa_b {
  color: #000;
}
/*********************
 HEADER STYLES
 *********************/
.header {
  position: fixed;
  z-index: 999999;
  width: 100%;
}
#logo {
  margin: 0.75em 0;
}
#logo a {
  color: #5c6b80;
}
/*********************
 NAVIGATION STYLES
 *********************/
/*
 all navs have a .nav class applied via
 the wp_menu function; this is so we can
 easily write one group of styles for
 the navs on the site so our css is cleaner
 and more scalable.
 */
.nav {
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */
}
.nav li {
  /*
   so you really have to rethink your dropdowns for mobile.
   you don't want to have it expand too much because the
   screen is so small. How you manage your menu should
   depend on the project. Here's some great info on it:
   http://www.alistapart.com/articles/organizing-mobile/
   */
}
.nav li a {
  display: block;
  text-decoration: none;
  padding: 2em;
  color: black !important;
  text-transform: uppercase;
  font-size: 0.5em;
  font-weight: bold;
  /*
   remember this is for mobile ONLY, so there's no need
   to even declare hover styles here, you can do it in
   the style.scss file where it's relevant. We want to
   keep this file as small as possible!
   */
}
.nav li ul.sub-menu li a, .nav li ul.children li a {
  padding-left: 30px;
}
/* end .nav */
/*********************
 POSTS & CONTENT STYLES
 *********************/
.hentry header {
  border-bottom: 1px solid #f8f9fa;
  padding: 1.5em 0;
}
.hentry footer {
  padding: 1.5em 0;
  border-top: 1px solid #f8f9fa;
}
.hentry footer p {
  margin: 0;
}
/* end .hentry */
.single-title, .page-title, .entry-title {
  margin: 0;
}
/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content {
  /*
   image alignment on a screen this size may be
   a bit difficult. It's set to start aligning
   and floating images at the next breakpoint,
   but it's up to you. Feel free to change it up.
   */
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border-left: 3px solid #2980b9;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto, .entry-content .size-full, .entry-content .size-large, .entry-content .size-medium, .entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #323944;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}
/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}
/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}
/******************************************************************
 PAGE NAVI STYLES
 ******************************************************************/
.pagination, .wp-prev-next {
  margin: 1.5em 0;
}
.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #eaedf2;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #2980b9;
}
.pagination a:hover, .pagination span:hover, .pagination a:focus, .pagination span:focus {
  background-color: #2980b9;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #5c6b80;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #5c6b80;
}
/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}
/* end .wp-prev-next */
/******************************************************************
 COMMENT STYLES
 ******************************************************************/
ul {
  padding-left: 25px;
}
/* h3 comment title */
#comments-title {
  padding: 0.75em;
  margin: 0;
  border-top: 1px solid #f8f9fa;
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}
.comment {
  position: relative;
  clear: both;
  overflow: hidden;
  padding: 1.5em;
  border-bottom: 1px solid #f8f9fa;
  /* vcard */
  /* end .commentlist .vcard */
  /* end children */
  /* general comment classes */
}
.comment .comment-author {
  padding: 7px;
  border: 0;
}
.comment .vcard {
  margin-left: 50px;
}
.comment .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.comment .vcard time {
  display: block;
  font-size: 0.9em;
  font-style: italic;
}
.comment .vcard time a {
  color: #9fa6b4;
  text-decoration: none;
}
.comment .vcard time a:hover {
  text-decoration: underline;
}
.comment .vcard .avatar {
  position: absolute;
  left: 16px;
  border-radius: 50%;
}
.comment:last-child {
  margin-bottom: 0;
}
.comment .children {
  margin: 0;
  /* variations */
  /* change number for different depth */
}
.comment[class*=depth-] {
  margin-top: 1.1em;
}
.comment.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.comment:not(.depth-1) {
  margin-top: 0;
  margin-left: 7px;
  padding: 7px;
}
.comment.odd {
  background-color: #fff;
}
.comment.even {
  background: #f8f9fa;
}
/* comment meta */
/* comment content */
.comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
/* end .commentlist .comment_content */
/* comment reply link */
.comment-reply-link {
  font-size: 0.9em;
  float: right;
}
/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  font-style: italic;
  margin: 0 7px;
  text-decoration: none;
  font-size: 0.9em;
}
/******************************************************************
 COMMENT FORM STYLES
 ******************************************************************/
.comment-respond {
  padding: 1.5em;
  border-top: 1px solid #f8f9fa;
}
#reply-title {
  margin: 0;
}
.logged-in-as {
  color: #9fa6b4;
  font-style: italic;
  margin: 0;
}
.logged-in-as a {
  color: #5c6b80;
}
.comment-form-comment {
  margin: 1.5em 0 0.75em;
}
.form-allowed-tags {
  padding: 1.5em;
  background-color: #f8f9fa;
  font-size: 0.9em;
}
/* comment submit button */
#submit {
  float: right;
  font-size: 1em;
}
/* comment form title */
#comment-form-title {
  margin: 0 0 1.1em;
}
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
#allowed_tags {
  margin: 1.5em 10px 0.7335em 0;
}
/* no comments */
.nocomments {
  margin: 0 20px 1.1em;
}
/*********************
 SIDEBARS & ASIDES
 *********************/
.widget ul li {
  /* deep nesting */
}
.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em;
}
/*********************
 FOOTER STYLES
 *********************/
.footer {
  clear: both;
  background-color: #323944;
  color: #f8f9fa;
}
/* end .footer-links */
/*********************
 CUSTOM STYLES
 *********************/
#content-body {
  padding-top: 88px;
}
.wrap {
  padding-top: 75px;
  padding-bottom: 75px;
}
.col-wrap {
  padding: 20px;
}
.latest-wrap {
  padding: 7px 10px 7px 10px;
}
#footersection .wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}
.wrap-round {
  padding-top: 75px;
  padding-bottom: 75px;
}
.inline-wrap {
  padding: 50px;
}
.wrap-latest {
  padding: 15px;
}
.grid-item {
  float: left;
  height: 100vw;
  width: 100vw;
}
.grid-item--big, .grid-onethird {
  height: 100vw;
  width: 100vw;
}
.grid-onehalf {
  min-height: 100vw;
  width: 100vw;
}
.grid-onehalf-small {
  height: 50vw;
  width: 100vw;
}
.grid-twothird {
  height: 75vw;
  width: 100vw;
}
.grid-onefourth {
  height: 50vw;
}
@media (min-width: 768px) {
  .grid-onefourth {
    height: 50vw;
    width: 50vw;
  }
}
.grid-latestposts {
  position: relative;
  width: 100%;
  height: 100px;
}
.grid-fullwidth {
  width: 100%;
  min-height: 280px;
}
.grid-onehalf, .grid-onehalf-small, .grid-onefourth, .grid-onethird, .grid-item, .grid-item--big, .grid-latestposts, .background-positioner, #single-imagetitle, #hero, .colpadding {
  background-size: cover;
  background-position: center center;
}
#hero-enabled {
  min-height: 75vh;
}
#hero-disabled {
  height: 30vh;
}
#navigation {
  background-color: #fff;
  width: 100%;
}
#navigation-nav {
  width: 100%;
}
.align-helper {
  height: 100%;
  width: 100%;
}
span.tel-number p {
  padding: 0;
  margin: 0;
}
span.contactbar, span.tel-number {
  font-size: 70%;
}
#footersection {
  background-color: #2e2e2e;
}
.content-container {
  padding-top: 45px;
}
#partnerlogo img {
  max-width: 100%;
  height: auto;
  display: block;
}
#header-icon-bar {
  display: none;
}
/*
 #navigation img {
 max-width: 100%;
 height: auto;
 display: block;
 }
 */
.frontpage-widget {
  margin-top: 25px;
}
#contact, #colinfo, #contact-form, #about-grid, #single-title {
  background-color: black;
  color: #fff;
}
#socialbar {
  background-color: #242424;
  color: #fff;
}
#contact-content {
  margin-bottom: 45px;
}
#contact-field, #contact-area {
  border: 1px solid #454545;
  background: #000;
  border-radius: 0px;
  color: #fff;
  padding: 8px;
  margin-bottom: 20px;
  width: 100%;
}
#contact-field:focus, #contact-area:focus {
  background: #fff;
  color: #000;
  border: 1px solid #454545;
}
#contact-button {
  border: 0px solid #454545;
  background: #13a89e;
  border-radius: 0px;
  color: #fff;
  padding: 8.5px 18px;
  font-size: 14px;
  vertical-align: middle;
  width: auto;
  text-align: left;
}
#contact-button:hover {
  border: 0px solid #454545;
  background: #fff;
  color: #000;
}
#contact-form-id {
  width: 100%;
}
#logo {
  z-index: 50;
}
div.wpcf7-validation-errors {
  color: #fff;
}
span.wpcf7-not-valid-tip {
  margin-top: -20px;
}
.ajax-loader {
  margin: 0 !important;
  width: 0 !important;
}
.sidescroller-bar {
  left: 0;
  margin-top: -120px;
  position: fixed;
  top: 50%;
  z-index: 9999;
  display: none;
}
.sidescroller-item {
  height: 40px;
  width: 40px;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#ss-link {
  background-color: #4db6ac;
}
#ss-facebook {
  background-color: #3b5997;
}
#ss-twitter {
  background-color: #25aaeb;
}
#ss-linkedin {
  background-color: #136ba4;
}
#ss-googlep {
  background-color: #dc4b39;
}
#ss-pinterest {
  background-color: #f26262;
}
div#ss-link:hover, div#ss-facebook:hover, div#ss-twitter:hover, div#ss-linkedin:hover, div#ss-googlep:hover, div#ss-pinterest:hover, #copyright {
  background-color: #000;
}
#ihf-refine-map-search-form {
  min-width: 250px;
}
#copyright {
  padding: 15px 0 15px 0;
}
#procedures-content .tab-content {
  display: none;
  width: 100%;
}
#procedures-content .tab-content.current {
  display: inherit;
}
.inside-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
}
.hover-effect-grid, .hover-effect, .hover-effect-pre {
  background: rgba(0, 0, 0, 0.0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;
  transition: all 0.4s ease;
}
.hover-effect-pre {
  background: rgba(0, 0, 0, 0.2);
}
.hover-effect-grid:hover {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1 !important;
}
.hover-effect:hover, .hover-effect-pre:hover {
  background: rgba(0, 0, 0, 0.5);
}
.hover-effect-grid {
  opacity: 0;
  padding: 20%;
}
p.lot:last-of-type, h1.lot:last-of-type, h2.lot:last-of-type, h3.lot:last-of-type, h4.lot:last-of-type, h5.lot:last-of-type {
  margin: 0px !important;
}
#ihf-valuation-request-form {
  padding: 0 0 45px 0;
}
#ihf-main-search-form, #ihf-main-container, .simplelmc-container {
  font-family: 'Roboto', sans-serif !important;
}
#ihf-main-search-form label, #ihf-main-container label, .simplelmc-container label {
  color: #000 !important;
}
#ihf-main-search-form .form-inline, #ihf-main-container .form-inline, .simplelmc-container .form-inline {
  display: inline;
}
#ihf-main-search-form textarea, #ihf-main-container textarea, .simplelmc-container textarea {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
#ihf-main-search-form input, #ihf-main-container input, .simplelmc-container input {
  border: 1px solid #000 !important;
  height: 50px !important;
  color: #000 !important;
  text-align: left;
  border-radius: 0 !important;
}
#ihf-main-search-form input::placeholder, #ihf-main-container input::placeholder, .simplelmc-container input::placeholder {
  color: #000 !important;
}
#ihf-main-search-form input::-webkit-input-placeholder, #ihf-main-container input::-webkit-input-placeholder, .simplelmc-container input::-webkit-input-placeholder {
  color: #000 !important;
}
#ihf-main-search-form input::-moz-placeholder, #ihf-main-container input::-moz-placeholder, .simplelmc-container input::-moz-placeholder {
  color: #000 !important;
}
#ihf-main-search-form input:-ms-input-placeholder, #ihf-main-container input:-ms-input-placeholder, .simplelmc-container input:-ms-input-placeholder {
  color: #000 !important;
}
#ihf-main-search-form input:-moz-placeholder, #ihf-main-container input:-moz-placeholder, .simplelmc-container input:-moz-placeholder {
  color: #000 !important;
}
#ihf-main-search-form input[type=checkbox], #ihf-main-container input[type=checkbox], .simplelmc-container input[type=checkbox] {
  height: 10px !important;
}
#ihf-main-search-form input[type=radio], #ihf-main-container input[type=radio], .simplelmc-container input[type=radio] {
  height: 20px !important;
}
#ihf-main-search-form .chosen-single, #ihf-main-container .chosen-single, .simplelmc-container .chosen-single, #ihf-main-search-form .chosen-drop, #ihf-main-container .chosen-drop, .simplelmc-container .chosen-drop, #ihf-main-search-form select, #ihf-main-container select, .simplelmc-container select, #ihf-main-search-form .input-group-addon, #ihf-main-container .input-group-addon, .simplelmc-container .input-group-addon, #ihf-main-search-form #areaPickerInputWrapper, #ihf-main-container #areaPickerInputWrapper, .simplelmc-container #areaPickerInputWrapper {
  border-radius: 0px !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}
#ihf-main-search-form select, #ihf-main-container select, .simplelmc-container select {
  height: 50px !important;
  -webkit-appearance: none !important;
  width: 100% !important;
}
#ihf-main-search-form .chosen-single, #ihf-main-container .chosen-single, .simplelmc-container .chosen-single {
  height: 50px !important;
  vertical-align: middle !important;
  background: none !important;
  font-size: 14px !important;
  display: flex !important;
  padding: 4px 0px 0 12px !important;
  align-items: center !important;
  line-height: normal !important;
}
#ihf-main-search-form .chosen-single span, #ihf-main-container .chosen-single span, .simplelmc-container .chosen-single span {
  padding-top: 0 !important;
}
#ihf-main-search-form button, #ihf-main-container button, .simplelmc-container button, #ihf-main-search-form .btn-default, #ihf-main-container .btn-default, .simplelmc-container .btn-default {
  border-radius: 0px !important;
  background-color: #13a89e !important;
  border: 1px solid #13a89e !important;
  height: 50px !important;
  color: #fff !important;
  text-transform: uppercase !important;
}
#ihf-main-search-form .btn, #ihf-main-container .btn, .simplelmc-container .btn {
  justify-content: center;
  align-items: center;
  display: flex;
}
#ihf-main-search-form .btn-link, #ihf-main-container .btn-link, .simplelmc-container .btn-link {
  display: inline-flex;
}
#ihf-main-search-form button:hover, #ihf-main-container button:hover, .simplelmc-container button:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  text-decoration: none !important;
}
#ihf-main-search-form li.highlighted, #ihf-main-container li.highlighted, .simplelmc-container li.highlighted {
  background-color: #13a89e !important;
  background-image: none !important;
}
#ihf-main-search-form .ihf-label-overlay-money, #ihf-main-container .ihf-label-overlay-money, .simplelmc-container .ihf-label-overlay-money {
  top: 16px !important;
  color: #000 !important;
}
#ihf-main-search-form .chosen-single span, #ihf-main-container .chosen-single span, .simplelmc-container .chosen-single span {
  padding-top: 9px;
  color: #000 !important;
}
#ihf-main-search-form .chosen-single div b, #ihf-main-container .chosen-single div b, .simplelmc-container .chosen-single div b {
  background-position: 0px 16px !important;
  color: #000 !important;
}
#ihf-main-search-form #areaPicker, #ihf-main-container #areaPicker, .simplelmc-container #areaPicker {
  padding: 0 !important;
}
#ihf-main-search-form #ihf-searchprofile-adv-schedule, #ihf-main-container #ihf-searchprofile-adv-schedule, .simplelmc-container #ihf-searchprofile-adv-schedule {
  height: 13px !important;
}
#ihf-main-search-form #ihf-searchprofile-daily-schedule, #ihf-main-container #ihf-searchprofile-daily-schedule, .simplelmc-container #ihf-searchprofile-daily-schedule {
  height: 13px !important;
}
#ihf-main-search-form #ihf-main-container input[type=checkbox], #ihf-main-container #ihf-main-container input[type=checkbox], .simplelmc-container #ihf-main-container input[type=checkbox], #ihf-main-search-form #ihf-main-container input[type=radio], #ihf-main-container #ihf-main-container input[type=radio], .simplelmc-container #ihf-main-container input[type=radio] {
  height: 13px !important;
}
#ihf-main-search-form.well, #ihf-main-container.well, .simplelmc-container.well {
  background-color: transparent !important;
  border: none !important;
}
#ihf-main-search-form .btn-primary, #ihf-main-container .btn-primary, .simplelmc-container .btn-primary {
  height: 50px !important;
  background-color: #13a89e !important;
  border: 1px solid #13a89e !important;
  border-radius: 0 !important;
}
#ihf-main-search-form .btn-primary:hover, #ihf-main-container .btn-primary:hover, .simplelmc-container .btn-primary:hover {
  background-color: #fff !important;
  border: 1px solid #000 !important;
  color: #000 !important;
}
#ihf-main-search-form .ihf-share-btn, #ihf-main-container .ihf-share-btn, .simplelmc-container .ihf-share-btn {
  height: 20px !important;
  background-color: transparent !important;
  color: #000 !important;
  border: none !important;
}
#ihf-main-search-form .ihf-share-btn:hover, #ihf-main-container .ihf-share-btn:hover, .simplelmc-container .ihf-share-btn:hover {
  border: none !important;
}
#ihf-main-search-form .ihf-listing-detail, #ihf-main-container .ihf-listing-detail, .simplelmc-container .ihf-listing-detail {
  padding-right: 20px;
  padding-left: 20px;
}
#ihf-main-search-form .ihf-powered-by, #ihf-main-container .ihf-powered-by, .simplelmc-container .ihf-powered-by {
  display: none !important;
}
#ihf-main-search-form .nav-tabs > li > a, #ihf-main-container .nav-tabs > li > a, .simplelmc-container .nav-tabs > li > a {
  margin-right: 10px;
  margin-top: 10px;
}
#ihf-main-search-form .nav > li > a, #ihf-main-container .nav > li > a, .simplelmc-container .nav > li > a {
  background-color: #13a89e !important;
  color: #fff !important;
  border-radius: 0 !important;
  padding-right: 80px !important;
  font-weight: normal !important;
}
#ihf-main-search-form .nav > li.active > a, #ihf-main-container .nav > li.active > a, .simplelmc-container .nav > li.active > a {
  font-weight: bold !important;
}
#ihf-main-search-form .nav > li > a:hover, #ihf-main-container .nav > li > a:hover, .simplelmc-container .nav > li > a:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
}
#ihf-main-search-form #ihf-detail-extrainfotabs, #ihf-main-container #ihf-detail-extrainfotabs, .simplelmc-container #ihf-detail-extrainfotabs {
  margin-bottom: 20px !important;
}
#ihf-main-search-form .nav-tabs, #ihf-main-container .nav-tabs, .simplelmc-container .nav-tabs {
  border-bottom: none;
}
#ihf-main-search-form .caret, #ihf-main-container .caret, .simplelmc-container .caret {
  display: none !important;
}
#ihf-main-search-form .ihf-price, #ihf-main-container .ihf-price, .simplelmc-container .ihf-price {
  font-size: 50px !important;
  font-weight: normal !important;
}
#ihf-main-search-form .ihf-address, #ihf-main-container .ihf-address, .simplelmc-container .ihf-address {
  font-size: 25px !important;
  font-weight: normal !important;
}
#ihf-main-search-form .panel-group .ml-25, #ihf-main-container .panel-group .ml-25, .simplelmc-container .panel-group .ml-25 {
  color: #fff !important;
  text-transform: none !important;
  font-weight: normal !important;
}
#ihf-main-search-form .panel-group .color-green, #ihf-main-container .panel-group .color-green, .simplelmc-container .panel-group .color-green {
  color: #fff !important;
}
#ihf-main-search-form .panel-group .panel-default > .panel-heading, #ihf-main-container .panel-group .panel-default > .panel-heading, .simplelmc-container .panel-group .panel-default > .panel-heading {
  background-color: #13a89e !important;
  border: 1px solid #13a89e !important;
  border-radius: 0;
}
#ihf-main-search-form .panel-group .ihf-open-home-details, #ihf-main-container .panel-group .ihf-open-home-details, .simplelmc-container .panel-group .ihf-open-home-details {
  text-align: center !important;
  font-weight: bold !important;
}
#ihf-main-search-form .panel-group .ihf-open-home-remarks, #ihf-main-container .panel-group .ihf-open-home-remarks, .simplelmc-container .panel-group .ihf-open-home-remarks {
  text-align: center !important;
  margin-bottom: 5px !important;
}
#ihf-main-search-form .panel-group .panel, #ihf-main-container .panel-group .panel, .simplelmc-container .panel-group .panel {
  border-radius: 0 !important;
}
#ihf-main-search-form .carousel-caption .badge, #ihf-main-container .carousel-caption .badge, .simplelmc-container .carousel-caption .badge {
  background-color: #13a89e;
  border-radius: 0;
  color: #fff;
}
#ihf-main-search-form #areaPickerExpandAll, #ihf-main-container #areaPickerExpandAll, .simplelmc-container #areaPickerExpandAll, #ihf-main-search-form #autocompleteMatch, #ihf-main-container #autocompleteMatch, .simplelmc-container #autocompleteMatch {
  z-index: 1010 !important;
}
#ihf-main-search-form #areaPickerExpandAll .areaPickerExpandAllTopBar, #ihf-main-container #areaPickerExpandAll .areaPickerExpandAllTopBar, .simplelmc-container #areaPickerExpandAll .areaPickerExpandAllTopBar, #ihf-main-search-form #autocompleteMatch .areaPickerExpandAllTopBar, #ihf-main-container #autocompleteMatch .areaPickerExpandAllTopBar, .simplelmc-container #autocompleteMatch .areaPickerExpandAllTopBar {
  color: black !important;
}
#ihf-main-search-form #autocompleteMatch, #ihf-main-container #autocompleteMatch, .simplelmc-container #autocompleteMatch {
  border-radius: 0 !important;
  border: 1px solid #000 !important;
  text-align: left !important;
  background: #f0f0f0 !important;
}
#ihf-main-search-form #autocompleteMatch .areaPickerElement, #ihf-main-container #autocompleteMatch .areaPickerElement, .simplelmc-container #autocompleteMatch .areaPickerElement {
  display: flex !important;
  align-items: center !important;
  border-radius: 0 !important;
}
#ihf-main-search-form #autocompleteMatch .areaPickerElement.autocompleteArrowOver, #ihf-main-container #autocompleteMatch .areaPickerElement.autocompleteArrowOver, .simplelmc-container #autocompleteMatch .areaPickerElement.autocompleteArrowOver, #ihf-main-search-form #autocompleteMatch .areaPickerElement.autocompleteMouseOver, #ihf-main-container #autocompleteMatch .areaPickerElement.autocompleteMouseOver, .simplelmc-container #autocompleteMatch .areaPickerElement.autocompleteMouseOver {
  background-color: #13a89e !important;
}
#ihf-main-search-form #ihf-selectedAreas, #ihf-main-container #ihf-selectedAreas, .simplelmc-container #ihf-selectedAreas {
  display: flex;
  flex-wrap: wrap;
}
.simplelmc-container #input_value, .simplelmc-container #input_down_payment, .simplelmc-container #input_interest {
  border-right: 0 !important;
  border-left: 0 !important;
}
.simplelmc-container #input_duration {
  border-right: 0 !important;
}
.map-container .gs-tab.left-tab {
  border: none !important;
}
.slider-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  left: 0;
}
.slider-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slider-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slider-dots li button:hover, .slider-dots li button:focus {
  outline: none;
}
.slider-dots li button:hover:before, .slider-dots li button:focus:before {
  opacity: 1;
}
.slider-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\25E6";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 25px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slider-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
  content: "\2022";
  font-size: 40px;
}
.mainpadding {
  padding-left: 0;
  padding-right: 0;
}
.navbar {
  padding: 0;
}
.navbar-light {
  background: transparent;
}
ul.slimmenu {
  width: 100% !important;
}
ul.slimmenu li {
  width: 100%;
  text-align: center;
}
ul.slimmenu li ul.dropdown-menu {
  position: relative;
  border: 0;
  background: lightgray;
  border-radius: 0;
}
ul.slimmenu li:last-child a {
  padding-right: 35px;
}
#socialbar a {
  color: #fff;
}
#socialbar a:hover {
  color: #fff;
  text-decoration: none;
}
.tab-spacer:after {
  clear: both;
}
.topimg {
  overflow: hidden;
  max-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail--description {
  font-size: 14px;
  line-height: 14px;
}
ul.detail--details {
  line-height: 1;
}
ul.detail--details li {
  list-style: none;
}
.btn.btn-primary.btn-detail-leadcapture.disabled.save-listing-btn {
  justify-content: flex-start;
}
.hidden-xs {
  display: none;
}
.visible-xs {
  display: block;
}
.details--btn, .btn.btn-primary.btn-detail-leadcapture.disabled.save-listing-btn {
  display: flex;
  border: 1px solid #13a89e;
  background: #13a89e;
  border-radius: 0px !important;
  color: #fff;
  padding: 8.5px 18px;
  font-size: 14px;
  vertical-align: middle;
  width: 100%;
  text-align: left;
  align-items: center;
  height: 50px;
}
.details--btn.black, .btn.btn-primary.btn-detail-leadcapture.disabled.save-listing-btn.black {
  background: #000;
  border: 1px solid #000;
}
.details--btn:hover, .btn.btn-primary.btn-detail-leadcapture.disabled.save-listing-btn:hover {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  cursor: pointer;
}
#ihf-detail-features-tab h5 {
  font-size: 16px;
}
#ihf-detail-features-tab h5, #ihf-detail-features-tab .highlight {
  display: block;
  border: 0px solid #454545;
  background: #13a89e;
  border-radius: 0px;
  color: #fff;
  padding: 4.5px 18px;
  font-size: 14px;
  vertical-align: middle;
  width: 100%;
  text-align: left;
}
#ihf-detail-features-tab .highlight {
  margin-bottom: 1rem;
}
.mc-total {
  font-size: 18px;
  font-weight: 700;
  padding-top: 25px;
  text-align: center;
}
.mc-amount {
  color: #666;
  font-size: 36px;
}
.mc-total-payment {
  color: #666;
  font-size: 36px;
}
.mc-total-payment-subline {
  color: #ccc;
  font-size: 16px;
}
.mc-payments-table {
  font-size: 16px;
  border: 0;
}
.mc-payments-table td {
  border: 0;
  border-bottom: 1px solid #ccc;
}
table {
  max-width: 100%;
  background-color: transparent;
}
.modal-dialog {
  left: initial;
}
.modal {
  z-index: 5006000;
}
.bx-wrapper img, .bx-viewport img {
  height: 250px;
}
.listing {
  overflow: hidden;
  padding: 0;
}
.listing .listing-main-info {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 73%;
  left: 0;
  color: white;
}
.listing .listing-main-info .price {
  display: block;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 10px;
}
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: 700;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td a, .ui-datepicker td span {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-multi .ui-datepicker-group, .ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.overlay-loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: white;
  z-index: 4999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.indicator svg polyline {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.indicator svg polyline#back {
  stroke: rgba(59, 211, 171, 0.3);
}
.indicator svg polyline#front {
  stroke: #3bd3ab;
  stroke-dasharray: 12, 36;
  stroke-dashoffset: 48;
  animation: dash 1s linear infinite;
}
@-moz-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  62.5% {
    opacity: 0;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:after, .ui-helper-clearfix:before {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0;
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}
.ui-front {
  z-index: 4000;
}
.ui-state-disabled {
  cursor: default !important;
}
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
}
.ui-resizable-autohide .ui-resizable-handle, .ui-resizable-disabled .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted #000;
}
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  padding: 0.5em 0.5em 0.5em 0.7em;
  min-height: 0;
}
.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-noicons {
  padding-left: 0.7em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  text-align: center;
  overflow: visible;
}
.ui-button, .ui-button:active, .ui-button:hover, .ui-button:link, .ui-button:visited {
  text-decoration: none;
}
.ui-button-icon-only {
  width: 2.2em;
}
button.ui-button-icon-only {
  width: 2.4em;
}
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}
.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
input.ui-button {
  padding: 0.4em 1em;
}
.ui-button-icon-only .ui-icon, .ui-button-icons-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-icons-only .ui-button-icon-primary, .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary {
  left: 0.5em;
}
.ui-button-icons-only .ui-button-icon-secondary, .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary {
  right: 0.5em;
}
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}
button.ui-button::-moz-focus-inner, input.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: 700;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td a, .ui-datepicker td span {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-multi .ui-datepicker-group, .ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 21px;
  margin: -10px 0 0;
  padding: 1px;
  height: 20px;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: 0 0;
  overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: 0;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  min-height: 0;
  font-weight: 400;
}
.ui-menu .ui-menu-item a.ui-state-active, .ui-menu .ui-menu-item a.ui-state-focus {
  font-weight: 400;
  margin: -1px;
}
.ui-menu .ui-state-disabled {
  font-weight: 400;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}
.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
  background: url(images/animated-overlay.gif);
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}
.ui-slider-horizontal {
  height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.ui-spinner-input {
  border: none;
  background: 0 0;
  color: inherit;
  padding: 0;
  margin: 0.2em 22px 0.2em 0.4em;
}
.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}
.ui-tabs {
  position: relative;
  padding: 0.2em;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}
#ihf-main-container .ihf-polygon-reset, #ihf-refine-search-close, .ihf-map-icon, .leaflet-clickable, .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: 0 0;
}
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
  border-width: 2px;
}
.ui-widget {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1.1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget button, .ui-widget input, .ui-widget select, .ui-widget textarea {
  font-family: Trebuchet MS, Tahoma, Verdana, Arial, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #ddd;
  background: url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x #eee;
  color: #333;
}
.ui-widget-content a {
  color: #333;
}
.ui-widget-header {
  border: 1px solid #e78f08;
  background: url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x #f6a828;
  color: #fff;
  font-weight: 700;
}
.ui-widget-header a {
  color: #fff;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  border: 1px solid #ccc;
  font-weight: 700;
  color: #1c94c4;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none;
}
.ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover {
  border: 1px solid #fbcb09;
  background: url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x #fdf5ce;
  font-weight: 700;
  color: #c77405;
}
.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited {
  color: #c77405;
  text-decoration: none;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #fbd850;
  background: url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x #fff;
  font-weight: 700;
  color: #eb8f00;
}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  background: url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x #ffe45c;
  color: #363636;
}
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% #b81900;
  color: #fff;
}
.ui-state-error a, .ui-state-error-text, .ui-widget-content .ui-state-error a, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error a, .ui-widget-header .ui-state-error-text {
  color: #fff;
}
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: 700;
}
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  filter: Alpha(Opacity=70);
  font-weight: 400;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon, .ui-widget-content .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
  background-image: url(images/ui-icons_ffffff_256x240.png);
}
.ui-state-active .ui-icon, .ui-state-default .ui-icon, .ui-state-focus .ui-icon, .ui-state-hover .ui-icon {
  background-image: url(images/ui-icons_ef8c08_256x240.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(images/ui-icons_228ef1_256x240.png);
}
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url(images/ui-icons_ffd27a_256x240.png);
}
.ui-icon-blank {
  background-position: 16px 16px;
}
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-first, .ui-icon-seek-start {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
.ui-corner-all, .ui-corner-left, .ui-corner-tl, .ui-corner-top {
  border-top-left-radius: 4px;
}
.ui-corner-all, .ui-corner-right, .ui-corner-top, .ui-corner-tr {
  border-top-right-radius: 4px;
}
.ui-corner-all, .ui-corner-bl, .ui-corner-bottom, .ui-corner-left {
  border-bottom-left-radius: 4px;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-br, .ui-corner-right {
  border-bottom-right-radius: 4px;
}
.ui-widget-overlay {
  background: url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% #666;
  opacity: 0.5;
  filter: Alpha(Opacity=50);
}
.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  background: url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x #000;
  opacity: 0.2;
  filter: Alpha(Opacity=20);
  border-radius: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.fade.in {
  opacity: 1;
}
span.inputcurrency {
  position: absolute;
  left: 10px;
  padding: 0.375rem 0.65rem;
  height: 50px;
  top: 0;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
.absolutebot {
  top: auto !important;
  bottom: 0 !important;
  left: 15px !important;
}
#hero .mainalign h1, #hero .colalign h1 {
  width: 100%;
}
.mainalign, .colalign {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
}
.colalign {
  align-items: center;
}
.coltext {
  color: #fff;
}
.colpadding {
  margin: 0 -15px 0 -15px;
}
.childpadding {
  padding: 0;
  height: 100%;
  width: 100%;
}
.fakelink {
  color: #13a89e;
}
.childwrap {
  padding: 0;
}
.show {
  display: inline !important;
  transition: all 0.5s ease-in;
}
.substext {
  color: white;
  padding: 0 50px;
}
#ihf-main-container .marker-cluster-small {
  background-image: url('http://www.idxhome.com/resources/dist/standalone/images/mapcount_bg5_blue.png') !important;
}
#ihf-main-container .marker-cluster-medium, #ihf-main-container .marker-cluster-large {
  background-image: url('http://www.idxhome.com/resources/dist/standalone/images/mapcount_bg6_blue.png') !important;
}
#ihf-main-container .pill-content > .active, #ihf-main-container .tab-content > .active {
  opacity: 1;
}
.leaflet-div-icon {
  background: none !important;
  border: none !important;
}
.ihf-map-icon {
  background: #999;
  border: 1px solid #777;
  color: #fff;
  height: 24px;
  position: relative;
  width: 24px;
  text-align: center;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}
.ihf-map-icon:after {
  content: ' ';
  height: 0;
  position: absolute;
  width: 0;
  border: 5px solid transparent;
  border-top-color: #777;
  top: 100%;
  left: 23%;
}
.navbar-toggler {
  margin-top: 15px;
  position: absolute;
  right: 0;
  top: 0;
}
.mobile-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
#communities .mobile-view .substext {
  background: rgba(0, 0, 0, 0.5);
}
#communities .mobile-view p {
  margin-bottom: 10px;
  /* hide text if it more than N lines  */
  overflow: hidden;
  /* for set '...' in absolute position */
  position: relative;
  /* use this value to count block height */
  line-height: 1.2em;
  /* max-height = line-height (1.2) * lines max number (3) */
  max-height: 7.2em;
  /* fix problem when last visible word doesn't adjoin right side  */
  text-align: justify;
  /* place for '...' */
  padding-right: 1em;
  /* create the ... */
  /*
   &:before {
   content: '...';
   position: absolute;
   right: 0;
   bottom: 0;
   }
   &:after {
   content: '';
   position: absolute;
   right: 0;
   width: 1em;
   height: 1em;
   margin-top: 0.2em;
   //background: white;
   }
   */
}
#communities .mobile-view .text-left {
  width: 100%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
.mobile-view .substext {
  background: rgba(0, 0, 0, 0.5);
}
.mobile-view p {
  margin-bottom: 10px;
}
.mobile-view .text-left {
  width: 100%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
#ihf-main-container .radio-inline + .radio-inline, #ihf-main-container .checkbox-inline + .checkbox-inline {
  margin-top: 5px !important;
  margin-right: 10px !important;
}
#ihf-main-container .radio-inline + .radio-inline:last-of-type {
  margin-left: 0;
  margin-right: 0 !important;
}
#ihf-main-container .checkbox-inline + .checkbox-inline:last-of-type {
  margin-left: 0;
  margin-right: 0 !important;
}
.community {
  height: 313.75px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: black;
}
#featured-listings-100-container .mobile-view p {
  margin-bottom: 10px;
}
#featured-listings-100-container .mobile-view .grid-item .text-left {
  width: 100%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
.header-fullvid-row .contactForm {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-fullvid-row .contactForm .col-12 {
  margin-top: 15px;
}
.header-fullvid-row .contactForm input {
  width: 80%;
  display: block;
  margin: 0 auto;
  padding: 0 15px;
  height: 36px;
  border: none;
}
.header-fullvid-row .contactForm input[type="submit"] {
  background-color: #13a89e;
  text-align: center;
}
.header-fullvid-row .contactForm span.wpcf7-not-valid-tip {
  position: relative;
  top: -38px;
}
.header-fullvid-row .contactForm .wpcf7 {
  flex: 0 0 100%;
  max-width: 100%;
}
.videowrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #000;
  display: none;
}
.videowrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.videowrapper .overlay {
  color: #fff;
  font-family: 'Oxygen', sans-serif;
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 100%;
  max-width: 45em;
  box-sizing: border-box;
  padding: 2em;
  line-height: 1.5;
  text-align: center;
  transform: translateX(-50%);
}
.header-fullvid-row {
  height: 100vh;
  top: 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.header-fullvid-row .mainalign {
  text-align: center !important;
  align-items: center !important;
}
.vheaderbutton {
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  border: none;
  padding: 8px 40px 7px 40px;
  border-radius: 0;
  transition: 0.2s ease-in-out all;
}
.vheaderbutton:hover {
  transform: scale(1.08);
}
.vheaderbutton:active, .vheaderbutton:focus {
  transform: scale(0.92);
}
.header-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-height: 100%;
}
body.home .header-fullvid-row .mainalign, body.home .header-fullvid-row .colalign {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
  flex-wrap: wrap;
}
.arrow {
  text-align: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 50px;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
#ihf-main-container .btn.btn-link.ihf-advanced-search-launch {
  white-space: normal;
}
.image-container {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
}
#procedures .tab-font {
  text-align: center;
}
#procedures .wrapper-procedure {
  height: 0;
  padding-bottom: 100%;
}
.ihf-gutter {
  margin-right: -6px !important;
  margin-left: -6px !important;
}
.ihf-gutter > .col, .ihf-gutter > [class*="col-"] {
  padding-right: 15px !important;
  padding-left: 15px !important;
}
.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
#search-side {
  height: 530px;
  overflow-y: scroll;
  overflow-x: hidden;
}
#ihf-main-container #ihf-quicksearch-submit1, #ihf-main-container #ihf-quicksearch-submit2 {
  justify-content: flex-start;
  text-align: left;
  padding-left: 15px;
}
#ihf-main-container #openAdvancedSearch, #openQuickSearch {
  height: 50px;
  background-color: #383838 !important;
  border: 1px solid #383838 !important;
  border-radius: 0;
  color: white;
  justify-content: left;
  text-align: left;
  padding-left: 15px;
}
#ihf-main-container #openAdvancedSearch:hover, #openQuickSearch:hover {
  background-color: #fff !important;
  border: 1px solid #000 !important;
  color: #000;
}
#openAdvancedSearch, #openQuickSearch {
  height: 50px;
  background-color: #383838 !important;
  border: 1px solid #383838 !important;
  border-radius: 0;
  color: white;
  justify-content: left;
  text-align: left;
  padding-left: 15px;
}
#openAdvancedSearch:hover, #openQuickSearch:hover {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.hide {
  display: none;
}
.property-divider {
  height: 1px;
  background: #ccc;
  margin: 10px 0;
}
@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}
.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50px !important;
  width: 50px !important;
  font-size: 1rem;
  transition: all 0.15s ease-out 0s;
  background: #fff;
  border: 1px solid #000 !important;
  color: #000;
  cursor: pointer;
  display: inline-block;
  margin-right: 1.5rem !important;
  outline: none !important;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #13a89e;
}
.option-input:checked {
  background: #fff;
}
.option-input:checked::before {
  height: 50px;
  width: 50px;
  position: absolute;
  content: '✓';
  display: inline-block;
  font-size: 26.66667px;
  text-align: center;
  line-height: 50px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #13a89e;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
#ihfSearchProfile_schedule {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
#ihfSearchProfile_schedule input {
  margin-right: 0.5rem !important;
}
form#ihf-main-search-form .field-label {
  display: flex;
  align-items: center;
  font-size: 1rem;
}
form#ihf-main-search-form a {
  font-size: 1rem;
}
form#ihf-main-search-form .radio {
  margin-top: 0 !important;
}
.dropdown-menu {
  min-width: 20rem !important;
}
.dropdown-item:focus, .dropdown-item:hover {
  background-color: transparent !important;
}
.searchFieldInputs {
  margin-bottom: 16px;
}
p#iconbar {
  font-size: 2em;
}
textarea {
  /* Chrome/Opera/Safari */
}
textarea::-webkit-input-placeholder {
  color: black !important;
}
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: black !important;
}
textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: black !important;
}
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: black !important;
}
textarea::placeholder {
  color: black !important;
}
#contact-area, #contact-field {
  /* Chrome/Opera/Safari */
}
#contact-area::-webkit-input-placeholder, #contact-field::-webkit-input-placeholder {
  color: #fff !important;
}
#contact-area::-moz-placeholder, #contact-field::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff !important;
}
#contact-area:-ms-input-placeholder, #contact-field:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff !important;
}
#contact-area:-moz-placeholder, #contact-field:-moz-placeholder {
  /* Firefox 18- */
  color: #fff !important;
}
#contact-area::placeholder, #contact-field::placeholder {
  color: #fff !important;
}
.instatransition {
  -webkit-transition: all 1000ms cubic-bezier(1, 0, 1, 0);
  /* older webkit */
  -webkit-transition: all 1000ms cubic-bezier(1, -0.6, 1, -0.6);
  -moz-transition: all 1000ms cubic-bezier(1, -0.6, 1, -0.6);
  -o-transition: all 1000ms cubic-bezier(1, -0.6, 1, -0.6);
  transition: all 1000ms cubic-bezier(1, -0.6, 1, -0.6);
  /* custom */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 1, 0);
  /* older webkit */
  -webkit-transition-timing-function: cubic-bezier(1, -0.6, 1, -0.6);
  -moz-transition-timing-function: cubic-bezier(1, -0.6, 1, -0.6);
  -o-transition-timing-function: cubic-bezier(1, -0.6, 1, -0.6);
  transition-timing-function: cubic-bezier(1, -0.6, 1, -0.6);
  /* custom */
}
#searchProfile > fieldset > div.row.mb-10 > div.col-12.mb-10:last-of-type {
  margin-bottom: 0;
}
.allblog-thumbnail {
  width: 100%;
  height: 250px;
  background-position: center center;
  background-size: cover;
  margin-bottom: 50px !important;
  transition: all 0.2s ease-in-out;
  z-index: 10;
}
.alm-reveal {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.full-link {
  color: #000;
}
.full-link p {
  color: #000;
}
.full-link:hover {
  color: #000;
  text-decoration: none;
}
.full-link:hover .allblog-thumbnail {
  transform: scale(1.05);
  transition: all 0.2s ease-in-out;
}
.read-all {
  text-align: right;
  width: 100%;
  padding: 15px;
  font-size: 20px;
}
.read-all a:hover {
  text-decoration: none;
}
@media (max-device-width: 992px) {
  .allexcept {
    margin-bottom: 50px !important;
  }
  .allblog-thumbnail {
    margin-bottom: 0px !important;
  }
}
#ihf-main-container .chosen-container-multi .chosen-choices {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
#ihf-main-container .input-text, #ihf-main-container input[type=text], #ihf-main-container input[type=input] {
  border-radius: 0 !important;
}
.grid-item[data-src]:not([data-was-processed]), .listing[data-src]:not([data-was-processed]), .grid-item:not([data-was-processed]), .listing:not([data-was-processed]), .community[data-src]:not([data-was-processed]), .community:not([data-was-processed]) {
  background-repeat: no-repeat;
  background-size: 25% !important;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' standalone='no'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid' class='lds-eclipse' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs xmlns='http://www.w3.org/1999/xhtml'%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B%0A%5Bng%5C:cloak%5D, %5Bng-cloak%5D, %5Bdata-ng-cloak%5D, %5Bx-ng-cloak%5D, .ng-cloak, .x-ng-cloak, .ng-hide:not%28.ng-hide-animate%29 %7B display: none !important; %7D%0Ang%5C:form %7B display: block; %7D%0A.fb_hidden %7B position: absolute; top: -10000px; z-index: 10001; %7D%0A.fb_reposition %7B overflow: hidden; position: relative; %7D%0A.fb_invisible %7B display: none; %7D%0A.fb_reset %7B background: none; border: 0px; border-spacing: 0px; color: rgb%280, 0, 0%29; cursor: auto; direction: ltr; font-family: 'lucida grande', tahoma, verdana, arial, sans-serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 1; margin: 0px; overflow: visible; padding: 0px; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: none; text-transform: none; visibility: visible; white-space: normal; word-spacing: normal; %7D%0A.fb_link img %7B border: none; %7D%0A.fb_animate %7B animation: fb_transform 0.3s forwards; %7D%0A.fb_dialog %7B background: rgba%2882, 82, 82, 0.7%29; position: absolute; top: -10000px; z-index: 10001; %7D%0A.fb_reset .fb_dialog_legacy %7B overflow: visible; %7D%0A.fb_dialog_advanced %7B padding: 10px; border-radius: 8px; %7D%0A.fb_dialog_content %7B background: rgb%28255, 255, 255%29; color: rgb%2851, 51, 51%29; %7D%0A.fb_dialog_close_icon %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png'%29 0px 0px no-repeat scroll transparent; cursor: pointer; display: block; height: 15px; position: absolute; right: 18px; top: 17px; width: 15px; %7D%0A.fb_dialog_mobile .fb_dialog_close_icon %7B top: 5px; left: 5px; right: auto; %7D%0A.fb_dialog_padding %7B background-color: transparent; position: absolute; width: 1px; z-index: -1; %7D%0A.fb_dialog_close_icon:hover %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png'%29 0px -15px no-repeat scroll transparent; %7D%0A.fb_dialog_close_icon:active %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/yq/r/IE9JII6Z1Ys.png'%29 0px -30px no-repeat scroll transparent; %7D%0A.fb_dialog_loader %7B background-color: rgb%28246, 247, 249%29; border: 1px solid rgb%2896, 96, 96%29; font-size: 25px; padding: 20px; %7D%0A.fb_dialog_top_left, .fb_dialog_top_right, .fb_dialog_bottom_left, .fb_dialog_bottom_right %7B height: 10px; width: 10px; overflow: hidden; position: absolute; %7D%0A.fb_dialog_top_left %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png'%29 0px 0px no-repeat; left: -10px; top: -10px; %7D%0A.fb_dialog_top_right %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png'%29 0px -10px no-repeat; right: -10px; top: -10px; %7D%0A.fb_dialog_bottom_left %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png'%29 0px -20px no-repeat; bottom: -10px; left: -10px; %7D%0A.fb_dialog_bottom_right %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/ye/r/8YeTNIlTZjm.png'%29 0px -30px no-repeat; right: -10px; bottom: -10px; %7D%0A.fb_dialog_vert_left, .fb_dialog_vert_right, .fb_dialog_horiz_top, .fb_dialog_horiz_bottom %7B position: absolute; background: rgb%2882, 82, 82%29; opacity: 0.7; %7D%0A.fb_dialog_vert_left, .fb_dialog_vert_right %7B width: 10px; height: 100%25; %7D%0A.fb_dialog_vert_left %7B margin-left: -10px; %7D%0A.fb_dialog_vert_right %7B right: 0px; margin-right: -10px; %7D%0A.fb_dialog_horiz_top, .fb_dialog_horiz_bottom %7B width: 100%25; height: 10px; %7D%0A.fb_dialog_horiz_top %7B margin-top: -10px; %7D%0A.fb_dialog_horiz_bottom %7B bottom: 0px; margin-bottom: -10px; %7D%0A.fb_dialog_iframe %7B line-height: 0; %7D%0A.fb_dialog_content .dialog_title %7B background: rgb%28109, 132, 180%29; border: 1px solid rgb%2854, 88, 153%29; color: rgb%28255, 255, 255%29; font-size: 15px; font-weight: bold; margin: 0px; %7D%0Abody.fb_hidden %7B transform: none; height: 100%25; margin: 0px; overflow: visible; position: absolute; top: -10000px; left: 0px; width: 100%25; %7D%0A.fb_dialog.fb_dialog_mobile.loading %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/ya/r/3rhSv5V8j3o.gif'%29 50%25 50%25 no-repeat white; min-height: 100%25; min-width: 100%25; overflow: hidden; position: absolute; top: 0px; z-index: 10001; %7D%0A.fb_dialog.fb_dialog_mobile.loading.centered %7B width: auto; height: auto; min-height: initial; min-width: initial; background: none; %7D%0A.fb_dialog.fb_dialog_mobile.loading.centered %23fb_dialog_loader_spinner %7B width: 100%25; %7D%0A.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content %7B background: none; %7D%0A.loading.centered %23fb_dialog_loader_close %7B color: rgb%28255, 255, 255%29; display: block; padding-top: 20px; clear: both; font-size: 19px; %7D%0A%23fb-root %23fb_dialog_ipad_overlay %7B background: rgba%280, 0, 0, 0.45%29; position: absolute; bottom: 0px; left: 0px; right: 0px; top: 0px; width: 100%25; min-height: 100%25; z-index: 10000; %7D%0A%23fb-root %23fb_dialog_ipad_overlay.hidden %7B display: none; %7D%0A.fb_dialog.fb_dialog_mobile.loading iframe %7B visibility: hidden; %7D%0A.fb_dialog_content .dialog_header %7B box-shadow: white 0px 1px 1px -1px inset; background: -webkit-gradient%28linear, 0%25 0%25, 0%25 100%25, from%28rgb%28115, 138, 186%29%29, to%28rgb%2844, 73, 135%29%29%29; border-bottom: 1px solid rgb%2829, 64, 136%29; border-top-color: rgb%2829, 64, 136%29; border-right-color: rgb%2829, 64, 136%29; border-left-color: rgb%2829, 64, 136%29; color: rgb%28255, 255, 255%29; font-style: normal; font-variant: normal; font-stretch: normal; font-size: 14px; line-height: normal; font-family: Helvetica, sans-serif; font-weight: bold; text-overflow: ellipsis; text-shadow: rgba%280, 30, 84, 0.298%29 0px -1px 0px; vertical-align: middle; white-space: nowrap; %7D%0A.fb_dialog_content .dialog_header table %7B -webkit-font-smoothing: subpixel-antialiased; height: 43px; width: 100%25; %7D%0A.fb_dialog_content .dialog_header td.header_left %7B font-size: 13px; padding-left: 5px; vertical-align: middle; width: 60px; %7D%0A.fb_dialog_content .dialog_header td.header_right %7B font-size: 13px; padding-right: 5px; vertical-align: middle; width: 60px; %7D%0A.fb_dialog_content .touchable_button %7B background: -webkit-gradient%28linear, 0%25 0%25, 0%25 100%25, from%28rgb%2873, 102, 166%29%29, color-stop%280.5, rgb%2853, 84, 146%29%29, to%28rgb%2842, 72, 135%29%29%29; border: 1px solid rgb%2841, 72, 125%29; -webkit-background-clip: padding-box; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.118%29 0px 1px 1px inset, rgba%28255, 255, 255, 0.17%29 0px 1px 0px; display: inline-block; margin-top: 3px; max-width: 85px; line-height: 18px; padding: 4px 12px; position: relative; %7D%0A.fb_dialog_content .dialog_header .touchable_button input %7B border: none; background: none; color: rgb%28255, 255, 255%29; font-style: normal; font-variant: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Helvetica, sans-serif; font-weight: bold; margin: 2px -12px; padding: 2px 6px 3px; text-shadow: rgba%280, 30, 84, 0.298%29 0px -1px 0px; %7D%0A.fb_dialog_content .dialog_header .header_center %7B color: rgb%28255, 255, 255%29; font-size: 17px; font-weight: bold; line-height: 18px; text-align: center; vertical-align: middle; %7D%0A.fb_dialog_content .dialog_content %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/jKEcVPZFk-2.gif'%29 50%25 50%25 no-repeat; border-width: 0px 1px; border-right-style: solid; border-left-style: solid; border-right-color: rgb%2885, 85, 85%29; border-left-color: rgb%2885, 85, 85%29; border-image: initial; border-bottom-style: initial; border-bottom-color: initial; border-top-style: initial; border-top-color: initial; height: 150px; %7D%0A.fb_dialog_content .dialog_footer %7B background: rgb%28246, 247, 249%29; border-width: 1px; border-style: solid; border-color: rgb%28204, 204, 204%29 rgb%2885, 85, 85%29 rgb%2885, 85, 85%29; border-image: initial; height: 40px; %7D%0A%23fb_dialog_loader_close %7B float: left; %7D%0A.fb_dialog.fb_dialog_mobile .fb_dialog_close_button %7B text-shadow: rgba%280, 30, 84, 0.298%29 0px -1px 0px; %7D%0A.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon %7B visibility: hidden; %7D%0A%23fb_dialog_loader_spinner %7B animation: rotateSpinner 1.2s linear infinite; background-color: transparent; background-image: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/yD/r/t-wz8gw1xG1.png'%29; background-repeat: no-repeat; background-position: 50%25 50%25; height: 24px; width: 24px; %7D%0A.fb_iframe_widget %7B display: inline-block; position: relative; %7D%0A.fb_iframe_widget span %7B display: inline-block; position: relative; text-align: justify; %7D%0A.fb_iframe_widget iframe %7B position: absolute; %7D%0A.fb_iframe_widget_fluid_desktop, .fb_iframe_widget_fluid_desktop span, .fb_iframe_widget_fluid_desktop iframe %7B max-width: 100%25; %7D%0A.fb_iframe_widget_fluid_desktop iframe %7B min-width: 220px; position: relative; %7D%0A.fb_iframe_widget_lift %7B z-index: 1; %7D%0A.fb_hide_iframes iframe %7B position: relative; left: -10000px; %7D%0A.fb_iframe_widget_loader %7B position: relative; display: inline-block; %7D%0A.fb_iframe_widget_fluid %7B display: inline; %7D%0A.fb_iframe_widget_fluid span %7B width: 100%25; %7D%0A.fb_iframe_widget_loader iframe %7B min-height: 32px; z-index: 2; zoom: 1; %7D%0A.fb_iframe_widget_loader .FB_Loader %7B background: url%28'https://static.xx.fbcdn.net/rsrc.php/v3/y9/r/jKEcVPZFk-2.gif'%29 no-repeat; height: 32px; width: 32px; margin-left: -16px; position: absolute; left: 50%25; z-index: 4; %7D%0A.fb_invisible_flow %7B display: inherit; height: 0px; overflow-x: hidden; width: 0px; %7D%0A.fb_mobile_overlay_active %7B height: 100%25; overflow: hidden; position: fixed; width: 100%25; %7D%0A.fb_shrink_active %7B opacity: 1; transform: scale%281, 1%29; transition-duration: 200ms; transition-timing-function: ease-out; %7D%0A.fb_shrink_active:active %7B opacity: 0.5; transform: scale%280.75, 0.75%29; %7D%0Ahtml %7B font-family: sans-serif; text-size-adjust: 100%25; %7D%0Abody %7B margin: 0px; %7D%0Aarticle, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary %7B display: block; %7D%0Aaudio, canvas, progress, video %7B display: inline-block; vertical-align: baseline; %7D%0Aaudio:not%28%5Bcontrols%5D%29 %7B display: none; height: 0px; %7D%0A%5Bhidden%5D, template %7B display: none; %7D%0Aa %7B background-color: transparent; %7D%0Aa:active, a:hover %7B outline: 0px; %7D%0Aabbr%5Btitle%5D %7B border-bottom: 1px dotted; %7D%0Ab, strong %7B font-weight: 700; %7D%0Adfn %7B font-style: italic; %7D%0Ah1 %7B font-size: 2em; margin: 0.67em 0px; %7D%0Amark %7B background: rgb%28255, 255, 0%29; color: rgb%280, 0, 0%29; %7D%0Asmall %7B font-size: 80%25; %7D%0Asub, sup %7B font-size: 75%25; line-height: 0; position: relative; vertical-align: baseline; %7D%0Asup %7B top: -0.5em; %7D%0Asub %7B bottom: -0.25em; %7D%0Aimg %7B border: 0px; %7D%0Asvg:not%28:root%29 %7B overflow: hidden; %7D%0Afigure %7B margin: 1em 40px; %7D%0Ahr %7B box-sizing: content-box; height: 0px; %7D%0Apre %7B overflow: auto; %7D%0Acode, kbd, pre, samp %7B font-family: monospace, monospace; font-size: 1em; %7D%0Abutton, input, optgroup, select, textarea %7B color: inherit; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: inherit; line-height: inherit; font-family: inherit; margin: 0px; %7D%0Abutton %7B overflow: visible; %7D%0Abutton, select %7B text-transform: none; %7D%0Abutton, html input%5Btype='button'%5D, input%5Btype='reset'%5D, input%5Btype='submit'%5D %7B -webkit-appearance: button; cursor: pointer; %7D%0Abutton%5Bdisabled%5D, html input%5Bdisabled%5D %7B cursor: default; %7D%0Ainput %7B line-height: normal; %7D%0Ainput%5Btype='checkbox'%5D, input%5Btype='radio'%5D %7B box-sizing: border-box; padding: 0px; %7D%0Ainput%5Btype='number'%5D::-webkit-inner-spin-button, input%5Btype='number'%5D::-webkit-outer-spin-button %7B height: auto; %7D%0Ainput%5Btype='search'%5D %7B -webkit-appearance: textfield; box-sizing: content-box; %7D%0Ainput%5Btype='search'%5D::-webkit-search-cancel-button, input%5Btype='search'%5D::-webkit-search-decoration %7B -webkit-appearance: none; %7D%0Afieldset %7B border: 1px solid silver; margin: 0px 2px; padding: 0.35em 0.625em 0.75em; %7D%0Alegend %7B border: 0px; %7D%0Atextarea %7B overflow: auto; %7D%0Aoptgroup %7B font-weight: 700; %7D%0Atable %7B border-collapse: collapse; border-spacing: 0px; %7D%0Alegend, td, th %7B padding: 0px; %7D%0A*, ::after, ::before, input%5Btype='search'%5D %7B box-sizing: border-box; %7D%0Ahtml %7B font-size: 10px; -webkit-tap-highlight-color: rgba%280, 0, 0, 0%29; %7D%0Abody %7B font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857; color: rgb%2851, 51, 51%29; background-color: rgb%28255, 255, 255%29; %7D%0Abutton, input, select, textarea %7B font-family: inherit; font-size: inherit; line-height: inherit; %7D%0Aa %7B color: rgb%2851, 122, 183%29; text-decoration: none; %7D%0Aa:focus, a:hover %7B color: rgb%2835, 82, 124%29; text-decoration: underline; %7D%0Aa:focus, input%5Btype='checkbox'%5D:focus, input%5Btype='file'%5D:focus, input%5Btype='radio'%5D:focus %7B outline: -webkit-focus-ring-color auto 5px; outline-offset: -2px; %7D%0Afigure %7B margin: 0px; %7D%0Aimg %7B vertical-align: middle; %7D%0A.img-rounded %7B border-radius: 6px; %7D%0A.img-thumbnail %7B padding: 4px; line-height: 1.42857; background-color: rgb%28255, 255, 255%29; border: 1px solid rgb%28221, 221, 221%29; border-radius: 4px; transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%25; height: auto; %7D%0A.img-circle %7B border-radius: 50%25; %7D%0Ahr %7B margin-top: 20px; margin-bottom: 20px; border-width: 1px 0px 0px; border-right-style: initial; border-bottom-style: initial; border-left-style: initial; border-right-color: initial; border-bottom-color: initial; border-left-color: initial; border-image: initial; border-top-style: solid; border-top-color: rgb%28238, 238, 238%29; %7D%0A.sr-only %7B position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0px; overflow: hidden; clip: rect%280px 0px 0px 0px%29; border: 0px; %7D%0A.sr-only-focusable:active, .sr-only-focusable:focus %7B position: static; width: auto; height: auto; margin: 0px; overflow: visible; clip: auto; %7D%0A%5Brole='button'%5D %7B cursor: pointer; %7D%0A.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 %7B font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; %7D%0A.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small %7B font-weight: 400; line-height: 1; color: rgb%28119, 119, 119%29; %7D%0A.h1, .h2, .h3, h1, h2, h3 %7B margin-top: 20px; margin-bottom: 10px; %7D%0A.h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small %7B font-size: 65%25; %7D%0A.h4, .h5, .h6, h4, h5, h6 %7B margin-top: 10px; margin-bottom: 10px; %7D%0A.h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small %7B font-size: 75%25; %7D%0A.h1, h1 %7B font-size: 36px; %7D%0A.h2, h2 %7B font-size: 30px; %7D%0A.h3, h3 %7B font-size: 24px; %7D%0A.h4, h4 %7B font-size: 18px; %7D%0A.h5, h5 %7B font-size: 14px; %7D%0A.h6, h6 %7B font-size: 12px; %7D%0Ap %7B margin: 0px 0px 10px; %7D%0A.lead %7B margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height: 1.4; %7D%0A.small, small %7B font-size: 85%25; %7D%0A.mark, mark %7B background-color: rgb%28252, 248, 227%29; padding: 0.2em; %7D%0A.text-left, th %7B text-align: left; %7D%0A.text-right %7B text-align: right; %7D%0A.text-center %7B text-align: center; %7D%0A.text-justify %7B text-align: justify; %7D%0A.text-nowrap %7B white-space: nowrap; %7D%0A.text-lowercase %7B text-transform: lowercase; %7D%0A.text-uppercase %7B text-transform: uppercase; %7D%0A.text-capitalize %7B text-transform: capitalize; %7D%0A.text-muted %7B color: rgb%28119, 119, 119%29; %7D%0A.text-primary %7B color: rgb%2851, 122, 183%29; %7D%0Aa.text-primary:focus, a.text-primary:hover %7B color: rgb%2840, 96, 144%29; %7D%0A.text-success %7B color: rgb%2860, 118, 61%29; %7D%0Aa.text-success:focus, a.text-success:hover %7B color: rgb%2843, 84, 44%29; %7D%0A.text-info %7B color: rgb%2849, 112, 143%29; %7D%0Aa.text-info:focus, a.text-info:hover %7B color: rgb%2836, 82, 105%29; %7D%0A.text-warning %7B color: rgb%28138, 109, 59%29; %7D%0Aa.text-warning:focus, a.text-warning:hover %7B color: rgb%28102, 81, 44%29; %7D%0A.text-danger %7B color: rgb%28169, 68, 66%29; %7D%0Aa.text-danger:focus, a.text-danger:hover %7B color: rgb%28132, 53, 52%29; %7D%0A.bg-primary %7B color: rgb%28255, 255, 255%29; background-color: rgb%2851, 122, 183%29; %7D%0Aa.bg-primary:focus, a.bg-primary:hover %7B background-color: rgb%2840, 96, 144%29; %7D%0A.bg-success %7B background-color: rgb%28223, 240, 216%29; %7D%0Aa.bg-success:focus, a.bg-success:hover %7B background-color: rgb%28193, 226, 179%29; %7D%0A.bg-info %7B background-color: rgb%28217, 237, 247%29; %7D%0Aa.bg-info:focus, a.bg-info:hover %7B background-color: rgb%28175, 217, 238%29; %7D%0A.bg-warning %7B background-color: rgb%28252, 248, 227%29; %7D%0Aa.bg-warning:focus, a.bg-warning:hover %7B background-color: rgb%28247, 236, 181%29; %7D%0A.bg-danger %7B background-color: rgb%28242, 222, 222%29; %7D%0Aa.bg-danger:focus, a.bg-danger:hover %7B background-color: rgb%28228, 185, 185%29; %7D%0A.page-header %7B padding-bottom: 9px; margin: 40px 0px 20px; border-bottom: 1px solid rgb%28238, 238, 238%29; %7D%0Adl, ol, ul %7B margin-top: 0px; margin-bottom: 10px; %7D%0Aol ol, ol ul, ul ol, ul ul %7B margin-bottom: 0px; %7D%0A.list-inline, .list-unstyled %7B padding-left: 0px; list-style: none; %7D%0A.list-inline %7B margin-left: -5px; %7D%0Adl %7B margin-bottom: 20px; %7D%0Add, dt %7B line-height: 1.42857; %7D%0Adt %7B font-weight: 700; %7D%0Add %7B margin-left: 0px; %7D%0Aabbr%5Bdata-original-title%5D, abbr%5Btitle%5D %7B cursor: help; border-bottom: 1px dotted rgb%28119, 119, 119%29; %7D%0A.initialism %7B font-size: 90%25; text-transform: uppercase; %7D%0Ablockquote %7B padding: 10px 20px; margin: 0px 0px 20px; font-size: 17.5px; border-left: 5px solid rgb%28238, 238, 238%29; %7D%0Ablockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child %7B margin-bottom: 0px; %7D%0Ablockquote .small, blockquote footer, blockquote small %7B display: block; font-size: 80%25; line-height: 1.42857; color: rgb%28119, 119, 119%29; %7D%0Ablockquote .small::before, blockquote footer::before, blockquote small::before %7B content: '— '; %7D%0A.blockquote-reverse, blockquote.pull-right %7B padding-right: 15px; padding-left: 0px; border-right: 5px solid rgb%28238, 238, 238%29; border-left: 0px; text-align: right; %7D%0A.blockquote-reverse .small::before, .blockquote-reverse footer::before, .blockquote-reverse small::before, blockquote.pull-right .small::before, blockquote.pull-right footer::before, blockquote.pull-right small::before %7B content: ''; %7D%0A.blockquote-reverse .small::after, .blockquote-reverse footer::after, .blockquote-reverse small::after, blockquote.pull-right .small::after, blockquote.pull-right footer::after, blockquote.pull-right small::after %7B content: ' —'; %7D%0Aaddress %7B margin-bottom: 20px; font-style: normal; line-height: 1.42857; %7D%0Acode, kbd, pre, samp %7B font-family: Menlo, Monaco, Consolas, 'Courier New', monospace; %7D%0Acode, kbd, pre %7B padding: 2px 4px; font-size: 90%25; color: rgb%28199, 37, 78%29; background-color: rgb%28249, 242, 244%29; border-radius: 4px; %7D%0Akbd %7B color: rgb%28255, 255, 255%29; background-color: rgb%2851, 51, 51%29; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.25%29 0px -1px 0px inset; %7D%0Akbd kbd %7B padding: 0px; font-size: 100%25; font-weight: 700; box-shadow: none; %7D%0Apre %7B display: block; padding: 9.5px; margin: 0px 0px 10px; font-size: 13px; line-height: 1.42857; word-break: break-all; word-wrap: break-word; color: rgb%2851, 51, 51%29; background-color: rgb%28245, 245, 245%29; border: 1px solid rgb%28204, 204, 204%29; %7D%0Apre code %7B padding: 0px; font-size: inherit; color: inherit; white-space: pre-wrap; border-radius: 0px; %7D%0A.pre-scrollable %7B max-height: 340px; overflow-y: scroll; %7D%0A.container %7B margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; %7D%0A.container-fluid %7B margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; %7D%0A.row %7B margin-left: -15px; margin-right: -15px; %7D%0A.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-md-1, .col-md-10, .col-md-11, .col-md-12, .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-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 %7B position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; %7D%0A.col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 %7B float: left; %7D%0A.col-xs-12 %7B width: 100%25; %7D%0A.col-xs-11 %7B width: 91.6667%25; %7D%0A.col-xs-10 %7B width: 83.3333%25; %7D%0A.col-xs-9 %7B width: 75%25; %7D%0A.col-xs-8 %7B width: 66.6667%25; %7D%0A.col-xs-7 %7B width: 58.3333%25; %7D%0A.col-xs-6 %7B width: 50%25; %7D%0A.col-xs-5 %7B width: 41.6667%25; %7D%0A.col-xs-4 %7B width: 33.3333%25; %7D%0A.col-xs-3 %7B width: 25%25; %7D%0A.col-xs-2 %7B width: 16.6667%25; %7D%0A.col-xs-1 %7B width: 8.33333%25; %7D%0A.col-xs-pull-12 %7B right: 100%25; %7D%0A.col-xs-pull-11 %7B right: 91.6667%25; %7D%0A.col-xs-pull-10 %7B right: 83.3333%25; %7D%0A.col-xs-pull-9 %7B right: 75%25; %7D%0A.col-xs-pull-8 %7B right: 66.6667%25; %7D%0A.col-xs-pull-7 %7B right: 58.3333%25; %7D%0A.col-xs-pull-6 %7B right: 50%25; %7D%0A.col-xs-pull-5 %7B right: 41.6667%25; %7D%0A.col-xs-pull-4 %7B right: 33.3333%25; %7D%0A.col-xs-pull-3 %7B right: 25%25; %7D%0A.col-xs-pull-2 %7B right: 16.6667%25; %7D%0A.col-xs-pull-1 %7B right: 8.33333%25; %7D%0A.col-xs-pull-0 %7B right: auto; %7D%0A.col-xs-push-12 %7B left: 100%25; %7D%0A.col-xs-push-11 %7B left: 91.6667%25; %7D%0A.col-xs-push-10 %7B left: 83.3333%25; %7D%0A.col-xs-push-9 %7B left: 75%25; %7D%0A.col-xs-push-8 %7B left: 66.6667%25; %7D%0A.col-xs-push-7 %7B left: 58.3333%25; %7D%0A.col-xs-push-6 %7B left: 50%25; %7D%0A.col-xs-push-5 %7B left: 41.6667%25; %7D%0A.col-xs-push-4 %7B left: 33.3333%25; %7D%0A.col-xs-push-3 %7B left: 25%25; %7D%0A.col-xs-push-2 %7B left: 16.6667%25; %7D%0A.col-xs-push-1 %7B left: 8.33333%25; %7D%0A.col-xs-push-0 %7B left: auto; %7D%0A.col-xs-offset-12 %7B margin-left: 100%25; %7D%0A.col-xs-offset-11 %7B margin-left: 91.6667%25; %7D%0A.col-xs-offset-10 %7B margin-left: 83.3333%25; %7D%0A.col-xs-offset-9 %7B margin-left: 75%25; %7D%0A.col-xs-offset-8 %7B margin-left: 66.6667%25; %7D%0A.col-xs-offset-7 %7B margin-left: 58.3333%25; %7D%0A.col-xs-offset-6 %7B margin-left: 50%25; %7D%0A.col-xs-offset-5 %7B margin-left: 41.6667%25; %7D%0A.col-xs-offset-4 %7B margin-left: 33.3333%25; %7D%0A.col-xs-offset-3 %7B margin-left: 25%25; %7D%0A.col-xs-offset-2 %7B margin-left: 16.6667%25; %7D%0A.col-xs-offset-1 %7B margin-left: 8.33333%25; %7D%0A.col-xs-offset-0 %7B margin-left: 0px; %7D%0Apre code, table %7B background-color: transparent; %7D%0Acaption %7B padding-top: 8px; padding-bottom: 8px; color: rgb%28119, 119, 119%29; text-align: left; %7D%0A.table %7B width: 100%25; max-width: 100%25; margin-bottom: 20px; %7D%0A.table .table %7B background-color: rgb%28255, 255, 255%29; %7D%0Atable col%5Bclass*='col-'%5D %7B position: static; float: none; display: table-column; %7D%0Atable td%5Bclass*='col-'%5D, table th%5Bclass*='col-'%5D %7B position: static; float: none; display: table-cell; %7D%0A.table-responsive %7B overflow-x: auto; min-height: 0.01%25; %7D%0Afieldset, legend %7B padding: 0px; border: 0px; %7D%0Afieldset %7B margin: 0px; min-width: 0px; %7D%0Alegend %7B width: 100%25; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: rgb%2851, 51, 51%29; border-bottom: 1px solid rgb%28229, 229, 229%29; %7D%0Alabel %7B display: inline-block; max-width: 100%25; margin-bottom: 5px; font-weight: 700; %7D%0Ainput%5Btype='checkbox'%5D, input%5Btype='radio'%5D %7B margin: 4px 0px 0px; line-height: normal; %7D%0Ainput%5Btype='file'%5D, legend %7B display: block; %7D%0Ainput%5Btype='range'%5D %7B display: block; width: 100%25; %7D%0A.form-group-sm select%5Bmultiple%5D.form-control, .form-group-sm textarea.form-control, select%5Bmultiple%5D, select%5Bmultiple%5D.input-sm, select%5Bsize%5D, textarea.form-control, textarea.input-sm %7B height: auto; %7D%0A.form-control, output %7B display: block; font-size: 14px; line-height: 1.42857; color: rgb%2885, 85, 85%29; %7D%0Aoutput %7B padding-top: 7px; %7D%0A.form-control %7B width: 100%25; height: 34px; padding: 6px 12px; background-color: rgb%28255, 255, 255%29; background-image: none; border: 1px solid rgb%28204, 204, 204%29; border-radius: 4px; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; %7D%0A.form-control:focus %7B border-color: rgb%28102, 175, 233%29; outline: 0px; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset, rgba%28102, 175, 233, 0.6%29 0px 0px 8px; %7D%0A.form-control::-webkit-input-placeholder %7B color: rgb%28153, 153, 153%29; %7D%0A.form-control%5Bdisabled%5D, .form-control%5Breadonly%5D, fieldset%5Bdisabled%5D .form-control %7B background-color: rgb%28238, 238, 238%29; opacity: 1; %7D%0A.form-control%5Bdisabled%5D, fieldset%5Bdisabled%5D .form-control %7B cursor: not-allowed; %7D%0Ainput%5Btype='search'%5D %7B -webkit-appearance: none; %7D%0A.form-group %7B margin-bottom: 15px; %7D%0A.checkbox, .radio %7B position: relative; display: block; margin-top: 10px; margin-bottom: 10px; %7D%0A.checkbox label, .checkbox-inline, .radio label, .radio-inline %7B padding-left: 20px; margin-bottom: 0px; font-weight: 400; cursor: pointer; %7D%0A.checkbox label, .radio label %7B min-height: 20px; %7D%0A.checkbox input%5Btype='checkbox'%5D, .checkbox-inline input%5Btype='checkbox'%5D, .radio input%5Btype='radio'%5D, .radio-inline input%5Btype='radio'%5D %7B position: absolute; margin-left: -20px; %7D%0A.checkbox + .checkbox, .radio + .radio %7B margin-top: -5px; %7D%0A.checkbox-inline, .radio-inline %7B position: relative; display: inline-block; vertical-align: middle; %7D%0A.checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline %7B margin-top: 0px; margin-left: 10px; %7D%0A.checkbox-inline.disabled, .checkbox.disabled label, .radio-inline.disabled, .radio.disabled label, fieldset%5Bdisabled%5D .checkbox label, fieldset%5Bdisabled%5D .checkbox-inline, fieldset%5Bdisabled%5D .radio label, fieldset%5Bdisabled%5D .radio-inline, fieldset%5Bdisabled%5D input%5Btype='checkbox'%5D, fieldset%5Bdisabled%5D input%5Btype='radio'%5D, input%5Btype='checkbox'%5D.disabled, input%5Btype='checkbox'%5D%5Bdisabled%5D, input%5Btype='radio'%5D.disabled, input%5Btype='radio'%5D%5Bdisabled%5D %7B cursor: not-allowed; %7D%0A.form-control-static %7B padding-top: 7px; padding-bottom: 7px; margin-bottom: 0px; min-height: 34px; %7D%0A.form-control-static.input-lg, .form-control-static.input-sm %7B padding-left: 0px; padding-right: 0px; %7D%0A.form-group-sm .form-control, .input-sm %7B height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; %7D%0A.form-group-sm select.form-control, select.input-sm %7B height: 30px; line-height: 30px; %7D%0A.form-group-sm .form-control-static %7B height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; line-height: 1.5; %7D%0A.form-group-lg .form-control, .input-lg %7B height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.33333; border-radius: 6px; %7D%0A.form-group-lg select%5Bmultiple%5D.form-control, .form-group-lg textarea.form-control, select%5Bmultiple%5D.input-lg, textarea.input-lg %7B height: auto; %7D%0A.form-group-lg select.form-control, select.input-lg %7B height: 46px; line-height: 46px; %7D%0A.form-group-lg .form-control-static %7B height: 46px; min-height: 38px; padding: 11px 16px; font-size: 18px; line-height: 1.33333; %7D%0A.has-feedback %7B position: relative; %7D%0A.has-feedback .form-control %7B padding-right: 42.5px; %7D%0A.form-control-feedback %7B position: absolute; top: 0px; right: 0px; z-index: 2; display: block; width: 34px; height: 34px; line-height: 34px; text-align: center; pointer-events: none; %7D%0A.form-group-lg .form-control + .form-control-feedback, .input-group-lg + .form-control-feedback, .input-lg + .form-control-feedback %7B width: 46px; height: 46px; line-height: 46px; %7D%0A.form-group-sm .form-control + .form-control-feedback, .input-group-sm + .form-control-feedback, .input-sm + .form-control-feedback %7B width: 30px; height: 30px; line-height: 30px; %7D%0A.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label %7B color: rgb%2860, 118, 61%29; %7D%0A.has-success .form-control %7B border-color: rgb%2860, 118, 61%29; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset; %7D%0A.has-success .form-control:focus %7B border-color: rgb%2843, 84, 44%29; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset, rgb%28103, 177, 104%29 0px 0px 6px; %7D%0A.has-success .input-group-addon %7B color: rgb%2860, 118, 61%29; border-color: rgb%2860, 118, 61%29; background-color: rgb%28223, 240, 216%29; %7D%0A.has-success .form-control-feedback %7B color: rgb%2860, 118, 61%29; %7D%0A.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label %7B color: rgb%28138, 109, 59%29; %7D%0A.has-warning .form-control %7B border-color: rgb%28138, 109, 59%29; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset; %7D%0A.has-warning .form-control:focus %7B border-color: rgb%28102, 81, 44%29; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset, rgb%28192, 161, 107%29 0px 0px 6px; %7D%0A.has-warning .input-group-addon %7B color: rgb%28138, 109, 59%29; border-color: rgb%28138, 109, 59%29; background-color: rgb%28252, 248, 227%29; %7D%0A.has-warning .form-control-feedback %7B color: rgb%28138, 109, 59%29; %7D%0A.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label %7B color: rgb%28169, 68, 66%29; %7D%0A.has-error .form-control %7B border-color: rgb%28169, 68, 66%29; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset; %7D%0A.has-error .form-control:focus %7B border-color: rgb%28132, 53, 52%29; box-shadow: rgba%280, 0, 0, 0.075%29 0px 1px 1px inset, rgb%28206, 132, 131%29 0px 0px 6px; %7D%0A.has-error .input-group-addon %7B color: rgb%28169, 68, 66%29; border-color: rgb%28169, 68, 66%29; background-color: rgb%28242, 222, 222%29; %7D%0A.has-error .form-control-feedback %7B color: rgb%28169, 68, 66%29; %7D%0A.has-feedback label ~ .form-control-feedback %7B top: 25px; %7D%0A.has-feedback label.sr-only ~ .form-control-feedback %7B top: 0px; %7D%0A.help-block %7B display: block; margin-top: 5px; margin-bottom: 10px; color: rgb%28115, 115, 115%29; %7D%0A.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline %7B margin-top: 0px; margin-bottom: 0px; padding-top: 7px; %7D%0A.form-horizontal .checkbox, .form-horizontal .radio %7B min-height: 27px; %7D%0A.form-horizontal .form-group %7B margin-left: -15px; margin-right: -15px; %7D%0A.form-horizontal .has-feedback .form-control-feedback %7B right: 15px; %7D%0A.btn %7B display: inline-block; margin-bottom: 0px; font-weight: 400; text-align: center; vertical-align: middle; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 6px 12px; font-size: 14px; line-height: 1.42857; border-radius: 4px; user-select: none; %7D%0A.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus %7B outline: -webkit-focus-ring-color auto 5px; outline-offset: -2px; %7D%0A.btn.focus, .btn:focus, .btn:hover %7B color: rgb%2851, 51, 51%29; text-decoration: none; %7D%0A.btn.active, .btn:active %7B outline: 0px; background-image: none; box-shadow: rgba%280, 0, 0, 0.125%29 0px 3px 5px inset; %7D%0A.btn.disabled, .btn%5Bdisabled%5D, fieldset%5Bdisabled%5D .btn %7B cursor: not-allowed; opacity: 0.65; box-shadow: none; %7D%0Aa.btn.disabled, fieldset%5Bdisabled%5D a.btn %7B pointer-events: none; %7D%0A.btn-default %7B color: rgb%2851, 51, 51%29; background-color: rgb%28255, 255, 255%29; border-color: rgb%28204, 204, 204%29; %7D%0A.btn-default.focus, .btn-default:focus %7B color: rgb%2851, 51, 51%29; background-color: rgb%28230, 230, 230%29; border-color: rgb%28140, 140, 140%29; %7D%0A.btn-default.disabled.focus, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default%5Bdisabled%5D.focus, .btn-default%5Bdisabled%5D:focus, .btn-default%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-default.focus, fieldset%5Bdisabled%5D .btn-default:focus, fieldset%5Bdisabled%5D .btn-default:hover %7B background-color: rgb%28255, 255, 255%29; border-color: rgb%28204, 204, 204%29; %7D%0A.btn-default .badge %7B color: rgb%28255, 255, 255%29; background-color: rgb%2851, 51, 51%29; %7D%0A.btn-primary %7B color: rgb%28255, 255, 255%29; background-color: rgb%2851, 122, 183%29; border-color: rgb%2846, 109, 164%29; %7D%0A.btn-primary.focus, .btn-primary:focus %7B color: rgb%28255, 255, 255%29; background-color: rgb%2840, 96, 144%29; border-color: rgb%2818, 43, 64%29; %7D%0A.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary%5Bdisabled%5D.focus, .btn-primary%5Bdisabled%5D:focus, .btn-primary%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-primary.focus, fieldset%5Bdisabled%5D .btn-primary:focus, fieldset%5Bdisabled%5D .btn-primary:hover %7B background-color: rgb%2851, 122, 183%29; border-color: rgb%2846, 109, 164%29; %7D%0A.btn-primary .badge %7B color: rgb%2851, 122, 183%29; background-color: rgb%28255, 255, 255%29; %7D%0A.btn-success %7B color: rgb%28255, 255, 255%29; background-color: rgb%2892, 184, 92%29; border-color: rgb%2876, 174, 76%29; %7D%0A.btn-success.focus, .btn-success:focus %7B color: rgb%28255, 255, 255%29; background-color: rgb%2868, 157, 68%29; border-color: rgb%2837, 86, 37%29; %7D%0A.btn-success.disabled.focus, .btn-success.disabled:focus, .btn-success.disabled:hover, .btn-success%5Bdisabled%5D.focus, .btn-success%5Bdisabled%5D:focus, .btn-success%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-success.focus, fieldset%5Bdisabled%5D .btn-success:focus, fieldset%5Bdisabled%5D .btn-success:hover %7B background-color: rgb%2892, 184, 92%29; border-color: rgb%2876, 174, 76%29; %7D%0A.btn-success .badge %7B color: rgb%2892, 184, 92%29; background-color: rgb%28255, 255, 255%29; %7D%0A.btn-info %7B color: rgb%28255, 255, 255%29; background-color: rgb%2891, 192, 222%29; border-color: rgb%2870, 184, 218%29; %7D%0A.btn-info.focus, .btn-info:focus %7B color: rgb%28255, 255, 255%29; background-color: rgb%2849, 176, 213%29; border-color: rgb%2827, 109, 133%29; %7D%0A.btn-info.disabled.focus, .btn-info.disabled:focus, .btn-info.disabled:hover, .btn-info%5Bdisabled%5D.focus, .btn-info%5Bdisabled%5D:focus, .btn-info%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-info.focus, fieldset%5Bdisabled%5D .btn-info:focus, fieldset%5Bdisabled%5D .btn-info:hover %7B background-color: rgb%2891, 192, 222%29; border-color: rgb%2870, 184, 218%29; %7D%0A.btn-info .badge %7B color: rgb%2891, 192, 222%29; background-color: rgb%28255, 255, 255%29; %7D%0A.btn-warning %7B color: rgb%28255, 255, 255%29; background-color: rgb%28240, 173, 78%29; border-color: rgb%28238, 162, 54%29; %7D%0A.btn-warning.focus, .btn-warning:focus %7B color: rgb%28255, 255, 255%29; background-color: rgb%28236, 151, 31%29; border-color: rgb%28152, 95, 13%29; %7D%0A.btn-warning.disabled.focus, .btn-warning.disabled:focus, .btn-warning.disabled:hover, .btn-warning%5Bdisabled%5D.focus, .btn-warning%5Bdisabled%5D:focus, .btn-warning%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-warning.focus, fieldset%5Bdisabled%5D .btn-warning:focus, fieldset%5Bdisabled%5D .btn-warning:hover %7B background-color: rgb%28240, 173, 78%29; border-color: rgb%28238, 162, 54%29; %7D%0A.btn-warning .badge %7B color: rgb%28240, 173, 78%29; background-color: rgb%28255, 255, 255%29; %7D%0A.btn-danger %7B color: rgb%28255, 255, 255%29; background-color: rgb%28217, 83, 79%29; border-color: rgb%28212, 63, 58%29; %7D%0A.btn-danger.focus, .btn-danger:focus %7B color: rgb%28255, 255, 255%29; background-color: rgb%28201, 48, 44%29; border-color: rgb%28118, 28, 25%29; %7D%0A.btn-danger.disabled.focus, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger%5Bdisabled%5D.focus, .btn-danger%5Bdisabled%5D:focus, .btn-danger%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-danger.focus, fieldset%5Bdisabled%5D .btn-danger:focus, fieldset%5Bdisabled%5D .btn-danger:hover %7B background-color: rgb%28217, 83, 79%29; border-color: rgb%28212, 63, 58%29; %7D%0A.btn-danger .badge %7B color: rgb%28217, 83, 79%29; background-color: rgb%28255, 255, 255%29; %7D%0A.btn-link %7B color: rgb%2851, 122, 183%29; font-weight: 400; border-radius: 0px; %7D%0A.btn-link, .btn-link.active, .btn-link:active, .btn-link%5Bdisabled%5D, fieldset%5Bdisabled%5D .btn-link %7B background-color: transparent; box-shadow: none; %7D%0A.btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover %7B border-color: transparent; %7D%0A.btn-link:focus, .btn-link:hover %7B color: rgb%2835, 82, 124%29; text-decoration: underline; background-color: transparent; %7D%0A.btn-link%5Bdisabled%5D:focus, .btn-link%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .btn-link:focus, fieldset%5Bdisabled%5D .btn-link:hover %7B color: rgb%28119, 119, 119%29; text-decoration: none; %7D%0A.btn-block %7B display: block; width: 100%25; %7D%0Ainput%5Btype='button'%5D.btn-block, input%5Btype='reset'%5D.btn-block, input%5Btype='submit'%5D.btn-block %7B width: 100%25; %7D%0A.fade %7B opacity: 0; transition: opacity 0.15s linear; %7D%0A.fade.in %7B opacity: 1; %7D%0A.collapse %7B display: none; %7D%0A.collapse.in %7B display: block; %7D%0Atr.collapse.in %7B display: table-row; %7D%0Atbody.collapse.in %7B display: table-row-group; %7D%0A.collapsing %7B position: relative; height: 0px; overflow: hidden; transition-property: height, visibility; transition-duration: 0.35s; transition-timing-function: ease; %7D%0A.caret %7B display: inline-block; width: 0px; height: 0px; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-right: 4px solid transparent; border-left: 4px solid transparent; %7D%0A.dropdown, .dropup %7B position: relative; %7D%0A.dropdown-toggle:focus %7B outline: 0px; %7D%0A.dropdown-menu %7B position: absolute; top: 100%25; left: 0px; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0px; margin: 2px 0px 0px; list-style: none; font-size: 14px; text-align: left; background-color: rgb%28255, 255, 255%29; border: 1px solid rgba%280, 0, 0, 0.15%29; border-radius: 4px; box-shadow: rgba%280, 0, 0, 0.176%29 0px 6px 12px; -webkit-background-clip: padding-box; background-clip: padding-box; %7D%0A.dropdown-menu.pull-right %7B right: 0px; left: auto; %7D%0A.dropdown-menu .divider %7B height: 1px; margin: 9px 0px; overflow: hidden; background-color: rgb%28229, 229, 229%29; %7D%0A.dropdown-menu-right %7B left: auto; right: 0px; %7D%0A.dropdown-menu-left %7B left: 0px; right: auto; %7D%0A.dropdown-header %7B display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857; color: rgb%28119, 119, 119%29; white-space: nowrap; %7D%0A.dropdown-backdrop %7B position: fixed; left: 0px; right: 0px; bottom: 0px; top: 0px; z-index: 990; %7D%0A.dropup .caret, .navbar-fixed-bottom .dropdown .caret %7B border-top: 0px; border-bottom: 4px dashed; content: ''; %7D%0A.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu %7B top: auto; bottom: 100%25; margin-bottom: 2px; %7D%0A.btn-group, .btn-group-vertical %7B position: relative; display: inline-block; vertical-align: middle; %7D%0A.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group %7B margin-left: -1px; %7D%0A.btn-toolbar %7B margin-left: -5px; %7D%0A.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group %7B float: left; %7D%0A.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle %7B outline: 0px; %7D%0A.btn-group.open .dropdown-toggle %7B box-shadow: rgba%280, 0, 0, 0.125%29 0px 3px 5px inset; %7D%0A.btn-group.open .dropdown-toggle.btn-link %7B box-shadow: none; %7D%0A.btn .caret %7B margin-left: 0px; %7D%0A.btn-lg .caret %7B border-width: 5px 5px 0px; %7D%0A.dropup .btn-lg .caret %7B border-width: 0px 5px 5px; %7D%0A.btn-group-justified, .input-group %7B display: table; border-collapse: separate; %7D%0A.btn-group-justified %7B width: 100%25; table-layout: fixed; %7D%0A.input-group %7B position: relative; %7D%0A.input-group%5Bclass*='col-'%5D %7B float: none; padding-left: 0px; padding-right: 0px; %7D%0A.input-group .form-control %7B position: relative; z-index: 2; float: left; width: 100%25; margin-bottom: 0px; %7D%0A.input-group .form-control:focus %7B z-index: 3; %7D%0A.input-group .form-control, .input-group-addon, .input-group-btn %7B display: table-cell; %7D%0A.input-group .form-control:not%28:first-child%29:not%28:last-child%29, .input-group-addon:not%28:first-child%29:not%28:last-child%29, .input-group-btn:not%28:first-child%29:not%28:last-child%29 %7B border-radius: 0px; %7D%0A.input-group-addon %7B white-space: nowrap; %7D%0A.input-group-addon, .input-group-btn %7B width: 1%25; vertical-align: middle; %7D%0A.input-group-addon %7B padding: 6px 12px; font-size: 14px; font-weight: 400; line-height: 1; color: rgb%2885, 85, 85%29; text-align: center; background-color: rgb%28238, 238, 238%29; border: 1px solid rgb%28204, 204, 204%29; border-radius: 4px; %7D%0A.input-group-addon.input-sm %7B padding: 5px 10px; font-size: 12px; border-radius: 3px; %7D%0A.input-group-addon.input-lg %7B padding: 10px 16px; font-size: 18px; border-radius: 6px; %7D%0A.input-group-addon input%5Btype='checkbox'%5D, .input-group-addon input%5Btype='radio'%5D %7B margin-top: 0px; %7D%0A.input-group-addon:first-child %7B border-right: 0px; %7D%0A.input-group-addon:last-child %7B border-left: 0px; %7D%0A.input-group-btn %7B font-size: 0px; white-space: nowrap; %7D%0A.nav %7B margin-bottom: 0px; padding-left: 0px; list-style: none; %7D%0A.nav .nav-divider %7B height: 1px; margin: 9px 0px; overflow: hidden; background-color: rgb%28229, 229, 229%29; %7D%0A.nav-tabs %7B border-bottom: 1px solid rgb%28221, 221, 221%29; %7D%0A.nav-tabs.nav-justified %7B width: 100%25; border-bottom: 0px; %7D%0A.nav-justified %7B width: 100%25; %7D%0A.nav-tabs-justified %7B border-bottom: 0px; %7D%0A.nav-tabs .dropdown-menu %7B margin-top: -1px; border-top-right-radius: 0px; border-top-left-radius: 0px; %7D%0A.navbar %7B position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; %7D%0A.navbar-collapse %7B overflow-x: visible; padding-right: 15px; padding-left: 15px; border-top: 1px solid transparent; box-shadow: rgba%28255, 255, 255, 0.1%29 0px 1px 0px inset; %7D%0A.navbar-collapse.in %7B overflow-y: auto; %7D%0A.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse %7B max-height: 340px; %7D%0A.navbar-static-top %7B z-index: 1000; border-width: 0px 0px 1px; %7D%0A.navbar-fixed-bottom, .navbar-fixed-top %7B position: fixed; right: 0px; left: 0px; z-index: 1030; %7D%0A.navbar-fixed-top %7B top: 0px; border-width: 0px 0px 1px; %7D%0A.navbar-fixed-bottom %7B bottom: 0px; margin-bottom: 0px; border-width: 1px 0px 0px; %7D%0A.navbar-brand %7B float: left; padding: 15px; font-size: 18px; line-height: 20px; height: 50px; %7D%0A.navbar-brand:focus, .navbar-brand:hover %7B text-decoration: none; %7D%0A.navbar-toggle %7B 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; %7D%0A.navbar-toggle:focus %7B outline: 0px; %7D%0A.navbar-toggle .icon-bar %7B display: block; width: 22px; height: 2px; border-radius: 1px; %7D%0A.navbar-toggle .icon-bar + .icon-bar %7B margin-top: 4px; %7D%0A.navbar-nav %7B margin: 7.5px -15px; %7D%0A.navbar-form %7B padding: 10px 15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; box-shadow: rgba%28255, 255, 255, 0.1%29 0px 1px 0px inset, rgba%28255, 255, 255, 0.1%29 0px 1px 0px; margin: 8px -15px; %7D%0A.navbar-btn %7B margin-top: 8px; margin-bottom: 8px; %7D%0A.navbar-btn.btn-sm %7B margin-top: 10px; margin-bottom: 10px; %7D%0A.navbar-btn.btn-xs %7B margin-top: 14px; margin-bottom: 14px; %7D%0A.navbar-text %7B margin-top: 15px; margin-bottom: 15px; %7D%0A.navbar-default %7B background-color: rgb%28248, 248, 248%29; border-color: rgb%28231, 231, 231%29; %7D%0A.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover %7B color: rgb%2894, 94, 94%29; background-color: transparent; %7D%0A.navbar-default .navbar-toggle %7B border-color: rgb%28221, 221, 221%29; %7D%0A.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover %7B background-color: rgb%28221, 221, 221%29; %7D%0A.navbar-default .navbar-toggle .icon-bar %7B background-color: rgb%28136, 136, 136%29; %7D%0A.navbar-default .navbar-collapse, .navbar-default .navbar-form %7B border-color: rgb%28231, 231, 231%29; %7D%0A.navbar-default .btn-link, .navbar-default .navbar-link %7B color: rgb%28119, 119, 119%29; %7D%0A.navbar-default .navbar-link:hover, a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading %7B color: rgb%2851, 51, 51%29; %7D%0A.navbar-default .btn-link:focus, .navbar-default .btn-link:hover %7B color: rgb%2851, 51, 51%29; %7D%0A.navbar-default .btn-link%5Bdisabled%5D:focus, .navbar-default .btn-link%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .navbar-default .btn-link:focus, fieldset%5Bdisabled%5D .navbar-default .btn-link:hover %7B color: rgb%28204, 204, 204%29; %7D%0A.navbar-inverse %7B background-color: rgb%2834, 34, 34%29; border-color: rgb%288, 8, 8%29; %7D%0A.navbar-inverse .navbar-toggle %7B border-color: rgb%2851, 51, 51%29; %7D%0A.navbar-inverse .navbar-toggle:focus, .navbar-inverse .navbar-toggle:hover %7B background-color: rgb%2851, 51, 51%29; %7D%0A.navbar-inverse .navbar-toggle .icon-bar %7B background-color: rgb%28255, 255, 255%29; %7D%0A.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form %7B border-color: rgb%2816, 16, 16%29; %7D%0A.navbar-inverse .btn-link, .navbar-inverse .navbar-link %7B color: rgb%28157, 157, 157%29; %7D%0A.navbar-inverse .navbar-link:hover %7B color: rgb%28255, 255, 255%29; %7D%0A.navbar-inverse .btn-link:focus, .navbar-inverse .btn-link:hover %7B color: rgb%28255, 255, 255%29; %7D%0A.navbar-inverse .btn-link%5Bdisabled%5D:focus, .navbar-inverse .btn-link%5Bdisabled%5D:hover, fieldset%5Bdisabled%5D .navbar-inverse .btn-link:focus, fieldset%5Bdisabled%5D .navbar-inverse .btn-link:hover %7B color: rgb%2868, 68, 68%29; %7D%0A.breadcrumb %7B padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: rgb%28245, 245, 245%29; border-radius: 4px; %7D%0A.pagination %7B padding-left: 0px; margin: 20px 0px; border-radius: 4px; %7D%0A.pager %7B padding-left: 0px; margin: 20px 0px; list-style: none; text-align: center; %7D%0A.label %7B display: inline; padding: 0.2em 0.6em 0.3em; font-size: 75%25; font-weight: 700; line-height: 1; color: rgb%28255, 255, 255%29; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25em; %7D%0Aa.badge:focus, a.badge:hover, a.label:focus, a.label:hover %7B color: rgb%28255, 255, 255%29; text-decoration: none; cursor: pointer; %7D%0A.label:empty %7B display: none; %7D%0A.btn .label %7B position: relative; top: -1px; %7D%0A.label-default %7B background-color: rgb%28119, 119, 119%29; %7D%0A.label-default%5Bhref%5D:focus, .label-default%5Bhref%5D:hover %7B background-color: rgb%2894, 94, 94%29; %7D%0A.label-primary %7B background-color: rgb%2851, 122, 183%29; %7D%0A.label-primary%5Bhref%5D:focus, .label-primary%5Bhref%5D:hover %7B background-color: rgb%2840, 96, 144%29; %7D%0A.label-success %7B background-color: rgb%2892, 184, 92%29; %7D%0A.label-success%5Bhref%5D:focus, .label-success%5Bhref%5D:hover %7B background-color: rgb%2868, 157, 68%29; %7D%0A.label-info %7B background-color: rgb%2891, 192, 222%29; %7D%0A.label-info%5Bhref%5D:focus, .label-info%5Bhref%5D:hover %7B background-color: rgb%2849, 176, 213%29; %7D%0A.label-warning %7B background-color: rgb%28240, 173, 78%29; %7D%0A.label-warning%5Bhref%5D:focus, .label-warning%5Bhref%5D:hover %7B background-color: rgb%28236, 151, 31%29; %7D%0A.label-danger %7B background-color: rgb%28217, 83, 79%29; %7D%0A.label-danger%5Bhref%5D:focus, .label-danger%5Bhref%5D:hover %7B background-color: rgb%28201, 48, 44%29; %7D%0A.badge %7B display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: 700; color: rgb%28255, 255, 255%29; line-height: 1; vertical-align: middle; white-space: nowrap; text-align: center; background-color: rgb%28119, 119, 119%29; border-radius: 10px; %7D%0A.badge:empty %7B display: none; %7D%0A.btn .badge %7B position: relative; top: -1px; %7D%0A.jumbotron %7B padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; background-color: rgb%28238, 238, 238%29; %7D%0A.jumbotron, .jumbotron .h1, .jumbotron h1, a.list-group-item-danger .list-group-item-heading, a.list-group-item-info .list-group-item-heading, a.list-group-item-success .list-group-item-heading, a.list-group-item-warning .list-group-item-heading, button.list-group-item-danger .list-group-item-heading, button.list-group-item-info .list-group-item-heading, button.list-group-item-success .list-group-item-heading, button.list-group-item-warning .list-group-item-heading %7B color: inherit; %7D%0A.jumbotron p %7B margin-bottom: 15px; font-size: 21px; font-weight: 200; %7D%0A.container .jumbotron, .container-fluid .jumbotron %7B border-radius: 6px; padding-left: 15px; padding-right: 15px; %7D%0A.jumbotron .container %7B max-width: 100%25; %7D%0A.thumbnail %7B display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857; background-color: rgb%28255, 255, 255%29; border: 1px solid rgb%28221, 221, 221%29; border-radius: 4px; transition: border 0.2s ease-in-out; %7D%0Aa.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover %7B border-color: rgb%2851, 122, 183%29; %7D%0A.thumbnail .caption %7B padding: 9px; color: rgb%2851, 51, 51%29; %7D%0A.alert %7B padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; %7D%0A.alert h4 %7B margin-top: 0px; color: inherit; %7D%0A.alert .alert-link %7B font-weight: 700; %7D%0A.alert-dismissable, .alert-dismissible %7B padding-right: 35px; %7D%0A.alert-dismissable .close, .alert-dismissible .close %7B position: relative; top: -2px; right: -21px; color: inherit; %7D%0A.alert-success %7B background-color: rgb%28223, 240, 216%29; border-color: rgb%28214, 233, 198%29; color: rgb%2860, 118, 61%29; %7D%0A.alert-success hr %7B border-top-color: rgb%28201, 226, 179%29; %7D%0A.alert-success .alert-link %7B color: rgb%2843, 84, 44%29; %7D%0A.alert-info %7B background-color: rgb%28217, 237, 247%29; border-color: rgb%28188, 232, 241%29; color: rgb%2849, 112, 143%29; %7D%0A.alert-info hr %7B border-top-color: rgb%28166, 225, 236%29; %7D%0A.alert-info .alert-link %7B color: rgb%2836, 82, 105%29; %7D%0A.alert-warning %7B background-color: rgb%28252, 248, 227%29; border-color: rgb%28250, 235, 204%29; color: rgb%28138, 109, 59%29; %7D%0A.alert-warning hr %7B border-top-color: rgb%28247, 225, 181%29; %7D%0A.alert-warning .alert-link %7B color: rgb%28102, 81, 44%29; %7D%0A.alert-danger %7B background-color: rgb%28242, 222, 222%29; border-color: rgb%28235, 204, 209%29; color: rgb%28169, 68, 66%29; %7D%0A.alert-danger hr %7B border-top-color: rgb%28228, 185, 192%29; %7D%0A.alert-danger .alert-link %7B color: rgb%28132, 53, 52%29; %7D%0A.progress %7B overflow: hidden; height: 20px; margin-bottom: 20px; background-color: rgb%28245, 245, 245%29; border-radius: 4px; box-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 2px inset; %7D%0A.progress-bar %7B float: left; width: 0%25; height: 100%25; font-size: 12px; line-height: 20px; color: rgb%28255, 255, 255%29; text-align: center; background-color: rgb%2851, 122, 183%29; box-shadow: rgba%280, 0, 0, 0.15%29 0px -1px 0px inset; transition: width 0.6s ease; %7D%0A.progress-bar-striped, .progress-striped .progress-bar %7B background-image: linear-gradient%2845deg, rgba%28255, 255, 255, 0.15%29 25%25, transparent 25%25, transparent 50%25, rgba%28255, 255, 255, 0.15%29 50%25, rgba%28255, 255, 255, 0.15%29 75%25, transparent 75%25, transparent%29; background-size: 40px 40px; %7D%0A.progress-bar.active, .progress.active .progress-bar %7B animation: progress-bar-stripes 2s linear infinite; %7D%0A.progress-bar-success %7B background-color: rgb%2892, 184, 92%29; %7D%0A.progress-striped .progress-bar-danger, .progress-striped .progress-bar-info, .progress-striped .progress-bar-success, .progress-striped .progress-bar-warning %7B background-image: linear-gradient%2845deg, rgba%28255, 255, 255, 0.15%29 25%25, transparent 25%25, transparent 50%25, rgba%28255, 255, 255, 0.15%29 50%25, rgba%28255, 255, 255, 0.15%29 75%25, transparent 75%25, transparent%29; %7D%0A.progress-bar-info %7B background-color: rgb%2891, 192, 222%29; %7D%0A.progress-bar-warning %7B background-color: rgb%28240, 173, 78%29; %7D%0A.progress-bar-danger %7B background-color: rgb%28217, 83, 79%29; %7D%0A.media %7B margin-top: 15px; %7D%0A.media:first-child %7B margin-top: 0px; %7D%0A.media, .media-body %7B zoom: 1; overflow: hidden; %7D%0A.media-body %7B width: 10000px; %7D%0A.media-object %7B display: block; %7D%0A.media-object.img-thumbnail %7B max-width: none; %7D%0A.media-body, .media-left, .media-right %7B display: table-cell; vertical-align: top; %7D%0A.media-middle %7B vertical-align: middle; %7D%0A.media-bottom %7B vertical-align: bottom; %7D%0A.media-heading %7B margin-top: 0px; margin-bottom: 5px; %7D%0A.media-list %7B padding-left: 0px; list-style: none; %7D%0A.list-group %7B margin-bottom: 20px; padding-left: 0px; %7D%0A.list-group-item %7B position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: rgb%28255, 255, 255%29; border: 1px solid rgb%28221, 221, 221%29; %7D%0A.list-group-item:first-child %7B border-top-right-radius: 4px; border-top-left-radius: 4px; %7D%0A.list-group-item:last-child %7B margin-bottom: 0px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; %7D%0Aa.list-group-item, button.list-group-item %7B color: rgb%2885, 85, 85%29; %7D%0Aa.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover %7B text-decoration: none; color: rgb%2885, 85, 85%29; background-color: rgb%28245, 245, 245%29; %7D%0Abutton.list-group-item %7B width: 100%25; text-align: left; %7D%0A.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover %7B background-color: rgb%28238, 238, 238%29; color: rgb%28119, 119, 119%29; cursor: not-allowed; %7D%0A.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading %7B color: inherit; %7D%0A.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text %7B color: rgb%28119, 119, 119%29; %7D%0A.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover %7B z-index: 2; color: rgb%28255, 255, 255%29; background-color: rgb%2851, 122, 183%29; border-color: rgb%2851, 122, 183%29; %7D%0A.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text %7B color: rgb%28199, 221, 239%29; %7D%0A.list-group-item-success %7B color: rgb%2860, 118, 61%29; background-color: rgb%28223, 240, 216%29; %7D%0Aa.list-group-item-success, button.list-group-item-success %7B color: rgb%2860, 118, 61%29; %7D%0Aa.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover %7B color: rgb%2860, 118, 61%29; background-color: rgb%28208, 233, 198%29; %7D%0Aa.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover, button.list-group-item-success.active, button.list-group-item-success.active:focus, button.list-group-item-success.active:hover %7B color: rgb%28255, 255, 255%29; background-color: rgb%2860, 118, 61%29; border-color: rgb%2860, 118, 61%29; %7D%0A.list-group-item-info %7B color: rgb%2849, 112, 143%29; background-color: rgb%28217, 237, 247%29; %7D%0Aa.list-group-item-info, button.list-group-item-info %7B color: rgb%2849, 112, 143%29; %7D%0Aa.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover %7B color: rgb%2849, 112, 143%29; background-color: rgb%28196, 227, 243%29; %7D%0Aa.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover, button.list-group-item-info.active, button.list-group-item-info.active:focus, button.list-group-item-info.active:hover %7B color: rgb%28255, 255, 255%29; background-color: rgb%2849, 112, 143%29; border-color: rgb%2849, 112, 143%29; %7D%0A.list-group-item-warning %7B color: rgb%28138, 109, 59%29; background-color: rgb%28252, 248, 227%29; %7D%0Aa.list-group-item-warning, button.list-group-item-warning %7B color: rgb%28138, 109, 59%29; %7D%0Aa.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover %7B color: rgb%28138, 109, 59%29; background-color: rgb%28250, 242, 204%29; %7D%0Aa.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover, button.list-group-item-warning.active, button.list-group-item-warning.active:focus, button.list-group-item-warning.active:hover %7B color: rgb%28255, 255, 255%29; background-color: rgb%28138, 109, 59%29; border-color: rgb%28138, 109, 59%29; %7D%0A.list-group-item-danger %7B color: rgb%28169, 68, 66%29; background-color: rgb%28242, 222, 222%29; %7D%0Aa.list-group-item-danger, button.list-group-item-danger %7B color: rgb%28169, 68, 66%29; %7D%0Aa.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover %7B color: rgb%28169, 68, 66%29; background-color: rgb%28235, 204, 204%29; %7D%0Aa.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover, button.list-group-item-danger.active, button.list-group-item-danger.active:focus, button.list-group-item-danger.active:hover %7B color: rgb%28255, 255, 255%29; background-color: rgb%28169, 68, 66%29; border-color: rgb%28169, 68, 66%29; %7D%0A.list-group-item-heading %7B margin-top: 0px; margin-bottom: 5px; %7D%0A.list-group-item-text %7B margin-bottom: 0px; line-height: 1.3; %7D%0A.panel %7B margin-bottom: 20px; background-color: rgb%28255, 255, 255%29; border: 1px solid transparent; border-radius: 4px; box-shadow: rgba%280, 0, 0, 0.05%29 0px 1px 1px; %7D%0A.panel-body %7B padding: 15px; %7D%0A.panel-heading %7B padding: 10px 15px; border-bottom: 1px solid transparent; border-top-right-radius: 3px; border-top-left-radius: 3px; %7D%0A.panel-title %7B margin-top: 0px; margin-bottom: 0px; font-size: 16px; %7D%0A.panel-footer %7B padding: 10px 15px; background-color: rgb%28245, 245, 245%29; border-top: 1px solid rgb%28221, 221, 221%29; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; %7D%0A.panel-heading + .list-group .list-group-item:first-child %7B border-top-width: 0px; %7D%0A.list-group + .panel-footer %7B border-top-width: 0px; %7D%0A.panel-group %7B margin-bottom: 20px; %7D%0A.panel-group .panel %7B margin-bottom: 0px; border-radius: 4px; %7D%0A.panel-group .panel + .panel %7B margin-top: 5px; %7D%0A.panel-group .panel-heading %7B border-bottom: 0px; %7D%0A.panel-group .panel-footer %7B border-top: 0px; %7D%0A.panel-group .panel-footer + .panel-collapse .panel-body %7B border-bottom: 1px solid rgb%28221, 221, 221%29; %7D%0A.panel-default, .well blockquote %7B border-color: rgb%28221, 221, 221%29; %7D%0A.panel-primary %7B border-color: rgb%2851, 122, 183%29; %7D%0A.panel-success %7B border-color: rgb%28214, 233, 198%29; %7D%0A.panel-info %7B border-color: rgb%28188, 232, 241%29; %7D%0A.panel-warning %7B border-color: rgb%28250, 235, 204%29; %7D%0A.panel-danger %7B border-color: rgb%28235, 204, 209%29; %7D%0A.embed-responsive %7B position: relative; display: block; height: 0px; padding: 0px; overflow: hidden; %7D%0A.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video %7B position: absolute; top: 0px; left: 0px; bottom: 0px; height: 100%25; width: 100%25; border: 0px; %7D%0A.embed-responsive-16by9 %7B padding-bottom: 56.25%25; %7D%0A.embed-responsive-4by3 %7B padding-bottom: 75%25; %7D%0A.well %7B min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: rgb%28245, 245, 245%29; border: 1px solid rgb%28227, 227, 227%29; border-radius: 4px; box-shadow: rgba%280, 0, 0, 0.05%29 0px 1px 1px inset; %7D%0A.well blockquote %7B border-color: rgba%280, 0, 0, 0.15%29; %7D%0A.well-lg %7B padding: 24px; border-radius: 6px; %7D%0A.well-sm %7B padding: 9px; border-radius: 3px; %7D%0A.close %7B float: right; font-size: 21px; font-weight: 700; line-height: 1; color: rgb%280, 0, 0%29; text-shadow: rgb%28255, 255, 255%29 0px 1px 0px; opacity: 0.2; %7D%0A.close:focus, .close:hover %7B color: rgb%280, 0, 0%29; text-decoration: none; cursor: pointer; opacity: 0.5; %7D%0Abutton.close %7B padding: 0px; cursor: pointer; background: 0px 0px; border: 0px; -webkit-appearance: none; %7D%0A.modal, .modal-open %7B overflow: hidden; %7D%0A.modal %7B display: none; position: fixed; top: 0px; right: 0px; bottom: 0px; left: 0px; z-index: 1050; outline: 0px; %7D%0A.modal.fade .modal-dialog %7B transform: translate%280px, -25%25%29; transition: transform 0.3s ease-out; %7D%0A.modal.in .modal-dialog %7B transform: translate%280px, 0px%29; %7D%0A.modal-open .modal %7B overflow-x: hidden; overflow-y: auto; %7D%0A.modal-dialog %7B position: relative; width: auto; margin: 10px; %7D%0A.modal-content %7B position: relative; background-color: rgb%28255, 255, 255%29; border: 1px solid rgba%280, 0, 0, 0.2%29; border-radius: 6px; box-shadow: rgba%280, 0, 0, 0.5%29 0px 3px 9px; -webkit-background-clip: padding-box; background-clip: padding-box; outline: 0px; %7D%0A.modal-backdrop %7B position: fixed; top: 0px; right: 0px; bottom: 0px; left: 0px; z-index: 1040; background-color: rgb%280, 0, 0%29; %7D%0A.modal-backdrop.fade %7B opacity: 0; %7D%0A.modal-backdrop.in %7B opacity: 0.5; %7D%0A.modal-header %7B padding: 15px; border-bottom: 1px solid rgb%28229, 229, 229%29; %7D%0A.modal-header .close %7B margin-top: -2px; %7D%0A.modal-title %7B margin: 0px; line-height: 1.42857; %7D%0A.modal-body %7B position: relative; padding: 15px; %7D%0A.modal-footer %7B padding: 15px; text-align: right; border-top: 1px solid rgb%28229, 229, 229%29; %7D%0A.modal-footer .btn + .btn %7B margin-left: 5px; margin-bottom: 0px; %7D%0A.modal-footer .btn-group .btn + .btn %7B margin-left: -1px; %7D%0A.modal-footer .btn-block + .btn-block %7B margin-left: 0px; %7D%0A.modal-scrollbar-measure %7B position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; %7D%0A.tooltip %7B position: absolute; z-index: 1070; display: block; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; letter-spacing: normal; line-break: auto; line-height: 1.42857; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; white-space: normal; word-break: normal; word-spacing: normal; word-wrap: normal; font-size: 12px; opacity: 0; %7D%0A.tooltip.in %7B opacity: 0.9; %7D%0A.tooltip.top %7B margin-top: -3px; padding: 5px 0px; %7D%0A.tooltip.right %7B margin-left: 3px; padding: 0px 5px; %7D%0A.tooltip.bottom %7B margin-top: 3px; padding: 5px 0px; %7D%0A.tooltip.left %7B margin-left: -3px; padding: 0px 5px; %7D%0A.tooltip-inner %7B max-width: 200px; padding: 3px 8px; color: rgb%28255, 255, 255%29; text-align: center; background-color: rgb%280, 0, 0%29; border-radius: 4px; %7D%0A.tooltip-arrow %7B position: absolute; width: 0px; height: 0px; border-color: transparent; border-style: solid; %7D%0A.tooltip.top .tooltip-arrow %7B bottom: 0px; left: 50%25; margin-left: -5px; border-width: 5px 5px 0px; border-top-color: rgb%280, 0, 0%29; %7D%0A.tooltip.top-left .tooltip-arrow, .tooltip.top-right .tooltip-arrow %7B bottom: 0px; margin-bottom: -5px; border-width: 5px 5px 0px; border-top-color: rgb%280, 0, 0%29; %7D%0A.tooltip.top-left .tooltip-arrow %7B right: 5px; %7D%0A.tooltip.top-right .tooltip-arrow %7B left: 5px; %7D%0A.tooltip.right .tooltip-arrow %7B top: 50%25; left: 0px; margin-top: -5px; border-width: 5px 5px 5px 0px; border-right-color: rgb%280, 0, 0%29; %7D%0A.tooltip.left .tooltip-arrow %7B top: 50%25; right: 0px; margin-top: -5px; border-width: 5px 0px 5px 5px; border-left-color: rgb%280, 0, 0%29; %7D%0A.tooltip.bottom .tooltip-arrow %7B top: 0px; left: 50%25; margin-left: -5px; border-width: 0px 5px 5px; border-bottom-color: rgb%280, 0, 0%29; %7D%0A.tooltip.bottom-left .tooltip-arrow %7B top: 0px; right: 5px; margin-top: -5px; border-width: 0px 5px 5px; border-bottom-color: rgb%280, 0, 0%29; %7D%0A.tooltip.bottom-right .tooltip-arrow %7B top: 0px; left: 5px; margin-top: -5px; border-width: 0px 5px 5px; border-bottom-color: rgb%280, 0, 0%29; %7D%0A.popover %7B position: absolute; top: 0px; left: 0px; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 400; letter-spacing: normal; line-break: auto; line-height: 1.42857; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; white-space: normal; word-break: normal; word-spacing: normal; word-wrap: normal; font-size: 14px; background-color: rgb%28255, 255, 255%29; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid rgba%280, 0, 0, 0.2%29; border-radius: 6px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 5px 10px; %7D%0A.popover.top %7B margin-top: -10px; %7D%0A.popover.right %7B margin-left: 10px; %7D%0A.popover.bottom %7B margin-top: 10px; %7D%0A.popover.left %7B margin-left: -10px; %7D%0A.popover-title %7B margin: 0px; padding: 8px 14px; font-size: 14px; background-color: rgb%28247, 247, 247%29; border-bottom: 1px solid rgb%28235, 235, 235%29; border-radius: 5px 5px 0px 0px; %7D%0A.popover-content %7B padding: 9px 14px; %7D%0A.carousel, .carousel-inner %7B position: relative; %7D%0A.carousel-inner %7B overflow: hidden; width: 100%25; %7D%0A.carousel-control %7B left: 0px; bottom: 0px; width: 15%25; opacity: 0.5; font-size: 20px; color: rgb%28255, 255, 255%29; text-align: center; text-shadow: rgba%280, 0, 0, 0.6%29 0px 1px 2px; background-color: rgba%280, 0, 0, 0%29; %7D%0A.carousel-control.left %7B background-image: linear-gradient%28to right, rgba%280, 0, 0, 0.5%29 0px, rgba%280, 0, 0, 0%29 100%25%29; background-repeat: repeat-x; %7D%0A.carousel-control.right %7B left: auto; right: 0px; background-image: linear-gradient%28to right, rgba%280, 0, 0, 0%29 0px, rgba%280, 0, 0, 0.5%29 100%25%29; background-repeat: repeat-x; %7D%0A.carousel-control:focus, .carousel-control:hover %7B outline: 0px; color: rgb%28255, 255, 255%29; text-decoration: none; opacity: 0.9; %7D%0A.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev %7B position: absolute; top: 50%25; margin-top: -10px; z-index: 5; display: inline-block; %7D%0A.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev %7B left: 50%25; margin-left: -10px; %7D%0A.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next %7B right: 50%25; margin-right: -10px; %7D%0A.carousel-control .icon-next, .carousel-control .icon-prev %7B width: 20px; height: 20px; line-height: 1; font-family: serif; %7D%0A.carousel-control .icon-prev::before %7B content: '‹'; %7D%0A.carousel-control .icon-next::before %7B content: '›'; %7D%0A.carousel-indicators %7B position: absolute; bottom: 10px; left: 50%25; z-index: 15; width: 60%25; margin-left: -30%25; padding-left: 0px; list-style: none; text-align: center; %7D%0A.carousel-indicators li %7B display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; border: 1px solid rgb%28255, 255, 255%29; border-radius: 10px; cursor: pointer; background-color: rgba%280, 0, 0, 0%29; %7D%0A.carousel-indicators .active %7B margin: 0px; width: 12px; height: 12px; background-color: rgb%28255, 255, 255%29; %7D%0A.carousel-caption %7B position: absolute; left: 15%25; right: 15%25; bottom: 20px; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: rgb%28255, 255, 255%29; text-align: center; text-shadow: rgba%280, 0, 0, 0.6%29 0px 1px 2px; %7D%0A.carousel-caption .btn %7B text-shadow: none; %7D%0A.center-block %7B display: block; margin-left: auto; margin-right: auto; %7D%0A.pull-right %7B float: right !important; %7D%0A.pull-left %7B float: left !important; %7D%0A.hide %7B display: none !important; %7D%0A.show %7B display: block !important; %7D%0A.invisible %7B visibility: hidden; %7D%0A.text-hide %7B font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 0px; line-height: 0; font-family: a; color: transparent; text-shadow: none; background-color: transparent; border: 0px; %7D%0A.hidden %7B display: none !important; %7D%0A.affix %7B position: fixed; %7D%0A.visible-lg, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block %7B display: none !important; %7D%0A.visible-print %7B display: none !important; %7D%0A.visible-print-block %7B display: none !important; %7D%0A.visible-print-inline %7B display: none !important; %7D%0A.visible-print-inline-block %7B display: none !important; %7D%0A.fa %7B display: inline-block; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; line-height: 1; font-family: FontAwesome; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; %7D%0A.fa-lg %7B font-size: 1.33333em; line-height: 0.75em; vertical-align: -15%25; %7D%0A.fa-2x %7B font-size: 2em; %7D%0A.fa-3x %7B font-size: 3em; %7D%0A.fa-4x %7B font-size: 4em; %7D%0A.fa-5x %7B font-size: 5em; %7D%0A.fa-fw %7B width: 1.28571em; text-align: center; %7D%0A.fa-ul %7B padding-left: 0px; margin-left: 2.14286em; list-style-type: none; %7D%0A.fa-li %7B position: absolute; left: -2.14286em; width: 2.14286em; top: 0.142857em; text-align: center; %7D%0A.fa-li.fa-lg %7B left: -1.85714em; %7D%0A.fa-border %7B padding: 0.2em 0.25em 0.15em; border: 0.08em solid rgb%28238, 238, 238%29; border-radius: 0.1em; %7D%0A.fa-pull-left %7B float: left; %7D%0A.fa-pull-right, .pull-right %7B float: right; %7D%0A.fa.fa-pull-left %7B margin-right: 0.3em; %7D%0A.fa.fa-pull-right %7B margin-left: 0.3em; %7D%0A.pull-left %7B float: left; %7D%0A.fa.pull-left %7B margin-right: 0.3em; %7D%0A.fa.pull-right %7B margin-left: 0.3em; %7D%0A.fa-spin %7B animation: fa-spin 2s linear infinite; %7D%0A.fa-pulse %7B animation: fa-spin 1s steps%288, end%29 infinite; %7D%0A.fa-rotate-90 %7B transform: rotate%2890deg%29; %7D%0A.fa-rotate-180 %7B transform: rotate%28180deg%29; %7D%0A.fa-rotate-270 %7B transform: rotate%28270deg%29; %7D%0A.fa-flip-horizontal %7B transform: scale%28-1, 1%29; %7D%0A.fa-flip-vertical %7B transform: scale%281, -1%29; %7D%0A:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 %7B filter: none; %7D%0A.fa-stack %7B position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; %7D%0A.fa-stack-1x, .fa-stack-2x %7B position: absolute; left: 0px; width: 100%25; text-align: center; %7D%0A.fa-stack-1x %7B line-height: inherit; %7D%0A.fa-stack-2x %7B font-size: 2em; %7D%0A.fa-inverse %7B color: rgb%28255, 255, 255%29; %7D%0A.fa-glass::before %7B content: ''; %7D%0A.fa-music::before %7B content: ''; %7D%0A.fa-search::before %7B content: ''; %7D%0A.fa-envelope-o::before %7B content: ''; %7D%0A.fa-heart::before %7B content: ''; %7D%0A.fa-star::before %7B content: ''; %7D%0A.fa-star-o::before %7B content: ''; %7D%0A.fa-user::before %7B content: ''; %7D%0A.fa-film::before %7B content: ''; %7D%0A.fa-th-large::before %7B content: ''; %7D%0A.fa-th::before %7B content: ''; %7D%0A.fa-th-list::before %7B content: ''; %7D%0A.fa-check::before %7B content: ''; %7D%0A.fa-close::before, .fa-remove::before, .fa-times::before %7B content: ''; %7D%0A.fa-search-plus::before %7B content: ''; %7D%0A.fa-search-minus::before %7B content: ''; %7D%0A.fa-power-off::before %7B content: ''; %7D%0A.fa-signal::before %7B content: ''; %7D%0A.fa-cog::before, .fa-gear::before %7B content: ''; %7D%0A.fa-trash-o::before %7B content: ''; %7D%0A.fa-home::before %7B content: ''; %7D%0A.fa-file-o::before %7B content: ''; %7D%0A.fa-clock-o::before %7B content: ''; %7D%0A.fa-road::before %7B content: ''; %7D%0A.fa-download::before %7B content: ''; %7D%0A.fa-arrow-circle-o-down::before %7B content: ''; %7D%0A.fa-arrow-circle-o-up::before %7B content: ''; %7D%0A.fa-inbox::before %7B content: ''; %7D%0A.fa-play-circle-o::before %7B content: ''; %7D%0A.fa-repeat::before, .fa-rotate-right::before %7B content: ''; %7D%0A.fa-refresh::before %7B content: ''; %7D%0A.fa-list-alt::before %7B content: ''; %7D%0A.fa-lock::before %7B content: ''; %7D%0A.fa-flag::before %7B content: ''; %7D%0A.fa-headphones::before %7B content: ''; %7D%0A.fa-volume-off::before %7B content: ''; %7D%0A.fa-volume-down::before %7B content: ''; %7D%0A.fa-volume-up::before %7B content: ''; %7D%0A.fa-qrcode::before %7B content: ''; %7D%0A.fa-barcode::before %7B content: ''; %7D%0A.fa-tag::before %7B content: ''; %7D%0A.fa-tags::before %7B content: ''; %7D%0A.fa-book::before %7B content: ''; %7D%0A.fa-bookmark::before %7B content: ''; %7D%0A.fa-print::before %7B content: ''; %7D%0A.fa-camera::before %7B content: ''; %7D%0A.fa-font::before %7B content: ''; %7D%0A.fa-bold::before %7B content: ''; %7D%0A.fa-italic::before %7B content: ''; %7D%0A.fa-text-height::before %7B content: ''; %7D%0A.fa-text-width::before %7B content: ''; %7D%0A.fa-align-left::before %7B content: ''; %7D%0A.fa-align-center::before %7B content: ''; %7D%0A.fa-align-right::before %7B content: ''; %7D%0A.fa-align-justify::before %7B content: ''; %7D%0A.fa-list::before %7B content: ''; %7D%0A.fa-dedent::before, .fa-outdent::before %7B content: ''; %7D%0A.fa-indent::before %7B content: ''; %7D%0A.fa-video-camera::before %7B content: ''; %7D%0A.fa-image::before, .fa-photo::before, .fa-picture-o::before %7B content: ''; %7D%0A.fa-pencil::before %7B content: ''; %7D%0A.fa-map-marker::before %7B content: ''; %7D%0A.fa-adjust::before %7B content: ''; %7D%0A.fa-tint::before %7B content: ''; %7D%0A.fa-edit::before, .fa-pencil-square-o::before %7B content: ''; %7D%0A.fa-share-square-o::before %7B content: ''; %7D%0A.fa-check-square-o::before %7B content: ''; %7D%0A.fa-arrows::before %7B content: ''; %7D%0A.fa-step-backward::before %7B content: ''; %7D%0A.fa-fast-backward::before %7B content: ''; %7D%0A.fa-backward::before %7B content: ''; %7D%0A.fa-play::before %7B content: ''; %7D%0A.fa-pause::before %7B content: ''; %7D%0A.fa-stop::before %7B content: ''; %7D%0A.fa-forward::before %7B content: ''; %7D%0A.fa-fast-forward::before %7B content: ''; %7D%0A.fa-step-forward::before %7B content: ''; %7D%0A.fa-eject::before %7B content: ''; %7D%0A.fa-chevron-left::before %7B content: ''; %7D%0A.fa-chevron-right::before %7B content: ''; %7D%0A.fa-plus-circle::before %7B content: ''; %7D%0A.fa-minus-circle::before %7B content: ''; %7D%0A.fa-times-circle::before %7B content: ''; %7D%0A.fa-check-circle::before %7B content: ''; %7D%0A.fa-question-circle::before %7B content: ''; %7D%0A.fa-info-circle::before %7B content: ''; %7D%0A.fa-crosshairs::before %7B content: ''; %7D%0A.fa-times-circle-o::before %7B content: ''; %7D%0A.fa-check-circle-o::before %7B content: ''; %7D%0A.fa-ban::before %7B content: ''; %7D%0A.fa-arrow-left::before %7B content: ''; %7D%0A.fa-arrow-right::before %7B content: ''; %7D%0A.fa-arrow-up::before %7B content: ''; %7D%0A.fa-arrow-down::before %7B content: ''; %7D%0A.fa-mail-forward::before, .fa-share::before %7B content: ''; %7D%0A.fa-expand::before %7B content: ''; %7D%0A.fa-compress::before %7B content: ''; %7D%0A.fa-plus::before %7B content: ''; %7D%0A.fa-minus::before %7B content: ''; %7D%0A.fa-asterisk::before %7B content: ''; %7D%0A.fa-exclamation-circle::before %7B content: ''; %7D%0A.fa-gift::before %7B content: ''; %7D%0A.fa-leaf::before %7B content: ''; %7D%0A.fa-fire::before %7B content: ''; %7D%0A.fa-eye::before %7B content: ''; %7D%0A.fa-eye-slash::before %7B content: ''; %7D%0A.fa-exclamation-triangle::before, .fa-warning::before %7B content: ''; %7D%0A.fa-plane::before %7B content: ''; %7D%0A.fa-calendar::before %7B content: ''; %7D%0A.fa-random::before %7B content: ''; %7D%0A.fa-comment::before %7B content: ''; %7D%0A.fa-magnet::before %7B content: ''; %7D%0A.fa-chevron-up::before %7B content: ''; %7D%0A.fa-chevron-down::before %7B content: ''; %7D%0A.fa-retweet::before %7B content: ''; %7D%0A.fa-shopping-cart::before %7B content: ''; %7D%0A.fa-folder::before %7B content: ''; %7D%0A.fa-folder-open::before %7B content: ''; %7D%0A.fa-arrows-v::before %7B content: ''; %7D%0A.fa-arrows-h::before %7B content: ''; %7D%0A.fa-bar-chart-o::before, .fa-bar-chart::before %7B content: ''; %7D%0A.fa-twitter-square::before %7B content: ''; %7D%0A.fa-facebook-square::before %7B content: ''; %7D%0A.fa-camera-retro::before %7B content: ''; %7D%0A.fa-key::before %7B content: ''; %7D%0A.fa-cogs::before, .fa-gears::before %7B content: ''; %7D%0A.fa-comments::before %7B content: ''; %7D%0A.fa-thumbs-o-up::before %7B content: ''; %7D%0A.fa-thumbs-o-down::before %7B content: ''; %7D%0A.fa-star-half::before %7B content: ''; %7D%0A.fa-heart-o::before %7B content: ''; %7D%0A.fa-sign-out::before %7B content: ''; %7D%0A.fa-linkedin-square::before %7B content: ''; %7D%0A.fa-thumb-tack::before %7B content: ''; %7D%0A.fa-external-link::before %7B content: ''; %7D%0A.fa-sign-in::before %7B content: ''; %7D%0A.fa-trophy::before %7B content: ''; %7D%0A.fa-github-square::before %7B content: ''; %7D%0A.fa-upload::before %7B content: ''; %7D%0A.fa-lemon-o::before %7B content: ''; %7D%0A.fa-phone::before %7B content: ''; %7D%0A.fa-square-o::before %7B content: ''; %7D%0A.fa-bookmark-o::before %7B content: ''; %7D%0A.fa-phone-square::before %7B content: ''; %7D%0A.fa-twitter::before %7B content: ''; %7D%0A.fa-facebook-f::before, .fa-facebook::before %7B content: ''; %7D%0A.fa-github::before %7B content: ''; %7D%0A.fa-unlock::before %7B content: ''; %7D%0A.fa-credit-card::before %7B content: ''; %7D%0A.fa-feed::before, .fa-rss::before %7B content: ''; %7D%0A.fa-hdd-o::before %7B content: ''; %7D%0A.fa-bullhorn::before %7B content: ''; %7D%0A.fa-bell::before %7B content: ''; %7D%0A.fa-certificate::before %7B content: ''; %7D%0A.fa-hand-o-right::before %7B content: ''; %7D%0A.fa-hand-o-left::before %7B content: ''; %7D%0A.fa-hand-o-up::before %7B content: ''; %7D%0A.fa-hand-o-down::before %7B content: ''; %7D%0A.fa-arrow-circle-left::before %7B content: ''; %7D%0A.fa-arrow-circle-right::before %7B content: ''; %7D%0A.fa-arrow-circle-up::before %7B content: ''; %7D%0A.fa-arrow-circle-down::before %7B content: ''; %7D%0A.fa-globe::before %7B content: ''; %7D%0A.fa-wrench::before %7B content: ''; %7D%0A.fa-tasks::before %7B content: ''; %7D%0A.fa-filter::before %7B content: ''; %7D%0A.fa-briefcase::before %7B content: ''; %7D%0A.fa-arrows-alt::before %7B content: ''; %7D%0A.fa-group::before, .fa-users::before %7B content: ''; %7D%0A.fa-chain::before, .fa-link::before %7B content: ''; %7D%0A.fa-cloud::before %7B content: ''; %7D%0A.fa-flask::before %7B content: ''; %7D%0A.fa-cut::before, .fa-scissors::before %7B content: ''; %7D%0A.fa-copy::before, .fa-files-o::before %7B content: ''; %7D%0A.fa-paperclip::before %7B content: ''; %7D%0A.fa-floppy-o::before, .fa-save::before %7B content: ''; %7D%0A.fa-square::before %7B content: ''; %7D%0A.fa-bars::before, .fa-navicon::before, .fa-reorder::before %7B content: ''; %7D%0A.fa-list-ul::before %7B content: ''; %7D%0A.fa-list-ol::before %7B content: ''; %7D%0A.fa-strikethrough::before %7B content: ''; %7D%0A.fa-underline::before %7B content: ''; %7D%0A.fa-table::before %7B content: ''; %7D%0A.fa-magic::before %7B content: ''; %7D%0A.fa-truck::before %7B content: ''; %7D%0A.fa-pinterest::before %7B content: ''; %7D%0A.fa-pinterest-square::before %7B content: ''; %7D%0A.fa-google-plus-square::before %7B content: ''; %7D%0A.fa-google-plus::before %7B content: ''; %7D%0A.fa-money::before %7B content: ''; %7D%0A.fa-caret-down::before %7B content: ''; %7D%0A.fa-caret-up::before %7B content: ''; %7D%0A.fa-caret-left::before %7B content: ''; %7D%0A.fa-caret-right::before %7B content: ''; %7D%0A.fa-columns::before %7B content: ''; %7D%0A.fa-sort::before, .fa-unsorted::before %7B content: ''; %7D%0A.fa-sort-desc::before, .fa-sort-down::before %7B content: ''; %7D%0A.fa-sort-asc::before, .fa-sort-up::before %7B content: ''; %7D%0A.fa-envelope::before %7B content: ''; %7D%0A.fa-linkedin::before %7B content: ''; %7D%0A.fa-rotate-left::before, .fa-undo::before %7B content: ''; %7D%0A.fa-gavel::before, .fa-legal::before %7B content: ''; %7D%0A.fa-dashboard::before, .fa-tachometer::before %7B content: ''; %7D%0A.fa-comment-o::before %7B content: ''; %7D%0A.fa-comments-o::before %7B content: ''; %7D%0A.fa-bolt::before, .fa-flash::before %7B content: ''; %7D%0A.fa-sitemap::before %7B content: ''; %7D%0A.fa-umbrella::before %7B content: ''; %7D%0A.fa-clipboard::before, .fa-paste::before %7B content: ''; %7D%0A.fa-lightbulb-o::before %7B content: ''; %7D%0A.fa-exchange::before %7B content: ''; %7D%0A.fa-cloud-download::before %7B content: ''; %7D%0A.fa-cloud-upload::before %7B content: ''; %7D%0A.fa-user-md::before %7B content: ''; %7D%0A.fa-stethoscope::before %7B content: ''; %7D%0A.fa-suitcase::before %7B content: ''; %7D%0A.fa-bell-o::before %7B content: ''; %7D%0A.fa-coffee::before %7B content: ''; %7D%0A.fa-cutlery::before %7B content: ''; %7D%0A.fa-file-text-o::before %7B content: ''; %7D%0A.fa-building-o::before %7B content: ''; %7D%0A.fa-hospital-o::before %7B content: ''; %7D%0A.fa-ambulance::before %7B content: ''; %7D%0A.fa-medkit::before %7B content: ''; %7D%0A.fa-fighter-jet::before %7B content: ''; %7D%0A.fa-beer::before %7B content: ''; %7D%0A.fa-h-square::before %7B content: ''; %7D%0A.fa-plus-square::before %7B content: ''; %7D%0A.fa-angle-double-left::before %7B content: ''; %7D%0A.fa-angle-double-right::before %7B content: ''; %7D%0A.fa-angle-double-up::before %7B content: ''; %7D%0A.fa-angle-double-down::before %7B content: ''; %7D%0A.fa-angle-left::before %7B content: ''; %7D%0A.fa-angle-right::before %7B content: ''; %7D%0A.fa-angle-up::before %7B content: ''; %7D%0A.fa-angle-down::before %7B content: ''; %7D%0A.fa-desktop::before %7B content: ''; %7D%0A.fa-laptop::before %7B content: ''; %7D%0A.fa-tablet::before %7B content: ''; %7D%0A.fa-mobile-phone::before, .fa-mobile::before %7B content: ''; %7D%0A.fa-circle-o::before %7B content: ''; %7D%0A.fa-quote-left::before %7B content: ''; %7D%0A.fa-quote-right::before %7B content: ''; %7D%0A.fa-spinner::before %7B content: ''; %7D%0A.fa-circle::before %7B content: ''; %7D%0A.fa-mail-reply::before, .fa-reply::before %7B content: ''; %7D%0A.fa-github-alt::before %7B content: ''; %7D%0A.fa-folder-o::before %7B content: ''; %7D%0A.fa-folder-open-o::before %7B content: ''; %7D%0A.fa-smile-o::before %7B content: ''; %7D%0A.fa-frown-o::before %7B content: ''; %7D%0A.fa-meh-o::before %7B content: ''; %7D%0A.fa-gamepad::before %7B content: ''; %7D%0A.fa-keyboard-o::before %7B content: ''; %7D%0A.fa-flag-o::before %7B content: ''; %7D%0A.fa-flag-checkered::before %7B content: ''; %7D%0A.fa-terminal::before %7B content: ''; %7D%0A.fa-code::before %7B content: ''; %7D%0A.fa-mail-reply-all::before, .fa-reply-all::before %7B content: ''; %7D%0A.fa-star-half-empty::before, .fa-star-half-full::before, .fa-star-half-o::before %7B content: ''; %7D%0A.fa-location-arrow::before %7B content: ''; %7D%0A.fa-crop::before %7B content: ''; %7D%0A.fa-code-fork::before %7B content: ''; %7D%0A.fa-chain-broken::before, .fa-unlink::before %7B content: ''; %7D%0A.fa-question::before %7B content: ''; %7D%0A.fa-info::before %7B content: ''; %7D%0A.fa-exclamation::before %7B content: ''; %7D%0A.fa-superscript::before %7B content: ''; %7D%0A.fa-subscript::before %7B content: ''; %7D%0A.fa-eraser::before %7B content: ''; %7D%0A.fa-puzzle-piece::before %7B content: ''; %7D%0A.fa-microphone::before %7B content: ''; %7D%0A.fa-microphone-slash::before %7B content: ''; %7D%0A.fa-shield::before %7B content: ''; %7D%0A.fa-calendar-o::before %7B content: ''; %7D%0A.fa-fire-extinguisher::before %7B content: ''; %7D%0A.fa-rocket::before %7B content: ''; %7D%0A.fa-maxcdn::before %7B content: ''; %7D%0A.fa-chevron-circle-left::before %7B content: ''; %7D%0A.fa-chevron-circle-right::before %7B content: ''; %7D%0A.fa-chevron-circle-up::before %7B content: ''; %7D%0A.fa-chevron-circle-down::before %7B content: ''; %7D%0A.fa-html5::before %7B content: ''; %7D%0A.fa-css3::before %7B content: ''; %7D%0A.fa-anchor::before %7B content: ''; %7D%0A.fa-unlock-alt::before %7B content: ''; %7D%0A.fa-bullseye::before %7B content: ''; %7D%0A.fa-ellipsis-h::before %7B content: ''; %7D%0A.fa-ellipsis-v::before %7B content: ''; %7D%0A.fa-rss-square::before %7B content: ''; %7D%0A.fa-play-circle::before %7B content: ''; %7D%0A.fa-ticket::before %7B content: ''; %7D%0A.fa-minus-square::before %7B content: ''; %7D%0A.fa-minus-square-o::before %7B content: ''; %7D%0A.fa-level-up::before %7B content: ''; %7D%0A.fa-level-down::before %7B content: ''; %7D%0A.fa-check-square::before %7B content: ''; %7D%0A.fa-pencil-square::before %7B content: ''; %7D%0A.fa-external-link-square::before %7B content: ''; %7D%0A.fa-share-square::before %7B content: ''; %7D%0A.fa-compass::before %7B content: ''; %7D%0A.fa-caret-square-o-down::before, .fa-toggle-down::before %7B content: ''; %7D%0A.fa-caret-square-o-up::before, .fa-toggle-up::before %7B content: ''; %7D%0A.fa-caret-square-o-right::before, .fa-toggle-right::before %7B content: ''; %7D%0A.fa-eur::before, .fa-euro::before %7B content: ''; %7D%0A.fa-gbp::before %7B content: ''; %7D%0A.fa-dollar::before, .fa-usd::before %7B content: ''; %7D%0A.fa-inr::before, .fa-rupee::before %7B content: ''; %7D%0A.fa-cny::before, .fa-jpy::before, .fa-rmb::before, .fa-yen::before %7B content: ''; %7D%0A.fa-rouble::before, .fa-rub::before, .fa-ruble::before %7B content: ''; %7D%0A.fa-krw::before, .fa-won::before %7B content: ''; %7D%0A.fa-bitcoin::before, .fa-btc::before %7B content: ''; %7D%0A.fa-file::before %7B content: ''; %7D%0A.fa-file-text::before %7B content: ''; %7D%0A.fa-sort-alpha-asc::before %7B content: ''; %7D%0A.fa-sort-alpha-desc::before %7B content: ''; %7D%0A.fa-sort-amount-asc::before %7B content: ''; %7D%0A.fa-sort-amount-desc::before %7B content: ''; %7D%0A.fa-sort-numeric-asc::before %7B content: ''; %7D%0A.fa-sort-numeric-desc::before %7B content: ''; %7D%0A.fa-thumbs-up::before %7B content: ''; %7D%0A.fa-thumbs-down::before %7B content: ''; %7D%0A.fa-youtube-square::before %7B content: ''; %7D%0A.fa-youtube::before %7B content: ''; %7D%0A.fa-xing::before %7B content: ''; %7D%0A.fa-xing-square::before %7B content: ''; %7D%0A.fa-youtube-play::before %7B content: ''; %7D%0A.fa-dropbox::before %7B content: ''; %7D%0A.fa-stack-overflow::before %7B content: ''; %7D%0A.fa-instagram::before %7B content: ''; %7D%0A.fa-flickr::before %7B content: ''; %7D%0A.fa-adn::before %7B content: ''; %7D%0A.fa-bitbucket::before %7B content: ''; %7D%0A.fa-bitbucket-square::before %7B content: ''; %7D%0A.fa-tumblr::before %7B content: ''; %7D%0A.fa-tumblr-square::before %7B content: ''; %7D%0A.fa-long-arrow-down::before %7B content: ''; %7D%0A.fa-long-arrow-up::before %7B content: ''; %7D%0A.fa-long-arrow-left::before %7B content: ''; %7D%0A.fa-long-arrow-right::before %7B content: ''; %7D%0A.fa-apple::before %7B content: ''; %7D%0A.fa-windows::before %7B content: ''; %7D%0A.fa-android::before %7B content: ''; %7D%0A.fa-linux::before %7B content: ''; %7D%0A.fa-dribbble::before %7B content: ''; %7D%0A.fa-skype::before %7B content: ''; %7D%0A.fa-foursquare::before %7B content: ''; %7D%0A.fa-trello::before %7B content: ''; %7D%0A.fa-female::before %7B content: ''; %7D%0A.fa-male::before %7B content: ''; %7D%0A.fa-gittip::before, .fa-gratipay::before %7B content: ''; %7D%0A.fa-sun-o::before %7B content: ''; %7D%0A.fa-moon-o::before %7B content: ''; %7D%0A.fa-archive::before %7B content: ''; %7D%0A.fa-bug::before %7B content: ''; %7D%0A.fa-vk::before %7B content: ''; %7D%0A.fa-weibo::before %7B content: ''; %7D%0A.fa-renren::before %7B content: ''; %7D%0A.fa-pagelines::before %7B content: ''; %7D%0A.fa-stack-exchange::before %7B content: ''; %7D%0A.fa-arrow-circle-o-right::before %7B content: ''; %7D%0A.fa-arrow-circle-o-left::before %7B content: ''; %7D%0A.fa-caret-square-o-left::before, .fa-toggle-left::before %7B content: ''; %7D%0A.fa-dot-circle-o::before %7B content: ''; %7D%0A.fa-wheelchair::before %7B content: ''; %7D%0A.fa-vimeo-square::before %7B content: ''; %7D%0A.fa-try::before, .fa-turkish-lira::before %7B content: ''; %7D%0A.fa-plus-square-o::before %7B content: ''; %7D%0A.fa-space-shuttle::before %7B content: ''; %7D%0A.fa-slack::before %7B content: ''; %7D%0A.fa-envelope-square::before %7B content: ''; %7D%0A.fa-wordpress::before %7B content: ''; %7D%0A.fa-openid::before %7B content: ''; %7D%0A.fa-bank::before, .fa-institution::before, .fa-university::before %7B content: ''; %7D%0A.fa-graduation-cap::before, .fa-mortar-board::before %7B content: ''; %7D%0A.fa-yahoo::before %7B content: ''; %7D%0A.fa-google::before %7B content: ''; %7D%0A.fa-reddit::before %7B content: ''; %7D%0A.fa-reddit-square::before %7B content: ''; %7D%0A.fa-stumbleupon-circle::before %7B content: ''; %7D%0A.fa-stumbleupon::before %7B content: ''; %7D%0A.fa-delicious::before %7B content: ''; %7D%0A.fa-digg::before %7B content: ''; %7D%0A.fa-pied-piper-pp::before %7B content: ''; %7D%0A.fa-pied-piper-alt::before %7B content: ''; %7D%0A.fa-drupal::before %7B content: ''; %7D%0A.fa-joomla::before %7B content: ''; %7D%0A.fa-language::before %7B content: ''; %7D%0A.fa-fax::before %7B content: ''; %7D%0A.fa-building::before %7B content: ''; %7D%0A.fa-child::before %7B content: ''; %7D%0A.fa-paw::before %7B content: ''; %7D%0A.fa-spoon::before %7B content: ''; %7D%0A.fa-cube::before %7B content: ''; %7D%0A.fa-cubes::before %7B content: ''; %7D%0A.fa-behance::before %7B content: ''; %7D%0A.fa-behance-square::before %7B content: ''; %7D%0A.fa-steam::before %7B content: ''; %7D%0A.fa-steam-square::before %7B content: ''; %7D%0A.fa-recycle::before %7B content: ''; %7D%0A.fa-automobile::before, .fa-car::before %7B content: ''; %7D%0A.fa-cab::before, .fa-taxi::before %7B content: ''; %7D%0A.fa-tree::before %7B content: ''; %7D%0A.fa-spotify::before %7B content: ''; %7D%0A.fa-deviantart::before %7B content: ''; %7D%0A.fa-soundcloud::before %7B content: ''; %7D%0A.fa-database::before %7B content: ''; %7D%0A.fa-file-pdf-o::before %7B content: ''; %7D%0A.fa-file-word-o::before %7B content: ''; %7D%0A.fa-file-excel-o::before %7B content: ''; %7D%0A.fa-file-powerpoint-o::before %7B content: ''; %7D%0A.fa-file-image-o::before, .fa-file-photo-o::before, .fa-file-picture-o::before %7B content: ''; %7D%0A.fa-file-archive-o::before, .fa-file-zip-o::before %7B content: ''; %7D%0A.fa-file-audio-o::before, .fa-file-sound-o::before %7B content: ''; %7D%0A.fa-file-movie-o::before, .fa-file-video-o::before %7B content: ''; %7D%0A.fa-file-code-o::before %7B content: ''; %7D%0A.fa-vine::before %7B content: ''; %7D%0A.fa-codepen::before %7B content: ''; %7D%0A.fa-jsfiddle::before %7B content: ''; %7D%0A.fa-life-bouy::before, .fa-life-buoy::before, .fa-life-ring::before, .fa-life-saver::before, .fa-support::before %7B content: ''; %7D%0A.fa-circle-o-notch::before %7B content: ''; %7D%0A.fa-ra::before, .fa-rebel::before, .fa-resistance::before %7B content: ''; %7D%0A.fa-empire::before, .fa-ge::before %7B content: ''; %7D%0A.fa-git-square::before %7B content: ''; %7D%0A.fa-git::before %7B content: ''; %7D%0A.fa-hacker-news::before, .fa-y-combinator-square::before, .fa-yc-square::before %7B content: ''; %7D%0A.fa-tencent-weibo::before %7B content: ''; %7D%0A.fa-qq::before %7B content: ''; %7D%0A.fa-wechat::before, .fa-weixin::before %7B content: ''; %7D%0A.fa-paper-plane::before, .fa-send::before %7B content: ''; %7D%0A.fa-paper-plane-o::before, .fa-send-o::before %7B content: ''; %7D%0A.fa-history::before %7B content: ''; %7D%0A.fa-circle-thin::before %7B content: ''; %7D%0A.fa-header::before %7B content: ''; %7D%0A.fa-paragraph::before %7B content: ''; %7D%0A.fa-sliders::before %7B content: ''; %7D%0A.fa-share-alt::before %7B content: ''; %7D%0A.fa-share-alt-square::before %7B content: ''; %7D%0A.fa-bomb::before %7B content: ''; %7D%0A.fa-futbol-o::before, .fa-soccer-ball-o::before %7B content: ''; %7D%0A.fa-tty::before %7B content: ''; %7D%0A.fa-binoculars::before %7B content: ''; %7D%0A.fa-plug::before %7B content: ''; %7D%0A.fa-slideshare::before %7B content: ''; %7D%0A.fa-twitch::before %7B content: ''; %7D%0A.fa-yelp::before %7B content: ''; %7D%0A.fa-newspaper-o::before %7B content: ''; %7D%0A.fa-wifi::before %7B content: ''; %7D%0A.fa-calculator::before %7B content: ''; %7D%0A.fa-paypal::before %7B content: ''; %7D%0A.fa-google-wallet::before %7B content: ''; %7D%0A.fa-cc-visa::before %7B content: ''; %7D%0A.fa-cc-mastercard::before %7B content: ''; %7D%0A.fa-cc-discover::before %7B content: ''; %7D%0A.fa-cc-amex::before %7B content: ''; %7D%0A.fa-cc-paypal::before %7B content: ''; %7D%0A.fa-cc-stripe::before %7B content: ''; %7D%0A.fa-bell-slash::before %7B content: ''; %7D%0A.fa-bell-slash-o::before %7B content: ''; %7D%0A.fa-trash::before %7B content: ''; %7D%0A.fa-copyright::before %7B content: ''; %7D%0A.fa-at::before %7B content: ''; %7D%0A.fa-eyedropper::before %7B content: ''; %7D%0A.fa-paint-brush::before %7B content: ''; %7D%0A.fa-birthday-cake::before %7B content: ''; %7D%0A.fa-area-chart::before %7B content: ''; %7D%0A.fa-pie-chart::before %7B content: ''; %7D%0A.fa-line-chart::before %7B content: ''; %7D%0A.fa-lastfm::before %7B content: ''; %7D%0A.fa-lastfm-square::before %7B content: ''; %7D%0A.fa-toggle-off::before %7B content: ''; %7D%0A.fa-toggle-on::before %7B content: ''; %7D%0A.fa-bicycle::before %7B content: ''; %7D%0A.fa-bus::before %7B content: ''; %7D%0A.fa-ioxhost::before %7B content: ''; %7D%0A.fa-angellist::before %7B content: ''; %7D%0A.fa-cc::before %7B content: ''; %7D%0A.fa-ils::before, .fa-shekel::before, .fa-sheqel::before %7B content: ''; %7D%0A.fa-meanpath::before %7B content: ''; %7D%0A.fa-buysellads::before %7B content: ''; %7D%0A.fa-connectdevelop::before %7B content: ''; %7D%0A.fa-dashcube::before %7B content: ''; %7D%0A.fa-forumbee::before %7B content: ''; %7D%0A.fa-leanpub::before %7B content: ''; %7D%0A.fa-sellsy::before %7B content: ''; %7D%0A.fa-shirtsinbulk::before %7B content: ''; %7D%0A.fa-simplybuilt::before %7B content: ''; %7D%0A.fa-skyatlas::before %7B content: ''; %7D%0A.fa-cart-plus::before %7B content: ''; %7D%0A.fa-cart-arrow-down::before %7B content: ''; %7D%0A.fa-diamond::before %7B content: ''; %7D%0A.fa-ship::before %7B content: ''; %7D%0A.fa-user-secret::before %7B content: ''; %7D%0A.fa-motorcycle::before %7B content: ''; %7D%0A.fa-street-view::before %7B content: ''; %7D%0A.fa-heartbeat::before %7B content: ''; %7D%0A.fa-venus::before %7B content: ''; %7D%0A.fa-mars::before %7B content: ''; %7D%0A.fa-mercury::before %7B content: ''; %7D%0A.fa-intersex::before, .fa-transgender::before %7B content: ''; %7D%0A.fa-transgender-alt::before %7B content: ''; %7D%0A.fa-venus-double::before %7B content: ''; %7D%0A.fa-mars-double::before %7B content: ''; %7D%0A.fa-venus-mars::before %7B content: ''; %7D%0A.fa-mars-stroke::before %7B content: ''; %7D%0A.fa-mars-stroke-v::before %7B content: ''; %7D%0A.fa-mars-stroke-h::before %7B content: ''; %7D%0A.fa-neuter::before %7B content: ''; %7D%0A.fa-genderless::before %7B content: ''; %7D%0A.fa-facebook-official::before %7B content: ''; %7D%0A.fa-pinterest-p::before %7B content: ''; %7D%0A.fa-whatsapp::before %7B content: ''; %7D%0A.fa-server::before %7B content: ''; %7D%0A.fa-user-plus::before %7B content: ''; %7D%0A.fa-user-times::before %7B content: ''; %7D%0A.fa-bed::before, .fa-hotel::before %7B content: ''; %7D%0A.fa-viacoin::before %7B content: ''; %7D%0A.fa-train::before %7B content: ''; %7D%0A.fa-subway::before %7B content: ''; %7D%0A.fa-medium::before %7B content: ''; %7D%0A.fa-y-combinator::before, .fa-yc::before %7B content: ''; %7D%0A.fa-optin-monster::before %7B content: ''; %7D%0A.fa-opencart::before %7B content: ''; %7D%0A.fa-expeditedssl::before %7B content: ''; %7D%0A.fa-battery-4::before, .fa-battery-full::before, .fa-battery::before %7B content: ''; %7D%0A.fa-battery-3::before, .fa-battery-three-quarters::before %7B content: ''; %7D%0A.fa-battery-2::before, .fa-battery-half::before %7B content: ''; %7D%0A.fa-battery-1::before, .fa-battery-quarter::before %7B content: ''; %7D%0A.fa-battery-0::before, .fa-battery-empty::before %7B content: ''; %7D%0A.fa-mouse-pointer::before %7B content: ''; %7D%0A.fa-i-cursor::before %7B content: ''; %7D%0A.fa-object-group::before %7B content: ''; %7D%0A.fa-object-ungroup::before %7B content: ''; %7D%0A.fa-sticky-note::before %7B content: ''; %7D%0A.fa-sticky-note-o::before %7B content: ''; %7D%0A.fa-cc-jcb::before %7B content: ''; %7D%0A.fa-cc-diners-club::before %7B content: ''; %7D%0A.fa-clone::before %7B content: ''; %7D%0A.fa-balance-scale::before %7B content: ''; %7D%0A.fa-hourglass-o::before %7B content: ''; %7D%0A.fa-hourglass-1::before, .fa-hourglass-start::before %7B content: ''; %7D%0A.fa-hourglass-2::before, .fa-hourglass-half::before %7B content: ''; %7D%0A.fa-hourglass-3::before, .fa-hourglass-end::before %7B content: ''; %7D%0A.fa-hourglass::before %7B content: ''; %7D%0A.fa-hand-grab-o::before, .fa-hand-rock-o::before %7B content: ''; %7D%0A.fa-hand-paper-o::before, .fa-hand-stop-o::before %7B content: ''; %7D%0A.fa-hand-scissors-o::before %7B content: ''; %7D%0A.fa-hand-lizard-o::before %7B content: ''; %7D%0A.fa-hand-spock-o::before %7B content: ''; %7D%0A.fa-hand-pointer-o::before %7B content: ''; %7D%0A.fa-hand-peace-o::before %7B content: ''; %7D%0A.fa-trademark::before %7B content: ''; %7D%0A.fa-registered::before %7B content: ''; %7D%0A.fa-creative-commons::before %7B content: ''; %7D%0A.fa-gg::before %7B content: ''; %7D%0A.fa-gg-circle::before %7B content: ''; %7D%0A.fa-tripadvisor::before %7B content: ''; %7D%0A.fa-odnoklassniki::before %7B content: ''; %7D%0A.fa-odnoklassniki-square::before %7B content: ''; %7D%0A.fa-get-pocket::before %7B content: ''; %7D%0A.fa-wikipedia-w::before %7B content: ''; %7D%0A.fa-safari::before %7B content: ''; %7D%0A.fa-chrome::before %7B content: ''; %7D%0A.fa-firefox::before %7B content: ''; %7D%0A.fa-opera::before %7B content: ''; %7D%0A.fa-internet-explorer::before %7B content: ''; %7D%0A.fa-television::before, .fa-tv::before %7B content: ''; %7D%0A.fa-contao::before %7B content: ''; %7D%0A.fa-500px::before %7B content: ''; %7D%0A.fa-amazon::before %7B content: ''; %7D%0A.fa-calendar-plus-o::before %7B content: ''; %7D%0A.fa-calendar-minus-o::before %7B content: ''; %7D%0A.fa-calendar-times-o::before %7B content: ''; %7D%0A.fa-calendar-check-o::before %7B content: ''; %7D%0A.fa-industry::before %7B content: ''; %7D%0A.fa-map-pin::before %7B content: ''; %7D%0A.fa-map-signs::before %7B content: ''; %7D%0A.fa-map-o::before %7B content: ''; %7D%0A.fa-map::before %7B content: ''; %7D%0A.fa-commenting::before %7B content: ''; %7D%0A.fa-commenting-o::before %7B content: ''; %7D%0A.fa-houzz::before %7B content: ''; %7D%0A.fa-vimeo::before %7B content: ''; %7D%0A.fa-black-tie::before %7B content: ''; %7D%0A.fa-fonticons::before %7B content: ''; %7D%0A.fa-reddit-alien::before %7B content: ''; %7D%0A.fa-edge::before %7B content: ''; %7D%0A.fa-credit-card-alt::before %7B content: ''; %7D%0A.fa-codiepie::before %7B content: ''; %7D%0A.fa-modx::before %7B content: ''; %7D%0A.fa-fort-awesome::before %7B content: ''; %7D%0A.fa-usb::before %7B content: ''; %7D%0A.fa-product-hunt::before %7B content: ''; %7D%0A.fa-mixcloud::before %7B content: ''; %7D%0A.fa-scribd::before %7B content: ''; %7D%0A.fa-pause-circle::before %7B content: ''; %7D%0A.fa-pause-circle-o::before %7B content: ''; %7D%0A.fa-stop-circle::before %7B content: ''; %7D%0A.fa-stop-circle-o::before %7B content: ''; %7D%0A.fa-shopping-bag::before %7B content: ''; %7D%0A.fa-shopping-basket::before %7B content: ''; %7D%0A.fa-hashtag::before %7B content: ''; %7D%0A.fa-bluetooth::before %7B content: ''; %7D%0A.fa-bluetooth-b::before %7B content: ''; %7D%0A.fa-percent::before %7B content: ''; %7D%0A.fa-gitlab::before %7B content: ''; %7D%0A.fa-wpbeginner::before %7B content: ''; %7D%0A.fa-wpforms::before %7B content: ''; %7D%0A.fa-envira::before %7B content: ''; %7D%0A.fa-universal-access::before %7B content: ''; %7D%0A.fa-wheelchair-alt::before %7B content: ''; %7D%0A.fa-question-circle-o::before %7B content: ''; %7D%0A.fa-blind::before %7B content: ''; %7D%0A.fa-audio-description::before %7B content: ''; %7D%0A.fa-volume-control-phone::before %7B content: ''; %7D%0A.fa-braille::before %7B content: ''; %7D%0A.fa-assistive-listening-systems::before %7B content: ''; %7D%0A.fa-american-sign-language-interpreting::before, .fa-asl-interpreting::before %7B content: ''; %7D%0A.fa-deaf::before, .fa-deafness::before, .fa-hard-of-hearing::before %7B content: ''; %7D%0A.fa-glide::before %7B content: ''; %7D%0A.fa-glide-g::before %7B content: ''; %7D%0A.fa-sign-language::before, .fa-signing::before %7B content: ''; %7D%0A.fa-low-vision::before %7B content: ''; %7D%0A.fa-viadeo::before %7B content: ''; %7D%0A.fa-viadeo-square::before %7B content: ''; %7D%0A.fa-snapchat::before %7B content: ''; %7D%0A.fa-snapchat-ghost::before %7B content: ''; %7D%0A.fa-snapchat-square::before %7B content: ''; %7D%0A.fa-pied-piper::before %7B content: ''; %7D%0A.fa-first-order::before %7B content: ''; %7D%0A.fa-yoast::before %7B content: ''; %7D%0A.fa-themeisle::before %7B content: ''; %7D%0A.fa-google-plus-circle::before, .fa-google-plus-official::before %7B content: ''; %7D%0A.fa-fa::before, .fa-font-awesome::before %7B content: ''; %7D%0A.fa-handshake-o::before %7B content: ''; %7D%0A.fa-envelope-open::before %7B content: ''; %7D%0A.fa-envelope-open-o::before %7B content: ''; %7D%0A.fa-linode::before %7B content: ''; %7D%0A.fa-address-book::before %7B content: ''; %7D%0A.fa-address-book-o::before %7B content: ''; %7D%0A.fa-address-card::before, .fa-vcard::before %7B content: ''; %7D%0A.fa-address-card-o::before, .fa-vcard-o::before %7B content: ''; %7D%0A.fa-user-circle::before %7B content: ''; %7D%0A.fa-user-circle-o::before %7B content: ''; %7D%0A.fa-user-o::before %7B content: ''; %7D%0A.fa-id-badge::before %7B content: ''; %7D%0A.fa-drivers-license::before, .fa-id-card::before %7B content: ''; %7D%0A.fa-drivers-license-o::before, .fa-id-card-o::before %7B content: ''; %7D%0A.fa-quora::before %7B content: ''; %7D%0A.fa-free-code-camp::before %7B content: ''; %7D%0A.fa-telegram::before %7B content: ''; %7D%0A.fa-thermometer-4::before, .fa-thermometer-full::before, .fa-thermometer::before %7B content: ''; %7D%0A.fa-thermometer-3::before, .fa-thermometer-three-quarters::before %7B content: ''; %7D%0A.fa-thermometer-2::before, .fa-thermometer-half::before %7B content: ''; %7D%0A.fa-thermometer-1::before, .fa-thermometer-quarter::before %7B content: ''; %7D%0A.fa-thermometer-0::before, .fa-thermometer-empty::before %7B content: ''; %7D%0A.fa-shower::before %7B content: ''; %7D%0A.fa-bath::before, .fa-bathtub::before, .fa-s15::before %7B content: ''; %7D%0A.fa-podcast::before %7B content: ''; %7D%0A.fa-window-maximize::before %7B content: ''; %7D%0A.fa-window-minimize::before %7B content: ''; %7D%0A.fa-window-restore::before %7B content: ''; %7D%0A.fa-times-rectangle::before, .fa-window-close::before %7B content: ''; %7D%0A.fa-times-rectangle-o::before, .fa-window-close-o::before %7B content: ''; %7D%0A.fa-bandcamp::before %7B content: ''; %7D%0A.fa-grav::before %7B content: ''; %7D%0A.fa-etsy::before %7B content: ''; %7D%0A.fa-imdb::before %7B content: ''; %7D%0A.fa-ravelry::before %7B content: ''; %7D%0A.fa-eercast::before %7B content: ''; %7D%0A.fa-microchip::before %7B content: ''; %7D%0A.fa-snowflake-o::before %7B content: ''; %7D%0A.fa-superpowers::before %7B content: ''; %7D%0A.fa-wpexplorer::before %7B content: ''; %7D%0A.fa-meetup::before %7B content: ''; %7D%0A.sr-only %7B position: absolute; width: 1px; height: 1px; padding: 0px; margin: -1px; overflow: hidden; clip: rect%280px 0px 0px 0px%29; border: 0px; %7D%0A.sr-only-focusable:active, .sr-only-focusable:focus %7B position: static; width: auto; height: auto; margin: 0px; overflow: visible; clip: auto; %7D%0A.irs, .irs-line %7B position: relative; display: block; %7D%0A.irs %7B user-select: none; %7D%0A.irs-line %7B overflow: hidden; outline: none !important; %7D%0A.irs-line-left, .irs-line-mid, .irs-line-right %7B position: absolute; display: block; top: 0px; %7D%0A.irs-line-left %7B left: 0px; width: 11%25; %7D%0A.irs-line-mid %7B left: 9%25; width: 82%25; %7D%0A.irs-line-right %7B right: 0px; width: 11%25; %7D%0A.irs-bar %7B width: 0px; %7D%0A.irs-bar, .irs-bar-edge, .irs-shadow %7B position: absolute; display: block; left: 0px; %7D%0A.irs-shadow %7B display: none; width: 0px; %7D%0A.irs-slider %7B position: absolute; display: block; cursor: default; z-index: 1; %7D%0A.irs-slider.type_last %7B z-index: 2; %7D%0A.irs-min %7B left: 0px; %7D%0A.irs-from, .irs-max, .irs-min, .irs-single, .irs-to %7B position: absolute; display: block; cursor: default; %7D%0A.irs-max %7B right: 0px; %7D%0A.irs-from, .irs-single, .irs-to %7B top: 0px; left: 0px; white-space: nowrap; %7D%0A.irs-grid %7B position: absolute; display: none; bottom: 0px; left: 0px; width: 100%25; height: 20px; %7D%0A.irs-with-grid .irs-grid %7B display: block; %7D%0A.irs-grid-pol %7B position: absolute; top: 0px; left: 0px; width: 1px; height: 8px; background: rgb%280, 0, 0%29; %7D%0A.irs-grid-pol.small %7B height: 4px; %7D%0A.irs-grid-text %7B position: absolute; bottom: 0px; left: 0px; white-space: nowrap; text-align: center; font-size: 9px; line-height: 9px; padding: 0px 3px; %7D%0A.irs-disable-mask %7B position: absolute; display: block; top: 0px; left: -1%25; width: 102%25; height: 100%25; cursor: default; background: rgba%280, 0, 0, 0%29; z-index: 2; %7D%0A.lt-ie9 .irs-disable-mask %7B background: rgb%280, 0, 0%29; cursor: not-allowed; %7D%0A.irs-disabled %7B opacity: 0.4; %7D%0A.irs-hidden-input %7B overflow: hidden; position: absolute !important; display: block !important; top: 0px !important; left: 0px !important; width: 0px !important; height: 0px !important; font-size: 0px !important; line-height: 0 !important; padding: 0px !important; margin: 0px !important; outline: none !important; z-index: -9999 !important; background: 0px 0px !important; border-style: solid !important; border-color: transparent !important; %7D%0A.irs-bar, .irs-bar-edge, .irs-line-left, .irs-line-mid, .irs-line-right, .irs-slider %7B background: url%28'/assets/ion-rangeslider/2.1.7/img/sprite-skin-flat.png'%29 repeat-x; %7D%0A.irs %7B height: 40px; %7D%0A.irs-with-grid %7B height: 60px; %7D%0A.irs-line %7B height: 12px; top: 25px; %7D%0A.irs-line-left %7B height: 12px; background-position: 0px -30px; %7D%0A.irs-line-mid %7B height: 12px; background-position: 0px 0px; %7D%0A.irs-line-right %7B height: 12px; background-position: 100%25 -30px; %7D%0A.irs-bar, .irs-bar-edge %7B height: 12px; top: 25px; background-position: 0px -60px; %7D%0A.irs-bar-edge %7B width: 9px; background-position: 0px -90px; %7D%0A.irs-shadow %7B height: 3px; top: 34px; background: rgb%280, 0, 0%29; opacity: 0.25; %7D%0A.lt-ie9 .irs-shadow %7B %7D%0A.irs-slider %7B width: 16px; height: 18px; top: 22px; background-position: 0px -120px; %7D%0A.irs-slider.state_hover, .irs-slider:hover %7B background-position: 0px -150px; %7D%0A.irs-from, .irs-max, .irs-min, .irs-single, .irs-to %7B font-size: 10px; line-height: 1.333; text-shadow: none; border-radius: 4px; %7D%0A.irs-max, .irs-min %7B top: 0px; background: rgb%28225, 228, 233%29; color: rgb%28153, 153, 153%29; padding: 1px 3px; %7D%0A.irs-from, .irs-single, .irs-to %7B color: rgb%28255, 255, 255%29; padding: 1px 5px; background: rgb%28237, 85, 101%29; %7D%0A.irs-from::after, .irs-single::after, .irs-to::after %7B position: absolute; display: block; content: ''; bottom: -6px; left: 50%25; width: 0px; height: 0px; margin-left: -3px; overflow: hidden; border-width: 3px; border-style: solid; border-color: rgb%28237, 85, 101%29 transparent transparent; border-image: initial; %7D%0A.irs-grid-pol %7B background: rgb%28225, 228, 233%29; %7D%0A.irs-grid-text %7B color: rgb%28153, 153, 153%29; %7D%0A.ldColorPicker %7B -webkit-font-smoothing: antialiased; line-height: 1.42857; display: inline-block; position: relative; width: 287px; height: 160px; text-align: left; %7D%0A.ldColorPicker *, .ldColorPicker ::after, .ldColorPicker ::before %7B box-sizing: border-box; %7D%0A.ldcp-panel %7B position: relative; display: block; background: rgb%28255, 255, 255%29; width: 100%25; height: 100%25; border: 1px solid rgb%280, 0, 0%29; %7D%0A.ldColorPicker .ldcp-panel %7B border: 1px solid rgb%28204, 204, 204%29; %7D%0A.ldColorPicker.mini-palette .ldcp-panel, .ldColorPicker.no-border .ldcp-panel %7B border: 1px transparent; %7D%0A.ldColorPicker.shadow .ldcp-panel, .ldColorPicker.shadow.flat .ldcp-panel %7B box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; %7D%0A.ldColorPicker.round .ldcp-panel %7B border-radius: 3px; %7D%0A.ldColorPicker.rounder .ldcp-panel %7B border-radius: 6px; %7D%0A.ldColorPicker.bubble .ldcp-panel::after %7B content: ' '; display: block; position: absolute; width: 0px; height: 0px; border: 10px solid transparent; %7D%0A.ldColorPicker.top.bubble .ldcp-panel::after %7B border-color: rgb%28204, 204, 204%29 transparent transparent; bottom: -20px; left: 10px; top: auto; %7D%0A.ldColorPicker.right.bubble .ldcp-panel::after %7B border-color: transparent rgb%28204, 204, 204%29 transparent transparent; top: 10px; left: -20px; %7D%0A.ldColorPicker.left.bubble .ldcp-panel::after %7B border-color: transparent transparent transparent rgb%28204, 204, 204%29; top: 10px; right: -20px; left: auto; %7D%0A.ldColorPicker.bottom.bubble .ldcp-panel::after, .ldColorPicker.bubble .ldcp-panel::after %7B border-color: transparent transparent rgb%28204, 204, 204%29; top: -20px; left: 10px; %7D%0A.ldcp-1d, .ldcp-2d %7B position: relative; display: inline-block; user-select: none; %7D%0A.ldcp-2d %7B background: rgb%280, 0, 255%29; border-radius: 2px; cursor: move; %7D%0A.ldcp-2d .ldcp-mask %7B z-index: 2; box-shadow: rgba%280, 0, 0, 0.5%29 0px 0px 3px 1px inset; border-radius: 2px; %7D%0A.ldcp-1d img, .ldcp-2d img %7B position: absolute; z-index: 1; top: 0px; left: 0px; width: 100%25; height: 100%25; border-radius: 2px; %7D%0A.ldcp-1d %7B cursor: row-resize; %7D%0A.ldcp-1d .ldcp-mask %7B z-index: 2; %7D%0A.ldcp-1d .ldcp-bar %7B width: 80%25; height: 4px; background: rgb%28255, 255, 255%29; top: 20px; left: 10%25; margin: 0px; border: 1px solid rgb%28153, 153, 153%29; border-radius: 1px; %7D%0A.ldcp-1d .ldcp-mask %7B left: 0px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 0px 2px 1px inset; border-radius: 2px; %7D%0A.ldcp-colors.ldcp-g21 %7B position: relative; display: flex; flex-wrap: wrap; %7D%0A.ldcp-colors.ldcp-g21 .ldcp-colorptr %7B content: ' '; display: block; position: absolute; width: 0px; height: 0px; bottom: -3px; margin-left: -5px; border-width: 8px 5px; border-style: solid; border-color: transparent transparent rgb%280, 0, 0%29; %7D%0A.ldcp-colors.ldcp-g21 .ldcp-palette %7B flex: 9 1 0%25; display: flex; flex-wrap: wrap; height: 100%25; margin-right: 5px; position: relative; %7D%0A.ldcp-colors.ldcp-g21 .ldcp-color, .ldcp-colors.ldcp-g21 .ldcp-color-none %7B height: 100%25; background: url%28'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACVJREFUeNpi/P//PwMMvHnzBs5mYsABSJdgQTZXRESEFnYABBgAfWEI03YAx+QAAAAASUVORK5CYII='%29 rgb%28238, 238, 238%29; display: inline-block; overflow: hidden; flex: 1 1 0%25; text-align: center; line-height: 100%25; vertical-align: middle; cursor: pointer; border-radius: 1px; margin: 0px 5px 0px 0px; %7D%0A.ldcp-colors.ldcp-g21 .ldcp-color-none %7B border: 1px dashed rgb%28204, 204, 204%29; box-shadow: none; %7D%0A.ldcp-colors.ldcp-g21 .ldcp-color:first-of-type, .ldcp-v .ldcp-h:first-of-type %7B margin-left: 0px; %7D%0A.ldColorPicker.mini-palette .ldcp-colors .ldcp-palette .ldcp-color:last-of-type, .ldColorPicker.no-empty-color .ldcp-colors .ldcp-palette .ldcp-color:last-of-type, .ldColorPicker.palette-only .ldcp-colors .ldcp-palette .ldcp-color:last-of-type, .ldcp-colors.ldcp-g21 .ldcp-color:last-of-type %7B margin-right: 0px; %7D%0A.ldcp-cbtn %7B font-family: 'courier new'; text-align: center; border-width: 1px 1px 1px 0px; border-style: solid; border-color: rgb%28204, 204, 204%29; border-image: initial; font-weight: 700; font-size: 16px; line-height: 19px; color: rgb%28136, 136, 136%29; display: block; cursor: pointer; width: 17px; flex: 0 0 17px; %7D%0A.ldcp-colors span:first-of-type %7B border-radius: 2px 0px 0px 2px; width: 19px; flex: 0 0 19px; margin-left: 5px; border-left-width: 1px; %7D%0A.ldcp-colors span:last-of-type %7B border-radius: 0px 2px 2px 0px; %7D%0A.ldcp-g31 %7B color: rgb%28102, 102, 102%29; font-family: calibri; %7D%0A.ldcp-g31 input %7B width: 29px; margin-left: -2px; margin-right: 5px; color: rgb%28102, 102, 102%29; height: 100%25; padding: 0px 2px; font-weight: 200; font-size: 13px; vertical-align: top; text-align: center; border: 1px solid rgb%28204, 204, 204%29; border-radius: 0px 3px 3px 0px; %7D%0A.ldcp-g31 input.ldcp-alpha %7B margin-right: 0px; %7D%0A.ldcp-g31 input.ldcp-input-hex %7B width: 54px; %7D%0A.ldcp-g31 .ldcp-caret, .ldcp-g31 span %7B user-select: none; %7D%0A.ldcp-g31 span %7B display: inline-block; padding: 0px 2px; line-height: 15px; height: 100%25; vertical-align: top; font-size: 13px; margin-right: 0px; border: 1px solid rgb%28204, 204, 204%29; text-align: center; font-weight: 200; border-radius: 2px 0px 0px 2px; width: 16px; %7D%0A.ldcp-g31 .ldcp-caret %7B border-radius: 2px; width: 52px; float: right; cursor: pointer; %7D%0A.ldcp-edit-group %7B display: inline; %7D%0A.ldcp-edit-hex span %7B width: 32px; %7D%0A.ldcp-panel .ldcp-ptr-bar, .ldcp-panel .ldcp-ptr-circle %7B position: absolute; background: 0px 0px; z-index: 3; %7D%0A.ldcp-panel .ldcp-ptr-circle %7B border-radius: 50%25; width: 10px; height: 10px; margin: -5px 0px 0px -5px; box-shadow: rgba%280, 0, 0, 0.5%29 0px 0px 3px 0px, rgba%280, 0, 0, 0.5%29 0px 0px 0px 1px inset; border: 1px solid rgba%28255, 255, 255, 0.9%29; %7D%0A.ldcp-panel .ldcp-mask %7B position: absolute; top: 0px; left: 0px; width: 100%25; height: 100%25; cursor: move; %7D%0A.ldcp-panel .ldcp-ptr-bar %7B width: 80%25; height: 4px; background: rgb%28255, 255, 255%29; top: 0px; left: 10%25; margin-top: -2px; border: 1px solid rgb%28153, 153, 153%29; border-radius: 1px; %7D%0A.ldcp-panel %7B padding: 5px 5px 10px; %7D%0A.ldcp-v %7B width: 100%25; margin-top: 10px; margin-bottom: -5px; %7D%0A.ldcp-v:first-of-type %7B margin-top: 0px; %7D%0A.ldcp-v:last-of-type %7B margin-bottom: -4995px; %7D%0A.ldcp-h %7B height: 100%25; display: inline-block; vertical-align: top; margin-left: 10px; margin-right: -5px; %7D%0A.ldcp-v .ldcp-h:last-of-type %7B margin-right: -4995px; %7D%0A.ldcp-chooser %7B display: none; %7D%0A.ldColorPicker.no-palette.text-input .ldcp-panel, .ldcp-panel %7B padding-bottom: 29px; %7D%0A.ldcp-g1 %7B height: 100%25; padding-right: 10px; %7D%0A.ldcp-g11 %7B width: 80%25; %7D%0A.ldcp-g12, .ldcp-g13 %7B width: 10%25; %7D%0A.ldcp-g2 %7B height: 19px; %7D%0A.ldcp-g21 %7B width: 100%25; %7D%0A.ldcp-g3 %7B display: none; height: 17px; line-height: 17px; margin-top: 12px; %7D%0A.ldcp-g31 %7B width: 100%25; %7D%0A.ldColorPicker.text-input .ldcp-panel %7B padding-bottom: 54px; %7D%0A.ldColorPicker.no-alpha .ldcp-2d %7B width: 90%25; %7D%0A.ldColorPicker.no-alpha .ldcp-g1 %7B padding-right: 5px; %7D%0A.ldColorPicker.no-alpha .ldcp-alpha %7B display: none; %7D%0A.ldColorPicker.no-palette .ldcp-panel %7B padding-bottom: 5px; %7D%0A.ldColorPicker.no-palette .ldcp-g2 %7B display: none; %7D%0A.ldColorPicker.mini-palette, .ldColorPicker.palette-only %7B height: 22px; %7D%0A.ldColorPicker.mini-palette .ldcp-panel, .ldColorPicker.palette-only .ldcp-panel %7B padding-bottom: 27px; %7D%0A.ldColorPicker.mini-palette .ldcp-g2, .ldColorPicker.palette-only .ldcp-g2 %7B margin-top: 5px; %7D%0A.ldColorPicker.mini-palette .ldcp-g3, .ldColorPicker.palette-only .ldcp-g3 %7B display: none; %7D%0A.ldColorPicker.mini-palette .ldcp-colors, .ldColorPicker.palette-only .ldcp-colors %7B height: 22px; %7D%0A.ldColorPicker.mini-palette .ldcp-1d, .ldColorPicker.mini-palette .ldcp-2d, .ldColorPicker.mini-palette .ldcp-cbtn, .ldColorPicker.palette-only .ldcp-1d, .ldColorPicker.palette-only .ldcp-2d, .ldColorPicker.palette-only .ldcp-cbtn %7B display: none; %7D%0A.ldColorPicker.round-palette .ldcp-color, .ldColorPicker.round-palette .ldcp-color-none %7B border-radius: 50%25; width: 22px; flex: 0 0 22px; %7D%0A.ldColorPicker.round-palette .ldcp-sep %7B flex: 1 1 0%25; %7D%0A.ldColorPicker.round-palette.middle .ldcp-palette %7B justify-content: center; %7D%0A.ldColorPicker.no-button .ldcp-cbtn, .ldColorPicker.round-palette.middle .ldcp-sep %7B display: none; %7D%0A.ldColorPicker.compact-palette .ldcp-colors .ldcp-color, .ldColorPicker.mini-palette .ldcp-colors .ldcp-color %7B margin: 0px; border-radius: 0px; %7D%0A.ldColorPicker.compact-palette .ldcp-colors .ldcp-color:last-of-type, .ldColorPicker.mini-palette .ldcp-colors .ldcp-color:last-of-type %7B margin-right: 5px; border-radius: 0px 3px 3px 0px; %7D%0A.ldColorPicker.compact-palette .ldcp-colors .ldcp-color:first-of-type, .ldColorPicker.mini-palette .ldcp-colors .ldcp-color:first-of-type %7B border-radius: 3px 0px 0px 3px; %7D%0A.ldColorPicker.no-button .ldcp-color-none %7B margin-right: 0px; %7D%0A.ldColorPicker.mini-palette .ldcp-color-none, .ldColorPicker.no-empty-color .ldcp-color-none, .ldColorPicker.palette-only .ldcp-color-none %7B display: none; %7D%0A.ldColorPicker.mini-palette .ldcp-palette, .ldColorPicker.no-empty-color .ldcp-palette, .ldColorPicker.palette-only .ldcp-palette %7B margin-right: 0px; %7D%0A.ldColorPicker.mini-palette %7B width: 160px; %7D%0A.ldColorPicker.mini-palette .ldcp-panel %7B background: 0px 0px; %7D%0A.ldColorPicker.flat .ldcp-panel, .ldColorPicker.mini-palette.shadow .ldcp-panel %7B box-shadow: none; %7D%0A.ldColorPicker.mini-palette.shadow .ldcp-palette %7B box-shadow: rgba%280, 0, 0, 0.3%29 0px 2px 2px; border-radius: 3px; %7D%0A.ldColorPicker.mini-palette.no-ptr .ldcp-colorptr, .ldColorPicker.palette-only.no-ptr .ldcp-colorptr %7B display: none; %7D%0A.ldColorPicker.flat .ldcp-g31 span %7B border-color: transparent; background: 0px 0px; color: rgb%28153, 153, 153%29; %7D%0A.ldColorPicker.flat .ldcp-g31 input %7B box-shadow: none; border-color: transparent; text-align: left; %7D%0A%23landing.landing-color %7B height: 440px; %7D%0A%23landing.landing-color .inner %7B height: 310px; %7D%0A%23landing.landing-color.mini %7B height: 280px; %7D%0A%23landing.landing-color.mini a.light %7B color: rgb%2851, 122, 183%29 !important; %7D%0A%23landing.landing-color.mini .bk %7B height: 270px; display: none; %7D%0A%23landing.landing-color.mini .inner %7B height: 100px; %7D%0A.palettes2 %7B display: flex; flex-wrap: wrap; width: 100%25; %7D%0A.palette2-block %7B margin: 20px; flex: 1 1 auto; %7D%0A.palette2-block .ctrl %7B margin: 5px 5px 0px 0px; color: rgb%2868, 68, 68%29; %7D%0A.palette2-block .ctrl i %7B vertical-align: middle; %7D%0A.palette2-block .ctrl .avatar %7B width: 16px; height: 16px; border-radius: 3px; vertical-align: text-top; %7D%0A.palette2-block span %7B cursor: pointer; %7D%0A.palette2-block .name %7B max-width: 250px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; display: inline-block; margin-bottom: -5px; %7D%0A.palette2 %7B box-shadow: rgba%280, 0, 0, 0.3%29 0px 2px 4px; border: 1px solid rgb%28255, 255, 255%29; height: 60px; min-width: 300px; border-radius: 5px; overflow: hidden; display: flex; position: relative; %7D%0A.palette2 .color %7B flex: 1 1 auto; height: 100%25; background: rgb%28153, 153, 153%29; position: relative; %7D%0A.palette2 .color.editable %7B border: 2px solid rgb%28255, 255, 255%29; %7D%0A.palette2 .color.active.editable %7B outline: rgb%280, 0, 0%29 solid 2px; box-shadow: rgb%280, 0, 0%29 0px 2px 4px; position: relative; z-index: 10; border: 2px solid rgb%28255, 255, 255%29 !important; %7D%0A.palette-with-action .palette-block %7B display: inline-block; vertical-align: middle; %7D%0A.palette-with-action .palette-block.enter %7B animation: palkeyword-enter 1s cubic-bezier%280, 0.5, 0.5, 1%29; %7D%0A.palette-with-action .palette2 %7B width: 200px; height: 30px; margin: 20px auto; box-shadow: none; opacity: 0.2; %7D%0A.palette-with-action i.fa %7B font-size: 1.4em; margin-left: 10px; vertical-align: middle; color: rgba%280, 0, 0, 0.1%29; %7D%0A.palette-with-action .color, .palette-with-action .palette2, .palette-with-action i.fa %7B transition: all 0.5s linear; %7D%0A.palette2 .cover-ctrl %7B display: none; position: absolute; top: 0px; left: 0px; bottom: 0px; width: 100%25; height: 100%25; background: rgba%280, 0, 0, 0.7%29; text-align: center; color: rgb%28255, 255, 255%29; font-size: 1.3em; %7D%0A.palette2 .cover-ctrl div %7B cursor: pointer; padding: 17px; %7D%0A.palette2:hover .cover-ctrl %7B display: block; %7D%0A.palette-with-action.active i.fa %7B color: rgb%2834, 34, 34%29; %7D%0A.palette-with-action.active .palette2 %7B box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; opacity: 1; %7D%0A.btn.btn-palette %7B position: relative; height: 34px; padding: 3px; %7D%0A.btn.btn-palette .name %7B z-index: 8; filter: url%28'%23white-dilate'%29; mix-blend-mode: luminosity; text-shadow: rgb%280, 0, 0%29 0px 0px 1px; position: absolute; max-width: 90%25; top: 0px; left: 0px; right: 0px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 100%25; height: 1.5em; bottom: 0px; margin: auto; text-align: center; %7D%0A.btn.btn-palette .palette2 %7B width: 100%25; height: 100%25; min-width: auto; box-shadow: rgba%280, 0, 0, 0.1%29 0px 0px 0px 1px; border-radius: 3px; border: none; %7D%0A%23nav-top, %23nav-top nav.navbar-default %7B transition: all 0.3s ease-out; background: 0px 0px; %7D%0A%23nav-top %7B width: 100%25; height: 70px; position: fixed; z-index: 28; %7D%0A%23nav-top nav.navbar-default %7B border: none; color: rgb%2868, 68, 68%29; max-width: 1024px; margin: 20px auto; font-family: 'century gothic', arial; %7D%0A%23nav-top.dim %7B height: 50px; background: rgba%28255, 255, 255, 0.9%29; %7D%0A%23nav-top.dim nav.navbar-default %7B margin: 5px auto; %7D%0A%23nav-top %23nav-collapse, %23nav-top .container-fluid %7B padding: 0px; %7D%0A%23iconview %23nav-top nav.navbar-default %7B text-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A%23nav-top nav.navbar-default .navbar-brand %7B padding-top: 9px; %7D%0A%23nav-top li.dropdown %7B cursor: pointer; padding: 0px; %7D%0A%23nav-top li.dropdown .avatar %7B width: 24px; height: 24px; margin-right: 10px; border-radius: 3px; background-color: rgb%28221, 221, 221%29; background-size: contain; display: inline-block; vertical-align: middle; %7D%0A%23nav-top li.dropdown li %7B text-shadow: none; %7D%0A%23nav-top li.dropdown .dropdown-menu %7B background: rgb%28255, 255, 255%29; position: absolute; border-radius: 3px; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.1%29 0px 2px 3px; %7D%0A%23nav-top .pull-right li.dropdown .dropdown-menu %7B left: auto; right: 5px; %7D%0A%23nav-top .navbar-nav %7B float: left; margin: 0px; %7D%0A%23iconview %23nav-top.dim, %23nav-top.invert.dim, .ldmodal .cover, body.invert %23nav-top.dim %7B background: rgba%280, 0, 0, 0.5%29; %7D%0A%23nav-top li%23nav-profile.dropdown ul.dropdown-menu::before %7B content: ' '; display: block; position: absolute; top: -15px; right: 30px; width: 0px; height: 0px; border-width: 7px; border-style: solid; border-color: transparent transparent rgb%28204, 204, 204%29; border-image: initial; %7D%0A%23nav-top li%23nav-profile .label %7B padding-bottom: 0.2em; margin-left: 5px; vertical-align: middle; %7D%0A%23nav-top li%23nav-profile .inline-block %7B padding-top: 0.2em; %7D%0A%23iconview %23nav-top li.dropdown ul.dropdown-menu, body.invert %23nav-top li.dropdown ul.dropdown-menu %7B background: rgba%280, 0, 0, 0.6%29; border: 1px solid rgba%280, 0, 0, 0.7%29; %7D%0A%23iconview %23nav-top li.dropdown ul.dropdown-menu li.divider, body.invert %23nav-top li.dropdown ul.dropdown-menu li.divider %7B background-color: rgba%280, 0, 0, 0.4%29; %7D%0A%23iconview %23nav-top li.dropdown ul.dropdown-menu::before, body.invert %23nav-top li.dropdown ul.dropdown-menu::before %7B border-bottom-color: rgba%280, 0, 0, 0.5%29; %7D%0A%23nav-login, %23nav-signup %7B padding-right: 0px; %7D%0A.code %7B font-family: consolas, 'courier new'; background: rgba%280, 0, 0, 0.03%29; overflow-x: scroll; border: 1px solid rgb%28221, 221, 221%29; padding: 15px; %7D%0A.ads %7B width: 320px; height: 30px; cursor: pointer; position: absolute; background: rgb%2834, 34, 34%29; color: rgb%28238, 238, 238%29; font-size: 20px; line-height: 20px; text-align: center; z-index: 13; border: 5px solid rgb%2834, 34, 34%29; border-radius: 3px; left: 50%25; margin-top: 5px; transform: translate%28-50%25, -50%25%29; %7D%0A.ldColorPicker %7B z-index: 10; %7D%0A.btn.disabled.grayed %7B cursor: not-allowed; background: rgb%28251, 251, 251%29; %7D%0Abody, html %7B margin: 0px; padding: 0px; %7D%0Abody, h1, h2, h3, h4, h5, h6, html %7B font-family: 'varela round', arial; %7D%0A.icon-middle %7B vertical-align: middle; %7D%0A%23landing %7B width: 100%25; height: 400px; color: rgb%28255, 255, 255%29; position: relative; border-bottom: 10px solid rgb%2834, 34, 34%29; background: url%28'/assets/img/bk-icon.jpg'%29 center top no-repeat fixed rgb%28242, 189, 145%29; %7D%0A%23landing .inner %7B transform: translateY%2840px%29; max-width: 800px; width: 96%25; height: 260px; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; margin: auto; %7D%0A%23landing .inner .btn.btn-transparent, %23landing .inner input.form-control %7B border: 1px solid rgb%28255, 255, 255%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 1px; %7D%0A%23landing .inner .btn.btn-transparent %7B color: rgb%28255, 255, 255%29; background: rgba%28255, 255, 255, 0.1%29; text-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 1px; %7D%0A%23landing .inner .title %7B text-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 1px; %7D%0A%23root %7B margin: 20px; %7D%0A%23comment, %23faq %7B max-width: 1024px; width: 90%25; margin: 20px auto; %7D%0A%23faq %7B margin: auto; text-align: left; %7D%0A%23faq.document h3 %7B margin: 30px 0px 10px; %7D%0A.document .content h4 %7B margin: 5px 0px 15px; %7D%0A.document .content h4::before %7B content: '•'; display: inline-block; margin: 0px 5px 0px -13px; %7D%0A.ldmodal .cover %7B position: fixed; top: 0px; left: 0px; width: 100%25; height: 100%25; z-index: 30; %7D%0A.ldmodal .cover-inner %7B position: fixed; top: 0px; left: 0px; right: 0px; bottom: 0px; margin: auto; width: 100px; height: 100px; font-size: 64px; color: rgb%28255, 255, 255%29; z-index: 31; text-align: center; %7D%0A.ld.reverse %7B animation-direction: reverse; %7D%0A.ld.xhalf %7B animation-duration: 0.5s; %7D%0A.ld.x1 %7B animation-duration: 1s; %7D%0A.ld.x2 %7B animation-duration: 2s; %7D%0A.ld.x4 %7B animation-duration: 4s; %7D%0A.ld.running %7B animation-play-state: running; %7D%0A.ld.paused %7B animation-play-state: paused; %7D%0A.ld.f00 %7B animation-delay: 0s; %7D%0A.ld.f01 %7B animation-delay: -0.1s; %7D%0A.ld.f02 %7B animation-delay: -0.2s; %7D%0A.ld.f03 %7B animation-delay: -0.3s; %7D%0A.ld.f04 %7B animation-delay: -0.4s; %7D%0A.ld.f05 %7B animation-delay: -0.5s; %7D%0A.ld.f06 %7B animation-delay: -0.6s; %7D%0A.ld.f07 %7B animation-delay: -0.7s; %7D%0A.ld.f08 %7B animation-delay: -0.8s; %7D%0A.ld.f09 %7B animation-delay: -0.9s; %7D%0A.ld.f10 %7B animation-delay: -1s; %7D%0A.ld-ball, .ld-cross, .ld-hourglass, .ld-loader, .ld-pie, .ld-ring, .ld-spinner, .ld-square %7B width: 1em; height: 1em; position: relative; color: inherit; display: inline-block; %7D%0A.ld-ball::after, .ld-ring::after, body, html %7B width: 100%25; height: 100%25; %7D%0A.ld-ball::after, .ld-hourglass::after, .ld-ring::after %7B position: absolute; margin: auto; top: 0px; left: 0px; right: 0px; bottom: 0px; content: ' '; display: inline-block; background: center center / cover no-repeat; %7D%0A.ld-loader::after %7B width: 100%25; height: 100%25; %7D%0A.ld-cross::after, .ld-loader::after, .ld-pie::after, .ld-spinner::after, .ld-square::after %7B position: absolute; margin: auto; top: 0px; left: 0px; right: 0px; bottom: 0px; content: ' '; display: inline-block; background: center center / cover no-repeat; %7D%0A.ld-ball::after %7B border-radius: 50%25; background: currentcolor; %7D%0A.ld-pie::after %7B width: 0px; height: 0px; border-width: 0.5em; -webkit-background-clip: padding-box; border-color: currentcolor currentcolor currentcolor transparent; %7D%0A.ld-hourglass::after, .ld-pie::after, .ld-ring::after %7B border-radius: 50%25; border-style: solid; %7D%0A.ld-ring::after %7B -webkit-background-clip: padding-box; box-sizing: border-box; border-width: 0.15em; border-color: currentcolor currentcolor currentcolor transparent; %7D%0A.ld-hourglass::after %7B width: 0px; height: 0px; background: 0px 0px; border-width: 0.5em; border-color: currentcolor transparent; %7D%0A.ld-cross::after %7B width: 18%25; height: 18%25; background: currentcolor; box-shadow: currentcolor 0px 0.18em 0px 1px, currentcolor 0px -0.18em 0px 1px, currentcolor 0.18em 0px 0px 1px, currentcolor -0.18em 0px 0px 1px, currentcolor 0px 0.36em 0px 1px, currentcolor 0px -0.36em 0px 1px, currentcolor 0.36em 0px 0px 1px, currentcolor -0.36em 0px 0px 1px; %7D%0A.ld-square::after %7B width: 90%25; height: 90%25; background: currentcolor; %7D%0A.ld-spinner::after %7B width: 20%25; height: 20%25; border-radius: 50%25; background: 0px 0px; box-shadow: currentcolor 0px 0.5em 0px 0px, currentcolor 0px -0.5em 0px 0px, currentcolor 0.5em 0px 0px 0px, currentcolor -0.5em 0px 0px 0px, currentcolor 0.353553em 0.353553em 0px 0px, currentcolor -0.353553em 0.353553em 0px 0px, currentcolor 0.353553em -0.353553em 0px 0px, currentcolor -0.353553em -0.353553em 0px 0px; %7D%0A.ld-loader %7B background-size: cover; %7D%0A.ld.ld-blink %7B animation: ld-blink 1s linear infinite; %7D%0A.ld.ld-blur %7B animation: ld-blur 1s infinite; %7D%0A.ld.ld-breath %7B animation: ld-breath 1s infinite; %7D%0A.ld.ld-broadcast %7B animation: ld-broadcast 1s ease-out infinite; border-radius: 50%25; %7D%0A.ld.ld-clock %7B animation: ld-clock 9s cubic-bezier%280, 0.7, 0.3, 1%29 infinite; %7D%0A.ld.ld-cycle %7B animation: ld-cycle 1s linear infinite; %7D%0A.ld.ld-fade %7B animation: ld-fade 1s linear infinite; %7D%0A.ld.ld-flip %7B animation: ld-flip 2s infinite; %7D%0A.ld.ld-flip-v %7B animation: ld-flip-v 1s infinite; %7D%0A.ld.ld-flip-h %7B animation: ld-flip-h 1s infinite; %7D%0A.ld.ld-coin-v %7B animation: ld-coin-v 2s infinite; %7D%0A.ld.ld-coin-h %7B animation: ld-coin-h 2s infinite; %7D%0A.ld.ld-heartbeat %7B animation: ld-heartbeat 0.8s cubic-bezier%280.215, 0.61, 0.355, 1%29 infinite; %7D%0A.ld.ld-radio %7B position: relative; display: inline-block; margin: 0px; padding: 0px; %7D%0A.ld.ld-radio::after %7B animation: ld-radio 1s infinite; content: ' '; display: block; position: absolute; top: 0px; left: 0px; width: 100%25; height: 100%25; border: 6px solid rgb%280, 0, 0%29; border-radius: 50%25; background: 0px 0px; %7D%0A.ld.ld-radio.square::after %7B border-radius: 0px; %7D%0A.ld.ld-rotate %7B animation: ld-rotate 1s infinite; %7D%0A.ld.ld-rubber %7B animation: ld-rubber 1s ease-out infinite; %7D%0A.ld.ld-shadow, .ld.ld-shadow-a %7B animation: ld-shadow 1s infinite; border-radius: 50%25; %7D%0A.ld.ld-shadow-a %7B animation: ld-shadow-a 0.5s infinite; box-shadow: rgba%280, 0, 0, 0.5%29 3px 0px 0px 6px; %7D%0A.ld.ld-skew %7B animation: ld-skew 1s infinite; %7D%0A.ld.ld-spin %7B animation: ld-spin 1s infinite; %7D%0A.ld.ld-spin-fast %7B animation: ld-spin-fast 1s infinite; %7D%0A.ld.ld-squeeze %7B animation: ld-squeeze 0.8s cubic-bezier%280.215, 0.61, 0.355, 1%29 infinite; %7D%0A.ld.ld-surprise %7B animation: ld-surprise 1s linear infinite; %7D%0A.ld.ld-tick %7B animation: ld-tick 1s ease-out infinite; %7D%0A.ld.ld-vortex-in %7B animation: ld-vortex-in 2s cubic-bezier%280.3, 0, 1, 0.7%29 infinite; %7D%0A.ld.ld-vortex-out %7B animation: ld-vortex-out 2s cubic-bezier%280.5, 0, 1, 0.5%29 infinite; %7D%0A.ld.ld-wrench %7B animation: ld-wrench 1s infinite; %7D%0A.ld.ld-pulse %7B animation: ld-pulse 0.8s cubic-bezier%280.215, 0.61, 0.355, 1%29 infinite; %7D%0A.ld.ld-bounce %7B animation: ld-bounce 1s infinite; %7D%0A.ld.ld-bounce-rtl %7B animation: ld-bounce-rtl 1s linear infinite; %7D%0A.ld.ld-bounce-ltr %7B animation: ld-bounce-ltr 1s linear infinite; %7D%0A.ld.ld-float %7B animation: ld-float 1s infinite; %7D%0A.ld.ld-hit %7B animation: ld-hit 2s infinite; %7D%0A.ld.ld-jelly %7B animation: ld-jelly 1s linear infinite; %7D%0A.ld.ld-jump %7B animation: ld-jump 1.5s ease-in infinite; %7D%0A.ld.ld-orbit %7B animation: ld-orbit 1s linear infinite; %7D%0A.ld.ld-rush-rtl %7B animation: ld-rush-rtl 1.5s linear infinite; %7D%0A.ld.ld-rush-ltr %7B animation: ld-rush-ltr 1.5s linear infinite; %7D%0A.ld.ld-shake %7B animation: ld-shake 1s linear infinite; %7D%0A.ld.ld-slide-ltr %7B animation: ld-slide-ltr 1s infinite; %7D%0A.ld.ld-slide-rtl %7B animation: ld-slide-rtl 1s infinite; %7D%0A.ld.ld-slide-btt %7B animation: ld-slide-btt 1s infinite; %7D%0A.ld.ld-slide-ttb %7B animation: ld-slide-ttb 1s infinite; %7D%0A.ld.ld-tremble %7B animation: ld-tremble 1s infinite; %7D%0A.ld.ld-wander-h %7B animation: ld-wander-h 1s ease-out infinite; %7D%0A.ld.ld-wander-v %7B animation: ld-wander-v 1s ease-out infinite; %7D%0A.ld.ld-bounce-px %7B animation: ld-bounce-px 1s infinite; %7D%0A.ld.ld-bounce-px-rtl %7B animation: ld-bounce-px-rtl 1s linear infinite; %7D%0A.ld.ld-bounce-px-ltr %7B animation: ld-bounce-px-ltr 1s linear infinite; %7D%0A.ld.ld-bounce-a-px %7B animation: ld-bounce-a-px 2s infinite; %7D%0A.ld.ld-float-px %7B animation: ld-float-px 1s infinite; %7D%0A.ld.ld-hit-px %7B animation: ld-hit-px 2s infinite; %7D%0A.ld.ld-jelly-px %7B animation: ld-jelly-px 1s linear infinite; %7D%0A.ld.ld-jump-px %7B animation: ld-jump-px 1.5s ease-in infinite; %7D%0A.ld.ld-orbit-px %7B animation: ld-orbit-px 1s linear infinite; %7D%0A.ld.ld-rush-px-rtl %7B animation: ld-rush-px-rtl 1.5s linear infinite; %7D%0A.ld.ld-rush-px-ltr %7B animation: ld-rush-px-ltr 1.5s linear infinite; %7D%0A.ld.ld-shake-px %7B animation: ld-shake-px 1s linear infinite; %7D%0A.ld.ld-slide-px-ltr %7B animation: ld-slide-px-ltr 1s infinite; %7D%0A.ld.ld-slide-px-rtl %7B animation: ld-slide-px-rtl 1s infinite; %7D%0A.ld.ld-slide-px-btt %7B animation: ld-slide-px-btt 1s infinite; %7D%0A.ld.ld-slide-px-ttb %7B animation: ld-slide-px-ttb 1s infinite; %7D%0A.ld.ld-tremble-px %7B animation: ld-tremble-px 1s infinite; %7D%0A.ld.ld-wander-px-h %7B animation: ld-wander-px-h 1s ease-out infinite; %7D%0A.ld.ld-wander-px-v %7B animation: ld-wander-px-v 1s ease-out infinite; %7D%0A.ld-ext-bottom, .ld-ext-left, .ld-ext-right, .ld-ext-top, .ld-over, .ld-over-full, .ld-over-full-inverse, .ld-over-inverse %7B position: relative; transition: all 0.3s ease-in; overflow: hidden; %7D%0A.ld-ext-right.running %7B padding-right: 2.5em !important; %7D%0A.ld-ext-left.running %7B padding-left: 2.5em !important; %7D%0A.ld-ext-bottom.running %7B padding-bottom: 2.5em !important; %7D%0A.ld-ext-top.running %7B padding-top: 2.5em !important; %7D%0A.ld-over-full-inverse::before, .ld-over-full::before, .ld-over-inverse::before, .ld-over::before %7B content: ' '; display: block; opacity: 0; position: absolute; z-index: -1; top: 0px; left: 0px; width: 100%25; height: 100%25; transition: all 0.3s ease-in; background: rgba%28240, 240, 240, 0.8%29; %7D%0A.ld-over-full-inverse::before, .ld-over-full::before %7B position: fixed; background: rgba%28255, 255, 255, 0.8%29; %7D%0A.ld-over-full-inverse.running::before, .ld-over-full.running::before, .ld-over-inverse.running::before, .ld-over.running::before %7B opacity: 1; z-index: 999998; display: block; %7D%0A.ld-over-full-inverse::before, .ld-over-inverse::before %7B background: rgba%280, 0, 0, 0.6%29; %7D%0A.ldBar %7B position: relative; %7D%0A.ldBar-label::after %7B content: '%25'; display: inline; %7D%0A.ldBar.no-percent .ldBar-label::after %7B content: ''; %7D%0A%5Bclass*=' icon-'%5D, %5Bclass%5E='icon-'%5D %7B speak: none; font-style: normal; font-weight: 400; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; font-family: icomoon !important; %7D%0A.icon-form-inputbox::before %7B content: ''; %7D%0A.icon-form-slider-left::before %7B content: ''; %7D%0A.icon-arrow-down-bold-circle-o::before %7B content: ''; %7D%0A.icon-arrow-down-bold-circle::before %7B content: ''; %7D%0A.icon-arrow-down-bold::before %7B content: ''; %7D%0A.icon-arrow-down-chevron::before %7B content: ''; %7D%0A.icon-arrow-down-circle-o::before %7B content: ''; %7D%0A.icon-arrow-down-circle::before %7B content: ''; %7D%0A.icon-arrow-down::before %7B content: ''; %7D%0A.icon-arrow-left-bold-circle-o::before %7B content: ''; %7D%0A.icon-arrow-left-bold-circle::before %7B content: ''; %7D%0A.icon-arrow-left-bold::before %7B content: ''; %7D%0A.icon-arrow-left-chevron::before %7B content: ''; %7D%0A.icon-arrow-left-circle-o::before %7B content: ''; %7D%0A.icon-arrow-left-circle::before %7B content: ''; %7D%0A.icon-arrow-left::before %7B content: ''; %7D%0A.icon-arrow-right-bold-circle-o::before %7B content: ''; %7D%0A.icon-arrow-right-bold-circle::before %7B content: ''; %7D%0A.icon-arrow-right-bold::before %7B content: ''; %7D%0A.icon-arrow-right-chevron::before %7B content: ''; %7D%0A.icon-arrow-right-circle-o::before %7B content: ''; %7D%0A.icon-arrow-right-circle::before %7B content: ''; %7D%0A.icon-arrow-right::before %7B content: ''; %7D%0A.icon-arrow-up-bold-circle-o::before %7B content: ''; %7D%0A.icon-arrow-up-bold-circle::before %7B content: ''; %7D%0A.icon-arrow-up-bold::before %7B content: ''; %7D%0A.icon-arrow-up-chevron::before %7B content: ''; %7D%0A.icon-arrow-up-circle-o::before %7B content: ''; %7D%0A.icon-arrow-up-circle::before %7B content: ''; %7D%0A.icon-arrow-up::before %7B content: ''; %7D%0A.icon-business-basket::before %7B content: ''; %7D%0A.icon-business-choice::before %7B content: ''; %7D%0A.icon-business-cowork::before %7B content: ''; %7D%0A.icon-business-credit-card::before %7B content: ''; %7D%0A.icon-business-exchange::before %7B content: ''; %7D%0A.icon-business-exp-alt-2::before %7B content: ''; %7D%0A.icon-business-exp-alt::before %7B content: ''; %7D%0A.icon-business-exp::before %7B content: ''; %7D%0A.icon-business-figure-o::before %7B content: ''; %7D%0A.icon-business-figure::before %7B content: ''; %7D%0A.icon-business-globe::before %7B content: ''; %7D%0A.icon-business-lightbulb::before %7B content: ''; %7D%0A.icon-business-money::before %7B content: ''; %7D%0A.icon-business-phone::before %7B content: ''; %7D%0A.icon-business-piggy-bank::before %7B content: ''; %7D%0A.icon-business-rocket::before %7B content: ''; %7D%0A.icon-business-sales-man::before %7B content: ''; %7D%0A.icon-business-sales-up::before %7B content: ''; %7D%0A.icon-business-sales-woman::before %7B content: ''; %7D%0A.icon-business-slide-alt::before %7B content: ''; %7D%0A.icon-business-slide::before %7B content: ''; %7D%0A.icon-business-speaker::before %7B content: ''; %7D%0A.icon-business-target-audience::before %7B content: ''; %7D%0A.icon-business-trace::before %7B content: ''; %7D%0A.icon-business-triangles::before %7B content: ''; %7D%0A.icon-business-unbox::before %7B content: ''; %7D%0A.icon-business-under-construction::before %7B content: ''; %7D%0A.icon-business-work::before %7B content: ''; %7D%0A.icon-loader-balls::before %7B content: ''; %7D%0A.icon-loader-chevron-ring::before %7B content: ''; %7D%0A.icon-loader-clock::before %7B content: ''; %7D%0A.icon-loader-comment::before %7B content: ''; %7D%0A.icon-loader-cycle::before %7B content: ''; %7D%0A.icon-loader-dash-arrow::before %7B content: ''; %7D%0A.icon-loader-dash::before %7B content: ''; %7D%0A.icon-loader-default::before %7B content: ''; %7D%0A.icon-loader-donut::before %7B content: ''; %7D%0A.icon-loader-dot::before %7B content: ''; %7D%0A.icon-loader-double-ring::before %7B content: ''; %7D%0A.icon-loader-eclipse::before %7B content: ''; %7D%0A.icon-loader-flag::before %7B content: ''; %7D%0A.icon-loader-gear::before %7B content: ''; %7D%0A.icon-loader-gps::before %7B content: ''; %7D%0A.icon-loader-gradient::before %7B content: ''; %7D%0A.icon-loader-hourglass::before %7B content: ''; %7D%0A.icon-loader-infinity::before %7B content: ''; %7D%0A.icon-loader-orbit::before %7B content: ''; %7D%0A.icon-loader-recycle::before %7B content: ''; %7D%0A.icon-loader-reload::before %7B content: ''; %7D%0A.icon-loader-ring::before %7B content: ''; %7D%0A.icon-loader-shutter::before %7B content: ''; %7D%0A.icon-loader-step::before %7B content: ''; %7D%0A.icon-loader-tails::before %7B content: ''; %7D%0A.icon-loader-triple-organ::before %7B content: ''; %7D%0A.icon-loader-triple-ring::before %7B content: ''; %7D%0A.icon-loader-wheel::before %7B content: ''; %7D%0A.icon-website-alarm::before %7B content: ''; %7D%0A.icon-website-avatar::before %7B content: ''; %7D%0A.icon-website-clock::before %7B content: ''; %7D%0A.icon-website-close::before %7B content: ''; %7D%0A.icon-website-command::before %7B content: ''; %7D%0A.icon-website-console-invert::before %7B content: ''; %7D%0A.icon-website-console::before %7B content: ''; %7D%0A.icon-website-fire::before %7B content: ''; %7D%0A.icon-website-gift::before %7B content: ''; %7D%0A.icon-website-heart-o::before %7B content: ''; %7D%0A.icon-website-heart::before %7B content: ''; %7D%0A.icon-website-help::before %7B content: ''; %7D%0A.icon-website-history::before %7B content: ''; %7D%0A.icon-website-home::before %7B content: ''; %7D%0A.icon-website-left-click::before %7B content: ''; %7D%0A.icon-website-mail-invert::before %7B content: ''; %7D%0A.icon-website-mail::before %7B content: ''; %7D%0A.icon-website-multi-touch::before %7B content: ''; %7D%0A.icon-website-pulse::before %7B content: ''; %7D%0A.icon-website-right-click::before %7B content: ''; %7D%0A.icon-website-send-mail-invert::before %7B content: ''; %7D%0A.icon-website-send-mail::before %7B content: ''; %7D%0A.icon-website-slide::before %7B content: ''; %7D%0A.icon-website-trash::before %7B content: ''; %7D%0A.icon-website-users::before %7B content: ''; %7D%0A.icon-website-warning-o::before %7B content: ''; %7D%0A.icon-website-warning::before %7B content: ''; %7D%0A.icon-website-wifi::before %7B content: ''; %7D%0Ahtml, body %7B width: 100%25; height: 100%25; margin: 0px; padding: 0px; background: rgb%28255, 255, 255%29; font-family: 'Hiragino Kaku Gothic Pro', Helvetica; %7D%0Ahtml, body, h1, h2, h3, h4, h5, h6 %7B font-family: 'Varela Round', 'Hiragino Kaku Gothic Pro', Helvetica; %7D%0A%23root %7B margin: 0px auto 20px; padding-top: 20px; %7D%0A.spc1 %7B height: 0px; %7D%0A.spc1::after %7B content: ' '; %7D%0A%23debug %7B display: block; position: fixed; top: 10px; left: 10px; z-index: 99999; background: rgb%28255, 0, 0%29; width: 48px; height: 19px; font-size: 10px; color: rgb%28255, 255, 255%29; padding: 4px 7px; opacity: 0.8; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 2px; border-radius: 3px; %7D%0A%23debug::after %7B content: 'DEBUG'; %7D%0A.spc-right %7B margin-right: 5px; %7D%0A.sep %7B border-top: 1px solid rgba%280, 0, 0, 0.2%29; width: 100%25; margin: 7px auto; height: 0px; %7D%0A.sep.huge-gap %7B margin: 21px auto; %7D%0A.sep.dashed %7B border-top-style: dashed; %7D%0A.sep.nogap %7B margin: 0px auto; %7D%0A.sep.light %7B border-top: 1px solid rgba%280, 0, 0, 0.1%29; %7D%0A.sep.grayed %7B border-top-color: rgb%28102, 102, 102%29; %7D%0A.btn.has-tips, .has-tips %7B position: relative; overflow: visible; %7D%0A.btn.has-tips .inner, .has-tips .inner %7B width: 100%25; height: 100%25; overflow: hidden; position: absolute; top: 0px; left: 0px; %7D%0A.btn.has-tips .hover-tip, .has-tips .hover-tip %7B display: block; opacity: 0; z-index: -1; transition: all 0.5s linear; %7D%0A.btn.has-tips:hover .hover-tip, .has-tips:hover .hover-tip, .has-tips.tip-on .hover-tip %7B display: block; opacity: 1; z-index: 10; %7D%0A.has-tips.no-hover:hover .hover-tip, .btn.has-tips.no-hover:hover .hover-tip %7B opacity: 0; z-index: -1; %7D%0A.btn-upload %7B position: relative; overflow: hidden; %7D%0A.btn-upload input %7B position: absolute; width: 100%25; height: 100%25; z-index: 10; top: 0px; left: 0px; opacity: 0.005; cursor: pointer; %7D%0A.loader %7B display: none; opacity: 0; transition: all 0.5s linear; %7D%0A.loader.active %7B display: block; opacity: 1; %7D%0A.loader.fade %7B display: block; %7D%0Asvg %7B display: block; user-select: none; %7D%0A.no-select %7B user-select: none; %7D%0A.clickable %7B cursor: pointer !important; %7D%0Ahr %7B border-top: 1px solid rgba%28200, 200, 200, 0.8%29; %7D%0Ah1, h2, h3, h4, h5, h6 %7B font-weight: bold; %7D%0Ah1.tag, h2.tag, h3.tag, h4.tag, h5.tag, h6.tag %7B display: inline-block; clear: both; padding: 5px 15px 7px 50px; border-radius: 10px 4px 4px 10px; min-width: 200px; text-align: right; margin-left: -10px; margin-right: 10px; border-left: 10px solid rgb%2885, 34, 0%29; background: rgb%28153, 34, 0%29; color: rgb%28255, 255, 255%29; text-shadow: rgba%280, 0, 0, 0.4%29 0px 2px 2px; %7D%0A.tag-center %7B text-align: center; %7D%0A.tag-center h1.tag, .tag-center h2.tag, .tag-center h3.tag, .tag-center h4.tag, .tag-center h5.tag, .tag-center h6.tag %7B text-align: center; padding-left: 25px; padding-right: 25px; border-radius: 10px; border-right: 10px solid rgb%2885, 34, 0%29; %7D%0A.light %7B font-weight: normal; %7D%0A.code %7B font-family: 'courier new'; overflow-x: scroll; padding: 10px; background: rgba%280, 0, 0, 0.1%29; white-space: pre; margin: 15px auto; %7D%0A.hidden-xs-inline %7B display: inline; %7D%0A.shown-xs-inline %7B display: none; %7D%0A.hidden-640-inline %7B display: inline; %7D%0A.hidden-800-inline %7B display: inline; %7D%0A.grayed %7B cursor: default; color: rgb%28153, 153, 153%29; %7D%0A.hover-tip %7B background: rgb%280, 0, 0%29; border-radius: 3px; position: absolute; left: 50%25; transform: translateX%28-50%25%29; min-width: 100px; color: rgb%28255, 255, 255%29; padding: 5px 10px; text-align: center; z-index: 6; font-size: 13px; %7D%0A.hover-tip.mini %7B line-height: 14px; font-size: 10px; min-width: 0px; %7D%0A.hover-tip a %7B color: rgb%28115, 186, 247%29; %7D%0A.hover-tip::before %7B width: 10px; height: 10px; position: absolute; top: -5px; left: 50%25; margin-left: -7px; background: rgb%280, 0, 0%29; display: block; content: ' '; transform: rotate%2845deg%29; %7D%0A.hover-tip.right::before %7B top: 50%25; left: 2px; margin-top: -5px; margin-left: -5px; %7D%0A.hover-tip.bottom %7B top: 100%25; margin-top: 14px; %7D%0A.hover-tip.bottom.mini %7B margin-top: 3px; %7D%0A.hover-tip.top %7B top: auto; bottom: 100%25; %7D%0A.hover-tip.top::before %7B top: auto; bottom: -5px; %7D%0A.hover-tip.as-tag %7B padding: 2px; display: inline-block; left: 10px; transform: none; width: 80%25; %7D%0A.hover-tip.as-tag::before %7B display: none; %7D%0A.hover-tip.as-tag.top %7B border-radius: 5px 5px 0px 0px; %7D%0A.hover-tip.danger %7B background: rgb%28217, 83, 79%29; %7D%0A.hover-tip.danger::before %7B background: rgb%28217, 83, 79%29; %7D%0A.hover-tip.warning %7B background: rgb%28240, 173, 78%29; %7D%0A.hover-tip.warning::before %7B background: rgb%28240, 173, 78%29; %7D%0A.hover-tip.success %7B background: rgb%2892, 184, 92%29; %7D%0A.hover-tip.success::before %7B background: rgb%2892, 184, 92%29; %7D%0A.hover-tip.info %7B background: rgb%2891, 192, 222%29; %7D%0A.hover-tip.info::before %7B background: rgb%2891, 192, 222%29; %7D%0A.hover-tip.primary %7B background: rgb%2851, 122, 183%29; %7D%0A.hover-tip.primary::before %7B background: rgb%2851, 122, 183%29; %7D%0A.rel %7B position: relative !important; %7D%0A.abs %7B position: absolute !important; %7D%0A.inline %7B display: inline !important; %7D%0A.inline-block %7B display: inline-block !important; %7D%0A.block %7B display: block !important; %7D%0A.flexbox %7B display: flex; flex-wrap: wrap; %7D%0A.flexbox.nowrap %7B flex-wrap: nowrap; %7D%0A.flex %7B flex: 1 1 auto; %7D%0A.flex-end %7B flex: 999 1 auto !important; %7D%0A.flex-end::after %7B content: ' '; display: inline-block; %7D%0A.red %7B color: rgb%28199, 37, 78%29; %7D%0A.green %7B color: rgb%2821, 183, 62%29; %7D%0A.blue %7B color: rgb%2851, 122, 183%29; %7D%0A.ellipsis %7B white-space: nowrap; overflow: hidden; text-overflow: ellipsis; %7D%0A.block1024 %7B max-width: 1024px; width: 95%25; margin: auto; %7D%0A.block800 %7B max-width: 800px; width: 95%25; margin: auto; %7D%0A.centered %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; %7D%0A.centered-inside %7B margin: auto; position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; %7D%0A.chunk %7B padding: 10px; box-shadow: rgba%280, 0, 0, 0.05%29 0px 1px 3px; border-radius: 3px; border: 1px solid rgb%28221, 221, 221%29; %7D%0A.blurred %7B filter: blur%2810px%29; transition: filter 1s linear; %7D%0A.clearfix %7B clear: both; %7D%0A.btn .fa.check-icon %7B color: rgb%28153, 153, 153%29; %7D%0A.btn .fa.check-icon::before %7B content: ''; %7D%0A.btn.active .fa.check-icon %7B color: rgb%2821, 183, 62%29; %7D%0A.btn.active .fa.check-icon::before %7B content: ''; %7D%0A.btn-group-aligned %7B margin-top: -1px; padding: 0px; %7D%0A.btn-group-flex %7B display: flex; flex-wrap: nowrap; %7D%0A.btn-group-flex .btn %7B flex: 1 1 0%25; %7D%0A.capfl %7B text-transform: capitalize; %7D%0A.closebtn %7B position: absolute; top: 0px; right: 0px; float: right; font-size: 20px; line-height: 12px; text-align: right; margin: 10px 10px 0px 0px; cursor: pointer; color: rgb%2868, 68, 68%29; z-index: 38; %7D%0A.closebtn::after %7B content: '×'; display: inline; %7D%0A.closebtn.lg %7B font-size: 32px; line-height: 17px; %7D%0A.closebtn.inverse %7B position: relative; border-radius: 50%25; background: rgb%2868, 68, 68%29; color: rgb%28255, 255, 255%29; width: 15px; height: 15px; padding: 0px; text-align: center; float: right; margin: -2px -2px 0px 0px; %7D%0A.closebtn.lg %7B font-size: 25px; width: 23px; height: 23px; line-height: 18px; %7D%0A.closebtn.inverse %7B color: rgb%2868, 68, 68%29; background: none; font-weight: 900; %7D%0A.closebtn.inner %7B position: absolute; top: 4px; right: 4px; %7D%0A.closebtn.lg %7B font-size: 32px; %7D%0A.closebtn.lg.inner %7B top: 12px; right: 12px; %7D%0A.closebtn.outer %7B position: absolute; top: -4px; right: -4px; %7D%0A.grayed %7B color: rgb%28153, 153, 153%29; %7D%0A.light %7B color: rgb%28187, 187, 187%29; %7D%0A.block %7B display: block; %7D%0A.tiny %7B font-size: 0.65em; %7D%0A.big %7B font-size: 1.5em; %7D%0A.huge %7B font-size: 3em; %7D%0A.label-light-inverse %7B background: rgb%28221, 221, 221%29; color: rgb%28255, 255, 255%29; %7D%0A%23nav-top %7B width: 100%25; height: 70px; background: none; position: fixed; transition: all 0.3s ease-out; z-index: 28; %7D%0A%23nav-top nav.navbar-default %7B transition: all 0.3s ease-out; %7D%0A%23nav-top.dim %7B height: 50px; background: rgba%28255, 255, 255, 0.9%29; %7D%0A%23nav-top.dim nav.navbar-default %7B margin: 5px auto; %7D%0A%23nav-top .container-fluid, %23nav-top %23nav-collapse %7B padding: 0px; %7D%0A%23iconview %23nav-top nav.navbar-default %7B text-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A%23nav-top nav.navbar-default %7B background: none; border: none; color: rgb%2868, 68, 68%29; max-width: 1024px; margin: 20px auto; font-family: 'century gothic', arial; %7D%0A%23nav-top nav.navbar-default .navbar-brand %7B padding-top: 9px; %7D%0A%23nav-top li.dropdown %7B cursor: pointer; padding: 0px; %7D%0A%23nav-top li.dropdown .avatar %7B width: 24px; height: 24px; margin-right: 10px; border-radius: 3px; background-color: rgb%28221, 221, 221%29; background-size: contain; display: inline-block; vertical-align: middle; %7D%0A%23nav-top li.dropdown li %7B text-shadow: none; %7D%0A%23nav-top li.dropdown .dropdown-menu %7B background: rgb%28255, 255, 255%29; position: absolute; border-radius: 3px; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.1%29 0px 2px 3px; %7D%0A%23nav-top .pull-right li.dropdown .dropdown-menu %7B left: auto; right: 5px; %7D%0A%23nav-top .navbar-nav %7B float: left; margin: 0px; %7D%0A%23nav-login i.fa %7B display: none; %7D%0A%23iconview %23nav-top.dim, %23nav-top.invert.dim, body.invert %23nav-top.dim %7B background: rgba%280, 0, 0, 0.5%29; %7D%0A%23iconview %23nav-top nav.navbar-default, %23nav-top.invert nav.navbar-default, body.invert %23nav-top nav.navbar-default %7B color: rgb%28255, 255, 255%29; %7D%0A%23nav-top li%23nav-profile.dropdown ul.dropdown-menu::before %7B content: ' '; display: block; position: absolute; top: -15px; right: 30px; width: 0px; height: 0px; border-width: 7px; border-style: solid; border-color: transparent transparent rgb%28204, 204, 204%29; border-image: initial; %7D%0A%23nav-top li%23nav-profile .label %7B padding-bottom: 0.2em; margin-left: 5px; vertical-align: middle; %7D%0A%23nav-top li%23nav-profile .inline-block %7B padding-top: 0.2em; %7D%0A%23iconview %23nav-top li.dropdown ul.dropdown-menu, body.invert %23nav-top li.dropdown ul.dropdown-menu %7B background: rgba%280, 0, 0, 0.6%29; border: 1px solid rgba%280, 0, 0, 0.7%29; %7D%0A%23iconview %23nav-top li.dropdown ul.dropdown-menu li.divider, body.invert %23nav-top li.dropdown ul.dropdown-menu li.divider %7B background-color: rgba%280, 0, 0, 0.4%29; %7D%0A%23iconview %23nav-top li.dropdown ul.dropdown-menu::before, body.invert %23nav-top li.dropdown ul.dropdown-menu::before %7B border-bottom-color: rgba%280, 0, 0, 0.5%29; %7D%0A%23nav-login, %23nav-signup %7B padding-right: 0px; %7D%0Abody.auth-static %7B background: url%28'/assets/img/bk.jpg'%29 0%25 0%25 / cover; animation: bk-drift 120s ease-in-out infinite; %7D%0A%23authpanel-outer %7B position: fixed; z-index: 29; top: 0px; left: 0px; background: rgba%280, 0, 0, 0.5%29; width: 0px; height: 0px; overflow: hidden; opacity: 0; transition: opacity 0.5s ease-in-out; %7D%0A%23authpanel-outer.active %7B width: 100%25; height: 100%25; display: block; opacity: 1; transition: opacity 0.5s ease-in-out; %7D%0A%23authpanel-outer::before %7B display: block; position: absolute; z-index: 36; content: ' '; top: 0px; left: 0px; width: 100%25; height: 100%25; background: url%28'/assets/img/bk.jpg'%29 0%25 0%25 / cover; animation: bk-drift 120s ease-in-out infinite; opacity: 0.7; %7D%0A%23authpanel-inner %7B position: absolute; z-index: 37; width: 400px; height: 350px; top: 50%25; left: 50%25; margin: -195px 0px 0px -200px; background: rgba%28255, 255, 255, 0.85%29; border-radius: 2px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 3px 3px; %7D%0A%23authpanel-inner .title %7B font-family: 'century gothic', arial; text-align: center; font-size: 1.3em; text-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; border-bottom: 1px solid rgb%28187, 187, 187%29; padding: 20px; %7D%0A%23authpanel-inner .form %7B margin: 20px; %7D%0A%23authpanel-inner .form .btn %7B box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A%23authpanel-inner .form .error %7B margin: -20px 0px 8px; text-align: center; color: rgb%28238, 17, 34%29; %7D%0A%23authpanel-inner .input-group %7B margin-bottom: 5px; %7D%0A%23authpanel-inner .hint %7B margin-top: 10px; text-decoration: underline; font-size: 12px; color: rgb%2851, 51, 51%29; text-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; %7D%0A%23authpanel-inner .close-btn %7B position: absolute; top: -10px; left: -10px; background: rgb%28255, 255, 255%29; border-radius: 50%25; box-shadow: rgba%280, 0, 0, 0.3%29 0px 2px 3px; padding: 5px; line-height: 16px; font-size: 16px; opacity: 0.9; cursor: pointer; %7D%0A%23authpanel-inner .close-btn:hover %7B opacity: 1; %7D%0A.or %7B position: relative; margin: 10px 0px; height: 1px; %7D%0A.or::after %7B display: block; content: 'or'; background: rgb%28255, 255, 255%29; border-radius: 50%25; border: 1px solid rgb%28255, 255, 255%29; padding: 2px; text-align: center; width: 20px; height: 20px; position: absolute; right: auto; line-height: 12px; font-size: 12px; color: rgb%28204, 204, 204%29; left: 50%25; margin-left: -11px; top: -10px; %7D%0A%23pal-root %7B margin: 0px auto 20px; padding-top: 70px; %7D%0A%23pal-edit %7B position: relative; height: 420px; %7D%0A%23pal-edit h3, %23pal-edit %23paledit-color-opt, %23pal-edit .palette-color %7B transition: all 0.3s ease-in-out; %7D%0A%23pal-edit-loading %7B position: absolute; top: 40%25; left: 40%25; font-size: 12px; margin: -6px 0px 0px 24px; %7D%0A%23paledit-color-opt %7B width: 486px; border-bottom: 1px solid rgb%28221, 221, 221%29; padding: 5px 0px 10px; %7D%0A%23paledit-color-opt .btn-danger i.fa %7B display: none; %7D%0A%23pal-wheel %7B float: left; width: 400px; margin: 10px 40px 0px 20px; %7D%0A%23pal-wheel svg %7B width: 400px; height: 400px; margin: auto; %7D%0A.hint-modal %7B border-radius: 5px; box-shadow: rgba%280, 0, 0, 0.8%29 0px 0px 80px; border: 2px solid rgb%28255, 255, 255%29; position: fixed; cursor: pointer; padding: 5px; transition: all 0.5s ease-in-out; opacity: 0.95; z-index: 27; %7D%0A.hint-modal.dismiss %7B opacity: 0; z-index: -1; %7D%0A.hint-modal .dismiss %7B text-align: center; background: rgb%28221, 221, 221%29; %7D%0A%23paledit-pal-hint %7B width: 400px; background: url%28'/assets/img/palette-hint.png'%29 no-repeat rgb%28255, 255, 255%29; left: 50%25; margin-left: -195px; top: 50%25; margin-top: -100px; %7D%0A%23paledit-pal-hint.dim %7B opacity: 0; z-index: -1; %7D%0A%23paledit-editor-hint %7B width: 350px; background: rgb%28255, 255, 255%29; bottom: 20px; left: 50%25; margin-left: -170px; position: absolute; %7D%0A%23paledit-editor-hint::before %7B content: ' '; display: block; position: absolute; top: -12px; left: 50%25; margin-left: -12px; transform: rotate%2845deg%29; background: rgb%28255, 255, 255%29; width: 20px; height: 20px; %7D%0A.hint.dismiss, .hint.dim %7B opacity: 0; z-index: -1; %7D%0A.hint %7B transition: all 0.5s ease-in-out; opacity: 0.95; z-index: 27; cursor: pointer; %7D%0A%23paledit-more-hint %7B position: fixed; bottom: 20px; left: 50%25; margin-left: -120px; text-align: center; width: 240px; text-shadow: rgba%280, 0, 0, 0.5%29 0px 1px 2px; z-index: 27; animation: paledit-ptr-jump 1s ease-in-out infinite; opacity: 1; transition: all 0.5s ease-in-out; %7D%0A%23paledit-more-hint .fa %7B font-size: 64px; %7D%0A%23paledit-more-hint.dim %7B z-index: -1; opacity: 0; %7D%0A%23paledit-tut-hint %7B position: fixed; bottom: 30px; left: 50%25; margin-left: -128px; background: rgb%28102, 187, 51%29; padding: 7px 14px; border-radius: 5px; border: 1px solid rgb%2868, 102, 68%29; color: rgb%28255, 255, 255%29; box-shadow: rgba%280, 128, 0, 0.7%29 0px 0px 20px; font-size: 1.3em; animation: tut-hint-jump 1s linear infinite; %7D%0A%23pal-list %7B position: relative; %7D%0A%23pal-from-one-badge %7B position: absolute; top: -75px; right: 50px; %7D%0A.video %7B width: 600px; height: 400px; background: rgb%280, 0, 0%29; border-radius: 3px; margin: 10px auto; %7D%0A.paledit-palette %7B position: relative; %7D%0A.paledit-palette .add-color %7B text-align: center; color: rgb%28153, 153, 153%29; line-height: 44px; font-size: 16px; border: 1px dashed rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; border-radius: 3px; cursor: pointer; position: absolute; left: -34px; margin-top: 0px; width: 24px; height: 44px; padding-left: 1px; user-select: none; %7D%0A.paledit-palette .color.active::after %7B position: absolute; display: none; left: 50%25; bottom: -10px; margin-left: -8px; font-family: 'Glyphicons Halflings'; -webkit-font-smoothing: antialiased; content: ''; color: rgb%2834, 34, 34%29; animation: paledit-ptr-jump 1s ease-in-out infinite; %7D%0A.paledit-palette .color.active.dark::after %7B color: rgb%28221, 221, 221%29; %7D%0A.paledit-palette .cursor %7B position: absolute; width: 100px; color: rgb%2834, 34, 34%29; %7D%0A.paledit-palette .cursor::after %7B position: absolute; bottom: -8px; margin-left: -8px; transition: margin-bottom 1s ease-out; animation: paledit-ptr-jump 1s ease-in-out infinite; display: block; font-family: 'Glyphicons Halflings'; -webkit-font-smoothing: antialiased; content: ''; text-shadow: rgb%280, 0, 0%29 0px 1px 2px; %7D%0A.paledit-palette .cursor.dark %7B color: rgb%28187, 187, 187%29; %7D%0A%23paledit-detail %7B position: relative; float: left; transition: all 0.5s ease-in-out; %7D%0A%23paledit-detail h3 .glyphicon, %23paledit-detail h3 .fa %7B vertical-align: top; %7D%0A%23paledit-detail h3 .btn-default %7B border: none; background: none; vertical-align: bottom; line-height: 14px; %7D%0A%23paledit-detail h3 .pull-right %7B margin-right: 64px; margin-top: 0px; %7D%0A%23paledit-detail h3 .btn%5Bdisabled='disabled'%5D %7B color: rgb%28153, 153, 153%29; %7D%0A%23paledit-detail h3 .btn:not%28%5Bdisabled='disabled'%5D%29 .fa-remove %7B color: rgb%28255, 0, 34%29; %7D%0A%23paledit-detail .func %7B display: inline; %7D%0A%23paledit-detail .func .fa-check-circle %7B font-size: 20px; %7D%0A%23paledit-detail .func .btn %7B padding: 3px 7px; %7D%0A%23paledit-detail .ref %7B margin-left: -20px; %7D%0A%23paledit-detail .paledit-palette, %23paledit-detail .palette-color %7B width: 100%25; max-width: 456px; position: relative; %7D%0A%23paledit-detail .palette-color %7B display: inline-block; %7D%0A%23paledit-name, %23paledit-name-input %7B font-family: calibri, Arial, sans-serif; max-width: 250px; overflow: hidden; display: inline-block; text-overflow: ellipsis; white-space: nowrap; vertical-align: top; %7D%0A%23paledit-name-input %7B line-height: 18px; font-size: 18px; %7D%0A%23paledit-float %7B position: fixed; top: 50px; left: 50%25; margin-left: -228px; width: 456px; height: 111px; padding-top: 15px; z-index: 18; opacity: 1; transition: all 0.5s ease-in-out; %7D%0A%23paledit-float.dim %7B height: 0px; overflow: hidden; opacity: 0; %7D%0A%23paledit-float .palette %7B width: 84px; %7D%0A%23paledit-float .palette .palette-color %7B height: 24px; %7D%0A%23paledit-float .palette:nth-of-type%281%29 %7B margin-left: 0px; %7D%0A%23paledit-float .palette:nth-of-type%284%29 %7B margin-right: 0px; %7D%0A%23paledit-float .paledit-palette .add-color, %23paledit-float .paledit-palette .palette-color %7B height: 32px; line-height: 32px; %7D%0A%23paledit-float-mask %7B position: fixed; width: 100%25; height: 100px; background: rgba%28255, 255, 255, 0.96%29; border-top: 1px dashed rgb%28204, 204, 204%29; border-bottom: 1px solid rgb%28204, 204, 204%29; z-index: 17; top: 50px; left: 0px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; opacity: 1; transition: all 0.5s ease-in-out; %7D%0A%23paledit-float-mask.dim %7B height: 0px; overflow: hidden; opacity: 0; %7D%0A%23palview .row %7B margin: 0px; %7D%0A.palette %7B display: inline-block; margin: 10px 20px 20px; text-align: right; %7D%0A.palette a %7B color: rgb%2834, 34, 34%29; %7D%0A.palette .name, .palette .func %7B display: inline-block; user-select: none; %7D%0A.palette .name %7B float: left; %7D%0A.palette .func %7B color: rgb%28119, 119, 119%29; font-size: 14px; %7D%0A.palette .func i.glyphicon, .palette .func i.fa %7B vertical-align: text-top; margin-right: 5px; %7D%0A.palette .name, .palette .tag %7B text-align: left; width: 53%25; font-family: calibri, Arial, sans-serif; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; %7D%0A.palette .tag %7B display: none; font-size: 12px; text-align: right; %7D%0A.palette .glyphicon, .palette .fa %7B cursor: pointer; %7D%0A.palette .func .fav, .palette-func .like %7B display: inline-block; %7D%0A.palette .func .fav.active, .palette-func .like.active %7B color: rgb%28255, 34, 102%29; %7D%0A.palette .func .fav i.glyphicon, .palette-func .like i.glyphicon, .palette .func .fav i.fa, .palette-func .like i.fa %7B margin-right: 1px; %7D%0A.palette .func .fav span, .palette-func .like span %7B font-size: 12px; font-family: calibri, Arial, sans-serif; font-weight: bold; %7D%0A.palette.sm %7B width: 210px; %7D%0A.palette.xs %7B width: 100px; %7D%0A.palette.xs .palette-color %7B height: 24px; %7D%0A.palette.xs .func %7B display: none; %7D%0A.palette.select %7B width: 200px; margin: 0px; %7D%0A.palette.select .palette-color %7B width: 100%25; height: 24px; %7D%0A.palette.select .name %7B font-family: calibri, Arial, sans-serif; font-size: 12px; %7D%0A.palette-color %7B border-radius: 3px; overflow: hidden; width: 100%25; height: 44px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A.palette-color .color %7B position: relative; cursor: pointer; transition: width 0.3s ease-in-out; %7D%0A.palette-color .color i %7B color: rgb%280, 0, 0%29; opacity: 0.5; margin: 4px; %7D%0A.palette-color .color.dark i %7B color: rgb%28255, 255, 255%29; %7D%0A.palette-color .semantic %7B position: absolute; %7D%0A.color %7B height: 100%25; display: inline-block; %7D%0A.palette.ref %7B width: 210px; text-align: left; %7D%0A%23section-indicator-outer %7B position: static; width: 1024px; margin: auto; %7D%0A%23section-indicator %7B position: fixed; top: 400px; margin-left: -200px; transform: rotate%28-90deg%29; box-shadow: rgba%280, 0, 0, 0.3%29 0px -1px 4px inset; %7D%0A%23section-indicator div %7B display: inline-block; padding: 4px 12px 3px; color: rgba%28255, 255, 255, 0.8%29; cursor: pointer; font-size: 13px; box-shadow: rgba%280, 0, 0, 0.3%29 0px -1px 4px inset; min-width: 32px; background: rgb%28255, 255, 255%29; opacity: 0.7; border-top-left-radius: 5px; border-top-right-radius: 5px; %7D%0A%23section-indicator div::after %7B display: block; content: ' '; width: 0px; height: 0px; position: absolute; top: 24px; border-width: 0px; border-style: solid; border-color: transparent; %7D%0A%23section-indicator div:nth-of-type%281%29 %7B background: rgb%289, 123, 41%29; %7D%0A%23section-indicator div:nth-of-type%282%29 %7B background: rgb%28226, 175, 8%29; %7D%0A%23section-indicator div:nth-of-type%283%29 %7B background: rgb%28219, 102, 6%29; %7D%0A%23section-indicator div:nth-of-type%284%29 %7B background: rgb%28185, 38, 14%29; %7D%0A%23section-indicator div:hover, %23section-indicator div.active %7B opacity: 1; box-shadow: none; color: rgb%28255, 255, 255%29; %7D%0A%23section-indicator div:hover::after, %23section-indicator div.active::after %7B border-width: 8px; %7D%0A%23section-indicator div.active:nth-of-type%281%29::after %7B border-top-color: rgb%289, 123, 41%29; %7D%0A%23section-indicator div.active:nth-of-type%282%29::after %7B border-top-color: rgb%28226, 175, 8%29; %7D%0A%23section-indicator div.active:nth-of-type%283%29::after %7B border-top-color: rgb%28219, 102, 6%29; %7D%0A%23section-indicator div.active:nth-of-type%284%29::after %7B border-top-color: rgb%28185, 38, 14%29; %7D%0A%23pal-list h3.tag %7B margin-top: 70px; %7D%0Ah3%23head-myPals.tag %7B margin-top: 20px; %7D%0A.section.color1 h1.tag, .section.color1 h2.tag, .section.color1 h3.tag, .section.color1 h4.tag, .section.color1 h5.tag, .section.color1 h6.tag %7B background: rgb%289, 123, 41%29; border-left-color: rgb%286, 86, 29%29; border-right-color: rgb%286, 86, 29%29; %7D%0A.section.color1 .content.bar %7B padding: 10px; border-left: 5px solid rgb%289, 123, 41%29; border-radius: 5px; %7D%0A.section.color2 h1.tag, .section.color2 h2.tag, .section.color2 h3.tag, .section.color2 h4.tag, .section.color2 h5.tag, .section.color2 h6.tag %7B background: rgb%28226, 175, 8%29; border-left-color: rgb%28158, 123, 6%29; border-right-color: rgb%28158, 123, 6%29; %7D%0A.section.color2 .content.bar %7B padding: 10px; border-left: 5px solid rgb%28226, 175, 8%29; border-radius: 5px; %7D%0A.section.color3 h1.tag, .section.color3 h2.tag, .section.color3 h3.tag, .section.color3 h4.tag, .section.color3 h5.tag, .section.color3 h6.tag %7B background: rgb%28219, 102, 6%29; border-left-color: rgb%28153, 71, 4%29; border-right-color: rgb%28153, 71, 4%29; %7D%0A.section.color3 .content.bar %7B padding: 10px; border-left: 5px solid rgb%28219, 102, 6%29; border-radius: 5px; %7D%0A.section.color4 h1.tag, .section.color4 h2.tag, .section.color4 h3.tag, .section.color4 h4.tag, .section.color4 h5.tag, .section.color4 h6.tag %7B background: rgb%28185, 38, 14%29; border-left-color: rgb%28130, 27, 10%29; border-right-color: rgb%28130, 27, 10%29; %7D%0A.section.color4 .content.bar %7B padding: 10px; border-left: 5px solid rgb%28185, 38, 14%29; border-radius: 5px; %7D%0A.palette-func.like %7B font-family: calibri, Arial, sans-serif; %7D%0A.palette-func.like i.fa %7B margin-right: 0px; %7D%0A.palette-func.like span %7B font-size: 12px; %7D%0A%23palview h3.title %7B margin-top: 0px; %7D%0A%23palview h3.title .name %7B font-size: 0.7em; %7D%0A.palette-func %7B border-left: 1px solid rgb%28204, 204, 204%29; white-space: nowrap; font-size: 12px; margin-left: 10px; padding-left: 16px; line-height: 32px; %7D%0A.palette-func .avatar %7B width: 16px; height: 16px; margin: 8px 15px 0px 0px; vertical-align: top; border-radius: 2px; %7D%0A.palette-func .fa %7B margin-right: 2px; color: rgb%28102, 102, 102%29; font-size: 1.2em; %7D%0A.palette-func a.like %7B color: rgb%28102, 102, 102%29; %7D%0A.palette-func a.like .fa %7B margin-right: 0px; %7D%0A.palette-func a.like.active %7B color: rgb%28255, 34, 102%29; %7D%0A.palette-func a.like.active .fa %7B color: rgb%28255, 34, 102%29; %7D%0A.palViewer %7B width: 100%25; border-radius: 5px; overflow: hidden; height: 128px; line-height: 120px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 2px 3px; margin-bottom: 10px; %7D%0A.palViewer-color %7B height: 100%25; display: inline-block; text-align: center; text-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; color: rgb%28255, 255, 255%29; font-size: 12px; position: relative; %7D%0A.palViewer-detail %7B width: 100%25; %7D%0A.palViewer-color-mini %7B display: inline-block; margin-bottom: 5px; font-size: 12px; vertical-align: top; font-family: calibri, Arial, sans-serif; min-width: 76px; text-align: center; %7D%0A.palViewer-color-mini .block %7B width: 14px; height: 14px; display: inline-block; box-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 2px 2px; margin-right: 4px; border-radius: 50%25; %7D%0A.block-ordinal, .block-linear %7B height: 48px; margin: 5px 0px; display: inline-block; box-shadow: rgba%280, 0, 0, 0.2%29 0px 2px 3px; %7D%0A.block-ordinal %7B margin: 5px 0.3%25; %7D%0A%23palsetview %7B padding-left: 10px; %7D%0A%23palset-examples %7B width: 90%25; margin-left: 20px; %7D%0A.palset-chart %7B width: 80%25; margin: auto; height: 300px; display: block; %7D%0A%23paledit-download, %23paledit-colorblind %7B position: relative; display: inline-block; font-family: calibri, Arial, sans-serif; font-weight: bold; %7D%0A%23colorblind-hint %7B font-size: 10px; position: absolute; padding: 2px 5px; display: none; z-index: 19; %7D%0A%23colorblind-hint.active %7B display: block; %7D%0A%23paledit-colorblind .fa-eye.active %7B color: rgb%2868, 170, 34%29; text-shadow: rgb%28255, 255, 0%29 0px 0px 3px; %7D%0A.popover.popover-pal-download, .popover.popover-pal-colorblind %7B left: auto; right: 0px; top: 100%25; font-weight: normal; %7D%0A.popover.popover-pal-download.active, .popover.popover-pal-colorblind.active %7B display: block; %7D%0A.popover.popover-pal-download .arrow, .popover.popover-pal-colorblind .arrow %7B right: 10px; left: auto; %7D%0A.popover.popover-pal-download .popover-content, .popover.popover-pal-colorblind .popover-content %7B padding: 0px 0px 5px; %7D%0A.popover.popover-pal-download .popover-content a, .popover.popover-pal-colorblind .popover-content a %7B font-size: 16px; line-height: 20px; font-family: monospace; margin-top: 4px; padding-top: 4px; border-top: 1px solid rgb%28238, 238, 238%29; text-align: center; cursor: pointer; display: block; %7D%0A.popover.popover-pal-download .popover-content a:first-of-type, .popover.popover-pal-colorblind .popover-content a:first-of-type %7B margin-top: 0px; border-top: none; %7D%0A.pal-download-stepimg %7B max-width: 432px; height: 60px; background: center center no-repeat; border: 3px solid rgb%2868, 68, 68%29; box-shadow: rgba%280, 0, 0, 0.3%29 0px 2px 3px; margin: 0px 0px 0px auto; %7D%0A.popover.popover-pal-colorblind %7B width: 200px; text-align: center; %7D%0A%23colorlanding %7B background-attachment: fixed; %7D%0A%23colorlanding .banner %7B border-radius: 10px; padding: 20px; margin: 20px; text-align: center; %7D%0A%23colorlanding .title %7B text-align: center; font-size: 2em; text-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 2px; %7D%0A%23colorlanding .subtitle %7B text-align: center; font-weight: normal; text-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 2px; %7D%0A%23colorlanding %23nav-top.dim %7B background: rgba%280, 0, 0, 0.5%29; %7D%0A%23colorlanding .popover %7B z-index: 26; %7D%0A.palland-palettes %7B position: relative; width: 100%25; text-align: center; padding: 30px 0px; border-radius: 5px; %7D%0A.palland-palettes a %7B color: rgb%2868, 68, 68%29; %7D%0A.palland-palettes .name %7B width: 100%25; font-size: 1.4em; %7D%0A%23palland-hint-edit %7B left: 50%25; margin-left: -150px; font-family: 'Hiragino Kaku Gothic Pro', 'Trebuchet MS'; %7D%0A%23palland-hint-edit .arrow %7B left: auto; right: 25px; %7D%0A%23palland-infog img %7B width: 95%25; margin: auto auto 5px; border-radius: 5px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A%23palland-infog h3 %7B font-family: calibri, 'Trebuchet MS', sans-serif; %7D%0A%23pal-overview %7B width: 100%25; height: 100%25; font-family: 'Trebuchet MS', Helvetica, sans-serif; %7D%0A%23pal-overview-frame %7B width: 100%25; height: 100%25; background: center center / cover no-repeat rgb%2868, 68, 68%29; margin-top: 0px; color: rgb%28255, 255, 255%29; text-align: center; position: relative; z-index: 1; %7D%0A%23pal-overview .color %7B transition: background-color 1.5s ease-in-out; %7D%0A%23pal-overview .coverbk %7B width: 100%25; height: 100%25; position: absolute; background: center center / cover no-repeat; z-index: 2; transition: all 1s ease-in-out; opacity: 0; %7D%0A%23pal-overview .coverbk.active %7B opacity: 1; %7D%0A%23pal-overview-cover %7B z-index: 3; position: absolute; top: 50%25; width: 100%25; left: 0px; text-align: center; margin-top: -151px; %7D%0A%23pal-overview-cover h1 %7B font-size: 3em; letter-spacing: 1px; text-shadow: rgba%280, 0, 0, 0.5%29 0px 2px 3px; %7D%0A%23pal-overview .sample .snapshot-wrap %7B width: 45%25; margin: 10px 10px 20px; display: inline-block; text-align: center; %7D%0A%23pal-overview .sample .snapshot-wrap img %7B margin-bottom: 5px; max-width: 100%25; %7D%0A%23pal-overview-desc img.snapshot %7B border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.5%29 0px 2px 4px; border: 1px solid rgb%28153, 153, 153%29; max-width: 90%25; %7D%0A%23pal-overview-get-ext %7B width: 300px; margin: auto; %7D%0A%23pal-overview-get-ext .clickable %7B margin: 0px 10px; display: inline-block; color: rgb%28255, 255, 255%29; text-decoration: none; %7D%0A%23ldpal-rand-more %7B margin: 20px 0px 60px; padding: 20px; border: 1px solid rgb%28204, 204, 204%29; font-size: 1.3em; font-weight: bold; font-family: calibri; %7D%0A.ldpal-rand-hint-block %7B width: 24px; height: 24px; border-radius: 25%25; margin: 5px; display: inline-block; background: rgba%28192, 192, 192, 0.2%29; border: 2px dotted rgb%28204, 204, 204%29; %7D%0A.ldpal-rand-hint-block.active %7B border: 2px solid rgb%28153, 153, 153%29; cursor: pointer; %7D%0A%23ldpal-rand-cp-outer %7B position: relative; width: 200px; margin: auto; %7D%0A%23ldpal-rand-hint-color %7B height: 0px; opacity: 0; border: 0px; margin-left: -60px; %7D%0A%23ldpal-rand-kwloader %7B position: absolute; margin: 9px 0px 0px -22px; z-index: 23; width: 16px; %7D%0Abody%23docview %7B background: rgb%28255, 255, 255%29; font-family: 'Hiragino Kaku Gothic Pro', Helvetica, 'Helvetica Neue', Arial, sans-serif; %7D%0A%23pal-docs code, %23pal-download code %7B white-space: pre; %7D%0A%23pal-docs blockquote, %23pal-download blockquote %7B max-width: 90%25; overflow-x: scroll; %7D%0A%23pal-docs .pal-doc-demoblock, %23pal-download .pal-doc-demoblock %7B width: 48px; height: 48px; border-radius: 50%25; margin: 20px 10px; display: inline-block; transition: all 0.5s linear; %7D%0A.docs h2 %7B padding-bottom: 7px; border-bottom: 1px solid rgb%28238, 238, 238%29; margin-bottom: 20px; %7D%0Apre.well %7B font-size: 90%25; %7D%0A.docbanner %7B background: rgb%28185, 38, 14%29; color: rgb%28255, 255, 255%29; padding: 20px; position: relative; top: 80px; %7D%0A.docbanner .inner %7B max-width: 1024px; margin: auto; %7D%0A.docbanner .title %7B font-family: 'Hiragino Kaku Gothic Pro', 'Trebuchet MS', sans; font-weight: bold; font-size: 3.5em; %7D%0A.docbanner .desc %7B font-size: 1.4em; opacity: 0.9; %7D%0Ahtml, body %7B font-family: 'Varela Round', 'century gothic', verdana; %7D%0A%23icon-root, %23icon-sample %7B background: url%28'/assets/img/bk-icon.jpg'%29 center top no-repeat fixed; %7D%0A%23icon-main-banner %7B width: 100%25; min-height: 300px; text-align: center; padding: 80px 0px 0px; %7D%0A%23icon-main-banner .img %7B margin: 20px auto 10px; %7D%0A%23icon-main-banner .img img.gif %7B vertical-align: top; %7D%0A%23icon-main-banner .title, %23icon-share-banner .title %7B color: rgb%28255, 255, 255%29; font-size: 28px; font-family: 'Varela Round', Arial; margin: 0px auto; width: 80%25; text-shadow: rgba%280, 0, 0, 0.4%29 0px 2px 4px; %7D%0A%23icon-main-banner .title span, %23icon-share-banner .title span %7B white-space: nowrap; %7D%0A%23icon-main-banner .title big, %23icon-share-banner .title big %7B color: rgb%28255, 255, 153%29; display: inline-block; font-weight: bold; %7D%0A%23dimmer %7B position: fixed; top: 0px; left: 0px; width: 100%25; height: 100%25; background: url%28'/assets/img/ajax.gif'%29 center center no-repeat rgb%280, 0, 0%29; z-index: 41; %7D%0A%23dimmer img %7B position: fixed; bottom: 25%25; left: 50%25; display: block; width: 200px; margin-left: -100px; opacity: 0.5; %7D%0A%23news %7B margin-bottom: 70px; %7D%0A%23tryit %7B position: absolute; margin-top: -80px; margin-left: 25%25; width: 100px; height: 106px; background: url%28'/assets/img/tryit.png'%29 center center no-repeat; z-index: 14; %7D%0A%23panel %7B position: relative; width: 100%25; padding: 20px 40px 20px 0px; background: rgba%280, 0, 0, 0.2%29; %7D%0A%23panel .row %7B max-width: 1024px; margin: auto; %7D%0A%23panel .col-md-4 %7B text-align: center; %7D%0A%23panel .col-md-4 .progress %7B width: 200px; margin: 0px auto; %7D%0A%23panel .col-md-4 .ldIconPreviewer %7B width: 100%25; height: 100%25; %7D%0A%23panel form %7B margin-top: 16px; %7D%0A%23panel .btn-group img %7B vertical-align: bottom; margin-left: 7px; %7D%0A%23panel %23demo-panel %7B margin: 0px auto 5px; border-radius: 5px; overflow: hidden; width: 200px; height: 200px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A%23panel %23demo-panel .ldIconPreviewer %7B opacity: 1; z-index: 11; border-radius: 10px; %7D%0A%23panel .progress %7B cursor: pointer; %7D%0A%23icon-making %7B width: 100%25; height: 100%25; background: rgba%280, 0, 0, 0.7%29; position: absolute; top: 0px; left: 0px; z-index: 16; font-size: 90px; padding-top: 3%25; color: rgb%28255, 255, 255%29; text-align: center; text-shadow: rgb%280, 0, 0%29 0px 0px 13px; %7D%0A%23icon-making .is %7B font-size: 0.4em; %7D%0A%23play %7B display: flex; flex-wrap: nowrap; flex: 1 1 100px; %7D%0A%23play .btn-default %7B background: rgb%28255, 255, 255%29; flex: 1 1 0%25; %7D%0A%23play .btn-default.active %7B background: rgb%28224, 224, 224%29; %7D%0A%23play .active .glyphicon %7B text-shadow: rgb%28255, 255, 192%29 0px 0px 6px; %7D%0A%23icon-build-ctrl %7B display: flex; flex-wrap: wrap; padding: 10px 15px 0px; %7D%0A%23icon-build-btn %7B box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; margin-left: 10px; display: flex; flex-wrap: wrap; flex: 1 1 300px; %7D%0A%23icon-build-btn .btn-default %7B color: rgb%28255, 255, 255%29; text-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 1px; flex: 1 1 0%25; %7D%0A%23icon-build-btn .btn-default:nth-of-type%281%29 %7B background: rgb%28247, 122, 98%29; border: 1px solid rgb%28255, 145, 124%29; %7D%0A%23icon-build-btn .btn-default:nth-of-type%282%29 %7B background: rgb%28248, 159, 90%29; border: 1px solid rgb%28255, 177, 116%29; %7D%0A%23icon-build-btn .btn-default:nth-of-type%283%29 %7B background: rgb%28140, 209, 75%29; border: 1px solid rgb%28158, 211, 109%29; %7D%0A%23output-modal .modal-header, %23output-modal .modal-footer %7B text-align: center; %7D%0A%23output-modal .modal-footer %7B text-align: center; %7D%0A%23output-modal .modal-body %7B padding: 20px; text-align: center; %7D%0A%23output-modal .modal-body .btn-success %7B margin-left: -13px; %7D%0A%23output-box %7B width: 100%25; text-align: center; padding: 20px; %7D%0A%23chooser %7B position: relative; width: 100%25; padding: 3px; margin: 10px 0px; background: rgba%280, 0, 0, 0.2%29; %7D%0A%23chooser .ib %7B max-width: 1024px; text-align: center; width: 100%25; margin: 0px auto; %7D%0A%23chooser::before %7B content: ' '; width: 0px; height: 0px; border-left: 20px solid transparent; border-right: 20px solid transparent; border-bottom: 20px solid rgba%280, 0, 0, 0.2%29; position: absolute; top: -20px; margin-left: 400px; %7D%0A%23chooser .item %7B display: inline-block; padding: 6px; width: 86px; cursor: pointer; background: rgba%280, 0, 0, 0%29; text-align: center; box-shadow: rgb%28255, 255, 0%29 0px 0px 0px; %7D%0A%23chooser .item .delay %7B background: rgb%28255, 255, 255%29; width: 64px; margin: auto; height: 64px; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 2px 5px; %7D%0A%23chooser .item .delay.more %7B opacity: 1; position: relative; left: -2px; background: none; box-shadow: none; width: 128px; text-align: center; %7D%0A%23chooser .item .delay.more .fb-like %7B margin-top: 15%25; transform: scale%281.5%29; %7D%0A%23chooser .item .title %7B color: rgb%28255, 255, 255%29; font-weight: 200; font-size: 0.9em; font-family: verdana; text-shadow: rgba%280, 0, 0, 0.5%29 0px 1px 2px; %7D%0A%23chooser .item.active .icon-png %7B box-shadow: rgb%28136, 204, 255%29 0px 0px 0px 2px; %7D%0Aa.hash-anchor %7B position: relative; top: -120px; display: block; visibility: hidden; %7D%0A%23icon-readme .section %7B width: 94%25; max-width: 1024px; margin: 0px auto; background: rgba%28255, 255, 255, 0.5%29; border-radius: 3px; %7D%0A%23icon-readme .section h4 a %7B color: rgb%280, 0, 0%29; %7D%0A%23icon-readme .section h4 small %7B color: rgb%2834, 68, 255%29; %7D%0A%23icon-readme .section .content %7B margin: 0px 30px; padding-bottom: 20px; font-family: 'Hiragino Kaku Gothic Pro', Helvetica; %7D%0A%23icon-readme .section .content h4 %7B font-family: Palatino, Georgia, serif; border-bottom: 1px solid rgba%280, 0, 0, 0.3%29; %7D%0A.icon-block-sample %7B width: 100%25; height: 128px; border-radius: 5px; background-color: rgba%280, 0, 0, 0.5%29; background-repeat: no-repeat; background-position: center center; %7D%0A%23examples, %23compatibility %7B margin: 30px auto; max-width: 1024px; %7D%0A%23examples p, %23compatibility p, %23examples ul, %23compatibility ul %7B font-family: 'Hiragino Kaku Gothic Pro', Helvetica; font-size: 1.2em; %7D%0A%23examples h2, %23compatibility h2, %23examples h4, %23compatibility h4 %7B color: rgb%280, 0, 0%29; text-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 2px; %7D%0A%23examples iframe, %23compatibility iframe %7B border: none; width: 200px; height: 200px; overflow: hidden; %7D%0A%23footer %7B position: fixed; bottom: 0px; width: 100%25; background: rgba%280, 0, 0, 0.4%29; margin-top: 20px; padding: 12px 20px; z-index: 25; box-shadow: rgba%280, 0, 0, 0.3%29 0px -1px 4px; %7D%0A%23footer .ib %7B max-width: 1024px; margin: 0px auto; %7D%0A%23footer a %7B color: rgb%28255, 255, 255%29; margin: 0px 20px; cursor: pointer; %7D%0A%23footer .popover a %7B color: rgb%28221, 34, 0%29; margin: auto; %7D%0A%23footer-top %7B width: 100%25; height: 50px; %7D%0A%23icon-comment-box %7B width: 94%25; max-width: 1024px; %7D%0A%23icon-comment-box .ib %7B width: 100%25; %7D%0A%23icon-comment-box .ib .fb-comments %7B width: 100%25; %7D%0A%23icon-comment-box .ib .fb-comments span %7B width: 100%25 !important; %7D%0A%23icon-comment-box .ib .fb-comments span iframe %7B width: 100%25 !important; %7D%0A%23icon-readme .section %23icon-comment-box.content %7B margin: 20px auto; %7D%0A.anim %7B transition: opacity 0.5s linear, visibility 0s linear 0s, z-index 0.5s linear; opacity: 1; z-index: 15; visibility: visible; %7D%0A.anim.invis %7B opacity: 0; z-index: 0; visibility: hidden; transition: opacity 0.5s linear, visibility 0s linear 0.5s, z-index 0.5s linear; %7D%0A.delay %7B opacity: 0; transition: opacity 0.8s; %7D%0A.delay.visible %7B opacity: 1; %7D%0A.icon-png %7B width: 64px; height: 64px; margin: auto; border-radius: 2px; %7D%0A.ldIconPreviewer %7B display: inline-block; position: relative; %7D%0A%23ldColorPicker %7B position: absolute; z-index: 39; display: none; width: 240px; height: 140px; %7D%0A%23icon-linkbtns %7B display: flex; %7D%0A%23icon-linkbtns .btn %7B flex: 1 1 0%25; padding: 5px 0px 6px; %7D%0A%23icon-linkbtns .btn i.fa %7B font-size: 0.9em; %7D%0A%23icon-save-schema %7B position: absolute; top: 31px; right: 35px; z-index: 22; padding: 0px 6px; border-radius: 3px; margin: 0px; opacity: 0; display: none; transition: all 0.5s linear; %7D%0A%23icon-save-schema.on %7B opacity: 1; display: block; %7D%0A.getlink-modal %7B top: 50%25; margin-top: -63px; %7D%0A.getlink-modal input %7B cursor: text; font-family: calibri, arial, sans-serif; %7D%0A%23icon-save-hint, %23icon-saved-hint %7B z-index: 21; opacity: 1; width: 150px; left: 50%25; margin-left: -75px; top: -3px; %7D%0A%23icon-save-hint .tooltip-arrow, %23icon-saved-hint .tooltip-arrow %7B left: 75%25; %7D%0A%23icon-saved-hint %7B opacity: 0; display: none; position: fixed; top: 50px; left: 0px; %7D%0A%23icon-root .select2-selection, %23icon-root .select2-selection__arrow, %23select2-icon-pal-select-container %7B height: 34px; line-height: 34px; %7D%0A%23icon-sample %7B min-height: 100%25; padding-top: 80px; %7D%0A%23icon-share-banner %7B padding-top: 80px; text-align: center; %7D%0A%23icon-share-banner .title %7B padding-bottom: 20px; border-bottom: 1px dashed rgba%280, 0, 0, 0.2%29; %7D%0A%23panel.share %7B background: none; %7D%0A.icon-preview-entry %7B width: 128px; display: inline-block; margin: 10px 30px; %7D%0A.icon-preview-entry .fa.fa-remove %7B margin-top: 3px; %7D%0A.icon-preview %7B width: 128px; height: 128px; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 2px 3px; padding: 10px; border-radius: 5px; margin-bottom: 5px; %7D%0A.icon-preview img %7B width: 100%25; height: 100%25; %7D%0A%23notifications %7B position: fixed; top: 100px; right: 100px; z-index: 40; %7D%0A.notify %7B border-radius: 5px; padding: 5px 10px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; margin-bottom: 3px; animation: notify-slide-in 5s linear 1 forwards; %7D%0A.notify::after %7B font-size: 14px; margin-left: 10px; font-family: FontAwesome; -webkit-font-smoothing: antialiased; font-style: normal; font-weight: normal; float: right; display: block; %7D%0A.notify.notify-danger %7B background: rgb%28204, 0, 0%29; border: 1px solid rgb%28187, 0, 0%29; color: rgb%28255, 255, 255%29; %7D%0A.notify.notify-danger::after %7B content: ''; %7D%0A.notify.notify-warning %7B background: rgb%28204, 153, 0%29; border: 1px solid rgb%28187, 136, 0%29; color: rgb%28255, 255, 255%29; %7D%0A.notify.notify-warning::after %7B content: ''; %7D%0A.notify.notify-success %7B background: rgb%280, 204, 0%29; border: 1px solid rgb%280, 187, 0%29; color: rgb%28255, 255, 255%29; %7D%0A.notify.notify-success::after %7B content: ''; %7D%0A.notify.notify-info %7B background: rgb%280, 204, 204%29; border: 1px solid rgb%280, 187, 187%29; color: rgb%28255, 255, 255%29; %7D%0A.notify.notify-info::after %7B content: ''; %7D%0A.notify.notify-note %7B background: rgb%28238, 238, 238%29; border: 1px solid rgb%28221, 221, 221%29; color: rgb%28255, 255, 255%29; %7D%0A.notify.notify-note::after %7B content: ''; %7D%0A%23user-panel %7B width: 100%25; position: relative; background: rgb%28255, 255, 255%29; padding: 10px; border: 1px solid rgb%28204, 204, 204%29; border-radius: 3px; %7D%0A%23user-panel hr %7B margin: 0px; opacity: 0; transition: all 0.5s ease-in-out; %7D%0A%23user-panel hr.active %7B margin: 10px 0px 0px; opacity: 1; %7D%0A%23user-avatar %7B width: 64px; height: 64px; background: url%28'/assets/img/avatar.png'%29 0%25 0%25 / cover; float: left; border-radius: 3px; margin-right: 15px; %7D%0A%23user-name, %23user-email %7B font-size: 1.6em; color: rgb%2885, 85, 85%29; margin-top: 3px; font-weight: bold; letter-spacing: 0.9px; text-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 2px; %7D%0A%23user-name small, %23user-email small %7B margin-left: 5px; font-size: 0.5em; %7D%0A%23user-email %7B font-size: 1em; font-weight: normal; text-shadow: none; %7D%0A.palset %7B margin-top: 30px; border-bottom: 1px solid rgb%28204, 204, 204%29; %7D%0A%23user-editor %7B max-height: 0px; overflow: hidden; transition: max-height 0.5s ease-in-out; %7D%0A%23user-editor.active %7B max-height: 300px; %7D%0A%23user-editor .panel %7B margin-bottom: 0px; %7D%0A%23user-about %7B border-left: 1px solid rgb%28204, 204, 204%29; padding: 4px 0px 0px 6px; height: 64px; %7D%0A%23user-about.disabled %7B color: rgb%28153, 153, 153%29; %7D%0A%23user-edit-detail-toggle %7B position: absolute; margin-top: -15px; right: 10px; %7D%0A%23user-edit input%5Btype='text'%5D %7B margin-top: 8px; %7D%0A.subnav %7B display: none; %7D%0A%23affix li.active .subnav %7B display: block; %7D%0A%23affix li a %7B color: rgb%28102, 102, 102%29; %7D%0A%23affix %7B top: 80px; %7D%0Ah2.anchor %7B margin-top: -30px; padding-top: 70px; %7D%0Ah3.anchor %7B margin-top: -40px; padding-top: 50px; %7D%0A.irs %7B margin-top: -20px; %7D%0A.irs .irs-single, .irs .irs-min, .irs .irs-max, .irs .irs-from, .irs .irs-to %7B bottom: -17px; top: auto; %7D%0A.irs .irs-single::after, .irs .irs-from::after, .irs .irs-to::after %7B border-top-color: transparent; border-bottom-color: rgb%28237, 85, 101%29; bottom: auto; top: -6px; %7D%0A.irs-input.input .irs %7B display: none; %7D%0A.irs-switch %7B position: absolute; top: 0px; z-index: 5; right: 13px; font-size: 1.6em; vertical-align: middle; line-height: 20px; cursor: pointer; %7D%0A.panel .hint-img %7B width: 100%25; height: 200px; background: center center no-repeat rgb%28238, 238, 238%29; border-radius: 3px; %7D%0A.cover-modal-wrapper %7B display: block; position: fixed; top: -20px; left: 0px; width: 100%25; height: 100%25; z-index: -1; opacity: 0; animation-delay: 1s; pointer-events: none; %7D%0A.cover-modal-wrapper.inactive %7B animation: modal-out 0.3s ease-out 1 forwards; %7D%0A.cover-modal-wrapper.active %7B animation: modal-in 0.3s ease-out 1 forwards; z-index: 34; opacity: 1; top: 0px; pointer-events: all; %7D%0A.cover-modal-inner %7B animation: modal-inner-out 0.3s ease-out 1 forwards; %7D%0A.cover-modal-wrapper.active .cover-modal-inner %7B animation: modal-inner-in 0.3s ease-out 1 forwards; %7D%0A.cover-modal %7B position: absolute; top: 0px; left: 0px; width: 100%25; height: 100%25; background: rgba%280, 0, 0, 0.7%29; z-index: 32; %7D%0A.cover-modal-inner %7B position: relative; width: 640px; margin: 100px auto; z-index: 33; %7D%0A.cover-modal-inner .panel-default %7B box-shadow: rgba%280, 0, 0, 0.4%29 0px 4px 10px; %7D%0A.cover-modal-inner.centered %7B top: 0px; left: 0px; right: 0px; bottom: 0px; margin: auto; %7D%0A.cover-modal-inner .panel-heading, .cover-modal-inner .panel-footer %7B padding-top: 5px; %7D%0A.cover-modal-inner .panel-footer %7B padding-right: 5px; padding-bottom: 5px; %7D%0A.cover-modal-inner .nav-tabs %7B margin-top: -47px; margin-bottom: 13px; %7D%0A.cover-modal-inner.ng-hide-animate, .cover-modal.ng-hide-animate %7B transition: all 0.5s cubic-bezier%280, 0, 0, 1%29; %7D%0A.cover-modal-inner.ng-hide-animate.ng-hide %7B top: -30px; opacity: 0; z-index: -1; %7D%0A.cover-modal.ng-hide-animate.ng-hide %7B opacity: 0; z-index: -1; %7D%0A.authpanel.cover-modal-wrapper .cover-modal %7B animation: bk-drift 20s cubic-bezier%280.3, 0, 0.7, 1%29 infinite; background-image: url%28'/assets/img/bk.jpg'%29; opacity: 0.75; %7D%0A.authpanel.cover-modal-wrapper .cover-modal-inner %7B width: 400px; height: 400px; %7D%0A.authpanel.cover-modal-wrapper .cover-modal-inner .panel %7B box-shadow: rgba%280, 0, 0, 0.5%29 0px 6px 12px 2px; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner %7B max-width: 1024px; width: 100%25; height: 90%25; top: 5%25; bottom: auto; margin: 0px auto; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .hint %7B position: fixed; bottom: 20px; background: rgb%28255, 255, 255%29; color: rgb%2834, 34, 34%29; border: 1px solid rgb%2834, 34, 34%29; left: 50%25; transform: translate%28-50%25, 0px%29; z-index: 10; padding: 5px 10px; border-radius: 5px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .panel, .palchooser.cover-modal-wrapper .cover-modal-inner .panel-body %7B height: 100%25; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .panel-body %7B overflow: scroll; padding-top: 50px; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .tabs %7B position: absolute; background: rgb%28255, 255, 255%29; width: 100%25; z-index: 9; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .tabs ul %7B padding: 10px; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .palette-block a.pull-right %7B display: none; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .palette-block:hover a.pull-right %7B display: block; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .palette-block .palette2:hover %7B position: relative; cursor: pointer; text-align: center; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .palette-block .palette2:hover::before %7B content: ' '; display: block; background: rgba%280, 0, 0, 0.5%29; position: absolute; top: 0px; left: 0px; width: 100%25; height: 100%25; z-index: 7; %7D%0A.palchooser.cover-modal-wrapper .cover-modal-inner .palette-block .palette2:hover::after %7B content: 'USE THIS COLOR SCHEME'; display: block; color: rgb%28255, 255, 255%29; font-weight: 800; position: absolute; top: 0px; bottom: 0px; left: 0px; z-index: 8; margin: auto; width: 100%25; height: 1.5em; %7D%0A.form-control-feedback.with-text %7B width: auto; right: 5px; %7D%0A.form-control-feedback.up-tag %7B background: rgb%28169, 68, 66%29; font-size: 13px; line-height: 15px; height: 20px; color: rgb%28255, 255, 255%29; padding: 3px 8px; border-radius: 5px 5px 0px 0px; right: 10px; %7D%0A.has-feedback .form-control-feedback.with-text.up-tag %7B top: -20px; %7D%0A.has-feedback label ~ .form-control-feedback.with-text.up-tag %7B top: 5px; %7D%0A%5Bng-clipboard%5D %7B position: relative; %7D%0A%5Bng-clipboard%5D .hover-tip %7B display: none; %7D%0A%5Bng-clipboard%5D.copied .hover-tip %7B display: block; %7D%0A.btn.btn-sm%5Bldcolorpicker%5D %7B padding: 5px; %7D%0A.compact-palette .ldcp-color %7B border-left: 1px solid rgb%28255, 255, 255%29 !important; %7D%0A%23auth-reset-sent img %7B animation: auth-reset-img 1.5s ease-out 1 forwards; %7D%0A%23auth-reset-sent i.fa %7B color: rgb%2851, 153, 68%29; animation: auth-reset-icon 1.5s ease-in 1 forwards; %7D%0Atable.reference %7B width: 100%25; border: 1px solid rgb%28204, 204, 204%29; %7D%0Atable.reference td, table.reference th %7B border-bottom: 1px solid rgb%28221, 221, 221%29; border-right: 1px solid rgb%28221, 221, 221%29; padding: 3px; %7D%0Atable.reference th %7B background: rgb%28242, 242, 242%29; %7D%0Atable.reference td:last-child, table.reference th:last-child %7B border-right: 0px; %7D%0Atable.reference tr:last-child td, table.reference tr:last-child th %7B border-bottom: 0px; %7D%0A%23spinner-editor label %7B white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0px; %7D%0A%23spinner-preview, %23pattern-preview %7B margin: auto; width: 220px; height: 220px; padding: 10px; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; border-radius: 3px; background: url%28'/assets/img/transparent.png'%29; position: relative; %7D%0A%23spinner-preview .watermark, %23pattern-preview .watermark %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; width: 60px; height: 1.5em; display: none; %7D%0A%23spinner-preview .center, %23pattern-preview .center %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; %7D%0A%23spinner-preview .inner, %23pattern-preview .inner %7B width: 100%25; height: 100%25; %7D%0A%23pattern-preview %7B width: 100%25; margin-bottom: 10px; %7D%0A%23pattern-frame %7B background: none; box-shadow: rgba%280, 0, 0, 0.3%29 0px 0px 1px 2px; %7D%0A%23pattern-frame::after %7B position: absolute; top: -17px; font-size: 12px; padding: 0px 5px; left: 2px; border-radius: 5px 5px 0px 0px; background: rgb%28119, 119, 119%29; color: rgb%28255, 255, 255%29; content: 'Pattern Range'; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 95%25; %7D%0A%23spinner-preview-box.loading, %23pattern-preview-box.loading %7B background: url%28'/assets/img/loader/default.svg'%29 center center no-repeat rgb%28255, 255, 255%29; %7D%0A%23spinner-preview-box.loading div, %23pattern-preview-box.loading div %7B display: none; %7D%0A.spinner-title .home %7B text-decoration: none; display: inline-block; vertical-align: text-bottom; color: rgb%28153, 153, 153%29; %7D%0A.spinner-title .home i.fa %7B vertical-align: middle; %7D%0A.spinner-title .home i.fa.fa-home %7B font-size: 2em; %7D%0A.spinner-title .name %7B font-size: 3em; display: inline-block; line-height: 0.8em; %7D%0A.spinner-title .desc %7B display: inline-block; %7D%0A.spinner-title .desc .inner %7B max-width: 500px; max-height: 28px; overflow: hidden; line-height: 14px; font-size: 14px; color: rgb%28153, 153, 153%29; margin: 0px 0px 0px 10px; %7D%0A.spinner-ctrls %7B display: flex; %7D%0A.spinner-ctrls .spinner-ctrl %7B flex: 1 1 90px; margin: 0px 10px 0px 0px; position: relative; %7D%0A.spinner-ctrls .spinner-ctrl:last-child %7B margin-right: 0px; %7D%0A.spinner-ctrls .spinner-ctrl .irs .irs-single, .spinner-ctrls .spinner-ctrl .irs .irs-min, .spinner-ctrls .spinner-ctrl .irs .irs-max, .spinner-ctrls .spinner-ctrl .irs .irs-from, .spinner-ctrls .spinner-ctrl .irs .irs-to %7B bottom: -13px; %7D%0A.spinner-ctrls .spinner-ctrl .irs-switch %7B right: 3px; %7D%0A.spinner-ctrls .spinner-ctrl .irs %7B margin-top: -17px; %7D%0A.spinner-samples %7B text-align: center; %7D%0A.spinner-samples .spinner-sample %7B display: inline-block; vertical-align: middle; margin: 0px 10px; %7D%0A%23spinner-download-preview %7B position: relative; width: 220px; height: 220px; background: url%28'/assets/img/transparent.png'%29; margin: 20px auto; border: 1px solid rgb%28204, 204, 204%29; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; padding: 10px; %7D%0A%23spinner-download-preview img %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; %7D%0A%23spinner-buy-preview %7B width: 100%25; height: 100%25; max-width: 400px; max-height: 400px; margin: auto; position: relative; %7D%0A%23spinner-buy-preview img %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; %7D%0A%23spinner-buy-preview-thumb %7B width: 100%25; height: 138px; max-width: 500px; margin: auto; text-align: center; %7D%0A%23buy-paypal-btn, .buy-paypal-btn %7B position: relative; overflow: hidden; min-width: 300px; font-size: 18px; font-weight: 900; %7D%0A.label-paid %7B background: rgb%2849, 202, 38%29; %7D%0A.spinners %7B display: flex; flex-wrap: wrap; max-width: 1024px; width: 100%25; margin: auto; %7D%0A.spinner-thumb %7B flex: 1 1 auto; display: inline-block; width: 140px; height: 140px; padding: 10px; margin: 10px; border-radius: 3px; border: 1px solid rgb%28221, 221, 221%29; background: url%28'/assets/img/transparent.png'%29; %7D%0A.spinner-thumb .license %7B position: absolute; top: 3px; right: 4px; font-size: 11px; padding: 0px 2px; color: rgb%28119, 119, 119%29; %7D%0A.spinner-thumb img %7B width: 100%25; height: 70px; margin: 15px 0px auto; transition: opacity 0.3s linear; %7D%0A.spinner-thumb .name %7B margin-top: 20px; text-align: center; font-size: 14px; width: 100%25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; %7D%0A.spinners.tiny %7B justify-content: center; %7D%0A.spinners.tiny .spinner-thumb %7B flex: 0 0 auto; width: 90px; height: 110px; background: none; padding: 0px; border: 0px; %7D%0A.spinners.tiny .spinner-thumb .inner %7B position: relative; width: 100%25; height: 90px; %7D%0A.spinners.tiny .spinner-thumb.more i.fa %7B font-size: 16px; height: 66px; position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; color: rgb%280, 0, 0%29; border: 1px solid rgb%28204, 204, 204%29; width: 40px; line-height: 64px; text-align: center; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 1px; %7D%0A.spinners.tiny .spinner-thumb.more .name %7B color: rgb%280, 0, 0%29; %7D%0A.spinners.tiny .spinner-thumb img, .spinners.tiny .spinner-thumb .fa-home %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; width: auto; height: auto; margin: auto; max-width: 100%25; max-height: 100%25; %7D%0A.spinners.tiny .spinner-thumb .name %7B margin-top: 0px; %7D%0A.spinner-pack %7B padding: 10px; margin-bottom: 20px; background: url%28'/assets/img/transparent.png'%29; border-radius: 5px; border: 1px solid rgb%28221, 221, 221%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; position: relative; %7D%0A.spinner-pack .desc %7B width: 500px; margin: 0px 0px 0px 20px; %7D%0A.spinner-pack .format %7B margin-left: 20px; %7D%0A.spinner-pack .format .label %7B font-size: 1em; %7D%0A.spinner-pack .label %7B vertical-align: middle; %7D%0A.spinner-pack .thumb %7B height: 180px; %7D%0A.spinner-pack .sample-img %7B width: 240px; height: 240px; position: absolute; top: 0px; bottom: 80px; right: 10px; left: 500px; margin: auto; %7D%0A.spinner-pack .sample-tag %7B width: 80px; height: 24px; text-align: center; margin: auto; position: absolute; top: 50%25; bottom: 0px; left: 500px; right: 10px; background: rgb%28153, 204, 153%29; color: rgb%28255, 255, 255%29; padding: 2px 6px; border-radius: 3px; %7D%0A.spinner-pack .sample-tag::before %7B content: 'Sample'; display: block; %7D%0A.spinners.animal .spinner-thumb %7B width: 140px; height: 220px; %7D%0A.spinners.animal .spinner-thumb img %7B height: 140px; %7D%0A%23stock-editor label %7B white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0px; %7D%0A%23stock-editor label.has-tips %7B margin-bottom: 6px; overflow: visible; z-index: 9; %7D%0A%23stock-preview %7B margin: auto; width: 220px; height: 220px; padding: 10px; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; border-radius: 3px; background: url%28'/assets/img/transparent.png'%29; position: relative; %7D%0A%23stock-preview .watermark %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; width: 60px; height: 1.5em; display: none; %7D%0A%23stock-preview .center %7B position: absolute; top: -10000px; bottom: -10000px; margin: auto; left: -1000px; right: -1000px; z-index: 11; box-shadow: rgba%280, 0, 0, 0.2%29 0px 0px 3px; %7D%0A%23stock-preview .inner %7B width: 100%25; height: 100%25; %7D%0A%23stock-preview .btn %7B position: relative; z-index: 12; %7D%0A%23stock-preview .inner, .stock-preview %7B overflow: hidden; %7D%0A%23stock-preview .inner:hover, .stock-preview:hover %7B overflow: visible; %7D%0A%23stock-preview i.fa.fa-search, .stock-preview i.fa.fa-search %7B z-index: 12; position: absolute; bottom: 5px; right: 5px; border: 1px solid rgb%28204, 204, 204%29; border-radius: 50%25; padding: 5px; color: rgb%28204, 204, 204%29; opacity: 0.8; mix-blend-mode: exclusion; %7D%0A%23stock-preview:hover i.fa.fa-search, .stock-preview:hover i.fa.fa-search %7B display: none; %7D%0A%23stock-ctrl-panel .row %7B margin-top: 15px; %7D%0A%23stock-ctrl-panel .btn-group.btn-block %7B margin-top: -1px; padding: 0px; display: flex; flex-wrap: nowrap; %7D%0A%23stock-ctrl-panel .btn-group.btn-block .btn %7B flex: 1 1 0%25; %7D%0A%23stock-ctrl-panel .btn-group.btn-block .dropup.btn, %23stock-ctrl-panel .btn-group.btn-block .dropdown.btn %7B padding: 0px; %7D%0A%23stock-ctrl-panel .btn-group.btn-block .dropup.btn .dropdown-toggle, %23stock-ctrl-panel .btn-group.btn-block .dropdown.btn .dropdown-toggle %7B display: block; padding: 6px 12px; %7D%0A%23stock-ctrl-panel .irs .irs-single, %23stock-ctrl-panel .irs .irs-min, %23stock-ctrl-panel .irs .irs-max, %23stock-ctrl-panel .irs .irs-from, %23stock-ctrl-panel .irs .irs-to %7B bottom: -13px; %7D%0A%23stock-ctrl-panel .irs-switch %7B right: 13px; %7D%0A%23stock-ctrl-panel .irs %7B margin-top: -20px; %7D%0A%23stock-ctrl-panel .buy-lock-inner .license-info.purchased %7B white-space: nowrap; margin-bottom: 4px; %7D%0A%23stock-ctrl-panel .buy-lock-inner .license-info.purchased label %7B font-size: 12px; vertical-align: text-bottom; padding: 1px 6px; border-radius: 5px; background: rgb%2849, 202, 38%29; display: inline-block; color: rgb%28255, 255, 255%29; margin-right: 3px; %7D%0A%23stock-ctrl-panel .buy-lock-inner .license-info.purchased small %7B font-size: 11px; vertical-align: text-bottom; %7D%0A%23stock-ctrl-panel .buy-lock-inner .pull-right %7B font-size: 11px; padding: 5px 5px 1px; border-radius: 3px; %7D%0A%23stock-preview-box.loading %7B background: url%28'/assets/img/loader/default.svg'%29 center center no-repeat rgb%28255, 255, 255%29; %7D%0A%23stock-preview-box.loading div %7B display: none; %7D%0A.stock-title .home %7B text-decoration: none; display: inline-block; vertical-align: text-bottom; color: rgb%28153, 153, 153%29; %7D%0A.stock-title .home i.fa %7B vertical-align: middle; %7D%0A.stock-title .home i.fa.fa-home %7B font-size: 2em; %7D%0A.stock-title .name %7B font-size: 3em; display: inline-block; line-height: 0.8em; %7D%0A.stock-title .desc %7B display: inline-block; %7D%0A.stock-title .desc .inner %7B max-width: 500px; max-height: 28px; overflow: hidden; line-height: 14px; font-size: 14px; color: rgb%28153, 153, 153%29; margin: 0px 0px 0px 10px; %7D%0A.stock-ctrls %7B display: flex; %7D%0A.stock-ctrls .stock-ctrl %7B flex: 1 1 90px; margin: 0px 10px 0px 0px; position: relative; %7D%0A.stock-ctrls .stock-ctrl:last-child %7B margin-right: 0px; %7D%0A.stock-samples %7B text-align: center; %7D%0A.stock-samples .stock-sample %7B display: inline-block; vertical-align: middle; margin: 0px 10px; %7D%0A%23stock-download-preview %7B position: relative; width: 220px; height: 220px; background: url%28'/assets/img/transparent.png'%29; margin: 20px auto; border: 1px solid rgb%28204, 204, 204%29; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; padding: 10px; z-index: 11; %7D%0A%23stock-download-preview img %7B position: absolute; top: -10000px; bottom: -10000px; margin: auto; left: -10000px; right: -10000px; %7D%0A%23stock-download-preview + .ctrl %7B position: relative; z-index: 12; %7D%0A%23stock-buy-preview %7B width: 100%25; height: 100%25; max-width: 400px; max-height: 400px; margin: auto; position: relative; %7D%0A%23stock-buy-preview img %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; width: 100%25; height: 100%25; %7D%0A%23stock-buy-preview-thumb %7B width: 100%25; height: 138px; max-width: 500px; margin: auto; text-align: center; %7D%0A%23stock-buy-preview-thumb img.xs %7B width: 32px; height: 32px; margin-left: 16px; %7D%0A%23stock-buy-preview-thumb img.sm %7B width: 48px; height: 48px; %7D%0A%23stock-buy-preview-thumb img.md %7B width: 64px; height: 64px; %7D%0A%23stock-buy-preview-thumb img.lg %7B width: 128px; height: 128px; %7D%0A%23buy-paypal-btn, .buy-paypal-btn %7B position: relative; overflow: hidden; min-width: 300px; font-size: 18px; font-weight: 900; %7D%0A.label-paid %7B background: rgb%2849, 202, 38%29; %7D%0A.spinners %7B display: flex; flex-wrap: wrap; max-width: 1024px; width: 100%25; margin: auto; %7D%0A.spinner-thumb %7B flex: 1 1 auto; display: inline-block; width: 140px; height: 140px; padding: 10px; margin: 10px; border-radius: 3px; border: 1px solid rgb%28221, 221, 221%29; background: url%28'/assets/img/transparent.png'%29; %7D%0A.spinner-thumb .license %7B position: absolute; top: 3px; right: 4px; font-size: 11px; padding: 0px 2px; color: rgb%28119, 119, 119%29; %7D%0A.spinner-thumb img %7B width: 100%25; height: 70px; margin: 15px 0px auto; %7D%0A.spinner-thumb .name %7B margin-top: 20px; text-align: center; font-size: 14px; width: 100%25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; %7D%0A.spinners.tiny %7B justify-content: center; %7D%0A.spinners.tiny .spinner-thumb %7B flex: 0 0 auto; width: 90px; height: 110px; background: none; padding: 0px; border: 0px; %7D%0A.spinners.tiny .spinner-thumb .inner %7B position: relative; width: 100%25; height: 90px; %7D%0A.spinners.tiny .spinner-thumb.more i.fa %7B font-size: 16px; height: 66px; position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; color: rgb%280, 0, 0%29; border: 1px solid rgb%28204, 204, 204%29; width: 40px; line-height: 64px; text-align: center; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 1px; %7D%0A.spinners.tiny .spinner-thumb.more .name %7B color: rgb%280, 0, 0%29; %7D%0A.spinners.tiny .spinner-thumb img, .spinners.tiny .spinner-thumb .fa-home %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; width: auto; height: auto; margin: auto; max-width: 100%25; max-height: 100%25; %7D%0A.spinners.tiny .spinner-thumb .name %7B margin-top: 0px; %7D%0A.spinner-pack %7B padding: 10px; margin-bottom: 20px; background: url%28'/assets/img/transparent.png'%29; border-radius: 5px; border: 1px solid rgb%28221, 221, 221%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; position: relative; %7D%0A.spinner-pack .desc %7B width: 500px; margin: 0px 0px 0px 20px; %7D%0A.spinner-pack .format %7B margin-left: 20px; %7D%0A.spinner-pack .format .label %7B font-size: 1em; %7D%0A.spinner-pack .label %7B vertical-align: middle; %7D%0A.spinner-pack .thumb %7B height: 180px; %7D%0A.spinner-pack .sample-img %7B width: 240px; height: 240px; position: absolute; top: 0px; bottom: 80px; right: 10px; left: 500px; margin: auto; %7D%0A.spinner-pack .sample-tag %7B width: 80px; height: 24px; text-align: center; margin: auto; position: absolute; top: 50%25; bottom: 0px; left: 500px; right: 10px; background: rgb%28153, 204, 153%29; color: rgb%28255, 255, 255%29; padding: 2px 6px; border-radius: 3px; %7D%0A.spinner-pack .sample-tag::before %7B content: 'Sample'; display: block; %7D%0A.ldp-svg %7B height: 100%25; %7D%0A%23pattern-frame %7B background: none; box-shadow: rgba%280, 0, 0, 0.3%29 0px 0px 1px 2px; z-index: 12; %7D%0A%23pattern-frame::after %7B position: absolute; top: -17px; font-size: 12px; padding: 0px 5px; left: 2px; border-radius: 5px 5px 0px 0px; background: rgb%28119, 119, 119%29; color: rgb%28255, 255, 255%29; content: 'Pattern Range'; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 95%25; %7D%0A.pattern-view %23stock-editor %7B margin-top: 10px; %7D%0A.pattern-view %23stock-preview %7B width: 100%25; margin-bottom: 10px; %7D%0A.pattern-list %23landing %7B animation: pattern-list-banner 10s cubic-bezier%280.3, 0, 0.7, 1%29 infinite; height: 460px; background: url%28'/assets/img/pattern/landing.png'%29 center center; %7D%0A.pattern-list %23landing .inner %7B height: 260px; %7D%0A.pattern-usage .img %7B width: 200px; height: 200px; margin: 2px auto 10px; display: block; %7D%0A.pattern-usage img %7B width: 100px; height: 100px; margin: 50px 0px 50px 45px; %7D%0A.pat-tile %7B width: 200px; height: 200px; margin: 5px 10px; display: inline-block; overflow: hidden; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; border-radius: 3px; background: center center rgb%28255, 255, 255%29; %7D%0A.pat-showbox %7B width: 100%25; height: 200px; margin: 15px 0px 5px; padding: 10px; background: rgb%28255, 255, 255%29; %7D%0A.pat-showbox .info %7B width: 370px; display: inline-block; vertical-align: top; padding: 12px 0px 0px; %7D%0A.pat-showbox .info .pull-right %7B margin-right: 10px; %7D%0A.pat-showbox .info .name %7B font-size: 1.6em; margin-bottom: 15px; %7D%0A.pat-showbox .pat-tile %7B width: 500px; height: 180px; margin: 0px 0px 0px 10px; border: none; %7D%0A.pat-tile .gif %7B opacity: 0; transition: opacity 0.5s linear; %7D%0A.pat-tile:hover .gif %7B box-shadow: rgba%280, 0, 0, 0.5%29 0px 0px 10px 1px inset; opacity: 1; transition: opacity 0.5s linear; %7D%0A.pat-tile.slide %7B background-position: 0px center; %7D%0A.pat-tile.slide:hover %7B animation: bkslide 15s linear infinite; %7D%0A.pattern-view %23stock-buy-preview-panel %23stock-buy-preview img, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview-thumb img, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview img.xs, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview-thumb img.xs, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview img.sm, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview-thumb img.sm, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview img.md, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview-thumb img.md, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview img.lg, .pattern-view %23stock-buy-preview-panel %23stock-buy-preview-thumb img.lg %7B height: auto; %7D%0A%23icon-list .spinner-thumb %7B width: 100px; height: 100px; background: none; border: none; %7D%0A%23icon-list .spinner-thumb a %7B display: block; width: 64px; height: 64px; margin: auto; %7D%0A%23icon-list .spinner-thumb img %7B cursor: pointer; width: 64px; height: 64px; opacity: 0.8; display: block; margin: auto; %7D%0A%23icon-list .spinner-thumb .name %7B display: none; margin-top: 0px; %7D%0A.buy-lock.unlocked .buy-lock-info %7B display: none; %7D%0A.buy-lock.unlocked .buy-lock-cover %7B display: none; %7D%0A.buy-lock.unlocked .buy-lock-inner %7B opacity: 1; %7D%0A.buy-lock .buy-lock-inner %7B opacity: 0.3; %7D%0A.buy-lock .buy-lock-cover %7B position: absolute; top: 0px; left: 0px; width: 100%25; height: 100%25; z-index: 35; text-align: center; %7D%0A.buy-lock .buy-lock-info %7B display: block; position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; margin: auto; text-align: center; text-shadow: rgb%28255, 255, 255%29 0px 1px 2px; width: 100%25; height: 3em; z-index: 35; %7D%0A.buy-lock .buy-lock-info i.fa %7B font-size: 2em; display: block; %7D%0A.bill-items .bill-item.head %7B font-weight: 900; background: rgb%28238, 238, 238%29; %7D%0A.bill-items .bill-item %7B background: rgb%28255, 255, 255%29; %7D%0A.bill-items .bill-item .datetime, .bill-items .bill-item .name, .bill-items .bill-item .amount, .bill-items .bill-item .payment, .bill-items .bill-item .payer, .bill-items .bill-item .invoice %7B padding: 5px 10px; display: inline-block; %7D%0A.bill-items .bill-item .datetime %7B width: 175px; %7D%0A.bill-items .bill-item .name %7B width: 275px; %7D%0A.bill-items .bill-item .amount %7B width: 85px; %7D%0A.bill-items .bill-item .invoice %7B width: 60px; text-align: center; cursor: pointer; %7D%0A.paper %7B padding: 11mm 15mm; margin: 20px auto; width: 210mm; height: 297mm; background: rgb%28255, 255, 255%29; border: 1px solid rgb%28204, 204, 204%29; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 3px; %7D%0A.invoice.cover-modal-wrapper %7B position: absolute; %7D%0A.invoice.cover-modal-wrapper .cover-modal %7B position: fixed; %7D%0A.invoice.cover-modal-wrapper .cover-modal-inner %7B width: 210mm; %7D%0A.invoice table %7B width: 100%25; border-radius: 2px; margin-bottom: 5px; %7D%0A.invoice table td %7B border-left: 1px solid rgb%28204, 204, 204%29; border-top: 1px solid rgb%28204, 204, 204%29; padding: 1.5mm 0px; %7D%0A.invoice table tr:last-child td %7B border-bottom: 1px solid rgb%28204, 204, 204%29; %7D%0A.invoice table tr td:last-child %7B border-right: 1px solid rgb%28204, 204, 204%29; %7D%0A.invoice table tr:first-child td %7B background: rgb%28249, 249, 249%29; %7D%0A.invoice table tr td:first-child %7B text-align: left; padding-left: 2mm; padding-right: 2mm; %7D%0A.support %7B position: relative; width: 32px; vertical-align: middle; display: inline-block; %7D%0A.support i.fa %7B background: rgb%28255, 255, 255%29; border-radius: 50%25; padding: 1px; color: rgb%2868, 187, 68%29; position: absolute; top: 0px; left: 0px; %7D%0A.support i.fa::before %7B content: ''; %7D%0A.not.support i.fa::before %7B color: rgb%28187, 68, 68%29; content: ''; %7D%0A.not.support img, .not.support svg %7B opacity: 0.3; %7D%0A.btn.disabled i.fa::before %7B color: rgb%28187, 68, 68%29; content: ''; %7D%0A.support-label %7B line-height: 14px; font-size: 12px; transform: scale%280.8%29 translate%28-4px, 0px%29; %7D%0A.support-label.abs %7B position: absolute; top: 3px; left: 4px; %7D%0A.support-label .support-icon %7B color: rgb%28255, 255, 255%29; width: 14px; height: 14px; border-radius: 50%25; background: rgb%28119, 204, 34%29; display: inline-block; text-align: center; %7D%0A.support-label .support-icon.not %7B background: rgb%28238, 238, 238%29; %7D%0Aa.light %7B color: rgb%2898, 182, 255%29; %7D%0A.preview-list %7B max-width: 840px; margin: auto; %7D%0A.preview-list a %7B display: inline-block; margin: 10px; font-size: 12px; width: 64px; cursor: pointer; text-decoration: none; %7D%0A.preview-list a .name %7B overflow: hidden; width: 100%25; text-overflow: ellipsis; white-space: nowrap; color: rgb%280, 0, 0%29; font-family: Helvetica; font-weight: 100; %7D%0A.preview-list a .name small.grayed %7B color: rgb%28221, 221, 221%29; font-size: 0.8em; %7D%0A.preview-list a img %7B width: 64px; height: 64px; display: inline-block; border-radius: 3px; overflow: hidden; border: 1px solid rgb%28238, 238, 238%29; background: url%28'/assets/img/transparent.png'%29 rgb%28255, 255, 255%29; margin: 10px 0px 2px; padding: 5px; transition: transform 1s cubic-bezier%280.3, 0, 0.7, 1%29; %7D%0A.preview-list a img:hover %7B box-shadow: rgba%280, 0, 0, 0.2%29 0px 3px 1px; transform: translate%280px, -3px%29; %7D%0A.browser-compatibility-table %7B font-size: 1.2em; margin: auto; border: 1px solid rgb%28221, 221, 221%29; box-shadow: rgba%280, 0, 0, 0.3%29 0px 1px 1px; %7D%0A.browser-compatibility-table tr %7B border-bottom: 1px solid rgb%28204, 204, 204%29; %7D%0A.browser-compatibility-table tr:last-child %7B border-bottom: 0px; %7D%0A.browser-compatibility-table tr td:first-child %7B width: 240px; %7D%0A.browser-compatibility-table td %7B padding: 6px; text-align: center; min-width: 60px; %7D%0A.browser-compatibility-table img %7B width: 48px; height: 48px; %7D%0A.browser-compatibility-table i.fa.fa-check %7B color: rgb%2868, 187, 85%29; font-size: 1.5em; %7D%0A.browser-compatibility-table i.fa.fa-times %7B color: rgb%28187, 85, 68%29; font-size: 1.5em; %7D%0A.landing-bubbles %7B max-width: 960px; width: 100%25; margin: auto; %7D%0A.landing-bubbles a %7B display: block; text-align: center; text-decoration: none; color: rgb%280, 0, 0%29; %7D%0A.landing-bubbles a img, .landing-bubbles a .img %7B width: 64px; height: 64px; vertical-align: middle; margin: 0px 10px 0px -10px; display: inline-block; %7D%0A.landing-bubbles a i.ld-spinner %7B font-size: 48px; color: rgb%28255, 255, 255%29; margin: 0px 10px 0px -10px; %7D%0A.landing-bubble %7B position: relative; width: 90%25; max-width: 300px; height: 75px; background: rgb%28255, 255, 255%29; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.2%29 0px 2px 3px; margin: 0px auto 5px; padding: 15px; %7D%0A.landing-bubble::after %7B content: ' '; width: 20px; height: 20px; position: absolute; display: block; bottom: -9px; left: 10%25; background: rgb%28255, 255, 255%29; box-shadow: rgba%280, 0, 0, 0.2%29 2px 2px 3px; transform: rotate%2845deg%29 translate%287px, -7px%29; %7D%0A%23landing-mini-icons %7B margin: 10px 0px 30px; text-align: center; %7D%0A%23landing-mini-icons i, %23landing-mini-icons img %7B margin: 10px 10px 5px; text-shadow: rgba%280, 0, 0, 0.3%29 0px 2px 3px; %7D%0A%23landing-mini-icons img %7B width: 32px; height: 32px; margin: 0px; vertical-align: bottom; %7D%0A%23landing-mini-icons .ib %7B width: 70px; line-height: 30px; display: inline-block; %7D%0A%23landing-mini-icons .ib i %7B display: block; width: auto; font-size: 28px; %7D%0A%23landing-mini-icons .ib .desc %7B font-size: 12px; line-height: 16px; %7D%0A%23landing-usage img.full %7B max-width: 100%25; %7D%0A%23icon-root.v2 %7B background: rgb%28255, 255, 255%29; %7D%0A%23icon-root.v2 %23main-landing %7B background: url%28'/assets/img/bk-icon.jpg'%29 center top no-repeat fixed; padding-bottom: 50px; border-bottom: 10px solid rgb%2868, 68, 68%29; %7D%0A%23icon-root.v2 %23tryit %7B margin-left: 6%25; %7D%0A%23icon-root.v2 %23chooser-more %7B max-width: 1024px; margin: 30px auto; %7D%0A%23icon-root.v2 %23chooser-more a %7B padding: 0px 0px 5px; cursor: pointer; display: block; text-align: center; text-decoration: none; %7D%0A%23icon-root.v2 %23chooser-more .item %7B display: inline-block; border-radius: 3px; box-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 1px; margin: 10px; width: 70px; background: url%28'/assets/img/transparent.png'%29; border: 1px solid rgb%28204, 204, 204%29; %7D%0A%23icon-root.v2 %23chooser-more .item img %7B width: 90%25; height: 90%25; margin: 5%25; %7D%0A%23icon-root.v2 %23chooser-more .item img.zoom2 %7B width: 80%25; height: 80%25; margin: 10%25; %7D%0A%23icon-root.v2 %23chooser-more .item img.zoom3 %7B width: 70%25; height: 70%25; margin: 15%25; %7D%0A%23icon-root.v2 %23chooser-more .item.text %7B border: 0px; box-shadow: none; background: none; text-align: center; %7D%0A%23icon-root.v2 %23chooser-more .item.text span %7B vertical-align: middle; line-height: 70px; %7D%0A%23icon-root.v2 %23chooser %7B background: url%28'/assets/img/transparent.png'%29; border-top: 1px solid rgb%28204, 204, 204%29; border-bottom: 1px solid rgb%28204, 204, 204%29; padding: 10px; %7D%0A%23icon-root.v2 %23chooser::before %7B display: none; %7D%0A%23icon-root.v2 %23chooser .ib::before %7B content: ' '; display: block; width: 40px; height: 40px; position: absolute; top: -31px; left: 90px; border-width: 1px 0px 0px 1px; border-right-style: initial; border-bottom-style: initial; border-right-color: initial; border-bottom-color: initial; border-image: initial; border-left-style: solid; border-left-color: rgb%28204, 204, 204%29; border-top-style: solid; border-top-color: rgb%28204, 204, 204%29; background: url%28'/assets/img/transparent.png'%29; transform: rotate%2845deg%29; %7D%0A%23icon-root.v2 %23chooser .ib %7B position: relative; display: flex; flex-wrap: wrap; %7D%0A%23icon-root.v2 %23chooser .item %7B position: relative; padding: 12px 6px; flex: 1 1 auto; %7D%0A%23icon-root.v2 %23chooser .item .icon-png %7B position: relative; background-color: rgb%28255, 255, 255%29; background-size: contain; box-shadow: rgba%280, 0, 0, 0.05%29 0px 1px 1px; border-radius: 3px; border: 1px solid rgb%28227, 227, 227%29; %7D%0A%23icon-root.v2 %23chooser .item .title %7B text-shadow: none; color: rgb%2868, 68, 68%29; %7D%0A%23icon-root.v2 %23chooser .item .license %7B background: rgb%2829, 215, 81%29; font-size: 12px; display: inline-block; padding: 1px 3px 0px; border-radius: 2px; color: rgb%28255, 255, 255%29; position: absolute; top: -5px; left: -5px; line-height: 12px; transform: scale%280.9%29; border: 1px solid rgb%280, 187, 51%29; font-weight: 200; font-family: 'varela round'; %7D%0A.v2 .preview-list %7B max-width: 1024px; width: 95%25; margin: auto; text-align: center; %7D%0A.v2 .preview-list a %7B width: 74px; text-align: center; %7D%0A.v2 .preview-list img %7B margin-left: 5px; %7D%0Ah2 %7B margin-left: -28px; padding-left: 25px; position: relative; %7D%0A.v2 %23dimmer img %7B max-width: 90%25; width: 320px; opacity: 0.5; margin-left: -170px; %7D%0A.cbad %7B width: 320px; height: 110px; %7D%0A.carbon-wrap img %7B float: left; width: 130px; height: 100px; background: rgb%28191, 233, 255%29; %7D%0A.cbad a %7B font-size: 14px; color: rgb%28255, 255, 255%29; %7D%0A.cbad a:hover %7B color: rgb%28255, 255, 204%29; text-decoration: none; %7D%0A.carbon-text %7B width: 186px; text-align: right; float: right; margin-top: 5px; %7D%0A.carbon-poweredby %7B float: right; margin-top: 13px; %7D%0A.carbon-cover %7B width: 330px; height: 110px; background: url%28'/assets/img/icon/kirby3.gif'%29 center center no-repeat; margin: auto; overflow: hidden; box-shadow: rgba%280, 0, 0, 0.1%29 0px 0px 3px; %7D%0A.carbon-top, .carbon-top-out %7B position: absolute; top: 110px; right: 0px; z-index: 24; %7D%0A.carbon-top .cbad, .carbon-top-out .cbad %7B width: 140px; padding: 5px; %7D%0A.carbon-top .cbad a, .carbon-top-out .cbad a %7B line-height: 1.3em; width: 130px; text-align: left; display: block; %7D%0A.carbon-top-out %7B right: -150px; %7D%0A.carbon-spinner-list %7B position: absolute; right: 0px; top: 0px; %7D%0A.carbon-spinner-list .cbad %7B width: 310px; %7D%0A.carbon-spinner-list .cbad a %7B color: rgb%280, 0, 0%29; width: 170px; text-align: left; font-size: 13px; %7D%0A.carbon-spinner-list .carbon-text %7B margin-top: 0px; %7D%0A.carbon-spinner-list .carbon-poweredby %7B margin-top: 11px; %7D%0A.footer2.footer-lg.sticky %7B position: fixed; bottom: 0px; %7D%0A.footer2.footer-lg %7B width: 100%25; min-height: 180px; background: rgb%2868, 68, 68%29; color: rgb%28238, 238, 238%29; line-height: 1.5em; %7D%0A.footer2.footer-lg .inner %7B max-width: 1024px; margin: auto; width: 100%25; padding: 20px; %7D%0A.footer2.footer-lg i.fa %7B margin-right: 5px; width: 15px; text-align: center; %7D%0A.footer2.footer-lg a %7B color: rgb%28255, 255, 255%29; %7D%0A.footer2.footer-lg .fire %7B width: 18px; vertical-align: top; %7D%0A.footer2.footer-lg .col-sm-8 %7B margin-left: -23px; %7D%0A.document h2, .document h3, .document h4 %7B margin: 0px; %7D%0A.document .section h4 + small.grayed, .document .subsection h4 + small.grayed %7B display: inline-block; line-height: 1.1em; margin-top: 4px; %7D%0A.document .section %7B margin-top: 30px; %7D%0A.document .subsection %7B margin-top: 10px; %7D%0A.ldt-power-on %7B transform: scale%280.05, 0.05%29; animation: ldt-power-on 1s forwards; %7D%0A.ldt-power-off %7B transform: scale%281, 1%29; animation: ldt-power-off 1s forwards; %7D%0A.ldt-bounce-in %7B transform: scale%280%29; animation: ldt-bounce-in 1s ease-out forwards; %7D%0A.ldt-bounce-out %7B transform: scale%281%29; animation: ldt-bounce-out 1s ease-out forwards; %7D%0A.ldt-jump-in %7B transform: scale%280.068%29; animation: ldt-jump-in 1s ease-out forwards; %7D%0A.ldt-jump-out %7B transform: scale%280.932%29; animation: ldt-jump-out 1s ease-out forwards; %7D%0A.ldt-zoom-in %7B transform: scale%280%29; animation: ldt-zoom-in 1s forwards; %7D%0A.ldt-zoom-out %7B transform: scale%281%29; animation: ldt-zoom-out 1s forwards; %7D%0A.ldt-grow-ltr %7B transform: scale%280, 1%29; animation: ldt-grow-h 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 0px center 0px !important; %7D%0A.ldt-grow-rtl %7B transform: scale%280, 1%29; animation: ldt-grow-h 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 100%25 center 0px !important; %7D%0A.ldt-grow-ttb %7B transform: scale%281, 0%29; animation: ldt-grow-v 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 50%25 0px 0px !important; %7D%0A.ldt-grow-btt %7B transform: scale%281, 0%29; animation: ldt-grow-v 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 50%25 100%25 0px !important; %7D%0A.ldt-flip-h %7B transform: rotateX%2890deg%29; perspective: 500px; animation: ldt-flip-h 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-flip-v %7B transform: rotateY%2890deg%29; perspective: 500px; animation: ldt-flip-v 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-left-in %7B transform: translate%28-200%25, 0px%29; opacity: 0; animation: ldt-slide-left-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-right-in %7B transform: translate%28200%25, 0px%29; opacity: 0; animation: ldt-slide-right-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-top-in %7B transform: translate%280px, -200%25%29; opacity: 0; animation: ldt-slide-top-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-bottom-in %7B transform: translate%280px, 200%25%29; opacity: 0; animation: ldt-slide-bottom-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-left-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-left-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-right-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-right-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-top-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-top-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-bottom-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-bottom-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-blur-in %7B filter: blur%285px%29; opacity: 0; animation: ldt-blur-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-blur-out %7B filter: blur%280px%29; opacity: 1; animation: ldt-blur-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-rush-left-in %7B transform: translate%28-200%25, 0px%29 skewX%2845deg%29; animation: ldt-rush-left-in 1s linear forwards; %7D%0A.ldt-rush-right-in %7B transform: translate%28200%25, 0px%29 skewX%28-45deg%29; animation: ldt-rush-right-in 1s linear forwards; %7D%0A.ldt-fall-in %7B transform: translate%280px, -139.806%25%29; opacity: 0; animation: ldt-fall-in 1s linear forwards; %7D%0A.ldt-throw-in %7B animation: ldt-throw-in 1s linear forwards; %7D%0A.ld.ldt-vortex-in %7B animation: ldt-vortex-in 1s cubic-bezier%280.3, 0, 1, 0.7%29 infinite; %7D%0A.ld.ldt-vortex-out %7B animation: ldt-vortex-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 infinite; %7D%0A.ldt-slide-px-left-in %7B transform: translate%28-200px, 0px%29; opacity: 0; animation: ldt-slide-px-left-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-right-in %7B transform: translate%28200px, 0px%29; opacity: 0; animation: ldt-slide-px-right-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-top-in %7B transform: translate%280px, -200px%29; opacity: 0; animation: ldt-slide-px-top-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-bottom-in %7B transform: translate%280px, 200px%29; opacity: 0; animation: ldt-slide-px-bottom-in 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-left-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-px-left-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-right-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-px-right-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-top-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-px-top-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-slide-px-bottom-out %7B transform: translate%280px, 0px%29; animation: ldt-slide-px-bottom-out 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; %7D%0A.ldt-rush-px-left-in %7B transform: translate%28-200px, 0px%29 skewX%2845deg%29; animation: ldt-rush-px-left-in 1s linear forwards; %7D%0A.ldt-rush-px-right-in %7B transform: translate%28200px, 0px%29 skewX%28-45deg%29; animation: ldt-rush-px-right-in 1s linear forwards; %7D%0A.ldt-fall-px-in %7B transform: translate%280px, -139.806px%29; opacity: 0; animation: ldt-fall-px-in 1s linear forwards; %7D%0A.ldt-throw-px-in %7B animation: ldt-throw-px-in 1s linear forwards; %7D%0A.ldt-fade-in %7B opacity: 0; animation: ldt-fade-in 1s cubic-bezier%280, 0.3, 0.7, 1%29 forwards; %7D%0A.ldt-fade-out %7B opacity: 1; animation: ldt-fade-in 1s cubic-bezier%280.3, 0, 1, 0.7%29 reverse forwards; %7D%0A.ldt-grow-ltr %7B transform: scale%280, 1%29; animation: ldt-grow-h 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 0px center 0px !important; %7D%0A.ldt-grow-rtl %7B transform: scale%280, 1%29; animation: ldt-grow-h 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 100%25 center 0px !important; %7D%0A.ldt-grow-ttb %7B transform: scale%281, 0%29; animation: ldt-grow-v 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 50%25 0px 0px !important; %7D%0A.ldt-grow-btt %7B transform: scale%281, 0%29; animation: ldt-grow-v 1s cubic-bezier%280, 0.5, 0.5, 1%29 forwards; transform-origin: 50%25 100%25 0px !important; %7D%0A.infinite %7B animation-iteration-count: infinite; %7D%0A%23easing-builder textarea.function %7B padding: 30px; %7D%0A%23easing-chart %7B width: 200px; height: 200px; overflow: hidden; border-radius: 5px; border: 1px solid rgb%28187, 187, 187%29; background: rgb%28255, 255, 255%29; box-shadow: rgba%280, 0, 0, 0.1%29 0px 1px 3px; %7D%0A%23easing-chart canvas %7B border-radius: 5px; width: 100%25; height: 100%25; %7D%0A%23easing-preview %7B width: 100%25; height: 85px; position: relative; border: 1px solid rgb%28221, 221, 221%29; border-radius: 5px; margin: 0px; padding: 10px; %7D%0A%23easing-preview .row %7B margin: 0px; padding-top: 9px; %7D%0A%23easing-preview .col-sm-4::before %7B content: ' '; display: block; position: absolute; width: 80%25; left: 10%25; top: 40px; height: 0px; border-bottom: 1px dashed rgb%28204, 204, 204%29; %7D%0A%23easing-preview .node %7B position: absolute; width: 20px; height: 20px; background: rgb%28255, 0, 0%29; margin-left: -10px; border-radius: 50%25; top: 30px; %7D%0A%23easing-preview .node.center %7B left: 50%25; %7D%0A.cover-modal-wrapper.ico-editor %7B height: 335px; margin: auto; top: 0px; bottom: 100px; %7D%0A.cover-modal-wrapper.ico-editor .panel-body %7B overflow: visible !important; %7D%0A.cover-modal-wrapper.ico-editor a.home %7B vertical-align: top; %7D%0A.cover-modal-wrapper.ico-editor .btn-link.close-btn %7B background: rgba%28255, 255, 255, 0.7%29; color: rgb%28153, 34, 17%29; margin: auto; left: 0px; right: 0px; position: absolute; bottom: -50px; text-align: center; width: 100px; display: block; box-shadow: rgba%280, 0, 0, 0.3%29 0px 0px 1px; %7D%0A.cover-modal-wrapper.ico-editor .cover-modal %7B display: none; %7D%0A.cover-modal-wrapper.ico-editor .panel-default %7B background: rgba%28255, 255, 255, 0.94%29; box-shadow: rgba%280, 0, 0, 0.1%29 0px 0px 3px; %7D%0A.cover-modal-wrapper.ico-editor .panel-default .stock-title %7B margin: 5px 0px 20px; padding-bottom: 10px; border-bottom: 1px solid rgb%28221, 221, 221%29; %7D%0A.cover-modal-wrapper.ico-editor .panel-default .stock-title .name %7B font-size: 2.5em; text-transform: capitalize; %7D%0A.cover-modal-wrapper.ico-editor .inner.tags span, .stock-tag %7B display: inline-block; padding: 5px; background: rgb%28238, 238, 238%29; border-radius: 4px; color: rgb%28170, 170, 170%29; margin: 3px; font-size: 0.9em; cursor: pointer; %7D%0A.cover-modal-wrapper.ico-editor .inner.tags span:hover, .stock-tag:hover %7B background: rgb%28238, 51, 17%29; color: rgb%28255, 255, 255%29; %7D%0A%23ico-scrolldown-hint %7B position: fixed; z-index: 20; bottom: 20px; left: 0px; right: 0px; margin: auto; width: 64px; height: 64px; %7D%0A%23ico-scrolldown-hint img %7B width: 100%25; %7D%0Abody.dim %23ico-scrolldown-hint %7B display: none; %7D%0A%23ico-showcase %7B width: 90%25; max-width: 540px; border-radius: 100%25; height: 64px; overflow: hidden; margin: auto; position: relative; %7D%0A%23ico-showcase .inner %7B position: absolute; white-space: nowrap; overflow: visible; height: 100%25; animation: ico-showcase 20s linear infinite; %7D%0Abody.dim %23ico-search %7B top: 50px; padding: 30px 0px 5px; box-shadow: rgba%280, 0, 0, 0.1%29 0px 2px 2px; %7D%0A%23ico-search %7B position: fixed; transition: all 0.5s ease-in-out; top: 280px; padding: 5px 0px; background: rgba%28255, 255, 255, 0.9%29; width: 100%25; z-index: 10; %7D%0A%23ico-search i.fa.fa-close %7B position: absolute; z-index: 4; left: 10px; top: 12px; font-size: 1.5em; display: none; %7D%0A%23ico-search.has-content i.fa.fa-close %7B display: block; %7D%0A%23ico-search.has-content input %7B padding-left: 35px; %7D%0A%23ico-search.lower %7B top: 370px; %7D%0A%23prc-cc .form-group .fa.form-check %7B position: absolute; right: 10px; top: 50%25; font-size: 20px; transform: translate%280px, -50%25%29; %7D%0A%23prc-cc .form-group.has-error .fa.form-check %7B color: rgb%28199, 37, 78%29; %7D%0A%23prc-cc .form-group.has-error .fa.form-check::after %7B content: ''; %7D%0A%23prc-cc .form-group.ok .fa.form-check %7B color: rgb%2821, 183, 62%29; %7D%0A%23prc-cc .form-group.ok .fa.form-check::after %7B content: ''; %7D%0A%23prc-cc .form-group .hover-tip %7B display: none; opacity: 0; %7D%0A%23prc-cc .form-group.has-error .hover-tip %7B display: block; opacity: 1; transition: opacity 1s linear; %7D%0A.bill-plan-chosen .bill-plan %7B display: none !important; %7D%0A.bill-plan-chosen .btn %7B visibility: hidden; %7D%0A.bill-plan-chosen.choice-weekly-pro-1 .bill-plan:nth-child%281%29 %7B display: block !important; %7D%0A.bill-plan-chosen.choice-monthly-pro-1 .bill-plan:nth-child%282%29 %7B display: block !important; %7D%0A.bill-plan-chosen.choice-yearly-pro-1 .bill-plan:nth-child%283%29 %7B display: block !important; %7D%0A.bill-plan-chosen.choice-monthly-support-1 .bill-plan:nth-child%284%29 %7B display: block !important; %7D%0A.bill-plans %7B display: flex; max-width: 800px; margin: auto; %7D%0A.bill-plan %7B flex: 1 1 0%25; padding: 20px; margin: 10px; border-radius: 5px; border: 1px solid rgb%28170, 170, 170%29; box-shadow: rgba%280, 0, 0, 0.2%29 0px 1px 3px; position: relative; background: rgba%28255, 255, 255, 0.85%29; %7D%0A.bill-plan .icon %7B position: absolute; width: 56px; height: 56px; top: -20px; right: 10px; background: center center / 36px 36px no-repeat rgb%28255, 255, 255%29; border: 1px solid rgb%28170, 170, 170%29; border-radius: 50%25; %7D%0A.bill-plan .name %7B margin-bottom: 10px; text-decoration: underline; color: rgb%28102, 102, 102%29; %7D%0A.bill-plan .price %7B font-size: 2.5em; text-align: center; color: rgb%2834, 136, 68%29; margin: 30px 0px; %7D%0A.bill-plan .price .unit %7B display: inline; font-size: 0.5em; %7D%0A.bill-plan .price .unit::after %7B display: inline; content: 'USD'; %7D%0A.bill-plan .items %7B margin: auto; max-width: 240px; min-height: 110px; %7D%0A.bill-plan .items .item::before %7B content: ''; font-style: normal; font-variant: normal; font-weight: normal; font-stretch: normal; font-size: 14px; line-height: 1; font-family: FontAwesome; display: inline; -webkit-font-smoothing: antialiased; color: rgb%2851, 187, 85%29; margin-right: 8px; %7D%0A.bill-plan .items .item.warning::before %7B content: ''; color: rgb%28187, 85, 51%29; %7D%0A.bill-plan.flat %7B box-shadow: none; border: 0px; %7D%0A.pricing-page .pattern %7B width: 160px; height: 120px; background-position: center center; border-radius: 5px; display: inline-block; margin: 10px; %7D%0A%23pricing-features i.fa %7B margin: 20px; display: inline-block; font-size: 1.9em; %7D%0A.payments.only-paypal %7B position: relative; height: 400px; %7D%0A.payments.only-paypal .pay-credit-card %7B display: none; %7D%0A.payments.only-paypal .pay-paypal %7B width: 100%25; height: 50px; %7D%0A.payments.only-paypal.middle .pay-paypal %7B position: absolute; top: -10000px; left: -10000px; right: -10000px; bottom: -10000px; margin: auto; %7D%0A%23xcomponent-paypal-button-d0016f1f7b %7B font-size: 0px; width: 100%25; %7D%0A%23xcomponent-paypal-button-d0016f1f7b.paypal-button-size-responsive %7B text-align: center; %7D%0A.demo .lds-gear %7B transform: translate%28-29.5px, -29.5px%29 scale%280.295%29 translate%2829.5px, 29.5px%29; width: 59px !important; height: 59px !important; %7D%5D%5D%3E%3C/style%3E%3C/defs%3E%3Cpath ng-attr-d='%7B%7Bconfig.pathCmd%7D%7D' ng-attr-fill='%7B%7Bconfig.color%7D%7D' stroke='none' d='M10 50A40 40 0 0 0 90 50A40 44 0 0 1 10 50' fill='%2313a89e' transform='rotate%28288 50 52%29'%3E%3CanimateTransform attributeName='transform' type='rotate' calcMode='linear' values='0 50 52;360 50 52' keyTimes='0;1' dur='1s' begin='0s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E") !important;
}
/*********************
 LARGER MOBILE DEVICES
 This is for devices like the Galaxy Note or something that's
 larger than an iPhone but smaller than a tablet. Let's call them
 tweeners.
 *********************/
@media only screen and (min-width: 576px) {
  /******************************************************************
   Site Name:
   Author:
   Stylesheet: 481px and Up Stylesheet
   This stylesheet is loaded for larger devices. It's set to
   481px because at 480px it would load on a landscaped iPhone.
   This isn't ideal because then you would be loading all those
   extra styles on that same mobile connection.
   A word of warning. This size COULD be a larger mobile device,
   so you still want to keep it pretty light and simply expand
   upon your base.scss styles.
   ******************************************************************/
  /*********************
   POSTS & CONTENT STYLES
   *********************/
  /* entry content */
  /* end .entry-content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  .mainpadding {
    padding-left: 75px;
    padding-right: 75px;
  }
  #ihf-main-container .ihf-listing-detail {
    padding-right: 75px;
    padding-left: 75px;
  }
}
/*********************
 TABLET & SMALLER LAPTOPS
 This is the average viewing window. So Desktops, Laptops, and
 in general anyone not viewing on a mobile device. Here's where
 you can add resource intensive styles.
 *********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
   Site Name:
   Author:
   Stylesheet: Tablet & Small Desktop Stylesheet
   Here's where you can start getting into the good stuff.
   This size will work on iPads, other tablets, and desktops.
   So you can start working with more styles, background images,
   and other resources. You'll also notice the grid starts to
   come into play. Have fun!
   ******************************************************************/
  /*********************
   GENERAL STYLES
   *********************/
  /*********************
   LAYOUT & GRID STYLES
   *********************/
  /*********************
   HEADER STYLES
   *********************/
  /*********************
   NAVIGATION STYLES
   *********************/
  /* end .nav */
  /*********************
   SIDEBARS & ASIDES
   *********************/
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
   FOOTER STYLES
   *********************/
  /*
   you'll probably need to do quite a bit
   of overriding here if you styled them for
   mobile. Make sure to double check these!
   */
  /* end .footer-links */
  #content-body {
    padding-top: 94px;
  }
  #hero .mainalign h1, #hero .colalign h1 {
    width: initial;
  }
  .header-fullvid-row .mainalign {
    align-items: flex-start !important;
    text-align: left !important;
  }
  .hidden-xs {
    display: block;
  }
  .visible-xs {
    display: none;
  }
  .videowrapper {
    display: block;
  }
  .nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .nav ul {
    background: #323944;
    margin-top: 0;
  }
  .nav li {
    float: left;
    position: relative;
    /*
     plan your menus and drop-downs wisely.
     */
    /* showing sub-menus */
  }
  .nav li a {
    border-bottom: 0;
    font-size: 1em;
    /*
     you can use hover styles here even though this size
     has the possibility of being a mobile device.
     */
  }
  .nav li a:hover, .nav li a:focus {
    color: #ccc !important;
    text-decoration: underline;
  }
  .nav li ul.sub-menu, .nav li ul.children {
    margin-top: 0;
    border: 1px solid #ccc;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    /* highlight sub-menu current page */
  }
  .nav li ul.sub-menu li, .nav li ul.children li {
    /*
     if you need to go deeper, go nuts
     just remember deeper menus suck
     for usability. k, bai.
     */
  }
  .nav li ul.sub-menu li a, .nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    border-bottom: 1px solid #ccc;
  }
  .nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li ul, .nav li ul.children li ul {
    top: 0;
    left: 100%;
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
  .footer-links ul li {
    /*
     be careful with the depth of your menus.
     it's very rare to have multi-depth menus in
     the footer.
     */
  }
  .grid-onethird {
    height: 33.333vw;
    width: 33.333%;
  }
  .grid-onefourth {
    height: 25vw;
    width: 25%;
  }
  .grid-onehalf {
    min-height: 50vw;
    width: 50%;
  }
  .grid-onehalf-small {
    height: 400px;
    width: 50%;
  }
  .grid-twothird {
    height: 33.333vw;
    width: 66.666%;
  }
  .grid-item {
    height: 25vw;
    width: 25%;
  }
  .grid-item--big {
    height: 50vw;
    width: 50%;
  }
  .sidescroller-bar {
    display: inline;
  }
  #header-icon-bar {
    display: inline;
  }
  h1, .h1 {
    font-size: 8.5em;
  }
  h2, .h2 {
    font-size: 3.75em;
  }
  h3, .h3 {
    font-size: 2.5em;
  }
  span.contactbar, span.tel-number {
    font-size: 100%;
  }
  .mainpadding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .mainpadding.mainpadding-search {
    padding-right: 0;
  }
  .listing .listing-main-info {
    padding: 10px;
  }
  .listing .listing-main-info .price {
    font-weight: 700;
    font-size: 22px;
  }
}
/*********************
 DESKTOP
 This is the average viewing window. So Desktops, Laptops, and
 in general anyone not viewing on a mobile device. Here's where
 you can add resource intensive styles.
 *********************/
@media only screen and (min-width: 992px) {
  /******************************************************************
   Site Name:
   Author:
   Stylesheet: Desktop Stylsheet
   This is the desktop size. It's larger than an iPad so it will only
   be seen on the Desktop.
   ******************************************************************/
  p {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
  }
  body {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
  }
  .grid-latestposts {
    width: 100px;
    height: 100px;
  }
  .col-lg-auto {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .header-fullvid-row .mainalign, body.home .header-fullvid-row .colalign {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
  }
  ul.slimmenu {
    width: auto !important;
  }
  ul.slimmenu li {
    width: auto;
  }
  ul.slimmenu li ul.dropdown-menu {
    position: absolute;
    border: 1px solid rgba(50, 57, 68, .15);
    background: white;
    width: fit-content !important;
  }
  ul.slimmenu li ul.dropdown-menu li {
    float: none;
    display: block;
    text-align: left;
  }
  ul.slimmenu li:last-child a {
    padding-right: 0px;
  }
  ul.slimmenu li a {
    padding-left: 7px;
    padding-right: 7px;
  }
  .listing .listing-main-info {
    padding: 30px 45px 30px 45px;
  }
}
/*********************
 LARGE VIEWING SIZE
 This is for the larger monitors and possibly full screen viewers.
 *********************/
@media only screen and (min-width: 1200px) {
  /******************************************************************
   Site Name:
   Author:
   Stylesheet: Super Large Monitor Stylesheet
   You can add some advanced styles here if you like. This kicks in
   on larger screens.
   ******************************************************************/
  .grid-latestposts {
    width: 7vw;
    height: 7vw;
  }
  ul.slimmenu li a {
    padding-left: 25px;
    padding-right: 25px;
  }
  .listing .listing-main-info .price {
    font-weight: 700;
    font-size: 24px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    width: 1440px;
    max-width: 100%;
  }
  .grid-latestposts {
    width: 150px;
    height: 150px;
  }
  .listing .listing-main-info .price {
    font-weight: 700;
    font-size: 30px;
  }
}
/*********************
 VERY LARGE VIEWING SIZE
 This is for the larger monitors and possibly full screen viewers.
 *********************/
@media only screen and (min-width: 1920px) {
  /******************************************************************
   Site Name: 
   Author: 
   Stylesheet: Super Large Monitor Stylesheet
   You can add some advanced styles here if you like. This kicks in
   on larger screens.
   ******************************************************************/
  .grid-latestposts {
    width: 150px;
    height: 150px;
  }
  .mainpadding {
    padding-left: 150px;
    padding-right: 150px;
  }
  ul.slimmenu li a {
    padding-left: 50px;
    padding-right: 50px;
  }
  #ihf-main-container .ihf-listing-detail {
    padding-right: 150px;
    padding-left: 150px;
  }
}
/*********************
 RETINA (2x RESOLUTION DEVICES)
 This applies to the retina iPhone (4s) and iPad (2,3) along with
 other displays with a 2x resolution. You can also create a media
 query for retina AND a certain size if you want. Go Nuts.
 *********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
   Site Name: 
   Author: 
   Stylesheet: Retina Screens & Devices Stylesheet
   When handling retina screens you need to make adjustments, especially
   if you're not using font icons. Here you can add them in one neat
   place.
   ******************************************************************/
  /* 
   EXAMPLE 
   Let's say you have an image and you need to make sure it looks ok
   on retina screens. Let's say we have an icon which dimension are
   24px x 24px. In your regular stylesheets, it would look something
   like this:
   .icon {
   width: 24px;
   height: 24px;
   background: url(img/test.png) no-repeat;
   }
   For retina screens, we have to make some adjustments, so that image
   doesn't look blurry. So, taking into account the image above and the
   dimensions, this is what we would put in our retina stylesheet:
   .icon {
   background: url(img/test@2x.png) no-repeat;
   background-size: 24px 24px;
   }
   So, you would create the same icon, but at double the resolution, meaning 
   it would be 48px x 48px. You'd name it the same, but with a @2x at the end
   (this is pretty standard practice). Set the background image so it matches
   the original dimensions and you are good to go. 
   */
}
/*********************
 PRINT STYLESHEET
 Feel free to customize this. Remember to add things that won't make
 sense to print at the bottom. Things like nav, ads, and forms should
 be set to display none.
 *********************/
@media print {
  /******************************************************************
   Site Name:
   Author:
   Stylesheet: Print Stylesheet
   This is the print stylesheet. There's probably not a lot
   of reasons to edit this stylesheet. If you want to
   though, go for it.
   ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  .sidebar, .page-navigation, .wp-prev-next, .respond-form, nav {
    display: none;
  }
}
