/*! HTML5 Boilerplate v5.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    font-family: Tahoma, Helvetica, Arial, sans-serif;

}
html, body {
    height: 100%;
   /* -webkit-filter: grayscale(1);
    -webkit-transition:-webkit-filter 0.2s ease-in-out;  */
}
/*
html:hover, body:hover {
    -webkit-filter: grayscale(0);
    -webkit-transition:-webkit-filter 0.2s ease-in-out;
    filter:none;
}*/
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */




* {
    outline:none;
}





.col-cart-form-right-space {
    @media(min-width: 768px){
        padding-left: 80px;
    }
}

.d-flex {
    display: flex;
}

.captcha-block {
    display: flex;
    align-items: center;
    /*gap: 10px;*/
}
.captcha-block__image {
    margin-right: 10px;
}

.captcha-block__required {
    order: 3;
    padding-left: 7px;
    align-self: start;
    top: 5px;
}

.row--cart-form-right {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    margin-right: -5px;
    margin-left: -5px;
}
.row--cart-form-right > div[class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
    flex-grow: 1;
}



.relative {
    position: relative;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers:
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

select {
    max-width: 100%;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100%;
    height: auto !important;
    height: 100%;
}

#content {
//    padding: 0 0 278px;

}

#footer {
    width: 1200px;
//    margin: -278px auto 0;
 margin: 0 auto 0;
//    height: 378px;
}
#footer .fulllink {
    text-align: center;
    padding-top:10px;
}
#footer .fulllink a {
    color: #fff;
    font-size: 11px;
}
#footer .black {
	background-color:#000;
	color:#fff;
	padding:27px;
	height: 105px;
}
#footer .text {
  font-size: 13px;
  line-height: 15px;
  margin-left: 26px;
  margin-right: -44px;
}
#footer .text p, #footer .seotext p {
	margin:0;
	padding:0;
}
#footer .lgg img {
    margin: -14px 0 0 -7px;
}
#footer .seotext {
    padding: 18px 0 5px 0;
	color:#e0e0e0;
	font-size:13px;
	line-height:15px;
}
#footer .col-lg-4 {
	text-align:right;
        padding-top: 13px;
}


#header .header {
    background-color:#000;
	color:#fff;
	height:100px;
	margin:78px 0 20px 0;
    position: relative;
}
#logo {
    padding: 11px 0 0 22px;
}
#logo img {
    max-width:100%;
}
#search form {
    display: block;
    position: relative;
    margin-top: 33px;
    width: 188px;
    margin-left: -15px;
}
#search form input[type="text"] {
	color:#000;
    height:32px;
    border:1px solid transparent;
	padding: 6px 30px 7px 10px;
    font-size:12px;
  /*   line-height:28px; */
    width:100%;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
#search form input[type="text"]:focus {
    border-color:#e41213;
}

#search form button[type="submit"] {
    display:block;
    width:30px;
    height:30px;
    right:1px;
    top:1px;
    position:absolute;
    background:transparent url(../img/search_bg.png) no-repeat left center;
    border:0;
    color:#333333;
    text-align: center;
    line-height: 30px;
}
#search form button[type="submit"]:hover {
    color:#e41213;
}

.button, #deliveries .checkout_button {
    height: 37px;
    line-height:35px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
	background-color: #cfcfd0;
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,.75);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,.75);
	box-shadow: 0 0 1px rgba(0,0,0,.75);
	background-image: -webkit-linear-gradient(top, #231f20 50%, #423f3f 51%);
	background-image: -moz-linear-gradient(top, #231f20 50%, #423f3f 51%);
	background-image: -o-linear-gradient(top, #231f20 50%, #423f3f 51%);
	background-image: -ms-linear-gradient(top, #231f20 50%, #423f3f 51%);
	background-image: linear-gradient(to bottom, #231f20 50%, #423f3f 51%);
	border:0;
    display:inline-block;
    padding:0 30px;
    font-size:13px;
    color:#fff;
    text-decoration: none;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}
.button[disabled] {
    background: dimgrey;
    color: #cfcfd0;
    opacity: 1;
}

.fltpricetbl .button {
	padding: 0 14px;
	height: 32px;
	line-height: 30px;
}
.fltpricetbl {
	padding:0 0 10px 0;
}
.transfer_class {
    z-index: 9999;
}
#cart_informer {
    font-size: 13px;
    line-height: 31px;
   /* margin-top: 7px;*/
    padding-left: 35px;
    position: relative;
    white-space: nowrap;
}
#cart_informer span {
	font-size: 26px;
	position: absolute;
	left: 3px;
	top: 3px;
}
#cart_informer a {
	color:#fff;
}
#cart_informer a:hover {
	text-decoration:underline;
}

#header #menu {
    margin-top:35px;
    border-top:1px solid #000;
    border-bottom:1px solid #000;
    height:54px;
}
#header .menu {
	padding: 37px 0 0 0;
	text-align: center;
}
#header .menu ul {
    margin:0;
    padding:0;
}
#header .menu ul li {
  display: inline-block;
  list-style: none;
  position: relative;
}
#header .menu ul li:last-child {
	padding-right:0;
}
#header .menu ul li.home {
    padding-left:0;
    width: 33px;
    height: 25px;
}

#header .menu ul li a {
    text-decoration: none;
    color:#fff;
    font-size:18px;
    padding: 0 2px;
}
#header .menu ul li.home span {
    font-size: 19px;
    position: relative;
    bottom: -3px;
}
#header ul li a:hover {
    text-decoration:underline;
}

#footer {
    font-size:17px;
    line-height:21px;
//    padding:25px 0 45px 0;
 padding:25px 0 25px 0;
}
#footer .line {
    border-top: 1px solid #000;
    margin: 0 15px 12px 15px;
}
#footer a {
    display:block;
}

.socials .pluso a {
	background-image: url(../img/02.png) !important;
}
#footer .socials a {
  display: inline-block;
  margin-right: 20px;
}
#footer .socials {
  display: inline-block;
  top: -2px;
  position: relative;
}
#footer .copyright a {
    display:inline-block;
}
#footer .socials a {
	background-image:url(../img/socials2.gif);
}

#footer .socials2 a {
  display: inline-block;
  margin-right: 10px;
}
#footer .socials2 {
  display: inline-block;
}
#footer .dolyami {
    display: inline-block;
}

.socials a {
    display:inline-block;
    width:20px;
    height:19px;
    background:transparent url(../img/socials.gif) no-repeat left top;
    border:0;
    text-decoration: none;
    text-indent: -9999px;
    font-size:0;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.socials a.fb {
    background-position: -20px top;
}
.socials a.twi {
    background-position: -40px top;
}
.socials a.insta {
    background-position: -60px top;
}
.socials a:hover {
    opacity: 0.7;
}

.socials2 a {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: #fff;
    color: #000;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

.socials2 a:hover {
    opacity: 0.7;
}

.dolyami {
    display: inline-block;
    vertical-align: middle;
}

.dolyami img {
    display: block;
    height: 20px;
    width: auto;
    border-radius: 4px;
}

.dolyami:hover {
    opacity: 0.7;
}

#footer a.mail {
	display:inline-block;
	font-size:13px;
	color:#fff;
}

.col-lg-2 .head {
	display:block;
    padding:0 10px;
    min-width: 0;
}

.head {
    min-width: 212px;
    font-size:17px;
	/*color:#fff;*/
	/*background-color:#000;*/
    color: #000;
    background-color: #EEEEEC;
    position: relative;
    font-weight: normal;
    margin-bottom:19px;
	height:38px;
	line-height:38px;
	padding:0 25px;
	display:inline-block;
}
#path {
    font-size:17px;
    color:#000;
    background-color:#EEEEEC;
    position: relative;
    font-weight: normal;
    margin-bottom:19px;
    height:38px;
    line-height:38px;
    padding:0 40px;
    display:inline-block;
}
#path a {
	color:#000;
}
#path a:hover {
	text-decoration:underline;
}
.head h1 {
    font-size:17px;
    margin:0;
    padding:0;
    font-weight: normal;
}


#catalog ul {
    margin:0;
    padding:0 0 35px 0;
}
#catalog li {
    list-style: none;
}
#catalog li a {
    font-size:13px;
    line-height:21px;
}
#catalog li.active a {
  background-color: #000;
  color: #fff;
  padding: 1px 4px 2px 4px;
  margin-left: -4px;
}
#catalog li.active a:hover {
	text-decoration:none;
}
.right_block {
    border:1px solid #dadada;
    border-radius: 5px;
    font-size:17px;
    margin-bottom:30px;
}
.right_block .heading {
    padding:18px 20px;
    border-bottom:1px solid #dadada;
}

.right_block .heading span {
    color: #e41213;
    margin: 0 10px 0 0;
    font-size: 20px;
    position: relative;
    bottom: -2px;
}
.right_block .inside {
    padding:25px 30px 15px 30px;
    line-height:20px;
}
.right_block .inside p {
    margin:0 0 10px 0;
}

#news_block .name {
    display:block;
    font-size:13px;
	line-height:16px;
}
#news_block .date {
    font-size:10px;
	padding:11px 0 2px 0;
}
#news_block img {
    position:absolute;
	left:0;
	top:0;
}
#news_block .desc {
    display:block;
	width:110px;
	height:110px;
	overflow:hidden;
	position:relative;
	margin:0 auto;
    -webkit-border-radius: 50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
    border-radius:50%;
}
#news_block .desc img {
	max-width: 110px;
	max-height: 110px;
}
#news_block .desc span {
	display: block;
	height: 110px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
#news_block .item {
    padding-bottom:25px;
}
#news_block .desc p {
    margin:0;
}
#news_block .item #tags {
	font-size: 10px;
}
#news_block .item #tags a{
	color: #8D8D8E;
	text-decoration: underline;
	margin-right: 10px;
}
.items .item {
	position:relative;
	line-height: 13px;
}
.items .item:hover .size, .items .item:hover .size_wrap {
	display:inline-block;
}
.items .item .size_wrap {
	height:0;
	position:relative;
	display: inline-block;
	display:none;
}
.items .item .size {
	position:absolute;
	z-index:2;
	display:inline-block;
	top: 7px;
	left:23px;
	display:none;
}
.items .item .size div {
	display:inline-block;
	min-width:29px;
	line-height:29px;
	height:29px;
	background-color:#000;
	color:#fff;
	padding:0 3px;
	font-size:13px;
	margin-bottom:7px;
	text-align:center;
}
.col-lg-10 .items .item .img {
	height:319px;
}
.items .item .img {
    display:table;
    width:100%;
    height:292px;
    /*text-align: center;*/
	position:relative;
}
.col-lg-10 .items .item .img2 {
	height:319px;
}
.items .item .img2 {
    display:table-cell;
    height:292px;
    width:100%;
	vertical-align:middle;
}
.items .item .img2 img {
    max-width:100%;
    max-height:292px;
}
.col-lg-10 .items .item .img2 img {
	max-height:319px;
}
.items .item .brand {
    padding: 13px 0 3px 0;
    font-size: 13px;
    color: #262625;
    font-weight: bold;
}
.items .item .name {
    padding:0 0 3px 0;
    font-size:13px;
    color:#262625;
    min-height: 29px;
    display:block;
}

.items .item .price {
    font-size:13px;
    color:#262625;
	font-weight:bold;
    display: inline-block;
}
.items .item {
    padding-bottom:25px;
}

.col-lg-6 .items .item .img {
    height:233px;
}
.col-lg-6 .items .item .img2 {
    height:233px;
}
.col-lg-6 .items .item .img img {
    max-height:233px;
}
.col-lg-6 .items .item .name {
    font-size: 15px;
    padding: 32px 0 0px 0;
    line-height: 17px;
}
.col-lg-6 .items .item .price {
    font-size: 22px;
}

#path {
    position: relative;
    top: -5px;
}
#item .alias_product {
	padding-bottom:15px;
}
#item .alias_product .heading {
	font-size:13px;
	line-height:auto;
	padding:0 0 4px 0;
}
#item .alias_product .it {
	display:table;
	text-align:center;
	width:80px;
	height:100px;
	#margin:0 4px 4px 0;
	float:left;
}
#item .alias_product .it .img {
	display:table-cell;
	width:80px;
	height:100px;
	vertical-align:middle;
}
#item .alias_product .it .img span {
	display:block;
	width:13px;
	height:13px;
}
#item .alias_product .it .img img {
	margin:0;
	max-width:80px;
	max-height:100px;
}
#item .head {
	display:block;
	line-height:20px;
	height:auto;
	padding:0;
	margin:0;
	background-color:#fff;
	color:#000;
}
#item .head h1 {
	font-size:18px;
	font-weight:normal;
}
#item .img {
	text-align: left;
}
#item .img img {
    margin-bottom:12px;
    max-width:100%;
}
#item .subimgs {
    padding:0 14px 15px 0;
}
#item .subimgs .col-lg-3 {
	padding-right:0;
    padding-bottom: 15px;
}
#item .subimgs img {
    max-width:100%;
    cursor: pointer;
}
#item .subimgs .subimg {

    height:104px;
    display:table;
    text-align:center;
}
#item .subimgs .subimg a {
    display:table-cell;

    height:104px;
    vertical-align: middle;
}
#item .heading {
    font-size:20px;
    padding:0 0 3px 0;
}
#item .viewed .head {
	height:26px;
	line-height:26px;
	margin-bottom:10px;
	background-color:#000;
	color:#fff;
	font-size:13px;
	text-align:center;
	display:block;

}
#item .viewed {
	padding-bottom: 15px;
	padding-left: 38px;
	width: 205px;
}
#item .viewed .items {
	width:170px;
}
#item .viewed .items .it {
	display: inline-block;
	width: 80px;
	margin-right: 3px;
	margin-bottom: 8px;
	vertical-align:top;
}
#item .viewed .items .it img {
    max-width:80px;
    width:auto;
    margin:0;
}

#item .share {
    border-bottom:1px dotted #d8d8d8;
    padding:0 0 20px 0;
    margin-bottom:10px;
    height: 41px;
}
#item .yashare-auto-init {
    margin-left:-5px;
}
#item .item_info {
    margin-bottom: 15px;
	/* width:310px; */
}
#item .item_info .size b {
    display:block;
    font-size:18px;
    padding:0 0 3px 3px;
}
#item .item_info .size {
    float:left;
}
#item .item_info .size label {
    display:inline-block;
    margin:0;
    float:left;
	cursor:pointer;
	margin-bottom:11px;
	width:60px;
}
#item .item_info .size label span {
    font-size: 13px;
	line-height: 20px;
}
#item .item_info a.how {
    display: block;
    float: left;
    font-size: 13px;
    text-decoration: underline;
    color: #000;
    line-height: 14px;
    margin-top: 3px;
}
#item .item_info a.how:hover {
    text-decoration: none;
}
#item .item_info .price {
    font-size:18px;
	margin:15px 0;
	font-weight:bold;
	color:#000;
    display: inline-block;
}
#item .item_info .compareprice{
    font-size: 14px;
    margin: 15px 30px 15px 0;
    font-weight:bold;
    color:#000;
    display: inline-block;
    text-decoration: line-through;
}
.inside .compareprice{
    font-size: 13px;
    margin: 0px 0px 0px 30px;
    font-weight:bold;
    color:#000;
    display: inline-block;
    text-decoration: line-through;
}
#item .body {
	font-size:13px;
	line-height:15px;
	color:#000;
	padding:0 0 25px 0;
}
#item .body ul{
    padding: 0;
    list-style: none;
}
#item .body p {
	margin:0;
}

#annotation.small .text{
    max-height: 125px;
    overflow: hidden;
    position: relative;
}
#annotation.small .text:before{
    content:'';
    display: block;
    width: 100%;
    height: 35px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );

}

#annotation .more{
    font-size: 14px;
    margin-top: 10px;
    display: block;

}

#item .item_info .button {
	display:block;
	width:100%;
    margin:55px 0 40px 0;
	position:relative;
}
#item .item_info .added {
	display:none;
	position: absolute;
	left: 15px;
	width: 262px;
	background-color: #cfcfd0;
	color: #000;
	font-size: 13px;
	line-height: 28px;
	text-align: center;
	margin-top: -35px;
}
#item .item_info .likes {
	font-size:13px;
	line-height:15px;
}
#item .item_info .likes .socials {
	padding-top:15px;
}
#item .item_info .likes .socials a {
	margin-right:20px;
}
#item .item_info .likes .socials a.pluso-more, .postlikes a.pluso-more {
	display:none !important;
}

#item .subhead {
    font-size: 20px;
    padding: 0 0 3px 0;
}
#item .desc p {
    margin:0 0 10px 0;
}
#item .desc {
    padding:0 0 10px 0;
    margin:0 0 15px 0;
    border-bottom: 1px dotted #d8d8d8;
}
#item .features ul {
    margin:4px 0 35px 0;
    padding:0;
    border-top:1px dashed #d8d8d8;
}
#item .features ul li {
    border-bottom:1px dashed #d8d8d8;
    padding:5px;
    font-size:16px;
    list-style: none;
}
#item .features b {
    display:inline-block;
    vertical-align: top;
    width:200px;
}
#item .features span {
    display:inline-block;
    vertical-align: top;
    width:435px;
}

.comment_form {
    background-color:#eaeaea;
    border:1px solid #e0e0e0;
    border-radius: 5px;
    padding: 5px 15px 12px 15px;
    position:relative;
}

.comment_form input[type="text"], .comment_form textarea {
    background-color: #fff;
    -webkit-box-shadow: inset 1px 2px 4px rgba(0,0,0,.05);
    -moz-box-shadow: inset 1px 2px 4px rgba(0,0,0,.05);
    box-shadow: inset 1px 2px 4px rgba(0,0,0,.05);
    border:1px solid #c8c8c8;
    padding:3px 10px;
    margin-bottom:10px;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.comment_form input[type="text"]:focus, .comment_form textarea:focus {
    border-color: #e41213;
}
.comment_form label {
    width:100px;
    font-size:20px;
    display: inline-block;
}
.comment_form textarea {
    width:100%;
}
.comment_form img {
    width:91px;
}
.comment_form .input_name {
    width: 273px;
}
.comment_form input.comment_button {
    position:absolute;
    right: 15px;
    bottom: 21px;
    width:123px;
    height:35px;
    color:#fff;
    background: transparent url(../img/comment_button.png) no-repeat center center;
    font-size:17px;
    border:0;
    padding: 0 0 0px 26px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    -ms-transition: all 100ms ease-in;
    -o-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
}
.comment_form input.comment_button:hover {
    opacity:0.6;
}
.pagination {
	font-size: 13px;
	text-align:right;
}
.pagi_top {
	position: absolute;
	margin-top: -37px;
	top: -25px;
	right:15px;
}
.pagination a {
	display:inline-block;
	width:37px;
	height:37px;
	color:#000;
	line-height:37px;
	text-align:center;
}
.pagination a:hover {
	text-decoration:underline;
}
.pagination a.selected {
	background-color:#000;
	color:#fff;
}
.pagination a.selected:hover {
	text-decoration:none;
}



.message_error {
	color:red;
	padding:10px 0;
}

.error{
    color: red;
}

.comment_list {
	list-style: none;
	margin:15px 0 0 0;
	padding:0;
}
.comment_list li {
	padding-bottom: 15px;
}
.comment_header {
	font-size: 18px;
}
.comment_header i {
	font-weight: normal;
	font-style: normal;
	color: #878787;
	font-size: 13px;
}

#blog {
	margin:40px 0 0 0;
	padding:0;
}
#blog li {
	list-style:none;
	margin-bottom:25px;
	padding-bottom:30px;
}
#blog .date {
    font-size: 10px;
    margin: 0 0 15px 0;
}
#blog #tags a {
    color: #8D8D8E;
    text-decoration: underline;
    margin-right: 10px;
    font-size: 10px;
}
#blog .annotation {
    display: block;
    font-size: 13px;
    line-height: 16px;
    margin: 0;
}
#blog li .img {
	text-align: center;
    font-size:0;
}
#blog li .img img {
	max-width: 300px;
	max-height: 300px;
}
#blog .img span {
    height: 200px;
    display: block;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#blog li h3 {
	margin: 0;
	font-size: 18px;
    line-height: 22px;
}
#releted_blog {
    text-align: center;
    position: relative;
    /*margin-top: -26px;*/
    margin-top: 10px;
}
#releted_blog #news_block {
    text-align: left;
    width: 570px;
    margin: 0 auto;
}
#releted_blog .head {
    font-size: 13px;
    height: 28px;
    line-height: 25px;
    padding: 0 20px;
}
#releted_blog ul {
    text-align: left;
    padding: 20px 0;
    margin: 0;
}
#releted_blog ul li {
    list-style:none;
    padding: 0 0 20px 0;
}

/* #purchases .image a img {
	border: 1px solid #ededed;
} */
#purchases .image a {
    display: inline-block;
}
/* #purchases .image a:hover img {
border: 1px solid #DF0A0B;
} */
#purchases .image {
    width:120px;
}

#cartform .requir {
	font-size: 15px;
	color: #bb0000;
	text-align: right;
	padding: 5px 14px 0 0;
	line-height: 21px;
}
#cartform .head {
	margin-bottom:10px;
	padding-bottom:0;
}

#purchases thead .name {
    text-align: left;
}

#purchases {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
	margin-top:-10px;
}
#purchases td.name {
	vertical-align:top;
}
#purchases tbody .name a {
    text-decoration: none;
    font-size: 18px;
	font-weight:bold;
    text-transform: none;
    color: #000;
	display:block;
    word-wrap: break-word;
}

#purchases tbody .name a:hover {
    text-decoration:underline;
}
#purchases th.price {
	text-align:right;
}
#purchases tfoot th {
	padding:11px 0 0 0;
}
#purchases tfoot th span {
	background-color: #000;
	display: block;
	width: 128px;
	margin: 0 0 10px 10px;
	color: #fff;
	font-size: 13px;
	text-align: center;
	height: 31px;
	line-height: 31px;
	padding-left:2px;
}
#purchases tfoot th.price {
	font-size: 18px;
	font-weight: bold;
	margin: 0;
	line-height: 31px;
	padding: 0 0 0 11px;
	text-align: center;
}
#purchases .price {
    text-align: center;
    padding-left:10px;
    width:138px;
    color: #000;
    font-size: 18px;
    white-space: nowrap;
}

#purchases .amount select {
    border: 1px solid #d4d4d4;
    text-align: center;
    color: #7e7e7e;
    font-size: 12px;
    width: 60px!important;
}

#purchases .amount {
    text-align: center;
    width: 90px;
}
.carthead span {
	height:39px;
	width:39px;
	text-align:center;
	line-height:39px;
	color:#fff;
	font-size:18px;
	background-color:#000;
	display:inline-block;
    margin-right: 10px;
}
.carthead {
	line-height:39px;
	font-size:18px;
	color:#000;
  padding-top:10px;
}

/* #purchases tfoot tr td, #purchases tfoot tr th {
    background-color: #fbfbfb;
} */

#purchases th {
    /* padding: 12px 20px 12px 20px; */
    /* border: 1px solid #ececec; */
    font-weight: bold;
    white-space: nowrap;
    color: #000;

    font-size: 13px;
}
#purchases thead td span {
	background-color:#000;
	display:block;
	width:128px;
	margin:0 0 10px 10px;
	color:#fff;
	font-size:13px;
	text-align:center;
	height:23px;
	line-height:23px;
}
#purchases td {
    border-color: #ececec;
    line-height: normal;
    color: #000000;
    font-size: 17px;
	/* white-space:nowrap; */
	padding:8px 0;
	border-bottom:1px solid #000;
}

#purchases tbody td {
    /* padding: 19px;
    border: 1px solid #ececec; */
    vertical-align: middle;
}

#purchases .remove a {
    display: inline-block;
    width: 21px;
    height: 21px;
    font-size: 0;
    line-height: 0;
    background: url(../images/cart-delete.png) 0 0 no-repeat;
    text-indent: -999em;
    overflow: hidden;
}

#purchases .remove a:hover {
    background-position:left bottom;
}

#purchases .remove {
    text-align: center;
    width:128px;
	padding-left:10px;
}

#purchases tfoot td, #purchases tfoot th {
    border-color: #ececec;
    line-height: normal;
    color: #000000;
    font-weight: normal;
}

#purchases tfoot input[type="text"] {
    border: 1px solid #d4d4d4;
    text-align: center;
    color: #7e7e7e;
    background: #fcfcfc;
}

#purchases .btn {
    background: url(../images/tail-btn-cart.gif) left top repeat-x;
    color: #323232;
    padding-right: 17px;
    padding-left: 17px;
    cursor: pointer;
    border-radius: 2px;
    height: 31px;

    line-height: 29px;
    border: 0;
    margin: 0;
}

#purchases .btn:hover {
    background: #2e2e2e;
    color: #fff;
}

#purchases .coupon {
    text-align: right;
}
#purchases .coupon .button {
	font-size: 14px;
	height: 22px;
	line-height: 20px;
}

#purchases .message_error {
    display: block;
    padding: 5px 0;
    color: red;
    font-weight: bold;
}

#purchases tfoot .price.total {
    text-align: right;
    color: #000;
    font-size: 16px;
}

#purchases {
    margin-bottom: 30px;
}

#deliveries, .cart_form {
    padding:10px 0;
}
#deliveries{
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart_form {
	padding:22px 0;
}

#deliveries h2, .cart_form h2 {
    text-transform: none;
    font-size: 13px;
    line-height: normal;
	font-weight:bold;
    color: #000;
    padding: 0;
    margin-bottom: 3px;
	margin-top:0;
}

.payment_methods > li{
    padding: 0 !important;
}

#deliveries > li {
	display:inline-block;
	vertical-align:top;
	width:49%;
	padding-right:0;
}

.show_description__delivery{
    display: block;
}

#deliveries > li > label {
	position: relative;
	padding-left: 17px;
}
#cartform .css3-radios input[type="radio"] + span::before {
	position:absolute;
	left:0;
}
#deliveries li label {
    color: #000;
	font-size: 18px;
	margin-bottom:10px;
	line-height:20px;
}

#deliveries li {
    margin: 0 0 20px 0;

    list-style: none;
}
#deliveries li label {

}

#deliveries li .checkbox {
    float: left;
    margin: 1px 5px 0 0;
}

#deliveries li .checkbox input {
    margin: 0;
}

#deliveries li p {
    margin:0;
}

#deliveries li .description {
	font-size:13px;
	line-height:15px;
}

.cart_form {
    .line {
        margin-bottom: 16px;
    }
}

.required--cart-form {
    float: right;
}

.required--cart-form + .input, .required--cart-form + .textarea {
    width: calc(100% - 10px);
    float: left;
}

.required {
    color: #bb0000;
    position: relative;
}

.cart_form .captcha img {
    float: left;
}

.cart_form .captcha input[type="number"] {
    width: 318px;
    float: left;
    margin: 8px 0 0 5px;
}

.cart_form .captcha {
    margin-bottom: 20px;
}

.cart_form .button {
	width:230px;
	text-align:center;
	margin:50px auto 0 auto;
	display:block;
}
.button.check {
    font-size: 18px;
    padding: 0 22px;
    height: 49px;
    line-height: 49px;
    margin: 20px 0;
}

#cartform .keypress {
	width:30px;
	height:20px;
	line-height:20px;
	text-align:center;
	border:0;
	font-size:18px;
	vertical-align:top;
	position: relative;
	margin-top: -2px;
}
#cartform .count {
	text-align:center;
}
#cartform .count a {
	vertical-align:top;
	display:inline-block;
	width:20px;
	height:20px;
	background-color:#000;
	color:#fff;
	font-size:13px;
	text-align:center;
	line-height:20px;
}
#cartform .count a:hover {
	text-decoration:none;
}

.order_info b {
    font-weight: bold;
    display:inline-block;
	width:150px;
	vertical-align:top;
}

.label {
    display: block;
    color: #000;
    font-size: 18px;
}

.input {
    width: 100%;
    border: 1px solid transparent;
}

.input--t-h26 {
    padding: 3px 2px 4px 2px;
}

.input--s-default {
    resize: none;
    outline: none;
    border-color: #000000;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}

.textarea {
    width: 100%;
}

.textarea--s-default {
    resize: none;
    outline: none;
    border-color: #000000;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}


 .css3-radios label, .css3-radios input[type="radio"] + span, .css3-radios input[type="radio"] + span::before, .css3-checkboxes label, .css3-checkboxes input[type="checkbox"] + span, .css3-checkboxes input[type="checkbox"] + span::before {
    display:inline-block;
    vertical-align:middle;
}

 .css3-radios,
 .css3-checkboxes {
    position:relative;
}

 .css3-radios label *,
 .css3-checkboxes label * {
    cursor:pointer;
}

 .css3-radios input[type="radio"],
 .css3-checkboxes input[type="checkbox"] {
    opacity:0;
    position:absolute;
}

 .css3-radios input[type="radio"] + span,
 .css3-checkboxes input[type="checkbox"] + span {
/*     font:normal 11px/14px Arial,Sans-serif;
    color:#333; */
}

 .css3-radios label:hover span::before,
 .css3-checkboxes label:hover span::before {
/*     -moz-box-shadow:0 0 2px #ccc;
    -webkit-box-shadow:0 0 2px #ccc;
    box-shadow:0 0 2px #ccc; */
}

 .css3-radios label:hover span,
 .css3-checkboxes label:hover span {
    color:#000;
}


.css3-checkboxes input[type="checkbox"] + span::before {
    content:"";
    width:14px;
    height:14px;
    margin:-3px 9px 0 0;
    border:solid 1px #000;
    line-height:14px;
    text-align:center;
    background:#fff;
}
#cartform .css3-radios input[type="radio"] + span::before {
	width:11px;
	height:11px;
	border-radius:50%;
}
.css3-radios input[type="radio"] + span::before {
	content: "";
	width: 14px;
	height: 14px;
	margin: 5px 7px 0 0;
	border: solid 1px #000;
	line-height: 14px;
	text-align: center;
	background: #fff;
	float: left;
}

 .css3-radios input[type="radio"]:checked + span::before,
 .css3-checkboxes input[type="checkbox"]:checked + span::before {
    color:#666;
}
#cartform .css3-radios input[type="radio"] + span::before {
	background:transparent url(../images/radio.gif) no-repeat center center;
	width:11px;
	height:11px;
	border:0;
	content:"";
}
#cartform .css3-radios input[type="radio"]:checked + span::before {
	background-image:url(../images/radio_checked.gif);
}
#cartform .ems_div .chosen-container {
	margin:5px 0;
}
#deliveries .ems_div li {
	margin:0;
}
#deliveries li .ems_div label {
	margin-bottom:0;
}
#deliveries #delivery_ems {
	margin-left: 18px;
}
#cartform .chosen-container-single .chosen-single {
	line-height:20px;
}

 .css3-radios input[type="radio"]:disabled + span,
 .css3-checkboxes input[type="checkbox"]:disabled + span {
    cursor:default;
    -moz-opacity:.4;
    -webkit-opacity:.4;
    opacity:.4;
}

/*  .css3-checkboxes input[type="checkbox"] + span::before {
    -moz-border-radius:2px;
    -webkit-border-radius:2px;
    border-radius:2px;
} */

 .css3-radios input[type="radio"]:checked + span::before {
background-color:#000;
font-size: 16px;
line-height: 10px;
}

 .css3-checkboxes input[type="checkbox"]:checked + span::before {
    background-color:#000;
    font-size:12px;
}
#filter {
	padding:0 0 15px 0;
    position: relative;
}
/* #filter input {
    position: relative;
} */
#filter ul, #filter li{
	list-style:none;
	font-size:13px;
}
#filter li {
	padding:0 0 4px 0;
}
#filter ul {
	margin:0;
	padding:0;
}
#filter li label:hover {
	text-decoration:underline;
}
#filter #colors {
	width: 177px;
}
#filter #colors li {
	display: inline-block;
	width:32px;
	text-align: center;
}
#filter #colors li label input {
  display: block;
  opacity: 0;
  z-index: -1;
  width: 0;
  height: 0;
  position:absolute;
}
#filter #colors li label{
	width:17px;
	height:17px;
	cursor:pointer;
	border: 1px solid #000;
	margin:2px;
    display: block;
}
#filter #colors li.checked label{
	border-width:3px;
}
#filter #colors li.checked label#label_color_26 {
	border-color:#A2A2A2;
}
/*
#filter #sizes li label {
  width: 37px;
  height: 37px;
  margin: 0;
  border: 3px solid #fff;
  cursor: pointer;
  display: block;
}
#filter #sizes li label span {
  display: block;
  margin: 1px;
  background-color: #e8e8e8;
  text-align: center;
  height: 29px;
  width: 29px;
  font-size: 17px;
  line-height: 29px;
}
#filter #sizes li.checked label{
    border-color: #a2a2a2;
} */
#filter li:first-child h4 {
	margin-top:10px;
}
#filter #sizes li.f_row {
	display:inline-block;
	vertical-align:top;
	width:48%;
}
#filter h4 {
	display: block;
	font-weight:normal;
	text-align:center;
	margin:10px 0;
	background-color: #cfcfd0;
	height: 21px;
	line-height: 21px;
	padding: 0 9px;
}

#filter li.submit {
	margin:15px 0 20px 0;
	text-align:center;
}

#filter .price_slider {
    position: relative;
	padding:0 6px;
}
#min_price, #max_price {
	border: solid 1px #c2c2c2;
	padding: 7px 6px 6px;
	color: #333e4c;
	-webkit-box-shadow: inset 0 1px 0 #ededed;
	-moz-box-shadow: inset 0 1px 0 #ededed;
	box-shadow: inset 0 1px 0 #ededed;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	position: relative;
	width: 36px;
	margin:0 5px 0;
	text-align:center;
}
#filter .fltpricetbl td {
	vertical-align:middle;
}

/*
#filter ul#features_149 li{
	display: inline-block;
	width:32%;
	text-align: center;
}

#filter ul#features_149 li label{
	width: 57px;
	height: 57px;
    cursor: pointer;
    border-radius: 3px;
	border: 1px solid #eeeeee;
}
#filter ul#features_149 li.checked label{
    border: 1px solid #e41213;
}


#filter ul#features_149 li label.imgfc504fb141a11554573b1777c1a72515 {
	background:transparent url(../img/icon_woman.jpg) no-repeat;
}

#filter ul#features_149 li label.img9c61d8fee6eb55b45e5536b73898afb2 {
	background:transparent url(../img/icon_man.jpg) no-repeat;
}

#filter ul#features_149 li label.img6cdd5db762dd7664f9fc769ee39538b2 {
	background:transparent url(../img/icon_unisex.jpg) no-repeat;
} */

#slider-price {
    margin: 15px 8px 25px 4px;
    height: 4px !important;

}
.ui-slider {
    position: relative;
    text-align: left;
    margin: 15px auto 20px auto;
}
.ui-widget-content {
    background-color:#e7e7e7;
}
.ui-slider-horizontal {
    height: 5px;
    border-radius:3px;
}


.ui-widget-header {
    background-color:#e8e8e8;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-color:#a2a2a2;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -8px;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    cursor: default;
    top: -6px;
  background: #a2a2a2;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
    -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    font-weight: normal;
    color: #555;
}
.ui-state-default:focus,
.ui-state-default:active{
    border: none;
    padding: 0;
    outline: none;
}

.tooltip {
  position: absolute;
  z-index: 999;
  right: -9999px;
  background-color: #dedede;
  border: 1px solid #cdcdcd;
  width: 220px;
  border-radius: 4px;
    font-size: 14px;
    margin-top:-8px;
}
.tooltip:after, .tooltip:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.tooltip:after {
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}
.tooltip:before {
    border-color: rgba(205, 205, 205, 0);
    border-left-color: #cdcdcd;
    border-width: 11px;
    margin-top: -11px;
}
.tooltip p {
  margin: 0;
  padding: 0;
  color: #000;
  background-color: #fff;
  padding: 7px 7px;
/*   box-shadow: 0 0 4px 1px #919191; */
  border-radius: 4px;
}
.tooltip p span.findet {
  color: #000;
  width: 146px;
  border: none;
  display: inline-block;
}
.tooltip p span {
  border-bottom: 1px dotted;
  color: #e41213;
  cursor: pointer;
}
.tooltip#tooltip1 {
    left:auto;
	margin-top:-17px;
}

.colors_product, #item .brand {
	margin: 0;
	font-size: 17px;
	font-weight: normal;
    font-weight: bold;
}

.magaz {
	font-size:13px;
	line-height:16px;
}
.magaz div {
	padding:3px 0 18px 9px;
}
.magaz span {
	display:block;
	background-color:#cfcfd0;
	height:21px;
	line-height:21px;
	padding:0 9px;
}

.feedback_table {
	width:100%;
	font-size:13px;
	line-height:15px;
	margin-top:15px;
}

.feedback_table b {
	font-size:18px;
	line-height:24px;
	width:270px;
	display:block;
}
.feedback_table td {
	padding:0 0 40px 0;
}
.feedback_table tr td:first-child {
	width:270px;
}

#page p {
	margin:0 0 15px 0;
	font-size:13px;
	line-height:15px;
}

#page h1 {
	font-size:20px;
	font-weight:bold;
}
#page h2 {
	font-size:17px;
	font-weight:normal;
}

table.dealers {
	width:100%;
	font-size:13px;
	line-height:15px;

}
table.dealers td {
	padding: 30px 20px 40px 0px;
	width: 254px;
}
table.dealers td.image {
	width: 176px;
//	text-align:right;
}


.error_page{
	font-size: 13px;
	line-height: 15px;
	text-align: center;
	width: 410px;
	height: 135px;
	padding-top: 32px;
	border: 1px solid #000;
	margin: 130px auto;
}
.error_page a {
	text-decoration:underline;
}

table.sizes.big {
	width:100%;
}
table.sizes.big thead td {
	font-size:13px;
}
table.sizes.big thead td:first-child span {
	display:block;
	background-color:#000;
	height:23px;
	color:#fff;
	position:relative;
	font-size:13px;
	line-height:22px;
}
table.sizes.big thead td:first-child span.right:after {
	left: 100%;
	top: 11px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-left-color: #000000;
	border-width: 4px;
	margin-top: -4px;
	z-index: 2;
}
table.sizes.big thead td:first-child span.bottom:after {
	top: 100%;
	z-index: 2;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-top-color: #000000;
	border-width: 4px;
	margin-left: -4px;
}
table.sizes.big thead td:first-child span:first-child {
	border-bottom:1px solid #fff;
}
table.sizes {
	margin-bottom:40px;
}
table.sizes td {
	width:88px;
	height:46px;
	font-size:17px;
	border-bottom:1px solid #000;
	border-right:1px solid #000;
	border-top:1px solid #fff;
	border-left:1px solid #fff;
	text-align:center;
	color:#000;
	position:relative;
}
/* table.sizes td:after {
	content:" ";
	position:absolute;
	width:1px;
	height:100%;
	background-color:#000;
} */
table.sizes thead td {
	background-color:#cfcfd0;
	border-color:#fff;
}
table.sizes thead td:first-child {
	background-color:#fff;
}
table.sizes tbody td:first-child {
	font-size:13px;
	background-color:#000;
	border-color:#fff;
	width:138px;
	color:#fff;
}

table.sizes.big tbody td:first-child {
	width:100px;
	color:#000;
	font-size:13px;
	background-color:#cfcfd0;
}
#post img {
    max-width: 100%;
    margin: 33px auto;
}

#post {
	font-size:13px;
	line-height:15px;
	width:570px;
	margin:0 auto;
	position: relative;
    /*overflow: hidden;*/
}
#post .postlink {
    position: absolute;
    width: 29px;
    height: 100%;
    left: -50px;
    top: 0;
}
#post .postlink .wr {
    /*height: 100%;*/
    position: relative;
}
#post .postlink.next {
    left: auto;
    right: -50px;
}
#post .prev_page_link, #post .next_page_link {
	display: block;
	width: 29px;
	line-height: 29px;
	height: 29px;
	background-color: #000;
	color: #fff;
	font-size: 13px;
	text-align: center;
	text-decoration: none;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    opacity: 0;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    -ms-transition: all 100ms ease-in;
    -o-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
}
#post .prev_page_link:hover, #post .next_page_link:hover{
	text-decoration: underline;
}
/* #post .next_page_link {
    right: -50px;
}
#post .prev_page_link {
    left: -50px;
} */
.posthead h1 {
	font-size:18px;
	font-weight:bold;
	line-height:22px;
	margin:36px auto 0 auto;
	padding:0;
	width:570px;
}
.postdate {
	font-size:10px;
	padding:5px 0 10px 0;
	width:570px;
	margin:0 auto;

}
.postdate #tags {
	margin-left: 10px;
}
.postdate #tags a{
	color:#8D8D8E;
	text-decoration:underline;
	margin-right: 10px;
}
/* #post a {
	text-decoration:underline;
} */
.postlikes{
    padding: 30px 0 0 0;
	width:570px;
	margin:0 auto;
	font-size: 13px;
	line-height: 15px;
}
.postlikes .socials {
  padding-top: 15px;
}

.postlikes .socials a {
  margin-right: 20px !important;
  /*background-image: url(../img/02.png) !important;*/
}

.jcarousel-wrapper {
  position: relative;
}
.jcarousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.jcarousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.jcarousel li {
  width: 165px;
  float: left;
}
.jcarousel-control {
	padding:20px 0;
	text-align:center;
}
.jcarousel-control a {
	display:inline-block;
	margin:0 2px;
	width:30px;
	height:30px;
	background-color:#000;
	color:#fff;
	font-size:18px;
	text-align:center;
	line-height:30px;
}
.jcarousel-control a:hover {
	color:#fff;
}
.jcarousel-control a.inactive {
    opacity: 0;
    cursor: default;
    display: none;
}
.checked_payment {
	text-align:center;
}
.checked_payment h3 {
	margin:0;
	padding:0;
	font-weight:normal;
	color: #000000;
	font-size: 17px;
}
.checked_payment .checkout_button {
	border:0;
	background-color:transparent;
	text-decoration:underline;
	margin-top:5px;
}
.checked_payment form .checkout_button.end {
    font-size: 23px;
    font-weight: bold;
}
.p-l-xs {
    padding-left: 8px;
}
.p-l-0 {
    padding-left: 0;
}
.header .p-l-0 {
	/*margin-left: -12px;
	margin-right: 12px;*/
    margin-left: -61px;
    margin-right: -41px;

}

.attention {
    padding: 5px 10px;
    background-color: #CFCFD0;
    margin-bottom: 30px;
}


.hamburger {
    display: none;
    /*display: block;*/
    width: 34px;
    height: 25px;
    background: transparent;
    border:0;
    padding: 0;
    text-align: center;
    font-size: 0;
    cursor: pointer;
    position: absolute;
    right: 44px;
    top: 34px;
}
.hamburger span {
    display: inline-block;
    vertical-align: top;
    height: 4px;
    width: 34px;
    background-color: #fff;
    position: relative;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: none 0.5s ease;
    transition: none 0.5s ease;
    -webkit-transition-property: top, left, opacity, -webkit-transform;
    transition-property: top, left, opacity, -webkit-transform;
    transition-property: transform, top, left, opacity;
    transition-property: transform, top, left, opacity, -webkit-transform;
}

.hamburger i {
    color: #fff;
    display: block;
    font-style: normal;
    font-size: 10px;
    text-transform: uppercase;
    width: 48px;
    margin-left: -6px;
    margin-top: 5px;
}

.hamburger span + span {
    margin-top: 7px;
}

.mm-opened .hamburger span.top-bar {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
}
.mm-opened .hamburger span.middle-bar {
    opacity: 0
}
.mm-opened .hamburger span.bottom-bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -13px;
}




.mm-menu,.mm-panels,.mm-panels>.mm-panel{margin:0;left:0;right:0;top:0;z-index:0;box-sizing:border-box}.mm-btn,.mm-menu{box-sizing:border-box}.mm-listview a,.mm-listview a:hover,.mm-navbar a,.mm-navbar a:hover{text-decoration:none}.mm-listview .mm-next:before,.mm-listview>li:not(.mm-divider):after,.mm-next:after,.mm-prev:before{content:'';bottom:0}.mm-hidden{display:none!important}.mm-menu,.mm-panels>.mm-panel:not(.mm-hidden){display:block}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu{padding:0;position:absolute;bottom:0}.mm-panels,.mm-panels>.mm-panel{background:inherit;border-color:inherit;position:absolute;bottom:0}.mm-btn,.mm-panel.mm-highest{z-index:1}.mm-panels{overflow:hidden}.mm-panel{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;-webkit-transform:translate(100%,0);-ms-transform:translate(100%,0);transform:translate(100%,0);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-panel.mm-opened{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-panel.mm-subopened{-webkit-transform:translate(-30%,0);-ms-transform:translate(-30%,0);transform:translate(-30%,0);-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-panels>.mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;padding:0 20px}.mm-listview .mm-divider,.mm-listview>li>a,.mm-listview>li>span,.mm-navbar .mm-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-panels>.mm-panel.mm-hasnavbar{padding-top:40px}.mm-panels>.mm-panel:after,.mm-panels>.mm-panel:before{content:'';display:block;height:20px}.mm-vertical .mm-panel{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}.mm-listview .mm-vertical .mm-panel,.mm-vertical .mm-listview .mm-panel{display:none;padding:10px 0 10px 10px}.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after,.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after{border-color:transparent}.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel{display:block}.mm-listview>li.mm-vertical>.mm-next,.mm-vertical .mm-listview>li>.mm-next{height:40px;bottom:auto}.mm-listview>li.mm-vertical>.mm-next:after,.mm-vertical .mm-listview>li>.mm-next:after{top:16px;bottom:auto}.mm-listview>li.mm-vertical.mm-opened>.mm-next:after,.mm-vertical .mm-listview>li.mm-opened>.mm-next:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}.mm-btn{width:40px;height:40px;position:absolute;top:0}.mm-clear:after,.mm-clear:before,.mm-close:after,.mm-close:before{content:'';border:2px solid transparent;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.mm-clear:before,.mm-close:before{border-right:none;border-bottom:none;right:18px}.mm-clear:after,.mm-close:after{border-left:none;border-top:none;right:25px}.mm-next:after,.mm-prev:before{border-top:2px solid transparent;border-left:2px solid transparent;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0}.mm-prev:before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-next:after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}.mm-navbar{border-bottom:1px solid;border-color:inherit;text-align:center;line-height:20px;height:40px;padding:0 40px;margin:0;position:absolute;top:0;left:0;right:0}.mm-navbar>*{display:block;padding:10px 0}.mm-navbar .mm-btn:first-child{left:0}.mm-navbar .mm-btn:last-child{text-align:right;right:0}.mm-panel .mm-navbar{display:none}.mm-panel.mm-hasnavbar .mm-navbar{display:block}.mm-listview,.mm-listview>li{list-style:none;display:block;padding:0;margin:0}.mm-listview{font:inherit;font-size:14px;line-height:20px}.mm-listview>li{position:relative}.mm-listview>li,.mm-listview>li .mm-next,.mm-listview>li .mm-next:before,.mm-listview>li:after{border-color:inherit}.mm-listview>li>a,.mm-listview>li>span{color:inherit;display:block;padding:10px 10px 10px 20px;margin:0}.mm-listview>li:not(.mm-divider):after{border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;right:0;left:20px}.mm-listview .mm-next{background:rgba(3,2,1,0);width:50px;padding:0;position:absolute;right:0;top:0;bottom:0;z-index:2}.mm-listview .mm-next:before{border-left-width:1px;border-left-style:solid;display:block;position:absolute;top:0;left:0}.mm-listview .mm-next+a,.mm-listview .mm-next+span{margin-right:50px}.mm-listview .mm-next.mm-fullsubopen{width:100%}.mm-listview .mm-next.mm-fullsubopen:before{border-left:none}.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span{padding-right:50px;margin-right:0}.mm-panels>.mm-panel>.mm-listview{margin:20px -20px}.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-20px}.mm-listview .mm-inset{list-style:disc inside;padding:0 10px 15px 40px;margin:0}.mm-listview .mm-inset>li{padding:5px 0}.mm-listview .mm-divider{font-size:10px;text-transform:uppercase;text-indent:20px;line-height:25px}.mm-listview .mm-spacer{padding-top:40px}.mm-listview .mm-spacer>.mm-next{top:40px}.mm-listview .mm-spacer.mm-divider{padding-top:25px}.mm-menu{background:#000;border:0;color:#fff}.mm-menu .mm-navbar a,.mm-menu .mm-navbar>*{color:#fff}.mm-menu .mm-btn:after,.mm-menu .mm-btn:before{border-color:rgba(0,0,0,.3)}.mm-menu .mm-listview{border-color:rgba(0,0,0,.1)}.mm-menu .mm-listview>li .mm-next:after{border-color:rgba(0,0,0,.3)}.mm-menu .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(255,255,255,.5);tap-highlight-color:rgba(255,255,255,.5)}.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span{background:rgba(255,255,255,.5)}.mm-menu .mm-divider,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next{background:rgba(0,0,0,.05)}
.mm-page{box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}html.mm-opened{overflow-x:hidden;position:relative}html.mm-blocking,html.mm-blocking body{overflow:hidden}html.mm-background .mm-page{background:inherit}#mm-blocker{background:rgba(3,2,1,0);display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}html.mm-blocking #mm-blocker{display:block}.mm-menu.mm-offcanvas{z-index:0;display:none;position:fixed;width:80%;min-width:140px;max-width:440px}.mm-menu.mm-offcanvas.mm-current{display:block}.mm-menu.mm-offcanvas.mm-no-csstransforms.mm-current.mm-opened{z-index:10}html.mm-opening .mm-slideout{-webkit-transform:translate(80%,0);-ms-transform:translate(80%,0);transform:translate(80%,0);-webkit-transform:translate3d(80%,0,0);transform:translate3d(80%,0,0)}@media all and (max-width:175px){html.mm-opening .mm-slideout{-webkit-transform:translate(140px,0);-ms-transform:translate(140px,0);transform:translate(140px,0);-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:550px){html.mm-opening .mm-slideout{-webkit-transform:translate(440px,0);-ms-transform:translate(440px,0);transform:translate(440px,0);-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}
html.mm-pagedim #mm-blocker,html.mm-pagedim-black #mm-blocker,html.mm-pagedim-white #mm-blocker{opacity:0}html.mm-pagedim-black.mm-opening #mm-blocker,html.mm-pagedim-white.mm-opening #mm-blocker,html.mm-pagedim.mm-opening #mm-blocker{opacity:.3;-webkit-transition:opacity .4s ease .4s;transition:opacity .4s ease .4s}html.mm-pagedim #mm-blocker{background:inherit}html.mm-pagedim-white #mm-blocker{background:#fff}html.mm-pagedim-black #mm-blocker{background:#000}
.mm-menu.mm-offcanvas.mm-right{left:auto}html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-80%,0);-ms-transform:translate(-80%,0);transform:translate(-80%,0);-webkit-transform:translate3d(-80%,0,0);transform:translate3d(-80%,0,0)}@media all and (max-width:175px){html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-140px,0);-ms-transform:translate(-140px,0);transform:translate(-140px,0);-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:550px){html.mm-right.mm-opening .mm-slideout{-webkit-transform:translate(-440px,0);-ms-transform:translate(-440px,0);transform:translate(-440px,0);-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}html.mm-front .mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}html.mm-front #mm-blocker{z-index:1}html.mm-front .mm-menu.mm-offcanvas{z-index:2}.mm-menu.mm-offcanvas.mm-front,.mm-menu.mm-offcanvas.mm-next{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;-webkit-transform:translate(-100%,0);-ms-transform:translate(-100%,0);transform:translate(-100%,0);-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu.mm-offcanvas.mm-front.mm-right,.mm-menu.mm-offcanvas.mm-next.mm-right{-webkit-transform:translate(100%,0);-ms-transform:translate(100%,0);transform:translate(100%,0);-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu.mm-offcanvas.mm-top{-webkit-transform:translate(0,-100%);-ms-transform:translate(0,-100%);transform:translate(0,-100%);-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.mm-menu.mm-offcanvas.mm-bottom{-webkit-transform:translate(0,100%);-ms-transform:translate(0,100%);transform:translate(0,100%);-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);top:auto}.mm-menu.mm-offcanvas.mm-bottom,.mm-menu.mm-offcanvas.mm-top{width:100%;min-width:100%;max-width:100%;height:80%;min-height:140px;max-height:880px}html.mm-opening .mm-menu.mm-offcanvas.mm-front,html.mm-opening .mm-menu.mm-offcanvas.mm-next{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}


.mm-menu#catalog li a {
    font-size: 13px;
    border-bottom:1px solid #3e3e3e;
    background-color: transparent;
}
.mm-menu#catalog li.active a {
    margin-left: 0;
    padding: 10px 10px 10px 20px;
    text-decoration: underline;
}
.mm-menu .mm-listview > li .mm-next::after {
    border-color: #fff;
}
.mm-listview > li.mm-vertical > .mm-next, .mm-vertical .mm-listview > li > .mm-next {
    height: 38px;
    bottom: auto;
}
.order_history_button{
    position: absolute;
    top: -58px;
    right: 0;
    z-index: 50;
    font-size: 17px;
    color: #fff;
    background-color: #000;
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
    width: 165px;
}
.order_history_form{
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    padding: 15px;
    background: #fff;
    border: 3px solid #000;
    z-index: 50;
    display: none;
    text-align: center;
    color: #000;
}
.order_history_form .order_id_input{
    width: 100%;
    padding: 3px 10px;
}
.order_history_form .order_id_button{
    text-decoration: none;
    border: 0;
    display: block;
    padding: 0 15px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 32px;
    line-height: 32px;
    background-color: #CC3;
    border-radius: 3px;
    -webkit-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
    margin: 0 auto;
}
.order_history_form .order_id_button:hover {
    background-color: #b0b025;
    color: #fff;
}
.order_history_block{
    width: 350px;
}
.order_history_block .status{
    display: inline-block;
    width: 150px;
    font-weight: bold;
}
.order_history_block .date{
    display: inline-block;
    text-align: right;
}
.order_history_title{
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;

    color: #000;
    background-color: #EEEEEC;
    font-weight: normal;
    line-height: 38px;
}
#select_country {
    width: 70%;
}
#country_cost {
    width: 25%;
    line-height: 14px;
    padding: 0 5px;
    text-align: center;
	display: none;
}
#preorder input {
    width: 100%;
    display: block;
    margin: 0 auto;
}
.css3-radios input[type="radio"]:checked + span.before_grey::before {
    background-color: grey;
}
.css3-radios input[type="radio"] + span.before_grey::before {
    border: solid 1px grey;
}
span.before_grey {
    color: grey;
}
#preorder_product>label,
#preorder>preorder_title {
    line-height: 26px;
}
#item .item_info .added#size_not_stock {
    text-align: left;
    padding: 0 10px;
    width: auto;
    margin-top: -70px;
}
#item .item_info .fn-preorder-show.button {
    margin: 80px 0 40px 0;
}
.sticker_text{
    position: absolute;
    top: 50%;;
    text-align: center;
    width: 100%;;
    height: 35px;
    line-height: 33px;
    color: #fff;
    left: 0;
}
.sticker_text_red{
    background: red;
}
.sticker_text_black{
    background: black;
}
.is_partner a {
	word-break: break-word;
}

.certificate-info {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 45em;
}

.certificate-info p {
    font-size: inherit !important;
    line-height: inherit !important;
    margin: 0 0 1em !important;
}

.certificate-info ol {
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    counter-reset: li;
}

.certificate-info li {
    position: relative;
    counter-increment: li;
    padding-left: 3em;
    margin: 1.5em 0;
}

.certificate-info li:before {
    content: counter(li);
    position: absolute;
    left: 0;
    top: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 2.2em;
    height: 2.2em;
    margin-top: -1.1em;
}

.certificate-info__lead {
    text-align: center;
}

.certificate-info__lead strong {
    font-weight: bold;
}

.certificate-info__image,
.certificate-info__code-wrapper,
.certificate-info__btn-row  {
    text-align: center;
    margin: 2em 0;
}

.certificate-info__image {
    position: relative;
    font-size: 10px;
    max-width: 40em;
    margin-left: auto;
    margin-right: auto;
}

.certificate-info__image img {
    width: 100%;
    height: auto;
}

.certificate-info__image-price {
    position: absolute;
    right: 0.2em;
    bottom: 0.75em;
    font-size: 4.2em;
    font-weight: 900;
    color: #000;
    line-height: 1;
    white-space: nowrap;
}

.certificate-info__code {
    display: inline-block;
    border: 1px solid;
    padding: 1em 2em;
    letter-spacing: .15em;
}

.certificate-info__btn {

}

@media print {
    #header,
    #footer,
    .print-hidden,
    .admin_bookmark {
        display: none !important;
    }

    a {
        text-decoration: none !important;
        border: none !important;
    }
}
@media (max-width: 425px) {
    #deliveries li label{
        font-size: 16px;
    }
}
@media (max-width: 375px) {
    #deliveries li label{
        font-size: 15px;
    }
}
@media (max-width: 325px) {
    #deliveries li label{
        font-size: 13px;
    }
}