/*
Theme Name: ivelo
Author: Matosoft
Author URI: http://www.matosoft.cz/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ivelo
*/
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
.slider-container {
  width: 300px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.slider-container .back-bar {
  height: 10px;
  position: relative;
}
.slider-container .back-bar .selected-bar {
  position: absolute;
  height: 100%;
}
.slider-container .back-bar .pointer {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: red;
  cursor: col-resize;
  opacity: 1;
  z-index: 2;
}
.slider-container .back-bar .pointer.last-active {
  z-index: 3;
}
.slider-container .back-bar .pointer-label {
  position: absolute;
  top: -17px;
  font-size: 8px;
  background: white;
  white-space: nowrap;
  line-height: 1;
}
.slider-container .back-bar .focused {
  z-index: 10;
}
.slider-container .clickable-dummy {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.slider-container .scale {
  top: 2px;
  position: relative;
}
.slider-container .scale span {
  position: absolute;
  height: 5px;
  border-left: 1px solid #999;
  font-size: 0;
}
.slider-container .scale ins {
  font-size: 9px;
  text-decoration: none;
  position: absolute;
  left: 0;
  top: 5px;
  color: #999;
  line-height: 1;
}
.slider-container.slider-readonly .clickable-dummy,
.slider-container.slider-readonly .pointer {
  cursor: auto;
}
.theme-green .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #a1fad0;
  background-image: linear-gradient(to bottom, #bdfade, #76fabc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbdfade', endColorstr='#ff76fabc', GradientType=0);
}
.theme-green .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAA;
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-green .back-bar .pointer-label {
  color: #999;
}
.theme-green .back-bar .focused {
  color: #333;
}
.theme-green .scale span {
  border-left: 1px solid #e5e5e5;
}
.theme-green .scale ins {
  color: #999;
}
.theme-blue .back-bar {
  height: 5px;
  border-radius: 2px;
  background-color: #eeeeee;
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .selected-bar {
  border-radius: 2px;
  background-color: #92c1f9;
  background-image: linear-gradient(to bottom, #b1d1f9, #64a8f9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d1f9', endColorstr='#ff64a8f9', GradientType=0);
}
.theme-blue .back-bar .pointer {
  width: 14px;
  height: 14px;
  top: -5px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #AAA;
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffeeeeee', endColorstr='#ffdddddd', GradientType=0);
}
.theme-blue .back-bar .pointer-label {
  color: #999;
}
.theme-blue .back-bar .focused {
  color: #333;
}
.theme-blue .scale span {
  border-left: 1px solid #e5e5e5;
}
.theme-blue .scale ins {
  color: #999;
}
.cf:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.cf {
  display: inline-block;
}
* html .cf {
  height: 1%;
}
.cf {
  display: block;
}
/* close commented backslash hack */
.hideText {
  text-indent: -9999em;
  letter-spacing: -9999em;
  overflow: hidden;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
html {
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.chrome {
  text-rendering: auto;
}
body {
  background-color: #e9e9e9;
  position: relative;
}
.main-page {
  overflow: hidden;
}
html {
  font-size: 62.5%;
  font-family: sans-serif;
}
body {
  font-family: 'Open Sans', sans-serif;
}
.wf-active body {
  font-family: 'Open Sans', sans-serif;
}
body.wf-active {
  font-family: 'Open Sans', sans-serif;
}
body.wf-active h1,
body.wf-active h2,
body.wf-active h3,
body.wf-active h4,
body.wf-active h5,
body.wf-active h6 {
  font-family: 'Open Sans', sans-serif;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
}
body,
input,
textarea {
  font-weight: 400;
  line-height: 26px;
  line-height: 2.6rem;
  color: #444;
}
a,
input,
textarea,
select,
button {
  outline: none;
}
a {
  color: #006367;
  transition: all 0.2s ease;
  text-decoration: underline;
}
a:hover,
a:active,
a:focus {
  transition: all 0.2s ease 0s;
  color: #00383a;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  margin-bottom: 25px;
  margin-bottom: 2.5rem;
  font-weight: 600;
}
h1 {
  font-size: 40px;
  font-size: 4rem;
  line-height: 50px;
  line-height: 5rem;
}
h2 {
  font-size: 33px;
  font-size: 3.3rem;
  line-height: 42px;
  line-height: 4.2rem;
}
h3 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 36px;
  line-height: 3.6rem;
}
h4 {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 32px;
  line-height: 3.2rem;
}
h5 {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 27px;
  line-height: 2.7rem;
}
h6 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 23px;
  line-height: 2.3rem;
}
p {
  margin: 0 0 25px 0;
  margin: 0 0 2.5rem 0;
}
p:last-child {
  margin-bottom: 0;
}
blockquote {
  margin: 0 0 25px 0;
  margin: 0 0 2.5rem 0;
}
blockquote:last-child {
  margin-bottom: 0;
}
ul,
ol {
  margin: 0 0 25px 0;
  margin: 0 0 2.5rem 0;
}
ol ol,
ul ul {
  margin: 20px 0;
  margin: 2rem 0;
}
ol li ol,
ul li ul {
  margin: 20px 0;
  margin: 2rem 0;
}
ul,
ol {
  padding: 0;
}
ul li,
ol li {
  position: relative;
  padding-left: 0;
  margin-bottom: 9px;
  margin-bottom: .9rem;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
ul {
  padding-left: 20px;
  padding-left: 2rem;
}
ul li {
  list-style: none;
}
ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 11px;
  top: 1.1rem;
  left: -20px;
  left: -2rem;
  background-color: #444;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
ol ol {
  counter-reset: item;
}
ol > li {
  counter-increment: item;
  list-style: none;
  padding-left: 26px;
  padding-left: 2.6rem;
  margin-bottom: 0;
}
ol > li::before {
  background-image: none;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  content: counter(item) ")";
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  text-align: center;
  position: absolute;
  left: 0;
  font-weight: 400;
}
ol li {
  content: counter(subitem);
}
ol li li {
  content: counter(subsubitem);
}
ol[style="list-style-type: upper-alpha;"] > li::before {
  content: counter(item, upper-alpha) ".";
}
ol[style="list-style-type: upper-alpha;"] > li::before li {
  content: counter(subitem, upper-alpha) ".";
}
ol[style="list-style-type: upper-alpha;"] > li::before li li {
  content: counter(subsubitem, upper-alpha) ".";
}
ol[style="list-style-type: lower-alpha;"] > li::before {
  content: counter(item, lower-alpha) ".";
}
ol[style="list-style-type: lower-alpha;"] > li::before li {
  content: counter(subitem, lower-alpha) ".";
}
ol[style="list-style-type: lower-alpha;"] > li::before li li {
  content: counter(subsubitem, lower-alpha) ".";
}
ol[style="list-style-type: lower-greek;"] > li::before {
  content: counter(item, lower-greek);
}
ol[style="list-style-type: lower-greek;"] > li::before li {
  content: counter(subitem, lower-greek);
}
ol[style="list-style-type: lower-greek;"] > li::before li li {
  content: counter(subsubitem, lower-greek);
}
ol[style="list-style-type: lower-roman;"] > li::before {
  content: counter(item, lower-roman);
}
ol[style="list-style-type: lower-roman;"] > li::before li {
  content: counter(subitem, lower-roman);
}
ol[style="list-style-type: lower-roman;"] > li::before li li {
  content: counter(subsubitem, lower-roman);
}
ol[style="list-style-type: upper-roman;"] > li::before {
  content: counter(item, upper-roman);
}
ol[style="list-style-type: upper-roman;"] > li::before li {
  content: counter(subitem, upper-roman);
}
ol[style="list-style-type: upper-roman;"] > li::before li li {
  content: counter(subsubitem, upper-roman);
}
blockquote {
  border-radius: 5px;
  background-color: #b1251c;
  color: #fff;
  padding: 10px 14px;
  padding: 1rem 1.4rem;
  font-size: 14px;
  line-height: 18px;
}
abbr[title] {
  border-bottom: 0;
  text-decoration: none;
}
pre {
  background-color: #f0f0f0;
  padding: 11px 22px;
  padding: 1.1rem 2.2rem;
}
table {
  width: 100%;
  margin: 0 0 48px 0;
  margin: 0 0 4.8rem 0;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
table th,
table td {
  padding: 11px;
  padding: 1.1rem;
  box-sizing: border-box;
  text-align: left;
  border: 0;
  border-color: rgba(68, 68, 68, 0.2);
  border-bottom: 1px solid rgba(68, 68, 68, 0.2);
  padding: 6px 12px;
}
table th {
  background: rgba(0, 0, 0, 0.01);
  color: #fff;
  font-weight: 700;
  color: #444;
  font-weight: 400;
}
@media screen and (max-width: 47.9375em) {
  body,
  input,
  textarea {
    line-height: 2.2rem;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 1.4rem;
  }
  h1 {
    font-size: 3rem;
    line-height: 3.6rem;
  }
  h2 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  h3 {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  h4 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  h5 {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  h6 {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.section {
  padding: 90px 0;
  padding: 9rem 0;
}
.section--grey {
  background-color: #f5f5f5;
}
.section-title {
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 33px;
  line-height: 3.3rem;
  letter-spacing: -0.68px;
  letter-spacing: -0.068rem;
  color: #333333;
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: 8rem;
}
.section-title span {
  color: #006367;
  font-weight: 700;
}
.section-title--small {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 25px;
  line-height: 2.5rem;
}
.section-title--left {
  text-align: left;
}
.section-title--white {
  color: #fff;
}
.more-items-loader {
  display: none;
  width: 120px;
  height: 45px;
  background-position: center center;
  margin: 0 auto;
}
.page-overlay {
  position: fixed;
  top: 112px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #012c63;
  opacity: 0;
  transition: all .2s ease;
  z-index: 20;
}
.page-overlay--show .page-overlay {
  height: calc(100% - 112px);
  opacity: 0.87;
  transition: all .2s ease;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.page-overlay {
  position: fixed;
  width: calc(100%);
  height: 0;
  top: 0;
  left: 0;
  background: transparent;
  opacity: 0;
  display: none;
  z-index: 80;
  transition: all .2s ease;
}
body.show-overlay .page-overlay {
  display: block;
  background: #000;
  transition: all .2s ease;
  opacity: .3;
  height: 100%;
}
body.show-overlay--trans .page-overlay {
  left: 0;
  opacity: 0;
  width: 100%;
}
@media screen and (max-width: 47.9375em) {
  .section {
    padding: 5rem 0;
  }
  .section-title {
    font-size: 2.3rem;
    line-height: 3.4rem;
    margin-bottom: 6rem;
  }
  article iframe {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
}
div.wpcf7-validation-errors {
  color: #f00;
  border: 2px solid #f00;
}
div.wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
}
input,
textarea {
  -webkit-border-radius: 0;
}
input:-webkit-autofill {
  background-color: #fff !important;
}
textarea,
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="date"],
select {
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 0 13px;
  padding: 0 1.3rem;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 42px;
  line-height: 4.2rem;
  height: 42px;
  height: 4.2rem;
  color: #444;
  border: 1px solid #ededed;
  border-color: rgba(68, 68, 68, 0.2);
  background-color: #ffffff;
  border-radius: 2px;
}
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a3a3a3;
}
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
select::-moz-placeholder {
  /* Firefox 19+ */
  color: #a3a3a3;
}
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
select:-ms-input-placeholder {
  /* IE 10+ */
  color: #a3a3a3;
}
textarea:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
select:-moz-placeholder {
  /* Firefox 18- */
  color: #a3a3a3;
}
textarea.error-text,
input[type="text"].error-text,
input[type="tel"].error-text,
input[type="email"].error-text,
input[type="number"].error-text,
input[type="password"].error-text,
input[type="search"].error-text,
input[type="date"].error-text,
select.error-text {
  border: 1px solid #D22718;
}
input[type="date"]::-webkit-inner-spin-button {
  display: none;
}
input[type="date"]::-webkit-clear-button {
  display: none;
}
input[type="number"] {
  padding: 0 5px;
  padding: 0 .5rem;
}
button,
input[type="button"],
input[type="submit"] {
  border: none;
  background-color: #006367;
  padding: 7px 20px;
  color: #fff;
  font-size: 16px;
  border-radius: 2px;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background-color: #00383a;
  color: #fff;
}
select {
  box-shadow: none;
  background-image: none;
  position: relative;
  z-index: 9;
  height: 42px;
  line-height: 42px;
  line-height: 4.2rem;
  background-color: #E2E2E2;
  border-color: rgba(68, 68, 68, 0.2);
  color: #444444;
  border-radius: 4px;
}
textarea {
  padding-top: 8px;
  padding-top: .8rem;
  line-height: 24px;
  line-height: 2.4rem;
  min-height: 73px;
  height: 73px;
}
span.error-text {
  display: none !important;
}
.btn {
  background-color: #006367;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 24px;
  line-height: 2.4rem;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  padding: 10px 20px 11px;
  padding: 1rem 2rem 1.1rem;
  border: 0;
}
.btn:hover {
  background-color: #00383a;
  color: #fff;
}
.btn:focus,
.btn:active {
  color: #fff;
}
.btn--small {
  padding: 6px 20px 6px;
  padding: .6rem 2rem .6rem;
}
.btn--white {
  background-color: #fff;
  color: #006367;
}
.btn--white:focus,
.btn--white:active {
  color: #006367;
}
.btn--green {
  background-color: #16b180;
  text-transform: none;
}
.btn--green:hover {
  background-color: #079669;
}
.btn--green:focus,
.btn--green:active {
  color: #fff;
}
.btn--big-font {
  text-transform: uppercase;
}
.btn--icon {
  background-position: 20px center;
  background-position: 2rem center;
  padding-left: 54px;
  padding-left: 5.4rem;
}
.btn--load {
  padding-right: 46px;
  padding-right: 4.6rem;
  background-position: calc(100% - 17px) center;
}
.btn--disabled {
  cursor: not-allowed;
  padding: 10px 20px 11px;
  padding: 1rem 2rem 1.1rem;
  background-image: none;
}
.btn--disabled:hover,
.btn--disabled:focus,
.btn--disabled:active {
  background-color: #006367;
  color: #fff;
}
.btn--hidden {
  display: none !important;
}
.contact-row {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  margin: 0 -10px 15px;
  margin: 0 -1rem 1.5rem;
}
.contact-row:last-child {
  margin-bottom: 0;
}
.contact-row--col2 .contact-form-item {
  float: left;
  width: 50%;
}
.btn-wrapper {
  display: inline-block;
  background-color: #fff;
  padding-left: 25px;
  padding-left: 2.5rem;
}
.text-wrapper {
  float: left;
  background-color: #fff;
  padding-right: 25px;
  padding-right: 2.5rem;
  line-height: 51px;
  line-height: 5.1rem;
  color: #454545;
}
.text-wrapper strong {
  color: #3f51b5;
}
.contact-row--btn {
  margin-top: -1px;
  margin-top: -0.1rem;
  text-align: right;
}
.contact-form-item {
  position: relative;
  padding: 0 10px;
  padding: 0 1rem;
  box-sizing: border-box;
}
.contact-form-item > label {
  z-index: 1;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  margin-bottom: 7px;
}
.contact-form-item .required {
  color: #d73a3a;
}
.contact-form-item--align-right {
  text-align: right;
}
.contact-form-item--active > label,
.contact-form-item--some-text > label {
  position: absolute;
  z-index: 1;
  line-height: 40px;
  line-height: 4rem;
  padding-left: 16px;
  padding-left: 1.6rem;
  padding-right: 16px;
  padding-right: 1.6rem;
  color: #fff;
  background-color: #3f51b5;
  line-height: 18px;
  line-height: 1.8rem;
  top: -13px;
  top: -1.3rem;
  transition: top .2s ease;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}
.contact-form-item--active input,
.contact-form-item--active textarea {
  border: 1px solid #3f51b5;
}
.contact-form-item--error > label {
  position: absolute;
  z-index: 1;
  line-height: 40px;
  line-height: 4rem;
  padding-left: 16px;
  padding-left: 1.6rem;
  padding-right: 16px;
  padding-right: 1.6rem;
  color: #fff;
  background-color: #D22718;
  line-height: 18px;
  line-height: 1.8rem;
  top: -13px;
  top: -1.3rem;
  transition: top .2s ease;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 47.9375em) {
  input[type="checkbox"] + span::before {
    margin-top: 0;
  }
}
.footer .container {
  background: #4A4A4A;
  color: #dddddd;
}
.footer a {
  color: #d8d8d8;
}
.footer-columns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
  margin: 0 -2rem;
}
.footer-column {
  width: 23%;
  padding: 40px 20px 0;
  padding: 4rem 2rem 0;
  box-sizing: border-box;
  border-right: solid 1px #656565;
}
.footer-column:last-child {
  border-right: 0;
}
.footer-column p {
  font-size: 14px;
  font-size: 1.4rem;
}
.footer-column .textwidget h4 {
  color: #d8d8d8;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.footer-column .textwidget a {
  display: block;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.footer-column .textwidget a:last-child {
  margin-bottom: 0;
}
.footer-column .textwidget .mail {
  display: inline;
  color: #898a88;
}
.footer-column--bigger {
  width: 31%;
}
.copyright .container {
  background-color: #323131;
  text-align: right;
  color: #ddd;
}
.copyright .copyright-text {
  line-height: 38px;
  line-height: 3.8rem;
  padding: 6px 0;
  padding: .6rem 0;
}
.copyright a {
  color: #fff;
}
.to-top {
  position: fixed;
  right: 20px;
  bottom: 14px;
  z-index: 999;
  width: 0;
  height: 0;
  color: #fff;
  background-color: #333;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 38px;
  line-height: 3.8rem;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  transition: all .2s ease;
  opacity: 0;
}
.to-top i {
  line-height: 38px;
  line-height: 3.8rem;
  display: none;
}
.to-top:hover {
  background-color: #006367;
  transition: all .2s ease;
}
.show-to-top .to-top {
  opacity: 1;
  transition: all .2s ease;
  width: 38px;
  width: 3.8rem;
  height: 38px;
  height: 3.8rem;
}
.show-to-top .to-top i {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .footer-column,
  .footer-column--bigger {
    width: 100%;
    border: 0;
  }
  .footer-column {
    border-bottom: solid 1px #656565;
  }
  .footer-column:last-child {
    border-bottom: 0;
  }
  .copyright .container {
    text-align: center;
  }
  .copyright .copyright-text {
    line-height: 2.8rem;
  }
}
.main-header-top .head-muj-ucet a,
.main-header-top .head-registrace a {
  padding-right: 0;
  padding-left: 30px;
  padding-left: 3rem;
  position: relative;
}
.main-header-top .head-muj-ucet a::before,
.main-header-top .head-registrace a::before {
  background-image: url(../img/sprite.png);
  background-position: -242px -102px;
  width: 19px;
  height: 18px;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
}
.main-header-top .head-muj-ucet::after,
.main-header-top .head-registrace::after {
  content: '|';
  padding: 11px 0px 7px 10px;
  display: inline-block;
  box-sizing: border-box;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
  color: #aaaaaa;
}
.main-header-top .head-prihlaseni a,
.main-header-top .head-odhlaseni a {
  margin-right: 20px;
}
.main-header-top ul {
  float: right;
  padding: 0;
  margin: 0;
}
.main-header-top li {
  float: left;
  margin: 0;
  display: block;
}
.main-header-top li::before {
  display: none;
}
.main-header-top li > a {
  padding: 7px 10px;
  display: block;
  color: #323131;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  float: left;
}
.main-header-top .amount {
  color: #77a464;
}
.main-header-top .wpmenucartli a {
  padding-right: 0;
  padding-left: 30px;
  padding-left: 3rem;
  position: relative;
}
.main-header-top .wpmenucartli a::before {
  background-image: url(../img/sprite.png);
  background-position: -220px -102px;
  width: 22px;
  height: 20px;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  margin-top: -11px;
}
.main-header-top .wpmenucartli a i {
  display: none;
}
.logo-image {
  background-image: url(../img/sprite.png);
  background-position: 0px 0px;
  width: 340px;
  height: 102px;
  display: inline-block;
  text-indent: -9999em;
  letter-spacing: -9999em;
  overflow: hidden;
  margin-bottom: 11px;
  margin-bottom: 1.1rem;
}
.sticky-header {
  background-color: #fff;
  box-shadow: 0px 2px 5px 0px rgba(208, 208, 208, 0.5);
  position: fixed;
  top: -50px;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: top .2s ease;
}
.show-sticky-menu .sticky-header {
  top: 0;
  transition: top .2s ease;
}
.admin-bar.show-sticky-menu .sticky-header {
  top: 32px;
  transition: top .2s ease;
}
.logo-sticky-image {
  background-image: url(../img/sprite.png);
  background-position: 0px -102px;
  width: 170px;
  height: 50px;
  text-indent: -9999em;
  letter-spacing: -9999em;
  overflow: hidden;
  display: block;
  float: left;
}
@media screen and (max-width: 79.9375em) {
  .sticky-header {
    display: none !important;
  }
}
@media screen and (max-width: 63.9375em) {
  .logo-image {
    background-image: url(../img/sprite.png);
    background-position: 0px -102px;
    width: 170px;
    height: 50px;
  }
}
@media screen and (max-width: 29.9375em) {
  .main-header-top .wpmenucartli.wpmenucart-display-standard a {
    float: none;
    height: 20px;
  }
  .main-header-top .wpmenucartli .cartcontents,
  .main-header-top .wpmenucartli .amount {
    display: none !important;
  }
}
.container {
  width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
  padding: 0 4rem;
  box-sizing: border-box;
  background-color: #fff;
}
.container--grey {
  background-color: #E2E2E2;
}
.container--no-bg {
  background-color: transparent;
}
@media screen and (max-width: 93.75em) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 63.9375em) {
  .container {
    width: 100%;
    padding: 0 2rem;
  }
}
.main-menu-switcher {
  display: none;
}
.theme-menu {
  padding: 0;
  margin: 0;
  float: left;
}
.theme-menu > li {
  float: left;
  display: block;
  margin-right: 2px;
  margin-right: .2rem;
  margin-bottom: 0;
}
.theme-menu > li:last-child {
  margin-right: 0;
}
.theme-menu > li::before {
  display: none;
}
.theme-menu > li a {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  line-height: 50px;
  line-height: 5rem;
  height: 50px;
  height: 5rem;
  padding: 0 13px;
  padding: 0 1.3rem;
  box-sizing: border-box;
  display: block;
}
.theme-menu > li:hover > a {
  background-color: #c5c5c5;
}
.theme-menu > .menu-item-has-children > a {
  padding-right: 26px;
  padding-right: 2.6rem;
}
.theme-menu > .menu-item-has-children > a::after {
  font-family: "FontAwesome";
  content: "\f0d7";
  margin-left: 7px;
  font-size: 20px;
  float: right;
  box-sizing: border-box;
  position: absolute;
}
.theme-menu > .menu-item-has-children:hover > .sub-menu {
  display: block;
}
.theme-menu > .current-menu-item,
.theme-menu > .current-menu-parent {
  background-color: #c5c5c5;
}
.theme-menu .sub-menu {
  display: none;
  top: 100%;
  position: absolute;
  left: 0;
  width: 280px;
  z-index: 99;
  padding: 2px 0 0;
  padding: .2rem 0 0;
  margin: 0;
}
.theme-menu .sub-menu li {
  float: none;
  margin: 0;
  background-color: #E2E2E2;
}
.theme-menu .sub-menu li::before {
  display: none;
}
.theme-menu .sub-menu li:hover {
  background-color: #c5c5c5;
}
.theme-menu .sub-menu li:hover a {
  color: #231f20;
}
.theme-menu .sub-menu a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  height: auto;
  padding: 10px 9px;
  padding: 1rem .9rem;
  color: #4c4c4c;
}
.theme-menu .sub-menu .menu-item-has-children > a:after {
  font-family: "FontAwesome";
  content: "\f0da";
  margin-left: 7px;
  font-size: 10px;
  float: right;
}
.theme-menu .sub-menu .menu-item-has-children:hover .sub-menu {
  display: block;
  left: 100%;
  padding-left: 2px;
  padding-left: .2rem;
  top: 0;
  padding-top: 0;
}
.sticky-menu {
  float: right;
}
.sticky-menu .theme-menu > li:hover > a {
  background-color: #fff;
  color: #0073be;
}
.sticky-menu .theme-menu > .menu-item-has-children > a::after {
  font-size: 10px;
}
.sticky-menu .theme-menu > .menu-item-has-children:hover > .sub-menu {
  display: block;
}
.sticky-menu .theme-menu a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 50px;
  line-height: 5rem;
  height: 50px;
  height: 5rem;
  color: #474747;
}
.sticky-menu .theme-menu > .current-menu-item {
  background-color: #fff;
}
.sticky-menu .theme-menu .sub-menu {
  background-color: #fff;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  padding: 1rem 0;
}
.sticky-menu .theme-menu .sub-menu li {
  background-color: #fff;
}
.sticky-menu .theme-menu .sub-menu li:hover > a {
  background-color: #fff;
  color: #0073be;
}
.sticky-menu .theme-menu .sub-menu li:hover .sub-menu {
  padding-top: 10px;
  padding-top: 1rem;
  margin-top: -10px;
  margin-top: -1rem;
}
.sticky-menu .theme-menu .sub-menu a {
  line-height: 22px;
  line-height: 2.2rem;
  height: auto;
}
@media screen and (max-width: 109.375em) {
  .sticky-menu .theme-menu > .sub-menu-right .sub-menu {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 79.9375em) {
  .main-menu-box {
    display: none;
  }
  .theme-menu > .sub-menu-right .sub-menu {
    right: 0;
    left: auto;
  }
}
@media only screen and (min-width: 64em) {
  .theme-menu .menu-item-14370 {
    display: none;
  }
}
/* Images */
.entry__content img {
  max-width: 100%;
  /* Fluid images for posts, comments, and widgets */
  height: auto;
  display: block;
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  /* Make sure images with WordPress-added height and width attributes are scaled correctly */
  max-width: 100%;
}
img.size-full,
img.size-large {
  max-width: 100%;
  width: auto;
  /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
  height: auto;
  /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.entry__content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 1.625em;
}
img.alignright {
  float: right;
  margin: 0 0 20px 40px;
  margin: 0 0 2rem 4rem;
}
img.alignleft {
  float: left;
  margin: 0 40px 20px 0;
  margin: 0 4rem 2rem 0;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
}
.alignleft {
  float: left;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  margin-top: 0.4em;
}
.wp-caption {
  background: #eee;
  margin-bottom: 1.625em;
  max-width: 96%;
  padding: 9px;
}
.wp-caption img {
  display: block;
  margin: -2px 0 0 -2px;
  max-width: 98%;
}
.wp-caption .wp-caption-text,
.gallery-caption {
  color: #666;
  font-family: Georgia, serif;
  font-size: 12px;
}
.wp-caption .wp-caption-text {
  margin-bottom: 0.6em;
  padding: 10px 0 5px 40px;
  position: relative;
}
.wp-caption .wp-caption-text:before {
  color: #666;
  content: '\2014';
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  margin-right: 5px;
  position: absolute;
  left: 10px;
  top: 7px;
}
/**
 * 6.5 Gallery
 * -----------------------------------------------------------------------------
 */
.gallery {
  margin: 0 -10px 20px;
  margin: 0 -1rem 2rem;
}
.gallery-item {
  position: relative;
  float: left;
  display: block;
  padding: 0;
  box-sizing: border-box;
  line-height: 0;
  margin: 0;
  padding: 0 10px;
  padding: 0 1rem;
}
.gallery-item .gallery-icon {
  border: 0;
  padding: 0;
}
.gallery-item a {
  background-color: #006367;
  display: block;
}
.gallery-item img {
  width: 100%;
  height: auto;
}
.gallery-item:hover img {
  opacity: 0.3;
}
.gallery-columns-1 .gallery-item {
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  width: 48%;
  width: calc(50%);
}
.gallery-columns-3 .gallery-item {
  width: 32%;
  width: calc(33.3%);
}
.gallery-columns-4 .gallery-item {
  width: 23%;
  width: calc(25%);
}
.gallery-columns-5 .gallery-item {
  width: 19%;
  width: calc(20%);
}
.gallery-columns-6 .gallery-item {
  width: 15%;
  width: calc(16.7%);
}
.gallery-columns-7 .gallery-item {
  width: 13%;
  width: calc(14.28%);
}
.gallery-columns-8 .gallery-item {
  width: 11%;
  width: calc(12.5%);
}
.gallery-columns-9 .gallery-item {
  width: 9%;
  width: calc(11.1%);
}
.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
  clear: left;
}
.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 6px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 100%;
}
.gallery-caption:before {
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}
@media screen and (max-width: 43.75em) {
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 25%;
    width: calc(25%);
  }
}
@media screen and (max-width: 40.625em) {
  .alignleft,
  .alignright {
    display: block;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 37.5em) {
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 33%;
    width: calc(33.3%);
  }
}
@media screen and (max-width: 28.125em) {
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 50%;
    width: calc(50%);
  }
}
@media screen and (max-width: 21.875em) {
  .entry__content .gallery {
    margin-left: 0;
    margin-right: 0;
  }
  .gallery-item {
    float: none;
  }
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    width: 100%;
  }
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    float: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}
.module-header {
  padding-left: 56px;
  padding-left: 5.6rem;
  border-bottom: 2px solid #333;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  position: relative;
}
.module-header::before {
  background-image: url(../img/sprite.png);
  background-position: -170px -102px;
  background-repeat: no-repeat;
  content: "";
  width: 50px;
  width: 5rem;
  height: 40px;
  height: 4rem;
  display: block;
  position: absolute;
  left: 0;
}
.module-header .module-header__title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 30px;
  line-height: 3rem;
  padding: 5px 14px;
  padding: .5rem 1.4rem;
  display: inline-block;
  box-sizing: border-box;
  background-color: #e3e3e3;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  font-family: 'Open Sans Condensed', sans-serif;
}
.module-header .owl-prev,
.module-header .owl-next {
  width: 27px;
  height: 27px;
  text-align: center;
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  border: 1px solid rgba(68, 68, 68, 0.2);
  display: inline-block;
  border-radius: 2px;
  transition: all .2s ease;
  cursor: pointer;
}
.module-header .owl-prev:hover,
.module-header .owl-next:hover {
  color: #006367;
  border-color: #006367;
  transition: all 0.2s ease;
}
.module-header .slider-controls {
  position: absolute;
  top: 0;
  right: 0;
}
.widget {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 22px;
  line-height: 2.2rem;
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.widget .matosoft-slider-controls {
  position: absolute;
  top: 0;
  right: 0;
}
.widget .matosoft-slider-controls .owl-prev,
.widget .matosoft-slider-controls .owl-next {
  float: left;
  width: 25px;
  height: 40px;
  text-align: center;
  cursor: pointer;
}
.widget .matosoft-slider-controls i {
  line-height: 40px;
  line-height: 4rem;
}
.widget-title {
  background-color: #006367;
  padding: 5px 14px;
  padding: .5rem 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  font-family: 'Open Sans Condensed', sans-serif;
  position: relative;
}
.widget-title span {
  text-transform: uppercase;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: bold;
  display: block;
}
.widget_product_categories ul {
  padding-left: 0;
  margin: 0;
}
.widget_product_categories li {
  padding: 0;
  line-height: 22px;
  line-height: 2.2rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.widget_product_categories li:last-child {
  margin-bottom: 0;
}
.widget_product_categories li::before {
  display: none;
}
.widget_product_categories li.current-cat > ul,
.widget_product_categories li.current-cat-parent > ul {
  display: block;
  padding: 10px 0 0 20px;
}
.widget_product_categories li.current-cat > a,
.widget_product_categories li.current-cat-parent > a {
  font-weight: 600;
  color: #006367;
}
.widget_product_categories a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}
.widget_product_categories a:hover {
  color: #006367;
  text-decoration: underline;
}
.widget_product_categories .children {
  display: none;
}
.posts-list-item {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 15px;
  padding-bottom: 1.5rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.posts-list-item:last-child {
  margin-bottom: 0;
}
.posts-list-item__link {
  color: #444;
}
.posts-list-item__link:hover {
  color: #006367;
}
.posts-list-meta-item {
  float: left;
  margin-right: 25px;
  margin-right: 2.5rem;
  position: relative;
}
.posts-list-meta-item::after {
  position: absolute;
  width: 1px;
  height: 14px;
  height: 1.4rem;
  background-color: #999999;
  content: "";
  top: 4px;
  right: -12px;
}
.posts-list-meta-item:last-child {
  margin-right: 0;
}
.posts-list-meta-item:last-child::after {
  display: none;
}
.posts-list-meta-item--category {
  color: #006367;
}
.posts-list-meta-item---date {
  color: #999999;
}
.EPS_Super_Search_Widget .input-group {
  position: relative;
}
.EPS_Super_Search_Widget .input-group input.form-control {
  width: calc(100% - 90px);
}
.EPS_Super_Search_Widget .input-group-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.EPS_Super_Search_Widget .input-group-btn input {
  padding: 8px 20px 9px;
  padding: .8rem 2rem .9rem;
}
.page-sidead {
  margin-top: 40px;
  margin-top: 4rem;
}
.page-sidead:last-child {
  margin-bottom: 0;
}
.page-sidead a {
  display: block;
}
.page-sidead img {
  display: block;
}
@media screen and (max-width: 22.4375em) {
  .module-header .module-header__title {
    font-size: 2rem;
  }
}
.entry-content--404 {
  width: 950px;
  margin: 0 auto;
}
.single-header-image {
  position: relative;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.single-header-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.single-header-image__title {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  margin: 0;
  color: #fff;
}
.search-form-404 {
  background-color: rgba(68, 68, 68, 0.06);
  border: 1px solid rgba(68, 68, 68, 0.15);
  padding: 30px;
  padding: 3rem;
  margin-top: 30px;
  margin-top: 3rem;
}
.search-form-404 .search-form__toggle {
  display: none;
}
.search-form-404 .search-form-input__wrapper {
  float: left;
  width: calc(100% - 5rem - 10px);
}
.search-form-404 .search-form__input,
.search-form-404 .search-form__btn {
  line-height: 50px;
  line-height: 5rem;
  height: 50px;
  height: 5rem;
}
.search-form-404 .search-form__btn {
  padding: 0;
  width: 50px;
  width: 5rem;
  text-align: center;
  margin-left: 10px;
  margin-left: 1rem;
}
.main-content__title {
  font-size: 40px;
  font-size: 4rem;
  line-height: 50px;
  line-height: 5rem;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.main-content-header--category {
  padding-left: 56px;
  padding-left: 5.6rem;
  border-bottom: 2px solid #333;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  position: relative;
}
.main-content-header--category::before {
  background-image: url(../img/sprite.png);
  background-position: -170px -102px;
  background-repeat: no-repeat;
  content: "";
  width: 50px;
  width: 5rem;
  height: 40px;
  height: 4rem;
  display: block;
  position: absolute;
  left: 0;
}
.main-content-header--category .main-content__title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 30px;
  line-height: 3rem;
  padding: 5px 14px;
  padding: .5rem 1.4rem;
  display: inline-block;
  box-sizing: border-box;
  background-color: #e3e3e3;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  font-family: 'Open Sans Condensed', sans-serif;
}
.archive-tags {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.archive-tags a {
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 5px;
  background: rgba(51, 51, 51, 0.1);
  background-color: #f1f1f1;
  color: #444444;
  text-decoration: none;
}
.archive-tags a:hover {
  color: #006367;
}
.archive-tags .selected {
  background-color: #0073be;
  color: white;
}
.archive-tags .selected:hover {
  color: #fff;
}
.news-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news-item {
  margin-bottom: 40px;
  margin-bottom: 4rem;
  width: 100%;
}
.news-item-link,
.news-item-link__title {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 36px;
  line-height: 3.6rem;
  margin: 0;
  text-decoration: none;
  color: #333333;
}
.news-item-link:hover,
.news-item-link__title:hover {
  color: #00383a;
}
.news-item--title {
  width: 50%;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.news-item-box-item__link,
.news-item-box-item__title {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 27px;
  line-height: 2.7rem;
  color: #333333;
  text-decoration: none;
  margin: 0;
}
.news-item-box-item__link:hover,
.news-item-box-item__title:hover {
  color: #006367;
}
.news-item--big .news-item-box-item__link,
.news-item--big .news-item-box-item__title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 36px;
  line-height: 3.6rem;
}
.news-item-box-meta-item {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  line-height: 1.8rem;
  float: left;
  margin-bottom: 3px;
  margin-top: 3px;
  margin-right: 14px;
  margin-right: 1.4rem;
}
.news-item-box-meta-item:last-child {
  margin-right: 0;
}
.news-item-box-meta-item a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  line-height: 1.8rem;
  color: #999999;
}
.news-item-box-meta-item,
.news-item-box-meta-item a {
  color: #999999;
}
.news-item-box-meta-item:before,
.news-item-box-meta-item a:before {
  font-family: "FontAwesome";
  padding: 0px 0 3px 0;
  margin: 0 5px 0 0;
  text-align: left;
  float: left;
}
.news-item-box-meta-item--link {
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.news-item-box-meta-item--link:hover {
  border-bottom: 2px solid #006367;
}
.news-item-box-meta-item---comments::before {
  display: none;
}
.news-item-box-meta-item---comments .comments-link {
  display: block;
}
.news-item-box-meta-item---comments .comments-link::before {
  content: "\f0e6";
}
.news-item-box-meta-item---date::before {
  content: "\f017";
}
.news-item-box-meta-item--category {
  color: #006367;
  margin-right: 6px;
  margin-right: .6rem;
}
.news-item-box-meta-item--category:last-child {
  margin-right: 0;
}
.news-item-box-meta-item--category:last-child::after {
  display: none;
}
.news-item-box-meta-item--category::after {
  content: "•";
  display: inline-block;
}
.news-item--big .news-item-image {
  float: left;
  width: 300px;
}
.news-item--big .news-item-image img {
  height: auto;
  max-height: none;
}
.news-item--big .news-item-content {
  float: left;
  width: calc(100% - 300px);
  padding-left: 40px;
  padding-left: 4rem;
  box-sizing: border-box;
}
.post-type-archive-trasy .news-items {
  margin-bottom: 40px;
  margin-bottom: 4rem;
  margin: 0 -20px;
  margin: 0 -2rem;
}
.archive-map {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.mapa-tras {
  width: 100%;
}
.mapa-tras .filter-row {
  margin: 0 -20px 15px;
  margin: 0 -2rem 1.5rem;
}
.mapa-tras .filter-col {
  float: left;
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
  padding: 0 2rem;
}
#myMaps {
  width: auto !important;
}
.news-item--trasy {
  width: 33.333%;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
  padding: 0 20px;
  padding: 0 2rem;
}
.news-item--trasy .news-item-box-item__link,
.news-item--trasy .news-item-box-item__title {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 19px;
  line-height: 1.9rem;
  text-decoration: underline;
  font-weight: 600;
}
.news-item--trasy .news-item-box-item__link:hover,
.news-item--trasy .news-item-box-item__title:hover {
  text-decoration: underline;
  color: #006367;
}
.banner--no-border .archive-banner {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.archive-banner {
  margin: 0 0 40px;
  padding: 35px 0;
  width: 100%;
  text-align: center;
  border-radius: 2px;
  border-bottom: 1px solid rgba(68, 68, 68, 0.15);
  border-top: 1px solid rgba(68, 68, 68, 0.15);
}
.archive-banner a {
  display: block;
}
.archive-banner img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}
@media screen and (max-width: 47.9375em) {
  .archive-banner {
    margin-bottom: 2rem;
    padding: 2rem;
    box-sizing: border-box;
  }
  .news-items {
    margin: 0 -2rem;
  }
  .news-item {
    margin-bottom: 2rem;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .news-item--big .news-item-image {
    float: none;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 2rem;
  }
  .news-item--big .news-item-content {
    float: none;
    width: 100%;
    padding-left: 0;
  }
  .main-content__title {
    font-size: 3rem;
    line-height: 4rem;
  }
  .mapa-tras {
    width: 100%;
  }
  .mapa-tras .filter-row {
    margin: 0 -2rem;
  }
  .mapa-tras .filter-col {
    float: none;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
  }
  .news-item--trasy {
    width: 50%;
  }
  .column_r.master_color_soft_bg {
    float: none;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 29.9375em) {
  .news-item--title {
    width: 100%;
  }
  .news-item--trasy {
    width: 100%;
    margin-bottom: 1.2rem;
  }
}
.section--contact-items {
  padding: 30px 0 60px;
  padding: 3rem 0 6rem;
}
.contact-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -9px;
  margin: 0 -0.9rem;
}
.contact-item {
  width: 33.333%;
  text-align: center;
  padding: 0 9px;
  padding: 0 .9rem;
  box-sizing: border-box;
}
.contact-item-box {
  border-radius: 2px;
  border: 1px solid #ededed;
  height: 100%;
  padding: 21px 20px 27px;
  padding: 2.1rem 2rem 2.7rem;
  box-sizing: border-box;
}
.contact-item__icon {
  height: 45px;
  width: 48px;
  background-position: center;
  margin: 0 auto 14px;
  margin: 0 auto 1.4rem;
}
.contact-item__title {
  color: #00383a;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 32px;
  line-height: 3.2rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 5px;
  margin-bottom: .5rem;
}
.contact-item__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
  padding: 0 20px;
  padding: 0 2rem;
  display: block;
}
.section--company-info {
  padding: 0;
  overflow-y: hidden;
}
.company-info-list {
  position: relative;
  background-image: none;
  padding: 25px 0 30px;
  padding: 2.5rem 0 3rem;
}
.company-info-list::before {
  display: block;
  content: "";
  position: absolute;
  top: -17px;
  right: -55px;
  right: -5.5rem;
  width: 233px;
  height: 125px;
}
.company-info-item {
  float: left;
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 26px;
  line-height: 2.6rem;
  margin-right: 60px;
  margin-right: 6rem;
}
.company-info-item:last-child {
  margin-right: 0;
}
.section--branches {
  padding-top: 72px;
  padding-top: 7.2rem;
  padding-bottom: 30px;
  padding-bottom: 3rem;
}
.section-title--branches {
  margin-bottom: 41px;
  margin-bottom: 4.1rem;
}
.branches-slider-wrapper {
  position: relative;
  width: 1180px;
  margin: 0 auto;
}
.branches-slider-wrapper .slider-nav-btn--prev {
  left: -65px;
  left: -6.5rem;
}
.branches-slider-wrapper .slider-nav-btn--next {
  right: -65px;
  right: -6.5rem;
}
.branches-slide__image {
  margin-bottom: 9px;
  margin-bottom: .9rem;
}
.branches-slide__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 315px;
}
.branches-slide-content {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 23px;
  line-height: 2.3rem;
}
.branches-slide__name {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 32px;
  line-height: 3.2rem;
  color: #00383a;
  margin-bottom: 5px;
  margin-bottom: .5rem;
}
.branches-slide__address {
  margin-bottom: 14px;
  margin-bottom: 1.4rem;
}
.branches-slide__phone {
  color: #00383a;
  background-size: 20px 20px;
  background-position: left center;
  padding-left: 26px;
  padding-left: 2.6rem;
  margin-bottom: 1px;
  margin-bottom: .1rem;
}
.branches-slide__phone:hover {
  color: #00383a;
}
.branches-slide__email {
  display: block;
  background-size: 16px 11px;
  background-position: left center;
  padding-left: 26px;
  padding-left: 2.6rem;
  text-decoration: none;
  margin-bottom: 21px;
  margin-bottom: 2.1rem;
}
.branches-slide__email:hover {
  color: #006367;
}
.branches-slide__link {
  text-decoration: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAMCAYAAABfnvydAAAAiElEQVQoU4WQWxHCUAxETxTQKKEOsNDbGgBFIIEaoKCAOrooIEzoZOgLyG/ObrIr/Bl577tcYhwREkkfY80AXHIP7DCuNJqWQJcLDIe2GGcaPQQ0OMSZp/WIbMbQB/gCLQHjDhRAS6376YnZ0k0jpj/pyjKU0ycjJtyotVqL6UWdEKr1on7U/QJmtzYNCUFxoQAAAABJRU5ErkJggg==);
  padding-right: 20px;
  padding-right: 2rem;
  background-position: right center;
  background-repeat: no-repeat;
  display: inline-block;
}
@media screen and (max-width: 79.9375em) {
  .company-info-list {
    padding-right: 250px;
  }
  .company-info-list::before {
    right: 0;
  }
  .company-info-item {
    width: 50%;
    margin-right: 0;
  }
  .branches-slider-wrapper {
    width: 100%;
  }
  .branches-slider-wrapper .slider-nav-btn {
    top: 7.2rem;
  }
  .branches-slider-wrapper .slider-nav-btn--prev {
    left: 5rem;
  }
  .branches-slider-wrapper .slider-nav-btn--next {
    right: 5rem;
  }
  .branches-slide__image img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 63.9375em) {
  .contact-item__title {
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
  .company-info-list {
    padding-right: 0;
    padding-bottom: 10rem;
  }
  .company-info-list::before {
    right: 0;
    top: auto;
    bottom: -45px;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
  }
  .company-info-item {
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
}
@media screen and (max-width: 47.9375em) {
  .contact-item {
    width: 100%;
    margin-bottom: .9rem;
  }
  .contact-item:last-child {
    margin-bottom: 0;
  }
  .contact-item-box {
    padding: 2.1rem 1rem 2.7rem;
  }
  .contact-item__text {
    padding: 0;
  }
  .branches-slider-wrapper .slider-nav-btn {
    top: 7.2rem;
  }
  .branches-slider-wrapper .slider-nav-btn--prev {
    left: 3rem;
  }
  .branches-slider-wrapper .slider-nav-btn--next {
    right: 3rem;
  }
  .branches-slide__image img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 22.4375em) {
  .contact-item__title {
    font-size: 2rem;
  }
}
.featured-area {
  height: 520px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  overflow: hidden;
  padding-top: 40px;
  padding-top: 4rem;
}
.featured-item {
  width: 380px;
  height: 260px;
  box-sizing: border-box;
  position: relative;
  border-right: 1px solid #fff;
}
.featured-item--small:nth-child(even) {
  border-bottom: 1px solid #fff;
}
.featured-item--big {
  width: 560px;
  height: 100%;
  border-right: 1px solid #fff;
  border-bottom: 0;
}
.featured-item--big .featured-item-title {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 32px;
  line-height: 3.2rem;
}
.featured-item-link {
  display: block;
  width: 100%;
  height: 100%;
}
.featured-item-image {
  height: 100%;
}
.featured-item-image img {
  display: block;
  width: 100%;
  height: auto;
}
.featured-header {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  padding: 1rem;
  box-sizing: border-box;
  min-height: 90px;
  min-height: 9rem;
}
.featured-header a {
  color: #fff;
  text-decoration: none;
}
.featured-item-title {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 27px;
  line-height: 2.7rem;
  margin: 0;
  color: #fff;
}
.featured-content {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  margin-top: 10px;
  margin-top: 1rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.module-news-box {
  margin: 0 -20px;
  margin: 0 -2rem;
}
.module-news-box .news-item {
  float: left;
  width: 50%;
  padding: 0 20px;
  padding: 0 2rem;
  box-sizing: border-box;
}
.module-news-box .news-item-image {
  float: left;
  width: 215px;
  min-height: 120px;
}
.module-news-box .news-item-content {
  margin-left: 235px;
  margin-left: 23.5rem;
}
.news-item {
  box-sizing: border-box;
}
.news-item-image {
  display: block;
  position: relative;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
}
.news-item-image img {
  display: block;
  max-height: 120px;
  margin: 0 auto;
}
.news-item-link:hover {
  color: #006367;
}
.news-item-link:hover .news-item-title {
  color: #006367;
}
.news-item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 23px;
  line-height: 2.3rem;
  margin: 0;
}
.module-service-box {
  margin: 0 -8px;
  margin: 0 -0.8rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.module-service-box .news-item {
  width: 25%;
  padding: 0 8px;
  padding: 0 .8rem;
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.service-item-image {
  display: block;
  position: relative;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.05);
}
.service-item-image img {
  display: block;
  margin: 0 auto;
}
.service-item-link {
  text-decoration: none;
}
.service-item-link:hover {
  color: #006367;
}
.service-item-link:hover .service-item-title {
  color: #006367;
}
.service-item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 23px;
  line-height: 2.3rem;
  margin-bottom: 0;
}
.service-item-content {
  margin-top: 12px;
  margin-top: 1.2rem;
}
.module-interest-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
  margin: 0 -2rem;
}
.module-interest-box .news-item {
  width: 25%;
  padding: 0 20px;
  padding: 0 2rem;
  box-sizing: border-box;
}
.module-interest-box .interest-item-link {
  text-decoration: none;
}
.module-interest-box .interest-item-link:hover {
  color: #006367;
}
.module-interest-box .interest-item-link:hover .interest-item-title {
  color: #006367;
}
.module-interest-box .interest-item-title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 23px;
  line-height: 2.3rem;
  margin-bottom: 4px;
  margin-bottom: .4rem;
}
.interest-item-image {
  display: block;
}
.interest-item-image img {
  display: block;
}
.interest-item-content {
  margin-top: 12px;
  margin-top: 1.2rem;
}
@media screen and (max-width: 93.75em) {
  .featured-item {
    width: 25%;
    height: 50%;
  }
  .featured-item--big {
    width: 50%;
    height: 100%;
  }
  .featured-item--big .featured-item-title {
    font-size: 2.3rem;
    line-height: 3.2rem;
  }
  .featured-item-image {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .featured-item-image img {
    display: block;
    line-height: 1;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
  }
}
@media screen and (max-width: 72.5em) {
  .featured-area {
    height: 450px;
  }
}
@media screen and (max-width: 63.9375em) {
  .featured-area {
    height: 380px;
  }
}
@media screen and (max-width: 47.9375em) {
  .featured-area {
    -ms-flex-direction: row;
        flex-direction: row;
    height: 600px;
  }
  .featured-item {
    width: 25%;
    height: 30%;
    border-bottom: 0;
  }
  .featured-item--big {
    height: 70%;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .featured-item--small:nth-child(even) {
    border-bottom: 0;
  }
  .featured-item-title {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .module-news-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .module-news-box .news-item {
    margin-bottom: 2rem;
  }
  .module-news-box .news-item-image {
    float: none;
    margin: 0 auto 1.5rem;
  }
  .module-news-box .news-item-content {
    margin-left: 0;
  }
  .module-service-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .module-service-box .news-item {
    float: none;
    width: 50%;
  }
  .news-item-image,
  .service-item-image {
    background-color: transparent;
  }
  .module-interest-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .module-interest-box .news-item {
    width: 50%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .interest-item-content {
    text-align: center;
  }
  .interest-item-image img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 40.625em) {
  .featured-item {
    width: 50%;
    height: 25%;
    border-bottom: 0;
  }
  .featured-item--big {
    height: 50%;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 29.9375em) {
  .featured-area {
    -ms-flex-direction: row;
        flex-direction: row;
    height: 900px;
  }
  .featured-item {
    width: 100%;
    height: 20%;
    border-bottom: 1px solid #fff;
  }
  .featured-item:last-child {
    border-bottom: 0;
  }
  .featured-item--small:nth-child(even) {
    border-bottom: 1px solid #fff;
  }
  .featured-item--big {
    height: 20%;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .featured-header {
    min-height: 0;
  }
  .featured-content {
    display: none;
  }
  .module-news-box .news-item {
    width: 100%;
    float: none;
  }
  .module-news-box .news-item-content {
    text-align: center;
  }
  .module-news-box .news-item-box-meta {
    text-align: center;
  }
  .module-news-box .news-item-box-meta-item {
    float: none;
    display: inline-block;
  }
  .module-service-box .news-item {
    width: 100%;
  }
  .module-service-box .news-item-box-meta {
    text-align: center;
  }
  .module-service-box .news-item-box-meta-item {
    float: none;
    display: inline-block;
  }
  .service-item-content {
    text-align: center;
  }
  .module-interest-box .news-item {
    width: 100%;
  }
}
.search-topbar {
  padding-top: 14px;
  padding-top: 1.4rem;
  margin-bottom: 129px;
  margin-bottom: 12.9rem;
}
.search-topbar-text__label {
  color: #3f51b5;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 20px;
  line-height: 2rem;
  margin-bottom: 13px;
  margin-bottom: 1.3rem;
  display: inline-block;
  position: relative;
  padding-left: 82px;
  padding-left: 8.2rem;
}
.search-topbar-text__label::before {
  width: 72px;
  height: 1px;
  background-color: #3f51b5;
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  top: 1rem;
}
.search-topbar-text__title {
  color: #0e0e0e;
  font-family: 'Open Sans', sans-serif;
  font-size: 50px;
  font-size: 5rem;
  font-weight: 400;
  line-height: 60px;
  line-height: 6rem;
}
.search-results-list {
  padding: 0 125px;
  padding: 0 12.5rem;
  margin-bottom: 120px;
  margin-bottom: 12rem;
}
.search-title-item {
  margin-bottom: 82px;
  margin-bottom: 8.2rem;
}
.search-title-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 47.9375em) {
  .search-topbar {
    margin-bottom: 4rem;
  }
  .search-topbar-text__label {
    margin-bottom: 3.2rem;
  }
  .search-topbar-text__title {
    font-size: 3rem;
    line-height: 4rem;
  }
  .search-results-list {
    padding: 0;
  }
  .search-title-item {
    margin-bottom: 4.1rem;
  }
}
.main-content {
  margin: 0 -20px;
  margin: 0 -2rem;
}
.main-content__content {
  float: left;
  width: 75%;
  width: calc(100% - 340px);
  padding: 0 20px;
  padding: 0 2rem;
  box-sizing: border-box;
}
.main-content__content--full {
  float: none;
  width: 100%;
}
.main-content-sidebar {
  float: left;
  width: 25%;
  width: calc(340px);
  padding: 0 20px;
  padding: 0 2rem;
  box-sizing: border-box;
}
.main-content-sidebar--ts {
  padding: 40px 20px 0;
  padding: 4rem 2rem 0;
}
.admin-bar .sticky-sidebar--fixed {
  top: 82px;
  top: 8.2rem;
}
.sticky-sidebar--fixed {
  position: fixed;
  top: 50px;
  top: 5rem;
  transition: all .2s ease;
}
.entry-content {
  padding-bottom: 60px;
  padding-bottom: 6rem;
}
.single-meta {
  margin-bottom: 25px;
  margin-bottom: 2.5rem;
}
.single-meta-item {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  line-height: 1.8rem;
  color: #999999;
}
.single-meta-item::before {
  font-family: "FontAwesome";
  padding: 0px 0 3px 0;
  margin: 0 5px 0 0;
  text-align: left;
  float: left;
}
.single-meta-item---date::before {
  content: "\f017";
}
.single-tags {
  margin-top: 40px;
  margin-top: 4rem;
}
.single-tags a {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 15px;
  line-height: 1.5rem;
  padding: 7px 10px 8px 10px;
  border-radius: 2px;
  border-bottom: none;
  margin-bottom: 3px;
  color: #444444;
  background: rgba(51, 51, 51, 0.1);
  text-decoration: none;
}
.single-tags a:hover {
  background-color: #006367;
  color: #fff;
}
.single-question {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 27px;
  line-height: 2.7rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.single-tags--advice {
  margin-top: 30px;
  margin-top: 3rem;
}
.single-tags-title {
  background: #444444;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 15px;
  line-height: 1.5rem;
  padding: 7px 10px 8px 10px;
  padding: 0.7rem 1rem 0.8rem 1rem;
  margin-right: 5px;
  margin-right: 0.5rem;
  border-radius: 0.2rem;
}
.single-content-image {
  float: left;
  max-width: 50%;
  margin-right: 15px;
  margin-right: 1.5rem;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.single-content-image img {
  display: block;
}
.single-progress {
  margin-top: 25px;
  margin-top: 2.5rem;
}
.single-progress-step {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.single-progress-step::before {
  font-weight: 600;
}
.single-progress-step:last-child {
  margin-bottom: 0;
}
.single-progress-step-text {
  float: left;
  width: calc(100% - 300px);
  padding-right: 20px;
  padding-right: 2rem;
  box-sizing: border-box;
}
.single-progress-step-text--full {
  width: 100%;
  float: none;
}
.single-progress-step-image {
  float: right;
  width: 300px;
}
.single-progress-step-image a {
  display: block;
}
.single-progress-step-image img {
  display: block;
}
.single-excerpt {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 27px;
  line-height: 2.7rem;
  font-weight: 700;
}
@media screen and (max-width: 63.9375em) {
  .entry-content {
    padding-bottom: 3rem;
  }
  .main-content__content {
    float: none;
    width: 100%;
    padding: 0 2rem;
  }
  .main-content__content--full {
    float: none;
    width: 100%;
  }
  .main-content-sidebar {
    float: none;
    width: 100%;
    max-width: 340px;
    padding: 4rem 0 2rem;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
@media screen and (max-width: 47.9375em) {
  .main-content-sidebar {
    width: 100%;
    max-width: 340px;
  }
  .main-content-sidebar .herald-sidead img {
    width: 100%;
    max-width: 300px;
  }
  .single-content-image {
    float: none;
    width: 100%;
    max-width: 660px;
    margin: 0 auto 1.5rem;
  }
  .single-content-image img {
    margin: auto;
  }
  .sticky-sidebar img {
    width: 100%;
    max-width: 300px;
  }
}
@media screen and (max-width: 23.6875em) {
  .main-content-sidebar {
    width: 100%;
    max-width: 280px;
  }
}
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #006367;
}
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button {
  line-height: 30px;
  line-height: 3rem;
}
.woocommerce-MyAccount-navigation ol li:before,
ul li:before {
  font-family: "FontAwesome";
  content: "\f054";
  font-size: 13px;
  color: #cacaca;
  vertical-align: bottom;
  margin-right: 7px;
  transition: margin-right 200ms;
  background: none;
  position: inherit;
  width: auto;
  height: auto;
  display: inline;
  left: auto;
  top: auto;
  transition: all .2s ease;
}
.woocommerce-MyAccount-navigation ol li.is-active,
ul li.is-active {
  font-weight: 600;
}
.woocommerce-MyAccount-navigation ol li.is-active::before,
ul li.is-active::before {
  color: #000;
  transition: all .2s ease;
}
.woocommerce-MyAccount-navigation ol li:hover::before,
ul li:hover::before {
  color: #000;
  transition: all .2s ease;
}
.woocommerce-MyAccount-navigation ol li a,
ul li a {
  color: #4c4c4c;
  text-decoration: none;
}
.woocommerce-account .addresses .title h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  line-height: 3rem;
}
.woocommerce-MyAccount-content fieldset {
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.woocommerce .col2-set.addresses .col-1,
.woocommerce .col2-set.addresses .col-2 {
  float: left;
  width: 48%;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.woocommerce .col2-set.addresses .col-2 {
  float: right;
}
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  background-color: #f7f7f7;
  border-left: 1px solid rgba(0, 0, 0, 0.01);
  border-right: 1px solid rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(0, 0, 0, 0.01);
  padding: 12px 15px 12px 40px !important;
  padding: 1.2rem 1.5rem 1.2rem 4rem !important;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 40px;
  line-height: 4rem;
}
.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before {
  font-family: "FontAwesome";
  top: 15px;
  left: 15px;
  line-height: 35px;
  line-height: 3.5rem;
}
.woocommerce .woocommerce-message::before {
  content: "\f00c";
  color: #8fae1b;
}
.woocommerce .woocommerce-error::before {
  content: "\f071";
  color: #b81c23;
}
.woocommerce .woocommerce-info:before {
  content: "\f05a";
  color: #1e85be;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt {
  background-color: #006367;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 30px;
  padding: .5rem 3rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: normal;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover {
  background-color: #006367;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  color: #fff;
}
.woocommerce #respond input#submit.wc-forward,
.woocommerce a.button.wc-forward,
.woocommerce button.button.wc-forward,
.woocommerce input.button.wc-forward,
.woocommerce a.button.alt.wc-forward {
  line-height: 30px;
  line-height: 3rem;
}
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button:disabled[disabled],
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled] {
  color: #fff;
  padding: 5px 14px;
  padding: .5rem 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}
.woocommerce a.button.alt {
  line-height: 30px;
  line-height: 3rem;
}
.woocommerce table.shop_table {
  border: 0;
}
.woocommerce table.shop_table td {
  border-top: 0;
}
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  padding: 10px;
}
.woocommerce table.shop_table .product-thumbnail a img {
  display: block;
}
.woocommerce table.shop_table p {
  margin: 0;
}
.woocommerce .product-thumbnail-wrap {
  height: 300px;
}
.woocommerce .product-thumbnail-wrap img {
  display: block;
  height: 100%;
  width: auto;
}
.woocommerce .product-thumbnail-wrap:hover {
  opacity: .8;
}
.woocommerce ul.products li.product {
  height: 435px;
  margin-bottom: 60px;
  margin-bottom: 6rem;
}
.woocommerce ul.products li.product::before {
  display: none;
}
.woocommerce ul.products li.product .button {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #006367;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
  line-height: 3rem;
  padding: 5px 30px;
  padding: .5rem 3rem;
  font-weight: normal;
}
.woocommerce ul.products li.product .button:hover {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14.2px;
  font-size: 1.42rem;
  line-height: 23px;
  line-height: 2.3rem;
  color: #333333;
}
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title {
  text-decoration: underline;
}
.woocommerce ul.products li.product .price {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  margin: 0;
}
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins {
  font-weight: normal;
  display: inline-block;
  text-decoration: none;
}
.woocommerce ul.products li.product .price del .amount {
  font-weight: normal;
  text-decoration: line-through;
  color: #999999;
}
.woocommerce ul.products li.product a img {
  width: auto;
  margin: 0 auto;
}
.woocommerce nav.woocommerce-pagination ul {
  padding: 0;
  margin: 0;
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
  margin: 0 2px;
  margin: 0 .2rem;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: block;
  height: 40px;
  height: 4rem;
  line-height: 40px;
  line-height: 4rem;
  width: 40px;
  width: 4rem;
  padding: 0;
  border-radius: 2px;
  color: #006367;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background-color: #006367;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: #006367;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li::before {
  display: none;
}
.woocommerce .related.products {
  margin-top: 40px;
  margin-top: 4rem;
}
.woocommerce .related.products:before {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.woocommerce figure {
  margin: 0;
}
.woocommerce .product_meta .posted_in,
.woocommerce .product_meta .tagged_as {
  font-weight: bold;
  font-weight: 600;
}
.woocommerce .product_meta .posted_in a,
.woocommerce .product_meta .tagged_as a {
  font-weight: 400;
}
.woocommerce .product_meta span {
  display: block;
}
.woocommerce div.product div.images img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
}
.woocommerce div.product div.summary .price.price-main {
  margin-top: 20px;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
.woocommerce div.product form.cart {
  padding-top: 20px;
  padding-top: 2rem;
}
.woocommerce div.product form.cart .button {
  background-color: #006367;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 30px;
  line-height: 3rem;
  padding: 5px 30px;
  padding: .5rem 3rem;
  font-weight: normal;
}
.woocommerce div.product form.cart .button:hover {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  line-height: 35px;
  line-height: 3.5rem;
  padding-bottom: 0;
  padding: 0;
}
.woocommerce div.product form.cart .variations td select,
.woocommerce div.product form.cart .variations th select {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-bottom: 1rem;
}
.woocommerce div.product form.cart .variations .reset_variations {
  font-size: 12px;
  font-size: 1.2rem;
  text-transform: uppercase;
  border: 1px solid;
  padding: 10px 20px;
  vertical-align: top;
  border-radius: 4px;
  border-color: rgba(68, 68, 68, 0.2);
  margin: 0;
  color: #989898;
  text-decoration: none;
}
.woocommerce div.product form.cart .variations .reset_variations:hover {
  color: red;
  border: 1px solid red;
}
.woocommerce div.product form.cart .variations .reset_variations:before {
  display: inline-block;
  font-family: 'FontAwesome';
  content: "\f00d";
  margin-right: 5px;
}
.woocommerce div.quantity {
  margin-right: 10px;
  margin-right: 1rem;
}
.woocommerce div.quantity .qty {
  line-height: 40px;
  line-height: 4rem;
  height: 40px;
  height: 4rem;
  width: 65px;
  width: 6.5rem;
}
.product_meta {
  clear: both;
  font-size: 14px;
  font-size: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(0, 0, 0, 0.01);
  padding: 10px 0;
}
.woocommerce-cart table.cart input.button {
  padding: 5px 14px;
  padding: .5rem 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}
.woo-cf {
  display: none;
}
@media screen and (max-width: 79.9375em) {
  .woocommerce .products ul,
  .woocommerce ul.products {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .woocommerce .products ul li.product,
  .woocommerce ul.products li.product {
    height: auto;
    text-align: center;
    width: 33.333%;
    margin-right: 0;
  }
  .woocommerce .products ul li.product .button,
  .woocommerce ul.products li.product .button {
    position: relative;
  }
  .woo-cf {
    display: block;
  }
}
@media screen and (max-width: 63.9375em) {
  .woocommerce .form-wppp-select {
    margin-bottom: 1.2rem;
  }
  .woocommerce .form-wppp-select,
  .woocommerce .woocommerce-ordering {
    float: none !important;
    margin-left: 0 !important;
  }
  .woocommerce .woocommerce-ordering {
    margin-bottom: 4rem;
  }
  .woocommerce .woocommerce-pagination {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .woocommerce .products ul,
  .woocommerce ul.products {
    margin: 0 -2rem;
  }
  .woocommerce .products ul li.product,
  .woocommerce ul.products li.product {
    width: 50%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 29.9375em) {
  .woocommerce .products ul li.product,
  .woocommerce ul.products li.product {
    width: 100%;
  }
}
.js-handler {
  display: block;
  float: right;
}
.js-handler span {
  background: transparent url(../images/bullet_arrow_up.png) center center no-repeat;
  display: block;
  padding: 5px 1px;
  width: 16px;
  height: 16px;
}
.js-handler .open {
  background-image: url(../images/bullet_arrow_down.png);
}
.widget_awpcp-categories .top-level-categories p.top-level-category {
  background: none;
  line-height: 8px;
  line-height: .8rem;
  margin-bottom: 3px;
  padding: 0;
  text-align: left;
}
.widget_awpcp-categories #awpcpcatlayout .top-level-categories .sub-categories {
  margin-bottom: 0;
  margin-left: 0;
}
.widget_awpcp-categories .top-level-categories .sub-categories li:before {
  content: 'â€”';
  margin-right: 3px;
}
.widget_awpcp-categories .top-level-categories .sub-categories li {
  margin-bottom: 0;
}
.awpcp-page .awpcp-form-spacer {
  margin: 1px 1px 10px;
  padding: 1px;
}
.awpcp-page .awpcp-form-spacer label {
  display: block;
}
.awpcp-page .awpcp-form-spacer .secondary-label {
  display: inline;
  font-weight: normal;
}
.awpcp-page .awpcp-form-spacer .inline {
  display: inline;
}
.awpcp-page .awpcp-form-spacer .helptext {
  display: block;
  font-weight: normal;
  font-size: 0.9em;
}
.awpcp-page .awpcp-form-spacer .hidden {
  display: none;
}
.awpcp-page .awpcp-range-search label,
.awpcp-page .awpcp-date-range-search label {
  display: inline;
  font-weight: normal;
  margin-right: 2px;
}
.awpcp-page .awpcp-range-search input,
.awpcp-page .awpcp-date-range-search input {
  width: 60px;
  margin-right: 5px;
}
.awpcp-page .awpcp-date-range-search input {
  width: 200px;
}
.awpcp-page .awpcp-payment-methods-table tr td {
  vertical-align: middle;
}
.awpcp-page .awpcp-credit-plans-table {
  border-bottom: none;
}
.awpcp-page .awpcp-credit-plans-table tfoot .clear-selection input {
  display: none;
}
.awpcp-page .awpcp-credit-plans-table tfoot .clear-selection label {
  background: #DDD;
  display: inline-block;
  font-size: .9em;
  font-weight: normal;
  line-height: 1em;
  padding: 4px 6px;
}
.awpcp-page .awpcp-credit-plans-table tfoot .clear-selection label:hover {
  background: #EEE;
  color: #000;
}
.awpcp-page .awpcp-transaction-items-table .amount {
  text-align: right;
}
.awpcp-page .awpcp-transaction-items-table tfoot {
  background: #EEE;
}
.awpcp-page .awpcp-transaction-items-table tfoot .row-header {
  font-weight: bold;
  text-align: right;
}
@media only screen and (max-width: 50em) {
  .awpcp-page .awpcp-transaction-items-table tr td {
    padding-left: 30% !important;
  }
}
.awpcp-page .awpcp-form-spacer .characters-left {
  background: #333;
  color: #FFF;
  display: inline-block;
  font-size: .9em;
  font-weight: normal;
  margin: 4px 0 0;
  padding: 2px 8px;
}
.awpcp-page .awpcp-form-spacer-title .characters-left {
  margin-top: 0;
  margin-left: 4px;
}
.awpcp-page .awpcp-form-spacer .awpcp-textarea {
  display: block;
}
.awpcp-page .awpcp-delete-ad-form {
  border: 1px solid #CC0000;
  background-color: #FFEBE8;
  padding: 8px 12px;
}
.awpcp-page .awpcp-delete-ad-form .confirm {
  display: none;
}
.awpcp-page .awpcp-delete-ad-form span.confirm {
  font-weight: bold;
  font-style: italic;
}
.awpcp-page .awpcp-preview-ad-form {
  border: 1px solid #E6DB55;
  background-color: #FFFBCC;
  padding: 8px 12px;
}
.awpcp-admin-listings-place-ad .awpcp-inner-content,
.awpcp-admin-listings-edit-ad .awpcp-inner-content,
.awpcp-admin-listings-renew-ad .awpcp-inner-content {
  background: #FBFBFB;
  border: 1px solid #DFDFDF;
  padding: 8px 14px;
}
.fixfloat {
  clear: both;
  display: block;
  overflow: hidden;
}
#awpcpqsearch {
  background: #f2f2f2;
  padding: 5px 0 0 5px;
  margin: 10px auto 10px auto;
}
#awpcpqsearch select {
  width: 112px;
  padding: 4px;
}
#awpcpqsearch b {
  font-size: 12px;
}
.messagedisplay {
  padding: 5px;
  background-color: #fffbcc;
}
.tenpad {
  padding: 100px;
}
table.listcatsh {
  width: 100%;
  padding: 0;
  border: none;
  border: 1px solid #dddddd;
}
table.listcatsh td {
  background-color: #F4F4F4;
  border: none;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 5px;
  vertical-align: middle;
}
table.listcatsh tr.special td {
  border-bottom: 1px solid #ff0000;
}
table.listcatsc {
  width: 100%;
  padding: 0;
  border: none;
  border: 1px solid #dddddd;
}
table.listcatsc td {
  width: 33%;
  border: none;
  vertical-align: middle;
  padding: 5px;
  font-weight: normal;
}
table.listcatsc tr.special td {
  border-bottom: 1px solid #ff0000;
}
.toplevelitem {
  color: #333333;
  font-weight: bold;
  text-decoration: none;
}
.toplevelitem a {
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}
.toplevelitem a:hover {
  font-weight: bold;
  text-decoration: none;
}
.toplevelitem a:visited {
  text-decoration: none;
  color: #333333;
}
.postaclassified {
  float: left;
}
.postaclassified a {
  font-size: 14px;
  color: #444444;
}
.scbox {
  border: 1px solid #dddddd;
}
.scbutton {
  border: 1px dotted #dddddd;
  background: #cccccc;
  font-size: 14px;
  color: #444444;
}
.classisearch {
  float: right;
}
.uiwelcome {
  margin: 0 0 20px 0;
}
#awpcp-form-spacer {
  margin: 5px 1px 1px 1px;
  padding: 1px 1px 1px 1px important;
}
.awpcp-extra-field-wrapper {
  margin: 1px 1px 1px 1px;
  padding: 1px 1px 1px 1px;
}
.awpcp-page ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#classiwrapper form fieldset {
  margin-bottom: 20px;
}
.editclassified {
  float: right;
}
.headeritem {
  width: 98%;
  padding: 5px;
  font-weight: bold;
  color: #333333;
}
.buywith {
  background: #eeeeee;
  border-top: 1px dotted #dddddd;
  border-bottom: 1px dotted #dddddd;
  color: #333333;
  font-weight: bold;
  font-size: medium;
  padding: 10px;
  margin-bottom: 20px;
}
.classimenu1 {
  padding: 15px;
}
.browseads {
  padding: 10px;
}
table.displayads {
  width: 100%;
  padding: 0;
  border: none;
}
table.displayads td {
  width: 33%;
  font-size: 12px;
  border: none;
  background-color: #F4F4F4;
  vertical-align: middle;
  font-weight: bold;
}
table.displayads tr.special td {
  border-bottom: 1px solid #dddddd;
}
table.displayads .displayadsicell {
  background: none;
  border: none;
  font-weight: normal;
}
.cl-adsense {
  margin: 10px 0 10px 0;
  text-align: center;
  background: #f2f2f2;
  padding: 10px;
}
.imgtransparency {
  -moz-opacity: .2;
  filter: alpha(opacity=20);
  opacity: 0.2;
}
.awpcpwidget {
  clear: both;
  overflow: hidden;
}
.awpcplatestthumb {
  background: #F2F2F2;
  margin: 5px 0;
  padding: 5px;
  float: left;
  border-radius: 5px 5px 5px 5px;
}
.awpcplatestthumb a {
  display: block;
}
.awpcplatestthumb a span {
  display: block;
  margin: 10px;
}
.awpcplatestthumb a img {
  display: block;
  max-width: 300px;
}
.awpcp-login-form form {
  display: block;
  margin: 10px auto;
  width: 220px;
}
.awpcp-login-form form p {
  margin-bottom: 2px;
}
.awpcp-login-form form .input {
  width: 200px;
}
.awpcp-login-form form .login-password {
  margin-bottom: 10px;
}
.awpcp-login-form form .login-remember {
  float: left;
}
.awpcp-login-form form .login-submit {
  text-align: right;
}
.awpcp-login-form .nav {
  font-size: .9em;
  padding: 0;
  text-align: center;
}
.itemprice .price {
  font-weight: bold;
  color: #ff0000;
}
.displayadshead {
  padding: 10px;
}
.displayadscellimg {
  border: 1px solid #eeeeee;
  padding: 5px;
}
img.awpcpbrowseadsimg {
  width: 60px;
}
.displayadscellheadline {
  padding: 5px;
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}
.displayadscelllocation {
  padding: 5px;
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
}
.displayadscellviews {
  padding: 5px;
  border-right: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.displayadscellposted {
  padding: 5px;
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  font-size: x-small;
}
.changecategoryselect {
  float: left;
  margin-bottom: 10px;
  padding: 5px;
}
.changecategoryselect .awpcp-category-dropdown-container {
  float: left;
}
.pager {
  float: right;
}
.pager a {
  padding: 2px;
  border: 1px solid #cccccc;
}
#awpcpcatlayout {
  width: 100%;
}
#awpcpcatlayout .awpcpcatlayoutleft {
  width: 70%;
  float: left;
}
#awpcpcatlayout .awpcpcatlayoutright {
  width: 25%;
  float: right;
  border-left: 1px solid #dddddd;
}
#awpcpcatlayout .awpcpcatlayoutright ul {
  list-style: none;
  margin-left: 10px;
}
#awpcpcatlayout .awpcpcatlayoutright ul li {
  float: left;
  list-style: none;
  margin: 0;
}
#awpcpcatlayout .awpcpcatlayoutright ul li ul li {
  margin: 3px 0 3px 0;
  padding-right: 5px;
}
#awpcpcatlayout .awpcpcatlayoutright span {
  font-weight: bold;
}
#awpcpcatlayout ul.awpcp-region-control-sidelist li {
  float: none;
}
p.maincategoryclass {
  background: #eeeeee;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  margin: 0 0 3px 0;
}
.awpcp-category-icon {
  display: inline-block;
  margin: 0 4px;
}
.awpcp-category-icon-image,
.categoryicon {
  box-sizing: border-box;
  vertical-align: middle;
  max-width: 100%;
}
.sub-categories .awpcp-category-icon {
  margin-left: 0;
}
.theuploaddiv .button {
  margin-top: 20px;
  padding: 6px;
}
div.theuploaddiv {
  display: block;
  padding: 10px;
}
.finishbutton {
  background: #f2f2f2;
  height: auto !important;
  min-height: 60px;
  width: 90%;
  padding: 14px;
}
.finishbutton .finishbuttonleft {
  float: left;
  width: 60%;
  margin-right: 25px;
}
.finishbutton .finishbuttonleft b {
  font-weight: bold;
}
.finishbutton .finishbuttonright {
  float: right;
}
.finishbutton .button {
  text-align: center;
  padding: 6px;
  margin: 10px 0;
}
p.uploaderror {
  padding: 5px;
  background: #ffffcc;
  color: #000000;
}
div.unsetsavedlocationslink {
  clear: both;
  padding: 5px;
  background: #f2f2f2;
  width: 300px;
  text-align: center;
}
.adviewed {
  margin: 10px 0;
  border-top: 1px dotted #333333;
  padding-top: 10px;
}
.dropdownparentcategory {
  background-color: #eeeeee;
  margin-bottom: 3px;
  color: #000000;
}
.displayaditemsodd {
  background: #f2f2f2;
  width: 100%;
  margin-bottom: 10px;
}
.displayaditemseven {
  width: 100%;
  margin-bottom: 10px;
}
.twitter-share-button {
  background: transparent url('../images/tweetn.png') no-repeat 0 0;
  direction: ltr;
  display: block;
  margin-top: 5px;
  width: 55px;
  height: 22px;
  text-align: left;
  text-indent: -9999px;
}
.facebook-share-button {
  background: url(../images/fbshare.png) no-repeat 0 0;
  display: block;
  height: 18px;
  width: 57px;
}
#js_error {
  color: #cf0000;
  border: 1px dotted #cc0000;
  background-color: #fee;
  text-align: center;
  margin-bottom: 12px !important;
  padding-top: 5px !important;
}
p.ad_status_msg {
  background: none repeat scroll 0 0 #A2C9DB;
  padding: 10px;
}
.awpcp-extra-field-category-root,
.awpcp-extra-field-always-visible {
  display: block;
}
.awpcp-extra-field-hidden {
  display: none;
}
.awpcp-extra-fields {
  margin-bottom: 10px;
}
.awpcp-extra-fields .first-column {
  clear: left;
}
.awpcp-extra-fields-columns-2 .cladinfo {
  float: left;
  margin-left: 2.5%;
  margin-right: 2.5%;
  margin-bottom: 10px;
  width: 45%;
}
.awpcp-extra-fields-columns-2 .first-column {
  margin-left: 0;
  margin-right: 5%;
}
.awpcp-extra-fields-columns-2 .last-column {
  margin-left: 5%;
  margin-right: 0;
}
.awpcp-extra-fields-columns-3 .cladinfo {
  float: left;
  margin: 0 1.5% 10px;
  width: 30%;
}
.awpcp-extra-fields-columns-3 .first-column {
  margin-left: 0;
  margin-right: 3%;
}
.awpcp-extra-fields-columns-3 .last-column {
  margin-left: 3%;
  margin-right: 0;
}
#classiwrapper .awpcp-videos {
  clear: both;
  margin-top: 10px;
}
#classiwrapper .awpcp-videos-title {
  font-weight: bold;
}
#classiwrapper .awpcp-videos-grid-item {
  float: left;
  list-style: none;
  margin: 10px;
}
#classiwrapper .awpcp-videos-grid-item a {
  background: #626262;
  border: 1px solid #313131;
  display: inline-block;
  padding: 9px;
}
#classiwrapper .awpcp-videos-list-item {
  list-style: none;
  margin: 10px 0;
}
#classiwrapper .awpcp-attachments {
  clear: both;
  margin-top: 10px;
}
#classiwrapper .awpcp-attachments-title {
  font-weight: bold;
}
#classiwrapper .awpcp-attachments-list {
  margin: 0;
  padding: 0;
}
#classiwrapper .awpcp-attachments-list li {
  list-style-type: circle;
  list-style-position: inside;
  margin: 0;
}
.awpcp-textfield,
.inputbox,
.awpcp-textarea {
  box-sizing: border-box;
  border: 1px solid #888888;
  width: 100%;
}
.awpcp-textfield,
.inputbox {
  padding: 5px;
  background-color: #ffffff;
  color: #000000;
}
@media only screen and (max-width: 60em) {
  .awpcp-page .button,
  .awpcp-page input[type="submit"] {
    margin-bottom: 5px;
    width: 100%;
  }
  .awpcp-dropdown,
  .awpcp-textfield,
  .inputbox,
  .awpcp-textarea {
    width: 100%;
  }
}
.is-hidden,
.is-hidden[type="reset"],
.is-hidden[type="button"],
.is-hidden[type="submit"] {
  display: none;
}
.is-visible-inline-block {
  display: inline-block !important;
}
#TB_closeWindow {
  box-sizing: content-box;
}
.clearfix:after,
.awpcp-clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
* html .clearfix,
* html .awpcp-clearfix {
  zoom: 1;
}
*:first-child + html .clearfix,
*:first-child + html .awpcp-clearfix {
  zoom: 1;
}
.align-text-right {
  text-align: right;
}
.align-text-left {
  text-align: left;
}
.awpcp-clearboth {
  clear: both;
}
.awpcp-clearleft {
  clear: left;
}
.awpcp-hidden {
  display: none;
}
.awpcp-hide-if-js {
  display: none;
}
.no-js .awpcp-hide-if-js {
  display: block;
}
.awpcp-width-20p {
  width: 20%;
}
.awpcp-inline-label {
  display: inline-block;
}
.awpcp-block-label {
  display: block;
}
.awpcp-list {
  margin-right: 0;
}
.awpcp-list > li {
  text-align: left;
}
.awpcp-list-no-style {
  list-style-type: none;
  padding: 0;
}
.awpcp-box {
  background: #FAFAFA;
  padding: 10px;
}
.awpcp-rounded-box {
  border-radius: 2px;
}
.awpcp-bordered-box {
  border: 1px solid #D2D2D2;
}
.awpcp-button {
  border: 1px solid #D2D2D2;
  border-radius: 2px;
  background: #FDFDFD;
  border-color: #CCC;
  cursor: pointer;
  display: block;
  padding: 6px 8px 6px;
}
.awpcp-button:hover {
  background: #fff;
  border-color: #d0d0d0;
}
.awpcp-button:active {
  background: #BBB;
  border-color: #999;
  color: #FFF;
}
#classiwrapper .awpcp-message {
  background-color: #FFFBCC;
  border: 1px solid #CCC;
  color: #333;
  margin: 10px 0;
  padding: 8px 12px;
}
#classiwrapper .awpcp-message.updated {
  border-color: #E6DB55;
}
#classiwrapper .awpcp-message.error {
  border-color: #CC0000;
}
#classiwrapper .awpcp-message.info {
  border-color: #00A1CE;
}
#classiwrapper .awpcp-message.ghost {
  display: none;
}
#classiwrapper .awpcp-message p {
  margin: 0;
}
#classiwrapper .awpcp-updated {
  border-color: #E6DB55;
  display: block !important;
}
#classiwrapper .awpcp-error {
  background-color: #FFEBE8;
  border-color: #CC0000;
  color: #ff0000;
  font-weight: normal;
  font-size: 14px;
}
.wrap div.awpcp-inline-form-error {
  background: #FFF;
  border-radius: 3px;
  border-color: #D15151;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  color: #555;
  margin: .5em;
  padding: 0.5em 0.7em;
}
.awpcp-table {
  border: none;
  margin: 0 0 1.625em;
  width: 100%;
}
.awpcp-table th,
.awpcp-table td {
  padding: 6px;
  text-align: left;
}
.awpcp-table th {
  background: #EFEFEF;
  font-weight: bold;
}
.awpcp-table td {
  border-top: 1px solid #DDDDDD;
}
@media only screen and (max-width: 50em) {
  table.awpcp-table table,
  .awpcp-table table,
  table.awpcp-table thead,
  .awpcp-table thead,
  table.awpcp-table tbody,
  .awpcp-table tbody,
  table.awpcp-table th,
  .awpcp-table th,
  table.awpcp-table td,
  .awpcp-table td,
  table.awpcp-table tr,
  .awpcp-table tr {
    display: block;
  }
  table.awpcp-table th,
  .awpcp-table th {
    border: none;
  }
  table.awpcp-table thead tr,
  .awpcp-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  table.awpcp-table tbody tr th,
  .awpcp-table tbody tr th {
    padding-left: 10px;
  }
  table.awpcp-table tr,
  .awpcp-table tr {
    border: 1px solid #ccc;
  }
  table.awpcp-table tr td,
  .awpcp-table tr td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 60% !important;
    white-space: normal;
    text-align: left;
  }
  table.awpcp-table tr td:before,
  .awpcp-table tr td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  table.awpcp-table tr td:before,
  .awpcp-table tr td:before {
    content: attr(data-title);
  }
}
.awpcp-listing-primary-image-listing-link {
  display: inline-block;
  position: relative;
}
.awpcp-listing-excerpt {
  background: #F9F9F9;
  box-sizing: border-box;
  padding: 5px;
}
.awpcp-listing-excerpt-thumbnail {
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}
.awpcp-listing-primary-image-listing-link {
  display: block;
}
.awpcp-listing-primary-image-thumbnail {
  width: 100%;
}
.awpcp-listing-excerpt-content .awpcp-listing-title {
  margin: 0 0 10px;
}
.awpcp-listing-excerpt-extra {
  margin-top: 15px;
}
.awpcp-listing-excerpt-small,
.awpcp-listing-excerpt-medium {
  padding: 10px;
}
.awpcp-listing-excerpt-small .awpcp-listing-excerpt-thumbnail,
.awpcp-listing-excerpt-medium .awpcp-listing-excerpt-thumbnail {
  margin: 0 20px 20px 0;
  float: left;
  width: 50%;
}
.awpcp-listing-excerpt-small .awpcp-listing-title,
.awpcp-listing-excerpt-medium .awpcp-listing-title {
  margin-top: 10px;
}
.awpcp-listing-excerpt-medium .awpcp-listing-excerpt-thumbnail {
  width: auto;
}
.awpcp-listing-excerpt-medium .awpcp-listing-primary-image-thumbnail {
  width: auto;
}
.awpcp-billing-form fieldset {
  margin-bottom: 30px !important;
}
.awpcp-billing-form label {
  float: left;
  margin-right: 15px;
  text-align: right;
  width: 170px;
}
.awpcp-billing-form .textfield {
  width: 270px;
}
.awpcp-billing-form .short {
  width: 50px;
}
.awpcp-billing-form .awpcp-form-group {
  float: left;
}
.awpcp-billing-form .awpcp-form-group label {
  display: block;
  float: none;
  width: auto;
}
.awpcp-billing-form .awpcp-error {
  clear: both;
  display: block;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label {
  margin-right: 2px;
  width: 37px;
  height: 23px;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label input,
.awpcp-billing-form .awpcp-billing-credit-card-type label span {
  display: none;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label .cclogo {
  background: url(../images/payment-icons-sprite.png) -1px -31px no-repeat;
  border: 1px solid #DDD;
  display: block;
  opacity: 1;
  width: 35px;
  height: 21px;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label .mastercard {
  background-position: -1px -61px;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label .discover {
  background-position: -1px -91px;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label .amex {
  background-position: -1px -121px;
}
.awpcp-billing-form .awpcp-billing-credit-card-type label .fade {
  opacity: 0.45;
}
.awpcp-billing-table-form-fields {
  border: none;
}
.awpcp-billing-table-form-field th,
.awpcp-billing-table-form-field td {
  border: none;
  padding: 8px 0;
}
.awpcp-category-dropdown {
  margin-right: 5px;
}
.awpcp-category-dropdown :last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 30em) {
  .awpcp-category-dropdown {
    margin-right: 0;
  }
}
#awpcpcatlayout .showcategoriesmainlist {
  clear: left;
  display: block;
  list-style: none;
}
#awpcpcatlayout .showcategoriesmainlist li {
  float: left;
  list-style: none;
  padding: 0;
  margin: 3px 2% 5px 0;
}
#awpcpcatlayout .showcategoriesmainlist li a {
  text-decoration: none;
}
#awpcpcatlayout .showcategoriesmainlist li ul {
  margin: 0 0 20px 10px;
  list-style: none;
}
#awpcpcatlayout .showcategoriesmainlist li.columns-1 {
  width: 100%;
  margin: 3px 0 5px;
}
#awpcpcatlayout .showcategoriesmainlist li.columns-2 {
  width: 48%;
}
#awpcpcatlayout .showcategoriesmainlist li.columns-3 {
  width: 31%;
}
#awpcpcatlayout .showcategoriesmainlist li.columns-4 {
  width: 23%;
}
#awpcpcatlayout .showcategoriesmainlist li.columns-5 {
  width: 18%;
}
#awpcpcatlayout .showcategoriessublist li {
  float: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: none;
}
.awpcp-categories-list .top-level-category .js-handler {
  margin: 4px 10px 0 0;
}
@media screen and (max-width: 44em) {
  #awpcpcatlayout .showcategoriesmainlist {
    padding: 0;
  }
  #awpcpcatlayout .showcategoriesmainlist li.columns-1,
  #awpcpcatlayout .showcategoriesmainlist li.columns-2,
  #awpcpcatlayout .showcategoriesmainlist li.columns-3,
  #awpcpcatlayout .showcategoriesmainlist li.columns-4,
  #awpcpcatlayout .showcategoriesmainlist li.columns-5 {
    width: 100%;
  }
}
.awpcp-classifieds-search-bar {
  margin: 8pt 0;
}
.awpcp-classifieds-search-bar form {
  margin: 0;
}
.awpcp-classifieds-search-bar--query-field {
  box-sizing: border-box;
  float: left;
  margin: 0;
  padding: 0 4px 0 0;
  width: 70%;
}
.awpcp-classifieds-search-bar--query-field input[type="text"] {
  width: 100%;
}
.awpcp-classifieds-search-bar--submit-button {
  box-sizing: border-box;
  float: left;
  margin: 0;
  width: 30%;
}
.awpcp-classifieds-search-bar--submit-button input[type="submit"] {
  margin: 0;
  width: 100%;
}
.awpcp-classifieds-search-bar--advanced-search-link {
  clear: both;
  font-size: .8em;
  margin: 2px 0 0;
  padding: 0 4px;
  text-align: right;
}
.awpcp-classifieds-search-bar-tiny .awpcp-classifieds-search-bar--query-field {
  float: none;
  padding: 0;
  margin-bottom: 8pt;
  width: 100%;
}
.awpcp-classifieds-search-bar-tiny .awpcp-classifieds-search-bar--submit-button {
  float: none;
  width: 100%;
}
.awpcp-classifieds-menu {
  margin: 8pt 0;
  padding: 0;
}
.awpcp-classifieds-menu--menu-item {
  box-sizing: border-box;
  float: left;
  list-style: none;
  padding-right: 4pt;
  margin: 0 0 4pt;
}
.awpcp-classifieds-menu--menu-item-link {
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}
.awpcp-classifieds-menu-tiny .awpcp-classifieds-menu--menu-item {
  padding: 0;
  width: 50%;
}
.awpcp-classifieds-menu-tiny .awpcp-classifieds-menu--menu-item:nth-child(2n+1) {
  padding-right: 2pt;
}
.awpcp-classifieds-menu-tiny .awpcp-classifieds-menu--menu-item:nth-child(2n) {
  padding-left: 2pt;
}
.awpcp-classifieds-menu-small .awpcp-classifieds-menu--menu-item {
  padding: 0 2pt;
  width: 33%;
}
.awpcp-classifieds-menu-small .awpcp-classifieds-menu--menu-item:nth-child(3n+1) {
  padding-left: 0;
}
.awpcp-classifieds-menu-small .awpcp-classifieds-menu--menu-item:nth-child(3n) {
  padding-right: 0;
}
.awpcp-form-steps .awpcp-form-steps-step {
  background: #FEFEFE;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #AAA;
  box-shadow: 0 1px 1px rgba(69, 69, 69, 0.3);
  display: inline-block;
  margin: 0;
}
.awpcp-form-steps .awpcp-form-steps-step:first-child {
  border-left-width: 1px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.awpcp-form-steps .awpcp-form-steps-step:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.awpcp-form-steps .awpcp-form-steps-step-inner {
  color: #333;
  cursor: default;
  display: inline-block;
  font-size: .95em;
  font-weight: 500;
  line-height: 1.5em;
  padding: 8px 10px;
  text-decoration: none;
}
.awpcp-form-steps .awpcp-form-steps-step-number {
  background: #00CA6B;
  border-radius: 2px;
  border: 1px solid #00A65B;
  padding: 2px 5px;
}
.awpcp-form-steps .awpcp-form-steps-completed-step {
  background-color: #00CA6B;
}
.awpcp-form-steps .awpcp-form-steps-completed-step .awpcp-form-steps-step-number {
  background-color: transparent;
  border-color: transparent;
}
.awpcp-form-steps .awpcp-form-steps-completed-step .awpcp-form-steps-step-name {
  display: none;
}
.awpcp-form-steps .awpcp-form-steps-current-step .awpcp-form-steps-step-number {
  background-color: transparent;
  border-color: transparent;
}
.awpcp-form-steps .awpcp-form-steps-current-step .awpcp-form-steps-step-number:after {
  content: '.';
}
.awpcp-form-steps .awpcp-form-steps-pending-step {
  background-color: #F4F4F4;
}
.awpcp-form-steps .awpcp-form-steps-pending-step .awpcp-form-steps-step-number {
  background-color: transparent;
  border-color: transparent;
}
.awpcp-form-steps .awpcp-form-steps-pending-step .awpcp-form-steps-step-name {
  display: none;
}
.awpcp-form-steps .awpcp-form-steps-pending-step a {
  color: #999;
}
.awpcp-listings-widget-items-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item {
  margin-bottom: 15px;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item .awpcplatestthumb {
  box-sizing: border-box;
  margin-bottom: 5px;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item .awpcplatestthumb a {
  display: block !important;
  margin: 0 auto !important;
  width: 100%;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item .awpcplatestthumb a img {
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item .awpcp-listing-title {
  font-weight: bold;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item .awpcp-widget-read-more {
  margin-left: 10px !important;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item-with-thumbnail-above-in-desktop .awpcplatestthumb {
  margin-right: 0;
  margin-left: 0;
  float: none;
  width: 100%;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item-with-left-thumbnail-in-desktop .awpcplatestthumb {
  margin-right: 10px;
  margin-left: 0;
  float: left;
  width: 50%;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item-with-right-thumbnail-in-desktop .awpcplatestthumb {
  margin-right: 0;
  margin-left: 10px;
  float: right;
  width: 50%;
}
.awpcp-listings-widget-items-list .awpcp-listings-widget-item-listing-link {
  position: relative;
}
@media screen and (max-width: 44em) {
  .awpcp-listings-widget-items-list .awpcp-listings-widget-item-with-left-thumbnail-in-mobile .awpcplatestthumb {
    margin-right: 10px;
    margin-left: 0;
    float: left;
    width: 50%;
  }
  .awpcp-listings-widget-items-list .awpcp-listings-widget-item-with-right-thumbnail-in-mobile .awpcplatestthumb {
    margin-right: 0;
    margin-left: 10px;
    float: right;
    width: 50%;
  }
  .awpcp-listings-widget-items-list .awpcp-listings-widget-item-with-thumbnail-above-in-mobile .awpcplatestthumb {
    margin-right: 0;
    margin-left: 0;
    float: none;
    width: 100%;
  }
}
.awpcp-listing-actions-component {
  background: #DDD;
  border: 1px solid #BBB;
  padding: 8px;
}
.awpcp-listing-action-form {
  display: inline-block;
  margin: 0;
  padding: 2px;
}
.awpcp-listing-action-form.is-active {
  background: #ebebeb;
}
.awpcp-listing-action-form-confirmation {
  font-weight: bold;
  font-style: italic;
}
.awpcp-navigation .awpcp-menu-toggle {
  background: #000 url("../images/bullet_arrow_down.png") 10px center no-repeat;
  color: #eee;
  cursor: pointer;
  display: none;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
  padding: 8px 8px 8px 30px;
  text-transform: uppercase;
}
.awpcp-navigation ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0 0 15px 0;
}
.awpcp-navigation ul li {
  background: transparent no-repeat left center;
  float: left;
  list-style: none;
  margin: 0 15px 10px 0;
  padding-left: 20px;
}
.awpcp-navigation ul .search-listings {
  background-image: url("../images/search_ico.png");
}
.awpcp-navigation ul .edit-listing {
  background-image: url("../images/edit_ico.png");
}
.awpcp-navigation ul .post-listing {
  background-image: url("../images/post_ico.png");
}
.awpcp-navigation ul .browse-listings {
  background-image: url("../images/browse_ico.png");
}
.awpcp-navigation ul .buy-subscription {
  background-image: url("../images/buy_subscription_ico.png");
}
@media screen and (max-width: 44em) {
  .awpcp-navigation .awpcp-menu-toggle {
    display: block;
  }
  .awpcp-navigation .awpcp-nav-menu {
    display: none;
    padding: 0 0 0 5px !important;
  }
  .awpcp-navigation .awpcp-nav-menu li {
    float: none;
    margin-bottom: 0;
    margin-top: 6px;
    padding: 0 0 0 20px;
    text-align: left;
  }
  .awpcp-navigation.toggle-on .awpcp-menu-toggle {
    background-image: url("../images/bullet_arrow_up.png");
  }
  .awpcp-navigation.toggle-on .awpcp-nav-menu {
    display: block;
  }
}
#classiwrapper .awpcp-uploaded-files-group,
.awpcp-media-center .awpcp-uploaded-files-group {
  padding-bottom: 1px;
}
#classiwrapper .awpcp-uploaded-files-group-title,
.awpcp-media-center .awpcp-uploaded-files-group-title {
  background: #EEE;
  border: 1px solid #DDD;
  font-size: 1.2em;
  margin: 10px 0;
  padding: 4px;
  text-align: center;
}
#classiwrapper .awpcp-uploaded-files-list,
.awpcp-media-center .awpcp-uploaded-files-list {
  margin-bottom: 10px;
}
#classiwrapper .awpcp-uploaded-file,
.awpcp-media-center .awpcp-uploaded-file {
  background: #EEE;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  list-style-type: none;
  margin: 0 0 10px;
  position: relative;
  padding: 3px;
  text-align: center;
  width: 100%;
}
#classiwrapper .awpcp-progress-bar,
.awpcp-media-center .awpcp-progress-bar {
  background-color: #00CA6B;
  height: 8px;
}
#classiwrapper .awpcp-uploaded-file-thumbnail-container,
.awpcp-media-center .awpcp-uploaded-file-thumbnail-container {
  background: #E2E2E2;
  margin-bottom: 10px;
}
#classiwrapper .awpcp-uploaded-file-thumbnail-container img,
.awpcp-media-center .awpcp-uploaded-file-thumbnail-container img {
  border-radius: 0;
  box-shadow: none;
  display: block;
  margin: 0 auto;
}
#classiwrapper .is-disabled .awpcp-uploaded-file-thumbnail-container img,
.awpcp-media-center .is-disabled .awpcp-uploaded-file-thumbnail-container img {
  opacity: 0.5;
}
#classiwrapper .awpcp-uploaded-file-label,
.awpcp-media-center .awpcp-uploaded-file-label {
  position: absolute;
  bottom: -23px;
  height: 20px;
  background: #B6E2AF;
  font-size: 11px;
  padding: 0 6px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 144px;
  box-sizing: border-box;
  line-height: 18px;
  left: 50%;
  margin-left: -72px;
}
#classiwrapper .awpcp-uploaded-file-primary-label,
.awpcp-media-center .awpcp-uploaded-file-primary-label {
  background: #B6E2AF;
}
#classiwrapper .awpcp-uploaded-file-rejected-label,
.awpcp-media-center .awpcp-uploaded-file-rejected-label {
  background: #FFB3B3;
}
#classiwrapper .is-primary,
.awpcp-media-center .is-primary {
  background: #B6E2AF;
  border: 3px solid #86CC7C;
  padding: 1px;
}
#classiwrapper .is-awaiting-approval,
.awpcp-media-center .is-awaiting-approval {
  background: #FFF6DB;
  border-color: #E6E6C8;
}
#classiwrapper .is-rejected,
.awpcp-media-center .is-rejected {
  background: #FFB3B3;
  border: 3px solid #FC9393;
  padding: 1px;
}
#classiwrapper .awpcp-uploaded-files-table,
.awpcp-media-center .awpcp-uploaded-files-table {
  margin: 0;
}
#classiwrapper .awpcp-uploaded-files-table td,
.awpcp-media-center .awpcp-uploaded-files-table td {
  padding: 3px;
  vertical-align: middle;
}
#classiwrapper .awpcp-uploaded-files-table .awpcp-uploaded-file,
.awpcp-media-center .awpcp-uploaded-files-table .awpcp-uploaded-file {
  float: none;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
}
#classiwrapper .awpcp-uploaded-files-table .awpcp-uploaded-file-name,
.awpcp-media-center .awpcp-uploaded-files-table .awpcp-uploaded-file-name {
  padding-left: 8px;
  text-align: left;
}
#classiwrapper .awpcp-uploaded-file-actions,
.awpcp-media-center .awpcp-uploaded-file-actions {
  padding-top: 5px;
}
#classiwrapper .awpcp-uploaded-file-action,
.awpcp-media-center .awpcp-uploaded-file-action {
  float: left;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  margin-right: 2px;
  background: #FBFBFB;
}
#classiwrapper .awpcp-uploaded-file-action a,
.awpcp-media-center .awpcp-uploaded-file-action a,
#classiwrapper .awpcp-uploaded-file-action label,
.awpcp-media-center .awpcp-uploaded-file-action label {
  background: transparent center center no-repeat;
  cursor: pointer;
  display: block;
  height: 22px;
  line-height: 22px;
  width: 24px;
}
#classiwrapper .awpcp-uploaded-file-action:hover,
.awpcp-media-center .awpcp-uploaded-file-action:hover {
  border-color: #B3B3B3;
  background-color: #D8D8D8;
}
#classiwrapper .is-primary .awpcp-uploaded-file-action,
.awpcp-media-center .is-primary .awpcp-uploaded-file-action {
  background: #ECF6EA;
  border-color: #9BCE93;
}
#classiwrapper .is-primary .awpcp-uploaded-file-action:hover,
.awpcp-media-center .is-primary .awpcp-uploaded-file-action:hover {
  background: #A5D69D;
}
#classiwrapper .awpcp-uploaded-file-toggle-action,
.awpcp-media-center .awpcp-uploaded-file-toggle-action {
  border-radius: 0;
  border-right-width: 0;
  margin: 0;
}
#classiwrapper .awpcp-uploaded-file-toggle-action:first-child,
.awpcp-media-center .awpcp-uploaded-file-toggle-action:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
#classiwrapper .awpcp-uploaded-file-toggle-action:last-child,
.awpcp-media-center .awpcp-uploaded-file-toggle-action:last-child {
  border-right-width: 1px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
#classiwrapper .awpcp-uploaded-file-toggle-action .awpcp-toggle-button,
.awpcp-media-center .awpcp-uploaded-file-toggle-action .awpcp-toggle-button {
  float: left;
}
#classiwrapper .awpcp-uploaded-file-change-status-action label,
.awpcp-media-center .awpcp-uploaded-file-change-status-action label {
  padding: 0 4px;
  width: auto;
}
#classiwrapper .awpcp-uploaded-file-set-as-primary-action span,
.awpcp-media-center .awpcp-uploaded-file-set-as-primary-action span {
  display: block;
}
#classiwrapper .awpcp-uploaded-file-set-as-primary-action a,
.awpcp-media-center .awpcp-uploaded-file-set-as-primary-action a {
  background-image: url(../images/image-not-primary.png);
}
#classiwrapper .is-primary .awpcp-uploaded-file-set-as-primary-action a,
.awpcp-media-center .is-primary .awpcp-uploaded-file-set-as-primary-action a {
  background-image: url(../images/image-primary.png);
}
#classiwrapper .awpcp-uploaded-file-delete-action a,
.awpcp-media-center .awpcp-uploaded-file-delete-action a {
  background-image: url(../images/file-delete.png);
}
#classiwrapper .awpcp-uploaded-file-approve-action a,
.awpcp-media-center .awpcp-uploaded-file-approve-action a {
  background-image: url(../images/approve-attachment.png);
}
#classiwrapper .awpcp-uploaded-file-approve-action .awpcp-toggle-off,
.awpcp-media-center .awpcp-uploaded-file-approve-action .awpcp-toggle-off {
  background-image: url(../images/approve-attachment-off.png);
}
#classiwrapper .awpcp-uploaded-file-reject-action a,
.awpcp-media-center .awpcp-uploaded-file-reject-action a {
  background-image: url(../images/reject-attachment.png);
}
#classiwrapper .awpcp-uploaded-file-reject-action .awpcp-toggle-off,
.awpcp-media-center .awpcp-uploaded-file-reject-action .awpcp-toggle-off {
  background-image: url(../images/reject-attachment-off.png);
}
#classiwrapper .awpcp-uploaded-file-loading-icon,
.awpcp-media-center .awpcp-uploaded-file-loading-icon {
  background: none !important;
  border: none !important;
}
#classiwrapper .awpcp-uploaded-file-spinner,
.awpcp-media-center .awpcp-uploaded-file-spinner {
  background-color: #fff;
  margin: -25px -10px;
  padding: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 12px;
}
#classiwrapper .awpcp-uploaded-video-delete-action a,
.awpcp-media-center .awpcp-uploaded-video-delete-action a {
  background-image: url(../images/film_delete.png);
}
#classiwrapper .awpcp-media-manager-small .awpcp-uploaded-file,
.awpcp-media-center .awpcp-media-manager-small .awpcp-uploaded-file {
  float: left;
  width: 49%;
  margin-right: 1%;
  margin-left: 1%;
}
#classiwrapper .awpcp-media-manager-small .awpcp-uploaded-file:nth-child(2n+1),
.awpcp-media-center .awpcp-media-manager-small .awpcp-uploaded-file:nth-child(2n+1) {
  margin-left: 0;
}
#classiwrapper .awpcp-media-manager-small .awpcp-uploaded-file:nth-child(2n+2),
.awpcp-media-center .awpcp-media-manager-small .awpcp-uploaded-file:nth-child(2n+2) {
  margin-right: 0;
}
#classiwrapper .awpcp-media-manager-medium .awpcp-uploaded-file,
.awpcp-media-center .awpcp-media-manager-medium .awpcp-uploaded-file {
  float: left;
  width: 32%;
  margin-right: 1%;
  margin-left: 1%;
}
#classiwrapper .awpcp-media-manager-medium .awpcp-uploaded-file:nth-child(3n+1),
.awpcp-media-center .awpcp-media-manager-medium .awpcp-uploaded-file:nth-child(3n+1) {
  margin-left: 0;
}
#classiwrapper .awpcp-media-manager-medium .awpcp-uploaded-file:nth-child(3n),
.awpcp-media-center .awpcp-media-manager-medium .awpcp-uploaded-file:nth-child(3n) {
  margin-right: 0;
}
#classiwrapper .awpcp-media-manager-large .awpcp-uploaded-files-list,
.awpcp-media-center .awpcp-media-manager-large .awpcp-uploaded-files-list {
  margin-left: -9px;
  margin-right: -9px;
}
#classiwrapper .awpcp-media-manager-large .awpcp-uploaded-file,
.awpcp-media-center .awpcp-media-manager-large .awpcp-uploaded-file {
  float: left;
  width: 205px;
  margin-right: 9px;
  margin-left: 9px;
}
.awpcp-media-uploader {
  margin: 20px 0;
}
.awpcp-media-uploader-dropzone {
  text-align: center;
}
.awpcp-media-uploader-dropzone-inner {
  padding: 25px;
  border: 3px dashed #CCC;
}
.awpcp-media-uploader-dropzone-active {
  background-color: #00CA6B;
  padding: 5px;
}
.awpcp-media-uploader-dropzone-active .awpcp-media-uploader-dropzone-inner {
  border-color: #fff;
  border-width: 2px;
  padding: 20px;
}
.awpcp-media-uploader-instructions {
  margin-bottom: 20px;
}
.awpcp-media-uploader-instructions span {
  display: block;
  line-height: 1.6em;
}
.awpcp-media-uploader-instructions-title {
  font-weight: bold;
  font-size: 1.6em;
  line-height: 1.6em;
}
.awpcp-media-uploader-restrictions {
  margin-top: 20px;
}
.awpcp-media-uploader-browser-button {
  box-sizing: border-box;
  color: #666;
  display: inline-block;
  font-weight: bold;
}
.awpcp-payment-terms-table tr {
  background: #FAFAFA;
}
.awpcp-payment-terms-table .price {
  width: 100px;
}
.awpcp-payment-terms-table-payment-term-price {
  border: 1px solid #D2D2D2;
  border-radius: 2px;
  background: #FDFDFD;
  border-color: #CCC;
  cursor: pointer;
  display: block;
  padding: 6px 8px 6px;
  font-size: 16px;
  padding-top: 4px;
  text-align: center;
}
.awpcp-payment-terms-table-payment-term-price:hover {
  background: #fff;
  border-color: #d0d0d0;
}
.awpcp-payment-terms-table-payment-term-price:active {
  background: #BBB;
  border-color: #999;
  color: #FFF;
}
.awpcp-payment-terms-table-payment-term-price input,
.awpcp-payment-terms-table-payment-term-price span {
  vertical-align: middle;
}
.awpcp-payment-terms-table-payment-term-price input {
  margin-right: 4px;
}
.awpcp-payment-terms-table-payment-term-price span {
  display: inline-block;
}
@media only screen and (max-width: 50em) {
  .awpcp-payment-terms-table tr {
    margin-bottom: 6px;
  }
  .awpcp-payment-terms-table .price {
    width: auto;
  }
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method {
  margin-bottom: 4px;
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label {
  border: 1px solid #D2D2D2;
  border-radius: 2px;
  background: #FDFDFD;
  border-color: #CCC;
  cursor: pointer;
  display: block;
  padding: 6px 8px 6px;
  padding-top: 4px;
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label:hover {
  background: #fff;
  border-color: #d0d0d0;
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label:active {
  background: #BBB;
  border-color: #999;
  color: #FFF;
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label:active {
  background: #FDFDFD;
  border-color: #666;
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label input,
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label img,
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label span {
  display: inline-block;
}
.awpcp-payment-methods-list .awpcp-payment-methods-list-payment-method label img {
  max-width: 80%;
}
.awpcp-payment-methods-list-480 .awpcp-payment-methods-list-payment-method {
  margin-bottom: 8px;
}
.awpcp-thumbnails-generator video,
.awpcp-thumbnails-generator canvas {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.awpcp-multiple-region-selector .add-region,
.awpcp-multiple-region-selector .remove-region {
  font-size: 0.8em;
}
.awpcp-multiple-region-selector .add-region {
  margin-left: 10px;
}
#classiwrapper ul,
.awpcp-multiple-region-selector ul {
  margin: 0;
  padding: 0 !important;
}
#classiwrapper ul li,
.awpcp-multiple-region-selector ul li {
  list-style-type: none;
  list-style-image: none;
}
#classiwrapper .awpcp-region-selector,
.awpcp-multiple-region-selector .awpcp-region-selector {
  background: rgba(0, 0, 0, 0.02);
  margin-left: 0;
  margin-bottom: 5px;
  padding: 4px 0;
}
#classiwrapper .awpcp-region-selector .awpcp-region-selector-partials,
.awpcp-multiple-region-selector .awpcp-region-selector .awpcp-region-selector-partials {
  padding: 2px;
}
#classiwrapper .awpcp-region-selector .awpcp-region-selector-partial,
.awpcp-multiple-region-selector .awpcp-region-selector .awpcp-region-selector-partial {
  list-style-type: none;
  margin: 0;
}
#classiwrapper .awpcp-region-selector .awpcp-region-selector-partial label,
.awpcp-multiple-region-selector .awpcp-region-selector .awpcp-region-selector-partial label {
  display: block;
  margin-right: 5px;
}
#classiwrapper .awpcp-region-selector .awpcp-region-selector-partial .loading-message,
.awpcp-multiple-region-selector .awpcp-region-selector .awpcp-region-selector-partial .loading-message {
  color: #555;
  font-size: .9em;
  font-style: italic;
}
#classiwrapper .awpcp-region-selector:last-of-type,
.awpcp-multiple-region-selector .awpcp-region-selector:last-of-type {
  margin-bottom: 0;
}
.awpcp-multiple-region-selector-form-table table {
  border-top: 1px solid #DDD;
}
.awpcp-multiple-region-selector-form-table tfoot td {
  text-align: right;
}
.awpcp-multiple-region-selector-form-table .awpcp-region-selector {
  background: transparent;
}
.awpcp-multiple-region-selector-form-table .add-region {
  margin-left: 0;
  margin-top: 10px;
}
.widget_awpcp_search_widget form label {
  font-size: 13px;
  font-size: 9px;
  font-size: .9rem;
  line-height: 12px;
  line-height: 1.2rem;
  margin: 1px 0;
  text-align: left;
}
.widget_awpcp_search_widget form input[type="text"],
.widget_awpcp_search_widget form input[type="email"],
.widget_awpcp_search_widget form input[type="password"],
.widget_awpcp_search_widget form select {
  box-sizing: border-box;
  margin: 0;
  width: 100%;
}
.widget_awpcp_search_widget .awpcp-width-20p {
  width: 20% !important;
}
.widget_awpcp_search_widget .awpcp-list {
  margin: 0.4em 0 !important;
}
.widget_awpcp_search_widget .awpcp-list-no-style {
  padding: 0 !important;
}
.widget_awpcp_search_widget .awpcp-form-spacer {
  margin: 0.4em 0;
}
.widget_awpcp_search_widget .awpcp-category-dropdown-label {
  display: block;
}
.widget_awpcp_search_widget .awpcp-multiple-region-selector,
.widget_awpcp_search_widget .awpcp-multiple-region-selector .awpcp-region-selector-partials,
.widget_awpcp_search_widget .awpcp-multiple-region-selector .awpcp-region-selector-partials label {
  padding: 0;
}
.widget_awpcp_search_widget .awpcp-multiple-region-selector {
  margin: 0;
}
.widget_awpcp_search_widget .awpcp-multiple-region-selector .awpcp-region-selector {
  background: none;
}
.widget_awpcp_search_widget .awpcp-multiple-region-selector .awpcp-region-selector .awpcp-region-selector-partials {
  margin: 0;
}
.widget_awpcp_search_widget .awpcp-multiple-region-selector .awpcp-region-selector .awpcp-region-selector-partials label {
  margin-right: 0;
}
.widget_awpcp_search_widget .submit {
  margin-top: 10px;
}
.awpcp-terms-of-service-checkbox {
  display: inline-block !important;
  margin: 4px 0;
  padding: 6px 10px 6px 30px;
  position: relative;
}
.awpcp-terms-of-service-checkbox input[type="checkbox"] {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -7px;
}
@media only screen and (max-width: 30em) {
  .awpcp-terms-of-service-checkbox {
    display: block !important;
  }
}
#classiwrapper .upload-conditions,
.upload-conditions {
  background: #EEE;
  margin-bottom: 10px;
  padding: 4px 10px;
}
#classiwrapper .upload-conditions li,
.upload-conditions li {
  float: left;
  width: 50%;
}
#classiwrapper .uploadform,
.uploadform {
  float: left;
  width: 100%;
}
#classiwrapper .uploadform .image-upload-field,
.uploadform .image-upload-field,
#classiwrapper .uploadform .upload-field-actions,
.uploadform .upload-field-actions {
  float: left;
}
#classiwrapper .uploadform .upload-field-actions,
.uploadform .upload-field-actions {
  padding-bottom: 5px;
  margin-bottom: 0;
}
#classiwrapper .uploadform .upload-field-actions li,
.uploadform .upload-field-actions li {
  background: transparent;
  list-style-type: none;
  margin: 0;
  padding: 0 7.5px;
  min-width: 0;
  width: auto;
}
#classiwrapper .uploadform .upload-field-actions li a,
.uploadform .upload-field-actions li a,
#classiwrapper .uploadform .upload-field-actions li label,
.uploadform .upload-field-actions li label {
  background: url(../images/image-enable.png) center center no-repeat;
  cursor: pointer;
  display: block;
  height: 22px;
  width: 25px;
}
#classiwrapper .uploadform .upload-field-actions li a:hover,
.uploadform .upload-field-actions li a:hover,
#classiwrapper .uploadform .upload-field-actions li label:hover,
.uploadform .upload-field-actions li label:hover {
  background-color: #C6C6C6;
}
#classiwrapper .uploadform .upload-field-actions li span,
.uploadform .upload-field-actions li span {
  display: none;
}
#classiwrapper .uploadform .upload-field-actions .primary a,
.uploadform .upload-field-actions .primary a,
#classiwrapper .uploadform .upload-field-actions .primary label,
.uploadform .upload-field-actions .primary label {
  background-image: url(../images/image-primary.png);
}
#classiwrapper .uploadform .upload-field-actions .not-primary a,
.uploadform .upload-field-actions .not-primary a,
#classiwrapper .uploadform .upload-field-actions .not-primary label,
.uploadform .upload-field-actions .not-primary label {
  background-image: url(../images/image-not-primary.png);
}
#classiwrapper .uploadform .upload-field-actions .primary input,
.uploadform .upload-field-actions .primary input,
#classiwrapper .uploadform .upload-field-actions .not-primary input,
.uploadform .upload-field-actions .not-primary input {
  display: none;
}
#classiwrapper .uploadform .upload-field-actions .label,
.uploadform .upload-field-actions .label {
  color: #333;
  font-size: .9em;
  padding-top: 1px;
  padding-right: 0;
}
@media only screen and (max-width: 30em) {
  #classiwrapper .uploadform .image-upload-field,
  .uploadform .image-upload-field {
    width: 80%;
  }
}
#showawpcpadpage {
  margin-top: 10px;
}
#showawpcpadpage label {
  font-weight: bold;
}
#showawpcpadpage .adtitle,
#showawpcpadpage .awpcp-title {
  background: #eeeeee;
  border-top: 1px dotted #dddddd;
  border-bottom: 1px dotted #dddddd;
  color: #333333;
  font-weight: bold;
  font-size: medium;
  padding: 10px;
}
#showawpcpadpage .adbyline {
  margin-top: 5px;
  padding: 5px;
}
#showawpcpadpage .adbyline .adbylinelocation {
  float: left;
}
#showawpcpadpage .adbyline .awpcpadviews .views {
  font-weight: bold;
  color: #ff0000;
}
#showawpcpadpage .addetails {
  padding: 10px;
  margin-top: 20px;
}
#showawpcpadpage .addetails .addetails_top {
  margin: 10px 0 0 0;
  width: 95%;
}
#showawpcpadpage .addetails .addetails_top .addetails_top_items {
  float: left;
  width: 195px;
  margin: 0;
}
#showawpcpadpage .addetails .addetails_top .addetails_top_image {
  float: right;
}
#showawpcpadpage .addetails .addetails_top .addetails_top_image img {
  margin: 0 20px 0 0;
  padding: 2px;
  border: 1px solid #dddddd;
}
#showawpcpadpage .addetails .addetails_top .addetails_top_image ul {
  margin: 0;
  padding: 0;
}
body .awpcp-ad-primary-image,
#showawpcpadpage .awpcp-ad-primary-image {
  float: right;
  text-align: center;
}
body .awpcp-ad-primary-image .thumbnail,
#showawpcpadpage .awpcp-ad-primary-image .thumbnail {
  display: block;
}
body .awpcp-ad-primary-image .enlarge,
#showawpcpadpage .awpcp-ad-primary-image .enlarge {
  display: block;
}
body .awpcp-listing-primary-image-thickbox-link,
#showawpcpadpage .awpcp-listing-primary-image-thickbox-link {
  position: relative;
}
.awpcp-subtitle {
  font-weight: bold;
  margin-bottom: 2px;
}
.thumbshow {
  background: #f2f2f2;
  border: 1px solid #d3d3d3;
  display: inline;
  padding: 9px;
}
#displayimagethumbswrapper #displayimagethumbs ul {
  list-style: none;
}
#displayimagethumbswrapper #displayimagethumbs ul li {
  float: left;
  list-style: none;
  margin: 10px;
}
#displayimagethumbswrapper #displayimagethumbs ul .first-column {
  clear: both;
}
#displayimagethumbswrapper #displayimagethumbs a {
  background: #f2f2f2;
  border: 1px solid #d3d3d3;
  display: inline-block;
  padding: 9px;
}
#displayimagethumbswrapper #displayimagethumbs a .thumbshow {
  border-color: #e7e7e7;
  padding: 0;
}
@media only screen and (max-width: 30em) {
  body,
  #showawpcpadpage .awpcp-ad-primary-image {
    float: none;
  }
  #displayimagethumbswrapper #displayimagethumbs ul {
    margin-left: 0;
    margin-right: 0;
  }
  #displayimagethumbswrapper #displayimagethumbs ul li {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    width: 50%;
    text-align: center;
  }
  #displayimagethumbswrapper #displayimagethumbs ul .first-column {
    clear: none;
  }
}
.awpcp-classifieds-search-bar--query-field input[type="text"] {
  line-height: 40px;
  line-height: 4rem;
  height: 40px;
  height: 4rem;
}
.awpcp-classifieds-search-bar--submit-button input[type="submit"] {
  line-height: 40px;
  line-height: 4rem;
  height: 40px;
  height: 4rem;
  border: 0;
  background-color: #006367;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  border-radius: 2px;
  padding-top: 0;
  padding-bottom: 0;
}
.awpcp-classifieds-search-bar--submit-button input[type="submit"]:hover {
  background-color: #006367;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  color: #fff;
}
.awpcp-classifieds-search-bar .awpcp-classifieds-search-bar--advanced-search-link {
  padding: 10px 4px 0;
}
.awpcp-classifieds-search-bar .awpcp-classifieds-search-bar--advanced-search-link a {
  color: #006367;
}
.awpcp-classifieds-search-bar .awpcp-classifieds-search-bar--advanced-search-link a:hover {
  color: #00383a;
  text-decoration: underline;
}
#classiwrapper ul li::before,
.awpcp-multiple-region-selector ul li::before {
  display: none;
}
.awpcp-classifieds-menu--menu-item-link {
  border: 1px solid #ccc !important;
  background-color: #eee;
  padding: 8px !important;
  color: #006367;
}
.awpcp-classifieds-menu--menu-item-link:hover {
  color: #00383a;
  text-decoration: underline;
}
.awpcp-category-dropdown-label {
  display: none;
}
#classiwrapper ul.awpcp-classifieds-menu {
  margin-bottom: 15px;
  margin-bottom: 1.5rem;
}
#classiwrapper .changecategoryselect {
  float: right;
  padding-top: 0;
}
#classiwrapper .pager {
  float: right;
}
#classiwrapper .pager a {
  color: #006367;
}
#classiwrapper .pager a:hover {
  color: #00383a;
  text-decoration: underline;
}
#classiwrapper .pager table {
  margin-bottom: 0;
}
#classiwrapper .pager table tr td:nth-child(2)::before {
  content: "Položek na stranu: ";
}
.awpcp-pagination-form select {
  width: auto;
  padding-left: 0;
}
.awpcp-pagination-form table {
  background-color: #F9F9F9;
  border: none;
  border-radius: 3px;
}
.awpcp-pagination-form select {
  background-color: #F9F9F9;
  border-color: #F9F9F9;
}
.awpcp-pagination-form table td {
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: none;
  border-right: none;
}
.awpcp-pagination-form table td:first-child {
  border-right: solid 1px #dedede;
}
.awpcp-pagination-form table td:first-child::before {
  content: 'Strana ';
}
.awpcp-listing-title {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 32px;
  line-height: 3.2rem;
  margin-bottom: 4px;
  margin-bottom: .4rem;
}
.awpcp-listing-title a {
  color: #006367;
}
.awpcp-listing-title a:hover {
  color: #00383a;
  text-decoration: underline;
}
.awpcp-listing-excerpt .price,
.awpcp-listing-excerpt .amount {
  color: #77a464;
}
.awpcp-listing-excerpt img {
  display: block;
}
#showawpcpadpage .thumbshow {
  display: block;
  box-sizing: border-box;
  border: 0;
}
#showawpcpadpage .thickbox.enlarge {
  display: none !important;
}
#showawpcpadpage .fixfloat div,
#showawpcpadpage .fixfloat a {
  display: none;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
@media screen and (max-width: 47.9375em) {
  #classiwrapper .awpcp-classifieds-menu-small .awpcp-classifieds-menu--menu-item,
  #classiwrapper .awpcp-classifieds-menu-tiny .awpcp-classifieds-menu--menu-item {
    float: none !important;
    width: 100% !important;
    display: block;
  }
  #classiwrapper .awpcp-classifieds-menu-small .awpcp-classifieds-menu--menu-item a,
  #classiwrapper .awpcp-classifieds-menu-tiny .awpcp-classifieds-menu--menu-item a {
    display: block !important;
  }
  #classiwrapper .awpcp-listing-excerpt-small .awpcp-listing-excerpt-thumbnail,
  #classiwrapper .awpcp-listing-excerpt-medium .awpcp-listing-excerpt-thumbnail {
    float: none;
    width: 100%;
  }
  #classiwrapper .awpcp-listing-excerpt-small .awpcp-listing-excerpt-thumbnail img,
  #classiwrapper .awpcp-listing-excerpt-medium .awpcp-listing-excerpt-thumbnail img {
    display: block;
    max-width: 168px;
    margin: 0 auto;
  }
  #classiwrapper .pager {
    margin-bottom: 1rem;
  }
}
#wpdm-all-packages tr th {
  background: rgba(68, 68, 68, 0.06);
  border: 0;
  padding: 10px 15px;
  padding: 1rem 1.5rem;
}
#wpdm-all-packages tr td {
  border: 0;
  padding: 10px 15px;
  padding: 1rem 1.5rem;
}
#wpdm-all-packages ul.pagination {
  text-align: center;
  padding: 0;
  margin: 0;
}
#wpdm-all-packages ul.pagination li {
  display: inline-block;
  margin: 0;
}
#wpdm-all-packages ul.pagination li:before {
  display: none;
}
#wpdm-all-packages ul.pagination a {
  color: #006367;
  text-decoration: underline;
}
#wpdm-all-packages ul.pagination a:hover {
  color: #00383a;
}
@media screen and (max-width: 47.9375em) {
  #wpdm-all-packages table .hidden-xs {
    display: none;
  }
}
.archive-categories {
  margin-top: 50px;
  margin-bottom: 30px;
}
.bikes-category-list {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bikes-category-list-item {
  width: 33.333%;
  padding: 0 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
  text-align: center;
}
a.bikes-category-list-item-link {
  display: block;
  text-decoration: none;
}
.bikes-category-list-link__image {
  margin-bottom: 20px;
  display: block;
}
.bikes-category-list-link__image img {
  display: block;
}
.bikes-category-list-link__title {
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  line-height: 24px;
}
.bikes-category-list-link__company {
  color: #333;
}
.entry-bike-rules {
  padding-bottom: 60px;
  padding-bottom: 6rem;
}
.entry-bike-rules__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
.bike-single__image {
  float: left;
  width: 300px;
}
.bike-single-content {
  float: left;
  width: 680px;
  width: calc(100% - 300px);
  box-sizing: border-box;
  padding-left: 30px;
}
.bike-single-content__title {
  font-weight: 700;
}
.bike-single-content-item-label {
  display: inline-block;
  opacity: .7;
}
.single-bike-navigation {
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  padding: 10px 0;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
.single-bike-navigation-item {
  width: 50%;
}
.single-bike-navigation-item--prev {
  text-align: left;
}
.single-bike-navigation-item--next {
  text-align: right;
}
.single-bike-vote {
  margin: 50px 0 0;
}
.single-bike-vote-item {
  display: inline-block;
  margin-right: 20px;
}
.single-bike-vote-line {
  margin-bottom: 30px;
}
.single-bike-vote-line:last-child {
  margin-bottom: 0;
}
.single-bike-vote-item--title {
  line-height: 40px;
  width: 360px;
}
a.single-bike-vote-item--btn {
  background-color: #006367;
  border-radius: 2px;
  color: #fff;
  line-height: 40px;
  padding: 0 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}
a.single-bike-vote-item--btn:hover {
  color: #fff;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
a.single-bike-vote-item--disabled {
  cursor: not-allowed;
  opacity: .7;
}
.bikes-card-item {
  margin-bottom: 20px;
}
.bikes-card-item__title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #006367;
}
.bikes-card-item-bike {
  padding-left: 22px;
  position: relative;
}
.bikes-card-item-bike-remove {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.bikes-card-item-bike-remove span {
  width: 15px;
  height: 2px;
  background-color: #f00;
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.bikes-card-item-bike-remove span:nth-child(2) {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.bikes-card-send {
  background-color: #E2E2E2;
  padding: 10px;
}
.bikes-card-send label {
  margin-bottom: 6px;
  display: inline-block;
}
.bikes-card-send-wrapper {
  position: relative;
}
.bikes-card-send-wrapper input {
  padding-right: 52px;
}
.bikes-card-send-btn {
  background-color: #006367;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 42px;
  border: 0;
  width: 42px;
  padding: 0;
}
.bikes-card-loader {
  display: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwIiBoZWlnaHQ9IjMwIiB2aWV3Qm94PSIwIDAgMTIwIDMwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiMwMDY1NjgiPiAgICA8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIxNSI+ICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBmcm9tPSIxNSIgdG89IjE1IiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiICAgICAgICAgICAgICAgICB2YWx1ZXM9IjE1Ozk7MTUiIGNhbGNNb2RlPSJsaW5lYXIiICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwtb3BhY2l0eSIgZnJvbT0iMSIgdG89IjEiICAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMC44cyIgICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsuNTsxIiBjYWxjTW9kZT0ibGluZWFyIiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+ICAgIDwvY2lyY2xlPiAgICA8Y2lyY2xlIGN4PSI2MCIgY3k9IjE1IiByPSI5IiBmaWxsLW9wYWNpdHk9IjAuMyI+ICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBmcm9tPSI5IiB0bz0iOSIgICAgICAgICAgICAgICAgIGJlZ2luPSIwcyIgZHVyPSIwLjhzIiAgICAgICAgICAgICAgICAgdmFsdWVzPSI5OzE1OzkiIGNhbGNNb2RlPSJsaW5lYXIiICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwtb3BhY2l0eSIgZnJvbT0iMC41IiB0bz0iMC41IiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiICAgICAgICAgICAgICAgICB2YWx1ZXM9Ii41OzE7LjUiIGNhbGNNb2RlPSJsaW5lYXIiICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgPC9jaXJjbGU+ICAgIDxjaXJjbGUgY3g9IjEwNSIgY3k9IjE1IiByPSIxNSI+ICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBmcm9tPSIxNSIgdG89IjE1IiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiICAgICAgICAgICAgICAgICB2YWx1ZXM9IjE1Ozk7MTUiIGNhbGNNb2RlPSJsaW5lYXIiICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4gICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwtb3BhY2l0eSIgZnJvbT0iMSIgdG89IjEiICAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMC44cyIgICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsuNTsxIiBjYWxjTW9kZT0ibGluZWFyIiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+ICAgIDwvY2lyY2xlPjwvc3ZnPg==);
  width: 120px;
  height: 30px;
  margin: 20px auto 0;
}
.bikes-vote-loader--show {
  display: inline-block;
  margin-top: -14px;
  position: relative;
  top: 12px;
  height: 40px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 47.9375em) {
  .bikes-category-list-item {
    width: 50%;
  }
  .bike-single__image {
    width: 100%;
    max-width: 300px;
    float: none;
  }
  .bike-single-content {
    float: none;
    width: 100%;
    padding-left: 0;
    margin-top: 2rem;
  }
  .single-bike-vote-item--title {
    width: 100%;
  }
}
@media only screen and (max-width: 29.9375em) {
  .bikes-category-list-item {
    width: 100%;
  }
}
.testfest-registrace .nf-cell {
  width: 100% !important;
}
.testfest-registrace .nf-field-element select {
  line-height: 42px;
  line-height: 4.2rem;
  height: 42px;
  height: 4.2rem;
}
.testfest-registrace .nf-cell nf-field {
  width: 50%;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 0px 10px;
}
.testfest-registrace .nf-field-container.hr-container {
  clear: both;
}
.testfest-registrace .nf-cell:nth-child(2) nf-field:nth-child(2),
.testfest-registrace .nf-cell:nth-child(2) nf-field:nth-child(3),
.testfest-registrace .nf-cell:nth-child(2) nf-field:nth-child(4),
.testfest-registrace .nf-cell:nth-child(2) nf-field:nth-child(5n+9) {
  clear: both;
  width: 100%;
}
.testfest-registrace input[type="button"] {
  display: inline-block;
  padding: 5px 15px;
  background-color: #006367;
  color: white;
  border: none;
}
.nf-field-element ul li::before {
  display: none;
}
@media screen and (max-width: 29.9375em) {
  .testfest-registrace .nf-cell nf-field {
    width: 100%;
  }
}
div.css-search {
  border: none;
}
div.css-search .em-search-main {
  background-color: #f9f9f9;
  padding: 10px;
  padding: 1rem;
  padding-bottom: 10px;
  padding-bottom: 1rem;
  position: relative;
}
div.css-search input.em-search-text,
div.css-search input.em-search-geo {
  background-color: transparent;
}
div.css-search div.em-search-text {
  background-image: none !important;
  position: relative;
}
div.css-search div.em-search-text::before {
  background-image: url(../img/sprite.png);
  background-position: -261px -102px;
  width: 15px;
  height: 20px;
  content: "";
  display: none;
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
}
div.css-search div.em-search-geo {
  background-image: none !important;
  position: relative;
}
div.css-search div.em-search-geo::before {
  background-image: url(../img/sprite.png);
  background-position: -276px -102px;
  width: 15px;
  height: 20px;
  content: "";
  display: none;
  position: absolute;
  display: block;
  top: 4px;
  left: 0;
}
div.css-search div.em-search-main .em-search-submit {
  background: #f2f2f2;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  transition: background-color 200ms;
  border: 0;
  position: absolute;
  background-image: none !important;
  top: 10px;
  top: 1rem;
  right: 10px;
  right: 1rem;
}
div.css-search div.em-search-main .em-search-submit img {
  display: none;
}
div.css-search div.em-search-main .em-search-submit:hover {
  background: #d0d0d0;
}
div.css-search div.em-search-main .em-search-submit::before {
  background-image: url(../img/sprite.png);
  background-position: -261px -102px;
  width: 15px;
  height: 20px;
  content: "";
  display: none;
  position: absolute;
  display: block;
  margin-left: -7.5px;
  margin-top: -10px;
  top: 50%;
  left: 50%;
}
.page-banner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.header-banner {
  padding: 20px 0;
  padding: 2rem 0;
}
@media screen and (max-width: 47.9375em) {
  .header-banner {
    padding: 0;
  }
  .header-banner .container {
    padding: 0;
  }
}
.main-menu .search-form {
  position: relative;
  float: right;
  height: 50px;
  height: 5rem;
}
.main-menu .search-form__toggle {
  text-align: center;
  cursor: pointer;
}
.main-menu .search-form__toggle span {
  width: 40px;
  width: 4rem;
  height: 50px;
  height: 5rem;
  line-height: 50px;
  line-height: 5rem;
  display: block;
}
.main-menu .search-form__toggle:hover {
  background-color: #c5c5c5;
}
.main-menu .search-form__form {
  position: absolute;
  width: 300px;
  width: 30rem;
  max-width: 300px;
  max-width: 30rem;
  z-index: 98;
  padding: 10px;
  padding: 1rem;
  background-color: #fff;
  right: 0;
  top: 100%;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  opacity: 0;
  transition: all .2s ease;
}
.main-menu .search-form__form .search-form-input__wrapper,
.main-menu .search-form__form .search-form-btn__wrapper {
  display: none;
}
.main-menu .search-form__form--active {
  top: 100%;
  opacity: 1;
  transition: all .2s ease;
}
.main-menu .search-form__form--active .search-form-input__wrapper,
.main-menu .search-form__form--active .search-form-btn__wrapper {
  display: block;
}
.main-menu .search-form__input {
  color: #0c0c0c;
  border-radius: 2px;
  border: 1px solid rgba(68, 68, 68, 0.2);
  line-height: 40px;
  line-height: 4rem;
  height: 40px;
  height: 4rem;
  font-size: 13px;
  font-size: 1.3rem;
}
.main-menu .search-form__btn {
  background-image: none;
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 10px;
  top: 1rem;
  right: 10px;
  right: 1rem;
  line-height: 50px;
  line-height: 5rem;
  padding: 0;
  color: #444;
  transition: all .2s ease;
}
.main-menu .search-form__btn:hover {
  background-color: #006367;
  color: #fff;
  transition: all .2s ease;
}
.main-menu .search-form__btn span {
  display: block;
  line-height: 40px;
  line-height: 4rem;
  width: 40px;
  width: 4rem;
}
.banners-area {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.banners-area-title {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  margin-bottom: 1rem;
  width: 100%;
  font-family: 'Open Sans Condensed', sans-serif;
}
.banners-area-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
  margin: 0 -2rem;
}
.banners-area-item {
  width: 50%;
  box-sizing: border-box;
  text-decoration: none;
  display: block;
  padding: 0 20px;
  padding: 0 2rem;
  margin-bottom: 30px;
  margin-bottom: 3rem;
}
.banners-area-item img {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .banners-area-item {
    width: 100%;
  }
  .banners-area-item img {
    margin: 0 auto;
  }
}
.breadcrumbs {
  padding: 12px 0;
  padding: 1.2rem 0;
}
.breadcrumbs a,
.breadcrumbs span {
  color: #999999;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #006367;
}
.news-pagination {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.navigation-list {
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
  position: relative;
}
.navigation-list .page-numbers {
  margin: 0;
  display: inline-block;
}
.navigation-list .page-numbers:before {
  display: none;
}
.navigation-list .page-numbers a {
  display: block;
  text-decoration: none;
  width: 40px;
  width: 4rem;
  height: 40px;
  height: 4rem;
  line-height: 40px;
  line-height: 4rem;
  border-radius: 2px;
  color: #444444;
  font-size: 14px;
  font-size: 1.4rem;
}
.navigation-list .page-numbers .active {
  background-color: #006367;
  color: #fff;
}
.navigation-list .page-numbers .active:hover {
  background-color: #00383a;
  color: #fff;
}
.navigation-list .page-numbers:hover a {
  background-color: #D4D4D4;
}
.navigation-list .page-numbers--prev,
.navigation-list .page-numbers--next {
  position: absolute;
  left: 0;
}
.navigation-list .page-numbers--prev a,
.navigation-list .page-numbers--next a {
  width: 186px;
  background-color: #006367;
  color: #fff;
  text-transform: uppercase;
}
.navigation-list .page-numbers--prev a:hover,
.navigation-list .page-numbers--next a:hover {
  background-color: #00383a;
  color: #fff;
}
.navigation-list .page-numbers--prev a::before {
  content: "\f104";
  font-family: "FontAwesome";
  margin-right: 8px;
}
.navigation-list .page-numbers--next {
  left: auto;
  right: 0;
}
.navigation-list .page-numbers--next a::after {
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 8px;
}
.slider--covers {
  margin-top: 40px;
  margin-top: 4rem;
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.slider--covers .owl-stage-outer {
  height: 330px;
  overflow: hidden;
}
.slider--covers .slider-box {
  background-color: #eeeeee;
}
.slider--covers .slider-item-thumbnail img {
  max-height: 300px;
}
.slider-item {
  float: left;
  width: 255px;
  padding: 15px 0;
  padding: 1.5rem 0;
  slider--magazinesbox-sizing: border-box;
}
.slider-item-thumbnail a {
  display: block;
}
.slider-item-thumbnail img {
  display: block;
  max-width: 100%;
}
.owl-carousel .slider-item {
  width: 100%;
}
.matosoft-widget-slider .owl-stage-outer {
  height: 387px;
  overflow: hidden;
}
.slider--magazines {
  margin-bottom: 40px;
  margin-bottom: 4rem;
}
.slider--magazines .owl-stage {
  display: -ms-flexbox;
  display: flex;
}
.slider--magazines .owl-stage .owl-item {
  -ms-flex: 1;
      flex: 1;
  margin-top: auto;
  margin-bottom: auto;
}
.slider--magazines img {
  filter: grayscale(100%);
}
.slider--magazines img:hover {
  filter: grayscale(0%);
}
@media screen and (max-width: 47.9375em) {
  .slider--covers .slider-box {
    height: 330px;
    overflow: hidden;
  }
}
.menu-switcher {
  padding: 0;
  display: none;
  width: 82px;
  float: left;
  margin-top: 11px;
  margin-top: 1.1rem;
  cursor: pointer;
}
.menu-switcher .menu-switcher__icon {
  float: left;
  width: 25px;
  width: 2.5rem;
  position: relative;
  height: 32px;
  height: 3.2rem;
  margin-right: 8px;
  margin-right: .8rem;
}
.menu-switcher span {
  background: #444 repeat scroll 0 0;
  border-radius: 0;
  display: block;
  height: 3px;
  left: 0px;
  position: absolute;
  top: 6px;
  transition: all 0.2s ease 0s;
  width: 25px;
  opacity: 1;
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
}
.menu-switcher span:nth-child(2) {
  top: 13px;
}
.menu-switcher span:nth-child(3) {
  top: 13px;
}
.menu-switcher span:nth-child(4) {
  top: 20px;
}
.menu-switcher .menu-switcher__text {
  line-height: 32px;
  line-height: 3.2rem;
  color: #444;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.menu-switcher.open span:nth-child(1),
.menu-switcher.open span:nth-child(4) {
  width: 0%;
  left: 50%;
}
.menu-switcher.open span:nth-child(2) {
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.menu-switcher.open span:nth-child(3) {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
@media screen and (max-width: 79.9375em) {
  .menu-switcher {
    display: block;
  }
}
.mobile-menu-top {
  padding: 20px 26px;
  padding: 2rem 2.6rem;
  color: #444;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 15px;
  line-height: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 3px solid #444;
  position: relative;
}
.mobile-menu-top__btn {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 28px;
  right: 2.8rem;
}
.mobile-menu-top__btn span {
  width: 15px;
  background: #006367;
  height: 2px;
  display: block;
  position: absolute;
  top: 0;
}
.mobile-menu-top__btn span:nth-child(1) {
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.mobile-menu-top__btn span:nth-child(2) {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}
.show-menu .mobile-menu {
  left: 0;
  transition: left .2s ease;
  overflow: auto;
}
.mobile-menu {
  position: absolute;
  top: 0;
  left: -260px;
  width: 260px;
  background-color: #fff;
  z-index: 99;
  height: 100%;
  transition: left .2s ease;
}
.mobile-menu .mobile-menu-navigation {
  padding: 0;
  margin: 0;
}
.mobile-menu .menu-item-has-children.current-menu-item > .mobile-menu-toggler,
.mobile-menu .menu-item-has-children.open > .mobile-menu-toggler {
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
  transition: transform .2s ease;
}
.mobile-menu .menu-item-has-children.current-menu-item {
  color: #fff;
}
.mobile-menu .menu-item-has-children.current-menu-item > a {
  background-color: #006367;
  color: #fff;
}
.mobile-menu .menu-item-has-children.current-menu-item .sub-menu {
  display: block;
}
.mobile-menu .menu-item {
  padding: 0;
  margin: 0;
}
.mobile-menu .menu-item::before {
  display: none;
}
.mobile-menu .menu-item:hover {
  background-color: #006367;
  color: #fff;
}
.mobile-menu .menu-item:hover > a {
  color: #fff;
}
.mobile-menu .menu-item a {
  font-weight: 600;
  color: #444;
  display: block;
  padding: 10px 26px 10px;
  padding: 1rem 2.6rem 1rem;
  border-bottom: 1px solid #dedede;
  z-index: 1;
  font-size: 15px;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.mobile-menu .menu-item a:hover {
  background-color: #006367;
  color: #fff;
}
.mobile-menu .mobile-menu-toggler {
  position: absolute;
  width: 46px;
  height: 46px;
  line-height: 46px;
  top: 0;
  right: 0;
  text-align: center;
}
.mobile-menu .sub-menu {
  background-color: #E2E2E2;
  margin: 0;
  display: none;
  padding-left: 0;
}
.mobile-menu .sub-menu .menu-item-has-children.open .mobile-menu-toggler {
  -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
  transition: transform .2s ease;
}
.mobile-menu .sub-menu .menu-item {
  position: relative;
  list-style: none;
}
.mobile-menu .sub-menu .mobile-menu-toggler {
  width: 46px;
  height: 40px;
  line-height: 40px;
}
.mobile-menu .sub-menu .menu-item.current-menu-parent > a,
.mobile-menu .sub-menu .menu-item.current-menu-item > a {
  background-color: #E2E2E2;
  color: #444;
}
.mobile-menu .sub-menu a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  padding-left: 25px;
  padding-left: 2.5rem;
}
.mobile-menu .sub-menu a:hover {
  background-color: #E2E2E2;
  color: #231f20;
}
.mobile-menu .sub-menu .sub-menu a {
  padding-left: 35px;
  padding-left: 3.5rem;
}
.mobile-menu .sub-menu .sub-menu a:hover {
  background-color: #E2E2E2;
  color: #231f20;
}
@media screen and (min-width: 80em) {
  .show-menu {
    overflow: auto;
  }
  .show-menu .mobile-menu {
    display: none;
  }
  body.show-overlay .page-overlay {
    display: none;
  }
}
@media screen and (max-width: 47.9375em) {
  .mobile-menu-box-close {
    top: 1.8rem;
  }
}
.comments-area {
  padding-bottom: 60px;
  padding-bottom: 6rem;
}
.comments-header {
  padding-left: 56px;
  padding-left: 5.6rem;
  border-bottom: 2px solid #333;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  position: relative;
}
.comments-header::before {
  background-image: url(../img/sprite.png);
  background-position: -170px -102px;
  background-repeat: no-repeat;
  content: "";
  width: 50px;
  width: 5rem;
  height: 40px;
  height: 4rem;
  display: block;
  position: absolute;
  left: 0;
}
.comments-header .comments-header__title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 30px;
  line-height: 3rem;
  padding: 5px 14px;
  padding: .5rem 1.4rem;
  display: inline-block;
  box-sizing: border-box;
  background-color: #e3e3e3;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  font-family: 'Open Sans Condensed', sans-serif;
}
.comment-list {
  margin: 40px 0 0;
  margin: 4rem 0 0;
}
.comment-list .comment {
  border-bottom: 1px solid rgba(68, 68, 68, 0.06);
}
.comment-list .says {
  display: none;
}
.comment-list .fn,
.comment-list .fn a,
.comment-list .says {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-style: normal;
  font-weight: 600;
}
.comment-list label {
  margin-bottom: 3px;
  margin-bottom: .3rem;
  display: inline-block;
}
.comment-list li {
  padding: 0;
}
.comment-list li::before {
  display: none;
}
.comment-list .commentmetadata a {
  color: #999999;
  text-decoration: none;
  font-size: 14.5px;
  font-size: 1.45rem;
  line-height: 20px;
  line-height: 2rem;
}
.comment-list .comment-body p {
  margin-bottom: 5px;
  margin-bottom: .5rem;
}
.comment-list .reply a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}
.comment-list .reply a:hover {
  color: #00383a;
}
.comment .avatar {
  border-radius: 50%;
  float: left;
  margin: 0 23px 0 0;
  display: block;
}
.comments-form-btn {
  background-color: rgba(68, 68, 68, 0.06);
  border: 1px solid rgba(68, 68, 68, 0.15);
  padding: 20px;
  padding: 2rem;
  cursor: pointer;
}
.comments-form-fake-input {
  display: block;
  background-color: #fff;
  border: 1px solid rgba(68, 68, 68, 0.3);
  height: 50px;
  height: 5rem;
  line-height: 50px;
  line-height: 5rem;
  box-sizing: border-box;
  width: 100%;
  font-style: italic;
  color: #aaaaaa;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 0 11px;
  font-weight: 400;
}
.comment-respond {
  background-color: rgba(68, 68, 68, 0.06);
  border: 1px solid rgba(68, 68, 68, 0.15);
  padding: 20px;
  padding: 2rem;
  display: none;
  position: relative;
}
.comment-respond .comment-form-author,
.comment-respond .comment-form-email {
  float: left;
  width: 33.333%;
  padding-right: 15px;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
.comment-respond .form-submit {
  clear: both;
}
.comment-respond .form-submit input[type="submit"] {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 28px;
  line-height: 2.8rem;
  min-width: 40px;
  height: 40px;
  padding: 5px 10px;
  border-radius: 2px;
  max-width: 200px;
  border: none;
  text-align: center;
  color: #FFF;
  background-color: #006367;
  min-width: 200px;
  transition: all .2s ease;
}
.comment-respond .form-submit input[type="submit"]:hover {
  background-color: #00383a;
  color: #FFF;
  transition: all .2s ease;
}
.comment-reply-title {
  display: inline-block;
  position: absolute;
  right: 20px;
  right: 2rem;
  top: 18px;
  top: 1.8rem;
}
.comment-reply-title a {
  text-transform: uppercase;
  font-size: 14.5px;
  font-size: 1.45rem;
  line-height: 20px;
  line-height: 2rem;
  text-decoration: none;
}
.single-sticky {
  border-top: 1px solid rgba(68, 68, 68, 0.2);
  background: #FFF;
  padding: 21px 0;
  padding: 2.1rem 0;
  position: fixed;
  left: 0;
  width: 100%;
  bottom: 0;
  display: none;
  z-index: 9;
}
.single-share {
  text-align: center;
}
.single-share-wrapper {
  padding: 0;
  margin: 0;
  text-align: center;
}
.single-share-wrapper li {
  display: inline-block;
  width: 28px;
  width: 2.8rem;
  margin-bottom: 0;
}
.single-share-wrapper li::before {
  display: none;
}
.single-share-wrapper .facebook a {
  background: #355a92;
}
.single-share-wrapper .twitter a {
  background: #00aced;
}
.single-share-wrapper .gplus a {
  background: #c64d3d;
}
.single-share-wrapper .pinterest a {
  background: #C92228;
}
.single-share-wrapper .linkedin a {
  background: #007bb6;
}
.single-share-wrapper a {
  width: 28px;
  width: 2.8rem;
  height: 28px;
  height: 2.8rem;
  display: block;
  color: #fff;
  text-align: center;
}
.single-share-wrapper a span {
  display: none;
}
@media print {
  html {
    font-size: 62.5%;
  }
  body {
    font: 15px Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
    background: none !important;
    /* Brute force since user agents all print differently. */
    color: #000;
  }
  .wf-active body {
    font: 15px Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
    background: none !important;
    /* Brute force since user agents all print differently. */
    color: #000;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  img {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  blockquote,
  table,
  pre {
    page-break-inside: avoid;
  }
  ul,
  ol,
  dl {
    page-break-before: avoid;
  }
  body > header {
    padding-top: 0px;
    box-sizing: border-box;
    height: auto;
    display: none;
  }
  footer {
    display: none;
  }
  .entry__content h1,
  .entry__content h2,
  .entry__content h3,
  .entry__content h4,
  .entry__content h5,
  .entry__content h6 {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #000;
  }
  .entry__content h1 {
    font-size: 2rem;
  }
  .entry__content h2 {
    font-size: 1.8rem;
  }
  .entry__content h3 {
    font-size: 1.6rem;
  }
  .entry__content h4 {
    font-size: 1.4rem;
  }
  .entry__content h5 {
    font-size: 1.2rem;
  }
  .entry__content h6 {
    font-size: 1rem;
  }
  .entry__content ul {
    margin-left: 2em;
    padding-left: 0;
  }
  .entry__content ul li {
    margin: 0;
    padding: 0;
    list-style: disc;
  }
  .entry__content ul li:before {
    display: none;
  }
  .entry__content table th,
  .entry__content table td {
    padding: 4px 6px;
    color: #000;
  }
  .entry__content table th a,
  .entry__content table td a {
    color: #000;
  }
  .entry__content table th {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1rem;
    font-weight: bold;
    background: transparent;
  }
  .entry__content table td {
    background: transparent;
  }
  .entry__content p a[href^="http://"]:after,
  .entry__content a[href^="https://"]:after {
    content: " (" attr(href) ")";
  }
  .entry__content p a {
    word-wrap: break-word;
  }
  .entry__content q:after {
    content: " (Zdroj: " attr(cite) ")";
  }
  .btn {
    text-decoration: underline;
    color: #000;
  }
  .container {
    width: 100%;
  }
  .main-header,
  .main-menu {
    display: none;
  }
  .slider {
    display: none;
  }
  .sidebar {
    display: none;
  }
  .content {
    float: none;
    width: 100%;
    padding: 0;
  }
  .news-more {
    display: none;
  }
  .perexies-box {
    margin: 0;
  }
  .page-banner {
    background-image: none !important;
  }
  .page-header__title {
    color: #000;
  }
  .perexies-item__title {
    color: #000;
  }
  .page-content-title {
    color: #000;
  }
  .news-content-item-text__title {
    color: #000;
  }
  .news-content-item-text__title h2 {
    color: #000;
  }
  .more-department-link {
    color: #000;
  }
  .contacts-info-map {
    display: none;
  }
  .contacts-list-title {
    color: #000;
  }
  .contacts-list-header-item {
    width: 25% !important;
  }
  .contacts-list-item--title {
    width: 50% !important;
  }
  .contacts-list-item--title .contacts-list-item {
    width: 50% !important;
  }
  .contacts-list-item--contacts {
    width: 50% !important;
  }
  .contacts-list-item--contacts .contacts-list-item {
    width: 50% !important;
  }
  .contacts-teachers .contacts-list-header-item {
    width: 20% !important;
  }
  .contacts-teachers .contacts-list-item--title {
    width: 40% !important;
  }
  .contacts-teachers .contacts-list-item--title .contacts-list-item {
    width: 50% !important;
  }
  .contacts-teachers .contacts-list-item--contacts {
    width: 60% !important;
  }
  .contacts-teachers .contacts-list-item--contacts .contacts-list-item {
    width: 33.333% !important;
  }
  .photogallery-detail,
  .photogallery {
    margin-left: 0;
    margin-right: 0;
  }
}
.nf-after-form-content .nf-form-hp { display: none; }