/*
Theme Name: Twenty Ten
Theme URI: http://wordpress.org/themes/twentyten
Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable -- make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the "Asides" and "Gallery" categories, and has an optional one-column page template that removes the sidebar.
Author: the WordPress team
Author URI: http://wordpress.org/
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu, flexible-header
Text Domain: twentyten
*/

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
@import url(
  https://fonts.googleapis.com/css?family=Roboto:400,
  100italic,
  100,
  300,
  300italic,
  400italic,
  700italic,
  700&subset=latin,
  cyrillic
);

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box; /*Firefox 1-3*/
  -webkit-box-sizing: border-box; /* Safari */
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
body {
  line-height: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
blockquote {
  quotes: none;
}
blockquote:before,
blockquote:after {
  content: '';
  content: none;
}
del {
  text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a img {
  border: none;
}

/* =Layout
-------------------------------------------------------------- */

/*
LAYOUT: Two columns
DESCRIPTION: Two-column fixed layout with one sidebar right of content
*/

#container {
  float: left;
  margin: 0 -240px 0 0;
  width: 100%;
}
#content {
  margin: 0 280px 0 20px;
}
#primary,
#secondary {
  float: right;
  overflow: hidden;
  width: 220px;
}
#secondary {
  clear: right;
}
#footer {
  clear: both;
  width: 100%;
}

/*
LAYOUT: One column, no sidebar
DESCRIPTION: One centered column with no sidebar
*/

.one-column #content {
  margin: 0 auto;
  width: 640px;
}

/*
LAYOUT: Full width, no sidebar
DESCRIPTION: Full width content with no sidebar; used for attachment pages
*/

.single-attachment #content {
  margin: 0 auto;
  width: 900px;
}

/* =Fonts
-------------------------------------------------------------- */
body,
input,
textarea,
.page-title span,
.pingback a.url {
  font-family: 'Roboto', sans-serif;
}
h3#comments-title,
h3#reply-title,
#access .menu,
#access div.menu ul,
#cancel-comment-reply-link,
.form-allowed-tags,
#site-info,
#site-title,
#wp-calendar,
.comment-meta,
.comment-body tr th,
.comment-body thead th,
.entry-content label,
.entry-content tr th,
.entry-content thead th,
.entry-meta,
.entry-title,
.entry-utility,
#respond label,
.navigation,
.page-title,
.pingback p,
.reply,
.widget-title,
.wp-caption-text {
  font-family: 'Roboto', sans-serif;
}
input[type='submit'] {
  font-family: 'Roboto', sans-serif;
}
pre {
  font-family: 'Roboto', sans-serif;
}
code {
  font-family: 'Roboto', sans-serif;
}

/* =Structure
-------------------------------------------------------------- */

/* The main theme structure */
#access .menu-header,
div.menu,
#colophon,
#branding,
#main,
#wrapper {
  margin: 0 auto;
  width: 940px;
}
#wrapper {
  background: #fff;
  margin-top: 20px;
  padding: 0 20px;
}

/* Structure the footer area */
#footer-widget-area {
  overflow: hidden;
}
#footer-widget-area .widget-area {
  float: left;
  margin-right: 20px;
  width: 220px;
}
#footer-widget-area #fourth {
  margin-right: 0;
}
#site-info {
  float: left;
  font-size: 14px;
  font-weight: bold;
  width: 700px;
}
#site-generator {
  float: right;
  width: 220px;
}

/* =Global Elements
-------------------------------------------------------------- */

/* Main global 'theme' and typographic styles */
body {
  background: #f1f1f1;
}
body,
input,
textarea {
  color: #666;
  font-size: 12px;
  line-height: 18px;
}
hr {
  background-color: #e7e7e7;
  border: 0;
  clear: both;
  height: 1px;
  margin-bottom: 18px;
}

/* Text elements */
p {
  margin-bottom: 18px;
}
ul {
  list-style: square;
  margin: 0 0 18px 1.5em;
}
ol {
  list-style: decimal;
  margin: 0 0 18px 1.5em;
}
ol ol {
  list-style: upper-alpha;
}
ol ol ol {
  list-style: lower-roman;
}
ol ol ol ol {
  list-style: lower-alpha;
}
ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}
dl {
  margin: 0 0 24px 0;
}
dt {
  font-weight: bold;
}
dd {
  margin-bottom: 18px;
}
strong {
  font-weight: bold;
}
cite,
em,
i {
  font-style: italic;
}
big {
  font-size: 131.25%;
}
ins {
  background: #ffc;
  text-decoration: none;
}
blockquote {
  font-style: italic;
  padding: 0 3em;
}
blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}
pre {
  background: #f7f7f7;
  color: #222;
  line-height: 18px;
  margin-bottom: 18px;
  overflow: auto;
  padding: 1.5em;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
}
sub {
  top: 0.5ex;
}
small {
  font-size: smaller;
}
input[type='text'],
input[type='password'],
input[type='email'],
input[type='url'],
input[type='number'],
textarea {
  background: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  padding: 2px;
}
a:link {
  color: #0066cc;
  transition: 500ms all ease;
}
a:visited {
  color: #743399;
}
a:active,
a:hover {
  color: #ff4b33;
}

/* Text meant only for screen readers */
.screen-reader-text {
  position: absolute;
  left: -9000px;
}

#text {
  font-size: 15px;
  color: #202020;
  padding: 50px 0;
}

/* =Header
-------------------------------------------------------------- */

#header {
  padding: 30px 0 0 0;
}
#site-title {
  float: left;
  font-size: 30px;
  line-height: 36px;
  margin: 0 0 18px 0;
  width: 700px;
}
#site-title a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
#site-description {
  clear: right;
  float: right;
  font-style: italic;
  margin: 15px 0 18px 0;
  width: 220px;
}

/* This is the custom header image */
#branding img {
  border-top: 4px solid #000;
  border-bottom: 1px solid #000;
  display: block;
  float: left;
}

/* =Menu
-------------------------------------------------------------- */

#access {
  background: #000;
  display: block;
  float: left;
  margin: 0 auto;
  width: 940px;
}
#access .menu-header,
div.menu {
  font-size: 13px;
  margin-left: 12px;
  width: 928px;
}
#access .menu-header ul,
div.menu ul {
  list-style: none;
  margin: 0;
}
#access .menu-header li,
div.menu li {
  float: left;
  position: relative;
}
#access a {
  color: #aaa;
  display: block;
  line-height: 38px;
  padding: 0 10px;
  text-decoration: none;
}
#access ul ul {
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  float: left;
  width: 180px;
  z-index: 99999;
}
#access ul ul li {
  min-width: 180px;
}
#access ul ul ul {
  left: 100%;
  top: 0;
}
#access ul ul a {
  background: #333;
  line-height: 1em;
  padding: 10px;
  width: 160px;
  height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
  background: #333;
  color: #fff;
}
#access ul li:hover > ul {
  display: block;
}
#access ul li.current_page_item > a,
#access ul li.current_page_ancestor > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
  color: #fff;
}
* html #access ul li.current_page_item a,
* html #access ul li.current_page_ancestor a,
* html #access ul li.current-menu-ancestor a,
* html #access ul li.current-menu-item a,
* html #access ul li.current-menu-parent a,
* html #access ul li a:hover {
  color: #fff;
}

/* =Content
-------------------------------------------------------------- */

#main {
  clear: both;
  overflow: hidden;
  padding: 40px 0 0 0;
}
#content {
  margin-bottom: 36px;
}
#content,
#content input,
#content textarea {
  color: #333;
  font-size: 16px;
  line-height: 24px;
}
#content p,
#content ul,
#content ol,
#content dd,
#content pre,
#content hr {
  margin-bottom: 24px;
}
#content ul ul,
#content ol ol,
#content ul ol,
#content ol ul {
  margin-bottom: 0;
}
#content pre,
#content kbd,
#content tt,
#content var {
  font-size: 15px;
  line-height: 21px;
}
#content code {
  font-size: 13px;
}
#content dt,
#content th {
  color: #000;
}
#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
  color: #000;
  line-height: 1.5em;
  margin: 0 0 20px 0;
}
#content table {
  border: 1px solid #e7e7e7;
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
}
#content tr th,
#content thead th {
  color: #777;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
  padding: 9px 24px;
}
#content tr td {
  border-top: 1px solid #e7e7e7;
  padding: 6px 24px;
}
#content tr.odd td {
  background: #f2f7fc;
}
.hentry {
  margin: 0 0 48px 0;
}
.home .sticky {
  background: #f2f7fc;
  border-top: 4px solid #000;
  margin-left: -20px;
  margin-right: -20px;
  padding: 18px 20px;
}
.single .hentry {
  margin: 0 0 36px 0;
}
.page-title {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 36px 0;
}
.page-title span {
  color: #333;
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
}
.page-title a:link,
.page-title a:visited {
  color: #777;
  text-decoration: none;
}
.page-title a:active,
.page-title a:hover {
  color: #ff4b33;
}
#content .entry-title {
  color: #000;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 0;
}
.entry-title a:link,
.entry-title a:visited {
  color: #000;
  text-decoration: none;
}
.entry-title a:active,
.entry-title a:hover {
  color: #ff4b33;
}
.entry-meta {
  color: #777;
  font-size: 12px;
}
.entry-meta abbr,
.entry-utility abbr {
  border: none;
}
.entry-meta abbr:hover,
.entry-utility abbr:hover {
  border-bottom: 1px dotted #666;
}
.entry-content,
.entry-summary {
  clear: both;
  padding: 12px 0 0 0;
}
#content .entry-summary p:last-child {
  margin-bottom: 12px;
}
.entry-content fieldset {
  border: 1px solid #e7e7e7;
  margin: 0 0 24px 0;
  padding: 24px;
}
.entry-content fieldset legend {
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 0 24px;
}
.entry-content input {
  margin: 0 0 24px 0;
}
.entry-content input.file,
.entry-content input.button {
  margin-right: 24px;
}
.entry-content label {
  color: #777;
  font-size: 12px;
}
.entry-content select {
  margin: 0 0 24px 0;
}
.entry-content sup,
.entry-content sub {
  font-size: 10px;
}
.entry-content blockquote.left {
  float: left;
  margin-left: 0;
  margin-right: 24px;
  text-align: right;
  width: 33%;
}
.entry-content blockquote.right {
  float: right;
  margin-left: 24px;
  margin-right: 0;
  text-align: left;
  width: 33%;
}
.page-link {
  clear: both;
  color: #000;
  font-weight: bold;
  line-height: 48px;
  word-spacing: 0.5em;
}
.page-link a:link,
.page-link a:visited {
  background: #f1f1f1;
  color: #333;
  font-weight: normal;
  padding: 0.5em 0.75em;
  text-decoration: none;
}
.home .sticky .page-link a {
  background: #d9e8f7;
}
.page-link a:active,
.page-link a:hover {
  color: #ff4b33;
}
body.page .edit-link {
  clear: both;
  display: block;
}
#entry-author-info {
  background: #f2f7fc;
  border-top: 4px solid #000;
  clear: both;
  font-size: 14px;
  line-height: 20px;
  margin: 24px 0;
  overflow: hidden;
  padding: 18px 20px;
}
#entry-author-info #author-avatar {
  background: #fff;
  border: 1px solid #e7e7e7;
  float: left;
  height: 60px;
  margin: 0 -104px 0 0;
  padding: 11px;
}
#entry-author-info #author-description {
  float: left;
  margin: 0 0 0 104px;
}
#entry-author-info h2 {
  color: #000;
  font-size: 100%;
  font-weight: bold;
  margin-bottom: 0;
}
.entry-utility {
  clear: both;
  color: #777;
  font-size: 12px;
  line-height: 18px;
}
.entry-meta a,
.entry-utility a {
  color: #777;
}
.entry-meta a:hover,
.entry-utility a:hover {
  color: #ff4b33;
}
#content .video-player {
  padding: 0;
}

/* =Asides
-------------------------------------------------------------- */

.home #content .format-aside p,
.home #content .category-asides p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 0;
}
.home .hentry.format-aside,
.home .hentry.category-asides {
  padding: 0;
}
.home #content .format-aside .entry-content,
.home #content .category-asides .entry-content {
  padding-top: 0;
}

/* =Gallery listing
-------------------------------------------------------------- */

.format-gallery .size-thumbnail img,
.category-gallery .size-thumbnail img {
  border: 10px solid #f1f1f1;
  margin-bottom: 0;
}
.format-gallery .gallery-thumb,
.category-gallery .gallery-thumb {
  float: left;
  margin-right: 20px;
  margin-top: -4px;
}
.home #content .format-gallery .entry-utility,
.home #content .category-gallery .entry-utility {
  padding-top: 4px;
}

/* =Attachment pages
-------------------------------------------------------------- */

.attachment .entry-content .entry-caption {
  font-size: 140%;
  margin-top: 24px;
}
.attachment .entry-content .nav-previous a:before {
  content: '\2190\00a0';
}
.attachment .entry-content .nav-next a:after {
  content: '\00a0\2192';
}

/* =Images
-------------------------------------------------------------- */

/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-container img {
  max-width: 100%; /* When images are too wide for containing element, force them to fit. */
  height: auto; /* Override height to match resized width for correct aspect ratio. */
}
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}
.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}
.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}
.wp-caption {
  background: #f1f1f1;
  line-height: 18px;
  margin-bottom: 20px;
  max-width: 632px !important; /* prevent too-wide images from breaking layout */
  padding: 4px;
  text-align: center;
}
.wp-caption img {
  margin: 5px 5px 0;
  max-width: 622px; /* caption width - 10px */
}
.wp-caption p.wp-caption-text {
  color: #777;
  font-size: 12px;
  margin: 5px;
}
.wp-smiley {
  margin: 0;
}
.gallery {
  margin: 0 auto 18px;
}
.gallery .gallery-item {
  float: left;
  margin-top: 0;
  text-align: center;
  width: 33%;
}
.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery-columns-4 .gallery-item {
  width: 25%;
}
.gallery img {
  border: 2px solid #cfcfcf;
}
.gallery-columns-2 .attachment-medium {
  max-width: 92%;
  height: auto;
}
.gallery-columns-4 .attachment-thumbnail {
  max-width: 84%;
  height: auto;
}
.gallery .gallery-caption {
  color: #777;
  font-size: 12px;
  margin: 0 0 12px;
}
.gallery dl {
  margin: 0;
}
.gallery img {
  border: 10px solid #f1f1f1;
}
.gallery br + br {
  display: none;
}
#content .attachment img {
  /* single attachment images should be centered */
  display: block;
  margin: 0 auto;
}

/* =Navigation
-------------------------------------------------------------- */

.navigation {
  color: #777;
  font-size: 12px;
  line-height: 18px;
  overflow: hidden;
}
.navigation a:link,
.navigation a:visited {
  color: #777;
  text-decoration: none;
}
.navigation a:active,
.navigation a:hover {
  color: #ff4b33;
}
.nav-previous {
  float: left;
  width: 50%;
}
.nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
#nav-above {
  margin: 0 0 18px 0;
}
#nav-above {
  display: none;
}
.paged #nav-above,
.single #nav-above {
  display: block;
}
#nav-below {
  margin: -18px 0 0 0;
}

/* =Comments
-------------------------------------------------------------- */
#comments {
  clear: both;
}
#comments .navigation {
  padding: 0 0 18px 0;
}
h3#comments-title,
h3#reply-title {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
h3#comments-title {
  padding: 24px 0;
}
.commentlist {
  list-style: none;
  margin: 0;
}
.commentlist li.comment {
  border-bottom: 1px solid #e7e7e7;
  line-height: 24px;
  margin: 0 0 24px 0;
  padding: 0 0 0 56px;
  position: relative;
}
.commentlist li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
#comments .comment-body ul,
#comments .comment-body ol {
  margin-bottom: 18px;
}
#comments .comment-body p:last-child {
  margin-bottom: 6px;
}
#comments .comment-body blockquote p:last-child {
  margin-bottom: 24px;
}
.commentlist ol {
  list-style: decimal;
}
.commentlist .avatar {
  position: absolute;
  top: 4px;
  left: 0;
}
.comment-author {
}
.comment-author cite {
  color: #000;
  font-style: normal;
  font-weight: bold;
}
.comment-author .says {
  font-style: italic;
}
.comment-meta {
  font-size: 12px;
  margin: 0 0 18px 0;
}
.comment-meta a:link,
.comment-meta a:visited {
  color: #777;
  text-decoration: none;
}
.comment-meta a:active,
.comment-meta a:hover {
  color: #ff4b33;
}
.commentlist .even {
}
.commentlist .bypostauthor {
}
.reply {
  font-size: 12px;
  padding: 0 0 24px 0;
}
.reply a,
a.comment-edit-link {
  color: #777;
}
.reply a:hover,
a.comment-edit-link:hover {
  color: #ff4b33;
}
.commentlist .children {
  list-style: none;
  margin: 0;
}
.commentlist .children li {
  border: none;
  margin: 0;
}
.nopassword,
.nocomments {
  display: none;
}
#comments .pingback {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.commentlist li.comment + li.pingback {
  margin-top: -6px;
}
#comments .pingback p {
  color: #777;
  display: block;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}
#comments .pingback .url {
  font-size: 13px;
  font-style: italic;
}

/* Comments form */
input[type='submit'] {
  color: #333;
}
#respond {
  border-top: 1px solid #e7e7e7;
  margin: 24px 0;
  overflow: hidden;
  position: relative;
}
#respond p {
  margin: 0;
}
#respond .comment-notes {
  margin-bottom: 1em;
}
.form-allowed-tags {
  line-height: 1em;
}
.children #respond {
  margin: 0 48px 0 0;
}
h3#reply-title {
  margin: 18px 0;
}
#comments-list #respond {
  margin: 0 0 18px 0;
}
#comments-list ul #respond {
  margin: 0;
}
#cancel-comment-reply-link {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
}
#respond .required {
  color: #ff4b33;
  font-weight: bold;
}
#respond label {
  color: #777;
  font-size: 12px;
}
#respond input {
  margin: 0 0 9px;
  width: 98%;
}
#respond textarea {
  width: 98%;
}
#respond .form-allowed-tags {
  color: #777;
  font-size: 12px;
  line-height: 18px;
}
#respond .form-allowed-tags code {
  font-size: 11px;
}
#respond .form-submit {
  margin: 12px 0;
}
#respond .form-submit input {
  font-size: 14px;
  width: auto;
}

/* =Widget Areas
-------------------------------------------------------------- */

.widget-area ul {
  list-style: none;
  margin-left: 0;
}
.widget-area ul ul {
  list-style: square;
  margin-left: 1.3em;
}
.widget-area select {
  max-width: 100%;
}
.widget_search #s {
  /* This keeps the search inputs in line */
  width: 60%;
}
.widget_search label {
  display: none;
}
.widget-container {
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  margin: 0 0 18px 0;
}
.widget-container .wp-caption img {
  margin: auto;
}
.widget-title {
  color: #222;
  font-weight: bold;
}
.widget-area a:link,
.widget-area a:visited {
  text-decoration: none;
}
.widget-area a:active,
.widget-area a:hover {
  text-decoration: underline;
}
.widget-area .entry-meta {
  font-size: 11px;
}
#wp_tag_cloud div {
  line-height: 1.6em;
}
#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  color: #222;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 4px;
  text-align: left;
}
#wp-calendar thead {
  font-size: 11px;
}
#wp-calendar thead th {
}
#wp-calendar tbody {
  color: #aaa;
}
#wp-calendar tbody td {
  background: #f5f5f5;
  border: 1px solid #fff;
  padding: 3px 0 2px;
  text-align: center;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  text-align: right;
}
.widget_rss a.rsswidget {
  color: #000;
}
.widget_rss a.rsswidget:hover {
  color: #ff4b33;
}
.widget_rss .widget-title img {
  width: 11px;
  height: 11px;
}

/* Main sidebars */
#main .widget-area ul {
  margin-left: 0;
  padding: 0 20px 0 0;
}
#main .widget-area ul ul {
  border: none;
  margin-left: 1.3em;
  padding: 0;
}
#primary {
}
#secondary {
}

/* Footer widget areas */
#footer-widget-area {
}

/* =Footer
-------------------------------------------------------------- */

#footer {
  margin-bottom: 20px;
}
#colophon {
  border-top: 4px solid #000;
  margin-top: -4px;
  overflow: hidden;
  padding: 18px 0;
}
#site-info {
  font-weight: bold;
}
#site-info a {
  color: #000;
  text-decoration: none;
}
#site-generator {
  font-style: italic;
  position: relative;
}
#site-generator a {
  background: url(images/wordpress.png) center left no-repeat;
  color: #666;
  display: inline-block;
  line-height: 16px;
  padding-left: 20px;
  text-decoration: none;
}
#site-generator a:hover {
  text-decoration: underline;
}
img#wpstats {
  display: block;
  margin: 0 auto 10px;
}

/* =Mobile Safari ( iPad, iPhone and iPod Touch )
-------------------------------------------------------------- */

pre {
  -webkit-text-size-adjust: 140%;
}
code {
  -webkit-text-size-adjust: 160%;
}
#access,
.entry-meta,
.entry-utility,
.navigation,
.widget-area {
  -webkit-text-size-adjust: 120%;
}
#site-description {
  -webkit-text-size-adjust: none;
}

/* =Print Style
-------------------------------------------------------------- */

@media print {
  body {
    background: none !important;
  }
  #wrapper {
    clear: both !important;
    display: block !important;
    float: none !important;
    position: relative !important;
  }
  #header {
    border-bottom: 2pt solid #000;
    padding-bottom: 18pt;
  }
  #colophon {
    border-top: 2pt solid #000;
  }
  #site-title,
  #site-description {
    float: none;
    line-height: 1.4em;
    margin: 0;
    padding: 0;
  }
  #site-title {
    font-size: 13pt;
  }
  .entry-content {
    font-size: 14pt;
    line-height: 1.6em;
  }
  .entry-title {
    font-size: 21pt;
  }
  #access,
  #branding img,
  #respond,
  .comment-edit-link,
  .edit-link,
  .navigation,
  .page-link,
  .widget-area {
    display: none !important;
  }
  #container,
  #header,
  #footer {
    margin: 0;
    width: 100%;
  }
  #content,
  .one-column #content {
    margin: 24pt 0 0;
    width: 100%;
  }
  .wp-caption p {
    font-size: 11pt;
  }
  #site-info,
  #site-generator {
    float: none;
    width: auto;
  }
  #colophon {
    width: auto;
  }
  img#wpstats {
    display: none;
  }
  #site-generator a {
    margin: 0;
    padding: 0;
  }
  #entry-author-info {
    border: 1px solid #e7e7e7;
  }
  #main {
    display: inline;
  }
  .home .sticky {
    border: none;
  }
}
#header {
  position: relative;
  padding: 0;
}
#wrapper {
  background: none;
  margin-top: 0;
  padding: 0;
}
#colophon,
#footer {
  border: none;
  position: relative;
  margin: 0;
  padding: 0;
}
.center {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}
header#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: url(images/head.png) center 0 repeat-x;
  z-index: 10;
  height: 130px;
}
.fixed-head {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: 500ms all ease;
}
.fixed-head.active {
  visibility: visible;
  opacity: 1;
}
.fixed-head .logo {
  position: absolute;
  left: 15px;
  top: 10px;
  width: 88px;
  height: 60px;
  background: url(images/logo.png) 0 0 no-repeat;
  background-size: contain;
}
header#header .logo {
  position: absolute;
  left: 15px;
  top: 10px;
  width: 88px;
  height: 92px;
  background: url(images/logo.png) 0 0 no-repeat;
}
.fixed-head .logo:hover,
header#header .logo:hover {
  opacity: 0.7;
}
.fixed-head .tagline,
header .tagline {
  position: absolute;
  top: 40px;
  left: 215px;
  line-height: 26px;
  color: #000;
  font-size: 30px;
  font-weight: 300;
}
.fixed-head .tagline {
  top: 25px;
}
.fixed-head .phone,
#header .phone {
  position: absolute;
  right: 15px;
  top: 40px;
  line-height: 30px;
  color: #00a8e8;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
}
.fixed-head .phone a,
#header .phone a {
  line-height: 30px;
  color: #00a8e8;
  font-size: 36px;
  font-weight: bold;
  text-decoration: none;
}
.fixed-head .phone span.text,
#header .phone span.text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  text-align: right;
  display: block;
  line-height: 1.3;
}
.fixed-head .phone {
  top: 15px;
}
.fixed-head .phone span,
#header .phone span {
  color: #000;
}
body {
  background: #fff;
}
.home-screen {
  position: relative;
  width: 100%;
  /*min-height: ;*/
}
.home-screen .center {
  z-index: 5;
  padding-top: 170px;
}
.home-screen .bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  min-height: 700px;
  background: #fff url(images/home_screen.jpg) center 0 no-repeat;
}
body.page-id-198 .home-screen .bg {
  min-height: 600px;
}
body.page-template-page-zahor .home-screen .bg {
  background: #fff url(images/zah_bg.jpg) center 0 no-repeat;
}
body.page-template-page-krem .home-screen .bg,
body.page-template-page-krem-inner .home-screen .bg {
  background: #fff url(images/krem_bg.jpg) center 0 no-repeat;
}
body.page-template-page-cats .home-screen .bg {
  background: #fff url(images/cats_bg.jpg) center 0 no-repeat;
}
.wpcf7-not-valid {
  border: 1px solid red !important;
}
div.wpcf7-validation-errors {
  display: none !important;
}
div.wpcf7-mail-sent-ok {
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #398f14;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
.home-screen .title-text {
  float: left;
}
.home-screen .title {
  position: relative;
  float: left;
  max-width: 540px;
  line-height: 63px;
  padding-top: 108px;
}
.home-screen .title span {
  font-size: 48px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 38px;
  display: inline;
  background: rgba(0, 126, 167, 0.749);
}
.home-screen .subheading {
  position: relative;
  max-width: 540px;
  line-height: 63px;
  padding-top: 108px;
}
.home-screen .subheading span {
  font-size: 28px;
  font-weight: 300;
  color: rgb(255, 255, 255);
  line-height: 38px;
  display: inline;
  background: rgba(0, 126, 167, 0.749);
  padding: 2px 10px;
}
.home-screen .form {
  position: relative;
  float: right;
  max-width: 370px;
  border-left: 5px solid #88d4c5;
  background: #fff;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  padding: 15px 30px 20px 25px;
}
.home-screen .form p {
  margin: 0;
}
.home-screen .form input[type='text'] {
  border-width: 1px;
  border-color: rgb(164, 164, 164);
  border-style: solid;
  background-color: rgb(242, 248, 247);
  width: 100%;
  height: 38px;
  line-height: 36px;
  color: #707070;
  font-size: 15px;
  font-weight: 300;
  padding: 0 13px;
  outline: none;
  transition: 500ms all ease;
}
.home-screen .form .name {
  color: #1a9386;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 25px;
  text-align: center;
}
.home-screen .form input[type='text']:hover {
  border-color: #707070;
}
.home-screen .form input[type='text']:focus {
  border-color: #007ea7;
  color: #333333;
}
.home-screen .form input[type='submit'] {
  border-width: 1px;
  border-color: rgb(0, 126, 167);
  border-style: solid;
  background-color: rgb(0, 168, 232);
  width: 100%;
  height: 38px;
  line-height: 36px;
  text-align: center;
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  transition: 500ms all ease;
}
.home-screen .form input[type='submit']:hover {
  background: #0db6f6;
}
.home-screen .form input[type='submit']:focus {
  background: #007ea7;
}
.home-screen .form div.wpcf7-mail-sent-ok {
  position: absolute;
  width: 85%;
}
.home-screen .form .description {
  padding-left: 22px;
  background: url(images/description.png) 0 3px no-repeat;
  color: #707070;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 300;
}
.clear {
  position: relative;
  clear: both;
  width: 100%;
  height: 0;
}
.home-screen .services ul {
  list-style: none;
  width: 100%;
  text-align: justify;
  position: relative;
  margin: 0;
  padding: 75px 0 0 0;
}
.home-screen .services ul:after {
  content: '';
  display: inline-block;
  width: 100%;
}
.home-screen .services ul li {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  text-align: center;
  height: 200px;
  position: relative;
  padding: 18px 0 0 0;
}
.home-screen .services ul li:before {
  content: '';
  position: absolute;
  left: -14px;
  top: -6px;
  background: url(images/serv_bg.png) 0 0 no-repeat;
  width: 228px;
  height: 228px;
  z-index: 0;
}
.home-screen .services ul li .text,
.home-screen .services ul li .ico {
  position: relative;
  color: #333333;
  font-size: 15px;
}
.home-screen .services ul li a {
  color: #333333;
  font-size: 15px;
  text-decoration: none;
}
.home-screen .services ul li .ico {
  width: 100%;
  height: 66px;
  text-align: center;
  margin-bottom: 5px;
}
.home-screen .services ul li .ico img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.price-list {
  padding-top: 70px;
} /*
.price-list h2 {
	color:#000;
	line-height: 1;
	font-size: 36px;
	font-weight: 100;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
}*/
.price-list .info-text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.price-list .tab-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: justify;
  height: 185px;
}
.price-list .tab-menu ul:after {
  content: '';
  width: 100%;
  display: inline-block;
  height: 0;
}
.price-list .tab-menu ul li {
  width: 145px;
  display: inline-block;
  vertical-align: top;
  height: 185px;
  text-align: center;
}
.price-list .tab-menu ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #00a8e8;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  line-height: 1.333;
  transition: none;
}
.price-list .tab-menu ul li a div {
  display: inline;
  border-bottom: 1px dashed #00a8e8;
  transition: 500ms all ease;
}
.price-list .tab-menu ul li a.active div,
.price-list .tab-menu ul li a:hover div {
  border-bottom: 1px dashed transparent;
}
.price-list .tab-menu ul li a.active,
.price-list .tab-menu ul li a:hover {
  color: #000000;
  text-decoration: none;
}
.price-list .tab-menu ul li a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  opacity: 0;
  width: 20px;
  height: 10px;
  transition: 500ms all ease;
  background: url(images/arr_bot.jpg) center center no-repeat;
}
.price-list .tab-menu ul li a.active:after,
.price-list .tab-menu ul li a:hover:after {
  opacity: 1;
}
.price-list .tab-menu ul li span {
  display: block;
  height: 100px;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.price-list .tab-menu ul li img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.price-list h2 span {
  max-width: 370px;
  width: 100%;
  padding: 0 20px;
  background: #fff;
  display: block;
  position: relative;
  margin: 0 auto;
}
.which-type h2:before,
.which-type h2:after,
.how h2:before,
.how h2:after,
.price-list h2:before,
.price-list h2:after {
  background: #e4e4e4;
}
.tab-wrap {
  display: none;
}
.tab-wrap.active {
  display: block;
  margin-bottom: 50px;
  overflow: auto;
}
.tab-wrap table {
  width: 100%;
  border-width: 2px;
  border-top: none;
  border-color: rgb(106, 148, 140);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.2);
}
.tab-wrap table thead {
  height: 60px;
  background: #6a948c;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}
.tab-wrap table thead td:nth-child(3),
.tab-wrap table thead td {
  height: 60px;
  color: #fff;
  vertical-align: middle;
}
.tab-wrap table tr:first-child td {
  vertical-align: middle;
}
.tab-wrap table td:first-child {
  width: 48.7%;
  padding-left: 30px;
}
.tab-wrap table td:nth-child(2) {
  width: 23.6%;
  padding-left: 30px;
}
.tab-wrap table td p {
  margin: 0;
}
.tab-wrap table td {
  padding: 0 10px;
}
.tab-wrap table td ul {
  list-style: disc;
}
.tab-wrap table td:nth-child(4) {
  padding-right: 10px;
}
.tab-wrap table td {
  font-size: 15px;
  color: #333333;
  height: 50px;
  vertical-align: middle;
  padding: 5px 20px;
  border: 1px solid rgb(106, 148, 140);
}
.tab-wrap table tr:nth-child(2n) {
}
.tab-wrap table a.btn {
  display: inline-block;
  text-align: center;
  width: 110px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #00a8e8;
  text-decoration: none;
  color: #00a8e8;
  font-weight: bold;
  font-size: 15px;
}
.tab-wrap table a.btn:hover {
  color: #fff;
  background: #00a8e8;
}
.what-different {
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 460px;
  background: url(images/bg.jpg) center no-repeat;
  background-size: cover;
}
.what-different .center {
  padding-top: 50px;
}
h2 {
  color: #000;
  line-height: 1;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}
.what-different {
  margin-bottom: 55px;
}
.what-different h2 {
  margin-bottom: 30px;
}
h2:before,
h2:after {
  position: absolute;
  top: 51%;
  overflow: hidden;
  width: calc(50% - 30px);
  height: 1px;
  content: '\a0';
  background-color: #a4a4a4;
}
h2:before {
  margin-left: -50%;
  text-align: right;
}
h2:after {
  margin-left: 30px;
}
.what-different ul {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 20px 40px 0 65px;
  min-height: 254px;
  background: url(images/ico_bg.png) center no-repeat;
}
.what-different ul li {
  width: calc(100% / 2 - 154px);
  display: inline-block;
  vertical-align: top;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 50px;
  color: rgb(0, 0, 0);
  line-height: 1.5;
  -moz-transform: matrix(1.00109243989841, 0, 0, 1.00479076479076, 0, 0);
  -webkit-transform: matrix(1.00109243989841, 0, 0, 1.00479076479076, 0, 0);
  -ms-transform: matrix(1.00109243989841, 0, 0, 1.00479076479076, 0, 0);
}
.what-different ul li:nth-child(1),
.what-different ul li:nth-child(3) {
  margin-right: 300px;
  text-align: right;
}
.what-different ul li:nth-child(1) img {
  display: block;
  float: right;
  position: relative;
  margin-left: 15px;
  top: 8px;
}
.what-different ul li:nth-child(2) img {
  display: block;
  float: left;
  position: relative;
  top: 5px;
  margin-right: 15px;
}
.what-different ul li:nth-child(3) img {
  display: block;
  float: right;
  position: relative;
  margin-left: 15px;
  top: 6px;
}
.what-different ul li:nth-child(4) img {
  display: block;
  float: left;
  position: relative;
  margin-right: 15px;
  top: 0px;
}
.what-different ul li span {
  width: calc(100% - 75px);
  display: block;
  float: left;
  position: relative;
}
.how {
  overflow: hidden;
}
.how h2 {
  margin-bottom: 50px;
}
.how .center > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: justify;
}
.how ul:after {
  display: inline-block;
  width: 100%;
  content: '';
}
.how .center > ul > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 171px;
  padding-top: 190px;
  text-align: center;
  color: #333333;
  font-weight: bold;
  line-height: 1.2;
  font-size: 15px;
}
.how.on-page ul li {
  width: 310px;
}
.how.on-page .center > ul > li:nth-child(1) {
  background: url(images/zh1.png) center 0 no-repeat;
}
.how.on-page .center > ul > li:nth-child(2) {
  background: url(images/zh2.png) center 0 no-repeat;
}
.how.on-page .center > ul > li:nth-child(3) {
  background: url(images/zh3.png) center 0 no-repeat;
}
.how.on-page .center > ul > li ul {
  list-style: none;
  margin: 0;
  padding: 20px 0 0 0;
  font-size: 13px;
  font-weight: 300;
}
.how.on-page .center > ul > li p {
  padding: 20px 0 0 0;
  font-size: 13px;
  font-weight: 300;
  text-align: left;
  line-height: 1.3;
}
.how.on-page .center > ul > li ul li {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 15px;
  background: url(images/li.png) 0 5px no-repeat;
}
.how.on-page .center > ul > li:after {
  content: '';
  position: absolute;
  right: -70px;
  top: 73px;
  width: 19px;
  height: 27px;
  background: url(images/arr_right.png) 0 0 no-repeat;
}
.how .center > ul > li:after {
  content: '';
  position: absolute;
  right: -24px;
  top: 73px;
  width: 19px;
  height: 27px;
  background: url(images/arr_right.png) 0 0 no-repeat;
}
.how .center > ul > li:last-child:after {
  display: none;
}
.how .center > ul > li:nth-child(1) {
  background: url(images/how1.png) 0 0 no-repeat;
}
.how .center > ul > li:nth-child(2) {
  background: url(images/how2.png) 0 0 no-repeat;
}
.how .center > ul > li:nth-child(3) {
  background: url(images/how3.png) 0 0 no-repeat;
}
.how .center > ul > li:nth-child(4) {
  background: url(images/how4.png) 0 0 no-repeat;
}
.how .center > ul > li:nth-child(5) {
  background: url(images/how5.png) 0 0 no-repeat;
}
.how .center > ul > li:nth-child(6) {
  background: url(images/how6.png) 0 0 no-repeat;
}
.catalog {
  position: relative;
  width: 100%;
  min-height: 820px;
  background: url(images/catalog_wrap_bg.jpg) center 0 no-repeat;
  padding-top: 80px;
  padding-bottom: 50px;
}
.catalog .wrap {
  position: relative;
  margin: 0 auto;
  background: #fff url(images/catalog_bg.jpg) left 0 no-repeat;
  box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.15);
  max-width: 970px;
  min-height: 750px;
}
.catalog .wrap .text {
  padding: 40px 135px 0 300px;
  color: rgb(51, 51, 51);
  line-height: 1.2;
  font-size: 15px;
  padding-bottom: 5px;
  background: url(images/line.png) center bottom no-repeat;
  margin-bottom: 30px;
  font-weight: 300;
}
.catalog .wrap .text .title {
  color: #000;
  font-size: 48px;
  line-height: 1;
  font-weight: 100;
  margin-bottom: 10px;
}
.catalog .slider .title {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #1a9386;
}
.catalog .wrap .text .price {
  position: relative;
  float: left;
  background: #1a9386;
  padding: 0 22px;
  line-height: 50px;
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}
.catalog .slider_wrap {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  margin-top: -280px;
}
.catalog .slider_wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.catalog .slider_wrap ul li {
  width: 170px;
  height: 250px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #a4a4a4;
}
.catalog .slider_wrap ul li img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.catalog .slider_wrap ul li .btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5.5px;
  margin: 0 auto;
  width: 150px;
  height: 40px;
  line-height: 38px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #00a8e8;
  font-size: 15px;
  font-weight: bold;
  color: #00a8e8;
  background: #fff;
}
.catalog .slider_wrap ul li:hover .btn,
.catalog .slider_wrap ul li .btn:hover {
  background: #00a8e8;
  color: #fff;
}
.catalog .slider_wrap .bx-pager {
  display: none;
}
.catalog .slider_wrap .bx-controls-direction {
  position: absolute;
  top: 105px;
  left: 0;
  width: 100%;
}
.catalog .slider_wrap .bx-controls-direction a {
  position: absolute;
  top: 0;
  width: 21px;
  height: 41px;
  text-indent: -9999px;
}
.catalog .slider_wrap .bx-controls-direction a:hover {
  opacity: 0.7;
}
.catalog .slider_wrap .bx-controls-direction a.bx-prev {
  background: url(images/prev.png) 0 0 no-repeat;
  background-size: contain;
  left: -40px;
}
.catalog .slider_wrap .bx-controls-direction a.bx-next {
  background: url(images/next.png) 0 0 no-repeat;
  background-size: contain;
  right: -40px;
}
.which-type {
  margin-bottom: 40px;
}
body.page-id-17 .which-type ul,
body.page-id-15 .which-type ul,
body.page-id-206 .which-type ul,
body.home .which-type ul {
  text-align: justify;
}
.which-type ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
}
.which-type ul:after {
  display: inline-block;
  content: '';
  width: 100%;
}
body.page-id-17 .which-type ul li,
body.page-id-15 .which-type ul li,
body.page-id-206 .which-type ul li,
body.home .which-type ul li {
  width: 210px;
  height: 303px;
  margin: 0;
}
.which-type ul li {
  position: relative;
  width: 270px;
  padding: 12px 10px 0;
  text-align: center;
  font-size: 15px;
  margin: 0 10px;
  color: rgb(51, 51, 51);
  line-height: 1.2;
  display: inline-block;
  vertical-align: top;
  height: 350px;
  border: 1px solid #a4a4a4;
  border-bottom: 4px solid #a4a4a4;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #ffffff),
    color-stop(1, #f2f8f7)
  );
  background-image: -o-linear-gradient(bottom, #ffffff 0%, #f2f8f7 100%);
  background-image: -moz-linear-gradient(bottom, #ffffff 0%, #f2f8f7 100%);
  background-image: -webkit-linear-gradient(bottom, #ffffff 0%, #f2f8f7 100%);
  background-image: -ms-linear-gradient(bottom, #ffffff 0%, #f2f8f7 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f2f8f7 100%);
}
.which-type ul li a {
  color: rgb(51, 51, 51);
  text-decoration: none;
}
.which-type ul li .btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  margin: 0 auto;
  width: 180px;
  height: 40px;
  text-decoration: none;
  line-height: 38px;
  color: #00a8e8;
  border: 1px solid #00a8e8;
  background: #fff;
  font-weight: bold;
  font-size: 15px;
}
.which-type ul li .btn:hover {
  background: #00a8e8;
  color: #fff;
}
.which-type ul li .num {
  color: #88d4c5;
  font-size: 60px;
  line-height: 44px;
  margin-bottom: 15px;
  font-weight: 100;
}
.which-type ul li p {
  margin-bottom: 20px;
}
footer {
  position: relative;
  width: 100%;
  min-height: 220px;
  background: url(images/footer.jpg) center no-repeat;
  background-size: cover;
}
body.page-template-page-zahor footer {
  background: url(images/zah_foot.jpg) center 0 no-repeat;
  background-size: cover;
}
body.page-template-page-krem footer {
  background: url(images/krem_foot.jpg) center 0 no-repeat;
  background-size: cover;
}
body.page-template-page-cats footer {
  background: url(images/cats_foot.jpg) center 0 no-repeat;
  background-size: cover;
}
footer .logo {
  position: absolute;
  left: 15px;
  top: 35px;
  width: 88px;
  background: url(images/foot_logo.png) 0 0 no-repeat;
  height: 92px;
}
footer .logo:hover {
  opacity: 0.7;
}
footer .tagline {
  position: absolute;
  left: 200px;
  top: 55px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}
footer .phone {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  text-align: right;
}
footer .phone a {
  text-decoration: none;
  font-weight: bold;
  display: block;
  line-height: 1;
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
}
footer .bot-links {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  min-height: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
}
footer .bot-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 55px;
}
footer .bot-links ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px;
}
footer .bot-links ul li:last-child {
  margin-right: 0;
}
footer .bot-links ul li a {
  color: #ffffff;
  font-size: 14px;
  line-height: 35px;
}
footer .bot-links ul li a:hover {
  text-decoration: none;
}
.tab-menu.slider {
  position: relative;
  margin: 0 auto;
  max-width: 950px;
  visibility: hidden;
  height: 0px;
  max-height: 0px;
}
.tab-menu.slider .bx-pager {
  display: none;
}
.tab-menu.slider .bx-controls-direction {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
}
.tab-menu.slider .bx-controls-direction a {
  position: absolute;
  top: 0;
  width: 21px;
  height: 41px;
  text-indent: -9999px;
}
.tab-menu.slider .bx-controls-direction a:hover {
  opacity: 0.7;
}
.tab-menu.slider .bx-controls-direction a.bx-prev {
  background: url(images/prev.png) 0 0 no-repeat;
  background-size: contain;
  left: -40px;
}
.tab-menu.slider .bx-controls-direction a.bx-next {
  background: url(images/next.png) 0 0 no-repeat;
  background-size: contain;
  right: -40px;
}
.popup-wrap,
.popup-wrap-carantine {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  display: none;
}
.popup-form a.close,
.popup-form-carantine a.close {
  position: absolute;
  right: -5px;
  top: -5px;
}
.popup-form a.close img,
.popup-form-carantine a.close img {
  width: 30px;
  height: 30px;
}
.popup-form,
.popup-form-carantine {
  opacity: 0;
  display: none;
  position: fixed;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 370px;
  border-left: 5px solid #88d4c5;
  background: #fff;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  padding: 15px 30px 20px 25px;
  z-index: 1001;
}
.popup-form-carantine {
  max-width: 620px;
}
.popup-form p {
  margin: 0;
}
.popup-form-carantine p {
  font-size: 18px;
  text-align: center;
}
.popup-form input[type='text'] {
  border-width: 1px;
  border-color: rgb(164, 164, 164);
  border-style: solid;
  background-color: rgb(242, 248, 247);
  width: 100%;
  height: 38px;
  line-height: 36px;
  color: #707070;
  font-size: 15px;
  font-weight: 300;
  padding: 0 13px;
  outline: none;
  margin-bottom: 20px;
  transition: 500ms all ease;
}
.popup-form .name,
.popup-form-carantine .name {
  color: #1a9386;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 25px;
  text-align: center;
}
.popup-form input[type='text']:hover {
  border-color: #707070;
}
.popup-form input[type='text']:focus {
  border-color: #007ea7;
  color: #333333;
}
.popup-form input[type='submit'] {
  border-width: 1px;
  border-color: rgb(0, 126, 167);
  border-style: solid;
  background-color: rgb(0, 168, 232);
  width: 100%;
  height: 38px;
  line-height: 36px;
  text-align: center;
  font-size: 15px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  transition: 500ms all ease;
}
.popup-form input[type='submit']:hover {
  background: #0db6f6;
}
.popup-form input[type='submit']:focus {
  background: #007ea7;
}
.popup-form div.wpcf7-mail-sent-ok {
  position: absolute;
  width: 85%;
}
.popup-form .description {
  padding-left: 22px;
  background: url(images/description.png) 0 3px no-repeat;
  color: #707070;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 300;
}
@media (max-width: 1250px) {
  .catalog .slider_wrap {
    max-width: 855px;
  }
  .what-different ul {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1080px) {
  .how.on-page ul li {
    width: 260px;
  }
  #footer .tagline {
    font-size: 20px;
    left: 130px;
  }
  #footer .phone a {
    font-size: 23px;
  }
  footer .bot-links ul li {
    margin: 0 15px;
  }
  body.page-id-17 .which-type ul,
  body.page-id-15 .which-type ul,
  body.page-id-206 .which-type ul,
  body.home .which-type ul,
  .which-type ul {
    text-align: center;
  }
  body.page-id-17 .which-type ul li,
  body.page-id-15 .which-type ul li,
  body.page-id-206 .which-type ul li,
  body.home .which-type ul li,
  .which-type ul li {
    margin: 0 10px 15px;
  }

  .how .center > ul {
    text-align: center;
  }
  .how .center > ul > li {
    margin: 0 15px 20px;
  }
  .fixed-head .tagline,
  #header .tagline {
    left: 120px;
  }
}
@media (max-width: 940px) {
  .how.on-page ul li {
    width: 260px;
  }
  .home-screen .title {
    padding-top: 0;
    margin: 0 auto 20px;
    float: none;
    text-align: center;
  }
  .home-screen .form {
    margin: 0 auto;
    float: none;
  }
  .fixed-head .phone,
  #header .phone {
    font-size: 23px;
  }
  .fixed-head .tagline,
  #header .tagline {
    font-size: 21px;
  }
  .catalog .wrap .text {
    padding-left: 200px;
    padding-right: 50px;
  }
  .catalog .slider_wrap {
    max-width: 560px;
  }
}
@media (max-width: 850px) {
  #footer .tagline {
    width: 315px;
  }
  footer .bot-links ul li {
    margin: 0 5px;
  }
  .fixed-head .phone,
  #header .phone {
    left: 120px;
    right: auto;
    top: 50px;
  }
  .fixed-head .phone {
    top: 40px;
  }
  .fixed-head .tagline,
  #header .tagline {
    left: 120px;
    top: 20px;
  }
  .fixed-head .tagline {
    top: 0px;
  }
  .fixed-head .phone {
    top: 28px;
  }
  .fixed-head .phone a {
    line-height: 28px;
    font-size: 30px;
  }
  .fixed-head .phone span.text {
    line-height: 1;
    font-size: 16px;
    text-align: center;
  }
  .home-screen .services ul {
    text-align: center;
  }
  .home-screen .services ul li {
    margin: 0 10px 15px;
  }
  .catalog .slider_wrap {
    max-width: 570px;
  }
  .catalog .wrap {
    background-position: -150px 0;
  }
  .catalog .wrap .text {
    padding-left: 40px;
    padding-right: 40px;
  }
  .price-list .tab-menu ul li {
    width: 100px;
  }
  .what-different ul {
    padding-top: 280px;
    background-position: center top;
  }
  .what-different ul li {
    float: none;
    width: 100%;
    margin: 0 0 20px 0 !important;
    text-align: left;
  }
  .what-different ul li span {
    float: right;
    padding-top: 10px;
  }
  .what-different ul li img {
    float: left !important;
    margin: 0 !important;
  }
  .what-different ul li:nth-child(1),
  .what-different ul li:nth-child(3) {
    float: none;
    text-align: left;
  }
}
@media (max-width: 730px) {
  .how.on-page ul {
    text-align: center;
  }
  .how.on-page ul li {
    width: 310px;
    display: block;
    margin: 0 auto 20px auto;
  }
  .how.on-page ul li:after {
    display: none;
  }
  #footer {
    padding-top: 35px;
  }
  #footer .logo {
    position: relative;
    float: none;
    margin: 0 auto;
    display: block;
    top: auto;
    left: auto;
    margin-bottom: 15px;
  }
  #footer .tagline {
    position: relative;
    float: none;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
  }
  #footer .phone {
    left: auto;
    right: auto;
    top: auto;
    position: relative;
    float: none;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
  }
  #footer .phone a {
    font-size: 30px;
  }
  #footer .bot-links {
    position: relative;
    float: none;
    margin: 0 auto;
  }
}
#footer a.show-mobile {
  position: absolute;
  right: 15px;
  top: 130px;
  display: none;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 650px) {
  .catalog .slider_wrap {
    max-width: 265px;
  }
  .catalog .wrap .text {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  .price-list .tab-menu {
    visibility: hidden;
    height: 0px;
    max-height: 0px;
  }
  .price-list .tab-menu.slider {
    visibility: visible;
    height: auto;
    max-height: none;
    max-width: 510px;
  }
}
@media (max-width: 590px) {
  .fixed-head .phone,
  .fixed-head .tagline {
    left: 90px;
  }
  header#header {
    position: relative;
    height: 170px;
  }
  header .center {
    height: 170px;
  }
  header#header .tagline {
    font-size: 24px;
  }
  header#header .phone {
    bottom: 15px;
    top: auto;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    font-size: 36px;
  }
  .catalog .wrap .text .title {
    font-size: 32px;
  }
  .catalog .wrap .text .price {
    font-size: 20px;
    line-height: 35px;
  }
  .home-screen .center {
    padding-top: 60px;
  }
  .catalog .slider .title {
    font-size: 24px;
  }
  .catalog .wrap .text {
    font-weight: normal;
  }
  .price-list .tab-menu.slider {
    max-width: 380px;
  }
  #header .phone {
    top: 80px;
  }
  .home-screen .title {
    line-height: 26px;
  }
  .home-screen .title span {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 460px) {
  #footer a.show-mobile {
    position: relative;
    right: auto;
    top: auto;
    margin: 20px auto;
    text-align: center;
    display: block;
  }
  .fixed-head {
    display: none;
  }
  #footer .bot-links li {
    float: none;
    width: 100%;
    text-align: left;
    margin: 0;
  }
  #footer .bot-links li a {
    font-size: 18px;
  }
  .price-list thead {
    display: none;
  }
  .what-different ul li span {
    float: right;
    padding-top: 0;
  }
  .price-list .tab-menu.slider {
    max-width: 260px;
  }
}
@media (max-width: 450px) {
  h2:after,
  h2:before {
    display: none;
  }
  .how ul li {
    float: none;
    display: block;
    margin: 0 auto 30px;
  }
  .how ul li:after {
    display: none;
  }
  .catalog .slider_wrap {
    max-width: 265px;
  }
  .home-screen {
    min-height: 650px;
  }
  body.home .home-screen .services {
    display: block;
  }
  .home-screen .services {
    display: none;
  }
  .catalog .slider_wrap .bx-controls-direction a.bx-next {
    right: -25px;
  }
  .catalog .slider_wrap .bx-controls-direction a.bx-prev {
    left: -25px;
  }
}
@media (max-width: 340px) {
  .how .center > ul {
    text-align: center;
  }
  .catalog .slider .title {
    font-size: 19px;
  }
  .price-list .tab-menu.slider {
    max-width: 110px;
  }
}
@media (max-width: 380px) {
  .how .center > ul {
    text-align: center;
  }
  .catalog .wrap {
    min-height: 720px;
  }
}
.price-list {
  overflow: hidden;
}
.text-content {
  position: relative;
  width: 100%;
  padding: 50px 0 40px;
  background: #edf3f5;
  color: #333333;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 50px;
}
.text-content h2:after,
.text-content h2:before {
  background-color: #e4e4e4;
}
.text-content p {
  margin-bottom: 15px;
}
span.wpcf7-not-valid-tip {
  position: absolute;
  width: calc(100% - 2px);
  height: 36px;
  top: 1px;
  left: 1px;
  background: rgb(242, 248, 247);
  padding: 0 0 0 10px;
  line-height: 36px;
}
.wpcf7-form-control-wrap {
  display: block;
  position: relative;
  /*height: 38px;*/
  margin-bottom: 20px;
}

/* Call Button */
.call-button {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 9999;
  display: block;
}

@media only all and (min-device-width: 640px) {
  .call-button {
    display: none;
  }
}

.call-button-main {
  position: relative;
}

.call-button a {
  text-decoration: none;
}

.call-button .call-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  color: #fff;
  background-color: #29ad49;
  border-radius: 50px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.signals .signal {
  display: block;
  position: absolute;
  left: 50%;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(116, 187, 220, 0.5);
}

.signals span.s1,
.signals span.s2 {
  border: 2px solid #29ad49;
  box-shadow: 0 0 80px rgba(41, 173, 73, 0.3);
}

.signals span.s1 {
  border-color: rgba(41, 173, 73, 0.3);
  width: 60px;
  height: 60px;
  margin-top: -56px;
  margin-left: -30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: signal 0.8s infinite alternate ease-in-out;
  -moz-animation: signal 0.8s infinite alternate ease-in-out;
  -ms-animation: signal 0.8s infinite alternate ease-in-out;
  -o-animation: signal 0.8s infinite alternate ease-in-out;
  animation: signal 0.8s infinite alternate ease-in-out;
}

.signals span.s2 {
  border-color: rgba(41, 173, 73, 0.6);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: signal-2 1.2s infinite ease-in-out;
  -moz-animation: signal-2 1.2s infinite ease-in-out;
  -ms-animation: signal-2 1.2s infinite ease-in-out;
  -o-animation: signal-2 1.2s infinite ease-in-out;
  animation: signal-2 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes signal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-moz-keyframes signal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes signal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes signal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes signal-2 {
  0% {
    opacity: 0;
    width: 60px;
    height: 60px;
    margin-top: -56px;
    margin-left: -30px;
  }
  25% {
    opacity: 0.5;
    width: 70px;
    height: 70px;
    margin-top: -61px;
    margin-left: -35px;
  }
  50% {
    opacity: 1;
    width: 80px;
    height: 80px;
    margin-top: -66px;
    margin-left: -40px;
  }
  100% {
    opacity: 0;
    width: 100px;
    height: 100px;
    margin-top: -76px;
    margin-left: -50px;
  }
}

@-moz-keyframes signal-2 {
  0% {
    opacity: 0;
    width: 60px;
    height: 60px;
    margin-top: -56px;
    margin-left: -30px;
  }
  25% {
    opacity: 0.5;
    width: 70px;
    height: 70px;
    margin-top: -61px;
    margin-left: -35px;
  }
  50% {
    opacity: 1;
    width: 80px;
    height: 80px;
    margin-top: -66px;
    margin-left: -40px;
  }
  100% {
    opacity: 0;
    width: 100px;
    height: 100px;
    margin-top: -76px;
    margin-left: -50px;
  }
}

@-o-keyframes signal-2 {
  0% {
    opacity: 0;
    width: 60px;
    height: 60px;
    margin-top: -56px;
    margin-left: -30px;
  }
  25% {
    opacity: 0.5;
    width: 70px;
    height: 70px;
    margin-top: -61px;
    margin-left: -35px;
  }
  50% {
    opacity: 1;
    width: 80px;
    height: 80px;
    margin-top: -66px;
    margin-left: -40px;
  }
  100% {
    opacity: 0;
    width: 100px;
    height: 100px;
    margin-top: -76px;
    margin-left: -50px;
  }
}

@keyframes signal-2 {
  0% {
    opacity: 0;
    width: 60px;
    height: 60px;
    margin-top: -56px;
    margin-left: -30px;
  }
  25% {
    opacity: 0.5;
    width: 70px;
    height: 70px;
    margin-top: -61px;
    margin-left: -35px;
  }
  50% {
    opacity: 1;
    width: 80px;
    height: 80px;
    margin-top: -66px;
    margin-left: -40px;
  }
  100% {
    opacity: 0;
    width: 100px;
    height: 100px;
    margin-top: -76px;
    margin-left: -50px;
  }
}

.g-recaptcha {
  margin-bottom: 15px;
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
}

#krem-categories {
  margin: 60px 0;
}
#krem-categories .categories {
  display: flex;
  justify-content: space-around;
}
#krem-categories .categories .category {
  position: relative;
  text-align: center;
}
#krem-categories .categories .category .discount {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 40px;
  height: 40px;
  background-image: url(images/discount.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40px auto;
  z-index: 1;
}
#krem-categories .categories .category a {
  color: #000000;
}
#krem-categories .categories .category a:hover {
  text-decoration: none;
}
#krem-categories .categories .category .image {
  width: 250px;
  height: 200px;
  background-color: #f4f4f4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 15px;
  transition: 300ms all ease;
}
#krem-categories .categories .category a:hover > .image {
  opacity: 0.8;
}
#krem-categories .categories .category .image.image-1 {
  background-image: url(images/krem-categories-1.jpg);
}
#krem-categories .categories .category .image.image-2 {
  background-image: url(images/krem-categories-2.jpg);
}
#krem-categories .categories .category .image.image-3 {
  background-image: url(images/krem-categories-3.jpg);
}
#krem-categories .categories .category .text {
  font-size: 18px;
}

#promo-block {
}
#promo-block .br {
  display: block;
}
@media (max-width: 767px) {
  #promo-block .br {
    display: inline;
  }
}
#promo-block .promo {
  display: flex;
  justify-content: space-between;
}
#promo-block .promo .promo-item {
}
#promo-block .promo .promo-item .price {
  font-size: 30px;
  font-weight: bold;
  color: #1a9386;
  margin-bottom: 15px;
}
#promo-block .promo .promo-item .price.new-price {
  color: #f56007;
}
#promo-block .promo .promo-item .old-price {
  font-size: 18px;
  text-decoration: line-through;
}
#promo-block .promo .promo-item .text {
  font-size: 18px;
}
#promo-block .promo .promo-item .text.tiny {
  font-size: 15px;
}
#promo-block .promo .promo-item .plus {
  align-self: center;
  font-size: 24px;
  font-weight: bold;
  color: rgb(0, 126, 167);
}
@media (max-width: 991px) {
  #promo-block .promo {
    flex-wrap: wrap;
  }
  #promo-block .promo .promo-item.tiny,
  #promo-block .promo .promo-item.flex-none {
    margin-bottom: 20px;
  }
  #promo-block .promo .promo-item.tiny {
    width: 30%;
  }
  #promo-block .promo .promo-item.flex-none {
    flex: none;
  }
  #promo-block .promo .promo-item .price.tiny {
    font-size: 21px;
  }
  #promo-block .promo .promo-item .text.tiny {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  #promo-block .promo {
    flex-direction: column;
  }
  #promo-block .promo .promo-item {
    text-align: center;
    margin-bottom: 10px;
  }
  #promo-block .promo .promo-item .price.tiny {
    font-size: 30px;
  }
}

/* Google Captcha Budge */
.grecaptcha-badge {
  display: none !important;
}
