@import 'https://fonts.googleapis.com/css?family=Lato:400,700';
@import 'https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700';
@import 'https://fonts.googleapis.com/css?family=Great+Vibes';
/* ========================================================================
   Component: Base
 ========================================================================== */
/*
 * 1. Normalize default `font-family` and set `font-size` to support `rem` units
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 * 3. Style
 */
html {
  /* 1 */
  font: normal 14px / 20px 'Open Sans';
  /* 2 */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 3 */
  background: #ffffff;
  color: #444444;
}
/*
 * Removes default margin.
 */
body {
  margin: 0;
}
/* Links
 ========================================================================== */
/*
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/*
 * Improve readability of focused elements when they are also in an active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/*
 * Style
 */
a,
.uk-link {
  color: #1fa2d6;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover {
  color: #0074a2;
  text-decoration: underline;
}
/* Text-level semantics
 ========================================================================== */
/*
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/*
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/*
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Consolas has a better baseline in running text compared to `Courier`
 */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 12px;
  /* 2 */
  font-family: Consolas, monospace, serif;
  /* 3 */
  color: #dd0055;
  white-space: nowrap;
}
/*
 * Emphasize
 */
em {
  color: #dd0055;
}
/*
 * Insert
 */
ins {
  background: #ffffaa;
  color: #444444;
  text-decoration: none;
}
/*
 * Mark
 * Note: Addresses styling not present in IE 8/9.
 */
mark {
  background: #ffffaa;
  color: #444444;
}
/*
 * Quote
 */
q {
  font-style: italic;
}
/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
 ========================================================================== */
/*
 * Remove the gap between embedded content and the bottom of their containers.
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * Responsiveness
 * 1. Sets a maximum width relative to the parent and auto scales the height
 * 2. Corrects `max-width` behavior if padding and border are used
 */
audio,
canvas,
img,
svg,
video {
  /* 1 */
  max-width: 100%;
  height: auto;
  /* 2 */
  box-sizing: border-box;
}

/*
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/*
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Block elements
 ========================================================================== */
/*
 * Reset margin
 */
blockquote,
figure {
  margin: 0;
}
/*
 * Margins
 */
p,
ul,
ol,
dl,
blockquote,
pre,
address,
fieldset,
figure {
  margin: 0 0 20px 0;
}
* + p,
* + ul,
* + ol,
* + dl,
* + blockquote,
* + pre,
* + address,
* + fieldset,
* + figure {
  margin-top: 20px;
}
/* Headings
 ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-family: 'Open Sans';
  font-weight: 300;
  color: #444444;
  text-transform: none;
}
/*
 * Margins
 */
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
  margin-top: 25px;
}
/*
 * Sizes
 */
h1,
.uk-h1 {
  font-size: 40px;
  line-height: 50px;
}
h2,
.uk-h2 {
  font-size: 32px;
  line-height: 40px;
}
h3,
.uk-h3 {
  font-size: 24px;
  line-height: 30px;
}
h4,
.uk-h4 {
  font-size: 18px;
  line-height: 24px;
}
h5,
.uk-h5 {
  font-size: 14px;
  line-height: 20px;
}
h6,
.uk-h6 {
  font-size: 12px;
  line-height: 18px;
}
/* Lists
 ========================================================================== */
ul,
ol {
  padding-left: 30px;
}
/*
 * Reset margin for nested lists
 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
}
/* Description lists
 ========================================================================== */
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
/* Horizontal rules
 ========================================================================== */
/*
 * 1. Address differences between Firefox and other browsers.
 * 2. Style
 */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #dddddd;
}
/* Address
 ========================================================================== */
address {
  font-style: normal;
}
/* Blockquotes
 ========================================================================== */
blockquote {
  padding-left: 15px;
  border-left: 5px solid #dddddd;
  font-size: 16px;
  line-height: 22px;
  font-style: italic;
}
/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  padding: 10px;
  background: #f5f5f5;
  font: 12px / 18px Consolas, monospace, serif;
  color: #444444;
  -moz-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto;
}
/* Selection pseudo-element
 ========================================================================== */
::-moz-selection {
  background: #1fa2d6;
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: #1fa2d6;
  color: #ffffff;
  text-shadow: none;
}
/* HTML5 elements
 ========================================================================== */
/*
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}
/*
 * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/*
 * Prevent displaying `audio` without controls in Chrome, Safari and Opera
 */
audio:not([controls]) {
  display: none;
}
/*
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Iframe
 ========================================================================== */
iframe {
  border: 0;
}
/* Fix viewport for IE10 snap mode
 ========================================================================== */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width;
  }
}



}
/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url("../warp/vendor/uikit/fonts/fontawesome-webfont.woff2") format('woff2'), url("../warp/vendor/uikit/fonts/fontawesome-webfont.woff") format("woff"), url("../warp/vendor/uikit/fonts/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* naviのスタイルと重複する為、無効化
 * 1. Allow margin
 * 2. Prevent inherit font style
 * 4. Correct line-height
 * 5. Better font rendering
 * 6. Remove `text-decoration` for anchors
 */
/*
[class*='uk-icon-'] {
  font-family: FontAwesome;
  /* 1 
  display: inline-block;
    */
/* 2 
  font-weight: normal;
  font-style: normal;
      */
/* 4 
  line-height: 1;
      */
/* 5 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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





/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}


/* Customizer
 ========================================================================== */
/* Global
 ========================================================================== */
/* ========================================================================
   Warp theme
 ========================================================================== */
/* Layout
 ========================================================================== */
.tm-navbar-overlay {
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/*
 * Force vertical scrollbar
 */
html {
  overflow-y: scroll;
}
/*
 * Blocks
 */
.tm-toolbar,
.tm-headerbar,
.tm-navbar,
.tm-footer {
  margin-top: 25px;
  margin-bottom: 25px;
}
/* Only large screens */
@media (min-width: 1220px) {
  .tm-headerbar,
  .tm-navbar,
  .tm-footer {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
/* Only phones */
@media (max-width: 767px) {
  .tm-navbar {
    margin: 0 -25px 25px -25px;
    border-width: 0 0 1px 0;
  }
  .tm-logo-small:hover {
    text-decoration: none;
  }
  .tm-navbar:not(.uk-navbar-attached) {
    border-radius: 0;
  }
}
/*
 * Logo small
 * Remove whitespace caused by vertical centering to prevent logo wrapping into the next line
 */
.tm-logo-small {
  letter-spacing: -0.31em;
}
/*
 * Toolbar
 */
.tm-toolbar .uk-float-left .uk-panel {
  margin: 0 25px 0 0;
  float: left;
}
.tm-toolbar .uk-float-right .uk-panel {
  margin: 0 0 0 25px;
  float: right;
}
/*
 * Headerbar
 */
.tm-headerbar .tm-logo {
  float: left;
}
.tm-headerbar .uk-panel {
  max-width: 300px;
  margin-right: 0;
  float: right;
}
/*
 * Middle
 */
.tm-main > :nth-child(n+2) {
  margin-top: 25px;
}
.tm-content > :last-child {
  margin-bottom: 0;
}
/*
 * Footer
 */
.tm-footer {
  position: relative;
  text-align: center;
}
.tm-footer .uk-panel + .uk-panel {
  margin-top: 25px;
}
/*
 * To-top scroller
 */
.tm-totop-scroller {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  color: #444444;
  text-align: center;
  -webkit-transition: all linear 0.05s;
  transition: all linear 0.05s;
}
.tm-totop-scroller:after {
  content: "\f077";
  font-family: "FontAwesome";
}
/*
 * Hover
 * 1. Apply hover style also to focus state
 * 2. Remove default focus style
 */
.tm-totop-scroller:hover,
.tm-totop-scroller:focus {
  /* 1 */
  color: #777777;
  font-size: 16px;
  outline: none;
  /* 2 */
  text-decoration: none;
}
/* Active */
.tm-totop-scroller:active {
  color: #111111;
  font-size: 11px;
}
/* Blog
 ========================================================================== */
/*
 * Leading article
 * Joomla only
 */
.tm-leading-article .uk-article:last-child {
  padding-bottom: 25px;
  border-bottom: 1px solid #dddddd;
}
/* Error
 ========================================================================== */
.tm-error-icon {
  font-size: 250px;
}
.tm-error-headline {
  font-size: 100px;
}
/* Offline
 ========================================================================== */
.tm-offline {
  width: 300px;
}
/* Socialbuttons
 ========================================================================== */
.tm-socialbuttons {
  line-height: 1;
}
.tm-socialbuttons > div {
  margin-right: 10px;
  float: left;
}
/* WordPress only
 ========================================================================== */
.alignleft {
  display: block;
  margin-right: 20px;
  float: left;
}
.alignright {
  display: block;
  margin-left: 20px;
  float: right;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* General
 ========================================================================== */
.tm-box-light {
  background-color: #f8f9f8;
}
.tm-box-dark {
  background-color: #434343;
}
.tm-box-image {
  background: url("../images/bg_testimonials.png") no-repeat center bottom;
}
body {
  background: #ffffff;
  font-family: 'Arial';
  font-size: 13px;
  line-height: 25px;
  color: #8b8b8b;
  min-width: 320px;
}
a,
.uk-button-link {
  color: #686868;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover,
a:focus {
  color: #57a87a;
  text-decoration: none;
  outline: inherit;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
li,
dt,
dd {
  line-height: 25px;
}
.btn,
.uk-button {
  background-color: #57a87a;
  border: 1px solid #ffffff;
  font-family: 'Lato';
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.btn:hover,
.btn:focus,
.uk-button:hover,
.uk-button:focus {
  background-color: #57a87a;
  color: #ffffff;
  border-radius: 10px;
  outline: inherit;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.uk-button-small {
  line-height: 30px;
}
.uk-button-primary,
.uk-button-primary:hover,
.uk-button-primary:focus,
.controls .btn-primary:hover {
  background-color: #359ac4;
}
.uk-button-success,
.uk-button-success:hover,
.uk-button-success:focus,
.controls .btn-success:hover {
  background-color: #72ae41;
}
.uk-button-danger,
.uk-button-danger:hover,
.uk-button-danger:focus,
.controls .btn-danger:hover {
  background-color: #c91032;
}
.btn.disabled,
.btn[disabled],
.uk-button[disabled] {
  background-color: #57a87a;
  color: #ffffff;
  opacity: 0.65;
}
.uk-button-link {
  background: inherit;
  text-shadow: none;
  color: #686868;
}
.uk-button-link:hover {
  background: inherit;
  text-decoration: none;
  color: #57a87a;
}
select.uk-form-small,
textarea.uk-form-small,
input[type].uk-form-small,
input:not([type]).uk-form-small,
select.uk-form-large,
textarea.uk-form-large,
input[type].uk-form-large,
input:not([type]).uk-form-large {
  height: inherit;
  margin-bottom: 0;
}
input,
select,
textarea,
.uk-form input,
.uk-form select,
.uk-form textarea,
input:not([type]),
input[type="text"],
input[type="email"],
input[type="password"],
input[type="datetime"],
.uk-form input:not([type]),
.uk-form input[type="text"],
.uk-form input[type="email"],
.uk-form input[type="password"],
.uneditable-input,
.datefield {
  font-family: 'Arial';
  font-size: 13px;
  color: #555555;
  border: 1px solid #cccccc;
}
label,
.uk-form label {
  font-family: 'Arial';
  font-size: 13px;
}
.well,
.form-actions {
  background: transparent;
}
legend {
  font-size: 13px;
  color: #8b8b8b;
  font-weight: bold;
}
textarea {
  height: auto;
}
input.uk-search-field {
  border: inherit;
}
.row-fluid select[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="input-block-level"],
.row-fluid input[class*="input-block-level"],
.room-form select.form-control,
#sr-experience .tour-form .group label > select,
#sr-experience .activity .table input,
#sr-experience .activity .table select {
  min-height: 32px !important;
}
.uk-icon-button {
  background: #57a87a;
  color: #ffffff;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.uk-icon-button:hover,
.uk-icon-button:focus {
  background: #f8f9f8;
  color: #57a87a;
}
code {
  padding: 2px 4px;
  background: #ffffff;
  border: 1px dashed #dddddd;
}
.uk-article-title,
.contact-name,
h3.page-header,
.page-header h1,
.contact-category h2,
.single_room_type_view h3 {
  font-family: 'Roboto Condensed';
  font-size: 25px;
  line-height: 30px;
  color: #57a87a;
  font-weight: normal;
  text-transform: none;
}
h1 {
  font-family: 'Great Vibes';
  font-size: 35px;
  color: #686868;
}
h2 {
  font-family: 'Great Vibes';
  font-size: 30px;
  color: #57a87a;
  line-height: 35px;
}
h3 {
  font-family: 'Roboto Condensed';
  font-size: 25px;
  color: #686868;
  text-transform: uppercase;
  font-weight: normal;
}
h4 {
  font-family: 'Great Vibes';
  font-size: 25px;
  color: #686868;
}
h5 {
  font-family: 'Roboto Condensed';
  font-size: 20px;
  color: #686868;
  font-weight: 400;
}
h6 {
  font-family: 'Lato';
  font-size: 12px;
  color: #8b8b8b;
  font-weight: bold;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus {
  background: #57a87a;
}
/* Toolbar
 ========================================================================== */
.tm-toolbar {
  margin-top: 0;
  margin-bottom: 0;
  background-color: #f8f9f8;
  border-top: 4px solid #686868;
  border-bottom: 1px solid #e3e4e3;
  height: 35px;
}
.tm-toolbar .uk-float-right .uk-panel {
  background-color: #686868;
  color: #fff;
  height: 35px;
  padding: 0 10px;
  margin: 0 0 0 4px;
}
.tm-toolbar #address_top p,
.solidres-module-currency li {
  float: left;
  font-size: 12px;
}
.tm-toolbar #address_top p:not(:first-child),
.solidres-module-currency li:not(:first-child) {
  padding-left: 10px;
}
.tm-toolbar #address_top p {
  margin-top: 7px;
}
#address_top i {
  margin-right: 7px;
}
.tm-toolbar ul.solidres-module-currency {
  margin-top: 5px;
}
ul.solidres-module-currency {
  padding-left: 0;
}
.solidres-module-currency li {
  list-style: none;
}
.tm-toolbar .solidres-module-currency li a,
.mod-languages li a {
  color: #fff;
}
.solidres-module-currency li a:hover {
  text-decoration: underline;
}
.mod-languages {
  margin-top: 3px;
}
.mod-languages li:last-child {
  margin-right: 0;
}
.tm-map .uk-grid-margin {
  margin-top: inherit;
}
.tm-map {
  position: absolute;
  z-index: 999;
  width: 100%;
  text-align: center;
}
#map_wrapper {
  display: none;
  border-bottom: 4px solid #57a87a;
}
#map_holder {
  height: 330px;
}
.map-slide #map-handler {
  position: absolute;
  left: 0;
  right: 0;
  margin: 10px auto 0 auto;
  font-size: 25px;
  width: 25px;
  color: #57a87a;
}
/* Header
 ========================================================================== */
.tm-logo #logo {
  padding-right: 30px;
  text-align: center;
}
.tm-logo h1,
.tm-logo-small h1 {
  margin-bottom: 0;
}
.tm-logo h6,
.tm-logo-small h6 {
  margin-top: 0;
}
.tm-logo-small #logo {
  margin-top: -30px;
  padding-bottom: 10px;
}
.tm-logo-small {
  letter-spacing: normal;
}
.tm-logo h6 span,
.tm-logo-small h6 span {
  color: #686868;
  border-top: 1px solid #57a87a;
  padding: 5px 10px 0 10px;
}
.uk-navbar-content.uk-navbar-center.uk-visible-small {
  height: inherit;
  max-width: 100%;
}
.tm-headerbar #social_icons {
  padding-top: 10px;
}
.tm-headerbar .weather_sp1,
.tm-headerbar .sp-weather {
  margin-top: -40px;
}
.weather_sp1 {
  padding: 0;
}
.weather_sp1_c {
  margin: 0;
}
.weather_sp1_cleft {
  text-align: center;
  padding-right: 20px;
}
.sp-weather-current-temp,
p.spw_current_temp {
  color: #57a87a;
  font-size: 18px;
}
p.spw_current_temp {
  margin: 10px 0 0;
}
.sp-weather-city,
p.weather_sp1_city {
  font-family: 'Great Vibes';
  font-size: 30px;
  color: #57a87a;
  font-weight: normal;
  margin: 5px 0 !important;
}
.spw_row,
.sp-condition,
.sp-humidity {
  font-size: 11px;
  line-height: 18px;
}
.sp-weather-icon {
  text-align: center;
}
img.spw_icon_big {
  height: auto;
  -webkit-animation: rotation 7s infinite linear;
  -moz-animation: rotation 7s infinite linear;
  -o-animation: rotation 7s infinite linear;
  animation: rotation 7s infinite linear;
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Slideshow
 ========================================================================== */
.solidres-module-camera.camera_wrap .camera_pag .camera_pag_ul {
  background-color: #f8f9f8;
  border-bottom: 1px solid #e3e4e3;
  position: relative;
  z-index: 999;
  margin-top: 27px;
}
.camera_wrap {
  margin-bottom: 0;
}
.camera_wrap .camera_pag .camera_pag_ul {
  text-align: center;
  margin-top: 20px;
}
.camera_wrap .camera_pag .camera_pag_ul li {
  background: #57a87a;
  width: 10px;
  height: 10px;
  margin: 15px 5px 5px 5px;
}
.camera_wrap .camera_pag .camera_pag_ul li > span {
  width: 4px;
  height: 4px;
  top: 3px;
  left: 3px;
}
.camera_wrap .camera_pag .camera_pag_ul li.cameracurrent > span {
  background: #fff;
}
.camera_wrap .camera_pag .camera_pag_ul li:hover > span {
  background: #686868;
}
/* Checkavailability - Advancedsearch - Experience Search Module
 ========================================================================== */
input.room_quantity + .span12 {
  margin-left: 0;
}
.tm-reservation {
  background-color: #ffffff;
  border-bottom: 4px solid #686868;
  margin: 0 20px;
}
.tm-reservation:hover {
  border-bottom: 4px solid #57a87a;
}
form.solidres-module-checkavailability,
form.solidres-module-advancedsearch,
.solidres-module-checkavailability fieldset,
.solidres-module-advancedsearch fieldset {
  margin-bottom: 0;
}
.room_num_row .room_num_label {
  color: #686868;
  margin-top: 4px;
  font-style: normal;
}
.room_num_row label {
  display: none;
}
#room_num_row_1 label {
  display: block;
}
.datefield {
  height: 22px;
  line-height: 22px;
  box-shadow: none;
  border-radius: inherit;
}
.ui-widget {
  font-family: 'Arial';
  font-size: 13px;
}
/* Home Page
 ========================================================================== */
.solidres-module-roomtype:not(:first-child),
.solidres-module-asset:not(:first-child),
.solidres-module-extra:not(:first-child),
.solidres-module-coupon:not(:first-child),
.solidres-module-experience:not(:first-child),
.solidres-module-exp-extra:not(:first-child) {
  margin-top: 20px;
}
.solidres-module-roomtype-item,
.solidres-module-asset-item,
.solidres-module-extra-item,
.solidres-module-experience-item,
.solidres-module-exp-extra-item {
  text-align: center;
}
#features {
  padding-top: 20px;
  text-align: center;
}
#features .icon-box {
  background: #f8f9f8;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
#features i {
  font-size: 25px;
  color: #57a87a;
  line-height: 100px;
}
#features p {
  font-family: 'Roboto Condensed';
  font-size: 14px;
  color: #686868;
  font-weight: bold;
  text-transform: uppercase;
}
#features .icon-box i,
#features .icon-box:hover i {
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
#features .icon-box:hover i {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
#img_intro,
#img_city {
  outline: 1px solid #ffffff;
  outline-offset: 7px;
  margin: 0 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#img_intro {
  float: left;
  margin: 10px 30px 20px 7px;
}
#about:hover #img_intro,
#img_city:hover {
  outline: 8px solid #ffffff;
  outline-offset: inherit;
}
#img_intro img,
#img_city img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s linear;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#img_intro:hover img,
#img_city:hover img {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#img_intro .mask,
#img_city .mask {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
#img_intro:hover .mask,
#img_city:hover .mask {
  opacity: 1;
  width: 100%;
  height: 100%;
}
#img_intro:hover .mask a,
#img_city:hover .mask a {
  -webkit-transition: all 0.5s ease 0.2s;
  -moz-transition: all 0.5s ease 0.2s;
  -o-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
}
#img_intro:hover .mask a {
  margin-top: 40%;
}
#img_city:hover .mask a {
  margin-top: 70%;
}
#img_city img {
  width: 100%;
  min-height: 350px;
}
.name_city h4,
.name_city h5 {
  color: #fff;
  margin: 10px 0 5px;
}
.name_city {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #57a87a;
  background: rgba(0, 0, 0, 0.3);
}
#img_city:hover .name_city {
  background: #ffffff;
}
#img_city:hover .name_city h4,
#img_city:hover .name_city h5 {
  color: #57a87a;
}
.solidres-module-roomtype-item,
.solidres-module-asset-item,
.solidres-module-experience-item {
  background-color: #f8f9f8;
  border-bottom: 4px solid #57a87a;
  padding: 20px 0 0 0;
}
.solidres-module-roomtype-item .btn,
.solidres-module-asset-item .btn,
.solidres-module-experience-item .btn {
  border: none;
}
.sr_tinycircleslider,
.sr_tinycircleslider .overlay {
  width: 210px;
  height: 210px;
  margin: auto;
}
.sr_tinycircleslider .viewport {
  width: 200px;
  height: 200px;
  border-radius: 110px;
}
.sr_tinycircleslider .overview li {
  width: 200px;
  height: 200px;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.solidres-module-roomtype-item .roomtype_desc,
.solidres-module-asset-item .asset_desc {
  padding: 0 20px;
}
.solidres-module-roomtype-item.circleslider_type:hover,
.solidres-module-asset-item.circleslider_type:hover,
.solidres-module-experience-item:hover {
  border-bottom: 4px solid #686868;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.solidres-module-roomtype-item.circleslider_type:hover h5,
.solidres-module-roomtype-item.circleslider_type:hover h4,
.solidres-module-asset-item.circleslider_type:hover h4,
.solidres-module-experience-item:hover h5,
.solidres-module-experience-item:hover h4 {
  color: #57a87a;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.solidres-module-roomtype-item:hover .sr_tinycircleslider .overview li,
.solidres-module-asset-item:hover .sr_tinycircleslider .overview li {
  box-shadow: inset 0 0 0 15px rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.solidres-module-roomtype-item:hover .btn,
.solidres-module-asset-item:hover .btn,
.solidres-module-experience-item:hover .btn {
  background-color: #686868;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.solidres-module-roomtype-item .carousel img,
.solidres-module-asset-item .carousel img {
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  width: 100%;
}
.carousel-control {
  top: 50%;
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 15px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #fff;
  opacity: 0.7;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #57a87a;
  opacity: 1;
}
.solidres-module-roomtype-item.carousel_type:hover,
.solidres-module-asset-item.carousel_type:hover {
  background-color: #57a87a;
  border-bottom: 4px solid #686868;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.solidres-module-roomtype-item.carousel_type:hover h5,
.solidres-module-roomtype-item.carousel_type:hover h4,
.solidres-module-roomtype-item.carousel_type:hover .roomtype_desc,
.solidres-module-asset-item.carousel_type:hover h4,
.solidres-module-asset-item.carousel_type:hover .asset_desc,
.solidres-module-asset-item.carousel_type:hover .review-score-text {
  color: #ffffff;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.list .solidres-module-asset-item {
  border: none;
  padding: 0;
  text-align: left;
}
.list .solidres-module-asset-item h3 {
  margin: 10px 0;
}
.list .solidres-module-asset-item p {
  margin: 10px 0;
}
.solidres-module-experience .item {
  background: inherit;
  overflow: inherit;
  margin: 0;
}
.solidres-module-experience-list .item-categories > a {
  color: #8b8b8b;
}
.solidres-module-experience-list .item-left > .base-price,
#sr-experience .item > .base-price {
  background: rgba(87, 168, 122, 0.85);
}
.solidres-module-experience-list .item:hover .base-price,
#sr-experience .item:hover .base-price {
  background: #57a87a;
}
#sr-experience .item {
  background: #f8f9f8;
}
.holidays-box {
  background-color: #fff;
  padding: 20px;
  margin-right: 1px;
  margin-top: 1px;
}
#holidays-type i {
  float: left;
  color: #57a87a;
}
.feedback_item {
  padding: 20px 0 5px 0;
  border-top: 1px solid #57a87a;
}
.feedback_list .feedback_item:first-child,
.feedback-carousel .feedback_item {
  border-top: none !important;
}
.feedback_name {
  color: #57a87a;
  font-weight: bold;
}
.feedback_list .feedback_name {
  text-align: left;
}
.feedback_date {
  color: #686868;
  font-size: 11px;
  font-weight: bold;
}
.feedback_txt {
  font-style: italic;
  line-height: 30px;
  font-size: 15px;
}
.feedback_list .feedback_txt,
.feedback-carousel .feedback_txt {
  padding: 0 100px;
}
.solidres-module-feedback .carousel {
  line-height: inherit;
}
ol.carousel-indicators {
  padding-left: 0;
}
.feedback-carousel .carousel-indicators > li {
  background-color: #57a87a;
}
.feedback-carousel .carousel-indicators > li:hover,
.feedback-carousel .carousel-indicators > .active {
  background-color: #fff;
}
.feedback-carousel .carousel-control {
  border: none;
  width: 20px;
  height: 20px;
  background: inherit;
  font-size: 30px;
  line-height: 15px;
  opacity: 1;
  top: inherit;
  bottom: 15px;
}
.feedback-carousel .carousel-control .fa {
  font-size: 20px;
  color: #57a87a;
}
.solidres-module-feedback .carousel li:before,
.solidres-module-feedback .carousel li:after {
  box-shadow: none;
  position: inherit;
}
.solidres-module-extra-item a .img_extra {
  position: relative;
  overflow: hidden;
}
.solidres-module-extra-item .img_extra img {
  border-top: 4px solid #57a87a;
  width: 100%;
  min-height: 200px;
}
.solidres-module-extra-item .img_extra .mask {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: block;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.solidres-module-extra-item .details,
.solidres-module-exp-extra-item .details {
  padding: 20px;
}
.solidres-module-extra-item .details h4,
.solidres-module-extra-item .details h5 {
  color: #57a87a;
}
.solidres-module-extra-item .details h5,
.solidres-module-exp-extra-item h5 {
  margin: 0;
}
.solidres-module-extra-item:hover .mask {
  top: 0;
  width: 100%;
}
.solidres-module-extra-item:hover .details,
.solidres-module-exp-extra-item:hover .details {
  background-color: #57a87a;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.solidres-module-extra-item:hover .mask i {
  margin-top: 35%;
}
.solidres-module-extra-item:hover .details h4,
.solidres-module-extra-item:hover .details h5,
.solidres-module-exp-extra-item:hover .details h4,
.solidres-module-exp-extra-item:hover .details h5 {
  color: #ffffff;
}
.solidres-module-exp-extra-item img {
  border-top: 4px solid #57a87a;
}
.solidres-module-coupon-item {
  background-color: #ffffff;
  border-bottom: 4px solid #57a87a;
  position: relative;
}
.solidres-module-coupon-item .coupon_img {
  position: relative;
  float: left;
  width: 40%;
}
.solidres-module-coupon-item .coupon_img img {
  width: 100%;
  min-height: 100px;
}
.solidres-module-coupon-item .details_coupon {
  width: 60%;
  float: left;
}
.details_coupon h5,
.details_coupon p,
.coupon_img .mask p {
  margin: 10px 20px;
}
.solidres-module-coupon-item .discount {
  border: inherit;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  background-color: #57a87a;
  font-family: 'Lato';
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  padding: 4px 12px;
  font-size: 14px;
}
.solidres-module-coupon .mask {
  opacity: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  display: block;
  left: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
}
.solidres-module-coupon-item:hover .mask {
  opacity: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.solidres-module-coupon-item .mask .line {
  height: 1px;
  width: 0;
  margin: 5px auto;
  background-color: #ffffff;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}
.solidres-module-coupon-item:hover .mask .line {
  width: 50%;
}
.solidres-module-coupon-item:hover .mask p {
  margin-top: 15%;
  font-weight: bold;
}
.solidres-module-coupon-item:hover .mask p:hover {
  color: #57a87a;
}
/* Bottom
 ========================================================================== */
.tm-bottom-c .uk-panel-box,
.tm-bottom-d .uk-panel-box {
  background-color: #f8f9f8;
}
.tm-bottom-c .uk-panel-title span {
  border-bottom: 1px solid #686868;
  line-height: 40px;
}
#book_by_phone {
  font-family: 'Roboto Condensed';
  color: #fff;
}
#book_by_phone .call-action {
  font-size: 30px;
  margin-bottom: 10px;
}
#book_by_phone i {
  font-size: 60px;
  float: left;
  padding-right: 20px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
#book_by_phone i:hover {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45eg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tm-bottom-c .uk-list-line > li:nth-child(n+2) {
  border-top: inherit;
  padding-top: inherit;
  margin-top: 15px;
}
.tm-bottom-c {
  margin-top: 20px;
}
.tm-bottom-c li {
  background: url("../images/bullet1.jpg") 15px 5px no-repeat;
  padding-left: 40px;
}
.tm-bottom-c i {
  color: #57a87a;
  padding-right: 7px;
  -webkit-transition: all 700ms linear;
  -moz-transition: all 700ms linear;
  -o-transition: all 700ms linear;
  transition: all 700ms linear;
}
.tm-bottom-c .uk-panel-box:hover i {
  -webkit-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transform: rotateY(360deg);
}
.tm-bottom-c .uk-panel-box a,
.tm-bottom-c .uk-panel-box {
  color: #8b8b8b;
}
.tm-bottom-c .uk-panel-box a:hover {
  color: #57a87a;
  text-decoration: none;
}
.tm-bottom-c a.btn,
.tm-bottom-c a.btn:hover {
  color: #ffffff;
}
.tm-bottom-c p {
  padding-left: 15px;
}
.acym_module_form .acym_introtext {
  float: left;
}
table.acym_form {
  float: right;
  width: 45%;
  margin-top: -5px;
}
.acyfield_text input,
.acyfield_text input:focus:invalid:focus {
  color: #555;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 0;
}
.acyfield_text input:focus:invalid:focus {
  box-shadow: none;
}
/*Tableless*/
p.acysubbuttons {
  margin: 0;
}
/*Vertical*/
tr:nth-child(2) > td.acysubbuttons {
  padding-top: 10px;
}
/* Footer
 ========================================================================== */
.tm-footer {
  margin-top: 35px;
  margin-bottom: 0;
  color: #8b8b8b;
}
ul.uk-subnav.uk-subnav-line {
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
}
.uk-subnav > li > a {
  color: #ffffff;
}
.uk-subnav > li > a:hover,
.uk-subnav > li > a:focus,
.uk-subnav > .uk-active > * {
  color: #57a87a;
}
#footer-logo h4 {
  color: #8b8b8b;
  padding-top: 30px;
  margin-bottom: 0;
}
.tm-totop-scroller {
  position: relative;
  margin: 0 auto;
  background-color: #505050;
  color: #fff !important;
  padding: 5px 10px;
}
/* Main Content Page
 ========================================================================== */
.tm-middle {
  padding: 20px 0;
}
.tm-main .tm-content {
  padding-top: 15px;
}
ul.category.row-striped {
  padding-left: 0;
}
.login button.btn.btn-primary:hover,
.logout button.btn.btn-primary:hover,
.uk-form .uk-form-row button.uk-button {
  background-color: #57a87a;
}


.reservation_asset_item [class^="icon-"]:before,
.reservation_asset_item [class*=" icon-"]:before {
  font-family: inherit;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-widget-header,
a.ui-state-default:hover,
.sr-datepicker .ui-datepicker .ui-datepicker-header {
  color: #57a87a;
}
.sr-datepicker .sr-state-active > a,
.calendar-container table tbody td.selected,
.calendar-container table tbody td.day:hover,
.calendar-container table tbody td.today:after {
  background: #57a87a !important;
}
td.bookable a.ui-state-default,
td.bookable.ui-datepicker-unselectable a.ui-state-default,
.ui-state-default,
.ui-widget-content .ui-state-default {
  background: #fafafa;
  color: #686868;
  border: 1px solid #ddd;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  font-weight: bold;
}
td.bookable a.ui-state-default:hover,
td.bookable.ui-datepicker-unselectable a.ui-state-default:hover {
  background: #eee;
  color: #57a87a;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
td.ui-datepicker-current-day.bookable a.ui-state-default {
  background: #57a87a;
  color: #ffffff;
}
td.ui-datepicker-current-day.bookable a.ui-state-default {
  font-weight: normal;
}
.ui-state-disabled span,
.ui-widget-content .ui-state-disabled span,
.ui-widget-header .ui-state-disabled span {
  color: #8b8b8b;
}
.reservation_asset_item h1 {
  font-family: 'Roboto Condensed';
  font-size: 25px;
  color: #57a87a;
  text-transform: none;
}
.reservation_asset_item .reservation_asset_subinfo {
  color: #8b8b8b;
}
.sr-wish-list > a,
.sr-wish-list > a:hover,
.sr-wish-list > a:focus {
  background: #f8f9f8;
}
.sr-list-icon svg[class^="sr-icon-"] {
  fill: #57a87a;
}
.sr-list-icon li {
  color: #8b8b8b;
}
.camera_thumbs_cont {
  border-radius: inherit;
  margin-top: -66px;
}
.camera_thumbs_cont ul li > img {
  width: 50px;
  height: 50px;
}
.reservation_asset_item .other-photos img:hover {
  opacity: .8;
}
.nav > li > a {
  color: #686868;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus,
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus,
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
  background: #ffffff;
  color: #57a87a;
}
.nav .dropdown-toggle .caret {
  border-top-color: #686868;
  border-bottom-color: #686868;
}
.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret,
.nav-tabs .active .dropdown-toggle .caret,
.nav-tabs li.dropdown.open .caret,
.nav-tabs li.dropdown.open.active .caret,
.nav-tabs li.dropdown.open a:hover .caret,
.nav-tabs li.dropdown.open a:focus .caret {
  border-top-color: #57a87a;
  border-bottom-color: #57a87a;
}
.sr-feedback-list {
  background: #ffffff;
}
.sr-feedback-list .author .author_name {
  font-size: 13px;
}
#feedback .info > small,
#solidres .info > small {
  color: #8b8b8b;
}
.list_feedback_value > li.tag {
  border: 1px solid #57a87a;
  background-color: #57a87a;
  font-weight: normal;
  font-size: 12px;
}
.list_feedback_value > li.tag:before {
  border-left-color: #57a87a;
}
.sr-feedback-list .box > .detail .scores {
  border-bottom: 1px solid #57a87a;
}
.sr-feedback-list .box > .detail > .like_count {
  color: #57a87a;
}
.pager li > a,
.pager li > span {
  background-color: #f8f9f8;
  color: #686868;
}
.pager li > a:hover,
.pager li > a:focus {
  background-color: #57a87a;
  color: #ffffff;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #57a87a;
}
#asset-feedback-scores .badge {
  background-color: #57a87a;
}
#asset-feedback-scores .progress,
#expScores .progress {
  background: #f8f9f8;
}
#asset-feedback-scores > ul {
  width: 100%;
  margin-top: 0;
}
#asset-checkavailability-form fieldset {
  margin-bottom: 0;
}
.wizard-default ul li {
  color: #8b8b8b;
}
.wizard-default ul li.active {
  color: #57a87a;
}
.wizard-default ul li.active .badge {
  background-color: #57a87a;
}
.wizard-default ul li.complete {
  color: #8b8b8b;
}
.wizard-default ul li.complete .badge {
  background-color: #8b8b8b;
}
.reservation-single-step-holder.guestinfo .control-group,
.guestinfo.tour-info .control-group {
  margin-bottom: 0;
}
.reservation_asset_default .step-content {
  padding-bottom: 20px;
}
.roomtype_name {
  color: #57a87a;
  margin-top: 20px;
}
.roomtype_name .label.label-default,
h3 .label.label-info {
  background: #57a87a;
  font-size: 14px;
  margin-top: -5px;
  padding: 3px 5px 2px;
  font-family: 'Arial';
}
.room .carousel-control,
.asset-row .carousel-control {
  background: rgba(255, 255, 255, 0.7);
}
.availability-calendar {
  background: #f8f9f8;
}
div.availability-calendar table tr th {
  color: #57a87a;
}
.fs-date-block span:nth-child(2) {
  background: #57a87a;
}
.slick-prev:before,
.slick-next:before {
  color: #8b8b8b;
}
.room-default .tariff-box {
  border-left: 3px solid #57a87a;
}
.room-default .tariff-box.is-whole {
  border-left: 3px solid #686868;
}
.room-default .min_tariff,
.room-default .normal_tariff {
  font-family: 'Roboto Condensed';
  color: #57a87a;
}
.room-form h4 {
  font-family: 'Roboto Condensed';
  font-size: 22px;
}
.breakdown {
  font-family: 'Arial';
  font-size: 13px;
}
.breakdown-row span.gross {
  color: #57a87a;
}
.powered a:link,
.powered a:hover,
.powered a:visited {
  color: #686868;
}
.powered a:hover {
  color: #57a87a;
}
.popover-title {
  font-family: 'Roboto Condensed';
  font-size: 20px;
}
.help-block,
.help-inline {
  color: #686868;
}
#solidres .alert.alert-success h3 {
  text-transform: none;
}
#sr-experience .text-green {
  color: #57a87a;
}
#sr-experience .tour-name {
  font-family: 'Roboto Condensed';
  font-size: 25px;
}
#sr-experience .box-bg {
  background-color: #f8f9f8;
}
#sr-experience .tour-header .tour-location,
#sr-experience .sr-exp-distances .sr-exp-distance {
  color: #686868;
}
#sr-experience .tour-base-price h4 {
  font-family: 'Arial';
  font-size: 18px;
}
#sr-experience .tour-base-price h3 small,
#sr-experience .tour-base-price h4 small {
  color: #8b8b8b;
  font-size: 12px;
}
#sr-experience .booking-header .tour-price {
  background-color: #57a87a;
}
#sr-experience .tour-info .fa,
#sr-experience .tour-price-info .page-header {
  color: #57a87a;
}
#sr-experience .header-title {
  color: #8b8b8b;
}
#sr-experience .nav-tabs,
#sr-experience .nav-tabs > .active > a,
#sr-experience .nav-tabs > .active > a:hover,
#sr-experience .nav-tabs > .active > a:focus,
#sr-experience .nav-tabs > li > a:hover,
#sr-experience .nav-tabs > li > a:focus {
  border-color: #57a87a;
}
#sr-experience .nav-tabs > .active > a,
#sr-experience .nav-tabs > .active > a:hover,
#sr-experience .nav-tabs > .active > a:focus,
#sr-experience .nav-tabs > li > a:hover,
#sr-experience .nav-tabs > li > a:focus {
  background: #57a87a;
  color: #fff;
}
#sr-experience .register .control-group input {
  height: 32px;
}
#sr-experience .payment #offline-card-info {
  border: 1px solid #ccc;
}
.availability-search h3 {
  color: #8b8b8b;
  margin-bottom: 10px;
}
.asset-contact i,
.roomtype_more_desc i {
  color: #57a87a;
}
.asset-contact p,
.roomtype_more_desc p {
  margin: 0 0 5px 0;
}
.asset-contact * + p,
.roomtype_more_desc * + p {
  margin-top: 5px;
}
.asset-wish-list .sr-wish-list > a {
  background: #ffffff;
}
.asset-tabs .nav-tabs {
  border-color: #dbdbdb;
}
.asset-tabs .nav-tabs > .active > a,
.asset-tabs .nav > li > a:hover,
.asset-tabs .nav > li > a:focus {
  background-color: #57a87a;
  color: #ffffff;
  border-color: #e3e4e3;
}
#asset-checkavailability-form h4 {
  background-color: #8b8b8b;
}
.wizard-style,
.reservation_asset_style .tariff-box,
#asset-checkavailability-form form {
  background-color: #f8f9f8;
}
.wizard-style ul li h5 {
  margin-top: 10px;
}
.wizard-style ul li .badge {
  background-color: #8b8b8b;
}
.wizard-style .badge:before,
.wizard-style .badge:after {
  border-color: #8b8b8b;
}
.wizard-style ul li.active h5 {
  color: #57a87a;
}
.wizard-style ul li.active .badge {
  background-color: #57a87a;
}
.wizard-style .active .badge:before,
.wizard-style .active .badge:after {
  border: 5px solid #57a87a;
}
.bs2 .wizard-style ul li.complete .badge {
  width: 38px;
}
.reservation_asset_style .button-row.button-row-top,
.reservation_asset_style .button-row.button-row-bottom {
  background-color: #f8f9f8;
}
.reservation_asset_style div.availability-calendar table tr th {
  border-bottom-color: #57a87a;
}
.reservation_asset_style .roomtype_name .label.label-default {
  margin-top: 0;
}
.reservation_asset_style .tariff-value {
  background-color: #57a87a;
}
.reservation_asset_style .tariff-box.is-whole .tariff-value {
  background-color: #686868;
}
.tariff-button .tariff_type {
  color: #57a87a;
}
.reservation_asset_style .confirmation .termsandconditions {
  background-color: #f8f9f8;
}
.asset-row h3 {
  margin-bottom: 0;
}
.asset-row p {
  margin: 5px 0;
}
.review-score-badge {
  color: #57a87a;
}
.room-type-row .label.label-info {
  background: #57a87a;
  padding: 2px 7px 2px 5px;
  font-size: 12px;
}
.navbar-inner {
  border-color: #e3e4e3;
}
.navbar .nav > li > a,
.dropdown-menu > li > a {
  color: #686868 !important;
}
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  color: #57a87a !important;
  outline: none;
}
.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #686868;
  border-bottom-color: #686868;
}
.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret,
.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #57a87a;
  border-bottom-color: #57a87a;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a,
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus,
.nav-collapse .dropdown-menu a:hover,
.nav-collapse .dropdown-menu a:focus {
  background: none;
  color: #57a87a !important;
}
.navbar .btn-navbar,
.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus {
  background-color: #57a87a;
  background-image: none;
}
.solidres-module-filter form {
  margin-bottom: 0;
}
.solidres-module-filter fieldset,
.solidres-module-filter legend {
  margin-bottom: 10px;
}
.solidres-module-filter ul {
  padding-left: 0;
}
.triggerfiltering:hover i {
  padding-left: 5px;
}
.solidres-module-myrecentsearches p {
  margin-top: 0;
}
.solidres-module-myrecentsearches i {
  color: #fb0;
}
#dashboard {
  padding-bottom: 10px;
}
a.dashboard-shotcut.teal,
a.dashboard-shotcut.purple,
a.dashboard-shotcut.darkpurple,
a.dashboard-shotcut.green,
a.dashboard-shotcut.skyblue,
a.dashboard-shotcut.orange,
.statistics-box {
  background: #f8f9f8;
  color: #686868;
}
a.dashboard-shotcut:hover {
  outline: none;
  color: #57a87a;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.statistics-box > div.first-col {
  background: #57a87a;
}
.statistics-box > div.second-col h2 {
  font-family: 'Roboto Condensed';
}
div#quickBooking_form_content {
  padding: 25px;
}
.btn .caret {
  border-top-color: #ffffff;
}
#solidres .js-stools .btn,
.input-append .btn {
  border-color: #57a87a;
}
.btn-wrapper input.form-control {
  width: auto;
}
.table .btn.active {
  background-color: #57a87a;
  color: #ffffff;
}
.sr_list_view .label {
  font-size: 12px;
  padding: 1px 5px 0;
}
.sr_list_view .label.label-info {
  background: #57a87a;
}
.main-edit-info {
  background: #f8f9f8;
  border-color: #686868;
}
.main-edit-info label,
.control-group.info .control-label {
  color: #57a87a;
}
.main-edit-info input,
.main-edit-info select,
.control-group.info input {
  border-color: #686868;
  color: #686868;
}
.controls .input-append .btn {
  margin-right: 1px;
}
.radio.btn-group > label:first-of-type,
.radio.btn-group > label:last-of-type,
.btn-group > .btn:first-child,
.btn-group > .btn:last-child {
  border-radius: inherit;
}
.radio.btn-group > label:first-of-type:hover,
.radio.btn-group > label:last-of-type:hover,
.btn-group > .btn:first-child:hover,
.btn-group > .btn:last-child:hover {
  border-radius: 10px;
}
.control-group.default-tariff p {
  margin-bottom: 0;
}
.control-group .controls .span2 input,
.control-group input.span6 {
  height: 32px;
}
p.extras-wrapper-line,
p.coupons-wrapper-line {
  margin: 0;
}
.extras-wrapper-line label,
.coupons-wrapper-line label,
#limitbookingdetails_holder label {
  line-height: 28px;
}
.reservation-detail-box h3 {
  color: #686868;
  text-transform: none;
}
.reservation-detail-box .reservation-details .label {
  font-size: 13px;
  padding: 4px 5px 2px;
}
.editable-click,
a.editable-click,
a.editable-click:hover {
  border-bottom-color: #686868;
}
.room_selection_wrapper .label {
  background: #57a87a;
  font-size: 12px;
}
#sr-reservation-form-room > div.row-fluid.button-row.button-row-bottom > div.span8 {
  min-height: 30px;
}
.feedback_attribute_group > header {
  background-color: #57a87a;
  color: #ffffff;
  font-size: 13px;
}
#ExperienceTabContent .controls .input-append .btn {
  margin-right: 2px;
}
#reservation-summary .payment-name {
  font-size: 22px;
  text-transform: inherit;
  color: #686868;
}
#reservation-summary .experience-name > div,
#reservation-summary .payment-name > div {
  border-color: #686868;
}
/* Module Variations
 ========================================================================== */
.box1 {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1) inset;
}
.box2 {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-color: #57a87a;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.07);
}
.box3 {
  border-width: 1px 1px 1px 4px;
  border-style: solid;
  border-color: #57a87a;
  border-radius: 5px;
}
.title1 h3.uk-panel-title {
  color: #57a87a;
  text-shadow: 1px 1px #f8f9f8, 1px 1px #e3e4e3;
}
.title2 h3.uk-panel-title {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 0 1px rgba(0, 0, 0, 0.9) inset, 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 1px -1px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.title3 h3.uk-panel-title {
  background: #57a87a;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.2) inset;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.title4 h3.uk-panel-title {
  border-bottom: 1px solid #57a87a;
  padding-bottom: 5px;
  text-align: center;
}
.title2 h3.uk-panel-title,
.title3 h3.uk-panel-title {
  padding: 5px 10px;
  text-transform: none;
}
.tm-bottom-c .title1 h3.uk-panel-title span,
.tm-bottom-c .title2 h3.uk-panel-title span,
.tm-bottom-c .title3 h3.uk-panel-title span,
.tm-bottom-c .title4 h3.uk-panel-title span {
  border-bottom: none;
}
.tm-bottom-c .title3 h3.uk-panel-title i {
  color: #fff;
}
/* Responsive
 ========================================================================== */
/* 1220 */
@media (max-width: 1219px) {
  .statistics-chart-area {
    display: none !important;
  }
  .uk-navbar-flip {
    display: none;
  }
  .sr_tinycircleslider,
  .sr_tinycircleslider .overlay {
    width: 180px;
    height: 180px;
  }
  .sr_tinycircleslider .viewport,
  .sr_tinycircleslider .overview li {
    width: 170px;
    height: 170px;
  }
}
/* 960 */
@media (max-width: 960px) {
  .tm-reservation {
    background-color: inherit;
  }
  .sr_tinycircleslider,
  .sr_tinycircleslider .overlay {
    width: 150px;
    height: 150px;
  }
  .sr_tinycircleslider .viewport,
  .sr_tinycircleslider .overview li {
    width: 140px;
    height: 140px;
  }
  .solidres-module-coupon-item .coupon_img,
  .solidres-module-coupon-item .details_coupon {
    width: 100%;
  }
  .wizard-default ul li {
    padding: 0 0 0 10px;
    font-size: 12px;
  }
}
/* 768 */
@media (max-width: 767px) {
  .solidres-module-roomtype-item:not(:first-child),
  .solidres-module-asset-item:not(:first-child),
  .solidres-module-extra-item:not(:first-child),
  .solidres-module-coupon-item:not(:first-child),
  .solidres-module-experience-item:not(:first-child),
  .solidres-module-exp-extra-item:not(:first-child) {
    margin-top: 20px;
  }
  .map-slide #map-handler {
    margin: 6px auto 0 auto;
  }
  .tm-reservation {
    background-color: #fff;
  }
  .room_num_row .span4:nth-child(2),
  .room_num_row .span4:nth-child(3) {
    float: left;
    width: 48.93617021%;
  }
  .room_num_row .span4:nth-child(3) {
    margin-left: 2.12765957%;
  }
  .room_num_row label {
    display: block;
  }
  #room_num_row_1 .room_num_label label {
    display: none;
  }
  .room_num_row .room_num_label {
    margin-top: 0;
  }
  .sr_tinycircleslider,
  .sr_tinycircleslider .overlay {
    width: 210px;
    height: 210px;
  }
  .sr_tinycircleslider .viewport,
  .sr_tinycircleslider .overview li {
    width: 200px;
    height: 200px;
  }
  .list .solidres-module-asset-item h3,
  .list .solidres-module-asset-item p {
    padding: 0 20px;
  }
  .feedback_list .feedback_name {
    text-align: center;
  }
  .feedback_list .feedback_txt {
    padding: 0;
  }
  .feedback-carousel .feedback_txt {
    padding: 0 35px;
  }
  .solidres-module-coupon-item {
    float: left !important;
  }
  .solidres-module-coupon-item .coupon_img {
    width: 40%;
  }
  .solidres-module-coupon-item .details_coupon {
    width: 60%;
  }
  #book_by_phone .call-action {
    font-size: 22px;
  }
  #book_by_phone i {
    font-size: 55px;
  }
  table.acym_form {
    float: left;
    width: 100%;
    margin-top: 5px;
  }
  .wizard-default ul li {
    font-size: 16px;
  }
  .solidres-module-filter ul {
    padding-left: 30px;
  }
  .solidres-module-myrecentsearches {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .nav-tabs > li {
    float: none;
  }
  .nav-tabs > li > a {
    margin-right: 0;
    border-color: #ddd;
    border-radius: inherit;
  }
  .nav-tabs > li > a:hover {
    border-color: #ddd;
  }
  .nav-tabs > .active > a,
  .nav-tabs > .active > a:hover,
  .nav-tabs > .active > a:focus {
    background-color: #fff;
    border-bottom-color: #ddd;
  }
  .reservation_asset_default .nav-tabs > li.active > a {
    background-color: #fff;
  }
}
/* 480 */
@media (max-width: 480px) {
  .sp-weather-current .pull-left {
    float: left;
  }
  .tm-reservation {
    margin: 0;
  }
  .ui-datepicker {
    padding: 0 4px;
    width: 220px;
  }
  .solidres-module-coupon-item .coupon_img,
  .solidres-module-coupon-item .details_coupon {
    width: 100%;
  }
  #book_by_phone i {
    display: none;
  }
}
/* Direction: RTL
 ========================================================================== */
html[dir="rtl"] .camera_wrap .camera_pag .camera_pag_ul li > span {
  right: 3px;
}
html[dir="rtl"] .weather_sp1 {
  float: left;
}
html[dir="rtl"] .weather_sp1_cleft {
  padding-left: 20px;
  padding-right: 0;
}
html[dir="rtl"] .sp-weather-current .pull-left {
  margin-right: 10px;
  margin-left: 0;
}
html[dir="rtl"] .carousel-inner > .item {
  -webkit-transition: 0.6s ease-in-out right;
  -moz-transition: 0.6s ease-in-out right;
  -o-transition: 0.6s ease-in-out right;
  transition: 0.6s ease-in-out right;
}
html[dir="rtl"] .feedback-carousel .carousel-control.right {
  left: 15px;
}
html[dir="rtl"] .room-default .tariff-box {
  border-left: 3px solid #57a87a;
}
html[dir="rtl"] .room-default .tariff-box.is-whole {
  border-left: 3px solid #686868;
}
html[dir="rtl"] #sr-wishlist .asset-row a.icon {
  left: inherit;
  right: 5px;
}
html[dir="rtl"] .list_feedback_value > li.tag:before {
  border-right-color: #57a87a;
}
@media (max-width: 767px) {
  html[dir="rtl"] .room_num_row .span4:nth-child(3) {
    margin-left: 2.12765957%;
  }
}
