/*
Theme Name: babykrama
Author: the WordPress team
Author URI: http://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, gray, white, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: twentytwelve

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

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ccc;
	border-radius: 0px;
	font-family: lato;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
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 */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	/*max-width: 100%;*/
	/*height: auto;*/ /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 15px;
	font-size: 1rem;
	font-family: lato;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
/*	font-family: "Open Sans", Helvetica, lato, sans-serif;*/
	font-family: lato;

}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.site-content {
/*	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;*/
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 15px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 15px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
	font-size:16px;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #9f9f9f;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0 0 0 2.571428571rem;
	font-size:16px;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 15px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: 68.571428571rem;
		overflow: hidden;
	}
	.site-content {
		float: left;
		/*width: 65.104166667%;*/
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 3.692307692;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.main-navigation li a:hover,
	.main-navigation li a:focus {
		color: #000;
	}
	.main-navigation li {
		margin: 0 40px 0 0;
		margin: 0 2.857142857rem 0 0;
		position: relative;
	}
	.main-navigation li ul {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;
	}
	.main-navigation li ul li a {
		background: #efefef;
		border-bottom: 1px solid #ededed;
		display: block;
		font-size: 11px;
		font-size: 0.785714286rem;
		line-height: 2.181818182;
		padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;
		width: 180px;
		width: 12.85714286rem;
		white-space: normal;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: #e3e3e3;
		color: #444;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #636363;
		font-weight: bold;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #e6e6e6;
	}
	body .site {
		padding: 0 40px;
		padding: 0 2.857142857rem;
		margin-top: 48px;
		margin-top: 3.428571429rem;
		margin-bottom: 48px;
		margin-bottom: 3.428571429rem;
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	.entry-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}




ul {padding:0; margin:0;}
td, img {vertical-align:top;}
.o10 {height:10px;}
.o20 {height:20px;}
.o30 {height:30px;}
.clr {clear:both}

a {outline:none !important;}


.header_mail  a { color:#b4b4b4;  text-decoration:none;}
.header_mail  a:hover {text-decoration:underline;}

.header_block3 {float:left; width:276px; height:140px; text-align:right;}
.header_block4 {float:left; width:330px; height:140px; font-family: lato; font-size:13px; line-height:2;  color:#84879a;  text-transform:uppercase;}

.button_checkout {float:left; width:130px; height:60px; margin: 15px 0 0 0;}
.button_checkout a:hover {opacity:0.8}
.link_checkout {float:left; width:130px; height:60px; margin: 17px 0 0 20px;}
.link_checkout a {text-transform:none; color:#9a9cad;}
.link_checkout a:hover {text-decoration:none;}

.menu_line {width:100%; min-width:980px; height:50px; border-bottom:1px solid #e8e8e8; }



.header_menu {width:700px; height:50px;}
.header_menu ul {list-style:none; display:table; width:700px; height:50px;}
.header_menu ul li{display:table-cell; text-align:center; height:50px;}
.header_menu ul li:hover {background:#acb7df;}
.header_menu ul li:hover a {display:block; height:50px; color:#ffffff;}
.header_menu ul li a {font-family: lato; font-size:13px; text-decoration:none; line-height:4;  color:#818181; font-weight:bold;
 padding: 0 15px 0 15px; text-transform:uppercase;}

.center_line {background: #ffffff; width:100%; min-width:1200px;}
.index_center {height:1130px; overflow:hidden;}


.index_col1 {width:990px; float:left; height:1130px;}
.index_col2 {width:210px; float:left; height:1130px; text-align:right;}

.rban {margin: 20px 0 0 0;opacity:0.9}
.rban:hover {opacity:1}




.center_banner_block {width:730px; margin: 20px 0 20px 20px; float:left;}

.center_banner { background: url(/wp-content/themes/twentytwelve/img/main_ban.jpg) no-repeat; height:390px; width:723px; position:relative; }


.center_banner_text {position:absolute; top:257px; left:90px; font-family: lato; font-size:16px; text-transform:uppercase; color:#bbbbbb; width:200px; line-height:1.4}

.center_banner_link {position:absolute; top:350px; left:300px;}
.center_banner_link :hover {opacity:0.9;}


.center_banner_and_o_nas_block {float:left;width:750px; height:612px;}

.index_about_block {}
.index_about_block_zag {font-family: lato; font-size:21px; text-transform:uppercase; color:#1c3386;font-weight:bold; line-height:2; margin: 0 0 0 40px;}
.index_about_block_line {margin: 0 0 5px 25px;}
.index_about_block_text {width:700px;margin: 0 0 10px 25px;font-family: lato; font-size:15px;color:#747474; line-height:2.2; }

.o_nas_more:hover {opacity:0.9;}


.index_bottom_banners {position:relative; margin: 80px 7px 0 0;}
.index_bottom_banners div {opacity:0.9;}
.index_bottom_banners div:hover {opacity:1;}

.bban_item1 {position:absolute; top:0px; left:10px;}
.bban_item2 {position:absolute; top:0px; left:340px;}
.bban_item3 {position:absolute; top:0px; right:10px;}
.bban_item4 {position:absolute; top:222px; left:10px;}
.bban_item5 {position:absolute; top:205px; right:10px;}



.grey_menu {width:1190px; height:40px; background:#ebebeb; margin: 10px 0 0 10px;}
.grey_menu ul {list-style:none; display:table; width:1190px; height:40px;}
.grey_menu ul li{display:table-cell; text-align:center; height:40px;}
.grey_menu ul li:hover {background:#d9d9d9;}
.grey_menu ul li:hover a {display:block; height:40px;}
.grey_menu ul li a {font-family: lato; font-size:13px; text-decoration:none; line-height:3.1;  color:#818181; font-weight:bold;
 padding: 0 30px 0 30px; text-transform:uppercase;}


.main_zag {font-family: lato; font-size:21px; text-transform:uppercase; color:#1c3386;font-weight:bold; line-height:2; margin: 0 0 0 0px;}

.index_new_zag {margin: 20px 0 0 10px;}

.cat_item:hover {border:1px solid #DBDBDB; width:187px; height:338px; margin: 0 0 30px 0;}
.cat_item {width:189px; float:left; text-align:center; height:390px;}

.cat_item_img {padding-top:1px;height:200px; overflow:hidden;}
.cat_item:hover .cat_item_img {margin: -1px 0 0px 0;}

.cat_item_img img {max-width:170px !important;}

.cat_item_name a {font-family: lato; font-size:15px; text-decoration:none; line-height:1;  color:#2b2b2b;}
.cat_item_name a:hover {color:#808dbb;}
.cat_item_name { padding: 10px 5px 10px 5px; height:50px; overflow:hidden;}
.cat_item_price a {font-family: lato; font-size:21px; text-decoration:none;   color:#2b2b2b; font-weight:bold;}
.cat_item_price {margin: 0 0 15px 0;}
.cat_item_more:hover {opacity:0.9;}


.footer_line {background:#19164b;}
.footer_bg {background: url(/wp-content/themes/twentytwelve/img/footer_bg.jpg) no-repeat center; width:100%; min-width:1200px; height:206px; }

.footer_block1 {float:left; width:785px; height:130px;}
.footer_block2 {float:left; width:415px; height:130px; text-align:center; }

.footer_menu_line {width:100%; min-width:1200px; height:44px; background:url('/wp-content/themes/twentytwelve/img/footer_menu_bg.png');}

.footer_menu {width:780px; height:50px; float:left;}
.footer_menu ul {list-style:none; display:table; width:780px; height:50px;}
.footer_menu ul li{display:table-cell; text-align:center; height:50px;}
.footer_menu ul li a {font-family: lato; font-size:13px; text-decoration:none; line-height:3.5;  color:#ffffff; font-weight:bold; padding: 0 15px 0 15px; text-transform:uppercase;}
.footer_menu ul li a:hover {text-decoration:underline;}


.footer_menu_soc {text-align:center; padding:7px 0 0 0;}

.footer_counter {width:120px; float:left;}
.footer_copy {margin: 5px 0 0 0;}
.footer_copy a{font-family: lato; font-size:13px; text-decoration:none; line-height:1;  color:#c5c4cf;}
.footer_copy a:hover {text-decoration:underline;}



.catalog_menu .woocommerce ul.products li.product {width:100%;}
.catalog_menu .woocommerce ul.products li.product a img {display:none !important;}
.catalog_menu .woocommerce ul.products li.product a h3 .count {display:none !important;}


.cat_category_zag {color: #425977;
font-family: latoheavy;
font-size: 25px;
text-transform: uppercase;
font-weight: normal; margin: 20px 0 20px 0;}

img.wp-post-image {box-shadow:none !important; padding-top:15px;}

.woocommerce-breadcrumb {float:right;}

.submenu1 {font-size:13px; color:#4C4C4C; text-decoration:none; line-height:2; padding: 0 0 0 15px;}
.submenu2 {font-size:13px; color:#4C4C4C; text-decoration:none; line-height:2; padding: 0 0 0 30px;}
.submenu3 {font-size:13px; color:#4C4C4C; text-decoration:none; line-height:2; padding: 0 0 0 40px;}

.submenu1:hover {text-decoration:underline;}
.submenu2:hover {text-decoration:underline;}
.submenu3:hover {text-decoration:underline;}

.curent {font-weight:bold; color:#6372a4;}

.entry-content_pages {padding: 0px 20px 20px 10px; font-size:15px; font-family:lato; line-height:1.5; }
.entry-content_pages p {padding: 0px 00px 20px 0px;}


.thumbnails {width: 250px;}




.product_meta span.sku_wrapper {display:block;}
.product_meta span.posted_in {display:block;}



/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/








@font-face {
    font-family: 'latoblack';
    src: url('/wp-content/themes/babykrama/font/lato-black-webfont.woff2') format('woff2'),
         url('/wp-content/themes/babykrama/font/lato-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'latobold';
    src: url('/wp-content/themes/babykrama/font/lato-bold-webfont.woff2') format('woff2'),
         url('/wp-content/themes/babykrama/font/lato-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'latoheavy';
    src: url('/wp-content/themes/babykrama/font/lato-heavy-webfont.woff2') format('woff2'),
         url('/wp-content/themes/babykrama/font/lato-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'latoregular';
    src: url('/wp-content/themes/babykrama/font/lato-regular-webfont.woff2') format('woff2'),
         url('/wp-content/themes/babykrama/font/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'lato';
    src: url('/wp-content/themes/babykrama/font/lato-regular-webfont.woff2') format('woff2'),
         url('/wp-content/themes/babykrama/font/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'latosemibold';
    src: url('/wp-content/themes/babykrama/font/lato-semibold-webfont.woff2') format('woff2'),
         url('/wp-content/themes/babykrama/font/lato-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {background:#f8f9fa; }

.header_menu_small {font-size: 16px; font-family:latoregular; }
.header_menu_small a {text-decoration:underline; color:#425977; }



.carousel-caption {background:url(/wp-content/themes/babykrama/img/slider_bg.png); text-shadow:none; }
.caption1 {font-family:latobold; text-align:center;text-transform:uppercase; color:#2a3e56;font-size:29px; margin: 0 0 10px 0; text-shadow:none;}
.caption2 {font-family:latomedium;text-align:center; text-transform:uppercase;  color:#2a3e56;font-size:20px;margin: 0 0 15px 0; text-shadow:none;}
.caption3 {text-align:center; text-transform:uppercase; font-size:15px;}
.caption3 a {display:inline-block; background:#ec747d; border-radius:30px; padding: 10px 60px 10px 60px;font-family:latosemibold; color:#ffffff; text-shadow:none; text-transform:uppercase; }
.caption3 a:hover {background:#d54d57; text-decoration:none;  color:#ffffff; }




.category_item {float:left; height:400px; width:225px;}

.catalog_item {}
.catalog_item_pic {width:100%;}
.catalog_item_pic a {display:block; width:200px; height: 200px; background-size:contain !important; margin: 10px auto;}
.catalog_item_name {text-align:center; margin: 7px 0px 0px 0px; height:48px; overflow:hidden; padding: 0 5px 0 5px;}
.catalog_item_name a { font-size:16px; font-family:latoregular; color: #394d68; text-decoration:none;}
.catalog_item_name a:hover {text-decoration:underline;}

.catalog_item_price {text-align:center; margin: 0px 0px 10px 0px; font-size:25px !important; color: #e06871;  font-family:latoblack; }
.catalog_item_price  span.woocommerce-Price-currencySymbol {font-family:latosemibold; font-size:21px;}

.catalog_item_buy {text-align:center;}
.catalog_item_buy a.ajax_add_to_cart {display:inline-block; background:#66b7ba !important; font-size:16px !important; border-radius:30px !important; padding: 10px 30px 10px 30px !important;
font-family:latosemibold !important; color:#ffffff; text-shadow:none; font-weight:normal !important;}
.catalog_item_buy a.ajax_add_to_cart:hover {background:#2fa8ac !important; text-decoration:none !important;color:#ffffff !important;}

.catalog_item_buy a.added_to_cart {color:#2fa8ac; background:none !important;}
.catalog_item_buy a.added_to_cart:hover {color:#2fa8ac !important; background:none !important;}


.catalog_item_buy {text-align:center;}
.catalog_item_buy a {display:inline-block; background:#66b7ba !important; font-size:16px !important; border-radius:30px !important; padding: 10px 30px 10px 30px !important;
font-family:latosemibold !important; color:#ffffff; text-shadow:none; font-weight:normal !important;}
.catalog_item_buy a:hover {background:#2fa8ac !important; text-decoration:none !important;color:#ffffff !important;}













.catalog_slider { position: relative; width:95%; margin: 0 auto;}
.catalog_slider .owl-nav {position: absolute;width: 100%;height: 0px;top: 50%;z-index: 999;}
.catalog_slider .owl-nav .owl-prev{position: absolute;left: -20px;top: -25px;width: 30px;height: 50px;font-weight: bold;line-height: 1;font-size: 38px;background:#ffffff !important;}
.catalog_slider .owl-nav .owl-prev:before {content: "";position: absolute;top: 50%;left: 50%;display: block;width: 30px;height: 50px;background: url(/wp-content/themes/babykrama/img/arrow_left.png) no-repeat;}
.catalog_slider .owl-nav .owl-prev:hover{background:#ffffff;opacity:0.8;}
.catalog_slider .owl-nav .owl-prev:hover:before { background: url(/wp-content/themes/babykrama/img/arrow_left.png)  no-repeat;}
.catalog_slider .owl-nav .owl-next {position: absolute;right: -16px;top: -25px;width: 30px;height: 50px;font-weight: bold;background:#ffffff !important;}
.catalog_slider .owl-nav .owl-next:before { content: ""; position: absolute; top: 50%; left: 50%; display: block; width: 30px; height: 50px; background: url(/wp-content/themes/babykrama/img/arrow_right.png)  no-repeat; }
.catalog_slider .owl-nav .owl-next:hover{ background:#ffffff; opacity:0.8; }
.catalog_slider .owl-nav .owl-next:hover:before{ background: url(/wp-content/themes/babykrama/img/arrow_right.png) no-repeat; }


.brand_slider { position: relative; width:95%; margin: 0 auto;}
.brand_slider .owl-nav {position: absolute;width: 100%;height: 0px;top: 50%;z-index: 999;}
.brand_slider .owl-nav .owl-prev{position: absolute;left: -25px;top: -45px;width: 30px;height: 50px;font-weight: bold;line-height: 1;font-size: 38px;background:#ffffff !important;}
.brand_slider .owl-nav .owl-prev:before {content: "";position: absolute;top: 50%;left: 50%;display: block;width: 30px;height: 50px;background: url(/wp-content/themes/babykrama/img/arrow_left_grey.png) no-repeat;}
.brand_slider .owl-nav .owl-prev:hover{background:#ffffff;opacity:0.8;}
.brand_slider .owl-nav .owl-prev:hover:before { background: url(/wp-content/themes/babykrama/img/arrow_left_grey.png)  no-repeat;}
.brand_slider .owl-nav .owl-next {position: absolute;right: -20px;top: -45px;width: 30px;height: 50px;font-weight: bold;background:#ffffff !important;}
.brand_slider .owl-nav .owl-next:before { content: ""; position: absolute; top: 50%; left: 50%; display: block; width: 30px; height: 50px; background: url(/wp-content/themes/babykrama/img/arrow_right_grey.png)  no-repeat; }
.brand_slider .owl-nav .owl-next:hover{ background:#ffffff ; opacity:0.8; }
.brand_slider .owl-nav .owl-next:hover:before{ background: url(/wp-content/themes/babykrama/img/arrow_right_grey.png) no-repeat; }

.brand_slider {height:80px}

.header_razd_line {height:4px; background:#66b7ba; width:100%; }

.woocommerce span.onsale {background-color: #6eac6b;font-weight: normal;font-family: latoblack;font-size: 14px;border-radius: 15px;min-height:auto; line-height: 1; padding:10px 8px;}

.container_news {margin: 15px 0 0 0;}
.index_news_item {margin: 10px 0 0 0;}
.index_news_pic a{width:100%; background-size:cover; background-position:center;  height:160px; display:block;}
.index_news_name {width:80%; text-align:center; margin: 0 auto; margin-top:15px;}
.index_news_name a {color:#37393a; text-decoration:none;  font-size:19px;  font-family: latoblack;}
.index_news_name a:hover {color:#425977; text-decoration:underline; }
.index_news_date {text-align:center;color:#888888;  font-size:15px;  font-family: latoblack; margin-top:10px;}
.index_news_text { margin-top:10px; text-align:left;font-size:16px;  color:#37393a; font-family: latoregular; }
.index_news_link {text-align:center;  margin-top:10px;}
.index_news_link a {color:#e24c57; font-family: latoblack;font-size:16px;}

.container_about_shop {margin: 15px 0 0 0;  font-family: latoregular;  font-size:16px; line-height:1.4}
.container_about_shop p {padding: 0 0 10px 0;}
.container_about_shop_pic {float:left; width:350px; padding: 0 20px 20px 0;}

.container_about_shop a {color:#599ea1;text-decoration:underline; }

.container_about_shop h3 {color: #425977 !important;
  font-family: latoheavy !important;
  font-weight: normal !important;
  font-size: 18px;
  margin:15px 0; }

.container_about_shop h2 {margin:15px 0 10px; font-size:20px;}
.container_about_shop ul {list-style:square; margin-left:20px;}
.container_about_shop li {padding: 5px 0 5px 10px}



@media (max-width: 990px) {
.caption1 {font-size:25px;}
.caption2 {font-size:18px;}
.caption3 {font-size:15px;}
.container_about_shop_pic {width:350px;}
}

@media (max-width: 600px) {
.caption1 {font-size:20px;}
.caption2 {font-size:16px;}
.caption3 {font-size:13px;}
.container_about_shop_pic {float:none; width:300px;}

}


.container_articles {margin: 15px 0 0 0;}
.index_articles_item {margin: 10px 0 0 0; }

.index_articles_pic {width:170px; float:left;}
.index_articles_pic a{width:145px; background-size:cover; background-position:center;  height:145px; display:block;background-repeat:no-repeat;}

.index_articles_name {width:80%;  margin: 0 auto; margin-top:15px;}
.index_articles_name a {color:#e24c57; text-decoration:none;  font-size:17px;  font-family: latobold; text-decoration:underline;}
.index_articles_name a:hover {color:#ae232e; text-decoration:underline; }

.index_articles_text { margin-top:10px;font-size:16px;  color:#606060; font-family: latoregular; line-height:1.3}


@media (max-width: 420px) {
.index_articles_pic {float:none;}
.index_articles_name {width:auto;font-size: 16px;}
.index_articles_info {margin: 0 0 30px 0;}

}



.articles_item {margin: 10px 0 10px 0; clear:both}

.articles_pic {width:270px; float:left;margin: 10px 0 10px 0;}
.articles_pic a{width:250px; background-size:contain; background-position:top center;  height:150px; display:block;background-repeat:no-repeat;}

.articles_name {width:80%;  margin: 0 auto; margin-top:15px;}
.articles_name a {color:#e24c57; text-decoration:none;  font-size:17px;  font-family: latobold; text-decoration:underline;}
.articles_name a:hover {color:#ae232e; text-decoration:underline; }
.articles_text { margin-top:10px;font-size:17px;  color:#606060; font-family: latoregular; }


.s_rez_item {margin: 10px 0 10px 0; clear:both}
.s_rez_name {margin-top:15px;}
.s_rez_name a {color:#425977; text-decoration:none;  font-size:16px;  font-family: latobold; text-decoration:underline;}
.s_rez_name a:hover {color:#425977; text-decoration:underline; }




.carousel-inner .item img{margin: 0 auto;}
.carousel {max-width:1600px; margin: 0 auto;}
.carousel-control.right {background-image:none;}
.carousel-control.left {background-image:none;}
.glyphicon-chevron-right::before {content: none; }
.glyphicon-chevron-right {background:url(/wp-content/themes/babykrama/img/slider_right.png)  no-repeat center center;}
.glyphicon-chevron-left::before {content: none;}
.glyphicon-chevron-left {background:url(/wp-content/themes/babykrama/img/slider_left.png)  no-repeat center center;}

.container_style {background:#ffffff; margin-top: 20px; padding:  20px 35px 20px 35px;
-webkit-box-shadow: 0px 0px 25px 0px rgba(50, 50, 50, 0.1);-moz-box-shadow:    0px 0px 25px 0px rgba(50, 50, 50, 0.1);box-shadow:         0px 0px 25px 0px rgba(50, 50, 50, 0.1);
}

.container_link {display:inline-block;  border-radius:30px; padding: 12px 50px 12px 50px; font-family:latosemibold; color:#ffffff; text-shadow:none; text-transform:uppercase;}
.container_link:hover { color:#ffffff; text-decoration:none;}

.container_link_blue {background:#425977;}
.container_link_blue:hover {background:#264165;}

.container_link_red {background:#e24c57;}
.container_link_red:hover {background:#d13440;}

.container_link_green {background:#74bdc0;}
.container_link_green:hover {background:#469ea2;}


.footer_razd_line {height:4px; background:#2a3e56; width:100%; margin: 30px 0 0 0;}
.footer_line2 {background:#2a3e56;}
.footer_line3 {background:#425977;}
.footer_line4 {background:#466286;}

.footer_zag  {font-family:latoheavy; color:#2a3e56;  margin: 30px 0 0 0;font-size:19px;  text-transform:uppercase;}
.footer_text  {font-family:latoregular; color:#2a3e56;  margin: 20px 0 30px 0;font-size:16px; line-height:2}
.footer_text a {color:#2a3e56; border-bottom:1px solid #2a3e56}
.footer_text a:hover {color:#e24c57; border-bottom:1px solid #e24c57; text-decoration:none;}

.footer_text_l3_1 p {margin:10px 0}
.footer_text_l3_1 {font-family:latoregular; color:#ffffff;font-size:15px;margin: 15px 0 15px 0;}
.footer_text_l3_2 {text-align:right; margin: 25px 0 15px 0;}
.footer_text_l3_2 a {color:#ffffff;font-size:15px;border:1px solid #ffffff; border-radius:30px; padding:10px 20px 10px 20px;}
.footer_text_l3_2 a:hover {color:#425977;border:1px solid #ffffff;background:#ffffff;text-decoration:none;}




.header_logo img.logo_img {width:255px;}




.search_form input[type="text"] {background:#2a3e56; border:0px;   height:30px; color:#9cb3d1; display:block; float:left;}
.search_form input[type="submit"] {background: url(/wp-content/themes/babykrama/img/search_icon.png) no-repeat left top; height:35px; width:35px; border:0px;margin: 8px 0 0 0; }

.enter_links { color:#a6bedd; padding-top:19px;}
.enter_links a {color:#a6bedd; }
.cart_block {background:#ec747d; padding: 10px 10px 0 10px; margin: 3px 0 0 0; height:42px; border-radius:30px; color:#ffffff; text-align:center;}
.cart_block a {color:#ffffff;}
.cart_block a:hover {color:#ffffff;}










.left_col_zag {color:#425977;font-size:15px; border:1px solid #425977; border-radius:30px; padding:10px 20px 10px 20px; font-family:latoheavy; text-align:center; text-transform:uppercase;width:250px; }
.left_col_zag_m {color:#425977;font-size:15px; border:1px solid #425977 !important; border-radius:30px; padding:10px 20px 10px 20px; font-family:latoheavy; text-align:center; text-transform:uppercase;display:block;}

.filter_block_collapse {color:#fff;font-size:15px; border:1px solid #e54c59 !important; border-radius:30px; padding:11px 20px 5px 20px; font-family:latoheavy; text-align:center; text-transform:uppercase;display:block;
margin: 13px auto; width:83%; background-color:#ec717b; }

.btn-default {background-color:#74bdc0 !important;color:#fff !important;border:1px solid #74bdc0 !important;}
.btn-block:hover, .btn:hover, .btn-default:hover {background-color:#e54c59 !important;color:#fff !important;border:1px solid #e54c59 !important;}

	.phone_mob {    line-height: 1.4;
    font-family: lato;
    font-size: 15px;
    font-weight: bold;
    color: #5b779b;

display: block;
    text-align: center;

    }

.cart_mob {display:block;margin: 10px 0 0 0; padding: 0 10px 0 0; text-align:right}
.header_mob {width:100%;}

.mobile_row {margin-right: -15px !important;margin-left: -15px !important;}
.mobile_row .container_link {width:auto;}

.catalog_menu {width:250px;}

.catalog_menu ul {list-style:none;}
.catalog_menu ul li {font-family: latoblack; font-size:15px; text-decoration:none; line-height:2.5;   padding: 0 5px 0 5px; text-transform:uppercase; border-bottom:1px solid #e4e4e5;}
.catalog_menu ul li  a { color:#425874;text-decoration:none;}
.catalog_menu ul li  a:hover { color:#ec747d;text-decoration:none;}

.second_level .submenu1 {color:#6b6b6b; text-decoration:none;font-family: latoregular; font-size:15px; background: url(/wp-content/themes/babykrama/img/menu_marker.gif) no-repeat left top; }
.second_level .submenu1:hover {text-decoration:none;color:#ec747d;}
.second_level .submenu2 {color:#6b6b6b; text-decoration:underline;font-family: latoregular; font-size:15px; }
.second_level .submenu2:hover {text-decoration:none;color:#ec747d;}
.second_level .submenu3 {color:#6b6b6b; text-decoration:underline;font-family: latoregular; font-size:15px; }
.second_level .submenu3:hover {text-decoration:none;color:#ec747d;}

.left_filter_zag {color:#2a3e56; font-family: latoblack; font-size:16px;}



.woocommerce-breadcrumb {margin-top:15px !important; }
.woocommerce-products-header__title.page-title {color:#425977; font-family: latoheavy; font-size:25px; text-transform:uppercase; font-weight:normal}










.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    color: #fff;
    background-color: #b36f5c;
}

 .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1em;
    height: 1em;
    background-color: #b36f5c;
    border-radius: 1em;
    cursor: ew-resize;
    outline: 0;
    top: -.3em;
    margin-left: -.5em;
}
.ui-slider-horizontal {
    height: .5em;
}

.ui-slider {
    position: relative;
    text-align: left;
    margin-left: .5em;
    margin-right: .5em;
}

.price_slider {
    margin-bottom: 1em;
}
  .ui-slider-range {
    top: 0;
    height: 100%;
}
.price_slider_amount {
    text-align: right;
    line-height: 2.4;
    font-size: .8751em;
}
 .ui-widget-content {
    border-radius: 1em;
    background-color: #602053;
    border: 0;
}

  .ui-slider-range {
   position: absolute;
    text-align: left;
    border-radius: 1em;
    background-color: #b36f5c;
}



#checkbox_203::before {background:#D90000}


.berocket_aapf_widget input[type="checkbox"].checkbox_203 + label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background:#D90000;
    cursor: pointer;
}

.berocket_aapf_widget input[type="checkbox"].checkbox_203:checked + label::before {
    background:#D90000; border:2px solid #000000;
}












.woocommerce-pagination {font-family:latoheavy;  font-size:17px;}
.woocommerce-pagination li, .woocommerce-pagination ul {border:0px !important;}
.woocommerce-pagination span, .woocommerce-pagination a.page-numbers {padding: 9px 12px 9px 12px !important;}
.woocommerce-pagination a.page-numbers {color:#425977 ;}
.woocommerce-pagination a.page-numbers:hover {background:#547194 !important; color:#ffffff !important; border-radius:40px;}
.woocommerce-pagination span.page-numbers.current {background:#2a3e56 !important; color:#ffffff !important; border-radius:40px;}

.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {float: right;}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {float: left;}
.woocommerce-result-count {line-height:2; font-family:latoregular; font-size:15px;}
.woocommerce-ordering { font-family:latoregular; font-size:15px;}
.woocommerce-ordering span.ordering_zag {line-height:2.3}
.woocommerce-ordering option {padding:  0px 3px 4px 0px;}

.category_text_block { margin-top:45px !important;}
.product_title {color: #425977;
font-family: latoheavy;
font-size: 26px;
text-transform: uppercase;
font-weight: normal; margin-top:15px !important; }

.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images
{width: 100%;}

.shop_attributes { font-family:latoregular; font-size:15px !important; font-weight:normal; color:#373b3e !important; }
.shop_attributes th { font-weight:normal !important; font-family: latoheavy;}
.shop_attributes p {font-style:normal;}
.shop_attributes td, .shop_attributes th{background:none !important}
.shop_attributes a {color:#373b3e !important;}

.single_product .price .woocommerce-Price-amount { font-family: latoheavy; color:#ec747d; font-size:40px}
.single_product .price .woocommerce-Price-currencySymbol { font-family: latobold; color:#ec747d; font-size:21px}

.single_product .btn_price { width:28px;height:40px;padding: 0px 0px;display: inline-block;font-size: 18px !important;font-weight: normal;line-height: 1.4;text-align: center;
cursor: pointer;color: #000000;border: 1px solid #d4d4d4;user-select: none;background:#ffffff !important;border-radius:0px; box-shadow:none !important; float:left;}

.single_product .quantity input.input-text.qty {width:55px;height:40px; background:#f2f2f2;  float:left;}


.single_add_to_cart_button {display:inline-block; background:#66b7ba !important; font-size:16px !important; border-radius:30px !important; padding: 13px 35px 13px 35px !important;
font-family:latosemibold !important; color:#ffffff; text-shadow:none; font-weight:normal !important; margin: 0 0 0 20px !important; text-transform: uppercase;}
.single_add_to_cart_button:hover {background:#2fa8ac !important; text-decoration:none !important;color:#ffffff !important;}

.single_product .cart {margin-top:15px;}

.woocommerce-message {display:block; clear:both !important; margin-top:20px; font-weight:bold; border:3px solid #8fae1b;}
.woocommerce-message .button {display:inline-block; background:#66b7ba !important; font-size:15px !important; border-radius:30px !important; padding: 10px 30px 10px 30px !important;
font-family:latosemibold !important; color:#ffffff; text-shadow:none; font-weight:normal !important; margin: 0 0 0 20px !important;}
.woocommerce-message .button:hover {background:#2fa8ac !important; text-decoration:none !important; color:#ffffff !important;}

section.related.products .woocommerce-Price-amount { font-family: latoheavy; color:#ec747d; font-size:30px}
section.related.products .woocommerce-Price-currencySymbol { font-family: latobold; color:#ec747d; font-size:17px}

h2 {color:#425977 !important; font-family:latoheavy !important;  font-weight:normal !important; }



.entry-content_pages .content_pages_img img {width:350px; float:left; margin: 0 15px 15px 0;}
.breadcrumbs {color: #777; text-align:right; margin: 10px 0 0 0;}
.breadcrumbs a {color: #777;}




.pagenav {width:auto; font-family:lato; font-size:17px; margin: 40px 0 40px 0; font-weight: normal !important; text-align:center;}
.pagenav span {border: 0px; color:#ffffff; background:#425977; padding: 7px 10px; border-radius:30px;}
.pagenavi span.current {font-weight: normal !important;}
.wp-pagenavi span.extend {background:#ffffff !important; color:#4b4b4b;}
.pagenav a {border: 0px; color:#4b4b4b;  padding: 7px 10px;}
.pagenav a:hover {color:#ffffff; background:#425977;border-radius:30px;}

h1 {color: #425977;
font-family: latoheavy;
font-size: 25px;
text-transform: uppercase;
font-weight: normal;}


.soc_links_item {float:left; display:block; color:#66b7ba}
.soc_links_block {/*width: 200px;*/ margin-left: 25px;}
.soc_links_block_mobile {margin: 0 auto !important;}
.soc_links_block a {border:0px !important; color:#66b7ba}
.soc_links_block a:hover {opacity:0.9}

span.soc_links_item {line-height:4;height: 45px;}

.footer_text .soc_links_block {margin-left: 0px;}
.footer_text .soc_links a {color:#66b7ba; font-size:14px;}
.footer_text .soc_links_item {line-height:3;float:left;}
.footer_text {}




/***************************************************************************************/












/*#cssmenu .float_r2 {float:left;   width:250px;  height:20px;}*/
/*#cssmenu .float_r1 {float:none;    width:250px;  height:20px;}*/

.twocolumn li {display:block;width:49%;float:left;;}
.twocolumn {background:#ffffff; padding:15px !important}
.first_menu_item_4 {margin-left:-330px !important;}
.first_menu_item_5 {margin-left:-330px  !important;}
.first_menu_item_6 {margin-left:-330px  !important;}

@media (max-width: 768px) {

	.first_menu_item_4 {margin-left:0px !important;}
	.first_menu_item_5 {margin-left:0px  !important;}
	.first_menu_item_6 {margin-left:0px  !important;}

	.woocommerce-breadcrumb {display:none !important;}
	.woocommerce div.product .product_title {font-size: 19px;}
	.woocommerce-products-header__title.page-title {font-size: 20px;}
	.filter_block_collapse {margin-top:0px !important;}

	.container_about_shop {margin-top:0px;}

   .second_level {
   	width:45%; float:left; background:#fff;list-style: none;     display:table;    border: 1px solid #e5e5e5;
    min-height: 60px;margin: 5px;  border-radius: 7px;}
   .second_level .submenu1 {background:none;  padding:5px; line-height:1.3; display: table-cell!important;
    vertical-align: middle; text-align: center; border-radius: 10px; font-weight: bold;color: #425977;}


}


.first_menu_zag {    color: #66b7ba;
    border-bottom: 1px solid #66b7ba;
    font-size: 17px;
    font-family: latobold;
    width: 100%;
    padding: 0 0px 10px 16px;
    text-transform: uppercase;
    }
.first_menu_zag a { color: #66b7ba; text-decoration:none}
.first_menu_zag a:hover{ color: #66b7ba; text-decoration:none}


#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}
#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #66b7ba;
}
#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #66b7ba;
  content: '';
}
#cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 11px;
}
#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 15px;
  display: block;
  width: 2px;
  height: 8px;
  background: #66b7ba;
  content: '';
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
#cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 15px;
}
#cssmenu ul ul > li.has-sub:hover > a:before {
  top: 17px;
  height: 0;
}


#cssmenu ul ul { width:500px; }





@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {


#cssmenu > ul > li > a {background:none;}


  #cssmenu {
    width: 100%;
  }
  #cssmenu ul {
    width: 100%;
    display: none;
  }
  #cssmenu.align-center > ul {
    text-align: left;
  }
  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgba(120, 120, 120, 0.2);
    border-right: 1px solid rgba(120, 120, 120, 0.2);
  }
  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }
  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }
  #cssmenu > ul > li {
    float: none;
  }
  #cssmenu ul ul li a {
    padding-left: 25px;
  }
  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }
  #cssmenu ul ul li a {
    color: #676767;
    background: none;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #66b7ba;
  }
  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }
  #cssmenu #menu-button {
    display: block;
    padding: 17px;
    color: #425977;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
  }
/*  #cssmenu #menu-button:after {
    position: absolute;
    top: 22px;
    right: 17px;
    display: block;
    height: 4px;
    width: 20px;
    border-top: 2px solid #425977;
    border-bottom: 2px solid #425977;
    content: '';
  }
  #cssmenu #menu-button:before {
    position: absolute;
    top: 16px;
    right: 17px;
    display: block;
    height: 2px;
    width: 20px;
    background: #425977;
    content: '';
  }*/
  #cssmenu #menu-button.menu-opened:after {
    top: 23px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #425977;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #cssmenu #menu-button.menu-opened:before {
    top: 23px;
    background: #ffffff;
    width: 15px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.2);
    height: 38px;
    width: 44px;
    cursor: pointer;
  }
  #cssmenu .submenu-button.submenu-opened {
    background: #e0e0e0;
  }
  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }
  #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #dddddd;
    content: '';
  }
  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    background: #ffffff;
  }
  #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #dddddd;
    content: '';
  }
  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }

#cssmenu ul ul {
    box-shadow: none;
}


#cssmenu > ul > li > a {font-size: 14px; text-transform:none;}

}



.variations .label {display:none;}

.comment-form-comment textarea {font-size:15px !important}
.form-submit input {border-radius:50px !important; background:#425977 !important}
.form-submit input:hover { background:#2a3e56 !important; color:#fff !important;}

.wac-qty-button {display:none !important}
.actions .button {border-radius:50px !important; background:#66b7ba !important; color:#fff !important;}
.wc-proceed-to-checkout .checkout-button {border-radius:50px !important; background:#425977 !important; color:#fff !important;}

.woocommerce-billing-fields h3 {font-family:latoheavy; color:#425977; text-transform:uppercase; font-size:18px !important}
.woocommerce-additional-fields h3 {font-family:latoheavy; color:#425977; text-transform:uppercase; font-size:18px !important}
#order_review_heading {font-family:latoheavy; color:#425977; text-transform:uppercase; font-size:18px !important}
#place_order {border-radius:50px !important; background:#425977 !important; color:#fff !important; padding: 12px 45px;}


.tbl { border-right:1px solid #dedede; border-bottom:1px solid #dedede;}
.tbl tr td {padding:10px 15px; border-left:1px solid #dedede; border-top:1px solid #dedede;}

.woof_container_inner h4 {font-family:latoheavy; color:#2a3e56; font-size:16px}
.woof_list li label {font-weight:normal; line-height: 1; font-size: 13px;}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {background-color: #66b7ba;}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {background-color: #2a3e56;}

.irs-grid {display:none !important}
.irs-bar {background: #66b7ba  !important;}
.irs-from { font-size: 13px  !important;top: -5px !important;}
.irs-to { font-size: 13px  !important;top: -5px !important;}
.irs-slider {background: #2a3e56  !important; border-radius:50px;}
.woof_redraw_zone {padding-right: 25px;padding-left: 25px;}
.woof_reset_search_form {float:none !important; background: #74bdc0 !important;	border-radius: 30px !important;}
.woof_reset_search_form:hover { background: #4fa4a7 !important; color:#ffffff !important; }


.itogo_name {font-size: 20px !important; color:#425977 !important; font-family: lato !important;}
.itogo_itogo {font-size: 25px !important; color:#ec747d !important; font-family: latoheavy !important; padding:0 40px 0 10px;}

@media all and (max-width: 768px)
{

.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title) " "; }

    }

.woocommerce-cart table.cart img {width:100px;}
.cart_p_name {color:#425977; font-size:17px; font-family: latobold !important;}


/*.woocommerce-checkout-review-order-table  .shipping th {display:none}*/
/*.woocommerce-checkout-review-order-table  .order-total {display:none}*/

.checkout_zag {font-family: latoheavy;
color: #425977;
font-size: 18px !important; text-transform: uppercase}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {background: none;}

.payment_block{
border: 1px solid rgba(0,0,0,.1);
border-collapse: separate;
border-radius: 5px;
padding:10px;
}



/*.wc_payment_methods {display:none}*/
.payment_zag { font-family: latobold !important; margin: 0px 0 0 0; font-size:16px;}
.payment_text {font-size:15px; line-height:1.3; color:#5D5D5D}
.payment_zag_dis {color:#696969; font-family: lato;}
.payment_dis {opacity:0.4;}

.payment_dis .payment_zag  {font-size:15px ;}
.payment_dis .payment_text  {font-size:15px ;}

.payment_input {width:20px; float:left;height:20px;}
.payment_info {}
.o20 {height:15px;}

#shipping_method label {font-size:16px;}
#place_order, .checkout-button{font-size:20px; font-family: latobold !important;  text-transform: uppercase; font-weight:normal !important;}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {padding: 12px; font-size: 16px;}
.woocommerce form .form-row label { font-size: 17px;}
#billing_country_field {display:none}
.woocommerce form .form-row .input-checkbox {margin: 0px 8px 0 0;}



.required {font-weight: normal !important; border-bottom: none !important; color:#808080 !important; font-size:14px;}

a.wpis-popup:hover {text-decoration:none  !important;}
a.wpis-popup:active {text-decoration:none  !important;}
a.wpis-popup {text-decoration:none  !important;}



.fancybox-controls {/*display:none !important*/}


.woof_container_inner h4 {margin: 15px 0 15px 0; display:block;}

.index_h1 {display:inline; text-transform:none; color:#66b7ba; font-size:22px;}

.woocommerce-Price-amount {}
del {color: #959595;font-size: 18px;display: block;font-family: lato;margin-bottom: 10px;}
del span.woocommerce-Price-currencySymbol {color: #959595;font-size: 18px !important; font-family: lato !important;}

ins{
    background: #e06871;
    color: #ffffff;
    padding: 5px 4px 2px 4px;
    border-radius: 5px;
}

.single_product .price del span.woocommerce-Price-amount {color: #959595 !important;font-size: 20px !important;display: block;font-family: lato;margin-bottom: 10px;}
.single_product .price del span.woocommerce-Price-amount span.woocommerce-Price-currencySymbol {color: #959595 !important;font-size: 20px !important; font-family: lato;margin-bottom: 10px;}

.single_product .price ins span.woocommerce-Price-amount {border: 1px solid #e06871;background: #e06871;color: #ffffff;padding: 5px 4px 2px 4px;border-radius: 5px;}
.single_product .price ins span.woocommerce-Price-amount span.woocommerce-Price-currencySymbol {color: #ffffff;}



.read_more {background: url(/wp-content/themes/babykrama/img/att_bg.png) #ffffff bottom center; padding: 20px; width:50%;  z-index:9999; border:3px solid #66b7ba;
-webkit-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.3);
-moz-box-shadow:    0px 0px 15px 0px rgba(50, 50, 50, 0.3);
box-shadow:         0px 0px 15px 0px rgba(50, 50, 50, 0.3);
text-align:center;

}
.read_more_name  {width:80%; float:left; font-weight:bold; font-family:lato; font-size:20px;}
.read_more_text {font-family: 'Neucha'; font-size: 23px; font-weight:bold; color:#425977}

.read_more_close {width:20%; float:left; text-align:right;}

.floating {position: fixed;left: 25%;bottom:0px;display:block;}


.term-description p {font-size: 16px; line-height:1.4}



@media (max-width: 1100px) {

	.read_more {width:80%;}
	.floating {left: 10%;}


}


@media (max-width: 768px) {


#menu-button {display:none !important;}

.mobile_header_img img {width:100%; margin: 10px 0 10px 0;}


	.read_more {width:90%;padding: 10px; }
	.read_more_text {font-size: 18px;}
	.floating {left: 5%;}

	.category_item {width: 50%; height:310px;}
	.container_style {padding: 10px !important; margin-top:10px !important;}
	.catalog_item_pic a {width:125px; height:135px;}
	.catalog_item_price {font-size: 20px !important;}
	.catalog_item_buy a {padding: 8px 15px !important;font-size: 15px !important;}
	.page-title {text-align:center;}
	.product_title  {text-align:center;}
	.woocommerce-breadcrumb {text-align:center;    float: none; margin:5px !important;}
	.woocommerce-result-count {margin-bottom:0px !important}

	.container_link {margin: 0 auto;padding: 12px 20px; width: 235px; display:block; text-align: center}
	.container_link_green1 {margin: auto 20px;}

	.catalog_slider .owl-nav {    width: 91%;    left: 2%;}

	.index_news_item {width: 85% !important;}
	.container_about_shop_pic {margin: 0 auto  !important; display:block; float:none}
	.container_about_shop {width: 96%; padding: 20px;}
	.container_articles {width: 93%;}
	.cat_category_zag {text-align:center;}

	.phone_mob {font-size: 20px;}
	.cart_mob {margin: 20px 10px 0 0;}
/*	.owl-item {width:320px !important}*/

	.search_form input[type="text"] {width: 90%;}


	.mobile_cats_pic {width:100%; margin: 8px 0 9px 0;}

	#cssmenu .submenu-button {
	  display: inline-block;
	  font: normal normal normal 14px/1 FontAwesome;
	  font-size: inherit;
	  text-rendering: auto;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	}


	#cssmenu .submenu-button:before {
	    content: "\f054";
	    background: transparent;
	    color:#5b779b;
	}

	#cssmenu .submenu-button:after
	{
		    background: transparent;
	}


	#cssmenu .submenu-button.submenu-opened:after {
	content: "\f078";
	 background: transparent;
	 top: 16px;
	  color:#838383;
	}


	.float_r1 a:after, .float_r2 a:after{content: "\f054";
	 background: transparent;
	 left: 16px;
	  color:#b7b7b7;
	  display: inline-block;
	  font: normal normal normal 10px/1 FontAwesome;
	  font-size: inherit;
	  text-rendering: auto;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  font-size: 10px;
	  padding-left: 15px;

	}



.header_menu_n_item {width:50% !important; float:left !important; display:block !important;}

#cssmenu > ul > li > a {padding: 18px 11px 18px 17px; display:inline-block !important; width:100px;}


	.carousel-caption {bottom: 3px;}

}


@media (max-width: 590px) {

	.phone_mob {font-size: 17px;}
.search_form input[type="text"] {width: 85%;}

}


@media (max-width: 480px) {

	.phone_mob {font-size:15px;}
	.cart_mob {margin: 13px 10px 0 0;}

}


@media (max-width: 480px) {

	.phone_mob {font-size:15px;}
	.cart_mob {margin: 13px 10px 0 0;}
	.search_form input[type="text"] {width: 80%;}

}


.teplitsy {width:90%; margin: 10px auto; background:url(/wp-content/themes/babykrama/img/teplitsy.png) center top no-repeat; border:4px solid #b7d78e; position:relative; height:260px;}
.teplitsy_zag1 {position:absolute; top:10px; text-align:center; color:#84b513; text-decoration:none; font-size:27px; font-weight:bold;width: 100%; }
.teplitsy_zag2 {position:absolute; top:45px; text-align:center; color:#84b513; text-decoration:none; font-size:17px; font-weight:bold;width: 100%;}
.teplitsy_link {position:absolute;text-decoration:none; width:100%; top:190px;}
.teplitsy_link span {display:block; width:195px; margin: 0 auto;background:#64ab05;  color:#fff; padding: 10px 0px;text-align: center;font-size: 17px;font-weight:bold;}
.teplitsy_link span:hover {background:#6eb909; }
.teplitsy_part {position:absolute; bottom:0px;left:0px;background:#b7d78e; width:100px; text-align:center; color:#fff;text-decoration:none;line-height: 1.3;}

@media (max-width: 400px) {

	.teplitsy_zag2 {font-size:15px;}

}




.woocommerce-additional-fields h3 {display:none}
.woocommerce-account-fields {display:none}
h4#billing___field {font-family: latoheavy;
color: #425977;
text-transform: uppercase;
font-size: 18px !important;}

h4#billing_delivery_field_c_field {font-family: latoheavy;
color: #425977;
text-transform: uppercase;
font-size: 18px !important;}


h3#order_review_heading {margin:20px 0 10px 0}
.wc_payment_methods .payment_method_woa_gateway {display:none !important}




.num_ul {list-style:decimal}
.num_ul li {margin:5px 0}

.catalog_item_availible_colors {text-align:center; width:34px; height:34px; background:url(/wp-content/themes/babykrama/img/colors_icon.png) no-repeat; position:absolute; top:0px; right:0px;
text-align:center; font-size:17px; font-weight:600; line-height:38px;}
.catalog_item_availible_colors a {color:#444444; text-decoration:none;}


.fl {display:flex;}
.payment_types_babyk {margin:20px 0 10px; align-items: center; font-family: lato;}
.payment_types_babyk_icon {background:url(/wp-content/themes/babykrama/img/cardicon.png) no-repeat center center; display:block; width:50px; height:50px; border:2px solid #66b7ba; border-radius:30px; margin:0 10px 0 0;}
.payment_types_babyk_text { font-size:16px; color:#5a718f; line-height:1.3; font-family: latoheavy;}
.payment_types_babyk_text span{ font-family: lato;}

.catalog_item_availible_variations {  display:flex; justify-content: center; width: 100%;  flex-wrap: wrap;}
.catalog_item_availible_variations img {width:35px; margin:2px 2px;border:1px solid #BCBCBC}



.tagged_as {line-height:1.3; margin-bottom:10px; display:block;}
.tagged_as a { }


.awooc-form-custom-order-price {display:none}
.awooc-form-custom-order-sku  {display:none}
.awooc-form-custom-order-attr {display:none}
.awooc-form-custom-order-qty {display:none !important}
.awooc-form-custom-order-sum {display:none}


.tabs_text_zag {color: #66b7ba;   font-family: latoheavy; font-size:19px !important; padding:10px 0 0; margin:0px 0 10px 0 !important; border-top:1px solid #E2E2E2}
.tabs_block p {font-size:16px; line-height:1.5}


@media (max-width: 500px) {

	.woocommerce div.product .woocommerce-tabs ul.tabs {padding: 0 0 0 5px !important;}
	.woocommerce div.product .woocommerce-tabs ul.tabs li {padding: 0 10px;}
	.tabs_block p {font-size:15px; line-height:1.3; margin-bottom:10px;}

	.index_popcat_item {display:block !important; margin: 10px 0 30px 15px !important;}
	.index_popcat_pic {text-align:center; }
	.index_popcat_name {text-align:center; }

}


.viewed_products_zag {text-align:center; color: #425977;
    font-family: latoheavy;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: normal;
        border-top: 4px solid #466286;
        padding: 20px;
    }



.viewed_products { position: relative; width:90%; margin: 0 auto;}
.viewed_products .owl-nav {position: absolute; width: 95%;height: 0px;top: 50%;z-index: 999;}
.viewed_products .owl-nav .owl-prev{position: absolute;left: -20px;top: -25px;width: 30px;height: 50px;font-weight: bold;line-height: 1;font-size: 38px;background:#ffffff !important;}
.viewed_products .owl-nav .owl-prev:before {content: "";position: absolute;top: 50%;left: 50%;display: block;width: 30px;height: 50px;background: url(/wp-content/themes/babykrama/img/arrow_left.png) no-repeat;}
.viewed_products .owl-nav .owl-prev:hover{background:#ffffff;opacity:0.8;}
.viewed_products .owl-nav .owl-prev:hover:before { background: url(/wp-content/themes/babykrama/img/arrow_left.png)  no-repeat;}
.viewed_products .owl-nav .owl-next {position: absolute;right: -16px;top: -25px;width: 30px;height: 50px;font-weight: bold;background:#ffffff !important;}
.viewed_products .owl-nav .owl-next:before { content: ""; position: absolute; top: 50%; left: 50%; display: block; width: 30px; height: 50px; background: url(/wp-content/themes/babykrama/img/arrow_right.png)  no-repeat; }
.viewed_products .owl-nav .owl-next:hover{ background:#ffffff; opacity:0.8; }
.viewed_products .owl-nav .owl-next:hover:before{ background: url(/wp-content/themes/babykrama/img/arrow_right.png) no-repeat; }

.viewed_products.owl-carousel {
    display: flex !important; /* To override display:block I added !important */
    flex-direction: row;
    justify-content: center; /* To center the carousel */
}



.cpops-cart-item__actions--pricing .cpops-price {font-size: 15px !important; color: #425977 !important; font-family: latobold !important;}
.cpops-cart-item__product--link a {font-family: latobold !important;font-weight:normal !important; font-size: 15px !important;}

/*#quadmenu img[data-src] {opacity: 1 !important;}*/
