/*
Theme Name: TaxiPark
Theme URI: http://taxipark.like-themes.com/
Author: Like Themes
Author URI: http://like-themes.com/
Description: Taxipark | WordPress Theme for a Taxi Service
Version: 1.6.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: four-columns, right-sidebar, full-width-template
Text Domain: taxipark

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*------------------------------------------------------------------
[Table of contents]

1. CSS Reset
2. Global variables
3. Header (inner page) and (logo/ navigation bar and menu) / header, nav.navbar
4. Homepage top blocks 
5. Services Block / #services
6. Tariffs Block / #tariffs
7. Download App Block / #download
8. Text block with large car on the right / #car-block
9. Testimonials / #testimonials
10. Banners homepage / #homepage-banners
11. Partners block / #partners
12. Bottom block with address/menu/form/mini-gallery goes before footer
13. Footer and copyrights
14. Widgets
15. Contacts inner page width full-width map
16. Blog posts and blog inner page
17. Gallery
18. Shortcodes
19. Forms (buttons/radio/inputs)
20. Pagination
21. WordPress styles
22. Typography (for text page) / .text-page
23. Common classes (hover/transition effect/etc)
23. WooCommerce

Note: All blocks can be used multiple times, so classes are used.
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Color codes]

	Black (headers, btns, backgrounds): #1F1F1F
	Yellow (headers, hrefs, backgrounds): #FFC61A
	Gray-darker:	#868686;
	Gray:			#CCCCCC;
	Gray-light:     #E6E6E6;
	Gray-lighter:	#F5F5F5;
	Red:			#9F340A;
*/
.black {
  color: #1F1F1F;
}
.white {
  color: #fff;
}
.yellow {
  color: #FFC61A;
}
.red {
  color: #9F340A;
}
/*
  1. CSS Reset
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* 2. Global classes */
html {
  overflow-y: scroll;
}
html,
body {
  height: 100% !important;
}
body {
  color: #1F1F1F;
  background: #fff;
  overflow-x: hidden;
}
body,
div,
table {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}
a {
  color: #FFC61A;
  text-decoration: none;
  transition: color 0.5s ease;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0 none;
  text-decoration: none;
}
a img {
  border: 0;
  outline: 0 none;
}
.form-control:focus,
input:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.margin-top-0 {
  margin-top: 0 !important;
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.margin-0 {
  margin: 0 !important;
}
.vc_section {
  overflow: hidden;
}
.bg-color-theme_color.vc_section {
  background: #FFC61A;
}
.bg-color-theme_color.vc_column_container .vc_column-inner {
  background: #FFC61A;
}
.bg-color-theme_color h2 {
  color: #fff;
}
.bg-color-black,
.bg-tone-dark {
  color: #F5F5F5;
}
.bg-color-black.vc_section,
.bg-tone-dark.vc_section {
  background: #1F1F1F;
}
.bg-color-black.vc_column_container .vc_column-inner,
.bg-tone-dark.vc_column_container .vc_column-inner {
  background: #1F1F1F;
}
.bg-color-black h1,
.bg-tone-dark h1,
.bg-color-black h2,
.bg-tone-dark h2,
.bg-color-black h3,
.bg-tone-dark h3 {
  color: #fff !important;
}
.bg-color-gray.vc_section {
  background: #F5F5F5;
}
.bg-color-gray.vc_column_container .vc_column-inner {
  background: #F5F5F5;
}
.hidden {
  display: none;
}
.inner {
  margin-bottom: 75px;
}
@media (min-width: 991px) {
  p.short-width {
    width: 60%;
    margin-bottom: 70px;
  }
}
/*
	3. Header, navigation bar and menu
*/
header.page-header {
  background: #2C2C2C;
  padding: 35px 0 15px 0;
  margin: 0;
  /*	min-height: 161px;*/
  text-align: center;
  /*	overflow: hidden;*/
  margin-top: 0px;
  /*	margin-bottom: 75px;*/
  color: #fff;
  position: relative;
}
@media (min-width: 768px) {
  header.page-header:after {
    background: rgba(51, 51, 51, 0.59) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMjNkYTEyYy1jOGMyLTcwNDItODg2Ny0xZmZhZWI3MmViOTMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkFGM0ExREExQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkFGM0ExRDkxQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YzJkM2FhYWItMDUyZi05NDQ4LTlhM2UtMjk1OTkzMDQyOGI2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTA5ZDg5ZmQtMDA2NS0xMWU3LThiMWMtZTE0MmJhNWM4NzA3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+vyDTwQAAABlJREFUeNpiYkCA/0wwBhAzMsEYIBGAAAMANqADBoMGgUwAAAAASUVORK5CYII=");
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
}
header.page-header .container {
  position: relative;
  z-index: 2;
}
header.page-header.menu-hidden {
  padding-top: 50px;
}
header.page-header .breadcrumbs {
  text-align: center;
  list-style: none;
  margin: 0px 0 5px 0;
  padding: 0;
  /*		@media @ms-and-less { display: none; }*/
}
header.page-header .breadcrumbs li {
  display: inline-block;
  margin: 0 0 0 0px;
  font-size: 14px;
  color: #FFC61A;
}
header.page-header .breadcrumbs li:not(:last-child):after {
  margin: 0 0 0 0px;
  content: " // ";
  color: #FFC61A;
}
header.page-header .breadcrumbs li a {
  font-size: 14px;
  color: #CCCCCC;
}
header.page-header .breadcrumbs li a:hover {
  color: #FFC61A;
}
@media (max-width: 768px) {
  header.page-header {
    background-image: none !important;
    height: auto;
    padding: 35px 0;
  }
  header.page-header h1 {
    margin: 0;
  }
}
header.page-header h1 {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.top-bar {
  background: #FFC61A;
  min-height: 41px;
  padding: 9px 0 0 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .top-bar {
    text-align: center;
  }
  .top-bar .align-right {
    float: none !important;
  }
}
.top-bar .contacts {
  margin: 0 0 0 -60px;
}
.top-bar .contacts div {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 14px;
  float: left;
  text-transform: uppercase;
  margin: 0 0 0 60px;
}
.top-bar .contacts div span {
  font-size: 18px;
  margin-right: 5px;
}
.top-bar .contacts div .fa-phone {
  vertical-align: middle;
}
.top-bar h6 {
  margin: 4px 0 0 0;
  font-size: 14px;
  font-family: 'Fira Sans Condensed', sans-serif;
}
@media (max-width: 1199px) {
  .top-bar h6 {
    margin: 0px 0 10px;
  }
}
.top-bar h6 > span,
.top-bar h6 .fa {
  margin-right: 6px;
  font-size: 14px;
}
.top-bar .social-small {
  margin-bottom: 0;
}
.top-bar .social-small a {
  color: #1F1F1F;
}
.top-bar .btn.align-right,
.top-bar .btn.pull-right,
.top-bar .woocommerce-product-search:not(.halio-form) input[type="submit"].align-right,
.top-bar .woocommerce-product-search:not(.halio-form) input[type="submit"].pull-right,
.top-bar .wp-searchform:not(.halio-form) input[type="submit"].align-right,
.top-bar .wp-searchform:not(.halio-form) input[type="submit"].pull-right,
.top-bar form.post-password-form:not(.halio-form) input[type="submit"].align-right,
.top-bar form.post-password-form:not(.halio-form) input[type="submit"].pull-right,
.top-bar form.search-form:not(.halio-form) input[type="submit"].align-right,
.top-bar form.search-form:not(.halio-form) input[type="submit"].pull-right,
.top-bar form.wpcf7-form:not(.halio-form) input[type="submit"].align-right,
.top-bar form.wpcf7-form:not(.halio-form) input[type="submit"].pull-right,
.top-bar form.form:not(.halio-form) input[type="submit"].align-right,
.top-bar form.form:not(.halio-form) input[type="submit"].pull-right,
.top-bar form.comment-form:not(.halio-form) input[type="submit"].align-right,
.top-bar form.comment-form:not(.halio-form) input[type="submit"].pull-right,
.top-bar form:not(.halio-form) input[type="submit"].align-right,
.top-bar form:not(.halio-form) input[type="submit"].pull-right {
  display: inline-block;
  margin: -3px 0 0 0;
}
@media (max-width: 1199px) {
  .top-bar .btn.align-right,
  .top-bar .btn.pull-right,
  .top-bar .woocommerce-product-search:not(.halio-form) input[type="submit"].align-right,
  .top-bar .woocommerce-product-search:not(.halio-form) input[type="submit"].pull-right,
  .top-bar .wp-searchform:not(.halio-form) input[type="submit"].align-right,
  .top-bar .wp-searchform:not(.halio-form) input[type="submit"].pull-right,
  .top-bar form.post-password-form:not(.halio-form) input[type="submit"].align-right,
  .top-bar form.post-password-form:not(.halio-form) input[type="submit"].pull-right,
  .top-bar form.search-form:not(.halio-form) input[type="submit"].align-right,
  .top-bar form.search-form:not(.halio-form) input[type="submit"].pull-right,
  .top-bar form.wpcf7-form:not(.halio-form) input[type="submit"].align-right,
  .top-bar form.wpcf7-form:not(.halio-form) input[type="submit"].pull-right,
  .top-bar form.form:not(.halio-form) input[type="submit"].align-right,
  .top-bar form.form:not(.halio-form) input[type="submit"].pull-right,
  .top-bar form.comment-form:not(.halio-form) input[type="submit"].align-right,
  .top-bar form.comment-form:not(.halio-form) input[type="submit"].pull-right,
  .top-bar form:not(.halio-form) input[type="submit"].align-right,
  .top-bar form:not(.halio-form) input[type="submit"].pull-right {
    margin-top: 0;
    margin-bottom: 6px;
  }
}
.top-bar .heading .fa {
  color: #1F1F1F !important;
}
.nav-wrapper {
  height: 84px;
  background: #2C2C2C;
}
@media (max-width: 991px) {
  .nav-wrapper {
    min-height: 70px;
  }
}
body.admin-bar {
  /*	nav.navbar { margin-top: 32px; }*/
}
@media (min-width: 991px) {
  body.admin-bar .navbar-fixed-top:not(.affix-top),
  body.admin-bar .navbar-affix:not(.affix-top) {
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  body.admin-bar nav.navbar {
    margin-top: 0px;
  }
  body.admin-bar .navbar.affix,
  body.admin-bar .navbar-fixed-top {
    position: relative !important;
    margin-bottom: 0;
    background-color: #000;
  }
  body.admin-bar header.page-header {
    padding-top: 45px;
  }
}
@media (max-width: 991px) {
  body.admin-bar .navbar.affix,
  body.admin-bar .navbar-fixed-top {
    position: relative !important;
    background-color: #000;
  }
  body.admin-bar #navbar {
    margin: 119px 0  0 !important;
  }
  body.admin-bar .ab-item {
    height: 42px !important;
    line-height: 42px !important;
  }
  body.admin-bar .slider-div {
    margin-top: 0 !important;
  }
}
body.admin-bar #adminbarsearch {
  background: transparent !important;
}
nav.navbar {
  background: rgba(31, 31, 31, 0.6);
  border: 0;
  transition: background .8s ease;
  min-height: 84px;
  margin: 0;
  z-index: 1000000;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
}
nav.navbar.dark {
  background: rgba(31, 31, 31, 0.94);
  transition: all .3s ease !important;
}
nav.navbar.dark.scrollUp {
  transform: translateY(-110px);
}
@media (max-width: 1199px) {
  nav.navbar {
    background: #030015;
    min-height: 70px;
    overflow: visible !important;
  }
  nav.navbar .container {
    z-index: 1000000;
    overflow: visible !important;
  }
}
nav.navbar #navbar {
  position: relative;
  z-index: 1000000;
}
@media (min-width: 1200px) {
  nav.navbar #navbar ul.navbar-nav {
    float: right;
    margin-right: -13px;
    z-index: 10000;
  }
  nav.navbar #navbar ul.navbar-nav li,
  nav.navbar #navbar ul.navbar-nav a {
    color: #fff;
    padding: 6px 0 26px;
  }
  nav.navbar #navbar ul.navbar-nav a {
    padding: 24px 14px 4px;
    color: #CCCCCC;
    text-transform: uppercase;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
  }
  nav.navbar #navbar ul.navbar-nav a:hover {
    background: transparent;
    color: #FFC61A;
  }
  nav.navbar #navbar ul.navbar-nav a:hover span {
    transition: color 0.5s ease;
  }
  nav.navbar #navbar ul.navbar-nav a:hover span:after,
  nav.navbar #navbar ul.navbar-nav a:hover span:before {
    visibility: visible;
    opacity: 1;
    transition-delay: .2s;
    left: 50%;
  }
  nav.navbar #navbar ul.navbar-nav a:focus {
    background: transparent;
  }
  nav.navbar #navbar ul.navbar-nav > li > a span {
    display: inline-block;
  }
  nav.navbar #navbar ul.navbar-nav > li > a span:after {
    content: "";
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    left: 0%;
    position: absolute;
    width: 26px;
    margin-left: -13px;
    bottom: -2px;
    height: 4px;
    border: 0 none;
    /*							border-bottom: 2px dotted @yellow;*/
  }
  nav.navbar #navbar ul.navbar-nav .current-menu-ancestor > a,
  nav.navbar #navbar ul.navbar-nav .current-menu-item > a,
  nav.navbar #navbar ul.navbar-nav .current-menu-parent > a,
  nav.navbar #navbar ul.navbar-nav .current_page_parent > a,
  nav.navbar #navbar ul.navbar-nav .current_page_item > a {
    color: #FFC61A;
    cursor: default;
  }
  nav.navbar #navbar ul.navbar-nav .current-menu-ancestor > a span:after,
  nav.navbar #navbar ul.navbar-nav .current-menu-item > a span:after,
  nav.navbar #navbar ul.navbar-nav .current-menu-parent > a span:after,
  nav.navbar #navbar ul.navbar-nav .current_page_parent > a span:after,
  nav.navbar #navbar ul.navbar-nav .current_page_item > a span:after,
  nav.navbar #navbar ul.navbar-nav .current-menu-ancestor > a span:before,
  nav.navbar #navbar ul.navbar-nav .current-menu-item > a span:before,
  nav.navbar #navbar ul.navbar-nav .current-menu-parent > a span:before,
  nav.navbar #navbar ul.navbar-nav .current_page_parent > a span:before,
  nav.navbar #navbar ul.navbar-nav .current_page_item > a span:before {
    visibility: visible;
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    left: 50%;
  }
  nav.navbar #navbar ul.navbar-nav > li + li {
    z-index: 19;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li {
    z-index: 18;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li {
    z-index: 17;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li + li {
    z-index: 16;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li + li + li {
    z-index: 15;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li + li + li + li {
    z-index: 14;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li + li + li + li + li {
    z-index: 13;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li + li + li + li + li + li {
    z-index: 12;
  }
  nav.navbar #navbar ul.navbar-nav > li + li + li + li + li + li + li + li + li + li {
    z-index: 11;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children,
  nav.navbar #navbar ul.navbar-nav > li.hasSub {
    padding-right: 6px;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children.current_page_item > a,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children.current_page_item > a,
  nav.navbar #navbar ul.navbar-nav > li.hasSub.current_page_item > a {
    /*padding-right: 25px;*/
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children.current_page_item > a:before,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children.current_page_item > a:before,
  nav.navbar #navbar ul.navbar-nav > li.hasSub.current_page_item > a:before {
    /*margin-left: -18px;*/
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children > a,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children > a,
  nav.navbar #navbar ul.navbar-nav > li.hasSub > a {
    vertical-align: middle;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children > a:after,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children > a:after,
  nav.navbar #navbar ul.navbar-nav > li.hasSub > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11pt;
    vertical-align: middle;
    content: "\f105";
    margin: 3px 0 0 6px;
    position: absolute;
    color: #FFC61A;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children:hover > ul,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children:hover > ul,
  nav.navbar #navbar ul.navbar-nav > li.hasSub:hover > ul {
    visibility: visible;
    opacity: 1;
    transition-delay: .2s;
    margin-left: -125px;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children:hover > a,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children:hover > a,
  nav.navbar #navbar ul.navbar-nav > li.hasSub:hover > a {
    color: #FFC61A;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children:hover > a:after,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children:hover > a:after,
  nav.navbar #navbar ul.navbar-nav > li.hasSub:hover > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f107";
    margin-top: 3px;
    margin-left: 6px;
    color: #FFC61A;
  }
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children:last-child:hover > ul.children,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children:last-child:hover > ul.children,
  nav.navbar #navbar ul.navbar-nav > li.page_item_has_children:last-child:hover > ul.sub-menu,
  nav.navbar #navbar ul.navbar-nav > li.menu-item-has-children:last-child:hover > ul.sub-menu {
    margin-left: -222px;
  }
  nav.navbar #navbar ul.navbar-nav ul {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
  }
  nav.navbar #navbar ul.navbar-nav ul.children,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu {
    background: #fff;
    position: absolute;
    width: 250px;
    /*					margin: 28px 0 0 -186px;*/
    margin: 28px 0 0 0;
    left: 50%;
    margin-left: -250px;
    list-style: none;
    padding: 0px 0px;
    z-index: 10000;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  }
  nav.navbar #navbar ul.navbar-nav ul.children li,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li {
    color: #1F1F1F;
    margin: 0;
    padding: 0;
    position: relative;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li:last-child,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:last-child {
    border-bottom: none;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li a {
    color: #1F1F1F;
    padding: 10px 30px;
    font-size: 11pt;
    display: block;
    text-transform: none;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li a:after,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li a:after {
    margin-top: 5px;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li.current_page_item > a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.current_page_item > a {
    color: #FFC61A;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li:hover,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover {
    background: #FFC61A;
    color: #1F1F1F;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li:hover a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover a {
    color: #1F1F1F;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li:hover a:after,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover a:after {
    color: #1F1F1F;
    margin-top: 5px;
  }
  nav.navbar #navbar ul.navbar-nav ul.children ul,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu ul {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    position: absolute;
    top: 0 !important;
    margin-top: 0;
  }
  nav.navbar #navbar ul.navbar-nav ul.children ul a:hover,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu ul a:hover {
    color: #fff;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li:hover > ul,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li:hover > ul {
    visibility: visible;
    opacity: 1;
    transition-delay: .2s;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li.menu-item-has-children > a:after,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.menu-item-has-children > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0da";
    margin-top: 3px;
    margin-left: 8px;
  }
  nav.navbar #navbar ul.navbar-nav ul.children li.current-menu-item > a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.current-menu-item > a,
  nav.navbar #navbar ul.navbar-nav ul.children li.current-menu-parent > a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.current-menu-parent > a,
  nav.navbar #navbar ul.navbar-nav ul.children li.current_page_parent > a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.current_page_parent > a,
  nav.navbar #navbar ul.navbar-nav ul.children li.current_page_item > a,
  nav.navbar #navbar ul.navbar-nav ul.sub-menu li.current_page_item > a {
    color: #9F340A;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul {
    left: 250px !important;
    margin-left: -86px;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul {
    left: auto !important;
    right: 250px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul {
    left: auto !important;
    right: 250px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul ul ul {
    left: auto !important;
    right: 250px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul ul ul ul ul {
    left: auto !important;
    right: 250px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul ul ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li ul.children ul ul ul ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li ul.sub-menu ul ul ul ul ul ul ul ul ul ul {
    left: auto !important;
    right: 250px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul {
    left: auto !important;
    right: 336px !important;
    margin-left: -86px;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul {
    left: auto !important;
    right: 336px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul ul {
    left: auto !important;
    right: 336px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul ul ul ul {
    left: auto !important;
    right: 336px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul ul ul ul ul ul {
    left: auto !important;
    right: 336px !important;
    margin-left: -86px;
    margin-right: 0;
  }
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.children ul ul ul ul ul ul ul ul ul ul,
  nav.navbar #navbar ul.navbar-nav > li:last-child ul.sub-menu ul ul ul ul ul ul ul ul ul ul {
    left: 250px !important;
    right: auto !important;
    margin-left: 0;
    margin-right: -86px;
  }
}
@media (min-width: 1200px) and (max-width: 1199px) {
  nav.navbar #navbar ul.navbar-nav {
    margin-right: 50px;
  }
}
nav.navbar .logo {
  padding: 19px 0;
  display: block;
  position: absolute;
  z-index: 1000001;
}
nav.navbar .navbar-toggle {
  background-color: transparent;
  background-image: none;
  height: 45px;
  width: 63px;
  border-radius: 4px;
  margin: 12px 15px;
  padding: 2px 10px 4px;
  position: relative;
}
nav.navbar .navbar-toggle .icon-bar {
  background: #fff;
  height: 4px !important;
  padding: 0 !important;
  width: 100%;
  margin: 7px 0;
  transition: all 0.2s;
}
nav.navbar .navbar-toggle .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
  min-height: auto !important;
}
nav.navbar .navbar-toggle .middle-bar {
  opacity: 0;
}
nav.navbar .navbar-toggle .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}
nav.navbar .navbar-toggle.collapsed .top-bar {
  transform: rotate(0);
}
nav.navbar .navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}
nav.navbar .navbar-toggle.collapsed .bottom-bar {
  transform: rotate(0);
}
@media (max-width: 1199px) {
  nav.navbar #navbar {
    margin: 0px 0  0 !important;
    padding: 0px 0 0px 0 !important;
    background: #FFC61A;
    top: 0px;
    bottom: 0px;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 100002;
    height: 100%;
    width: 100%;
    max-height: 100% !important;
    display: block;
    overflow: scroll;
    min-width: 0;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: all .3s ease;
  }
  nav.navbar #navbar.collapse {
    left: -1000%;
  }
  nav.navbar #navbar .navbar-toggle {
    margin: 14px 0 !important;
  }
  nav.navbar #navbar .navbar-toggle .icon-bar {
    background: #fff;
  }
  nav.navbar #navbar .navbar-toggle:focus .icon-bar,
  nav.navbar #navbar .navbar-toggle:active .icon-bar,
  nav.navbar #navbar .navbar-toggle:hover .icon-bar {
    background: #1F1F1F;
  }
  nav.navbar #search {
    display: none;
  }
  nav.navbar .logo {
    margin-left: 15px;
    margin-top: -5px;
  }
  nav.navbar ul.navbar-nav {
    background: #FFC61A;
    width: 100%;
    padding: 55px 0px 0px 0;
    margin-top: 0;
  }
  nav.navbar ul.navbar-nav a {
    font-size: 20pt;
    font-weight: 900;
    padding: 0px 40px;
    color: #1F1F1F;
  }
  nav.navbar ul.navbar-nav a:focus {
    background: transparent;
  }
  nav.navbar ul.navbar-nav li.current-menu-ancestor > a,
  nav.navbar ul.navbar-nav li.current-menu-item > a,
  nav.navbar ul.navbar-nav li.current-menu-parent > a,
  nav.navbar ul.navbar-nav li.current_page_parent > a,
  nav.navbar ul.navbar-nav li.current_page_item > a {
    color: #fff;
  }
  nav.navbar ul.navbar-nav li.current-menu-ancestor ul li.current-menu-ancestor a,
  nav.navbar ul.navbar-nav li.current-menu-item ul li.current-menu-ancestor a,
  nav.navbar ul.navbar-nav li.current-menu-parent ul li.current-menu-ancestor a,
  nav.navbar ul.navbar-nav li.current_page_parent ul li.current-menu-ancestor a,
  nav.navbar ul.navbar-nav li.current_page_item ul li.current-menu-ancestor a,
  nav.navbar ul.navbar-nav li.current-menu-ancestor ul li.current-menu-item a,
  nav.navbar ul.navbar-nav li.current-menu-item ul li.current-menu-item a,
  nav.navbar ul.navbar-nav li.current-menu-parent ul li.current-menu-item a,
  nav.navbar ul.navbar-nav li.current_page_parent ul li.current-menu-item a,
  nav.navbar ul.navbar-nav li.current_page_item ul li.current-menu-item a,
  nav.navbar ul.navbar-nav li.current-menu-ancestor ul li.current-menu-parent a,
  nav.navbar ul.navbar-nav li.current-menu-item ul li.current-menu-parent a,
  nav.navbar ul.navbar-nav li.current-menu-parent ul li.current-menu-parent a,
  nav.navbar ul.navbar-nav li.current_page_parent ul li.current-menu-parent a,
  nav.navbar ul.navbar-nav li.current_page_item ul li.current-menu-parent a,
  nav.navbar ul.navbar-nav li.current-menu-ancestor ul li.current_page_parent a,
  nav.navbar ul.navbar-nav li.current-menu-item ul li.current_page_parent a,
  nav.navbar ul.navbar-nav li.current-menu-parent ul li.current_page_parent a,
  nav.navbar ul.navbar-nav li.current_page_parent ul li.current_page_parent a,
  nav.navbar ul.navbar-nav li.current_page_item ul li.current_page_parent a,
  nav.navbar ul.navbar-nav li.current-menu-ancestor ul li.current_page_item a,
  nav.navbar ul.navbar-nav li.current-menu-item ul li.current_page_item a,
  nav.navbar ul.navbar-nav li.current-menu-parent ul li.current_page_item a,
  nav.navbar ul.navbar-nav li.current_page_parent ul li.current_page_item a,
  nav.navbar ul.navbar-nav li.current_page_item ul li.current_page_item a {
    color: #fff;
  }
  nav.navbar ul.navbar-nav > li.menu-item-has-children > a span {
    pointer-events: auto;
    display: block;
  }
  nav.navbar ul.navbar-nav > li.menu-item-has-children > a:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18pt;
    vertical-align: middle;
    content: "\f0da";
    margin: 4px 0 0 8px;
    right: 25px;
    top: 15px;
    position: absolute;
    color: #fff !important;
  }
  nav.navbar ul.navbar-nav > li > a > span {
    display: inline-block;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    pointer-events: none;
  }
  nav.navbar ul.navbar-nav > li.show-child ul {
    display: block !important;
  }
  nav.navbar ul.navbar-nav ul {
    padding: 5px 30px;
    list-style: none;
    background: #FFC61A;
    overflow: hidden;
    transform-origin: top;
    transform: scaleY(0);
    transition: all .3s ease;
    position: absolute;
  }
  nav.navbar ul.navbar-nav ul.show {
    transform: scaleY(1);
    position: relative;
  }
  nav.navbar ul.navbar-nav ul a {
    padding: 6px 25px;
    font-size: 16pt;
    display: block;
    color: #1F1F1F;
  }
  nav.navbar.affix #navbar {
    /*		    	margin: 69px 0  0 !important;*/
  }
}
nav.navbar.affix {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
nav.navbar .nav-right {
  margin: 27px 0 0 45px;
}
nav.navbar .cart {
  /*margin-right: 36px;*/
  position: relative;
  font-size: 18px;
  padding-top: 0 !important;
}
nav.navbar .cart .count {
  position: absolute;
  top: -9px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background: #9F340A;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: #FFC61A;
}
nav.navbar .nav-mob {
  padding-top: 15px;
}
nav.navbar .nav-mob .cart {
  color: #1F1F1F;
  margin: 25px 0 0 25px;
  font-size: 24px;
}
nav.navbar .cart:hover {
  color: #CCCCCC;
}
nav.navbar .cart:focus {
  color: #CCCCCC;
}
nav.navbar .cart .name {
  display: none;
}
nav.navbar .top-search {
  position: relative;
  display: inline-block;
}
nav.navbar .top-search input[type='text'] {
  padding-left: 10px;
  height: 40px;
  position: absolute;
  right: -100%;
  opacity: 0;
  visibility: hidden;
  top: -9px;
  transition: all 400ms;
}
nav.navbar .show-field input[type='text'] {
  opacity: 1;
  right: -60%;
  visibility: visible;
}
nav.navbar .search {
  position: relative;
  font-size: 18px;
}
nav.navbar .search:hover {
  color: #e2ded0;
}
nav.navbar .search:focus {
  color: #b89d64;
}
.navbar-home {
  overflow: visible !important;
}
.navbar-home .nav-right {
  margin: 27px 0 -27px 55px !important;
}
.navbar-dark-transparent .navbar {
  background: rgba(0, 0, 0, 0.2);
}
.navbar-dark-transparent .navbar.dark {
  background: rgba(0, 0, 0, 0.85);
}
.navbar-gray-yellow-transparent .navbar {
  background: rgba(0, 0, 0, 0.6);
}
.navbar-gray-yellow-transparent .navbar.dark {
  background: rgba(0, 0, 0, 0.85);
}
.navbar-gray-yellow-transparent .navbar #navbar {
  transition: all .3s ease;
  border-bottom: 4px solid #FFC61A;
}
.navbar-gray-yellow-transparent .navbar.dark #navbar {
  border-bottom: none;
}
.navbar-gray-yellow-transparent + header.page-header {
  margin-top: 86px;
}
.navbar-gray-yellow-transparent + header.page-header:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -86px;
  background: rgba(31, 31, 31, 0.6);
  display: block;
  height: 86px;
}
.topbar-wrapper + .navbar-gray-yellow-transparent > #nav-wrapper > .navbar {
  top: 41px;
}
.navbar-home {
  position: absolute !important;
  background: transparent !important;
  z-index: 100;
  width: 100%;
}
@media (min-width: 1200px) {
  .navbar-home {
    background: transparent !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.mob-visible .navbar-home {
  height: 100% !important;
}
.mob-visible .logo {
  z-index: 1000 !important;
}
@media (min-width: 1200px) {
  .navbar-home {
    height: auto;
    background: transparent !important;
    margin: 0;
    z-index: 10000;
    position: relative;
  }
  .navbar-home .logo {
    position: relative !important;
    text-align: center;
    margin: 0px 0 0px;
  }
  .navbar-home .navbar-nav {
    margin: 0 auto 60px;
    text-align: center;
    float: right !important;
    margin-right: 0;
    padding-right: 55px !important;
    display: table;
    width: 100%;
  }
  .navbar-home .navbar-nav ul {
    text-align: left;
  }
  .navbar-home .navbar-nav > li {
    display: table-cell;
    text-align: center;
    float: none !important;
  }
  .navbar-home .navbar-nav > li > a {
    font-size: 16px !important;
    padding: 0 0 4px 0 !important;
  }
  .navbar-home .navbar-nav > li > a:before {
    bottom: -8px !important;
    margin-left: -13px !important;
  }
}
/*
	4. Homepage top blocks
*/
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes zoomin{ 0% { -webkit-transform: scale(.0, .0) translateX(0px); } 100% { -webkit-transform: scale(1, 1) translateX(50%); }}
@-moz-keyframes zoomin{ 0% { -moz-transform: scale(.0, .0) translateX(0px); } 100% { -moz-transform: scale(1, 1) translateX(50%); }}
@-o-keyframes zoomin{ 0% { -o-transform: scale(.0, .0) translateX(0px); } 100% { -o-transform: scale(1, 1) translateX(50%); }}
@keyframes zoomin{ 0% {-webkit-transform: scale(.0, .0) translateX(0px);-moz-transform: scale(.0, .0) translateX(0px);-ms-transform: scale(.0, .0) translateX(0px);transform: scale(.0, .0) translateX(0px); } 100% {-webkit-transform: scale(1, 1) translateX(50%);-moz-transform: scale(1, 1) translateX(50%);-ms-transform: scale(1, 1) translateX(50%);transform: scale(1, 1) translateX(50%); };
}
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes splash{  0% { opacity: 0; } 1.5% { opacity: 1; } 3% { opacity: 0; } 4.5% { opacity: 1; } 6% { opacity: 0; }}
@-moz-keyframes splash{  0% { opacity: 0; } 1.5% { opacity: 1; } 3% { opacity: 0; } 4.5% { opacity: 1; } 6% { opacity: 0; }}
@-o-keyframes splash{  0% { opacity: 0; } 1.5% { opacity: 1; } 3% { opacity: 0; } 4.5% { opacity: 1; } 6% { opacity: 0; }}
@keyframes splash{  0% { opacity: 0; } 1.5% { opacity: 1; } 3% { opacity: 0; } 4.5% { opacity: 1; } 6% { opacity: 0; };
}
/*
@keyframes zoomin {
    from {
        .transform(scale(.0, .0), translateX(0px));
    }

    to {
        .transform(scale(1, 1), translateX(50%));
    }
}
@keyframes splash {
    0% {
    	.opacity(0);

    }
    1.5% {
    	.opacity(1);

    }    
    3% {
    	.opacity(0);

    }       
    4.5% {
    	.opacity(1);
    }
    6% {
    	.opacity(0);
    }    
}
*/
section.homepage-block-1,
section.homepage-block-2 {
  background-position: 50% 0% !important;
}
.homepage-block-1 {
  background: #FFC61A;
  background-repeat: no-repeat;
  /*	height: 710px;*/
  padding-top: 210px !important;
  position: relative;
}
.homepage-block-1.vc_section {
  overflow: visible !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homepage-block-1 .content {
    padding-top: 180px;
  }
}
@media (max-width: 991px) {
  .homepage-block-1 {
    height: auto;
    padding-top: 100px !important;
  }
  .homepage-block-1 .content {
    padding: 100px 0 0 0;
  }
}
.homepage-block-1 .heading {
  margin-top: 70px;
}
.homepage-block-1 h4 {
  margin: 0;
  color: #F5F5F5;
}
.homepage-block-1 h2 {
  font-size: 60px !important;
  margin: 10px 0 50px 0 !important;
  color: #FFC61A !important;
  line-height: 1em;
}
@media (max-width: 768px) {
  .homepage-block-1 h2 {
    font-size: 38px !important;
  }
}
.homepage-block-1 .large-image-center,
.homepage-block-1 #large-image {
  position: relative;
}
@media (max-width: 991px) {
  .homepage-block-1 .large-image-center,
  .homepage-block-1 #large-image {
    display: none;
  }
}
.homepage-block-1 .large-image-center img:not(.splash),
.homepage-block-1 #large-image img:not(.splash) {
  position: relative;
  -webkit-transform: scale(0, 0) translateX(0px);
  -moz-transform: scale(0, 0) translateX(0px);
  -o-transform: scale(0, 0) translateX(0px);
  -ms-transform: scale(0, 0) translateX(0px);
  transform: scale(0, 0) translateX(0px);
  margin-left: -100px;
  -webkit-animation: zoomin 1s normal 1s forwards ease-out;
  -moz-animation: zoomin 1s normal 1s forwards ease-out;
  -o-animation: zoomin 1s normal 1s forwards ease-out;
  animation: zoomin 1s normal 1s forwards ease-out;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .homepage-block-1 .large-image-center img:not(.splash),
  .homepage-block-1 #large-image img:not(.splash) {
    margin-left: -240px;
  }
}
.homepage-block-1 .large-image-center .splash,
.homepage-block-1 #large-image .splash {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 143px;
  right: 100px;
  -webkit-animation: splash 10s normal 2.5s forwards infinite linear;
  -moz-animation: splash 10s normal 2.5s forwards infinite linear;
  -o-animation: splash 10s normal 2.5s forwards infinite linear;
  animation: splash 10s normal 2.5s forwards infinite linear;
}
@media (min-width: 1200px) {
  .homepage-block-1 .large-image-center .splash,
  .homepage-block-1 #large-image .splash {
    right: 190px;
  }
}
.homepage-block-1 .container {
  z-index: 2;
  position: relative;
}
.homepage-block-1 .navbar {
  /*		padding: 0 30px;*/
}
.homepage-block-1 .navbar,
.homepage-block-1 .nav-wrapper {
  height: auto;
  background: transparent !important;
}
.homepage-block-1 .navbar .container,
.homepage-block-1 .nav-wrapper .container {
  z-index: 3;
}
.homepage-block-1 .navbar-toggle {
  margin-top: 30px 15px 0 0 !important;
}
.homepage-block-2 {
  background: #FFC61A;
  background-repeat: no-repeat;
  background-position: 50% 0% !important;
  /*	margin-top: -84px;*/
  padding-top: 108px;
  position: relative;
  overflow: visible !important;
}
@media (max-width: 991px) {
  .homepage-block-2 {
    height: auto;
    padding-top: 50px;
  }
}
.homepage-block-2 h2 {
  color: #FFC61A !important;
  margin-bottom: 0 !important;
}
.homepage-block-2 .vc_column_container {
  z-index: 2;
  position: relative;
  text-align: center;
}
.homepage-block-2 .wpcf7 {
  margin-top: 40px;
  margin-bottom: 5px;
}
.homepage-block-2 .wpcf7 form {
  background: transparent !important;
  padding-top: 0 !important;
}
@media (max-width: 991px) {
  .homepage-block-2 .wpcf7 {
    margin-top: 10px;
  }
}
.homepage-block-2 .wpcf7-submit:hover {
  background: #fff !important;
}
.homepage-block-2 .large-image-center {
  margin-top: 25px;
  position: relative;
  z-index: 100;
}
@media (max-width: 991px) {
  .homepage-block-2 .large-image-center {
    display: none;
  }
}
.homepage-block-2 .large-image-center .dialog {
  position: absolute;
  right: 150px;
  top: -10px;
  background: url("assets/images/_dialog.png") 50% 50% no-repeat;
  width: 178px;
  height: 207px;
  color: #fff;
}
.homepage-block-2 .large-image-center .dialog h3 {
  color: #FFC61A;
  margin: -16px 0 0 0;
  text-align: center;
}
.homepage-block-2 .large-image-center .dialog h4 {
  margin: 0 0 15px;
  line-height: 2em;
  font-size: 18px;
  color: #fff;
}
.homepage-block-2 .large-image-center .dialog .fa {
  color: #FFC61A;
  font-size: 30px;
  padding: 30px 0 0 0;
}
.homepage-block-3 {
  position: absolute;
}
@media (min-width: 991px) {
  .homepage-block-3 .slider-zoom {
    height: 820px;
  }
}
.slider-zoom {
  padding-top: 90px;
}
.slider-zoom .slider-inner {
  margin: 110px 0 0 0 !important;
  padding: 50px 0 0 !important;
  display: inline-block;
  background: #F5F5F5;
  max-width: 570px;
  text-align: center;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.slider-zoom .slider-inner .row {
  margin-left: -3px;
  margin-right: -3px;
}
.slider-zoom .slider-inner .row > div {
  padding-left: 3px;
  padding-right: 3px;
}
@media (max-width: 991px) {
  .slider-zoom .slider-inner {
    margin: 60px auto 60px !important;
  }
}
.slider-zoom .slider-inner form {
  padding: 10px 35px 0 !important;
  margin-bottom: 0;
}
.slider-zoom .slider-inner form label {
  display: block;
}
.slider-zoom .slider-inner form .menu-types {
  margin: 0 0 0 -12px;
}
.slider-zoom .slider-inner form .menu-types a {
  margin: 0 0 0 12px;
}
.slider-zoom .slider-inner form input[type="submit"] {
  margin-top: 20px;
}
.slider-zoom .slider-inner form a:hover,
.slider-zoom .slider-inner form a.active {
  background-color: #FFC61A;
}
.homepage-block-yellow-3 {
  padding: 30px 0 24px 0;
  background: #FFC61A;
}
.homepage-block-yellow-3 h2,
.homepage-block-yellow-3 h3,
.homepage-block-yellow-3 h4 {
  margin: 0 !important;
  vertical-align: middle;
  padding-top: 3px;
}
.homepage-block-yellow-3 h4 {
  font-size: 18px !important;
}
.homepage-block-yellow-3 .fa,
.homepage-block-yellow-3 .fab,
.homepage-block-yellow-3 .fas .lt-icon-header {
  vertical-align: middle;
  margin-right: 10px;
  background: #F5F5F5;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 24px;
  text-align: center;
  display: inline-block;
}
@media (max-width: 768px) {
  .homepage-block-yellow-3 .fa,
  .homepage-block-yellow-3 .fab,
  .homepage-block-yellow-3 .fas .lt-icon-header {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin-right: 5px;
  }
}
.homepage-block-yellow-3 .btn,
.homepage-block-yellow-3 .woocommerce-product-search:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 .wp-searchform:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 form.post-password-form:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 form.search-form:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 form.wpcf7-form:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 form.form:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 form.comment-form:not(.halio-form) input[type="submit"],
.homepage-block-yellow-3 form:not(.halio-form) input[type="submit"] {
  margin-top: -5px;
  margin-bottom: 0 !important;
}
@media (max-width: 991px) {
  .homepage-block-yellow-3 h4 {
    font-size: 16px;
  }
  .homepage-block-yellow-3 h3,
  .homepage-block-yellow-3 h4 {
    margin-bottom: 20px !important;
  }
  .homepage-block-yellow-3 .row > div {
    margin-bottom: 15px;
  }
  .homepage-block-yellow-3 .btn,
  .homepage-block-yellow-3 .woocommerce-product-search:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 .wp-searchform:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.post-password-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.search-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.wpcf7-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.comment-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form:not(.halio-form) input[type="submit"] {
    margin: 10px auto 0 !important;
    float: none !important;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .homepage-block-yellow-3 .btn,
  .homepage-block-yellow-3 .woocommerce-product-search:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 .wp-searchform:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.post-password-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.search-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.wpcf7-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form.comment-form:not(.halio-form) input[type="submit"],
  .homepage-block-yellow-3 form:not(.halio-form) input[type="submit"] {
    clear: both;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-align: center;
  }
}
/*
	5. Services Block
*/
.services-block {
  padding: 70px 0 100px;
  text-align: center;
}
.services-block h2,
.services-block h4 {
  text-align: center;
}
.services-block h2 {
  margin-bottom: 40px !important;
}
@media (max-width: 991px) {
  .services-block {
    padding-bottom: 20px;
  }
}
.services-block .image {
  height: 70px;
  line-height: 70px;
}
.services-block p {
  font-size: 14px;
  line-height: 1.6em;
}
@media (max-width: 991px) {
  .services-block p {
    margin-bottom: 60px;
  }
}
.services-block h5 {
  margin: 35px 0 20px;
}
.services-block .vc_row-flex > div {
  padding-left: 35px;
  padding-right: 35px;
}
@media (min-width: 991px) {
  .services-block .vc_row-flex > div:not(:last-child) {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAYAAAA4GpVBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjAzMjRFMTcxOUFEMTFFNzlFOUU4MDZBQTU3MTk2MjkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjAzMjRFMTgxOUFEMTFFNzlFOUU4MDZBQTU3MTk2MjkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MDMyNEUxNTE5QUQxMUU3OUU5RTgwNkFBNTcxOTYyOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2MDMyNEUxNjE5QUQxMUU3OUU5RTgwNkFBNTcxOTYyOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqYMjK4AAAAgSURBVHjaYgiNz/ZlYgACELEZzoKIMfz//x/MZQAIMABlagV2QBb7UQAAAABJRU5ErkJggg==") 100% 0% repeat-y;
  }
}
@media (max-width: 991px) {
  .services-block .vc_row-flex > div {
    margin-bottom: 60px;
  }
}
/*
	6. Tariffs Block
*/
.tariffs-block {
  padding: 60px 0 100px;
  /*	background-color: @gray-lighter; */
  background-position: 50% 50%;
  background-repeat: no-repeat;
  color: #1F1F1F;
}
.tariffs-block h2 {
  margin-bottom: 30px !important;
}
@media (max-width: 991px) {
  .tariffs-block {
    padding: 16px 0 50px;
    background-image: none !important;
  }
  .tariffs-block h2 {
    color: #1F1F1F;
  }
}
.tariff-item {
  background: #fff;
  text-align: center;
  padding: 10px 30px 20px;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  position: relative;
  transition: all .3s ease;
  border: 1px solid #CCCCCC;
}
.tariff-item h4 {
  text-align: center;
}
@media (max-width: 1199px) {
  .tariff-item {
    margin-bottom: 30px;
  }
}
.tariff-item:hover {
  -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
}
.tariff-item .image {
  height: 170px;
  line-height: 170px;
}
.tariff-item h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin: 0px 0 20px !important;
  text-align: center;
}
.tariff-item .price {
  font-weight: 700;
  font-size: 38px;
}
.tariff-item .price span {
  font-size: 24px;
}
.tariff-item.vip {
  border: 2px solid #FFC61A;
}
.tariff-item.vip:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  content: "\f005";
  position: absolute;
  text-align: right;
  padding: 7px 7px 0 0;
  top: 0;
  right: 0;
  display: block;
  width: 55px;
  height: 55px;
  z-index: 5;
  font-size: 18px;
}
.tariff-item.vip:after {
  top: 0;
  right: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 55px 55px 0;
  border-color: transparent #FFC61A transparent;
}
/*
	7. Download App Block 
*/
.download-block {
  padding: 0px 0 0px;
  /*	height: 625px;*/
  position: relative;
  background-color: #1F1F1F;
  background-position: 50% 50%;
  color: #F5F5F5;
}
.download-block h4 {
  margin-top: 55px !important;
}
.download-block h2,
.download-block h4 {
  text-align: center;
}
.download-block h2 {
  color: #fff;
  margin-bottom: 30px !important;
}
.download-block p {
  font-size: 14px;
}
@media (min-width: 991px) {
  .download-block {
    min-height: 625px;
  }
}
.download-block .mob {
  position: absolute;
  /*		bottom: 0;*/
  left: 50%;
  margin-left: -147px;
  margin-bottom: -10px;
  right: 0;
  width: 100%;
  text-align: center;
  /*		padding: 240px 0 0 0;*/
  width: 294px;
  height: 394px;
}
.download-block .mob div {
  background-repeat: no-repeat;
}
.download-block .mob a {
  padding-bottom: 16px;
  display: block;
}
@media (max-width: 991px) {
  .download-block .mob {
    position: relative;
    height: auto;
  }
  .download-block .mob .vc_empty_space {
    display: none;
  }
  .download-block .mob .vc_column-inner {
    background: #FFC61A !important;
    background-image: none;
  }
}
.download-block h5 {
  margin: 10px 0 10px !important;
  color: #FFC61A;
}
.download-block .header-rounded h5 {
  margin-top: 0 !important;
}
@media (max-width: 991px) {
  .download-block .items {
    padding-top: 0;
  }
}
.download-block .items > div {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .download-block {
    padding-bottom: 25px;
    text-align: center !important;
  }
  .download-block h2 {
    margin-bottom: 0 !important;
  }
  .download-block h5,
  .download-block p {
    text-align: center !important;
  }
}
/*
	8. Text block with large car on the right
*/
.car-block {
  /*	padding: 90px 0 160px;*/
  background-position: 100% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.car-block h2,
.car-block h4 {
  text-align: left;
}
@media (max-width: 991px) {
  .car-block {
    padding: 10px 0 50px;
  }
}
.car-block h2 {
  margin-bottom: 40px !important;
}
.car-block ul {
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .car-block {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .car-block {
    background-position: 200% 50%;
  }
}
.car-block {
  height: 650px;
  padding-top: 100px;
  margin-bottom: -680px;
}
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes slideleft{ 0% { -webkit-transform: translate3d(845px, 0px, 0px); } 100% { -webkit-transform: translate3d(0px, 0px, 0px); } }
@-moz-keyframes slideleft{ 0% { -moz-transform: translate3d(845px, 0px, 0px); } 100% { -moz-transform: translate3d(0px, 0px, 0px); } }
@-o-keyframes slideleft{ 0% { -o-transform: translate3d(845px, 0px, 0px); } 100% { -o-transform: translate3d(0px, 0px, 0px); } }
@keyframes slideleft{ 0% {-webkit-transform: translate3d(845px, 0px, 0px);-moz-transform: translate3d(845px, 0px, 0px);-ms-transform: translate3d(845px, 0px, 0px);transform: translate3d(845px, 0px, 0px); } 100% {-webkit-transform: translate3d(0px, 0px, 0px);-moz-transform: translate3d(0px, 0px, 0px);-ms-transform: translate3d(0px, 0px, 0px);transform: translate3d(0px, 0px, 0px); } ;
}
.car-right {
  position: absolute;
  right: 0;
  top: 50%;
  max-width: 50%;
  overflow: hidden;
  height: 550px;
  /*	margin-top: -225px;*/
}
.car-right img {
  max-width: initial !important;
  position: relative;
  -webkit-transform: translate3d(845px, 0px, 0px);
  -moz-transform: translate3d(845px, 0px, 0px);
  -o-transform: translate3d(845px, 0px, 0px);
  -ms-transform: translate3d(845px, 0px, 0px);
  transform: translate3d(845px, 0px, 0px);
}
.car-right img.slideleft {
  -webkit-animation: slideleft 1s normal forwards ease-out;
  -moz-animation: slideleft 1s normal forwards ease-out;
  -o-animation: slideleft 1s normal forwards ease-out;
  animation: slideleft 1s normal forwards ease-out;
}
@media (max-width: 991px) {
  .car-right {
    display: none;
  }
}
/*
	9. Testimonials
*/
.testimonials-block,
.testimonials {
  padding: 0px 0 100px;
  background: #F5F5F5;
}
.testimonials-block h2,
.testimonials h2,
.testimonials-block h4,
.testimonials h4 {
  text-align: center;
}
.testimonials-block h2,
.testimonials h2 {
  margin-bottom: 30px !important;
}
.testimonials-block hr,
.testimonials hr {
  margin-top: 0;
  margin-bottom: 30px;
}
.testimonials-block .inner,
.testimonials .inner {
  border-color: transparent !important;
}
.testimonials-block {
  padding-top: 65px;
}
.testimonials-slider .arrows {
  text-align: center;
}
.testimonials-slider .arrow-left,
.testimonials-slider .arrow-right {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  transition: background .8s ease;
  background: #FFC61A;
  color: #fff;
  margin: 0 1px;
  padding: 7px 12px;
  font-size: 18px;
}
.testimonials-slider .arrow-left.swiper-button-disabled,
.testimonials-slider .arrow-right.swiper-button-disabled {
  background: #CCCCCC;
  cursor: default;
}
.testimonials-slider .arrow-left:not(.swiper-button-disabled):hover,
.testimonials-slider .arrow-right:not(.swiper-button-disabled):hover {
  background: #1F1F1F;
  color: #fff;
}
.testimonials-list .inner {
  background: #fff;
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  font-style: italic;
  text-align: center;
  padding: 35px 35px 120px 35px;
  margin-bottom: 60px;
  position: relative;
}
.testimonials-list .inner p {
  font-size: 14px;
}
.testimonials-list .inner .quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.testimonials-list .inner .quote .fa {
  color: #E6E6E6;
  font-size: 36px;
  margin: 35px 0 15px;
}
.testimonials-list .inner .quote .name {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.testimonials-list .inner .quote img {
  width: 46px;
  height: 46px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  margin-bottom: -23px;
  z-index: 2;
}
/*
	10. Banners homepage
*/
.banners-block {
  background: #F5F5F5;
}
.banners-block a {
  display: block;
}
@media (min-width: 991px) {
  .banners-block a:first-child,
  .banners-block img:first-child {
    border-right: 1px solid #fff;
    padding-right: 0;
  }
  .banners-block a:last-child,
  .banners-block img:last-child {
    padding-left: 0;
  }
}
.banners-block .wpb_content_element {
  margin-bottom: 0;
}
.banners-block .vc_column_container > div {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199px) {
  .banners-block a {
    padding: 0;
  }
}
/*
	11. Partners block / #partners
*/
.partners-block {
  background: #FFC61A;
  padding: 43px 0 0px;
}
.partners-block h4,
.partners-block h2 {
  margin: 0;
  line-height: 1em;
}
.partners-block h2 {
  color: #fff;
}
.partners-block img {
  vertical-align: middle;
}
.partners-block .wpb_content_element {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .partners-block .heading {
    text-align: center;
    margin-bottom: 30px;
  }
}
/*
	12. Bottom block with address/menu/form/mini-gallery goes before footer
*/
#block-footer {
  background: #161616;
  color: #CCCCCC;
  padding: 30px 0 30px 0;
  font-size: 14px;
}
#block-footer div,
#block-footer p {
  line-height: 1.7em;
  font-size: 14px;
}
#block-footer h4 {
  color: #FFC61A;
  margin-bottom: 30px;
}
#block-footer .widget_nav_menu {
  margin-bottom: 30px;
}
#block-footer .widget_nav_menu:before,
#block-footer .widget_nav_menu:after {
  content: " ";
  display: table;
}
#block-footer .widget_nav_menu:after {
  clear: both;
}
#block-footer .social-icons-list {
  margin-bottom: 10px;
}
#block-footer .social-icons-list li {
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-transform: none;
  margin-bottom: 15px !important;
}
#block-footer .social-icons-list .fa {
  font-size: 16px;
}
#block-footer .social-icons-list .fa.fa-envelope {
  font-size: 14px;
}
#block-footer .social-icons-list a {
  color: #CCCCCC;
}
#block-footer .social-icons-list a:hover {
  color: #FFC61A;
  text-transform: none;
}
#block-footer .social-small {
  margin-top: 50px;
}
#block-footer .social-small a {
  font-size: 18px;
  margin-right: 10px;
}
#block-footer .social-small a:hover {
  color: #fff;
}
#block-footer .address {
  list-style: none;
  margin: 30px 0 0 0;
  padding: 0;
}
#block-footer .address li {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}
#block-footer .address li span {
  color: #FFC61A;
  margin: 0 10px 0 0;
  width: 16px;
  font-size: 16px;
}
#block-footer .address li a {
  font-weight: 700;
  color: #CCCCCC;
}
#block-footer .address li a:hover {
  color: #FFC61A;
}
@media (max-width: 768px) {
  #block-footer .address li {
    font-size: 10pt;
  }
}
#block-footer .widget_nav_menu ul {
  list-style: none;
  margin: 0 0 0 -30px;
  padding: 0;
  float: none;
}
@media (max-width: 991px) {
  #block-footer .widget_nav_menu ul {
    margin-left: 0px;
  }
}
#block-footer .widget_nav_menu ul li {
  padding: 0;
  margin: 0;
  float: none;
  margin-left: 30px;
}
#block-footer .widget_nav_menu ul li li {
  margin-left: 3px;
}
#block-footer .widget_nav_menu ul li a {
  display: block;
  color: #CCCCCC;
  font-weight: 500;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  margin: 0 0 10px;
  padding: 0 0 10px 0;
  font-size: 14px;
}
#block-footer .widget_nav_menu ul li a:hover {
  color: #FFC61A !important;
  background-color: transparent;
}
#block-footer .widget_nav_menu ul li a:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: " \f105";
  font-size: 16px;
  margin-right: 8px;
  vertical-align: middle;
  color: #FFC61A;
}
#block-footer .widget_nav_menu ul li:last-child a {
  /*					background: none;*/
}
#block-footer .widget_nav_menu ul li.active a {
  color: #FFC61A;
  cursor: default;
}
@media (min-width: 768px) {
  #block-footer .col-md-5 .widget_nav_menu ul li {
    float: left;
    width: 40%;
  }
}
@media (max-width: 991px) {
  #block-footer {
    padding: 50px 0 15px 0;
    font-size: 14px;
  }
  #block-footer h4 {
    margin: 30px 0 20px;
  }
  #block-footer .social-small {
    margin: 0 0 30px 0;
  }
}
/*
	13. Footer and copyrights
*/
footer {
  background: #0C0C0C;
  color: #868686;
  text-align: left;
  padding: 37px 0 27px;
  overflow: hidden;
}
footer div {
  font-size: 14px;
}
footer p {
  margin-bottom: 0;
}
footer a {
  color: #FFC61A;
}
footer a:hover {
  color: #fff;
}
footer .go-top {
  position: relative;
  float: right;
  margin: -15px 0 0 0;
}
footer .go-top:before {
  background: no-repeat 50% 50%;
  position: absolute;
  content: "";
  top: 5px;
  right: 0;
  width: 59px;
  height: 72px;
  transition: all .3s ease;
}
footer .go-top:hover:before {
  top: -25px;
}
/*
	14. Widgets
*/
.woocommerce-MyAccount-navigation,
.widget-area {
  background: #F5F5F5;
  padding: 56px 38px;
  margin-top: 0px;
  margin-bottom: 60px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  font-size: 14px;
}
.woocommerce-MyAccount-navigation div,
.widget-area div,
.woocommerce-MyAccount-navigation p,
.widget-area p,
.woocommerce-MyAccount-navigation table,
.widget-area table {
  font-size: 14px;
}
.woocommerce-MyAccount-navigation h4,
.widget-area h4 {
  margin-top: 0;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-navigation,
  .widget-area {
    padding: 10px 30px;
  }
}
.woocommerce-MyAccount-navigation aside,
.widget-area aside {
  margin-bottom: 65px;
}
.woocommerce-MyAccount-navigation aside:last-child,
.widget-area aside:last-child {
  margin-bottom: 0;
}
.woocommerce-MyAccount-navigation aside ul,
.widget-area aside ul {
  margin: 0 0 0 0px;
  padding: 0;
  list-style: none;
}
.woocommerce-MyAccount-navigation aside ul li,
.widget-area aside ul li {
  color: #1F1F1F;
  margin-bottom: 13px;
  vertical-align: middle;
}
.woocommerce-MyAccount-navigation aside ul li:before,
.widget-area aside ul li:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: " \f105";
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
  color: #FFC61A;
}
.woocommerce-MyAccount-navigation aside ul li a,
.widget-area aside ul li a {
  color: #1F1F1F;
  vertical-align: middle;
  font-size: 14px;
}
.woocommerce-MyAccount-navigation aside ul li a:hover,
.widget-area aside ul li a:hover {
  color: #FFC61A;
}
.woocommerce-MyAccount-navigation aside ul li.current-cat,
.widget-area aside ul li.current-cat {
  font-weight: bold;
}
.woocommerce-MyAccount-navigation aside ul li.current-cat a,
.widget-area aside ul li.current-cat a {
  color: #1F1F1F;
  cursor: default;
}
.woocommerce-MyAccount-navigation aside ul li ul,
.widget-area aside ul li ul {
  margin: 10px 0 0 8px;
}
.woocommerce-MyAccount-navigation aside ul li ul li a,
.widget-area aside ul li ul li a {
  /*						font-size: 14px;*/
}
.woocommerce-MyAccount-navigation aside ul ul ul ul ul ul ul,
.widget-area aside ul ul ul ul ul ul ul {
  margin-left: 0;
}
.woocommerce-MyAccount-navigation aside .tags,
.widget-area aside .tags {
  margin: 0;
}
.woocommerce-MyAccount-navigation aside .gallery-small,
.widget-area aside .gallery-small {
  padding: 0 11px;
}
.woocommerce-MyAccount-navigation aside .gallery-small a,
.widget-area aside .gallery-small a {
  padding: 5px;
  /*			.opacity-fade;*/
}
.woocommerce-MyAccount-navigation aside .gallery-small a img,
.widget-area aside .gallery-small a img {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.woocommerce-MyAccount-navigation aside .gallery-small a:hover,
.widget-area aside .gallery-small a:hover {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.woocommerce-MyAccount-navigation aside .wp-searchform,
.widget-area aside .wp-searchform {
  padding: 0 0px;
  margin: 0 0 10px;
  width: 100%;
  display: block;
  position: relative;
}
.woocommerce-MyAccount-navigation aside .wp-searchform input[type="text"],
.widget-area aside .wp-searchform input[type="text"] {
  width: 100%;
  display: block;
}
.woocommerce-MyAccount-navigation aside .wp-searchform button[type="submit"],
.widget-area aside .wp-searchform button[type="submit"] {
  right: 20px;
  top: 50%;
  margin-top: -10px;
  font-size: 18px;
  color: #CCCCCC;
  background: none;
  border: 0 none;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-navigation aside,
  .widget-area aside {
    margin-top: 50px;
  }
}
.woocommerce-MyAccount-navigation aside.widget_calendar .calendar_wrap,
.widget-area aside.widget_calendar .calendar_wrap {
  padding: 0;
}
.woocommerce-MyAccount-navigation aside.widget_calendar caption,
.widget-area aside.widget_calendar caption {
  color: #FFC61A;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  padding-bottom: 15px;
}
.woocommerce-MyAccount-navigation aside.widget_calendar table,
.widget-area aside.widget_calendar table {
  width: 100%;
  position: relative;
}
.woocommerce-MyAccount-navigation aside.widget_calendar th,
.widget-area aside.widget_calendar th,
.woocommerce-MyAccount-navigation aside.widget_calendar td,
.widget-area aside.widget_calendar td {
  text-align: center;
  padding: 10px 0;
}
.woocommerce-MyAccount-navigation aside.widget_calendar #prev,
.widget-area aside.widget_calendar #prev,
.woocommerce-MyAccount-navigation aside.widget_calendar #next,
.widget-area aside.widget_calendar #next {
  padding-top: 10px;
}
.woocommerce-MyAccount-navigation aside.widget_calendar #prev,
.widget-area aside.widget_calendar #prev {
  text-align: left;
}
.woocommerce-MyAccount-navigation aside.widget_calendar #next,
.widget-area aside.widget_calendar #next {
  text-align: right;
}
.woocommerce-MyAccount-navigation aside.widget_calendar #today,
.widget-area aside.widget_calendar #today {
  position: relative;
  z-index: 2;
}
.woocommerce-MyAccount-navigation aside.widget_calendar #today:before,
.widget-area aside.widget_calendar #today:before {
  z-index: -1;
  content: '';
  position: absolute;
  width: 2em;
  height: 2em;
  left: 50%;
  top: 50%;
  background: #FFC61A;
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .woocommerce-MyAccount-navigation,
  .widget-area {
    margin-top: 10px;
  }
}
.widget form,
.page-content form {
  padding: 0;
}
.widget select,
.page-content select {
  width: 100%;
  display: block;
  padding: 6px 6px;
}
.widget .search-form,
.page-content .search-form {
  margin: 0;
  width: 100%;
  display: block;
  position: relative;
}
.widget .search-form label,
.page-content .search-form label {
  display: block;
}
.widget .search-form input[type="search"],
.page-content .search-form input[type="search"],
.widget .search-form input[type="text"],
.page-content .search-form input[type="text"] {
  width: 100%;
  display: block;
}
.widget .search-form a,
.page-content .search-form a,
.widget .search-form input[type="submit"],
.page-content .search-form input[type="submit"],
.widget .search-form button[type="submit"],
.page-content .search-form button[type="submit"] {
  overflow: hidden;
  text-indent: -1000px;
  right: 32px;
  top: 20px;
  font-size: 18px;
  background: none;
  border: 0 none;
  z-index: 1;
  position: absolute;
}
.widget .search-form:after,
.page-content .search-form:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f002";
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  font-size: 18px;
  display: block;
  right: 16px;
  top: 16px;
  z-index: 1;
  pointer-events: none;
  cursor: pointer;
}
.widget ul,
.page-content ul {
  list-style: none;
  padding-left: 0;
}
.widget ul ul li,
.page-content ul ul li {
  padding-left: 15px;
}
.footer-widget-area {
  margin-top: -10px;
}
.footer-widget-area form {
  background-color: transparent !important;
}
.footer-widget-area ul ul ul ul ul ul ul ul {
  margin-left: 0 !important;
}
.footer-widget-area ul ul {
  margin-left: 8px !important;
}
.footer-widget-area ul ul ul li {
  padding-left: 0 !important;
}
.footer-widget-area .search-form:after {
  top: 15px;
  right: 15px;
}
.footer-widget-area .tagcloud,
.footer-widget-area .tags {
  padding: 0 0 0px;
}
.footer-widget-area .widget_tag_cloud h5 {
  display: none;
}
.footer-widget-area .tagcloud {
  margin: 0 0 0 -8px;
}
.footer-widget-area .widget {
  margin-bottom: 20px;
}
.footer-widget-area .widget:last-child {
  margin-bottom: 0;
}
.footer-widget-area .null-instagram-feed .instagram-pics {
  margin: 0px 0px 0 -10px !important;
  padding-bottom: 0 !important;
}
.footer-widget-area .null-instagram-feed .instagram-pics li {
  margin: 0 0 -5px 0px !important;
}
.footer-widget-area .null-instagram-feed .instagram-pics li:before {
  display: none !important;
}
.footer-widget-area .null-instagram-feed .instagram-pics a {
  float: left;
  display: block;
  margin: 0 0 0px 5px !important;
}
.footer-widget-area .null-instagram-feed .instagram-pics a img {
  margin: 0 !important;
  -webkit-border-radius: 12px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 12px !important;
  -moz-background-clip: padding !important;
  border-radius: 12px !important;
  background-clip: padding-box !important;
  border: 2px solid transparent;
  transition: all .3s ease;
}
.footer-widget-area .null-instagram-feed .instagram-pics a img:hover {
  border: 2px solid #FFC61A;
}
.widget_calendar .calendar_wrap {
  padding: 0 20px 20px;
}
.widget_calendar caption {
  color: #FFC61A;
  font-weight: bold;
  text-align: center;
  font-size: 14pt;
  padding-bottom: 15px;
}
.widget_calendar table {
  width: 100%;
  position: relative;
}
.widget_calendar th,
.widget_calendar td {
  text-align: center;
}
.widget_calendar #prev,
.widget_calendar #next {
  padding-top: 10px;
}
.widget_calendar #prev {
  text-align: left;
}
.widget_calendar #next {
  text-align: right;
}
.widget_calendar #today:before {
  z-index: -1;
  content: '';
  position: absolute;
  width: 2em;
  height: 2em;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.widget_flickr ul {
  margin-top: -20px !important;
  margin-left: 0 !important;
}
.widget_flickr ul li {
  margin-bottom: 0 !important;
  margin-top: 20px;
}
.widget_flickr .flickr_badge_image {
  padding: 0;
  overflow: hidden;
  display: inline-block;
  width: 33%;
  text-align: center;
  height: auto;
}
.widget_flickr img {
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
}
.null-instagram-feed a {
  color: #1F1F1F;
}
.null-instagram-feed .instagram-pics {
  padding-bottom: 16px !important;
  margin: 0px 0px !important;
}
.null-instagram-feed .instagram-pics li {
  width: 33%;
  display: inline-block;
  margin: 0 !important;
}
.null-instagram-feed .instagram-pics li:before {
  display: none !important;
}
.null-instagram-feed .instagram-pics li a {
  display: block;
  padding: 1px;
}
.null-instagram-feed .instagram-pics li img {
  -webkit-border-radius: 12px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 12px;
  -moz-background-clip: padding;
  border-radius: 12px;
  background-clip: padding-box;
}
.null-instagram-feed p {
  text-align: center;
}
.null-instagram-feed p a {
  font-weight: bold;
}
/*
	15. Contacts inner page width full-width map
*/
#page-contacts {
  margin: 90px 0 100px 0;
}
@media (max-width: 991px) {
  #page-contacts {
    margin: 10px 0 20px;
  }
}
#page-contacts .social {
  margin: 10px 0 60px;
}
.like-google-maps {
  height: 750px;
  width: 100%;
}
.like-google-maps.map-inner {
  height: 288px;
}
/*
	16. Blog posts and blog inner page
*/
.blog {
  padding: 0px 0 0px;
  overflow: visible;
}
.blog .paging-navigation {
  margin-top: -40px;
}
.blog h2,
.blog h3 {
  margin: 100px auto 25px;
}
.blog .btn-more {
  text-align: center;
  margin: 0px 0 0 0;
}
@media (min-width: 1200px) {
  .blog#blog-main .item:hover {
    margin-top: -10px;
  }
}
.blog article {
  margin-bottom: 60px;
  transition: all .3s ease;
}
.blog article .photo {
  display: block;
  text-align: center;
}
.blog article img {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.blog article .description {
  padding: 5px 0px;
}
.blog article .description .header {
  color: #1F1F1F;
}
.blog article .description .header h5 {
  transition: color 0.5s ease;
  margin: 20px 0 20px 0;
}
.blog article .description .header:hover h5 {
  color: #FFC61A;
}
.blog article .description .text {
  line-height: 1.5em;
  font-size: 14px;
  margin-bottom: 10px;
}
.blog article:hover img {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .blog {
    padding: 0 0 30px;
  }
  .blog .item ul {
    padding-left: 0;
  }
  .blog .btn-more {
    margin-top: 0px;
  }
}
.blog-info {
  padding: 10px 0px 2px;
  color: #868686;
  position: relative;
}
.blog-info:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.blog-info a {
  color: #868686;
  font-size: 14px;
}
.blog-info .fa {
  color: #FFC61A;
  margin-right: 6px;
}
.blog-info .date {
  white-space: nowrap;
}
.blog-info ul {
  list-style: none;
  text-align: right;
  padding-right: 0px;
  padding-left: 0;
}
.blog-info ul li {
  display: inline;
  text-align: right;
  font-size: 14px;
  margin-left: 10px;
  color: #FFC61A;
}
.blog-info ul li a {
  margin-left: 6px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-info .right {
    float: left;
    display: block;
    text-align: left;
  }
  .blog-info .right ul {
    text-align: left !important;
  }
  .blog-info .right ul li {
    margin-right: 9px;
    margin-left: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-info .right {
    float: left;
    display: block;
    text-align: left;
  }
  .blog-info .right ul {
    text-align: left !important;
  }
  .blog-info .right ul li {
    margin-right: 9px;
    margin-left: 0 !important;
  }
}
.post-views {
  display: inline-block !important;
  font-size: 9pt;
}
.blog-post {
  margin: 0 0 50px 0;
}
@media (max-width: 991px) {
  .blog-post {
    margin-bottom: 10px;
  }
}
.blog-post .blog-info {
  margin-bottom: 20px;
}
.blog-post pre {
  margin: -15px 0 40px;
  display: block;
}
.blog-post h1 {
  color: #FFC61A;
  margin-bottom: 40px;
}
.blog-post h3 {
  font-size: 18pt;
  color: #FFC61A;
  text-align: left;
  margin: 50px 0 20px 0;
}
.blog-post pre {
  margin: -15px 0 40px;
  display: block;
}
.blog-post .date {
  font-size: 14px;
  display: block;
}
.blog-post .image img {
  margin: 0px 0 0px 0;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  max-width: 100%;
  height: auto;
}
.blog-post p {
  font-size: 13pt;
  margin-bottom: 30px;
}
.blog-post blockquote {
  font-size: 13pt;
  font-weight: 900;
  font-style: italic;
  border-left: 2px solid #FFC61A;
  margin: 30px 0 30px 30px;
  padding: 0 0 0 30px;
}
.blog-post .tags-short {
  margin: 16px 0;
  font-weight: 900;
  color: #FFC61A;
}
.blog-post .tags-short strong {
  color: #1F1F1F;
}
.blog-post .tags-short a:before {
  content: "#";
}
.blog-post .cats-short {
  margin: 16px 0;
  font-weight: 900;
  color: #FFC61A;
}
.blog-post .cats-short strong {
  color: #1F1F1F;
}
/*
	17. Gallery
*/
.gallery-page {
  padding: 10px 0;
}
.gallery-page .paging-navigation {
  margin-top: -10px;
}
.gallery-page .item {
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .gallery-page .item {
    margin-bottom: 40px;
  }
}
.gallery-page .photo {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
  position: relative;
  overflow: hidden;
  display: block;
}
.gallery-page .photo img {
  border-radius: 8px;
}
.gallery-page .photo .fa {
  transition: all .3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-500%, -50%);
  -moz-transform: translate(-500%, -50%);
  -o-transform: translate(-500%, -50%);
  -ms-transform: translate(-500%, -50%);
  transform: translate(-500%, -50%);
  font-size: 26px;
  color: #fff;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  z-index: 10;
}
.gallery-page .photo:after {
  background: rgba(0, 0, 0, 0.73);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.gallery-page .photo > div {
  z-index: 2;
  position: relative;
}
.gallery-page .photo:after {
  border-radius: 8px;
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.gallery-page .photo:hover {
  zoom: 1;
  filter: alpha(opacity=95);
  -webkit-opacity: 0.95;
  -moz-opacity: 0.95;
  opacity: 0.95;
}
.gallery-page .photo:hover .fa {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gallery-page .photo:hover:after {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.gallery-page .descr {
  padding: 0px 0px;
}
.gallery-page .descr h5 {
  margin: 18px 0 6px;
}
.gallery-page .descr .fa {
  color: #FFC61A;
  margin-right: 10px;
}
.gallery-page .descr a {
  color: #868686;
  font-size: 14px;
}
.gallery-page ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gallery-page ul li {
  font-size: 14px;
  color: #868686;
  margin-right: 15px;
  display: inline-block;
}
.gallery-page.gallery-4 .item {
  margin-bottom: 40px;
}
.gallery-page.gallery-4 .descr h5 {
  font-size: 16px;
}
.gallery-page.gallery-4 .descr ul li,
.gallery-page.gallery-4 .descr a {
  font-size: 12px;
}
.gallery-page.gallery-4 .descr .right {
  text-align: left;
  float: none;
}
.gallery-inner {
  padding-top: 80px;
}
/*
	18. Shortcodes
*/
.shortcodes {
  padding-top: 30px;
  padding-bottom: 120px;
}
.shortcodes hr {
  margin: 70px 0 60px;
}
@media (max-width: 991px) {
  .shortcodes hr {
    margin: 40px 0 40px;
  }
}
.shortcodes h2 {
  margin-bottom: 20px;
}
.vc_message_box {
  margin: 15px 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  text-align: center;
  padding: 70px 30px 40px 30px !important;
  margin-bottom: 15px;
  position: relative;
  background: #fff !important;
  border-color: transparent !important;
}
.vc_message_box p {
  font-size: 14px;
  line-height: 1.6em;
}
.vc_message_box .vc_message_box-icon {
  top: 40px !important;
  left: 50%;
  margin-left: -30px;
  right: auto;
  bottom: auto;
}
.vc_message_box.vc_color-success .fa {
  color: #42A460;
}
.vc_message_box.vc_color-danger .fa {
  color: #9F340A;
}
.vc_message_box.vc_color-warning {
  background: #FFC61A !important;
  color: #1F1F1F !important;
}
.vc_message_box.vc_color-warning .fa {
  color: #1F1F1F !important;
}
.vc_message_box.vc_color-info {
  background: #1F1F1F !important;
  color: #FFC61A !important;
}
.vc_message_box.vc_color-info .fa {
  color: #FFC61A !important;
}
.vc_message_box.vc_color-info .fa {
  color: #fff;
}
.vc_message_box .header {
  font-size: 24px;
  font-weight: 500;
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.vc_message_box .header .fa {
  font-size: 24px;
  margin-right: 10px;
}
.alert {
  margin: 0px 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  text-align: center;
  padding: 30px 30px 40px 30px;
  position: relative;
  background: #fff;
  border-color: transparent !important;
}
.alert.alert-success .fa,
.alert.alert-success .header {
  color: #42A460;
}
.alert.alert-success p {
  color: #1F1F1F;
}
.alert.alert-error .fa,
.alert.alert-error .header {
  color: #9F340A;
}
.alert.alert-important {
  background: #FFC61A;
}
.alert.alert-important .fa,
.alert.alert-important .header,
.alert.alert-important p {
  color: #1F1F1F;
}
.alert.alert-warning {
  background: #1F1F1F;
}
.alert.alert-warning .fa,
.alert.alert-warning .header,
.alert.alert-warning p {
  color: #FFC61A;
}
.alert .close {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #1F1F1F;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  text-shadow: none;
}
.alert p {
  font-size: 14px;
  line-height: 1.6em;
}
.alert .header {
  font-size: 24px;
  font-weight: 500;
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.alert .header .fa {
  font-size: 24px;
  margin-right: 10px;
}
.block-descr .date {
  color: #CCCCCC;
  margin-top: 30px;
  font-size: 14px;
}
.block-descr h4 {
  color: #FFC61A;
  font-size: 24px;
  font-weight: 900;
  margin: 0px 0 10px 0;
}
.block-descr p {
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .block-descr {
    margin-bottom: 50px;
  }
}
.vc_tta-accordion h4 {
  display: block;
  background: transparent !important;
  transition: all .3s ease;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.vc_tta-accordion h4 a {
  color: #FFC61A !important;
  font-size: 18px !important;
  padding-left: 25px !important;
  font-weight: 700 !important;
  padding-top: 23px !important;
  padding-bottom: 23px !important;
}
.vc_tta-accordion h4 a span {
  color: #1F1F1F !important;
}
.vc_tta-accordion h4 a i {
  left: auto !important;
  right: 25px !important;
  /*				background: @yellow;*/
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
  display: block;
  width: 16px !important;
  height: 16px !important;
}
.vc_tta-accordion h4 a i.vc_tta-controls-icon:after,
.vc_tta-accordion h4 a i.vc_tta-controls-icon:before {
  border-color: #CCCCCC !important;
}
.vc_tta-accordion h4:hover {
  color: #1F1F1F;
}
.vc_tta-accordion .vc_tta-panel-heading {
  /*		&:not(:last-child) { border-bottom: 0 none !important; }*/
}
.vc_tta-accordion .vc_tta-panel-heading,
.vc_tta-accordion .vc_tta-panel-body {
  background: transparent !important;
  border-color: #CCCCCC !important;
}
.vc_tta-accordion .vc_tta-panel-body {
  border: 0 !important;
  padding-top: 25px !important;
  padding-bottom: 30px !important;
  padding-left: 0px !important;
  color: #1F1F1F;
}
.vc_tta-accordion .vc_tta-panel-body .wpb_content_element {
  color: #1F1F1F;
}
.vc_tta-accordion .vc_tta-panel-body p {
  font-size: 14px !important;
  line-height: 1.7em;
}
.wpb_gmaps_widget .wpb_wrapper {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.wpb_gmaps_widget {
  margin-bottom: 0 !important;
}
.wpb_video_wrapper {
  -webkit-border-radius: 4px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 4px !important;
  -moz-background-clip: padding !important;
  border-radius: 4px !important;
  background-clip: padding-box !important;
}
.vc_tta-tabs .vc_tta-tabs-list {
  border-color: transparent !important;
}
.vc_tta-tabs .vc_tta-tabs-list .vc_tta-tab a {
  background: #FFC61A !important;
  border-color: transparent !important;
}
.vc_tta-tabs .vc_tta-tabs-list .vc_tta-tab span {
  color: #1F1F1F !important;
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
  padding-left: 20px;
  padding-right: 20px;
}
.vc_tta-tabs .vc_tta-tabs-list .vc_tta-tab span:hover {
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .vc_tta-tabs .vc_tta-tabs-list .vc_tta-tab span {
    font-size: 18px;
    padding: 10px 20px !important;
  }
}
.vc_tta-tabs .vc_tta-tabs-list .vc_active a {
  background: #F5F5F5 !important;
}
.vc_tta-tabs .vc_tta-panels {
  border-color: transparent !important;
  padding: 10px 10px 15px;
}
.vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-list a {
  background: transparent !important;
}
.vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-list .vc_active a {
  background-color: transparent !important;
}
.vc_tta-tabs.vc_tta-style-flat .vc_tta-tabs-list .vc_active a span {
  margin-top: 5px;
  padding: 0;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  border-bottom: 3px solid #FFC61A;
}
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a span {
  color: #1F1F1F !important;
}
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab > a {
  color: #1F1F1F !important;
}
.wpb-js-composer .vc_tta-color-grey.vc_tta-style-classic .vc_tta-tab.vc_active > a {
  color: #FFC61A !important;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-icon {
  /*	display: inline-block !important;*/
  margin-top: -5px !important;
  margin-left: 10px !important;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-title-text:not(:empty):not(:first-child) {
  margin-left: -5px !important;
  vertical-align: middle;
}
.wpb-js-composer .vc_tta-panel .vc_tta-icon {
  margin-right: 20px !important;
  color: #FFC61A;
}
.progressBar {
  margin: -10px 0 40px;
}
.progressBar .value,
.progressBar .header {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
}
.progressBar .header {
  padding-left: 2px;
}
.progressBar .value {
  float: right;
  margin-top: -30px;
}
.progressBar .bar {
  width: 100%;
  height: 18px;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
  background-color: #F5F5F5;
}
.progressBar .bar div {
  height: 100%;
  width: 0;
  background-color: #FFC61A;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
}
.vc_progress_bar .vc_single_bar {
  position: relative;
  -webkit-box-shadow: 0 0 0 !important;
  -moz-box-shadow: 0 0 0 !important;
  box-shadow: 0 0 0 !important;
  margin-bottom: 40px !important;
}
.vc_progress_bar .vc_label {
  font-weight: 700;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 16px;
}
.vc_progress_bar .vc_label .vc_label_units {
  float: right;
}
.vc_separator {
  display: block !important;
}
.vc_separator.vc_separator-has-text h4 {
  font-size: 24px;
  margin-bottom: 14px;
}
.vc_separator.vc_separator-has-text .vc_sep_holder {
  display: block;
}
.vc_separator.vc_separator-has-text .vc_sep_holder {
  max-width: 10%;
}
.vc_separator.vc_separator-has-text .vc_sep_holder .vc_sep_line {
  border-top: 2px solid #FFC61A;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_center {
  text-align: center;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_center .vc_sep_holder_l {
  display: none;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_center .vc_sep_holder {
  margin: 0 auto;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_center h4 {
  text-align: center;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_right {
  text-align: right;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_right .vc_sep_holder_l {
  display: none;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_right .vc_sep_holder_r {
  display: block !important;
  float: right;
}
.vc_separator.vc_separator-has-text.vc_sep_pos_align_right h4 {
  text-align: right;
  margin-bottom: 14px !important;
}
.vc_separator.vc_sep_color_grey .vc_sep_line {
  border-color: #CCCCCC !important;
}
.social-icons-list {
  list-style: none;
  margin: 40px 0 60px 0;
  padding: 0;
}
.social-icons-list li {
  font-weight: 400;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 30px 0 !important;
}
.social-icons-list li.large {
  font-size: 30px;
}
.social-icons-list li a {
  color: #1F1F1F;
}
.social-icons-list li span {
  color: #FFC61A !important;
  font-size: 24px;
  width: 48px;
  margin-left: -16px;
  vertical-align: middle;
  text-align: center;
}
.border_shadow .vc_column-inner {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.social-small {
  margin-top: -3px;
  margin-left: 0px;
  list-style: none;
  padding: 0;
}
.social-small li {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.social-small a {
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 29px;
  margin: 0 10px 0 0px;
  font-size: 18px;
  transition: all .3s ease;
  color: #FFC61A;
}
.social-small a:hover {
  color: #1F1F1F !important;
}
.social-small.social-yellow a {
  color: #FFC61A;
}
.social-small.social-yellow a:hover {
  color: #fff;
}
.align-center {
  text-align: center;
}
.social-big {
  list-style: none;
  margin: 0px 0 35px 0;
  padding: 0;
}
.social-big li {
  display: inline;
  margin-right: 8px !important;
  vertical-align: middle;
}
.social-big li a {
  color: #fff;
  background: #474747;
  display: inline-block;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  text-align: center;
  line-height: 40px;
  font-size: 18pt;
  transition: background .8s ease;
}
.social-big li a:hover {
  background: #FFC61A !important;
}
.social-big li .fa-skype {
  background: #00AFF0;
}
.social-big li .fa-facebook {
  background: #4E71A8;
}
.social-big li .fa-twitter {
  background: #1CB7EB;
}
.social-big li .fa-youtube-play,
.social-big li .fa-youtube {
  background: #CA3737;
}
.social-big li .fa-instagram {
  background: #444444;
}
.block-icon {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -15px;
}
.block-icon li {
  width: 33.3%;
  display: inline-block;
  vertical-align: top;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .block-icon li {
    width: 50%;
    margin-bottom: 35px !important;
  }
}
@media (max-width: 768px) {
  .block-icon li {
    width: 100%;
    margin-bottom: 35px !important;
  }
}
.block-icon.icon-ht-right a,
.block-icon.icon-ht-right span {
  background: #FFC61A;
  color: #fff;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  font-size: 30px;
  padding: 15px;
  vertical-align: top;
  position: absolute;
}
.block-icon.icon-ht-right .block-right {
  vertical-align: top;
  padding-left: 80px;
}
.block-icon.icon-h-right a,
.block-icon.icon-h-right span {
  color: #FFC61A;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  font-size: 30px;
  vertical-align: middle;
  margin: 0 15px 0px 0;
  position: absolute;
}
.block-icon.icon-h-right h4 {
  vertical-align: middle;
  margin: 0 0 20px;
  padding-left: 50px;
}
.block-icon.icon-top {
  text-align: center;
}
.block-icon.icon-top a,
.block-icon.icon-top span {
  background: #FFC61A;
  color: #fff;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  font-size: 30px;
  padding: 15px;
}
.block-icon.icon-top h4 {
  margin: 20px 0 15px;
}
.block-icon.i-circle a,
.block-icon.i-circle span {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  display: block;
  width: 52px;
  height: 52px;
  line-height: 22px;
  font-size: 18px;
  font-weight: bold;
}
.tags {
  margin: 26px 0 0 8px;
  padding: 0 0 30px;
}
.tags a {
  float: left;
  margin: 8px 0 0 8px;
  padding: 0px 12px;
  font-size: 11pt;
  font-weight: 500;
  border: 2px solid #FFC61A;
  -webkit-border-radius: 36px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 36px;
  -moz-background-clip: padding;
  border-radius: 36px;
  background-clip: padding-box;
  color: #FFC61A;
  transition: all .3s ease;
}
.tags a:hover {
  border: 2px solid #FFC61A;
  color: #FFC61A;
}
.team-item {
  text-align: center;
}
.team-item h4 {
  color: #FFC61A;
  margin: 26px 0 0 0 !important;
}
.team-item p {
  font-weight: bold;
}
.team-item img {
  width: 100%;
  height: auto;
}
.team-item ul {
  list-style: none;
  text-align: center;
  margin: 0 0 0 -12px;
}
.team-item ul li {
  display: inline-block;
  margin: 0 0 0 12px;
}
.team-item ul li a {
  color: #1F1F1F;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.team-item ul li a:hover {
  zoom: 1;
  filter: alpha(opacity=60);
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.team-item.item-type-circle {
  padding: 95px 35px;
}
@media (max-width: 991px) {
  .team-item.item-type-circle {
    padding-bottom: 10px;
  }
}
.team-item.item-type-circle img {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
.team-item.item-type-circle ul {
  padding: 8px 0 0 0;
}
.team-item.item-type-square {
  margin-top: 95px;
  margin-bottom: 95px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
@media (max-width: 991px) {
  .team-item.item-type-square {
    margin-bottom: 10px;
  }
}
.team-item.item-type-square img {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 4px;
  -moz-background-clip: padding;
  border-top-right-radius: 4px;
  background-clip: padding-box;
}
.team-item.item-type-square .social {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin: 18px 18px 0;
}
.team-item.item-type-square ul {
  padding: 8px 0 8px 0;
}
.slider-inner {
  padding-bottom: 10px;
}
.slider-inner img {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  width: 100%;
  height: auto;
}
.slider-inner .swiper-pagination {
  margin-bottom: -18px;
}
.slider-inner .swiper-pagination .swiper-pagination-bullet {
  width: 23px;
  height: 23px;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  background: #FFC61A;
  border: 5px solid #fff;
  margin: 0 5px;
}
.slider-inner .swiper-pagination .swiper-pagination-bullet-active {
  background: #1F1F1F;
}
.slider-inner p {
  margin: 30px 0;
}
.slider-inner .swiper-arrows a {
  border: 1px solid #1F1F1F;
  color: #1F1F1F;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  width: 35px;
  height: 35px;
  display: inline-block;
  margin: 20px 4px;
  font-size: 14px;
  line-height: 35px;
  font-weight: 900;
  text-align: center;
}
.slider-inner .swiper-arrows a:hover {
  background: #1F1F1F;
  color: #fff;
}
.slider-inner.swiper-gallery .swiper-arrows {
  display: none;
}
.slider-inner.align-right {
  text-align: right;
}
.slider-inner.align-right .swiper-arrows {
  right: 0;
  left: auto;
}
.slider-inner.align-right .swiper-arrows,
.slider-inner.align-left .swiper-arrows {
  position: absolute;
  bottom: 15px;
  z-index: 100;
}
a.video {
  position: relative;
  display: block;
}
a.video img {
  -webkit-border-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 10px;
  -moz-background-clip: padding;
  border-radius: 10px;
  background-clip: padding-box;
}
a.video span {
  width: 55px;
  height: 55px;
  font-size: 55px;
  display: block;
  position: absolute;
  color: #fff;
  top: 50%;
  right: 50%;
  z-index: 100;
  margin: -27px -27px 0 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
a.video:hover span {
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
/*
	19. Forms (buttons/radio/inputs)
*/
form:not(.halio-form) select {
  max-width: 100%;
}
form:not(.halio-form) textarea,
form:not(.halio-form) input[type="password"],
form:not(.halio-form) input[type="search"],
form:not(.halio-form) input[type="email"],
form:not(.halio-form) input[type="tel"],
form:not(.halio-form) input[type="date"],
form:not(.halio-form) input[type="text"] {
  width: 100%;
  font-size: 16px;
  display: block;
  margin: 0 auto;
  margin-bottom: 24px;
  background: #fff;
  padding: 12px 18px;
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
form:not(.halio-form) textarea:focus,
form:not(.halio-form) input[type="password"]:focus,
form:not(.halio-form) input[type="search"]:focus,
form:not(.halio-form) input[type="email"]:focus,
form:not(.halio-form) input[type="tel"]:focus,
form:not(.halio-form) input[type="date"]:focus,
form:not(.halio-form) input[type="text"]:focus {
  border-color: #FFC61A;
}
@media (max-width: 991px) {
  form:not(.halio-form) textarea,
  form:not(.halio-form) input[type="password"],
  form:not(.halio-form) input[type="search"],
  form:not(.halio-form) input[type="email"],
  form:not(.halio-form) input[type="tel"],
  form:not(.halio-form) input[type="date"],
  form:not(.halio-form) input[type="text"] {
    width: 100%;
  }
}
form:not(.halio-form) textarea.wpcf7-not-valid,
form:not(.halio-form) input[type="password"].wpcf7-not-valid,
form:not(.halio-form) input[type="search"].wpcf7-not-valid,
form:not(.halio-form) input[type="email"].wpcf7-not-valid,
form:not(.halio-form) input[type="tel"].wpcf7-not-valid,
form:not(.halio-form) input[type="date"].wpcf7-not-valid,
form:not(.halio-form) input[type="text"].wpcf7-not-valid {
  border-color: #9F340A !important;
}
form:not(.halio-form) .date {
  margin: 0 !important;
}
form:not(.halio-form) p {
  margin-top: 0;
}
.woocommerce-product-search:not(.halio-form),
.wp-searchform:not(.halio-form),
form.post-password-form:not(.halio-form),
form.search-form:not(.halio-form),
form.wpcf7-form:not(.halio-form),
form.form:not(.halio-form),
form.comment-form:not(.halio-form),
form:not(.halio-form) {
  background: #F5F5F5;
  text-align: center;
  margin: 0px 0 40px 0;
  padding: 45px;
  padding-bottom: 45px;
  position: relative;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.woocommerce-product-search:not(.halio-form) .ajax-loader,
.wp-searchform:not(.halio-form) .ajax-loader,
form.post-password-form:not(.halio-form) .ajax-loader,
form.search-form:not(.halio-form) .ajax-loader,
form.wpcf7-form:not(.halio-form) .ajax-loader,
form.form:not(.halio-form) .ajax-loader,
form.comment-form:not(.halio-form) .ajax-loader,
form:not(.halio-form) .ajax-loader {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.woocommerce-product-search:not(.halio-form) select,
.wp-searchform:not(.halio-form) select,
form.post-password-form:not(.halio-form) select,
form.search-form:not(.halio-form) select,
form.wpcf7-form:not(.halio-form) select,
form.form:not(.halio-form) select,
form.comment-form:not(.halio-form) select,
form:not(.halio-form) select {
  max-width: 100%;
}
.woocommerce-product-search:not(.halio-form) label,
.wp-searchform:not(.halio-form) label,
form.post-password-form:not(.halio-form) label,
form.search-form:not(.halio-form) label,
form.wpcf7-form:not(.halio-form) label,
form.form:not(.halio-form) label,
form.comment-form:not(.halio-form) label,
form:not(.halio-form) label {
  text-align: left;
  display: block;
}
.woocommerce-product-search:not(.halio-form).comment-form textarea,
.wp-searchform:not(.halio-form).comment-form textarea,
form.post-password-form:not(.halio-form).comment-form textarea,
form.search-form:not(.halio-form).comment-form textarea,
form.wpcf7-form:not(.halio-form).comment-form textarea,
form.form:not(.halio-form).comment-form textarea,
form.comment-form:not(.halio-form).comment-form textarea,
form:not(.halio-form).comment-form textarea,
.woocommerce-product-search:not(.halio-form).comment-form input[type="search"],
.wp-searchform:not(.halio-form).comment-form input[type="search"],
form.post-password-form:not(.halio-form).comment-form input[type="search"],
form.search-form:not(.halio-form).comment-form input[type="search"],
form.wpcf7-form:not(.halio-form).comment-form input[type="search"],
form.form:not(.halio-form).comment-form input[type="search"],
form.comment-form:not(.halio-form).comment-form input[type="search"],
form:not(.halio-form).comment-form input[type="search"],
.woocommerce-product-search:not(.halio-form).comment-form input[type="email"],
.wp-searchform:not(.halio-form).comment-form input[type="email"],
form.post-password-form:not(.halio-form).comment-form input[type="email"],
form.search-form:not(.halio-form).comment-form input[type="email"],
form.wpcf7-form:not(.halio-form).comment-form input[type="email"],
form.form:not(.halio-form).comment-form input[type="email"],
form.comment-form:not(.halio-form).comment-form input[type="email"],
form:not(.halio-form).comment-form input[type="email"],
.woocommerce-product-search:not(.halio-form).comment-form input[type="text"],
.wp-searchform:not(.halio-form).comment-form input[type="text"],
form.post-password-form:not(.halio-form).comment-form input[type="text"],
form.search-form:not(.halio-form).comment-form input[type="text"],
form.wpcf7-form:not(.halio-form).comment-form input[type="text"],
form.form:not(.halio-form).comment-form input[type="text"],
form.comment-form:not(.halio-form).comment-form input[type="text"],
form:not(.halio-form).comment-form input[type="text"] {
  width: 100%;
}
.woocommerce-product-search:not(.halio-form) .wpcf7-not-valid-tip,
.wp-searchform:not(.halio-form) .wpcf7-not-valid-tip,
form.post-password-form:not(.halio-form) .wpcf7-not-valid-tip,
form.search-form:not(.halio-form) .wpcf7-not-valid-tip,
form.wpcf7-form:not(.halio-form) .wpcf7-not-valid-tip,
form.form:not(.halio-form) .wpcf7-not-valid-tip,
form.comment-form:not(.halio-form) .wpcf7-not-valid-tip,
form:not(.halio-form) .wpcf7-not-valid-tip {
  margin: -16px 0 0 0;
  font-size: 14px;
  color: #FFC61A;
}
.woocommerce-product-search:not(.halio-form).woocommerce-product-search,
.wp-searchform:not(.halio-form).woocommerce-product-search,
form.post-password-form:not(.halio-form).woocommerce-product-search,
form.search-form:not(.halio-form).woocommerce-product-search,
form.wpcf7-form:not(.halio-form).woocommerce-product-search,
form.form:not(.halio-form).woocommerce-product-search,
form.comment-form:not(.halio-form).woocommerce-product-search,
form:not(.halio-form).woocommerce-product-search,
.woocommerce-product-search:not(.halio-form).wp-searchform,
.wp-searchform:not(.halio-form).wp-searchform,
form.post-password-form:not(.halio-form).wp-searchform,
form.search-form:not(.halio-form).wp-searchform,
form.wpcf7-form:not(.halio-form).wp-searchform,
form.form:not(.halio-form).wp-searchform,
form.comment-form:not(.halio-form).wp-searchform,
form:not(.halio-form).wp-searchform {
  padding: 0;
  margin: 0;
}
.woocommerce-product-search:not(.halio-form).woocommerce-product-search input[type="text"],
.wp-searchform:not(.halio-form).woocommerce-product-search input[type="text"],
form.post-password-form:not(.halio-form).woocommerce-product-search input[type="text"],
form.search-form:not(.halio-form).woocommerce-product-search input[type="text"],
form.wpcf7-form:not(.halio-form).woocommerce-product-search input[type="text"],
form.form:not(.halio-form).woocommerce-product-search input[type="text"],
form.comment-form:not(.halio-form).woocommerce-product-search input[type="text"],
form:not(.halio-form).woocommerce-product-search input[type="text"],
.woocommerce-product-search:not(.halio-form).wp-searchform input[type="text"],
.wp-searchform:not(.halio-form).wp-searchform input[type="text"],
form.post-password-form:not(.halio-form).wp-searchform input[type="text"],
form.search-form:not(.halio-form).wp-searchform input[type="text"],
form.wpcf7-form:not(.halio-form).wp-searchform input[type="text"],
form.form:not(.halio-form).wp-searchform input[type="text"],
form.comment-form:not(.halio-form).wp-searchform input[type="text"],
form:not(.halio-form).wp-searchform input[type="text"] {
  width: 100% !important;
  color: #1F1F1F;
}
.woocommerce-product-search:not(.halio-form) textarea,
.wp-searchform:not(.halio-form) textarea,
form.post-password-form:not(.halio-form) textarea,
form.search-form:not(.halio-form) textarea,
form.wpcf7-form:not(.halio-form) textarea,
form.form:not(.halio-form) textarea,
form.comment-form:not(.halio-form) textarea,
form:not(.halio-form) textarea {
  height: 140px;
}
.woocommerce-product-search:not(.halio-form) .btn,
.wp-searchform:not(.halio-form) .btn,
form.post-password-form:not(.halio-form) .btn,
form.search-form:not(.halio-form) .btn,
form.wpcf7-form:not(.halio-form) .btn,
form.form:not(.halio-form) .btn,
form.comment-form:not(.halio-form) .btn,
form:not(.halio-form) .btn,
.woocommerce-product-search:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
form:not(.halio-form) .woocommerce-product-search:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
form:not(.halio-form) .wp-searchform:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
form:not(.halio-form) form.post-password-form:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
form:not(.halio-form) form.search-form:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
form:not(.halio-form) form.wpcf7-form:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
form:not(.halio-form) form.form:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
form:not(.halio-form) form.comment-form:not(.halio-form) input[type="submit"],
.woocommerce-product-search:not(.halio-form) form:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) form:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) form:not(.halio-form) input[type="submit"],
form:not(.halio-form) form:not(.halio-form) input[type="submit"] {
  margin: 15px 0 10px;
}
@media (max-width: 991px) {
  .woocommerce-product-search:not(.halio-form),
  .wp-searchform:not(.halio-form),
  form.post-password-form:not(.halio-form),
  form.search-form:not(.halio-form),
  form.wpcf7-form:not(.halio-form),
  form.form:not(.halio-form),
  form.comment-form:not(.halio-form),
  form:not(.halio-form) {
    padding: 30px 25px;
  }
}
.form-white form {
  background: transparent !important;
  padding-left: 0 !important;
}
form .input-radio + label {
  display: inline-block;
}
.select-wrap {
  width: 100%;
  position: relative;
  border: 1px solid #E6E6E6;
  background: #fff;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.select-wrap,
.select-wrap:after,
.select-wrap select {
  transition: all .3s ease;
}
.select-wrap:after {
  content: "\f078";
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  line-height: 1em;
  width: 1em;
  height: 1em;
  text-align: center;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.5em;
  z-index: 2;
  pointer-events: none;
  cursor: pointer;
}
.select-wrap select {
  background: none !important;
  border: none;
  width: 99%;
  padding: 0.5em 1.0em;
  padding-right: 3em !important;
}
.select-wrap option {
  padding: 0.4em 1em;
}
select::-ms-expand {
  display: none;
}
select {
  max-width: 100%;
  -moz-appearance: none;
}
.select2-container .select2-selection--single {
  padding-top: 6px;
  font-size: 16px;
  height: 42px;
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 4px;
  right: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: "\f078";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #CCCCCC;
}
.wpcf7-form-control-wrap {
  font-weight: 100;
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button,
.woocommerce a.button,
.button,
.fw-btn,
input[type="submit"],
.btn,
.woocommerce-product-search:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) input[type="submit"],
form:not(.halio-form) input[type="submit"] {
  -webkit-border-radius: 30px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 30px;
  -moz-background-clip: padding;
  border-radius: 30px;
  background-clip: padding-box;
  transition: all .3s ease;
  font-size: 16px;
  line-height: 1.9em;
  padding: 9px 40px 11px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: lowercase;
  border: 0;
  color: #1F1F1F;
  background: #FFC61A;
  display: inline-block;
}
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.button:hover,
.fw-btn:hover,
input[type="submit"]:hover,
.btn:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"]:hover,
.wp-searchform:not(.halio-form) input[type="submit"]:hover,
form.post-password-form:not(.halio-form) input[type="submit"]:hover,
form.search-form:not(.halio-form) input[type="submit"]:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"]:hover,
form.form:not(.halio-form) input[type="submit"]:hover,
form.comment-form:not(.halio-form) input[type="submit"]:hover,
form:not(.halio-form) input[type="submit"]:hover {
  background: #1F1F1F;
  color: #FFC61A;
}
.woocommerce #payment #place_order.btn-yellow.btn-white,
.woocommerce-page #payment #place_order.btn-yellow.btn-white,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-yellow.btn-white,
.woocommerce div.product form.cart .button.btn-yellow.btn-white,
.woocommerce #respond input#submit.btn-yellow.btn-white,
.woocommerce a.button.btn-yellow.btn-white,
.woocommerce button.button.btn-yellow.btn-white,
.woocommerce input.button.btn-yellow.btn-white,
.woocommerce button.button.btn-yellow.btn-white,
.woocommerce a.button.btn-yellow.btn-white,
.button.btn-yellow.btn-white,
.fw-btn.btn-yellow.btn-white,
input[type="submit"].btn-yellow.btn-white,
.btn.btn-yellow.btn-white,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
.wp-searchform:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
form.post-password-form:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
form.search-form:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
form.form:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
form.comment-form:not(.halio-form) input[type="submit"].btn-yellow.btn-white,
form:not(.halio-form) input[type="submit"].btn-yellow.btn-white {
  color: #fff;
}
.woocommerce #payment #place_order.btn-yellow:hover,
.woocommerce-page #payment #place_order.btn-yellow:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-yellow:hover,
.woocommerce div.product form.cart .button.btn-yellow:hover,
.woocommerce #respond input#submit.btn-yellow:hover,
.woocommerce a.button.btn-yellow:hover,
.woocommerce button.button.btn-yellow:hover,
.woocommerce input.button.btn-yellow:hover,
.woocommerce button.button.btn-yellow:hover,
.woocommerce a.button.btn-yellow:hover,
.button.btn-yellow:hover,
.fw-btn.btn-yellow:hover,
input[type="submit"].btn-yellow:hover,
.btn.btn-yellow:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-yellow:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-yellow:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-yellow:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-yellow:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-yellow:hover,
form.form:not(.halio-form) input[type="submit"].btn-yellow:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-yellow:hover,
form:not(.halio-form) input[type="submit"].btn-yellow:hover {
  background: #1F1F1F;
  color: #FFC61A;
}
.woocommerce #payment #place_order.btn-yellow.btn-bg-dark:hover,
.woocommerce-page #payment #place_order.btn-yellow.btn-bg-dark:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-yellow.btn-bg-dark:hover,
.woocommerce div.product form.cart .button.btn-yellow.btn-bg-dark:hover,
.woocommerce #respond input#submit.btn-yellow.btn-bg-dark:hover,
.woocommerce a.button.btn-yellow.btn-bg-dark:hover,
.woocommerce button.button.btn-yellow.btn-bg-dark:hover,
.woocommerce input.button.btn-yellow.btn-bg-dark:hover,
.woocommerce button.button.btn-yellow.btn-bg-dark:hover,
.woocommerce a.button.btn-yellow.btn-bg-dark:hover,
.button.btn-yellow.btn-bg-dark:hover,
.fw-btn.btn-yellow.btn-bg-dark:hover,
input[type="submit"].btn-yellow.btn-bg-dark:hover,
.btn.btn-yellow.btn-bg-dark:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
form.form:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover,
form:not(.halio-form) input[type="submit"].btn-yellow.btn-bg-dark:hover {
  background: #fff;
  color: #1F1F1F;
}
.woocommerce #payment #place_order.btn-white-filled,
.woocommerce-page #payment #place_order.btn-white-filled,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-white-filled,
.woocommerce div.product form.cart .button.btn-white-filled,
.woocommerce #respond input#submit.btn-white-filled,
.woocommerce a.button.btn-white-filled,
.woocommerce button.button.btn-white-filled,
.woocommerce input.button.btn-white-filled,
.woocommerce button.button.btn-white-filled,
.woocommerce a.button.btn-white-filled,
.button.btn-white-filled,
.fw-btn.btn-white-filled,
input[type="submit"].btn-white-filled,
.btn.btn-white-filled,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-white-filled,
.wp-searchform:not(.halio-form) input[type="submit"].btn-white-filled,
form.post-password-form:not(.halio-form) input[type="submit"].btn-white-filled,
form.search-form:not(.halio-form) input[type="submit"].btn-white-filled,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-white-filled,
form.form:not(.halio-form) input[type="submit"].btn-white-filled,
form.comment-form:not(.halio-form) input[type="submit"].btn-white-filled,
form:not(.halio-form) input[type="submit"].btn-white-filled {
  background: #fff;
}
.woocommerce #payment #place_order.wpcf7-submit,
.woocommerce-page #payment #place_order.wpcf7-submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.wpcf7-submit,
.woocommerce div.product form.cart .button.wpcf7-submit,
.woocommerce #respond input#submit.wpcf7-submit,
.woocommerce a.button.wpcf7-submit,
.woocommerce button.button.wpcf7-submit,
.woocommerce input.button.wpcf7-submit,
.woocommerce button.button.wpcf7-submit,
.woocommerce a.button.wpcf7-submit,
.button.wpcf7-submit,
.fw-btn.wpcf7-submit,
input[type="submit"].wpcf7-submit,
.btn.wpcf7-submit,
.woocommerce #payment #place_order.btn-lg,
.woocommerce-page #payment #place_order.btn-lg,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-lg,
.woocommerce div.product form.cart .button.btn-lg,
.woocommerce #respond input#submit.btn-lg,
.woocommerce a.button.btn-lg,
.woocommerce button.button.btn-lg,
.woocommerce input.button.btn-lg,
.woocommerce button.button.btn-lg,
.woocommerce a.button.btn-lg,
.button.btn-lg,
.fw-btn.btn-lg,
input[type="submit"].btn-lg,
.btn.btn-lg,
.woocommerce-product-search:not(.halio-form) input[type="submit"].wpcf7-submit,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-lg,
.wp-searchform:not(.halio-form) input[type="submit"].wpcf7-submit,
.wp-searchform:not(.halio-form) input[type="submit"].btn-lg,
form.post-password-form:not(.halio-form) input[type="submit"].wpcf7-submit,
form.post-password-form:not(.halio-form) input[type="submit"].btn-lg,
form.search-form:not(.halio-form) input[type="submit"].wpcf7-submit,
form.search-form:not(.halio-form) input[type="submit"].btn-lg,
form.wpcf7-form:not(.halio-form) input[type="submit"].wpcf7-submit,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-lg,
form.form:not(.halio-form) input[type="submit"].wpcf7-submit,
form.form:not(.halio-form) input[type="submit"].btn-lg,
form.comment-form:not(.halio-form) input[type="submit"].wpcf7-submit,
form.comment-form:not(.halio-form) input[type="submit"].btn-lg,
form:not(.halio-form) input[type="submit"].wpcf7-submit,
form:not(.halio-form) input[type="submit"].btn-lg {
  text-transform: uppercase;
  font-size: 18px;
  padding: 17px 60px;
  line-height: 1.4em;
}
.woocommerce #payment #place_order.btn-xs,
.woocommerce-page #payment #place_order.btn-xs,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-xs,
.woocommerce div.product form.cart .button.btn-xs,
.woocommerce #respond input#submit.btn-xs,
.woocommerce a.button.btn-xs,
.woocommerce button.button.btn-xs,
.woocommerce input.button.btn-xs,
.woocommerce button.button.btn-xs,
.woocommerce a.button.btn-xs,
.button.btn-xs,
.fw-btn.btn-xs,
input[type="submit"].btn-xs,
.btn.btn-xs,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-xs,
.wp-searchform:not(.halio-form) input[type="submit"].btn-xs,
form.post-password-form:not(.halio-form) input[type="submit"].btn-xs,
form.search-form:not(.halio-form) input[type="submit"].btn-xs,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-xs,
form.form:not(.halio-form) input[type="submit"].btn-xs,
form.comment-form:not(.halio-form) input[type="submit"].btn-xs,
form:not(.halio-form) input[type="submit"].btn-xs {
  text-transform: uppercase;
  font-size: 11px;
  padding: 5px 18px 5px;
  line-height: 1.6em;
}
.woocommerce #payment #place_order.btn-sm,
.woocommerce-page #payment #place_order.btn-sm,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-sm,
.woocommerce div.product form.cart .button.btn-sm,
.woocommerce #respond input#submit.btn-sm,
.woocommerce a.button.btn-sm,
.woocommerce button.button.btn-sm,
.woocommerce input.button.btn-sm,
.woocommerce button.button.btn-sm,
.woocommerce a.button.btn-sm,
.button.btn-sm,
.fw-btn.btn-sm,
input[type="submit"].btn-sm,
.btn.btn-sm,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-sm,
.wp-searchform:not(.halio-form) input[type="submit"].btn-sm,
form.post-password-form:not(.halio-form) input[type="submit"].btn-sm,
form.search-form:not(.halio-form) input[type="submit"].btn-sm,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-sm,
form.form:not(.halio-form) input[type="submit"].btn-sm,
form.comment-form:not(.halio-form) input[type="submit"].btn-sm,
form:not(.halio-form) input[type="submit"].btn-sm {
  text-transform: uppercase;
  font-size: 11px;
  padding: 10px 30px 8px;
  line-height: 1.6em;
}
.woocommerce #payment #place_order.btn-red,
.woocommerce-page #payment #place_order.btn-red,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-red,
.woocommerce div.product form.cart .button.btn-red,
.woocommerce #respond input#submit.btn-red,
.woocommerce a.button.btn-red,
.woocommerce button.button.btn-red,
.woocommerce input.button.btn-red,
.woocommerce button.button.btn-red,
.woocommerce a.button.btn-red,
.button.btn-red,
.fw-btn.btn-red,
input[type="submit"].btn-red,
.btn.btn-red,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-red,
.wp-searchform:not(.halio-form) input[type="submit"].btn-red,
form.post-password-form:not(.halio-form) input[type="submit"].btn-red,
form.search-form:not(.halio-form) input[type="submit"].btn-red,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-red,
form.form:not(.halio-form) input[type="submit"].btn-red,
form.comment-form:not(.halio-form) input[type="submit"].btn-red,
form:not(.halio-form) input[type="submit"].btn-red {
  color: #fff;
  background: #9F340A;
  position: relative;
  -webkit-box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
  -moz-box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
  box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
}
.woocommerce #payment #place_order.btn-red:hover,
.woocommerce-page #payment #place_order.btn-red:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-red:hover,
.woocommerce div.product form.cart .button.btn-red:hover,
.woocommerce #respond input#submit.btn-red:hover,
.woocommerce a.button.btn-red:hover,
.woocommerce button.button.btn-red:hover,
.woocommerce input.button.btn-red:hover,
.woocommerce button.button.btn-red:hover,
.woocommerce a.button.btn-red:hover,
.button.btn-red:hover,
.fw-btn.btn-red:hover,
input[type="submit"].btn-red:hover,
.btn.btn-red:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-red:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-red:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-red:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-red:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-red:hover,
form.form:not(.halio-form) input[type="submit"].btn-red:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-red:hover,
form:not(.halio-form) input[type="submit"].btn-red:hover {
  background: #1F1F1F;
  color: #FFC61A;
}
.woocommerce #payment #place_order.btn-second,
.woocommerce-page #payment #place_order.btn-second,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second,
.woocommerce div.product form.cart .button.btn-second,
.woocommerce #respond input#submit.btn-second,
.woocommerce a.button.btn-second,
.woocommerce button.button.btn-second,
.woocommerce input.button.btn-second,
.woocommerce button.button.btn-second,
.woocommerce a.button.btn-second,
.button.btn-second,
.fw-btn.btn-second,
input[type="submit"].btn-second,
.btn.btn-second,
.woocommerce #payment #place_order.btn-black,
.woocommerce-page #payment #place_order.btn-black,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black,
.woocommerce div.product form.cart .button.btn-black,
.woocommerce #respond input#submit.btn-black,
.woocommerce a.button.btn-black,
.woocommerce button.button.btn-black,
.woocommerce input.button.btn-black,
.woocommerce button.button.btn-black,
.woocommerce a.button.btn-black,
.button.btn-black,
.fw-btn.btn-black,
input[type="submit"].btn-black,
.btn.btn-black,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black,
form.search-form:not(.halio-form) input[type="submit"].btn-second,
form.search-form:not(.halio-form) input[type="submit"].btn-black,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black,
form.form:not(.halio-form) input[type="submit"].btn-second,
form.form:not(.halio-form) input[type="submit"].btn-black,
form.comment-form:not(.halio-form) input[type="submit"].btn-second,
form.comment-form:not(.halio-form) input[type="submit"].btn-black,
form:not(.halio-form) input[type="submit"].btn-second,
form:not(.halio-form) input[type="submit"].btn-black {
  color: #FFC61A;
  background: #1F1F1F;
}
.woocommerce #payment #place_order.btn-second:hover,
.woocommerce-page #payment #place_order.btn-second:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second:hover,
.woocommerce div.product form.cart .button.btn-second:hover,
.woocommerce #respond input#submit.btn-second:hover,
.woocommerce a.button.btn-second:hover,
.woocommerce button.button.btn-second:hover,
.woocommerce input.button.btn-second:hover,
.woocommerce button.button.btn-second:hover,
.woocommerce a.button.btn-second:hover,
.button.btn-second:hover,
.fw-btn.btn-second:hover,
input[type="submit"].btn-second:hover,
.btn.btn-second:hover,
.woocommerce #payment #place_order.btn-black:hover,
.woocommerce-page #payment #place_order.btn-black:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black:hover,
.woocommerce div.product form.cart .button.btn-black:hover,
.woocommerce #respond input#submit.btn-black:hover,
.woocommerce a.button.btn-black:hover,
.woocommerce button.button.btn-black:hover,
.woocommerce input.button.btn-black:hover,
.woocommerce button.button.btn-black:hover,
.woocommerce a.button.btn-black:hover,
.button.btn-black:hover,
.fw-btn.btn-black:hover,
input[type="submit"].btn-black:hover,
.btn.btn-black:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-second:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-black:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black:hover,
form.form:not(.halio-form) input[type="submit"].btn-second:hover,
form.form:not(.halio-form) input[type="submit"].btn-black:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-second:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-black:hover,
form:not(.halio-form) input[type="submit"].btn-second:hover,
form:not(.halio-form) input[type="submit"].btn-black:hover {
  color: #fff;
}
.woocommerce #payment #place_order.btn-second.btn-white,
.woocommerce-page #payment #place_order.btn-second.btn-white,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second.btn-white,
.woocommerce div.product form.cart .button.btn-second.btn-white,
.woocommerce #respond input#submit.btn-second.btn-white,
.woocommerce a.button.btn-second.btn-white,
.woocommerce button.button.btn-second.btn-white,
.woocommerce input.button.btn-second.btn-white,
.woocommerce button.button.btn-second.btn-white,
.woocommerce a.button.btn-second.btn-white,
.button.btn-second.btn-white,
.fw-btn.btn-second.btn-white,
input[type="submit"].btn-second.btn-white,
.btn.btn-second.btn-white,
.woocommerce #payment #place_order.btn-black.btn-white,
.woocommerce-page #payment #place_order.btn-black.btn-white,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black.btn-white,
.woocommerce div.product form.cart .button.btn-black.btn-white,
.woocommerce #respond input#submit.btn-black.btn-white,
.woocommerce a.button.btn-black.btn-white,
.woocommerce button.button.btn-black.btn-white,
.woocommerce input.button.btn-black.btn-white,
.woocommerce button.button.btn-black.btn-white,
.woocommerce a.button.btn-black.btn-white,
.button.btn-black.btn-white,
.fw-btn.btn-black.btn-white,
input[type="submit"].btn-black.btn-white,
.btn.btn-black.btn-white,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second.btn-white,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black.btn-white,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second.btn-white,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black.btn-white,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second.btn-white,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black.btn-white,
form.search-form:not(.halio-form) input[type="submit"].btn-second.btn-white,
form.search-form:not(.halio-form) input[type="submit"].btn-black.btn-white,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second.btn-white,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black.btn-white,
form.form:not(.halio-form) input[type="submit"].btn-second.btn-white,
form.form:not(.halio-form) input[type="submit"].btn-black.btn-white,
form.comment-form:not(.halio-form) input[type="submit"].btn-second.btn-white,
form.comment-form:not(.halio-form) input[type="submit"].btn-black.btn-white,
form:not(.halio-form) input[type="submit"].btn-second.btn-white,
form:not(.halio-form) input[type="submit"].btn-black.btn-white {
  color: #fff;
}
.woocommerce #payment #place_order.btn-second.btn-white:hover,
.woocommerce-page #payment #place_order.btn-second.btn-white:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second.btn-white:hover,
.woocommerce div.product form.cart .button.btn-second.btn-white:hover,
.woocommerce #respond input#submit.btn-second.btn-white:hover,
.woocommerce a.button.btn-second.btn-white:hover,
.woocommerce button.button.btn-second.btn-white:hover,
.woocommerce input.button.btn-second.btn-white:hover,
.woocommerce button.button.btn-second.btn-white:hover,
.woocommerce a.button.btn-second.btn-white:hover,
.button.btn-second.btn-white:hover,
.fw-btn.btn-second.btn-white:hover,
input[type="submit"].btn-second.btn-white:hover,
.btn.btn-second.btn-white:hover,
.woocommerce #payment #place_order.btn-black.btn-white:hover,
.woocommerce-page #payment #place_order.btn-black.btn-white:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black.btn-white:hover,
.woocommerce div.product form.cart .button.btn-black.btn-white:hover,
.woocommerce #respond input#submit.btn-black.btn-white:hover,
.woocommerce a.button.btn-black.btn-white:hover,
.woocommerce button.button.btn-black.btn-white:hover,
.woocommerce input.button.btn-black.btn-white:hover,
.woocommerce button.button.btn-black.btn-white:hover,
.woocommerce a.button.btn-black.btn-white:hover,
.button.btn-black.btn-white:hover,
.fw-btn.btn-black.btn-white:hover,
input[type="submit"].btn-black.btn-white:hover,
.btn.btn-black.btn-white:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
form.form:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
form.form:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-black.btn-white:hover,
form:not(.halio-form) input[type="submit"].btn-second.btn-white:hover,
form:not(.halio-form) input[type="submit"].btn-black.btn-white:hover {
  color: #FFC61A;
}
.woocommerce #payment #place_order.btn-default-bordered,
.woocommerce-page #payment #place_order.btn-default-bordered,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-default-bordered,
.woocommerce div.product form.cart .button.btn-default-bordered,
.woocommerce #respond input#submit.btn-default-bordered,
.woocommerce a.button.btn-default-bordered,
.woocommerce button.button.btn-default-bordered,
.woocommerce input.button.btn-default-bordered,
.woocommerce button.button.btn-default-bordered,
.woocommerce a.button.btn-default-bordered,
.button.btn-default-bordered,
.fw-btn.btn-default-bordered,
input[type="submit"].btn-default-bordered,
.btn.btn-default-bordered,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-default-bordered,
.wp-searchform:not(.halio-form) input[type="submit"].btn-default-bordered,
form.post-password-form:not(.halio-form) input[type="submit"].btn-default-bordered,
form.search-form:not(.halio-form) input[type="submit"].btn-default-bordered,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-default-bordered,
form.form:not(.halio-form) input[type="submit"].btn-default-bordered,
form.comment-form:not(.halio-form) input[type="submit"].btn-default-bordered,
form:not(.halio-form) input[type="submit"].btn-default-bordered {
  color: #FFC61A;
  background: transparent;
  border: 2px solid #FFC61A;
}
.woocommerce #payment #place_order.btn-default-bordered.btn-xs,
.woocommerce-page #payment #place_order.btn-default-bordered.btn-xs,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-default-bordered.btn-xs,
.woocommerce div.product form.cart .button.btn-default-bordered.btn-xs,
.woocommerce #respond input#submit.btn-default-bordered.btn-xs,
.woocommerce a.button.btn-default-bordered.btn-xs,
.woocommerce button.button.btn-default-bordered.btn-xs,
.woocommerce input.button.btn-default-bordered.btn-xs,
.woocommerce button.button.btn-default-bordered.btn-xs,
.woocommerce a.button.btn-default-bordered.btn-xs,
.button.btn-default-bordered.btn-xs,
.fw-btn.btn-default-bordered.btn-xs,
input[type="submit"].btn-default-bordered.btn-xs,
.btn.btn-default-bordered.btn-xs,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
.wp-searchform:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
form.post-password-form:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
form.search-form:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
form.form:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
form.comment-form:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs,
form:not(.halio-form) input[type="submit"].btn-default-bordered.btn-xs {
  border: 1px solid #FFC61A;
}
.woocommerce #payment #place_order.btn-default-bordered:hover,
.woocommerce-page #payment #place_order.btn-default-bordered:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-default-bordered:hover,
.woocommerce div.product form.cart .button.btn-default-bordered:hover,
.woocommerce #respond input#submit.btn-default-bordered:hover,
.woocommerce a.button.btn-default-bordered:hover,
.woocommerce button.button.btn-default-bordered:hover,
.woocommerce input.button.btn-default-bordered:hover,
.woocommerce button.button.btn-default-bordered:hover,
.woocommerce a.button.btn-default-bordered:hover,
.button.btn-default-bordered:hover,
.fw-btn.btn-default-bordered:hover,
input[type="submit"].btn-default-bordered:hover,
.btn.btn-default-bordered:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
form.form:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-default-bordered:hover,
form:not(.halio-form) input[type="submit"].btn-default-bordered:hover {
  background: #FFC61A;
  color: #fff;
}
.woocommerce #payment #place_order.btn-second-bordered,
.woocommerce-page #payment #place_order.btn-second-bordered,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second-bordered,
.woocommerce div.product form.cart .button.btn-second-bordered,
.woocommerce #respond input#submit.btn-second-bordered,
.woocommerce a.button.btn-second-bordered,
.woocommerce button.button.btn-second-bordered,
.woocommerce input.button.btn-second-bordered,
.woocommerce button.button.btn-second-bordered,
.woocommerce a.button.btn-second-bordered,
.button.btn-second-bordered,
.fw-btn.btn-second-bordered,
input[type="submit"].btn-second-bordered,
.btn.btn-second-bordered,
.woocommerce #payment #place_order.btn-black-bordered,
.woocommerce-page #payment #place_order.btn-black-bordered,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black-bordered,
.woocommerce div.product form.cart .button.btn-black-bordered,
.woocommerce #respond input#submit.btn-black-bordered,
.woocommerce a.button.btn-black-bordered,
.woocommerce button.button.btn-black-bordered,
.woocommerce input.button.btn-black-bordered,
.woocommerce button.button.btn-black-bordered,
.woocommerce a.button.btn-black-bordered,
.button.btn-black-bordered,
.fw-btn.btn-black-bordered,
input[type="submit"].btn-black-bordered,
.btn.btn-black-bordered,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second-bordered,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black-bordered,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second-bordered,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black-bordered,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second-bordered,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black-bordered,
form.search-form:not(.halio-form) input[type="submit"].btn-second-bordered,
form.search-form:not(.halio-form) input[type="submit"].btn-black-bordered,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second-bordered,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black-bordered,
form.form:not(.halio-form) input[type="submit"].btn-second-bordered,
form.form:not(.halio-form) input[type="submit"].btn-black-bordered,
form.comment-form:not(.halio-form) input[type="submit"].btn-second-bordered,
form.comment-form:not(.halio-form) input[type="submit"].btn-black-bordered,
form:not(.halio-form) input[type="submit"].btn-second-bordered,
form:not(.halio-form) input[type="submit"].btn-black-bordered {
  color: #1F1F1F;
  background: transparent;
  border: 2px solid #1F1F1F;
}
.woocommerce #payment #place_order.btn-second-bordered.btn-xs,
.woocommerce-page #payment #place_order.btn-second-bordered.btn-xs,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second-bordered.btn-xs,
.woocommerce div.product form.cart .button.btn-second-bordered.btn-xs,
.woocommerce #respond input#submit.btn-second-bordered.btn-xs,
.woocommerce a.button.btn-second-bordered.btn-xs,
.woocommerce button.button.btn-second-bordered.btn-xs,
.woocommerce input.button.btn-second-bordered.btn-xs,
.woocommerce button.button.btn-second-bordered.btn-xs,
.woocommerce a.button.btn-second-bordered.btn-xs,
.button.btn-second-bordered.btn-xs,
.fw-btn.btn-second-bordered.btn-xs,
input[type="submit"].btn-second-bordered.btn-xs,
.btn.btn-second-bordered.btn-xs,
.woocommerce #payment #place_order.btn-black-bordered.btn-xs,
.woocommerce-page #payment #place_order.btn-black-bordered.btn-xs,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black-bordered.btn-xs,
.woocommerce div.product form.cart .button.btn-black-bordered.btn-xs,
.woocommerce #respond input#submit.btn-black-bordered.btn-xs,
.woocommerce a.button.btn-black-bordered.btn-xs,
.woocommerce button.button.btn-black-bordered.btn-xs,
.woocommerce input.button.btn-black-bordered.btn-xs,
.woocommerce button.button.btn-black-bordered.btn-xs,
.woocommerce a.button.btn-black-bordered.btn-xs,
.button.btn-black-bordered.btn-xs,
.fw-btn.btn-black-bordered.btn-xs,
input[type="submit"].btn-black-bordered.btn-xs,
.btn.btn-black-bordered.btn-xs,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
form.search-form:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
form.search-form:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
form.form:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
form.form:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
form.comment-form:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
form.comment-form:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs,
form:not(.halio-form) input[type="submit"].btn-second-bordered.btn-xs,
form:not(.halio-form) input[type="submit"].btn-black-bordered.btn-xs {
  border: 1px solid #1F1F1F;
}
.woocommerce #payment #place_order.btn-second-bordered:hover,
.woocommerce-page #payment #place_order.btn-second-bordered:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-second-bordered:hover,
.woocommerce div.product form.cart .button.btn-second-bordered:hover,
.woocommerce #respond input#submit.btn-second-bordered:hover,
.woocommerce a.button.btn-second-bordered:hover,
.woocommerce button.button.btn-second-bordered:hover,
.woocommerce input.button.btn-second-bordered:hover,
.woocommerce button.button.btn-second-bordered:hover,
.woocommerce a.button.btn-second-bordered:hover,
.button.btn-second-bordered:hover,
.fw-btn.btn-second-bordered:hover,
input[type="submit"].btn-second-bordered:hover,
.btn.btn-second-bordered:hover,
.woocommerce #payment #place_order.btn-black-bordered:hover,
.woocommerce-page #payment #place_order.btn-black-bordered:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-black-bordered:hover,
.woocommerce div.product form.cart .button.btn-black-bordered:hover,
.woocommerce #respond input#submit.btn-black-bordered:hover,
.woocommerce a.button.btn-black-bordered:hover,
.woocommerce button.button.btn-black-bordered:hover,
.woocommerce input.button.btn-black-bordered:hover,
.woocommerce button.button.btn-black-bordered:hover,
.woocommerce a.button.btn-black-bordered:hover,
.button.btn-black-bordered:hover,
.fw-btn.btn-black-bordered:hover,
input[type="submit"].btn-black-bordered:hover,
.btn.btn-black-bordered:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
form.form:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
form.form:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-black-bordered:hover,
form:not(.halio-form) input[type="submit"].btn-second-bordered:hover,
form:not(.halio-form) input[type="submit"].btn-black-bordered:hover {
  background: #1F1F1F;
  color: #fff;
}
.woocommerce #payment #place_order.btn-add,
.woocommerce-page #payment #place_order.btn-add,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-add,
.woocommerce div.product form.cart .button.btn-add,
.woocommerce #respond input#submit.btn-add,
.woocommerce a.button.btn-add,
.woocommerce button.button.btn-add,
.woocommerce input.button.btn-add,
.woocommerce button.button.btn-add,
.woocommerce a.button.btn-add,
.button.btn-add,
.fw-btn.btn-add,
input[type="submit"].btn-add,
.btn.btn-add,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-add,
.wp-searchform:not(.halio-form) input[type="submit"].btn-add,
form.post-password-form:not(.halio-form) input[type="submit"].btn-add,
form.search-form:not(.halio-form) input[type="submit"].btn-add,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-add,
form.form:not(.halio-form) input[type="submit"].btn-add,
form.comment-form:not(.halio-form) input[type="submit"].btn-add,
form:not(.halio-form) input[type="submit"].btn-add {
  color: #fff;
  background: #9F340A;
  border: 2px solid #9F340A;
}
.woocommerce #payment #place_order.btn-add.btn-xs,
.woocommerce-page #payment #place_order.btn-add.btn-xs,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-add.btn-xs,
.woocommerce div.product form.cart .button.btn-add.btn-xs,
.woocommerce #respond input#submit.btn-add.btn-xs,
.woocommerce a.button.btn-add.btn-xs,
.woocommerce button.button.btn-add.btn-xs,
.woocommerce input.button.btn-add.btn-xs,
.woocommerce button.button.btn-add.btn-xs,
.woocommerce a.button.btn-add.btn-xs,
.button.btn-add.btn-xs,
.fw-btn.btn-add.btn-xs,
input[type="submit"].btn-add.btn-xs,
.btn.btn-add.btn-xs,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-add.btn-xs,
.wp-searchform:not(.halio-form) input[type="submit"].btn-add.btn-xs,
form.post-password-form:not(.halio-form) input[type="submit"].btn-add.btn-xs,
form.search-form:not(.halio-form) input[type="submit"].btn-add.btn-xs,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-add.btn-xs,
form.form:not(.halio-form) input[type="submit"].btn-add.btn-xs,
form.comment-form:not(.halio-form) input[type="submit"].btn-add.btn-xs,
form:not(.halio-form) input[type="submit"].btn-add.btn-xs {
  border: 1px solid #9F340A;
}
.woocommerce #payment #place_order.btn-add:hover,
.woocommerce-page #payment #place_order.btn-add:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-add:hover,
.woocommerce div.product form.cart .button.btn-add:hover,
.woocommerce #respond input#submit.btn-add:hover,
.woocommerce a.button.btn-add:hover,
.woocommerce button.button.btn-add:hover,
.woocommerce input.button.btn-add:hover,
.woocommerce button.button.btn-add:hover,
.woocommerce a.button.btn-add:hover,
.button.btn-add:hover,
.fw-btn.btn-add:hover,
input[type="submit"].btn-add:hover,
.btn.btn-add:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-add:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-add:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-add:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-add:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-add:hover,
form.form:not(.halio-form) input[type="submit"].btn-add:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-add:hover,
form:not(.halio-form) input[type="submit"].btn-add:hover {
  background: #1F1F1F;
  color: #fff;
  border-color: #1F1F1F;
}
.woocommerce #payment #place_order.btn-add-bordered,
.woocommerce-page #payment #place_order.btn-add-bordered,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-add-bordered,
.woocommerce div.product form.cart .button.btn-add-bordered,
.woocommerce #respond input#submit.btn-add-bordered,
.woocommerce a.button.btn-add-bordered,
.woocommerce button.button.btn-add-bordered,
.woocommerce input.button.btn-add-bordered,
.woocommerce button.button.btn-add-bordered,
.woocommerce a.button.btn-add-bordered,
.button.btn-add-bordered,
.fw-btn.btn-add-bordered,
input[type="submit"].btn-add-bordered,
.btn.btn-add-bordered,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-add-bordered,
.wp-searchform:not(.halio-form) input[type="submit"].btn-add-bordered,
form.post-password-form:not(.halio-form) input[type="submit"].btn-add-bordered,
form.search-form:not(.halio-form) input[type="submit"].btn-add-bordered,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-add-bordered,
form.form:not(.halio-form) input[type="submit"].btn-add-bordered,
form.comment-form:not(.halio-form) input[type="submit"].btn-add-bordered,
form:not(.halio-form) input[type="submit"].btn-add-bordered {
  color: #9F340A;
  background: transparent;
  border: 2px solid #9F340A;
}
.woocommerce #payment #place_order.btn-add-bordered.btn-xs,
.woocommerce-page #payment #place_order.btn-add-bordered.btn-xs,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-add-bordered.btn-xs,
.woocommerce div.product form.cart .button.btn-add-bordered.btn-xs,
.woocommerce #respond input#submit.btn-add-bordered.btn-xs,
.woocommerce a.button.btn-add-bordered.btn-xs,
.woocommerce button.button.btn-add-bordered.btn-xs,
.woocommerce input.button.btn-add-bordered.btn-xs,
.woocommerce button.button.btn-add-bordered.btn-xs,
.woocommerce a.button.btn-add-bordered.btn-xs,
.button.btn-add-bordered.btn-xs,
.fw-btn.btn-add-bordered.btn-xs,
input[type="submit"].btn-add-bordered.btn-xs,
.btn.btn-add-bordered.btn-xs,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
.wp-searchform:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
form.post-password-form:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
form.search-form:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
form.form:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
form.comment-form:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs,
form:not(.halio-form) input[type="submit"].btn-add-bordered.btn-xs {
  border: 1px solid #9F340A;
}
.woocommerce #payment #place_order.btn-add-bordered:hover,
.woocommerce-page #payment #place_order.btn-add-bordered:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.btn-add-bordered:hover,
.woocommerce div.product form.cart .button.btn-add-bordered:hover,
.woocommerce #respond input#submit.btn-add-bordered:hover,
.woocommerce a.button.btn-add-bordered:hover,
.woocommerce button.button.btn-add-bordered:hover,
.woocommerce input.button.btn-add-bordered:hover,
.woocommerce button.button.btn-add-bordered:hover,
.woocommerce a.button.btn-add-bordered:hover,
.button.btn-add-bordered:hover,
.fw-btn.btn-add-bordered:hover,
input[type="submit"].btn-add-bordered:hover,
.btn.btn-add-bordered:hover,
.woocommerce-product-search:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
.wp-searchform:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
form.post-password-form:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
form.search-form:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
form.wpcf7-form:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
form.form:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
form.comment-form:not(.halio-form) input[type="submit"].btn-add-bordered:hover,
form:not(.halio-form) input[type="submit"].btn-add-bordered:hover {
  background: #9F340A;
  color: #fff;
}
.woocommerce #payment #place_order.align-right,
.woocommerce-page #payment #place_order.align-right,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.align-right,
.woocommerce div.product form.cart .button.align-right,
.woocommerce #respond input#submit.align-right,
.woocommerce a.button.align-right,
.woocommerce button.button.align-right,
.woocommerce input.button.align-right,
.woocommerce button.button.align-right,
.woocommerce a.button.align-right,
.button.align-right,
.fw-btn.align-right,
input[type="submit"].align-right,
.btn.align-right,
.woocommerce-product-search:not(.halio-form) input[type="submit"].align-right,
.wp-searchform:not(.halio-form) input[type="submit"].align-right,
form.post-password-form:not(.halio-form) input[type="submit"].align-right,
form.search-form:not(.halio-form) input[type="submit"].align-right,
form.wpcf7-form:not(.halio-form) input[type="submit"].align-right,
form.form:not(.halio-form) input[type="submit"].align-right,
form.comment-form:not(.halio-form) input[type="submit"].align-right,
form:not(.halio-form) input[type="submit"].align-right {
  float: right;
}
.woocommerce #payment #place_order.align-center,
.woocommerce-page #payment #place_order.align-center,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.align-center,
.woocommerce div.product form.cart .button.align-center,
.woocommerce #respond input#submit.align-center,
.woocommerce a.button.align-center,
.woocommerce button.button.align-center,
.woocommerce input.button.align-center,
.woocommerce button.button.align-center,
.woocommerce a.button.align-center,
.button.align-center,
.fw-btn.align-center,
input[type="submit"].align-center,
.btn.align-center,
.woocommerce-product-search:not(.halio-form) input[type="submit"].align-center,
.wp-searchform:not(.halio-form) input[type="submit"].align-center,
form.post-password-form:not(.halio-form) input[type="submit"].align-center,
form.search-form:not(.halio-form) input[type="submit"].align-center,
form.wpcf7-form:not(.halio-form) input[type="submit"].align-center,
form.form:not(.halio-form) input[type="submit"].align-center,
form.comment-form:not(.halio-form) input[type="submit"].align-center,
form:not(.halio-form) input[type="submit"].align-center {
  margin: 0 auto;
}
.wpcf7-radio,
.wpcf7-checkbox {
  overflow: hidden;
  display: block;
  position: relative;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
  margin-bottom: 8px;
}
.wpcf7-radio input,
.wpcf7-checkbox input {
  position: absolute;
  left: -50px;
}
.wpcf7-radio label,
.wpcf7-checkbox label {
  font-weight: normal;
}
.wpcf7-radio input + span,
.wpcf7-checkbox input + span {
  vertical-align: bottom;
  display: inline-block;
  cursor: pointer;
}
.wpcf7-radio input + span:before,
.wpcf7-checkbox input + span:before {
  border: 1px solid #CCCCCC;
  background-color: #fff;
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 2px;
  margin-right: 10px;
  padding: 0px 0 0 1px;
  vertical-align: middle;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: " ";
  display: inline-block;
}
.wpcf7-radio input:checked + span:before,
.wpcf7-checkbox input:checked + span:before {
  content: "\f00c";
}
.wpcf7-radio.wpcf7-radio input + span:before,
.wpcf7-checkbox.wpcf7-radio input + span:before {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  width: 21px;
  height: 20px;
}
.wpcf7-radio.wpcf7-radio input:checked + span:before,
.wpcf7-checkbox.wpcf7-radio input:checked + span:before {
  content: "•";
  font-size: 42px;
  line-height: 16px;
}
label.radio,
label.checkbox {
  display: block;
  position: relative;
  height: 27px;
  line-height: 17px;
  margin: 0 0 8px 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}
label.radio:hover,
label.checkbox:hover {
  opacity: 0.8;
}
label.radio > span,
label.checkbox > span {
  padding: 5px 0 0 40px;
  display: inline-block;
  color: #CCCCCC;
  font-size: 10pt;
}
label.radio > span:before,
label.checkbox > span:before {
  width: 24px;
  height: 24px;
  bottom: 0px;
  border: 1px solid #EEE9ED;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  background: #fff;
  left: 0;
  display: block;
  content: "";
  position: absolute;
}
label.radio.checkbox input,
label.checkbox.checkbox input {
  top: 3px;
  left: 4px;
}
label.radio.checkbox input:checked + span:before,
label.checkbox.checkbox input:checked + span:before {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAIAAADZrBkAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjEzNDYxNkQ3N0M5RjExRTdBQ0JGRjdCMkREMTNFNkRBIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjEzNDYxNkQ4N0M5RjExRTdBQ0JGRjdCMkREMTNFNkRBIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MTM0NjE2RDU3QzlGMTFFN0FDQkZGN0IyREQxM0U2REEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MTM0NjE2RDY3QzlGMTFFN0FDQkZGN0IyREQxM0U2REEiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4I513VAAAALUlEQVR42mK8evUqA+mABYi1tLRI0nPt2jUmBrLAqLZRbSNbGwsk/5CqDSDAAN+KCCm2GjBVAAAAAElFTkSuQmCC") no-repeat 50% 50%;
}
label.radio.checkbox input:checked + span:before,
label.checkbox.checkbox input:checked + span:before {
  border: 1px solid #CCCCCC;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAIAAADZrBkAAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVFNENEODc5N0M5RTExRTdBMDg2RjZGRTNCREQyM0NGIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVFNENEODdBN0M5RTExRTdBMDg2RjZGRTNCREQyM0NGIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUU0Q0Q4Nzc3QzlFMTFFN0EwODZGNkZFM0JERDIzQ0YiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUU0Q0Q4Nzg3QzlFMTFFN0EwODZGNkZFM0JERDIzQ0YiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz66Prs0AAAAsElEQVR42rzTuw3DIBQFUCdyRc0SsAi9h2AdempqahgEWIKaNrkREk7wJyFSciWjJ5kjeNhcQgjTeGY8nPMhE2O8Tl/llyzn7L3ve3trlFIYUQshPlrt2Vhra9EzvEgp7RpkWRZKac+01mgAY5Vb03a49lZKqbNRQGKSc+7IrKsRQqSUGKs0xpyYl00yxpps2TX9kXTyyOx8gCpxYifmEdyA22BA/vsrz/X+jLK7AAMAW8GbphLkpbkAAAAASUVORK5CYII=") no-repeat center center;
}
label.radio.no-label,
label.checkbox.no-label {
  display: inline-block;
  width: 22px;
  margin: 0 4px 0 0;
}
label.radio.radio > span,
label.checkbox.radio > span {
  padding: 5px 0 0 24px;
}
label.radio.radio > span:before,
label.checkbox.radio > span:before {
  border: 1px solid #EFEAEE;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 50% !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 50% !important;
  -moz-background-clip: padding !important;
  border-radius: 50% !important;
  background-clip: padding-box !important;
}
label.radio.radio input:checked + span:before,
label.checkbox.radio input:checked + span:before {
  background: #fff url("../images//__icon-radio.png") no-repeat 50% 50%;
}
.bg-color-black .btn-white-filled:hover {
  background: #9F340A;
  color: #fff;
}
.btn-wrap.align-center {
  margin: 0 auto;
  text-align: center;
}
.btn-wrap .btn,
.btn-wrap .woocommerce-product-search:not(.halio-form) input[type="submit"],
.btn-wrap .wp-searchform:not(.halio-form) input[type="submit"],
.btn-wrap form.post-password-form:not(.halio-form) input[type="submit"],
.btn-wrap form.search-form:not(.halio-form) input[type="submit"],
.btn-wrap form.wpcf7-form:not(.halio-form) input[type="submit"],
.btn-wrap form.form:not(.halio-form) input[type="submit"],
.btn-wrap form.comment-form:not(.halio-form) input[type="submit"],
.btn-wrap form:not(.halio-form) input[type="submit"] {
  margin-bottom: 25px;
}
.wpcf7-submit {
  margin: 0 auto;
}
.btn + .btn,
.woocommerce-product-search:not(.halio-form) input[type="submit"] + .woocommerce-product-search:not(.halio-form) input[type="submit"],
.wp-searchform:not(.halio-form) input[type="submit"] + .wp-searchform:not(.halio-form) input[type="submit"],
form.post-password-form:not(.halio-form) input[type="submit"] + form.post-password-form:not(.halio-form) input[type="submit"],
form.search-form:not(.halio-form) input[type="submit"] + form.search-form:not(.halio-form) input[type="submit"],
form.wpcf7-form:not(.halio-form) input[type="submit"] + form.wpcf7-form:not(.halio-form) input[type="submit"],
form.form:not(.halio-form) input[type="submit"] + form.form:not(.halio-form) input[type="submit"],
form.comment-form:not(.halio-form) input[type="submit"] + form.comment-form:not(.halio-form) input[type="submit"],
form:not(.halio-form) input[type="submit"] + form:not(.halio-form) input[type="submit"] {
  margin-left: 10px;
}
label.css-radio {
  margin: 0 0 16px 0px !important;
  display: block;
  position: relative;
  min-height: 22px;
  line-height: 17px;
  padding: 4px 0;
  margin: 0 0 10px 0;
  overflow: hidden;
  cursor: pointer;
}
label.css-radio:hover {
  opacity: 0.8;
}
label.css-radio input {
  position: absolute;
  left: -20px;
}
label.css-radio > span {
  font-size: 10pt;
  font-weight: bold;
  padding: 6px 0 0 30px;
  display: inline-block;
}
label.css-radio > span:before {
  width: 22px;
  height: 22px;
  bottom: 0px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: #fff;
  left: 2px;
  display: block;
  content: "";
  position: absolute;
  background: #f5f5f5;
}
label.css-radio input:checked + span:after {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background: #1F1F1F;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  top: 8px;
  left: 7px;
  position: absolute;
  z-index: 100;
}
label.css-radio.no-label {
  display: inline-block;
  width: 22px;
  margin: 0 4px 0 0;
}
.homepage-block-2 form,
.form-with-labels,
.forms {
  margin: 0 -3px;
}
.homepage-block-2 form .col-md-5ths,
.form-with-labels .col-md-5ths,
.forms .col-md-5ths,
.homepage-block-2 form > div,
.form-with-labels > div,
.forms > div {
  padding-left: 3px;
  padding-right: 3px;
  position: relative;
}
.wpcf7-form-control-wrap.to,
.wpcf7-form-control-wrap.phone,
.wpcf7-form-control-wrap.date,
.wpcf7-form-control-wrap.cartype,
.wpcf7-form-control-wrap.address {
  position: relative;
  display: block;
}
.wpcf7-form-control-wrap.to:after,
.wpcf7-form-control-wrap.phone:after,
.wpcf7-form-control-wrap.date:after,
.wpcf7-form-control-wrap.cartype:after,
.wpcf7-form-control-wrap.address:after {
  content: "\f041";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #CCCCCC;
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
}
.wpcf7-form-control-wrap.to.date:after,
.wpcf7-form-control-wrap.phone.date:after,
.wpcf7-form-control-wrap.date.date:after,
.wpcf7-form-control-wrap.cartype.date:after,
.wpcf7-form-control-wrap.address.date:after {
  content: "\f073";
  font-size: 18px;
  top: 16px;
}
.wpcf7-form-control-wrap.to.cartype:after,
.wpcf7-form-control-wrap.phone.cartype:after,
.wpcf7-form-control-wrap.date.cartype:after,
.wpcf7-form-control-wrap.cartype.cartype:after,
.wpcf7-form-control-wrap.address.cartype:after {
  content: "\f1b9";
  font-size: 18px;
  top: 16px;
}
.wpcf7-form-control-wrap.to.phone:after,
.wpcf7-form-control-wrap.phone.phone:after,
.wpcf7-form-control-wrap.date.phone:after,
.wpcf7-form-control-wrap.cartype.phone:after,
.wpcf7-form-control-wrap.address.phone:after {
  content: "\f095";
  font-size: 18px;
  top: 16px;
}
.menu-types {
  text-align: center;
  padding-bottom: 18px;
}
.menu-types a {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  display: inline-block;
  vertical-align: middle;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #1F1F1F;
  width: 115px;
  height: 72px;
  background-repeat: no-repeat;
  background-position: 50% 36%;
  text-align: center;
  padding: 42px 0 10px 0;
  margin: 0 20px;
  transition: background .8s ease;
}
.menu-types a.red {
  color: #9F340A;
}
.menu-types a.type-1 {
  background-image: url("../images/_icon-car-1.png");
}
.menu-types a.type-2 {
  background-image: url("../images/_icon-car-2.png");
}
.menu-types a.type-3 {
  background-image: url("../images/_icon-car-3.png");
}
.menu-types a.type-4 {
  background-image: url("../images/_icon-car-4.png");
}
.menu-types a:hover,
.menu-types a.active {
  background-color: rgba(255, 255, 255, 0.25);
}
@media (max-width: 479px) {
  .menu-types a {
    margin: 0 0px;
  }
}
.taxi-form-full {
  padding: 150px 0 0px 0;
  background: #FFC61A;
}
.taxi-form-full form {
  background: transparent !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 45px !important;
}
.taxi-form-full input[type="submit"] {
  margin-top: 5px;
  color: #fff !important;
  background: #9F340A !important;
  position: relative;
  -webkit-box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
  -moz-box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
  box-shadow: 0 6px 10px rgba(159, 52, 10, 0.3);
}
.taxi-form-full input[type="submit"]:hover {
  background: #1F1F1F !important;
  color: #FFC61A !important;
}
.taxi-form-full .row {
  margin-left: -3px;
  margin-right: -3px;
}
.taxi-form-full .row > div {
  padding-left: 3px;
  padding-right: 3px;
}
@media (max-width: 991px) {
  .taxi-form-full {
    padding: 10px 0 20px 0;
  }
}
.form-taxi-short {
  margin-bottom: 90px;
}
.form-taxi-short .menu-types {
  margin: 0 0 0 -12px;
}
.form-taxi-short .menu-types a {
  margin: 0 0 0 12px;
}
.form-taxi-short .menu-types a:hover,
.form-taxi-short .menu-types a.active {
  background-color: #fff;
}
.form-taxi-short .form-label {
  text-align: center;
  margin: 40px 0 15px;
}
.form-taxi-short form {
  background: #FFC61A !important;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
  max-width: 570px;
  margin: 0 auto !important;
  padding: 45px 35px 10px !important;
}
.form-taxi-short form:before,
.form-taxi-short form:after {
  content: " ";
  display: table;
}
.form-taxi-short form:after {
  clear: both;
}
.form-taxi-short form .row {
  margin-left: -3px;
  margin-right: -3px;
}
.form-taxi-short form .row > div {
  padding-left: 3px;
  padding-right: 3px;
}
.form-taxi-short form input {
  margin-bottom: 10px;
}
.form-taxi-short .wpcf7-submit {
  margin-top: 20px;
  background: #1F1F1F !important;
  color: #fff !important;
}
.form-taxi-short .wpcf7-submit:hover {
  color: #FFC61A !important;
}
/*
	20. Pagination
*/
.paging-navigation,
.page-numbers {
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
}
.paging-navigation hr,
.page-numbers hr {
  margin-bottom: 20px;
}
.paging-navigation .pagination,
.page-numbers .pagination {
  margin-top: 15px;
  margin-bottom: 60px;
}
.paging-navigation .pagination .page-numbers:not(.next):not(.prev),
.page-numbers .pagination .page-numbers:not(.next):not(.prev) {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 0px;
  color: #1F1F1F !important;
  font-size: 14px;
}
.paging-navigation .pagination .page-numbers:not(.next):not(.prev):not(.current):hover,
.page-numbers .pagination .page-numbers:not(.next):not(.prev):not(.current):hover {
  color: #FFC61A !important;
}
.paging-navigation .pagination .page-numbers:not(.next):not(.prev).current,
.page-numbers .pagination .page-numbers:not(.next):not(.prev).current {
  color: #FFC61A !important;
  cursor: default;
}
.paging-navigation .prev,
.page-numbers .prev,
.paging-navigation .next,
.page-numbers .next {
  margin: 0 30px;
  color: #1F1F1F;
  font-size: 14px;
}
@media (max-width: 768px) {
  .paging-navigation .prev,
  .page-numbers .prev,
  .paging-navigation .next,
  .page-numbers .next {
    display: none;
  }
}
.paging-navigation .prev.prev:before,
.page-numbers .prev.prev:before,
.paging-navigation .next.prev:before,
.page-numbers .next.prev:before,
.paging-navigation .prev.next:after,
.page-numbers .prev.next:after,
.paging-navigation .next.next:after,
.page-numbers .next.next:after {
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  background: #FFC61A;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin: 0 12px;
  width: 30px;
  height: 30px;
  display: inline-block;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.paging-navigation .prev.prev:before,
.page-numbers .prev.prev:before,
.paging-navigation .next.prev:before,
.page-numbers .next.prev:before {
  content: "\f0d9";
}
.paging-navigation .prev.next:after,
.page-numbers .prev.next:after,
.paging-navigation .next.next:after,
.page-numbers .next.next:after {
  content: "\f0da";
}
.paging-navigation .prev:not(.disabled):hover,
.page-numbers .prev:not(.disabled):hover,
.paging-navigation .next:not(.disabled):hover,
.page-numbers .next:not(.disabled):hover {
  color: #FFC61A;
}
.paging-navigation .prev.disabled,
.page-numbers .prev.disabled,
.paging-navigation .next.disabled,
.page-numbers .next.disabled {
  color: #E6E6E6 !important;
  cursor: default;
}
.paging-navigation .prev.disabled span,
.page-numbers .prev.disabled span,
.paging-navigation .next.disabled span,
.page-numbers .next.disabled span {
  background: #E6E6E6 !important;
}
.paging-navigation .prev.disabled:before,
.page-numbers .prev.disabled:before,
.paging-navigation .next.disabled:before,
.page-numbers .next.disabled:before,
.paging-navigation .prev.disabled:after,
.page-numbers .prev.disabled:after,
.paging-navigation .next.disabled:after,
.page-numbers .next.disabled:after {
  background: #E6E6E6 !important;
}
/*
	21. Wordpress styles
*/
.tagcloud,
.tags {
  margin: 26px 0 0 -8px;
  padding: 0 0 0px;
}
.tagcloud a,
.tags a {
  display: inline-block;
  margin: 8px 0 0 8px;
  padding: 0px 12px;
  font-size: 11pt !important;
  font-weight: 500;
  border: 2px solid #FFC61A;
  background: #FFC61A;
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
  color: #1F1F1F;
  transition: all .3s ease;
}
.tagcloud a:before,
.tags a:before {
  content: "#";
}
.tagcloud a:hover,
.tags a:hover {
  border: 2px solid #1F1F1F;
  color: #1F1F1F;
}
.sticky {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEY1ODZBODExOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEY1ODZBODIxOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowRjU4NkE3RjE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowRjU4NkE4MDE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpfBKyQAAAAuSURBVHjaYvz//38DAx7Az8+PT5qBiYFCMGrAYDCAhVA8f/z4cTQQh78BAAEGANaYBsy1QBT+AAAAAElFTkSuQmCC") 0% 100% repeat-x;
  padding-bottom: 20px;
  margin-bottom: 80px !important;
}
.margin-default {
  padding: 70px 0 60px;
}
.text-page article + .comments-area {
  margin-top: 0;
}
.post-views .post-views-icon:before,
.post-views .post-views-icon,
.post-views .post-views-label {
  display: none !important;
}
.description .post-views {
  display: none !important;
}
.comments-area {
  margin-top: 50px;
  margin-bottom: 70px;
}
.comments-area .comments-title {
  color: #1F1F1F;
}
.comments-area .comment-list {
  list-style: none;
}
.comments-area .comment-list li .comment-single {
  background: #F5F5F5;
  -webkit-border-radius: 16px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 16px;
  -moz-background-clip: padding;
  border-radius: 16px;
  background-clip: padding-box;
  padding: 22px 26px;
  margin-bottom: 26px;
  position: relative;
}
@media (max-width: 768px) {
  .comments-area .comment-list li .comment-single {
    padding: 18px 8px 8px;
  }
}
.comments-area .comment-list .children {
  list-style: none;
  padding-left: 100px;
}
@media (max-width: 768px) {
  .comments-area .comment-list .children {
    padding-left: 15px;
  }
}
.comments-area .comment-info {
  font-size: 15px;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #868686;
}
@media (max-width: 768px) {
  .comments-area .comment-info {
    font-size: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border: 0 none;
  }
}
.comments-area .comment-info .comment-author {
  color: #FFC61A;
  margin-right: 10px;
}
.comments-area .comment-info .comment-date {
  margin-right: 10px;
  padding-left: 10px;
}
.comments-area .comment-info .comment-time {
  padding-left: 10px;
}
@media (max-width: 768px) {
  .comments-area .comment-info .comment-date-time {
    display: block;
    font-size: 12px;
  }
  .comments-area .comment-info .comment-date-time .comment-date {
    padding-left: 0;
    margin-right: 0;
  }
  .comments-area .comment-info .comment-date-time .comment-time {
    padding-left: 2px;
  }
}
.comments-area .comments-ol {
  margin-left: -40px;
}
@media (max-width: 768px) {
  .comments-area .comments-ol {
    margin-left: -40px;
  }
}
.comments-area .comment-text p {
  font-size: 15px;
  line-height: 1.6em;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .comments-area .comment-text {
    border-top: 1px solid #868686;
    margin-left: -58px;
    margin-top: -8px;
    padding-top: 15px;
  }
  .comments-area .comment-text p {
    font-size: 15px;
    line-height: 1.5em;
  }
}
.comments-area .comment-reply-link {
  color: #1F1F1F;
  font-weight: 700;
}
.comments-area .comment-reply-link:hover {
  color: #FFC61A;
}
.comments-area .comment-reply-link:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFC61A;
  font-size: 11pt;
  vertical-align: middle;
  margin-right: 10px;
  content: "\f149";
}
@media (max-width: 768px) {
  .comments-area .comment-reply {
    margin-left: -58px;
  }
  .comments-area .comment-reply .comment-reply-link {
    font-size: 12px;
  }
}
.comments-area .comment-author-avatar {
  position: absolute;
  left: 30px;
  top: 30px;
}
.comments-area .comment-author-avatar img {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
@media (max-width: 768px) {
  .comments-area .comment-author-avatar {
    left: 20px;
    top: 20px;
  }
}
.comments-area .comment-content {
  padding: 0 0 0 72px;
}
@media (max-width: 768px) {
  .comments-area .comment-content {
    padding-right: 10px;
  }
}
.trackback {
  padding: 10px 0;
}
.trackback .url {
  padding-right: 10px;
}
.comments-form-wrap h3 {
  color: #1F1F1F;
}
.comments-form-wrap h3:not(.comment-reply-title) {
  margin: 0px 0 20px 0;
}
.comments-form-wrap h3.comment-reply-title {
  color: #1F1F1F;
  margin: 0;
}
h3.comment-reply-title {
  color: #1F1F1F !important;
}
.comment-form {
  padding-bottom: 10px !important;
}
.comment-form .comments-field label {
  display: none;
}
.comment-form input[type="text"],
.comment-form textarea {
  width: 100%;
}
.comment-form .submit {
  margin: 20px 0 0 0;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
  display: block;
  top: 5px;
  left: 5px;
  width: auto;
  height: auto;
  padding: 1em 1.5em;
  font-size: 0.85em;
  line-height: normal;
  color: #21759b;
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  text-decoration: none;
  z-index: 100000;
  /* Above WP toolbar */
}
.alignleft {
  display: inline-block;
  float: left;
  margin-right: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.alignright {
  display: inline-block;
  float: right;
  margin-left: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.aligncenter {
  clear: both;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}
img.alignleft,
img.alignnone,
img.alignright,
img.aligncenter {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
figure {
  margin: 1em 0px;
}
figure.alignleft img,
figure.alignnone img,
figure.alignright img,
figure.aligncenter img {
  -webkit-border-radius: 8px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 8px;
  -moz-background-clip: padding;
  border-radius: 8px;
  background-clip: padding-box;
}
.sticky {
  position: relative;
}
.gallery-caption {
  font-size: inherit;
}
.bypostauthor {
  font-size: inherit;
}
.wp-caption {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.wp-caption a[class*="magnific"],
.wp-caption a[class*="prettyPhoto"] {
  display: block;
}
.wp-caption a[class*="magnific"] img,
.wp-caption a[class*="prettyPhoto"] img {
  vertical-align: top;
}
.wp-caption .wp-caption-text,
.wp-caption .wp-caption-dd {
  padding: 0.5em 0 2em;
  font-size: 0.75em;
  line-height: 16px;
  text-align: center;
}
.gallery {
  margin: 0 -5px;
}
.gallery .gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery .gallery-item a {
  display: block;
}
.gallery .gallery-item a img {
  border: none !important;
  display: block;
  width: 100%;
}
.gallery .gallery-item .gallery-icon {
  margin: 0 5px;
}
.gallery .gallery-item .gallery-caption {
  line-height: 100%;
  margin: 0;
  padding: 6px 6px 0;
  font-size: 0.875em;
}
.gallery.gallery-columns-9 .gallery-item {
  width: 11.1111% !important;
}
.gallery.gallery-columns-8 .gallery-item {
  width: 12.5% !important;
}
.gallery.gallery-columns-7 .gallery-item {
  width: 14.2857% !important;
}
.gallery.gallery-columns-6 .gallery-item {
  width: 16.6666% !important;
}
.gallery.gallery-columns-5 .gallery-item {
  width: 20% !important;
}
.gallery.gallery-columns-4 .gallery-item {
  width: 25% !important;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.3333% !important;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50% !important;
}
.gallery.gallery-columns-1 .gallery-item {
  width: 100% !important;
}
.gallery.gallery-columns-9 .gallery-caption {
  font-size: 0.625em;
}
.gallery.gallery-columns-8 .gallery-caption {
  font-size: 0.6875em;
}
.gallery.gallery-columns-7 .gallery-caption {
  font-size: 0.75em;
}
.gallery.gallery-columns-6 .gallery-caption {
  font-size: 0.8125em;
}
.post-password-form label {
  display: inline-block;
  vertical-align: top;
}
.post-password-form input[type="submit"] {
  display: inline-block;
  margin-left: 10px;
}
.top_panel_middle .menu_main_wrap {
  margin-top: 2.7em;
  margin-bottom: 2.25em;
}
/*
	22. Typography
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Fira Sans Condensed', sans-serif;
}
h1 span:not(.fa),
h2 span:not(.fa),
h3 span:not(.fa),
h4 span:not(.fa),
h5 span:not(.fa),
h6 span:not(.fa),
h1.yellow,
h2.yellow,
h3.yellow,
h4.yellow,
h5.yellow,
h6.yellow {
  color: #FFC61A;
}
.header-rounded > * {
  background: #FFC61A;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  display: block;
  width: 40px;
  height: 40px;
  padding-left: 3px;
  line-height: 39px;
  color: #1F1F1F !important;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
h1,
.h1 {
  margin: 0 0 20px;
  font-size: 48px;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  h1,
  .h1 {
    font-size: 34px;
  }
}
h2 {
  margin: 60px 0 20px;
  font-size: 36px;
}
h3 {
  margin: 60px 0 20px;
  font-size: 30px;
}
h4 {
  margin: 60px 0 20px;
  font-size: 24px;
}
h5,
h6 {
  margin: 60px 0 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
h4 + h3,
h4 + h2 {
  /*	margin: -16px 0 0 0 !important;*/
}
.heading {
  position: relative;
}
.heading h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading h6 {
  z-index: 3;
  position: relative;
}
.heading h1 > a,
.heading h2 > a,
.heading h3 > a,
.heading h4 > a,
.heading h5 > a,
.heading h6 > a {
  color: #1F1F1F;
}
.heading.heading-large h2 {
  margin: 0 0 20px;
  font-size: 48px;
}
@media (max-width: 768px) {
  .heading.heading-large h2 {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .heading.heading-large h2 {
    font-size: 34px;
  }
}
.heading.heading-large h4 {
  color: #FFC61A;
  margin-bottom: 0;
}
.heading.heading-small h2 {
  font-size: 30px;
  margin: 5px 0 40px 0;
}
.heading.heading-small h4 {
  font-size: 24px;
  color: #FFC61A;
  margin-bottom: 0;
}
.heading.align-center {
  text-align: center;
}
.heading.align-center h1,
.heading.align-center h2,
.heading.align-center h3,
.heading.align-center h4,
.heading.align-center h5,
.heading.align-center h6 {
  text-align: center;
}
.heading.align-right {
  text-align: right;
}
.heading.align-right h1,
.heading.align-right h2,
.heading.align-right h3,
.heading.align-right h4,
.heading.align-right h5,
.heading.align-right h6 {
  text-align: right;
}
.heading.spanned {
  margin-top: 70px;
}
.heading.spanned > * {
  display: inline-block;
  vertical-align: middle;
}
.heading.spanned h4 {
  color: #FFC61A;
  margin: 0 0 25px;
}
.heading.spanned h2 {
  font-size: 48px;
  margin: 0 0 25px 25px;
}
.heading .header-text {
  margin: -5px auto 80px;
}
@media (min-width: 991px) {
  .heading .header-text {
    width: 60%;
  }
}
.heading .icon-bg {
  color: #CCCCCC;
  font-size: 180px;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  z-index: 1;
  zoom: 1;
  filter: alpha(opacity=5);
  -webkit-opacity: 0.05;
  -moz-opacity: 0.05;
  opacity: 0.05;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
h1.align-left,
h2.align-left,
h3.align-left,
h4.align-left,
h5.align-left,
h6.align-left {
  text-align: left !important;
}
h1.align-center,
h2.align-center,
h3.align-center,
h4.align-center,
h5.align-center,
h6.align-center {
  text-align: center !important;
}
h1.align-right,
h2.align-right,
h3.align-right,
h4.align-right,
h5.align-right,
h6.align-right {
  text-align: right !important;
}
.header {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.inner-page {
  overflow: hidden;
}
@media (max-width: 991px) {
  .inner-page {
    padding: 0px 0;
  }
}
.comment-text,
.text-page {
  /*
	.btn-lg {

		margin-bottom: 25px;
	}

	.btn-xs {

		margin-bottom: 15px;
	}
*/
}
.comment-text .slider-header,
.text-page .slider-header {
  font-size: 80px;
  font-weight: 900;
  display: block;
  font-family: 'Fira Sans Condensed', sans-serif;
  margin: 0;
  line-height: 1em;
}
@media (max-width: 991px) {
  .comment-text .slider-header,
  .text-page .slider-header {
    font-size: 60px;
  }
}
.comment-text h1,
.text-page h1 {
  font-size: 48px;
  line-height: 1em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.comment-text h1,
.text-page h1,
.comment-text h2,
.text-page h2,
.comment-text h3,
.text-page h3,
.comment-text h4,
.text-page h4,
.comment-text h5,
.text-page h5,
.comment-text h6,
.text-page h6 {
  /*		text-align: left;*/
  /*		color: @black;*/
}
.comment-text h1:first-child,
.text-page h1:first-child,
.comment-text h2:first-child,
.text-page h2:first-child,
.comment-text h3:first-child,
.text-page h3:first-child,
.comment-text h4:first-child,
.text-page h4:first-child,
.comment-text h5:first-child,
.text-page h5:first-child,
.comment-text h6:first-child,
.text-page h6:first-child {
  margin-top: 0;
}
.comment-text h2,
.text-page h2 {
  font-size: 36px;
  margin-top: 1.7em;
  margin-bottom: 0.4em;
}
.comment-text h3,
.text-page h3 {
  font-size: 30px;
  margin-top: 2em;
  margin-bottom: 0.7em;
}
.comment-text h4,
.text-page h4 {
  font-size: 24px;
  margin-top: 2em;
  margin-bottom: .7em;
}
.comment-text h5,
.text-page h5 {
  font-size: 18px;
  margin-top: 2em;
  margin-bottom: .6em;
}
.comment-text h6,
.text-page h6 {
  font-size: 16px;
  margin-top: 2em;
  margin-bottom: .9em;
  font-weight: 700;
}
.comment-text h1 + h2,
.text-page h1 + h2,
.comment-text h1 + h3,
.text-page h1 + h3,
.comment-text h1 + h4,
.text-page h1 + h4,
.comment-text h1 + h5,
.text-page h1 + h5,
.comment-text h1 + h6,
.text-page h1 + h6,
.comment-text h2 + h3,
.text-page h2 + h3,
.comment-text h2 + h4,
.text-page h2 + h4,
.comment-text h2 + h5,
.text-page h2 + h5,
.comment-text h2 + h6,
.text-page h2 + h6,
.comment-text h3 + h4,
.text-page h3 + h4,
.comment-text h3 + h5,
.text-page h3 + h5,
.comment-text h3 + h6,
.text-page h3 + h6,
.comment-text h4 + h5,
.text-page h4 + h5,
.comment-text h4 + h6,
.text-page h4 + h6,
.comment-text h5 + h6,
.text-page h5 + h6 {
  margin-top: 0;
}
.comment-text .small,
.text-page .small {
  font-size: 15px;
  line-height: 2em;
}
.comment-text .small p,
.text-page .small p {
  margin-bottom: 20px;
}
.comment-text .date,
.text-page .date {
  color: #6f6078;
  font-size: 13pt;
  display: block;
  margin: -14px 0 30px 0;
}
.comment-text blockquote,
.text-page blockquote {
  font-size: 13pt;
  font-weight: 900;
  border-left: 4px solid #FFC61A;
  margin: 30px 0 30px 20px;
  padding: 15px 0 15px 25px;
}
.comment-text hr,
.text-page hr {
  margin: 30px 0 26px 0;
}
.comment-text hr + h1,
.text-page hr + h1,
.comment-text hr + h2,
.text-page hr + h2,
.comment-text hr + h3,
.text-page hr + h3 {
  margin-top: 30px;
}
.comment-text dl dd,
.text-page dl dd {
  margin: 0 0 10px 20px;
}
.comment-text ol:not(.halio-input-group),
.text-page ol:not(.halio-input-group),
.comment-text ul:not(.halio-input-group),
.text-page ul:not(.halio-input-group) {
  font-size: 16px;
}
.comment-text ol:not(.halio-input-group) li,
.text-page ol:not(.halio-input-group) li,
.comment-text ul:not(.halio-input-group) li,
.text-page ul:not(.halio-input-group) li {
  margin-bottom: 6px;
}
.comment-text .tags-short,
.text-page .tags-short {
  border-top: 1px solid #F5F5F5;
  margin-top: 16px;
  padding-top: 16px;
}
.comment-text img.left,
.text-page img.left {
  margin: 9px 30px 15px 0;
  float: left;
}
@media (max-width: 991px) {
  .comment-text img.size-full,
  .text-page img.size-full {
    max-width: 100% !important;
    height: auto !important;
  }
}
.comment-text table:not(.table-condensed),
.text-page table:not(.table-condensed) {
  width: 100%;
  border-collapse: collapse;
}
.comment-text table:not(.table-condensed) thead tr:first-child th:first-child,
.text-page table:not(.table-condensed) thead tr:first-child th:first-child {
  -webkit-border-top-left-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topleft: 4px;
  -moz-background-clip: padding;
  border-top-left-radius: 4px;
  background-clip: padding-box;
}
.comment-text table:not(.table-condensed) thead tr:first-child th:last-child,
.text-page table:not(.table-condensed) thead tr:first-child th:last-child {
  -webkit-border-top-right-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 4px;
  -moz-background-clip: padding;
  border-top-right-radius: 4px;
  background-clip: padding-box;
}
.comment-text table:not(.table-condensed) th,
.text-page table:not(.table-condensed) th,
.comment-text table:not(.table-condensed) td,
.text-page table:not(.table-condensed) td {
  padding: 20px 28px;
  font-size: 16px;
}
.comment-text table:not(.table-condensed) thead th,
.text-page table:not(.table-condensed) thead th {
  font-family: 'Fira Sans Condensed', sans-serif;
  text-transform: uppercase;
  background: #FFC61A;
  color: #1F1F1F;
  font-size: 24px;
  font-weight: 500;
}
.comment-text table:not(.table-condensed) thead th a,
.text-page table:not(.table-condensed) thead th a {
  color: #fff;
}
.comment-text table:not(.table-condensed) tbody th,
.text-page table:not(.table-condensed) tbody th {
  font-weight: bold;
  background: #F5F5F5;
  border: 1px solid #fff;
}
.comment-text table:not(.table-condensed) tbody td,
.text-page table:not(.table-condensed) tbody td {
  border: 1px solid #E6E6E6;
}
.comment-text table:not(.table-condensed) tbody tr:nth-child(odd) td,
.text-page table:not(.table-condensed) tbody tr:nth-child(odd) td {
  background: transparent;
}
.comment-text table:not(.table-condensed) th,
.text-page table:not(.table-condensed) th,
.comment-text table:not(.table-condensed) td,
.text-page table:not(.table-condensed) td {
  padding: 20px 32px;
  font-size: 16px;
}
.comment-text table:not(.table-condensed) td,
.text-page table:not(.table-condensed) td {
  background: #F5F5F5;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .comment-text table:not(.table-condensed) thead th,
  .text-page table:not(.table-condensed) thead th {
    font-size: 14px;
  }
  .comment-text table:not(.table-condensed) th,
  .text-page table:not(.table-condensed) th,
  .comment-text table:not(.table-condensed) td,
  .text-page table:not(.table-condensed) td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
@media (max-width: 479px) {
  .comment-text table:not(.table-condensed) th,
  .text-page table:not(.table-condensed) th,
  .comment-text table:not(.table-condensed) td,
  .text-page table:not(.table-condensed) td {
    font-size: 12px;
    padding: 5px 7px;
  }
}
.comment-text .social-big,
.text-page .social-big {
  margin-bottom: 30px;
  margin-left: 0px;
}
/*
ol {

	margin-top: 25px;
}
*/
ul.arrow,
ul.disc,
ul.check {
  list-style: none;
  /*	margin-top: 25px;*/
  margin-bottom: 30px;
  padding-left: 25px;
}
@media (min-width: 768px) {
  ul.arrow.two-col,
  ul.disc.two-col,
  ul.check.two-col {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
ul.arrow.strong li,
ul.disc.strong li,
ul.check.strong li {
  font-weight: 700;
  margin-bottom: 10px;
}
ul.arrow li,
ul.disc li,
ul.check li {
  color: #1F1F1F;
}
ul.arrow li:before,
ul.disc li:before,
ul.check li:before {
  content: "\f00c";
  display: block;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 100;
  color: #FFC61A;
  position: absolute;
  margin: 7px 0 0 -26px;
}
ul.arrow.arrow li:before,
ul.disc.arrow li:before,
ul.check.arrow li:before {
  content: "\f18e";
  display: block;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 100;
  color: #FFC61A;
  position: absolute;
  margin: 7px 0 0 -26px;
}
ul.arrow.disc li:before,
ul.disc.disc li:before,
ul.check.disc li:before {
  content: "•";
  color: #FFC61A;
  font-size: 30px;
  margin: -1px 0 0 -22px;
}
ol {
  list-style-type: none;
}
ol li {
  counter-increment: count-me;
}
ol li:before {
  content: counter(count-me) ". ";
  display: block;
  position: relative;
  max-width: 0px;
  max-height: 0px;
  left: -1.3em;
  top: .05em;
  color: #FFC61A;
  font-weight: bold;
}
hr.lg {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MEY1ODZBODExOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MEY1ODZBODIxOUFBMTFFNzgzN0M5ODA5QzVDNEY0MUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowRjU4NkE3RjE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowRjU4NkE4MDE5QUExMUU3ODM3Qzk4MDlDNUM0RjQxQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PpfBKyQAAAAuSURBVHjaYvz//38DAx7Az8+PT5qBiYFCMGrAYDCAhVA8f/z4cTQQh78BAAEGANaYBsy1QBT+AAAAAElFTkSuQmCC") 0% 0% repeat-x;
  height: 16px !important;
  margin: 0 0 0;
  display: block;
  width: 100%;
  border: none;
}
.inner-page {
  margin-top: 75px;
}
.inner-page .text-page:not(.text) {
  padding-bottom: 60px;
}
/*
	23. Common classes (hover/transition effect/etc)
*/
.screen-reader-text {
  position: absolute !important;
  margin: 0 !important;
  padding: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
}
.fw-row > .center {
  text-align: center;
}
.fw-row > .right {
  text-align: right;
}
a.anchor {
  display: block;
  position: relative;
  top: -180px;
  visibility: hidden;
}
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.parallax {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media (min-width: 991px) {
  .parallax {
    background-attachment: fixed;
  }
}
.center {
  text-align: center;
}
.full-width {
  max-width: 100%;
  height: auto;
}
.rounded {
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
.roboto {
  font-family: 'Roboto', sans-serif;
}
.firasans {
  font-family: 'Fira Sans Condensed', sans-serif;
}
.upper {
  text-transform: uppercase;
  font-size: 9pt;
}
.color-fade {
  transition: color 0.5s ease;
}
.border-fade {
  transition: border 0.5s ease;
}
.background-fade {
  transition: background .8s ease;
}
.all-fade {
  transition: all .3s ease;
}
.fade {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.opacity-fade {
  transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.opacity-hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility .2s linear 0.2s, opacity 0.2s linear, background 0.2s ease;
}
.opacity-hidden-hover {
  visibility: visible;
  opacity: 1;
  transition-delay: .2s;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.color-overlay:after {
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 10px;
  -moz-background-clip: padding;
  border-top-right-radius: 10px;
  background-clip: padding-box;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: #23182C;
  zoom: 1;
  filter: alpha(opacity=20);
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  opacity: 0.2;
}
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-5ths {
  width: 20%;
  float: left;
}
@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
.center-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 100000000;
  transition: all .3s ease;
}
.pace-done > #preloader {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  z-index: -100;
}
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 100000001;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  overflow: hidden;
}
.grid-loader {
  margin: 0 auto;
  height: 150px;
  width: 130px;
}
.grid-loader .pace-image {
  display: none;
}
.grid-item {
  background: #FFC61A;
  height: 30px;
  width: 30px;
  -webkit-animation: load 1.5s infinite;
  -moz-animation: load 1.5s infinite;
  -o-animation: load 1.5s infinite;
  animation: load 1.5s infinite;
  margin: 4px;
  display: inline-block;
}
.grid-item:nth-child(1):after {
  -webkit-animation-delay: 0.16666666666666666s;
  -moz-animation-delay: 0.16666666666666666s;
  -o-animation-delay: 0.16666666666666666s;
  animation-delay: 0.16666666666666666s;
}
.grid-item:nth-child(2):after {
  -webkit-animation-delay: 0.3333333333333333s;
  -moz-animation-delay: 0.3333333333333333s;
  -o-animation-delay: 0.3333333333333333s;
  animation-delay: 0.3333333333333333s;
}
.grid-item:nth-child(3):after {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.grid-item:nth-child(4):after {
  -webkit-animation-delay: 0.6666666666666666s;
  -moz-animation-delay: 0.6666666666666666s;
  -o-animation-delay: 0.6666666666666666s;
  animation-delay: 0.6666666666666666s;
}
.grid-item:nth-child(5):after {
  -webkit-animation-delay: 0.8333333333333334s;
  -moz-animation-delay: 0.8333333333333334s;
  -o-animation-delay: 0.8333333333333334s;
  animation-delay: 0.8333333333333334s;
}
.grid-item:nth-child(6):after {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.grid-item:nth-child(1) {
  background-color: #FFC61A;
}
.grid-item:nth-child(3) {
  background-color: #FFC61A;
}
.grid-item:nth-child(5) {
  background-color: #FFC61A;
}
.grid-item:nth-child(2) {
  background-color: #1F1F1F;
}
.grid-item:nth-child(4) {
  background-color: #1F1F1F;
}
.grid-item:nth-child(6) {
  background-color: #1F1F1F;
}
lesshat-selector {
  -lh-property: 0; } 
@-webkit-keyframes load{   0%{-webkit-transform:scale(0.1);} 50%{-webkit-transform:scale(1);} 100%{-webkit-transform:scale(0.1);} }
@-moz-keyframes load{   0%{-moz-transform:scale(0.1);} 50%{-moz-transform:scale(1);} 100%{-moz-transform:scale(0.1);} }
@-o-keyframes load{   0%{-o-transform:scale(0.1);} 50%{-o-transform:scale(1);} 100%{-o-transform:scale(0.1);} }
@keyframes load{   0%{-webkit-transform:scale(0.1);-moz-transform:scale(0.1);-ms-transform:scale(0.1);transform:scale(0.1);} 50%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);transform:scale(1);} 100%{-webkit-transform:scale(0.1);-moz-transform:scale(0.1);-ms-transform:scale(0.1);transform:scale(0.1);} ;
}
.pace .line {
  background-color: #1F1F1F;
  width: 6px;
  height: 60px;
  margin: 0 1px;
  text-align: center;
  display: inline-block;
  animation: stretch 1.2s infinite ease-in-out;
}
.pace .line.two {
  animation-delay: -1.1s;
}
.pace .line.three {
  animation-delay: -1s;
}
.pace .line.four {
  animation-delay: -0.9s;
}
.pace .line.five {
  animation-delay: -0.8s;
}
.pace .line.six {
  animation-delay: -0.7s;
}
.pace .line.seven {
  animation-delay: -0.6s;
}
@keyframes stretch {
  0%,
  40%,
  100% {
    transform: scaleY(0.3);
  }
  0%,
  40%,
  100% {
    transform: scaleY(0.3);
  }
  0%,
  40%,
  100% {
    transform: scaleY(0.3);
  }
  20% {
    transform: scaleY(1);
  }
}
.pace.pace-inactive {
  display: none;
}
.paceloader-image .pace-activity,
.paceloader-image .pace-progress {
  display: none;
}
.paceloader-image .pace {
  border: 0 none;
}
.paceloader-image .grid-loader {
  display: none;
}
.paceloader-image .pace-image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 300px;
  margin: auto;
  display: block;
  z-index: 100;
  position: fixed;
  overflow: hidden;
  animation: loaderscale 1.2s infinite ease-in-out;
}
@keyframes loaderscale {
  0%,
  40%,
  100% {
    transform: scale(0.8);
  }
  0%,
  40%,
  100% {
    transform: scale(0.8);
  }
  0%,
  40%,
  100% {
    transform: scale(0.8);
  }
  20% {
    transform: scale(1);
  }
}
.page-404 {
  margin: 100px 0;
}
.page-404 img {
  margin-bottom: 20px;
}
.opensans {
  font-family: 'Open Sans', sans-serif;
}
.fjalla {
  font-family: 'Fira Sans Condensed', sans-serif;
}
.dashed {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
}
.dashed-light {
  position: relative;
}
.dashed-light:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKoAAAABCAYAAABOrTWvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUuNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NUNENTYzQ0MxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NUNENTYzQ0QxOTcwMTFFNzhENzRFRTIwNTJBMDRBQzEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo1Q0Q1NjNDQTE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo1Q0Q1NjNDQjE5NzAxMUU3OEQ3NEVFMjA1MkEwNEFDMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuplUWsAAAAkSURBVHjaYnR3d//PAAGMQAxm79ixg9HDw2NUfFR80IgDBBgAvfWN1mHQu4wAAAAASUVORK5CYII=") 0 100% repeat-x;
  zoom: 1;
  filter: alpha(opacity=30);
  -webkit-opacity: 0.3;
  -moz-opacity: 0.3;
  opacity: 0.3;
}
.bg-overlay-dark:after,
.dark-overlay:after {
  background: rgba(16, 16, 16, 0.45);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.bg-overlay-black:after,
.black-overlay:after {
  background: rgba(0, 0, 0, 0.73);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.bg-overlay-black > div,
.black-overlay > div {
  z-index: 2;
  position: relative;
}
.bg-overlay-pattern:before,
.pattern-lines:before {
  background: rgba(16, 16, 16, 0.73) url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjMjNkYTEyYy1jOGMyLTcwNDItODg2Ny0xZmZhZWI3MmViOTMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkFGM0ExREExQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkFGM0ExRDkxQTA3MTFFN0E4OEU4RkY3Q0VEQzAyRTkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6YzJkM2FhYWItMDUyZi05NDQ4LTlhM2UtMjk1OTkzMDQyOGI2IiBzdFJlZjpkb2N1bWVudElEPSJhZG9iZTpkb2NpZDpwaG90b3Nob3A6ZTA5ZDg5ZmQtMDA2NS0xMWU3LThiMWMtZTE0MmJhNWM4NzA3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+vyDTwQAAABlJREFUeNpiYkCA/0wwBhAzMsEYIBGAAAMANqADBoMGgUwAAAAASUVORK5CYII=");
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block !important;
}
.bg-overlay-pattern > div,
.pattern-lines > div {
  z-index: 2;
  position: relative;
}
/*
	24. WooCommerce
*/
.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0 -8px 0 -8px;
  padding: 15px 0;
}
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page[class*="columns-"] ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: auto;
  float: left;
  padding: 0 15px 30px;
}
@media (min-width: 991px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page[class*="columns-"] ul.products li.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 33.3%;
  }
}
@media (max-width: 991px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page[class*="columns-"] ul.products li.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 50%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page[class*="columns-"] ul.products li.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 50%;
  }
}
@media (max-width: 479px) {
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page[class*="columns-"] ul.products li.product,
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 100%;
  }
}
.woocommerce ul.products[class*="columns-"] li.product .image,
.woocommerce-page[class*="columns-"] ul.products li.product .image,
.woocommerce ul.products li.product .image,
.woocommerce-page ul.products li.product .image {
  height: 200px;
  position: relative;
}
@media (max-width: 991px) {
  .woocommerce ul.products[class*="columns-"] li.product .image,
  .woocommerce-page[class*="columns-"] ul.products li.product .image,
  .woocommerce ul.products li.product .image,
  .woocommerce-page ul.products li.product .image {
    height: 260px;
  }
}
.woocommerce ul.products[class*="columns-"] li.product .image img,
.woocommerce-page[class*="columns-"] ul.products li.product .image img,
.woocommerce ul.products li.product .image img,
.woocommerce-page ul.products li.product .image img {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 479px) {
  .woocommerce ul.products[class*="columns-"] li.product .image,
  .woocommerce-page[class*="columns-"] ul.products li.product .image,
  .woocommerce ul.products li.product .image,
  .woocommerce-page ul.products li.product .image {
    height: 250px;
    text-align: center;
  }
  .woocommerce ul.products[class*="columns-"] li.product .image img,
  .woocommerce-page[class*="columns-"] ul.products li.product .image img,
  .woocommerce ul.products li.product .image img,
  .woocommerce-page ul.products li.product .image img {
    max-height: 250px;
    width: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    -ms-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
  }
}
.woocommerce ul.products[class*="columns-"] li.product > .item,
.woocommerce-page[class*="columns-"] ul.products li.product > .item,
.woocommerce ul.products li.product > .item,
.woocommerce-page ul.products li.product > .item {
  padding: 30px 30px 40px;
  -webkit-box-shadow: 0 0px 4px rgba(146, 146, 146, 0.2);
  -moz-box-shadow: 0 0px 4px rgba(146, 146, 146, 0.2);
  box-shadow: 0 0px 4px rgba(146, 146, 146, 0.2);
  text-align: center;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  transition: all .3s ease;
}
.woocommerce ul.products[class*="columns-"] li.product:hover > .item,
.woocommerce-page[class*="columns-"] ul.products li.product:hover > .item,
.woocommerce ul.products li.product:hover > .item,
.woocommerce-page ul.products li.product:hover > .item {
  -webkit-box-shadow: 0 0px 10px rgba(146, 146, 146, 0.4);
  -moz-box-shadow: 0 0px 10px rgba(146, 146, 146, 0.4);
  box-shadow: 0 0px 10px rgba(146, 146, 146, 0.4);
}
.woocommerce ul.products[class*="columns-"] li.product .post_content,
.woocommerce-page[class*="columns-"] ul.products li.product .post_content,
.woocommerce ul.products li.product .post_content,
.woocommerce-page ul.products li.product .post_content {
  font-size: 14px;
  margin: -5px 0 15px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  text-transform: none;
  text-align: center;
  font-size: 20px;
}
.woocommerce-ordering {
  background: none !important;
  padding: 0 !important;
}
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
  font-size: 11px;
  height: 4em;
  line-height: 4em;
  margin: 0;
  padding: 0;
  right: -20px;
  text-transform: uppercase;
  top: -18px;
  width: 4em;
  background: #FFC61A;
  color: #1F1F1F;
}
.woocommerce span.onsale {
  left: 0;
  top: 0;
}
.woocommerce ul.products li.product .star-rating {
  text-align: center;
  margin: 0 auto 15px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: #1F1F1F;
  font-size: 18px;
  font-weight: bold;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce ul.products li.product .price ins {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  color: #1F1F1F;
}
.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce ul.products li.product .price del {
  text-decoration: line-through;
  margin-right: 12px;
  font-weight: normal;
}
.woocommerce ul.products li.product .button {
  padding-left: 55px;
  margin-bottom: 0;
  font-size: 14px;
}
.woocommerce ul.products li.product .button:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  vertical-align: middle;
  content: "\f07a";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin-left: -25px;
  color: #1F1F1F;
}
.woocommerce ul.products li.product .button:hover:before {
  color: #FFC61A;
}
.woocommerce-mini-cart__buttons {
  text-align: center;
}
.woocommerce-mini-cart__buttons .button {
  font-size: 14px !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.woocommerce-mini-cart__buttons .button:not(.checkout) {
  background: #1F1F1F;
  color: #FFC61A;
  border-color: #FFC61A;
}
.woocommerce-mini-cart__total {
  text-align: center;
  font-weight: bold;
}
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  margin-top: 25px;
  margin-bottom: 20px;
}
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 1px solid #fff;
  margin-top: 0;
  padding-top: 15px;
}
.widget_shopping_cart_content {
  border-top: 1px solid #fff;
  padding-top: 20px;
}
.woocommerce .widget_price_filter form {
  padding: 0 !important;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: #fff;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background: #FFC61A;
}
.woocommerce .price_label {
  text-align: center;
  margin-top: 0px;
  padding-top: 10px;
}
.woocommerce .price_label span {
  font-weight: bold;
}
.woocommerce .price_slider_wrapper {
  position: relative;
  padding-bottom: 70px;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
  float: none;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.woocommerce .widget_price_filter .price_slider_amount {
  text-align: center;
  margin-bottom: 25px;
}
.select_container::after {
  content: '\e828';
  font-family: 'fontello';
  display: block;
  line-height: 1em;
  width: 1em;
  height: 1em;
  text-align: center;
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.5em;
  z-index: 2;
  pointer-events: none;
  cursor: pointer;
}
.woocommerce-result-count {
  padding: 1em 0;
}
.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce-page .widget_shopping_cart .cart_list li {
  padding: 0 0 20px 0;
  overflow: hidden;
}
.woocommerce ul.cart_list li dl:after,
.woocommerce ul.product_list_widget li dl:after {
  clear: none;
}
.woocommerce ul.cart_list li:before,
.woocommerce ul.product_list_widget li:before,
.woocommerce-page ul.cart_list li:before,
.woocommerce-page ul.product_list_widget li:before {
  display: none;
}
.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.cart_list li img,
.woocommerce-page ul.product_list_widget li img {
  box-shadow: none;
  margin: 0 0.6em 1em 0;
  width: 54px;
  height: auto;
  float: left;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 54px;
  height: auto;
}
.woocommerce.widget_shopping_cart .quantity,
.woocommerce .widget_shopping_cart .quantity,
.woocommerce-page.widget_shopping_cart .quantity,
.woocommerce-page .widget_shopping_cart .quantity {
  display: inline-block;
  font-weight: bold;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove,
.woocommerce a.remove {
  top: -6px;
  left: -6px;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove:hover,
.woocommerce.widget_shopping_cart .cart_list li a.remove:hover,
.woocommerce a.remove:hover {
  background: transparent;
  color: #1F1F1F !important;
}
.woocommerce-sidebar.widget-area {
  padding: 30px 25px 80px;
}
.woocommerce .product_meta span {
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  background: #FFC61A;
  padding: 10px 30px;
  font-size: 18px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #F5F5F5;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding: 40px 25px;
  background: #F5F5F5;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none;
}
.woocommerce div.quantity input[type="number"],
.woocommerce div.product form.cart div.quantity input[type="number"],
.woocommerce-page div.product form.cart div.quantity input[type="number"] {
  width: 100%;
  height: 100%;
  padding: 0 1.8em;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
}
.woocommerce div.quantity,
.woocommerce div.product form.cart div.quantity,
.woocommerce-page div.product form.cart div.quantity {
  margin: 0 1.1em 0 0;
  width: 95px;
  height: 44px;
  position: relative;
}
.woocommerce div.quantity span,
.woocommerce div.product form.cart div.quantity span,
.woocommerce-page div.product form.cart div.quantity span {
  display: block;
  position: absolute;
  z-index: 1;
  right: 1px;
  width: 30px;
  height: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 1.2em;
  cursor: pointer;
}
.woocommerce div.quantity span,
.woocommerce div.product form.cart div.quantity span,
.woocommerce-page div.product form.cart div.quantity span {
  background: #E6E6E6;
  color: #1F1F1F;
}
.woocommerce div.quantity span.more,
.woocommerce div.product form.cart div.quantity span.more,
.woocommerce-page div.product form.cart div.quantity span.more {
  top: 1px;
  border-bottom: 2px solid #fff;
}
.woocommerce div.quantity span.less,
.woocommerce div.product form.cart div.quantity span.less,
.woocommerce-page div.product form.cart div.quantity span.less {
  bottom: 1px;
  border-top: 2px solid #fff;
}
.woocommerce div.quantity span.more:before,
.woocommerce div.product form.cart div.quantity span.more:before,
.woocommerce-page div.product form.cart div.quantity span.more:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f077";
}
.woocommerce div.quantity span.less:before,
.woocommerce div.product form.cart div.quantity span.less:before,
.woocommerce-page div.product form.cart div.quantity span.less:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f078";
}
.woocommerce div.quantity input[type="number"],
.woocommerce div.product form.cart div.quantity input[type="number"],
.woocommerce-page div.product form.cart div.quantity input[type="number"] {
  border: 1px solid #E6E6E6;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  width: 100%;
  height: 100%;
  padding: 0 0 0 30px;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.woocommerce div.product form.cart,
.woocommerce .cart {
  background: transparent;
  padding: 15px 0 0 0;
  margin: 0;
}
.woocommerce div.product form.cart .button {
  padding: 0px 30px;
  line-height: 44px;
  height: 44px;
}
.woocommerce-product-details__short-description p {
  font-size: 14px;
  margin: 25px 0 15px;
}
.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 10px;
  color: #FFC61A;
}
.woocommerce .star-rating span {
  color: #FFC61A;
}
.woocommerce .product_title {
  text-transform: none;
}
.woocommerce .comment-reply-title {
  font-size: 18px;
  font-weight: bold;
}
#review_form_wrapper {
  padding-top: 30px;
}
.woocommerce .woocommerce-cart-form {
  background: transparent;
  padding: 0;
}
.woocommerce-cart table.cart th {
  text-align: center;
}
.woocommerce-cart table.cart th.product-name {
  text-align: left;
}
.woocommerce table.shop_table {
  border: none;
  border-collapse: collapse;
}
.woocommerce table.shop_table td {
  background: none;
  padding: 30px 15px;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item:nth-child(even) td {
  background: #F5F5F5;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item td {
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  border-top: none;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-quantity div.quantity {
  margin: 0 auto;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-quantity,
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-subtotal,
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-price,
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-thumbnail,
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-remove {
  text-align: center;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-remove {
  width: 3em;
  padding-left: 30px;
  padding-right: 0;
  border-right: none;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-remove a {
  width: auto;
  top: auto;
  left: auto;
}
@media (max-width: 768px) {
  .woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-remove {
    width: 100%;
    text-align: right;
    border-top: 0 !important;
    border-left: 0 !important;
    padding-bottom: 10px !important;
    background-color: transparent !important;
  }
  .woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-remove a {
    padding-right: 20px;
    display: inline;
  }
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-thumbnail {
  border-left: none;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-name a {
  color: #1F1F1F;
  font-weight: bold;
}
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-subtotal,
.woocommerce table.shop_table .woocommerce-cart-form__cart-item .product-price {
  font-size: 18px;
  font-weight: bold;
}
.woocommerce-order-overview__date {
  margin-top: 0 !important;
}
.woocommerce .cart_totals h2 {
  display: none;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
  background: transparent;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
  vertical-align: middle;
  text-align: right;
  border: none;
}
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .order-total th {
  font-size: 30px;
}
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td {
  border: none;
  padding: 0px 0 0px 15px;
  font-weight: bold;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: auto;
}
.woocommerce table.cart td.actions .input-text {
  width: 150px;
}
.woocommerce table.shop_table td.actions {
  padding: 50px 0 30px;
  border-bottom: 1px solid #E6E6E6;
  border-left: none !important;
  border-right: none !important;
}
.woocommerce table.shop_table td.actions .coupon .button {
  height: 28px;
  line-height: 0.8em;
  font-size: 14px;
}
.woocommerce-notice {
  margin: 20px auto 40px;
  font-weight: bold;
  text-align: center;
}
.woocommerce input[name="update_cart"] {
  background: transparent !important;
  text-transform: uppercase;
  color: #1F1F1F;
  padding: .618em 1em !important;
}
.woocommerce input[name="update_cart"]:hover {
  background: transparent !important;
}
.woocommerce form .form-row textarea {
  height: 12em;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
  background: #fff;
  padding-top: 24px;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th {
  padding: 16px 24px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table .product-name {
  font-weight: bold;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tbody tr:last-child td {
  padding-bottom: 24px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead th {
  padding: 24px 24px;
  font-size: 28px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead th .product-name {
  font-size: 24px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot {
  border-top: 3px solid #1F1F1F;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot th {
  text-align: right;
  border: none;
  padding-bottom: 0;
  padding-top: 16px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td {
  padding-top: 16px;
}
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr:last-child th,
.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot tr:last-child td {
  padding-bottom: 16px;
}
.woocommerce-table--customer-details th,
.woocommerce-table--order-details th {
  border: 0 none !important;
}
.woocommerce-table--customer-details td,
.woocommerce-table--order-details td {
  border: 1px solid #E6E6E6 !important;
}
.woocommerce-table--customer-details th {
  text-align: right;
}
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: transparent;
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #fff;
}
.woocommerce-checkout #payment div.payment_box {
  background: #fff;
}
.woocommerce .about_paypal {
  padding-left: 15px;
}
.woocommerce-MyAccount-navigation {
  background: #F5F5F5;
  padding: 56px 38px;
  margin-top: 0px;
  margin-bottom: 60px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  font-size: 14px;
}
.woocommerce-MyAccount-navigation div,
.woocommerce-MyAccount-navigation p,
.woocommerce-MyAccount-navigation table {
  font-size: 14px;
}
.woocommerce-MyAccount-navigation ul {
  margin: 0 0 0 0px;
  padding: 0;
  list-style: none;
}
.woocommerce-MyAccount-navigation ul li {
  color: #1F1F1F;
  margin-bottom: 13px;
  vertical-align: middle;
}
.woocommerce-MyAccount-navigation ul li:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: " \f105";
  font-size: 16px;
  margin-right: 10px;
  vertical-align: middle;
  color: #FFC61A;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #1F1F1F;
  vertical-align: middle;
  font-size: 14px;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #FFC61A;
}
.woocommerce-MyAccount-navigation ul li.current-cat {
  font-weight: bold;
}
.woocommerce-MyAccount-navigation ul li.current-cat a {
  color: #1F1F1F;
  cursor: default;
}
.woocommerce table.my_account_orders .button {
  margin-bottom: 0;
}
.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
  padding: 20px 28px;
}
fieldset {
  margin-top: 30px;
  border: none;
}
fieldset legend {
  font-weight: bold;
}
.woocommerce-message::before {
  color: #FFC61A;
}
.woocommerce-message {
  border-top-color: #FFC61A;
}
.woocommerce-info::before {
  color: #868686;
}
.woocommerce-info {
  border-top-color: #868686;
}
.woocommerce .term-description {
  margin-bottom: 30px !important;
}
.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
  clear: none;
}
.related.products {
  clear: both;
}
.woocommerce-product-search input[type="search"] {
  width: 80% !important;
}


nav.navbar .logo {
    padding: 0px;
}

@media (min-width: 1200px)
.navbar-home .logo {
    position: relative !important;
    text-align: center;
    margin: 0px 0 0px;
}