@charset "UTF-8";

/*
Theme Name: Pokeway
Author: VsegdaEda
Author URI: https://vsegda-eda.com.ua/
Version: 0.2
*/

/* Categories 01 to 03 are the basics. */

/* Variables */
:root {

	/* Font Family */
	--global--font-primary: var(--font-headings, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
	--global--font-secondary: var(--font-base, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);

	/* Font Size */
	--global--font-size-base: 1.25rem;
	--global--font-size-xs: 1rem;
	--global--font-size-sm: 1.125rem;
	--global--font-size-md: 1.25rem;
	--global--font-size-lg: 1.5rem;
	--global--font-size-xl: 2.25rem;
	--global--font-size-xxl: 4rem;
	--global--font-size-xxxl: 5rem;
	--global--font-size-page-title: var(--global--font-size-xxl);
	--global--letter-spacing: normal;

	/* Line Height */
	--global--line-height-body: 1.7;
	--global--line-height-heading: 1.3;
	--global--line-height-page-title: 1.1;

	/* Headings */
	--heading--font-family: var(--global--font-primary);
	--heading--font-size-h6: var(--global--font-size-xs);
	--heading--font-size-h5: var(--global--font-size-sm);
	--heading--font-size-h4: var(--global--font-size-lg);
	--heading--font-size-h3: calc(1.25 * var(--global--font-size-lg));
	--heading--font-size-h2: var(--global--font-size-xl);
	--heading--font-size-h1: var(--global--font-size-page-title);
	--heading--letter-spacing-h6: 0.05em;
	--heading--letter-spacing-h5: 0.05em;
	--heading--letter-spacing-h4: var(--global--letter-spacing);
	--heading--letter-spacing-h3: var(--global--letter-spacing);
	--heading--letter-spacing-h2: var(--global--letter-spacing);
	--heading--letter-spacing-h1: var(--global--letter-spacing);
	--heading--line-height-h6: var(--global--line-height-heading);
	--heading--line-height-h5: var(--global--line-height-heading);
	--heading--line-height-h4: var(--global--line-height-heading);
	--heading--line-height-h3: var(--global--line-height-heading);
	--heading--line-height-h2: var(--global--line-height-heading);
	--heading--line-height-h1: var(--global--line-height-page-title);
	--heading--font-weight: normal;
	--heading--font-weight-page-title: 300;
	--heading--font-weight-strong: 600;

	/* Block: Latest posts */
	--latest-posts--title-font-family: var(--heading--font-family);
	--latest-posts--title-font-size: var(--heading--font-size-h3);
	--latest-posts--description-font-family: var(--global--font-secondary);
	--latest-posts--description-font-size: var(--global--font-size-sm);
	--list--font-family: var(--global--font-secondary);
	--definition-term--font-family: var(--global--font-primary);

	/* Colors */
	--global--color-black: #000;
	--global--color-dark-gray: #28303d;
	--global--color-gray: #39414d;
	--global--color-light-gray: #f0f0f0;
	--global--color-green: #d1e4dd;
	--global--color-blue: #d1dfe4;
	--global--color-purple: #d1d1e4;
	--global--color-red: #e4d1d1;
	--global--color-orange: #e4dad1;
	--global--color-yellow: #eeeadd;
	--global--color-white: #fff;
	--global--color-white-50: rgba(255, 255, 255, 0.5);
	--global--color-white-90: rgba(255, 255, 255, 0.9);
	--global--color-primary: var(--global--color-dark-gray); /* Body text color, site title, footer text color. */
	--global--color-secondary: var(--global--color-gray); /* Headings */
	--global--color-primary-hover: var(--global--color-primary);
	--global--color-background: var(--global--color-green); /* Mint, default body background */
	--global--color-border: var(--global--color-primary); /* Used for borders (separators) */

	/* Spacing */
	--global--spacing-unit: 20px;
	--global--spacing-measure: unset;
	--global--spacing-horizontal: 25px;
	--global--spacing-vertical: 30px;

	/* Elevation */
	--global--elevation: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);

	/* Forms */
	--form--font-family: var(--global--font-secondary);
	--form--font-size: var(--global--font-size-sm);
	--form--line-height: var(--global--line-height-body);
	--form--color-text: var(--global--color-dark-gray);
	--form--color-ranged: var(--global--color-secondary);
	--form--label-weight: 500;
	--form--border-color: var(--global--color-secondary);
	--form--border-width: 3px;
	--form--border-radius: 0;
	--form--spacing-unit: calc(0.5 * var(--global--spacing-unit));

	/* Cover block */
	--cover--height: calc(15 * var(--global--spacing-vertical));
	--cover--color-foreground: var(--global--color-white);
	--cover--color-background: var(--global--color-black);

	/* Buttons */
	--button--color-text: var(--global--color-background);
	--button--color-text-hover: var(--global--color-secondary);
	--button--color-text-active: var(--global--color-secondary);
	--button--color-background: var(--global--color-secondary);
	--button--color-background-active: var(--global--color-background);
	--button--font-family: var(--global--font-primary);
	--button--font-size: var(--global--font-size-base);
	--button--font-weight: 500;
	--button--line-height: 1.5;
	--button--border-width: 3px;
	--button--border-radius: 0;
	--button--padding-vertical: 15px;
	--button--padding-horizontal: calc(2 * var(--button--padding-vertical));

	/* entry */
	--entry-header--color: var(--global--color-primary);
	--entry-header--color-link: currentColor;
	--entry-header--color-hover: var(--global--color-primary-hover);
	--entry-header--color-focus: var(--global--color-secondary);
	--entry-header--font-size: var(--heading--font-size-h2);
	--entry-content--font-family: var(--global--font-secondary);
	--entry-author-bio--font-family: var(--heading--font-family);
	--entry-author-bio--font-size: var(--heading--font-size-h4);

	/* Header */
	--branding--color-text: var(--global--color-primary);
	--branding--color-link: var(--global--color-primary);
	--branding--color-link-hover: var(--global--color-secondary);
	--branding--title--font-family: var(--global--font-primary);
	--branding--title--font-size: var(--global--font-size-lg);
	--branding--title--font-size-mobile: var(--heading--font-size-h4);
	--branding--title--font-weight: normal;
	--branding--title--text-transform: uppercase;
	--branding--description--font-family: var(--global--font-secondary);
	--branding--description--font-size: var(--global--font-size-sm);
	--branding--description--font-family: var(--global--font-secondary);
	--branding--logo--max-width: 300px;
	--branding--logo--max-height: 100px;
	--branding--logo--max-width-mobile: 96px;
	--branding--logo--max-height-mobile: 96px;

	/* Main navigation */
	--primary-nav--font-family: var(--global--font-secondary);
	--primary-nav--font-family-mobile: var(--global--font-primary);
	--primary-nav--font-size: var(--global--font-size-md);
	--primary-nav--font-size-sub-menu: var(--global--font-size-xs);
	--primary-nav--font-size-mobile: var(--global--font-size-sm);
	--primary-nav--font-size-sub-menu-mobile: var(--global--font-size-sm);
	--primary-nav--font-size-button: var(--global--font-size-xs);
	--primary-nav--font-style: normal;
	--primary-nav--font-style-sub-menu-mobile: normal;
	--primary-nav--font-weight: normal;
	--primary-nav--font-weight-button: 500;
	--primary-nav--color-link: var(--global--color-primary);
	--primary-nav--color-link-hover: var(--global--color-primary-hover);
	--primary-nav--color-text: var(--global--color-primary);
	--primary-nav--padding: calc(0.66 * var(--global--spacing-unit));
	--primary-nav--border-color: var(--global--color-primary);

	/* Pagination */
	--pagination--color-text: var(--global--color-primary);
	--pagination--color-link-hover: var(--global--color-primary-hover);
	--pagination--font-family: var(--global--font-secondary);
	--pagination--font-size: var(--global--font-size-lg);
	--pagination--font-weight: normal;
	--pagination--font-weight-strong: 600;

	/* Footer */
	--footer--color-text: var(--global--color-primary);
	--footer--color-link: var(--global--color-primary);
	--footer--color-link-hover: var(--global--color-primary-hover);
	--footer--font-family: var(--global--font-primary);
	--footer--font-size: var(--global--font-size-sm);

	/* Block: Pull quote */
	--pullquote--font-family: var(--global--font-primary);
	--pullquote--font-size: var(--heading--font-size-h3);
	--pullquote--font-style: normal;
	--pullquote--letter-spacing: var(--heading--letter-spacing-h4);
	--pullquote--line-height: var(--global--line-height-heading);
	--pullquote--border-width: 3px;
	--pullquote--border-color: var(--global--color-primary);
	--pullquote--color-foreground: var(--global--color-primary);
	--pullquote--color-background: var(--global--color-background);
	--quote--font-family: var(--global--font-secondary);
	--quote--font-size: var(--global--font-size-md);
	--quote--font-size-large: var(--global--font-size-xl);
	--quote--font-style: normal;
	--quote--font-weight: 700;
	--quote--font-weight-strong: bolder;
	--quote--font-style-large: normal;
	--quote--font-style-cite: normal;
	--quote--line-height: var(--global--line-height-body);
	--quote--line-height-large: 1.35;
	--separator--border-color: var(--global--color-border);
	--separator--height: 1px;

	/* Block: Table */
	--table--stripes-border-color: var(--global--color-light-gray);
	--table--stripes-background-color: var(--global--color-light-gray);
	--table--has-background-text-color: var(--global--color-dark-gray);

	/* Widgets */
	--widget--line-height-list: 1.9;
	--widget--line-height-title: 1.4;
	--widget--font-weight-title: 700;
	--widget--spacing-menu: calc(0.66 * var(--global--spacing-unit));

	/* Admin-bar height */
	--global--admin-bar--height: 0px;
}

.admin-bar {
	--global--admin-bar--height: 32px;
}
@media only screen and (max-width: 782px) {

	.admin-bar {
		--global--admin-bar--height: 46px;
	}
}

@media only screen and (min-width: 652px) {

	:root {
		--global--font-size-xl: 2.5rem;
		--global--font-size-xxl: 6rem;
		--global--font-size-xxxl: 9rem;
		--heading--font-size-h3: 2rem;
		--heading--font-size-h2: 3rem;
	}
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/manrope-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/fonts/manrope.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/manrope-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/manrope.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/manrope-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/manrope.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/manrope-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/fonts/manrope.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/manrope-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/manrope.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/fonts/manrope-ext.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/fonts/manrope.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
body{
	background:#F2F2F2;
}
header{
	
}
header .container{
	margin:0 auto;
	padding:0;
}
header .phone_h_btn{
	margin-left:15px;
}
header .user_h_btn{
	margin-right:15px;
}
.home_slider .container{
	margin:0 auto;
	padding:0;
}
.home_slider .swiper-slide img{
	width:100%;
}
header .d-flex{
	padding: 7px 3px;
    justify-content: space-between;
	background: rgba(242, 242, 242, 1);
	position:relative;
}
.phone_h_btn{
	margin-top:5px;
}
nav{
	background:#fff;
	position: relative;
}
nav .container{
	position: relative;
}
nav .swiper1 a{
	font-family: 'Roboto Condensed';
	font-size: 18px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(51, 51, 51, 1);
	text-decoration:none;
	margin: 16px 0 11px 2px;
    display: inline-block;
	border-bottom:3px solid transparent;
	white-space: nowrap;
}
nav .swiper1 a.active,nav .swiper1 a:hover{
	font-family: 'Roboto Condensed';
	font-size: 18px;
	font-weight: 500;
	line-height: 36px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(155, 81, 224, 1);
	border-bottom:3px solid rgba(155, 81, 224, 1);
}
.small_cart_price{
	position:absolute;
	top:0px;
	right:0;
	color: var(--gray-6, #F2F2F2);
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	padding: 18px 15px 23px 18px;
	border-radius: 3px;
	background: var(--purple-2, #BB6BD9);
	z-index: 99;
}
.small_cart{
	position:absolute;
	top:3px;
	right:0;
	width:60px;
	height:60px;
	border-radius:50%;
	background: rgba(187, 107, 217, 1);
	color:#000;
	display: flex;
    align-items: end;
    justify-content: center;
	z-index:98;
}
.small_cart_open .small_cart{
	z-index:99;
}
.smallCartBtn{
	position:absolute;
	top: 7px;
    left: -172px;
    width: 170px;
	display:none;
}
.btnshow .smallCartBtn{
	display:block;
}
.smallCartBtn a{
	border-radius: 25px;
	background: #BB6BD9;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06);
	color: #FFF;
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 19px;
	padding:12px;
	display:inline-block;
	text-decoration:none;
	margin: 0;
}
.smallCartBtn a:hover{
	font-size: 14px;
	line-height: 19px;
	color: #FFF;
	opacity:0.8;
	font-weight: 700;
}
.small_cart_container{
	width:60px;
	height:60px;
	border-radius:50%;
	background: rgba(187, 107, 217, 1);
	color:#000;
	display: flex;
    align-items: center;
    justify-content: center;
	cursor:pointer;
}
.small_cart_container span{
	display:block;
	font-family: 'Roboto Condensed';
	box-shadow: 0 0 1px rgb(0 0 0 / 43%);
	font-weight: 400;
	text-align: center;
	line-height:20px;
	font-size: 12px;
	width:20px;
	height:20px;
	border-radius:50%;
	background:#fff;
	position: absolute;
    top: 0;
    right: 0;
}
.small_cart_list{
	display:none;
	position: absolute;
    top: 74px;
    right: 10px;
    z-index: 99;
	width:290px;
	border-radius: 7px;
	padding: 22px 18px;
	background:#fff;
}
.swiper1{
	overflow:hidden;
}
.small_cart_list:before{
	background-image: url(/image/mr_top_w.png);
    position: absolute;
    top: -9px;
    width: 19px;
    height: 9px;
    display: block;
    content: ' ';
    right: 10px;
}
.small_cart_title{
	color: var(--purple-1, #9B51E0);
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	position:relative;
}
.small_cart_title span{
	position: absolute;
    display: block;
    padding: 10px;
    right: -3px;
    top: -10px;
	cursor:pointer;
}
.small_cart_item_t{
	color: #333;
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 5px 0;
}
.small_cart_item_a{
	display:flex;
    width: 100%;
    justify-content: space-between;
}
.small_cart_item_c{
	display:flex;
}
.small_cart_item_c .minus,.small_cart_item_c .plus{
	display:flex;
	width:20px;
	height:20px;
	justify-content:center;
	align-items:center;
	border-radius:4px;
	cursor:pointer;
	background: rgba(224, 224, 224, 1);
	position: relative;
}
.customoption{
	font-size: 11px;
    line-height: 11px;
    color: #787575;
}
.customoption span{
	display: block;
}
.small_cart_item_c .current{
	font-family: 'Roboto Condensed';
	font-size: 15px;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: 0em;
	text-align: center;
	color: rgba(187, 107, 217, 1);
	display: inline-block;
    width: 26px;
}
.ua_val_price{
	font-family: 'Roboto Condensed';
	font-size: 29px;
	font-weight: 400;
	line-height: 35px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(187, 107, 217, 1);
}
.small_cart_item_p{
	padding: 0px 8px 0px 0px;
    display: flex;
    align-items: center;
    margin-top: -8px;
}
.cart_del_item{
	cursor:pointer;
}
.ua_val{
	margin: 0px 10px 0 2px;
	display:inline-block;
	-webkit-mask-image: url(/image/ua_val.svg);
    mask-image: url(/image/ua_val.svg);
	background:#BB6BD9;
	width:10px;
	height:14px;
}
.small_cart_item{
	border-bottom: 1px solid rgba(228, 228, 228, 1);
	padding: 17px 0 12px 0;
}
.small_cart_items{
	padding-top: 12px;
	background:#fff;
	max-height: 230px;
}

.small_cart_title span:hover{
	opacity:0.7;
}
.small_cart_open .small_cart_list{
	display:block;
}
.small_cart_open .bg_popup{
	opacity:1;
}
.small_cart_a_allp{
	display: flex;
    width: 100%;
    justify-content: space-between;
	align-items: center;
}
.small_cart_a_allpt{
	color: #333;
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.small_cart_a_allpp{
	color: var(--purple-2, #BB6BD9);
	font-family: 'Roboto Condensed';
	font-size: 30.996px;
	font-style: normal;
	font-weight: 400;
	line-height: 37.195px;
}
.small_cart_a_btn a{
	color: #FFF;
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	text-transform: uppercase;
	border-radius: 5px;
	background: var(--mykoliav-styles-button-gradient, linear-gradient(180deg, #9142C6 0%, rgba(145, 66, 198, 1) 100%));
	display:block;
	cursor:pointer;
	text-align: center;
    text-decoration: none;
    padding: 7px 10px;
}
.small_cart_a_btn a:hover{
	opacity: 0.7;
}
.small_cart_action{
	padding: 18px 0 0 0;
}
.small_cart_a_btn{
	padding-top:10px;
}
.no_price .small_cart_price, .empty_cart .small_cart{
	display:none;
}
.empty_cart .small_cart.not_empty{
	display:block;
}
.home_slider{
	margin-top:12px;
}
.home_slider .swiper-pagination-bullet{
	width:7px;
	height:7px;
	background: rgba(217, 217, 217, 1);
	opacity: 1;
}
.home_slider .swiper-pagination-bullet-active{
	background: rgba(235, 87, 87, 1);
}
.odessa_city .home_slider .swiper-pagination-bullet-active{
	background: rgba(4, 157, 217, 1);
}
.home_slider .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
	text-align:left;
	padding: 0 0 6px 11px;
}
.product_slider .container{
	margin:0 auto;
	padding:0;
	overflow:hidden;
}
.product_slider_header{
	font-family: 'Roboto Condensed';
	font-size: 21px;
	font-weight: 500;
	line-height: 21px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(242, 242, 242, 1);
	background: rgba(155, 81, 224, 1);
	text-align:center;
	margin: 21px 0 19px 0;
    padding: 11px 0 12px 0;
}
.p_c_t_t{
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(51, 51, 51, 1);
}
.p_c_t_w{
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(187, 107, 217, 1);
	min-width: 40px;
}
.p_c_t_c p{
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
	letter-spacing: -0.30000001192092896px;
	text-align: left;
	color: rgba(51, 51, 51, 1);
}
.p_c_t_price{
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(187, 107, 217, 1);
}
.btn_cart{
	font-family: 'Roboto Condensed';
	font-size: 13px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 0.045em;
	text-align: center;
	color: rgba(255, 255, 255, 1);
	background: linear-gradient(0deg, #9142C6 0%, rgba(145, 66, 198, 0) 390.48%);
	border: none;
    outline: none;
    display: block;
    cursor: pointer;
    width: calc(100% - 36px);
    margin: 11px 18px 11px;
    padding: 10px;
	border-radius: 12px;
}
.btn_cart:hover{
	background: rgba(155, 81, 224, 1);
}
.p_c_t_r{
	padding: 9px 18px 9px 18px;
    display: flex;
    justify-content: space-between;
    min-height: 50px;
    align-items: center;
}
.p_c_t_price_and_count{
	padding:0 18px 7px 18px;
	display: flex;
    justify-content: space-between;
}
.p_c_t_c{
	height:92px;
	margin-bottom:6px;
	overflow:hidden;
	padding: 0 12px;
	margin: 0 6px;
	position:relative;
}

.p_c_t_c p{
	-webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
	display: block;
}
.p_c_t_c.view_text{
	overflow-y: scroll;
}
.p_c_t_c.view_text p{
	-webkit-line-clamp: unset;
}
.prod_card{
	max-width:256px;
	width:calc(100% - 30px);
	margin: 0 auto;
	border-radius: 7px;
	background: #FFF;
	overflow:hidden;
}
.create_self{
	font-family: 'Roboto Condensed';
	font-size: 13px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 0.045em;
	text-align: center;
	color: rgba(51, 51, 51, 1);
	padding:6px;
	border-radius: 12px;
	background: rgba(242, 242, 242, 1);
	display:block;
	cursor:pointer;
	width:calc(100% - 36px);
	margin:7px 18px 0 18px;
	text-transform:uppercase;
	text-decoration:none;
}
.create_self_empty{
	display:block;
	height:26px;
	margin: 7px 18px 0 18px;
}
.create_self:hover{
	background: rgba(155, 81, 224, 1);
	color: rgba(255, 255, 255, 1);
}
.site-footer{
	display:flex;
}
.site-footer ul{
	width:50%;
    list-style: none;
    padding-left: 15px;
}
.site-footer ul li{
	margin-bottom: 12px;
}
.site-footer ul a{
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0em;
	text-align: left;
	color:#fff;
}
.site-footer{
	margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    padding: 11px 0 67px 0;
	background:#A254C1;
}
.mobile_f_nav_container{
	position:fixed;
	bottom:0;
	width:100%;
	left:0;
	z-index:99;
}
.mobile_f_nav{
	max-width: 992px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #F2F2F2;
}
.mobile_f_nav a{
	text-align:center;
	display: inline-block;
    padding: 6px 14px 6px 14px;
	text-decoration: none;
}
.mobile_f_nav span{
	font-family: 'Roboto Condensed';
	font-size: 12px;
	font-weight: 500;
	line-height: 14px;
	letter-spacing: -0.23999999463558197px;
	text-align: center;
	color: rgba(155, 81, 224, 1);
	display: block;
	padding-top: 0;
}
.phone_h_btn{
	position:relative;
}
.bg_popup{
	position:fixed;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:98;
	background: rgba(97, 97, 97, 0.20);
	opacity:0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.dnone.bg_popup{
	display:none;
}
header .bg_popup{
	position:absolute;
}
.open_phone .bg_popup, .popup_open .bg_popup{
	opacity:1;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.phone_h_list{
	position:absolute;
	width:198px;
	min-height:170px;
	background: rgba(242, 242, 242, 1);
	top:48px;
	left:0px;
	z-index: 99;
	padding: 12px 11px 9px 9px;
	border-radius:5px;
	display:none;
	opacity:0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.open_phone .phone_h_list{
	display:block;
	opacity:1;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.phone_h_list:before{
	background-image:url(/image/mr_top.png);
	position:absolute;
	top:-9px;
	width:19px;
	height:9px;
	display:block;
	content:' ';
	left:5px;
}
.phone_h_head{
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-weight: 500;
	line-height: 19px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(51, 51, 51, 1);
	position:relative;
}
.phone_h_close{
	position:absolute;
	top: -16px;
    right: -14px;
	padding:15px;
	cursor:pointer;
}
.phone_h_close a{
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-weight: 300;
	line-height: 15px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(51, 51, 51, 1);
	text-decoration:none;
}
.phone_h_close a.current_lang{
	font-weight:400;
}
.phone_h_tel_row{
	padding: 1px 0 8px 0;
	position:relative;
}
.phone_h_tel_row:after{
	display:block;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	height:1px;
	content:' ';
	background: linear-gradient(90deg, #9142C6 0.48%, #FF0000 100.48%);
}
.phone_h_tel_row a{
	font-family: Manrope,Arial,sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 13px;
	letter-spacing: 0em;
	text-align: left;
	text-decoration:none;
	color: rgba(51, 51, 51, 1);
	margin-bottom: 6px;
	display: block;
}
.phone_h_tel_row a small{
	display: block;
	font-size: 12px;
}
.phone_h_tel_row li:last-child a{
	margin-bottom: 0px;
}
.phone_h_tel_row .phone_h_tel{
	border-bottom: 1px dashed rgba(49, 49, 49, 1);
}
.phone_h_icon{
	margin-right: 4px;
}
.phone_h_icon svg{
	margin-top:-2px;
}
.pht_t{
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(51, 51, 51, 1);
	margin-top: 11px;
	cursor:pointer;
	padding-right: 12px;
	position:relative;
}
.pht_t:after{
	display:block;
	position:absolute;
	content:' ';
	top: 5px;
    right: -3px;
    width: 11px;
    height: 6px;
	background-image:url(/image/vector48.svg);
}
.pht_row{
	padding: 6px 0;
}
.pht_row:last-child .pht_t:after{
	display:none;
}
.phone_h_btn_a{
	position: relative;
    z-index: 99;
}
.phone_h_btn_a svg{
	transition-property: transform;
	transition-duration: 0.5s;
	transform:rotate(0deg);
	fill:#9B51E0;
}
.open_phone .phone_h_btn_a svg{
	transition-property: transform;
	transition-duration: 0.5s;
	transform:rotate(90deg)
}
.p_c_t_count{display:flex;align-items: center;}
.p_c_t_count .minus,.p_c_t_count .plus{
	cursor:pointer;
	display: flex;
    width: 18px;
    height: 18px;
	background: rgba(187, 107, 217, 1);
	border-radius:4px;
}
.p_c_t_count .current{
	min-width: 16px;
    text-align: center;
}
.p_c_t_count .minus:hover,.p_c_t_count .plus:hover{
	opacity:0.7;
}
.popup{
	position:fixed;
	overflow: hidden;
	top:125px;
	bottom:75px;
	left: 50%;
    width: 100%;
	max-width: 365px;
	width: calc(100% - 30px);
	margin-left:-182px;
    z-index: 100;
	border-radius: 7px;
	background: #FFF;
	box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.33);
	opacity:0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.popup.dnonne{
	display:none;
}
.popup_open .popup{
	display:block;
	overflow-y: scroll;
	opacity:1;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #BB6BD9;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #9B51E0;
}
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
.view_text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 6px;
}

/* Handle */
.view_text::-webkit-scrollbar-thumb {
  background: #BB6BD9;
  border-radius: 6px;
}

/* Handle on hover */
.view_text::-webkit-scrollbar-thumb:hover {
  background: #9B51E0;
}
.odessa_city .view_text::-webkit-scrollbar-thumb{
  background: rgba(4, 157, 217, 1);
}
.odessa_city .view_text::-webkit-scrollbar-thumb:hover {
  background: rgba(4, 157, 217, 1);
}
.view_text::-webkit-scrollbar {
  width: 6px;
}
.popup_content{
	padding:8px 7px;
}
.thumb_prod_block{
	height:132px;
	position:relative;
	z-index:2;
}
.thumb_prod{
	height:132px;
	position:absolute;
	background-position:center;
	background-size:cover;
	border-radius: 6px;
	top:0;
	left:0;
	right:0;
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-ms-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}
.thumb_prod_btn{
	display:block;
	position:absolute;
	right: 14px;
    bottom: 9px;
	width:24px;
	height:24px;
	cursor:pointer;
}
.thumb_prod_btn:before,.thumb_prod_btn:after{
	display:block;
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	content:' ';
	background-position:cener;
}
.thumb_prod_btn:hover{
	opacity:0.8;
}
.thumb_prod_btn:before{
	-webkit-mask-image: url(/image/group1494.svg);
    mask-image: url(/image/group1494.svg);
	background: rgba(155, 81, 224, 1);

	opacity:1;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.thumb_prod_btn:after{
	-webkit-mask-image: url(/image/group1495.svg);
    mask-image: url(/image/group1495.svg);
	background: rgba(155, 81, 224, 1);
}
.thumb_prod_block_open .thumb_prod{
	height:261px;
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-ms-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}
.thumb_prod_block_open .thumb_prod_btn:before{
	opacity:0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.thumb_prod_block_open .prod_p_titli{
	opacity:0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.thumb_prod_block_open .prod_p_text{
	opacity:0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.prod_p_titli{
	display:flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 14px 4px 6px 1px;
	opacity:1;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.prod_p_titli span:first-child{
	color: #333;
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 14.162px; /* 70.811% */
}
.prod_p_titli span:last-child{
	color: var(--purple-1, #9B51E0);
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 14.162px; /* 77.449% */
}
.prod_p_text{
	opacity:1;
	height:89px;
	overflow:hidden;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.prod_p_text p{
	color: #333;
	font-family: Rosario;
	font-size: 12px;
	font-style: normal;
	font-weight: 300;
	line-height: 15.392px;
	letter-spacing: 1px;
	margin-bottom: 0;
    padding-bottom: 12px;
}
.prod_p_action{
	display:flex;
	justify-content: space-between;
	align-items: end;
	padding-bottom: 20px;
	padding-top: 10px;
	padding-right: 5px;
	position:relative;
	z-index: 2;
}
.prod_p_action:after{
	border-radius: 16px;
	opacity: 0.3;
	background: radial-gradient(50% 50.00% at 50% 50.00%, #9B51E0 0%, rgba(155, 81, 224, 0.00) 100%);
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	content:' ';
	height:2px;
}
.prod_p_action_p{
	
}
.prod_p_action_p span{
	display:inline-block;
}
.prod_p_action_p span:first-child{
	color: var(--gray-1, #333);
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px; /* 70.811% */
	display:block;
	padding-bottom: 4px;
}
.prod_p_action_p span:last-child{
	color: var(--purple-1, #9B51E0);
	font-family: Roboto;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	padding-right: 22px;
	position:relative;
}
.prod_p_action_p span:last-child:after{
	position:absolute;
	top:4px;
	right:0;
	width:16px;
	height:21px;
	content:' ';
	display:block;
	-webkit-mask-image:url(/image/vectorppm.svg);
	mask-image:url(/image/vectorppm.svg);
	background-position:center;
	background-color: #9B51E0;
}
.prod_p_action_add a{
	color: var(--gray-6, #F2F2F2);
	text-align: center;
	font-family: 'Roboto Condensed';
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 20.081px; /* 143.436% */
	text-transform: uppercase;
	padding:14px 37px;
	border-radius: 34px;
	background: var(--mykoliav-styles-nice-buttton-gradient, linear-gradient(0deg, #9142C6 0%, rgba(145, 66, 198, 1) 100%));
	display:inline-block;
	text-decoration:none;
}
.prod_p_action_add a:hover{
	opacity:0.8;
}
.prod_p_action_check_row{
	
}
.prod_p_action_row_t{
	color: #333;
	text-align: center;
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
	text-transform: capitalize;
	padding: 18px 0;
}
.prod_p_action_f{
	border-radius: 12px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.08);
}
.prod_p_action_f_e{
	padding: 15px 14px 13px 10px;
	border-bottom: 1px solid #F6F6F6;
	display:flex;
	justify-content: space-between;
}
.prod_p_action_f_e:last-child{
	border-bottom: none;
}
.prod_p_action_f_t{
}
.prod_p_action_f_t span{
	display:block;
}
.prod_p_action_f_t span:first-child{
	color: #0B1F35;
	font-family: Open Sans;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
	padding: 1px 0px 2px 2px;
}
.prod_p_action_f_t span:last-child{
	color: #9142C6;
	font-family: Open Sans;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
    padding: 0 0 0 2px;
}
.prod_p_action_f_a{
	display:flex;
	align-items:center;
	justify-content:center;
}
.prod_p_action_f_a span{
	width: 15px;
	height: 15px;
	background: #9142C6;
	border-radius:50%;
	opacity: 0.35;
	margin: 4px 4px;
	cursor:pointer;
	position:relative;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.prod_p_action_f_a.action_f_a_active span{
	opacity: 1;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-ms-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}
.prod_p_action_f_a span:before{
	position:absolute;
	top:-4px;
	left:-4px;
	width:23px;
	height:23px;
	border-radius:50%;
	border:2px solid #9142C6;
	content:' ';
	display:block;
}
.prod_p_action_check_row_empty .prod_p_action_row_t{
	padding: 14px 0 0 0;
}
.prod_p_action_f_counter{
	display:flex;
	align-items: center;
    justify-content: center;
}
.prod_p_action_f_counter span{
	display:block;
}
.prod_p_action_f_counter span.plus,.prod_p_action_f_counter span.minus{
	width:23px;
	height:23px;
	background-position:center;
	background-repeat:no-repeat;
	padding:5px;
	cursor:pointer;
	border-radius:50%;
	background:#9142c6;
	position:relative;
}
.prod_p_action_f_counter span.plus:before,.prod_p_action_f_counter span.minus:before{
	position:absolute;
	top:0;left:0;right:0;bottom:0;
	content:' ';
	display:block;
	background-position:center;
}
.prod_p_action_f_counter .disable{
	opacity:0.3;
}
.prod_p_action_f_counter .current{
	font-family: Open Sans;
	font-size: 16px;
	font-weight: 700;
	line-height: 21px;
	letter-spacing: 0em;
	text-align: left;
	color: rgba(155, 81, 224, 1);
	width: 20px;
    text-align: center;
    margin: 0 9px;
}
.prod_p_action_f_counter span.minus:before{
	background-image:url(/image/popup-minus.svg);
}
.prod_p_action_f_counter span.plus:before{
	background-image:url(/image/popup-plus.svg);
}
.mobile_f_nav a.close_popup{
	display:none;
}
.mobile_f_nav .close_popup  span{
	color: rgba(235, 87, 87, 1);
}
.popup_open .mobile_f_nav a.create_order{
	display:none;
}
.popup_open .mobile_f_nav  a.close_popup{
	display:block;
}
#scrollableBlock2,#scrollableBlock3,#map,#city{
	display:none;
}
.popup_open_Block2 #scrollableBlock2, .popup_open_Block3 #scrollableBlock3, .popup_open_map #map, .popup_open_city #city{
	display:block;
}
.desctop_header{
	display:none;
}
.desctop_footer{
	display:none;
}
header{
	background:#F2F2F2;
}
.pht_row.pht_row_open ul{
	max-height:999px;
	list-style: none;
    margin: 0;
    padding: 0 0 0 22px;
}
.pht_row.pht_row_open ul a{
	font-family: 'Roboto Condensed';
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;
    color: rgba(51, 51, 51, 1);
    margin-top: 11px;
    cursor: pointer;
    padding-right: 12px;
    position: relative;
	text-decoration:none;
	display: block;
}
.pht_row.pht_row_open ul a small{
	display: block;
}
.prod_card img{
	max-width:100%;
	height:auto;
}
.popupclosebtn{display:none;}
.card_custom_boul{
	cursor:pointer;
	background:url(/image/card_boul.svg);
	background-position:bottom center;
	background-size: cover;
}
.card_custom_boul_text{
	padding: 14px 22px;
}
.card_custom_boul_text span:first-child{
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	color:#333333;

}
.card_custom_boul_text span:last-child{
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
	text-transform:uppercase;
	color:#BB6BD9;
}
#map .desctop_l_col ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
#map .desctop_l_col li{
	padding:5px 15px;
	display:flex;
	flex-direction:column;
	border-radius:5px;
	box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
	margin-bottom:10px;
}
#map .desctop_l_col li.inmap_active,#map .desctop_l_col li:hover{
	background: rgba(242, 242, 242, 1);
	cursor:pointer;
}
.in_map span{
	text-align: justify;
	display: flex;
	justify-content: space-between;
	position:relative;
	font-size: 15px;
	padding: 10px 0;
}
.in_map span:first-child:after {
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 1px;
	content: ' ';
	background: linear-gradient(90deg, #9142C6 0.48%, #FF0000 100.48%);
}
.in_map span:last-child b{
	font-weight:400;
}
.in_map span:last-child b.open_now{
	color:#bfc73c;
}
.in_map span:last-child b.close_now{
	color:#eb5757;
}
.in_map_map{display:none;}
.in_map_map.inmap_active_map{display:block;}
.prod_card{
	width:100%;
	height:525px;
}
.small_cart_title span svg{
	fill:#BB6BD9;
}
.small_cart_item_c .minus:before, .small_cart_item_c .plus:before{
	display:block;
	content:' ';
	position:absolute;
	width:12px;
	height:11px;
	background-position:center;
	background:#BB6BD9;
	background-repeat:no-repeat;
}
.small_cart_item_c .minus:before{
	height: 2px;
}
.small_cart_item_c .minus:before{
	-webkit-mask-image: url(/image/cart-minus.svg);
    mask-image: url(/image/cart-minus.svg);
}
.small_cart_item_c .plus:before{
	-webkit-mask-image: url(/image/cart-plus.svg);
    mask-image: url(/image/cart-plus.svg);
}
.phone_h_icon svg,.minus img,.plus img,.small_cart_title span svg, .small_cart_a_allpp svg,.phone_h_btn_a svg{fill: #bb6bd9;}
.desctop_all_col,.desctop_all_col ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	flex-wrap:wrap;
}
.desctop_all_col ul.city-menu a,.desctop_all_col ul.lang-menu a{
	color: #000;
	text-decoration: none;
	padding: 5px 15px;
	margin: 0 10px;
	border: 1px solid #9142C6;
	border-radius: 20px;
	font-size: 16px;
	line-height: 16px;
}
.desctop_all_col ul a.active_city,.desctop_all_col ul a.active_lang,.desctop_all_col ul a:hover{
	color: #fff;
	background: #9142C6;
}
.desctop_all_col div{
	text-align:center;
	padding: 17px;
}
.phone_h_tel_row ul a:hover{
	color:#9142C6;
}
.page_bg{
	background: #F7F3F3;
	padding: 18px 0;
}
.page_bg article{
	padding: 30px;
	background: #fff;
	border-radius: 15px;
}
.page_bg .entry-title,.woocommerce-checkout h3{
	color: #000;
	font-family: 'Roboto Condensed';
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px; /* 100% */
}
.page_bg p{
	color: #000;
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 21px;
}
.odessa_city_v{display:none;}
.odessa_city .odessa_city_v{display:inline;}
.odessa_city .nikolaev_city_v{display:none!important;}
.nikolaev_city .odessa_city_v{display:none!important;}
.odessa_city .phone_h_icon svg,.odessa_city .minus img,.odessa_city .plus img,.small_cart_title span svg,.odessa_city .small_cart_a_allpp svg,.odessa_city .phone_h_btn_a svg{fill: rgba(4, 157, 217, 1);
}

.odessa_city .product_slider_header,.odessa_city .small_cart_price,.odessa_city .p_c_t_count .minus,
.odessa_city .p_c_t_count .plus,.odessa_city .prod_p_action_f_counter span.plus,.odessa_city .prod_p_action_f_counter span.minus,
.odessa_city .small_cart_container,.odessa_city .smallCartBtn a,.odessa_city .ua_val,.odessa_city .small_cart_item_c .minus:before,.odessa_city .small_cart_item_c .plus:before{background: rgba(4, 157, 217, 1);}
.odessa_city .site-footer{background: rgba(4, 157, 217, 1);}
.odessa_city .pht_row:hover .pht_t, .odessa_city .phone_h_tel_row:hover > a, .odessa_city .pht_row ul a:hover, .odessa_city .p_c_t_w, .odessa_city .p_c_t_price,
.odessa_city .prod_p_action_p span:last-child,.odessa_city .prod_p_titli span:last-child,.odessa_city .prod_p_action_f_t span:last-child,.odessa_city .card_custom_boul_text span:last-child,
.odessa_city .prod_p_action_f_counter .current,.odessa_city .small_cart_title,.odessa_city .ua_val_price,.odessa_city .small_cart_a_allpp,.odessa_city .small_cart_item_c .current{
    color: rgba(4, 157, 217, 1);
}
.odessa_city .phone_h_tel_row ul a:hover{
	color:rgba(4, 157, 217, 1);
}
.odessa_city .btn_cart,.odessa_city .prod_p_action_add a,.odessa_city .small_cart_a_btn a{
	background: linear-gradient(0deg, #049DD9 24.4%, rgba(255, 255, 255, 1) 390.48%);
}

.odessa_city .btn_cart:hover,.odessa_city .create_self:hover,.odessa_city .prod_p_action_add a:hover,.odessa_city .small_cart_a_btn a:hover{
	background: rgba(4, 157, 217, 1);
}
.odessa_city nav .swiper1 a.active,.odessa_city  nav .swiper1 a:hover{
	color: rgba(4, 157, 217, 1);
	border-bottom: 3px solid rgba(4, 157, 217, 1);
}
.odessa_city .prod_p_action_p span:last-child:after{
	background-color: rgba(4, 157, 217, 1);
}
.b_icon{
	background-color: #9142C6;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	width: 30px;
	height:26px;
	display: inline-block;
	margin: 0 auto;
}
.odessa_city .b_icon{
	background-color: rgba(4, 157, 217, 1);
}
.b_icon1{
	-webkit-mask: url(/image/b_icon1.svg) no-repeat center;
    mask: url(/image/b_icon1.svg) no-repeat center;
}
.b_icon2{
	-webkit-mask: url(/image/b_icon2.svg) no-repeat center;
    mask: url(/image/b_icon2.svg) no-repeat center;
}
.b_icon3{
	-webkit-mask: url(/image/b_icon3.svg) no-repeat center;
    mask: url(/image/b_icon3.svg) no-repeat center;
}
.b_icon4{
	-webkit-mask: url(/image/b_icon4.svg) no-repeat center;
    mask: url(/image/b_icon4.svg) no-repeat center;
}
.odessa_city .mobile_f_nav span{
	color:rgba(4, 157, 217, 1);
}
.nikolaev_city .phone_h_icon svg{fill: #9B51E0;}
.odessa_city .thumb_prod_btn:after,.odessa_city .thumb_prod_btn:before,.odessa_city .prod_p_action_f_a span{background-color: rgba(4, 157, 217, 1);}
.odessa_city .prod_p_action_f_a span:before{
	border: 2px solid rgba(4, 157, 217, 1);
}
.woocommerce a.remove,.cart_del_item{
	background-color: rgba(224, 224, 224, 1);
    -webkit-mask-image: url(/image/cart-del.svg);
    mask-image: url(/image/cart-del.svg);
	display: inline-block;
    width: 24px;
    height: 27px;
    line-height: 27px;
	background-repeat: no-repeat;
	border-radius: 0;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.woocommerce a.remove:hover,.cart_del_item:hover{
	background-color: red;
}
.woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    width: 120px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
 .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
   .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
	 :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
	  :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
	   :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover{
		background-color: #9142C6;
		color:#fff;
}
.odessa_city .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.odessa_city .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.odessa_city .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.odessa_city .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .odessa_city .woocommerce #respond input#submit:hover,
	 :where(body:not(.woocommerce-block-theme-has-button-styles)) .odessa_city .woocommerce a.button:hover,
	  :where(body:not(.woocommerce-block-theme-has-button-styles)) .odessa_city .woocommerce button.button:hover,
	   :where(body:not(.woocommerce-block-theme-has-button-styles)) .odessa_city .woocommerce input.button:hover{
		background-color: rgba(4, 157, 217, 1);
		color:#fff;
}
.woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol{
	display: none!important;
}
.quantity input, .quantity label{
	display: none !important;
}
.woocommerce-checkout .page_bg{
	background: var(--Gray-6, #F2F2F2);
}
.woocommerce-checkout .page_bg article{
	padding: 0;
    border-radius: 0;
    background: transparent;
}
.woocommerce-cart-form{
	background: #fff;
	border:none;
	border-radius: 12px;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}
.woocommerce table.shop_table {
    border: none;
    margin: 0 0 0px 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 12px;
}
.woocommerce-form-coupon-toggle{
	display:none;
}
.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td{
	background: #fff;
}
#billing_company_field{
	display:none
}
.woocommerce-billing-fields,#post-8, .woocommerce-additional-fields, #order_review .woocommerce-checkout-review-order-table, .woocommerce-checkout #payment{
	border-radius: 12px;
	background: #FFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
	padding: 15px 15px;
}
#order_review .woocommerce-checkout-review-order-table{
	margin-bottom: 21px;
}
#customer_details table.shop_table td{
	padding: 0;
}
.woocommerce-additional-fields{
	margin-top: 21px;
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
	width:calc(50% - 10px);
}
.woocommerce-shipping-totals select{
	width: 100%;
    height: 45px;
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px;
}
.woocommerce form .form-row input.input-text{
	position: relative;
	border: none;
	background: transparent;
	border-radius: 0;
	border-bottom: 1px solid #DCDEE0;
	color: var(--Purple-1, #9B51E0);
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	padding-left: 21px;
}
.odessa_city .woocommerce form .form-row input.input-text{
	color: rgba(4, 157, 217, 1);
}
.woocommerce form .form-row input::placeholder{
	display:none;
	opacity: 0;
}
.woocommerce form .form-row textarea{
	position: relative;
	border: none;
	background: transparent;
	border-radius: 0;
	border-bottom: 1px solid #DCDEE0;
}
.woocommerce form .col-1 .form-row{
	position: relative;
}
.woocommerce form .col-1 .form-row label{
	color: var(--Purple-1, #9B51E0);
	font-family: 'Roboto Condensed';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 28px;
	position: absolute;
	left: 26px;
    top: 4px;
	clip: unset;
	clip-path: unset;
	width:90%;
	height: 41px;
	opacity: 0;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last{
	width: 100%;
}
.odessa_city .woocommerce form .col-1 .form-row label{
	color: rgba(4, 157, 217, 1);
}
#billing_first_name_field{
	background-image: url(/image/icons/user.svg);
	background-position: left center;
	background-repeat: no-repeat;
	order: 1;
}
#billing_address_1_field{
	background-image: url(/image/icons/street.svg);
	background-position: left center;
	background-repeat: no-repeat;
	order: 4;
}
#billing_address_2_field{
	background-image: url(/image/icons/house.svg);
	background-position: left center;
	background-repeat: no-repeat;
	order: 5;
}
#billing_phone::placeholder{
	color: #2b2b2b!important;
}
#billing_phone_field{
	background-image: url(/image/icons/phone.svg);
	background-position: left center;
	background-repeat: no-repeat;
	order: 2;
}
#count_person_field{
	background-image: url(/image/icons/user-group.svg);
	background-position: left center;
	background-repeat: no-repeat;
	order: 3;
}
#entrance_field{
	background-image: url(/image/icons/entrance.svg);
	background-position: left center;
	background-repeat: no-repeat;
	order: 6;
}
#order_comments_field{
	background-image: url(/image/icons/comment.svg);
	background-position: left top 15px;
	background-repeat: no-repeat;
}
.woocommerce-billing-fields__field-wrapper{
	display: flex;
    flex-direction: column;
}
#order_comments_field label{
	position: relative;
	opacity: 1;
}
#order_comments{
	border-radius: 12px;
	background: var(--Gray-6, #F2F2F2);
	box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
	padding: 21px;
	min-height: 100px;
}
#order_comments::placeholder{
	opacity: 0;
}
.form-row .optional{
	display: none;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th{
	border: none;
}
#shipping_method{
	display: flex;
	width: 100%;
    background: #F2F2F2;
    border-radius: 12px;
	overflow: hidden;
}
.odessa_city #shipping_method{
	justify-content:center;
}
#order_review{
	overflow: hidden;
}
.woocommerce ul#shipping_method .amount{
	display: inline-block;
	padding-right: 15px;
	position: relative;
}
.woocommerce-shipping-totals ul#shipping_method .amount::after{
    display: inline-block;
    -webkit-mask-image: url(/image/ua_val.svg);
    mask-image: url(/image/ua_val.svg);
    background: #000;
    width: 10px;
    height: 14px;
	display: block;
	content: ' ';
	position: absolute;
	top:6px;
	right: 0;
}
#shipping_method input[type="radio"]:checked+label .amount::after{
	background: #fff!important;
}
.order-total td{
	text-align: center;
}
.woocommerce-Price-amount.amount{
	display: inline-block;
	padding-right: 15px;
	position: relative;
}
#order_review .woocommerce-Price-amount.amount::after{
    display: inline-block;
    -webkit-mask-image: url(/image/ua_val.svg);
    mask-image: url(/image/ua_val.svg);
    background: #000;
    width: 10px;
    height: 14px;
	display: block;
	content: ' ';
	position: absolute;
	top:6px;
	right: 0;
}
.woocommerce ul#shipping_method li{
	overflow: hidden;
	margin: 0;
}
#shipping_method li:first-child{
	border-radius: 12px 0 0 12px;
}
#shipping_method li:last-child{
	border-radius: 0 12px 12px 0;
}
#shipping_method li input{
	margin-left: -99px;
	position: absolute;
	left: -99px;
}
.wc_payment_methods li label{
	border-radius: 10px;
	background: var(--Gray-6, #F2F2F2);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #333;
	font-family: 'Roboto';
	font-size: 15px;
	font-style: normal;
	font-weight: 700!important;
	line-height: 27px; /* 180% */
	text-transform: uppercase;
	margin-bottom: 15px!important;
	height: 51px;
}
#billing_country_field{
	display: none!important;
}
#shipping_method input[type="radio"]:checked+label,#payment input[type="radio"]:checked+label{
	background-color: #9142C6;
	color: #fff;
    font-weight: 700;
    font-size: 18px;
} 
#payment input[type="radio"]:checked+label{
	font-weight: 400!important;
	font-size: 15px;
}
.odessa_city #shipping_method input[type="radio"]:checked+label,.odessa_city #payment input[type="radio"]:checked+label{
	background-color: rgba(4, 157, 217, 1);
}

.popup_open_city .popup{
	opacity: 1;
}
.woocommerce ul#shipping_method li{
	display: block;
	width:50%;
}
.woocommerce ul#shipping_method li label{
	display: block;
	padding: 15px 15px;
    font-weight: 400;
    font-size: 18px;
	text-align: center;
}
.wc_payment_methods{
	overflow: hidden;
}
.wc_payment_methods li img{
	max-height: 20px;
}
.wc_payment_methods li input{
	position: absolute;
	left: -999px;
}
#post-8 header h1{
	text-align: center;
	font-size: 32px;
	line-height: 43px;
	display: none!important;
}
p.woocommerce-thankyou-order-received{
	text-align: center;
	font-size: 18px;
}
#post-8 ul.order_details{
	margin: 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
h2.woocommerce-order-details__title{
	font-size: 18px;
    text-align: center;
}
#post-8 .woocommerce-table--order-details{
	max-width: 600px;
    margin: 0 auto;
}
#post-8 .woocommerce-table--order-details td:last-child,#post-8 .woocommerce-table--order-details th:last-child{
	text-align: right;
}
.thanksOrder{
	color: var(--Gray-1, #333);
	text-align: center;
	font-family: Roboto Condensed;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 17.283px; /* 86.414% */
}
.thanksOrder strong{
	text-decoration: underline;
}
.thanksOrderDelim{
	max-width: 600px;
	margin:0 auto;
	height:2px;
	background-image: url(/image/thanksOrder.svg);
	background-position: center;
	background-size: 100%;
}
.shop-review-form-t{
	color: var(--Gray-1, #333);
	text-align: center;
	font-family: Roboto Condensed;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 19.283px; /* 120.517% */
	padding: 23px 0 0 0;
}
.rating{
	width: 110px;
	margin: 0 auto;
}
.rating span{
	cursor: pointer;
	opacity: 0.5;
}
.rating.r1 span.star-1{
	opacity: 1;
}
.rating.r2 span.star-1,.rating.r2 span.star-2{
	opacity: 1;
}
.rating.r3 span.star-1,.rating.r3 span.star-2,.rating.r3 span.star-3{
	opacity: 1;
}
.rating.r4 span.star-1,.rating.r4 span.star-2,.rating.r4 span.star-3,.rating.r4 span.star-4{
	opacity: 1;
}
.rating.r5 span.star-1,.rating.r5 span.star-2,.rating.r5 span.star-3,.rating.r5 span.star-4,.rating.r5 span.star-5{
	opacity: 1;
}
.rating.rds1 span.star-1{
	opacity: 1;
}
.rating.rds2 span.star-1,.rating.rds2 span.star-2{
	opacity: 1;
}
.rating.rds3 span.star-1,.rating.rds3 span.star-2,.rating.rds3 span.star-3{
	opacity: 1;
}
.rating.rds4 span.star-1,.rating.rds4 span.star-2,.rating.rds4 span.star-3,.rating.rds4 span.star-4{
	opacity: 1;
}
.rating.rds5 span.star-1,.rating.rds5 span.star-2,.rating.rds5 span.star-3,.rating.rds5 span.star-4,.rating.rds5 span.star-5{
	opacity: 1;
}
.comrow{
	display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}
.comrow label{
	color: var(--Gray-3, #828282);
	font-family: Roboto Condensed;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
	display: block;
	padding-left: 23px;
	background-image: url(/image/icons/comment.svg);
    background-position: left top 7px;
    background-repeat: no-repeat;
	padding-bottom: 10px;
}
.comrow textarea{
	border-radius: 12px;
    background: var(--Gray-6, #F2F2F2);
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.25) inset;
    padding: 21px;
    min-height: 100px;
}
.comrow button{
	padding: 14px 87px;
	text-align: center;
	display: block;
	width: 250px;
	margin: 25px auto;
	border-radius: 100px;
	background-color: #9142C6;
	color: #FFF;
	text-align: center;
	font-family: Roboto Condensed;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 14px; /* 87.5% */
	text-transform: uppercase;
	border: none;
}
.comrow button:hover{
	opacity: 0.7;
}
.odessa_city .comrow button{
	background-color: rgba(4, 157, 217, 1);
}
.thanksOrderMSG{
	display: none;
	color: var(--Gray-1, #333);
	text-align: center;
	font-family: Roboto Condensed;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 19.283px; /* 120.517% */
	padding: 30px;
}
#post-9 header,#post-189 header{
	display: none!important;
}
.woocommerce-MyAccount-navigation ul{
	padding: 0;
}
.woocommerce-MyAccount-navigation ul li{
	padding: 0;
	list-style: none;
}
.woocommerce-MyAccount-navigation  li a{
	display: block;
	padding: 5px;
	color:#fff;
	font-size: 16px;
	text-decoration: none;
	border-radius: 5px;
	background-color: #9142C6;
	margin-bottom: 7px;
}
.odessa_city .woocommerce-MyAccount-navigation  li a{
	background-color: rgba(4, 157, 217, 1);
}
.woocommerce-MyAccount-navigation  li.is-active a{
	background: var(--Gray-6, #F2F2F2);
	color:#333333;
}
.woocommerce-MyAccount-navigation  li a:hover{
	opacity: 0.7;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
	position: relative!important;
	z-index:1!important;
}
.woocommerce-MyAccount-content .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol{
	display: inline-block!important;
	color:#9142C6;
	margin-left: 5px;
}
.odessa_city .woocommerce-MyAccount-content .woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol{
	color: #049DD9;
}
.phone_h_tel_row a small{
	display: block;
    font-size: 10px;
}
.scroll-wrapper {
    overflow: hidden;
    padding: 0 !important;
    position: relative;
}
 
.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
	padding-right: 8px;
}
 
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}
 
.scroll-element {
    display: none;
}
.scroll-element, .scroll-element div {
    box-sizing: content-box;
}
 
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}
 
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
}
 
.scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}
 
 
 
 
/*************** SIMPLE INNER SCROLLBAR ***************/
 
.small_cart_items > .scroll-element,
.small_cart_items > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
 
.small_cart_items > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
 
.small_cart_items > .scroll-element.scroll-x {
    bottom: 2px;
    height: 5px;
    left: 0;
    width: 100%;
}
 
.small_cart_items > .scroll-element.scroll-y {
    height: 100%;
    right: 0px;
    top: 0;
    width: 5px;
}
 
.small_cart_items > .scroll-element .scroll-element_outer {
    overflow: hidden;
}
 
.small_cart_items > .scroll-element .scroll-element_outer,
.small_cart_items > .scroll-element .scroll-element_track,
.small_cart_items > .scroll-element .scroll-bar {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
 
.small_cart_items > .scroll-element .scroll-element_track,
.small_cart_items > .scroll-element .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}
 
.small_cart_items > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.small_cart_items > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.small_cart_items > .scroll-element:hover .scroll-bar { background-color: #919191; }
.small_cart_items > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }
 
 
/* update scrollbar offset if both scrolls are visible */
 
.small_cart_items > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.small_cart_items > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }
 
 
.small_cart_items > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.small_cart_items > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; }
.wbg{
	background-color: #fff;
}
.wbg .prod_p_action_p::after{
	display:none!important;
}
.descr_cat{
	text-align:center;
    margin-top: 15px;
    padding: 5px;
    background: #9B51E0;
    color: #fff;
    border-radius: 5px;
}
.ord_msg{
	color: var(--Purple-1, #9B51E0)!important;
	font-weight:500!important;
}
.odessa_city .ord_msg{
	color: rgba(4, 157, 217, 1)!important;
}
.odessa_city .woocommerce button.button.alt{
	background-color: rgba(4, 157, 217, 1);
}
.pop_time div{
	padding-bottom: 5px;
}
.pop_time{
	border: 2px solid;
	border-image-source: linear-gradient(284.81deg, rgba(235, 87, 87, 0.34) -13.02%, rgba(235, 87, 87, 0.34) 6.64%, rgba(148, 70, 199, 0.34) 47.85%);
	background-color:#fff;
	padding:25px;
	border-radius:11px;
	font-family: Roboto Condensed;
	font-size: 16px;
	font-weight: 400;
	line-height: 18px;
	text-align: left;
	max-width: 1111px;
    margin: 10px auto 0 auto;
}
.pop_time_t{
	font-family: Roboto Condensed;
	font-size: 24px;
	font-weight: 500;
	line-height: 24px;
	text-align: left;
	padding-bottom: 15px;
}
.woocommerce-billing-fields label abbr{
	display:none;
}
.woocommerce-billing-fields .validate-required label abbr{
	display:inline;
}
@media screen and (min-width:1550px){
	
}
@media screen and (min-width:992px){
	.wbg.prod_p_action {
		display: flex;
		margin-left:-2px;
	}
	.wbg .prod_p_action_add{
		max-width: 350px;
	}
	.wbg .prod_p_action_add a{
		width: 100%;
	}
	.woocommerce-cart-form{
		padding: 15px 15px;
	}
	.site-footer ul{
		display: flex;
		justify-content: space-between;
		padding-left:0;
	}
	nav .swiper-slide{
		width:auto;
		display:flex;
	}
	.mobile_header{
		display:none;
	}
	.mobile_footer{
		display:none;
	}
	.desctop_footer{
		display:block;
	}
	.desctop_header{
		display:flex;
   		z-index: 1021;
		background:#F2F2F2;
		position:relative;
	}
	.desctop_header.sticky-top{
		position: sticky;
	}
	.pht_container{
		display:flex;
		align-items: stretch;
		margin-right: auto;
		margin-left: 35px;
	}
	.pht_t{
		font-size: 16px;
		padding-right: 24px;
	}
	.pht_row{
		margin-top: 0px;
		position:relative;
	}
	.pht{
		padding-top: 8px;
		padding-bottom: 8px;
	}
	.pht_t:after{
		top: 7px;
		right: 10px;
	}
	.pht_row ul{
		position:absolute;
		top: 44px;
		left: -6px;
		box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
		padding:20px;
		margin:0;
		background: #fff;
		border-radius: 5px;
		list-style:none;
		z-index: 9;
		min-width: 130px;
		display:none;
		height: auto;
		overflow: visible;
	}
	.pht_row ul a{
		font-family: 'Roboto Condensed';
		font-size: 14px;
		font-weight: 400;
		line-height: 21px;
		letter-spacing: 0em;
		text-align: left;
		color: rgba(51, 51, 51, 1);
		margin-top: 11px;
		cursor: pointer;
		padding-right: 12px;
		position: relative;
		text-decoration:none;
	}
	.pht_row:hover .pht_t,
	.phone_h_tel_row:hover > a,
	.pht_row ul a:hover{
		color:#9E5CA5;
	}
	.pht_row ul:before{
		background-image: url(/image/mr_top_w.png);
		position: absolute;
		top: -9px;
		width: 19px;
		height: 9px;
		display: block;
		content: ' ';
		left: 5px;
	}
	.pht_row:hover ul{
		display:block;
	}
	.pht_row:last-child .pht_t:after{
		display:none;
	}
	.mobile_f_nav_container{
		display:none;
	}
	.phone_h_tel_row a{
		font-size: 14px;
	}
	.phone_h_tel_row{
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		margin: 0 35px 0 0;
		position: relative;
	}
	.phone_h_tel_row ul{
		position: absolute;
		top: 40px;
		left: -6px;
		box-shadow: 1px 1px 5px rgba(0,0,0,0.3);
		padding: 20px;
		margin: 0;
		background: #fff;
		border-radius: 5px;
		list-style: none;
		z-index: 9;
		width: 150px;
		display:none;
	}
	.phone_h_tel_row:hover ul{
		display:block;
	}
	.phone_h_tel_row ul:before {
		background-image: url(/image/mr_top_w.png);
		position: absolute;
		top: -9px;
		width: 19px;
		height: 9px;
		display: block;
		content: ' ';
		left: 5px;
	}
	.phone_h_tel_row:after{
		display:none;
	}
	.site-footer ul{
		width:100%;
		margin-bottom:0;
	}
	.popup{
		top: 133px;
		bottom: 24px;
		max-width: 730px;
		margin-left: -365px;
	}
	.popup_open_Block2 #scrollableBlock2, .popup_open_Block3 #scrollableBlock3 {
		display: block;
	}
	.thumb_prod_block,.thumb_prod{
		width: 223px;
		height: 223px;
	}
	.thumb_prod_block{
		float: left;
		margin-right: 12px;
	}
	.prod_p_action{
		display: block;
	}
	.prod_p_text{
		height: 63px;
	}
	.prod_p_action_add a{
		display: block;
		float: right;
		width: calc(100% - 235px);
		border-radius: 6px;
		margin-top: 10px;
	}
	.prod_p_action_add{
		display: block;
		width: 100%;
		text-align: right;
	}
	.desctop_l_col{
		overflow: hidden;
	}
	
	.prod_p_action_p{
		position:relative;
	}
	.prod_p_action_p::after{
		display: block;
		position: absolute;
		bottom: 0;
		right:0;
		width: 170px;
   		text-align: right;
		color: var(--Gray-1, #333);
		font-family: Roboto Condensed;
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 18.5px;
	}
	#scrollableBlock3 .prod_p_action_add a{
		float: none;
		width: 100%;
	}
	.prod_p_action_row_t{
		text-align: left;
		color: var(--Gray-1, #333);
		font-family: Roboto Condensed;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: 24px; /* 120% */
	}
	.prod_p_action_row_t small{
		display: block;
		font-size: 12px;
		font-weight: 400;
	}
	.hasError small{
		color:red;
	}
	.prod_p_action_f{
		display: flex;
    	flex-wrap: wrap;
	}
	.prod_p_action_f_e{
		width: 50%;
	}
	.thumb_prod_btn{
		display:none;
	}
	.popup_content{
		padding: 12px;
	}
	.desctop_r_col{
		margin-top:0;
	}
	.prod_p_action:after{
		opacity:0;
	}
	.popup_open .popupclosebtn{
		display:block;
		position:fixed;
		width: 100%;
		left: 50%;
		margin-left: -365px;
		z-index: 999;
		text-align: right;
		top: 132px;
		max-width: 748px;
	}
	.popup_open .popupclosebtn a{
		margin-right: -9px;
		display: inline-block;
	}
	.popup_open .popupclosebtn a:hover{
		opacity:0.7;
	}
	header .user_h_btn{
		margin-right:0;
	}
	.phone_h_icon svg{margin-top: -1px;}
	.popup_open_map #map{
		display:flex;
	}
	.popup_open_city #city{
		display:flex;
	}
	#map .desctop_l_col{
		position: relative;
		top: unset;
		left: unset;
		width:30%;
	}
	#map .desctop_r_col{
		width: calc(70% - 45px);
		margin:0 0 0 15px;
	}
	
	.home_slider .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
		padding: 0 0 52px 57px;
	}
	.home_slider .swiper-pagination-bullet{
		width: 9px;
		height: 9px;
	}
	.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin-right: 20px;
		margin-left: 0;
	}
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1111px;
	}
	.product_slider_header{
		font-size: 40px;
		font-style: normal;
		font-weight: 500;
		line-height: 38px;
		padding:19px;
		border-radius: 7px;
		margin: 21px 0 0px 0;
	}
	.product_slider .swiper-wrapper{
		flex-wrap:wrap;
		align-items: flex-start;
    	justify-content: space-between;
	}
	.product_slider .swiper-slide{
		width: calc(25% - 20px);
	}
	.product_slider .swiper-slide{margin-top:19px;}
	.site-footer{
		margin-top: 50px;
		padding:44px 0 44px 0;
	}
	.site-footer ul{
		max-width: 1111px;
		margin: 0 auto;
		padding: 0;
	}
	.odessa_city .odessa_city_v{
		margin-top: 5px;
	}
	
}

@media screen and (max-width:992px){
	.prod_p_action{
		background-color: #fff;
		margin-left: -2px;
	}
	.pht_row ul{
		overflow:hidden;
		max-height:1px;
		margin-bottom: 0;
	}
	.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2{
		width: 100%;
	}
	.ua_val_price bdi{
		margin-left: 15px;
	}
	.woocommerce-checkout .product-price,
	.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before{
		display: none !important;
	}
	.woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
		display: flex;
		flex-wrap: wrap;
	}
	.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
		display: block;
		text-align: left!important;
	}
	.woocommerce-checkout .product-name{
		width: 100%;
	}
	
	.prod_card{
		width:calc(100% - 30px);
	}
	.small_cart_items{
  		max-height: 150px;
	}
	.woocommerce table.shop_table td {
		border-top: none;
		padding: 6px 15px;
		vertical-align: middle;
		line-height: 1.5em;
	}
	.woocommerce  .product-subtotal{
		margin-left: auto;
		padding: 6px 0px!important;
		text-align: right!important;
	}
	.woocommerce  .product-remove{
		padding: 6px 12px 6px 0px!important;
	}
	.woocommerce  .small_cart_item_p{
		padding: 0px 0px 0px 0px;
	}
	.woocommerce .product-quantity,.woocommerce .product-subtotal{
		display: flex!important;
		align-items: center;
	}
	.woocommerce table.shop_table_responsive tr:last-child, .woocommerce-page table.shop_table_responsive tr:last-child{
		padding-bottom: 10px;
	}
	.prod_p_action_p::after{
		display: block;
		font-size: 12px;
    	padding-right: 15px;
		line-height: 11px;
	}
	#scrollableBlock3 .desctop_l_col{
		min-height: 100px;
	}
	#scrollableBlock3 .prod_p_action{
		position: fixed;
		background: #fff;
		z-index: 9;
		margin: 0 auto;
		max-width: 356px;
	}
	#scrollableBlock3 .desctop_l_col{
		position: relative;
	}
	#scrollableBlock3 .prod_p_action::before{
		position: absolute;
		top: -8px;
		left: 8px;
		right: 8px;
		height: 8px;
		background-color: #fff;
		display: block;
		content: ' ';
	}
	.prod_p_action_row_t small{
		display: block;
		font-size: 14px;
	}
}
@media screen and (max-width:400px){
	.popup{margin-left:unset;left: 15px;right:15px;}
	.desctop_all_col ul.city-menu a{
		padding: 5px 10px;
		font-size: 14px;
	}
	#scrollableBlock3 .prod_p_action{
		width: calc(100% - 46px);
	}
}
.home_slider{
	display: none;
}
nav.sticky-top{
	top:66px;
}
@media screen and (max-width:768px){
	.prod_p_text{
		height:auto;
	}
}
@media screen and (max-width:992px){
	nav.sticky-top{
		top:56px;
	}
	
}