@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

pre {
	color: white !important;
}

*,
*:before,
*:after {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	background: #fff;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

ul {
	margin: 0;
	padding: 0;
}

.padding {
	padding: 0 15px;
}

/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
	background-color: #D1D1D1;
	width: 3px;
	/* ширина для вертикального скролла */
	margin-left: 5px;
}

/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
	background-color: #339FE0;
}

.slick-slider {
	min-width: 0;
}

.slick-list {
	overflow: hidden;
}

.slick-track {
	display: flex;
}

.mob-vue {
	display: none !important;
}

/* -------------------------------------------NAVBAR */
#navbar {}

.navbar-logo img {
	width: 255px;
	display: block;
	max-width: 100%;
	height: auto;
}

.catalog-button,
.search-button {
	font-family: 'Roboto', sans-serif;
	background-color: #339FE0;
	padding: 17px 25px;
	border-radius: 5px;
	border: none;
	color: #ffffff;
	font-size: 18px;
	line-height: 22px;
	text-decoration: none;
	cursor: pointer;
	font-weight: 400;
	display: flex;
	align-items: center;
}

.catalog-button img,
.search-button img {
	margin-right: 5px;
}

.navbar-search form {
	display: flex;
}

.navbar-center {
	flex: auto;
	margin: 0 35px;
}

.navbar-search {
	position: relative;
}

.navbar-search input {
	border: 2px solid #339FE0;
	border-radius: 40px;
	display: block;
	padding: 15px 20px;
	outline: none;
	font-size: 12px;
	font-weight: 400;
	color: #949494;
	width: 100%;
	position: relative;
	z-index: 1;
}

.navbar-search input:placeholder {
	color: #949494;
	font-size: 12px;
	font-weight: 400;
}

.navbar-search button {
	position: absolute;
	top: 0;
	right: 0;
	background: #339FE0;
	z-index: 2;
	border: none;
	color: #ffff;
	height: 100%;
	border-top-right-radius: 40px;
	border-bottom-right-radius: 40px;
	width: 15%;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.navbar-search button img {
	display: block;
	filter: brightness(100);
	margin-right: 7px;
}

.header-right__item.flex {
	display: flex;
	align-items: center;
}

.header-right__item.flex .right {
	margin-left: 10px;
}

.product_item {
	cursor: pointer;
	border: 1px solid rgb(0 152 230 / 30%);
	border-radius: 10px;
	padding: 8px;
	background-color: #fff;
}

.header-right__item a {
	color: #7b7a7b;
	text-decoration: none;
	font-weight: 400;
	font-size: 12px;
}

.header-right__item.flex a:not(:last-child) {
	margin-bottom: 2px;
}

.header-right__item a {
	display: block;
}

.header-right__item:not(.flex) img {
	display: block;
	margin: 0 auto 4px auto;
}

.icon-user {
	width: 48px;
	height: 48px;
}

.preloader {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 1000;
}

.preloader p {
	font-size: 14px;
	text-align: center;
	font-weight: 700;
	min-width: 170px;
	position: absolute;
	top: 100px;
	margin: 0;
	left: 50%;
	transform: translateX(-50%);
}

.preloader p:after {
	content: '.';
	animation: loading 1s ease alternate infinite;
}

@keyframes loading {
	60% {
		text-shadow: 0.35em 0 0 currentColor;
	}

	100% {
		text-shadow: 0.35em 0 0 currentColor, 0.75em 0 0 currentColor;
	}
}

.loftloader-wrapper {
	width: 80px;
	height: 80px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.preloader .pl-wave .loader {
	width: 50px;
	height: 30px;
}

.preloader .pl-wave .loader span,
.preloader .pl-wave .loader:before,
.preloader .pl-wave .loader:after {
	position: absolute;
	display: block;
	width: 6px;
	height: 100%;
	background: #339FE0;
	content: '';
}

.preloader .pl-wave .loader span {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-animation: wave 0.9s linear infinite 0.3s;
	animation: wave 0.9s linear infinite 0.3s;
}

.preloader .pl-wave .loader:after {
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-animation: wave 0.9s linear infinite 0.6s;
	animation: wave 0.9s linear infinite 0.6s;
}

.preloader .pl-wave .loader:before {
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-animation: wave 0.9s linear infinite;
	animation: wave 0.9s linear infinite;
}

@keyframes wave {
	0% {
		height: 100%;
	}

	40% {
		height: 10%;
	}

	80% {
		height: 100%;
	}

	100% {
		height: 100%;
	}
}

.back_flex {
	display: flex;
	align-items: center;
	cursor: pointer;
	color: #fff;
	font-weight: 400;
	font-size: 20px;
}

.back_flex img {
	margin-right: 7px;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 20;
	cursor: pointer;
}

.popup-body {
	width: 95%;
	margin: 0 auto;
}

.popup-no_balance .popup-body p:first-child {
	color: #E80707;
	font-weight: 400;
	margin: 0;
	font-size: 18px;
}

.popup-no_balance .popup-body p:not(:first-child) {
	color: #fff;
	font-size: 14px;
	margin: 0;
	line-height: 1.5;
	margin: 30px 0;
}

.popup-ad-confirm .popup-body p:first-child {
	color: #fff;
	font-size: 18px;
	margin: 0;
	font-weight: 400;
}

.popup-ad-confirm .popup-body p:not(:first-child) {
	font-size: 16px;
	color: #3cdcdc;
	margin: 30px 0;

}

.popup-no_balance .ok,
.popup-ad-confirm .ok {
	margin-bottom: 10px;
}

/*  // PRELOADER */
.steps_form {
	display: block;
}

.steps_form strong {
	display: block;
	text-align: center;
	font-size: 18px;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
}

.step p {
	margin: 0 0 10px 15px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-size: 20px;
}

.step label {
	display: block;
	margin-bottom: 20px;
}

.step input,
.step select {
	display: block;
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	padding: 15px;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	border: none;
	outline: none;
	appearance: none;
}

.step select {
	background: #fff url('../imgs/select-arr.png') no-repeat 95% center;
	color: #8a8a8a;
	letter-spacing: 1px;
}

.noactive select {
	background-color: #383838;
}

.step input:focus {
	border: 1px solid #8a8a8a;
}

.step input:placeholder {
	padding-left: 15px;
	color: #8a8a8a;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
}

.text_err {
	display: block !important;
	color: red !important;
	margin-top: 5px !important;
}

.filled-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	text-decoration: none;
	padding: 10px;
	text-align: center;
	width: 100%;
	text-align: center;
	color: #fff;
	border-radius: 5px;
	background: #339FE0;
	font-size: 18px;
	font-weight: 400;
	border: none;
}

.offer-bottom_right a {
	height: 100%;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bordered-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 10px;
	text-align: center;
	width: 100%;
	height: 50px;
	text-align: center;
	color: #3cdcdc;
	border-radius: 5px;
	background: transparent;
	border: 2px solid #3cdcdc;
	font-size: 18px;
	font-weight: 400;
}

.btn-dark {
	filter: brightness(0.6);
}

.btns_flex {
	margin-top: 40px;
	display: flex;
}

.btns_flex *:first-child {
	margin-right: 15px;
}

.btns_flex>* {
	width: 50% !important;
}

input.filled-btn {
	/*background: #3cdcdc !important;*/
	background: #339FE0 !important;
}

.step_1>a.filled-btn {
	max-width: 160px;
	margin-left: auto;
	margin-top: 40px;
}

.step_success,
.step_err,
.popup-no_balance,
.popup-ad-confirm {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #0F0F0F;
	padding: 20px;
	z-index: 1000;
}

.step_success.active,
.step_err.active,
.popup-no_balance.active,
.popup-ad-confirm.active {
	display: flex;
}

.step_success img,
.step_err img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 20px;
}

.step_success strong,
.step_err strong {
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
}

.step_success strong {
	color: #0F992D;
}

.step_err strong {
	color: #BD2727;
}

.step_success p,
.step_err p {
	font-size: 20px;
	color: #fff;
	margin: 20px 0;
	text-align: center;
}

.step_success button,
.step_err button {
	margin: 0 auto;
}

.step_success span,
.step_err span {
	display: block;
	color: #000;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	position: absolute;
	bottom: 20px;
}

.title {
	display: block;
	text-align: center;
	font-size: 18px;
	color: #000;
	margin-bottom: 25px;
}

.label-title {
	margin: 0;
	color: #000;
	font-size: 14px;
	padding-left: 15px;
	margin-bottom: 22px;
}

.label-title.ml {
	margin-left: 15px;
}

.accrodeon {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #EEEEEE;
	border-radius: 5px;
	padding: 15px;
	color: #000;
	font-weight: 400;
	font-size: 12px;
	margin-bottom: 20px;
	border: 1px solid #DBDBDB;
}

.accrodeon.accordeon-clicked {
	background: #339FE0;
	color: #fff;
}

.tags {
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.accrodeon img.accrodeon-arrow-top {
	display: none;
}

.accrodeon.accordeon-clicked img.accrodeon-arrow-top {
	display: block;
}

.accrodeon.accordeon-clicked img.accrodeon-arrow-down {
	display: none;
}

.prefer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 15px;
}

.prefer-grid-item_bottom {
	background: #fff;
	padding: 10px 10px 20px 10px;
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
	height: 68px;
	overflow-y: auto;
}

.prefer-grid-item_bottom strong {
	margin-bottom: 0;
}

.prefer-grid_item>a {
	padding: 0 10px 5px 10px;
	display: block;
	text-decoration: none;
	margin-top: auto;
	justify-content: flex-end;
	color: #000;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	font-weight: 700;
	font-size: 10px;
	outline: none;
	text-decoration: none;
	position: relative;
	z-index: 2;
}

.shops_list .prefer-grid_item>a {
	position: absolute;
}

.prefer-grid.shops_list .prefer-grid_item>a {
	height: 100%;
	min-height: 100%;
}

.title_1 {
	color: #000;
	display: block;
	margin-bottom: 30px;
	font-size: 10px;
	word-break: break-word;
	font-weight: 700;
}

/*.blue-bg {
	background: linear-gradient(214.32deg, #2864FF -3.35%, #4675EE 56.36%, #3369F2 119.91%);
}
.yellow-bg {
	background: #FFD165;
}
.black-bg {
	background: #1a1a1d;
}*/

.label-title_1 {
	display: block;
	margin: 0;
	margin-bottom: 15px;
	font-size: 10px;
	font-weight: 400;
	word-break: break-all;
}

.img-resp {
	display: block;
	max-width: 100%;
	height: auto;
}

.prefer-grid-item_top {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prefer-grid.stretch .prefer-grid_item>a,
.prefer-grid.stretch .prefer-grid_item {
	display: flex;
	flex-direction: column;
}

.prefer-grid.stretch .prefer-grid_item .prefer-grid-item_bottom {
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.prefer-grid-item_top {
	position: relative;
	z-index: 1;
}

img.add-to-fav {
	position: absolute;
	right: 10px;
	top: 10px;
}

.prefer-grid-item_top img:not(.add-to-fav) {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	position: relative;
	z-index: 2;
	height: 100%;
	width: 100%;
}

.filter_item {
	display: inline-block;
	padding: 10px;
	color: #000;
	border: 1px solid #339FE0;
	border-radius: 9px;
	font-weight: 400;
	text-align: center;
	font-size: 14px;
	margin-right: 7px;
	margin-bottom: 7px;
	letter-spacing: 1px;
}

.filter_item.filter-active {
	background: #339FE0;
	border-color: #339FE0;
	color: #fff;
}

.apply-filter {
	display: block;
	width: 100%;
	border: none;
	background: #339FE0;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	font-weight: 400;
	border-radius: 5px;
	padding: 15px;
	font-size: 18px;
	outline: none;
	text-decoration: none;
}

.clear-filter {
	display: flex;
	align-items: center;
	color: #339FE0;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.clear-filter img {
	margin-right: 5px;
	display: none;
}

.offer {
	padding-bottom: 25px;
	border-bottom: 2px solid #484848;
	position: relative;
	margin-bottom: 20px;
}

.offer .fav-heart {
	top: -5px;
	right: -5px;
}

.offer_top {
	display: flex;
	align-items: flex-start;
	position: relative;
	margin-bottom: 15px;
}

.offer-top_left {
	height: 70px;
	width: 40%;
	margin-right: 20px;
	border-radius: 5px;
}

.offer-top_left img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-radius: 5px;
	margin: 0 auto;
	width: 100%;
	object-fit: cover;
}

.offer-top_right {
	width: 50%;
}

.offer-top_right * {
	color: #000;
	margin: 0;
	word-break: break-word;
}

.offer-top_right>p {
	margin: 10px 0;
}

.offer-top_right>span {
	display: flex;
	align-items: center;
	font-size: 9px;
}

.offer-top_right>span.order-on {
	color: #55e323;
}

.offer-top_right>span.order-on span {
	background: #55e323;
}

.offer-top_right>span.order-off {
	color: red;
}

.offer-top_right>span.order-off span {
	background: red;
}

.offer-top_right>span span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 7px;
}

.offer_bottom {
	display: flex;
	padding: 0 10px
}

.offer-bottom_left {
	width: 60%;
	margin-right: 15px;
}

.offer-bottom_right {
	width: 40%;
}

.offer-bottom_right button {
	height: 100%;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 15px;
}

.offer-bottom_left p {
	display: flex;
	color: #000000;
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	align-items: flex-start;
	line-height: 1.4;
	word-break: break-all;
}

.offer-bottom_left p:not(:last-child) {
	margin-bottom: 10px;
}

.offer-bottom_left p img {
	display: block;
	margin-right: 10px;
}

/*МОЙ БИЗНЕС*/
.my-biz {
	padding: 16px;
}

.my-biz-blocks {
	max-height: 600px;
	overflow-y: auto;
	padding-right: 5px;
}

.my-biz>h3 {
	margin: 0;
	color: #fff;
	text-align: center;
	font-size: 18px;
	margin-bottom: 25px;
	letter-spacing: 1px;
}

.my-biz_block {
	border-bottom: 1px solid #989898;
	padding-bottom: 35px;
}

.my-biz_block:not(:last-child) {
	margin-bottom: 40px;
}

.my-biz__table {
	background: #1E1E1E;
	padding: 20px;
}

.my-biz__table h4 {
	margin: 0;
	color: #fff;
	font-size: 14px;
	margin-bottom: 15px;
	padding-bottom: 12px;
	border-bottom: 1px solid #454545;
}

.my-biz__table p {
	display: flex;
	color: #fff;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.5px;
	flex-wrap: wrap;
}

.my-biz__table p span {
	font-weight: 700;
	margin-left: 10px;
	word-break: break-word;
}

.my-biz__table p:not(:last-child) {
	margin-bottom: 15px;
}

.my-biz__table .my-biz_info:not(:last-child) {
	margin-bottom: 40px;
}

.my-biz_block button {
	max-width: 100%;
	margin-top: 15px;
}

/* // МОЙ БИЗНЕС */


/*УПРАВЛЕНИЕ И РЕКЛАМА МОИМ БИЗНЕСОМ*/
.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.my-biz-control {
	/*display: none;*/
	padding: 16px;
}

.my-biz-control_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.back {
	display: block;
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.7px;
	margin-right: 40px;
}

.my-biz-control-top__tabs {
	display: flex;
	flex: auto;
}

.my-biz-control-top__tab {
	margin: 0;
	color: rgba(255, 255, 255, .4);
	font-weight: 400;
	font-size: 14px;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, .4);
	width: 50%;
	text-align: center;
}

.my-biz-control-top__tab.tab-active {
	color: #00FFFF;
	border-color: #00FFFF;
}

.my-biz-control_profile {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.control-profile_left {
	width: 40%;
	margin-right: 20px;
}

.control-profile_left label {
	display: block;
	background: #1e1e1e;
	border-radius: 5px;
	width: 100%;
	padding: 25px 10px;
	text-align: center;
	color: #0ff;
	font-weight: 700;
	font-size: 12px;
}

.control-profile_left span {
	display: block;
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 10px;
	margin-top: 5px;
}

.control-profile_right {
	width: 60%;
}

.control-profile_right strong {
	font-size: 14px;
	color: #fff;
	display: block;
}

.control-profile_right>span {
	display: block;
	color: #fff;
	font-size: 14px;
	margin: 10px 0;
	font-weight: 400;
}

.control-profile_right>div {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
}

.control-profile_right p {
	display: flex;
	align-items: center;
	color: #55e323;
	font-size: 12px;
	margin: 0;
}

.control-profile_right p span {
	width: 8px;
	height: 8px;
	background: #55e323;
	border-radius: 50%;
	margin-right: 5px;
}

.green-switch {
	width: 38px;
	height: 11px;
	background: #1e1e1e;
	border-radius: 5px;
	position: relative;
}

.green-switch span {
	width: 17px;
	height: 17px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	background: red;
}

.green-switch.active,
.green-switch.active span {
	background: #55e323;
}

.green-switch.active span {
	left: unset;
	right: 0;
}

.my-biz-control_info p,
form p,
.relkama-setting-upload-img label {
	margin: 0 0 10px 15px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.5px;
	font-size: 18px;
}

.my-biz-control_info input,
/*.my-biz-control_info label div,*/
form input,
form textarea,
form select {
	width: 100%;
	background-color: #fff;
	border-radius: 5px;
	padding: 15px 30px 15px 15px;
	color: #000;
	font-size: 14px;
	font-weight: 400;
	border: none;
	outline: none;
	appearance: none;
}

form select {
	background: #fff url('../imgs/select-arr.png') no-repeat 95% center;
}

form label {
	display: block;
}

form>label:not(:last-child) {
	margin-bottom: 15px;
}

/*.login_form > a {
	display: block;
	text-align: center;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
	margin-top: 30px;
}*/
.login_form label p {
	display: block;
	margin: 0;
	color: #fff;
	font-size: 15px;
	margin-bottom: 5px;
}

/*.login_form input[type="submit"] {
	background: none;
	border: 1px solid #3cdcdc;
	color: #3cdcdc;
}
.login_form input[type="submit"].active {
	filter: brightness(1);
}*/
.login_logo {
	display: block;
	margin: 0 auto;
	margin-bottom: 30px;
}

.working-time>div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.working-time>div>span {
	width: 50%;
}

.working-time>div>span:first-child input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.working-time>div>span:nth-child(2) input {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.my-biz-control_info input::placeholder {
	color: #000;
	letter-spacing: 1px;
	font-size: 12px;
	text-align: left;
}

.my-biz-control_info label img {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.check-icon {
	display: none;
	width: 15px;
	width: 15px;
}

.my-biz-control_info label,
form label {
	display: block;
	position: relative;
}

.my-biz-control_info label:not(:last-child),
form label {
	margin-bottom: 15px;
}

.working-day {
	width: 61px;
	height: 35px;
	background: rgba(255, 255, 255, 0.4);
	color: #000;
	border-radius: 5px;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 400;
	margin-right: 7px;
	margin-bottom: 10px;
}

.working-day.active {
	background: #fff;
}

.my-biz-control_info>button {
	max-width: 100%;
	margin-top: 15px;
}

.my-biz-relkama_top {
	display: flex;
	margin-bottom: 25px;
}

.my-biz-relkama-top_left,
.my-biz-relkama-top_right {
	width: 50%;
}

.my-biz-relkama-top_left {
	margin-right: 15px;
}

.my-biz-relkama_top strong {
	display: flex;
	color: #fff;
	align-items: center;
	font-size: 14px;
	margin-bottom: 15px;
}

.my-biz-relkama_top strong img {
	margin-left: 7px;
}

.relkama-balance {
	display: flex;
	width: 100%;
	height: 60px;
	background: #1e1e1e;
	border-radius: 10px
}

.relkama-balance_left {
	width: 75%;
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #0ff;
	font-weight: 700;
	padding: 0 5px;
}

.relkama-balance_left span {
	display: block;
}

.relkama-balance_right {
	width: 25%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #3cdcdc;
	border-radius: 10px;
}

.relkama-balance_right img {
	display: block;
}

.favourites {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.favourites span {
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: 700;
}

.favourites p {
	margin: 0 7px;
	color: #fff;
	font-weight: 400;
	font-size: 16px;
}

.my-biz_relkama>strong {
	display: block;
	color: #fff;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
}

.relkama-variants {
	background: #1e1e1e;
	padding: 10px 0;
}

.relkama_variant:not(:last-child) {
	margin-bottom: 20px;
}

.relkama-variant_top {
	display: flex;
	margin-bottom: 15px;
}

.relkama-variant-top_left {
	background: #404040;
	padding: 20px;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	width: 60%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.relkama_variant.active .relkama-variant-top_left {
	background: #3cdcdc;
	color: #000;
}

.relkama-variant-top_right {
	width: 40%;
	background: url(../imgs/1.png) no-repeat center;
	background-size: cover;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.relkama-variant_bottom {
	display: flex;
	padding: 0 20px 15px 20px;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.relkama-variant_bottom:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	background: #404040;
	height: 1px;
}

.relkama-set {
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #fff;
	font-weight: 700;
}

.relkama-set img {
	margin-right: 5px;
}

.relkama_active {
	align-items: center;
	font-size: 12px;
	color: #55E323;
	font-weight: 700;
	margin: 0 10px;
}

.relkama_active span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 5px;
	background: #55E323;
}

.relkama_active {
	display: none;
}

.relkama_variant.active .relkama_active {
	display: flex;
}

.relkama-variant_bottom strong {
	display: block;
	color: #0ff;
	letter-spacing: 1px;
	font-size: 12px;
}

.balance {
	display: none;
	padding: 16px;
}

.balance>strong {
	display: block;
	color: #fff;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
}

.pay-ways {
	background: #fff;
	padding: 20px;
	border-radius: 5px;
}

.pay-ways>p {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.6px;
	padding-bottom: 15px;
	border-bottom: 1px solid #DEDEDE;
	margin-bottom: 15px;
}

.pay_way {
	display: flex;
	align-items: center;
}

.pay_way>img {
	margin-left: 10px;
}

.pay_way:not(:last-child) {
	margin-bottom: 15px;
}

.pay_way.active .pay-way-check {
	background: #3F84C7;
}

.pay-way-check {
	width: 20px;
	height: 20px;
	background: #dedede;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
}

.pay-way-check img {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
}

.pay_way.active .pay-way-check img {
	display: block;
}

.btns {
	display: flex;
	margin-top: 15px;
}

.btns button {
	max-width: 100%;
	width: 50%;
	margin-top: 0;
}

.btns button:first-child {
	margin-right: 15px;
	color: #3cdcdc;
}

.relkama-settings {
	padding: 16px;
	/*display: none;*/
}

.relkama-setting-upload-img span {
	font-size: 12px;
	color: #afafaf;
	display: block;
	margin-top: 10px;
	letter-spacing: 0.5px;
	margin-left: 15px;
}

.relkama-setting-upload-img button {
	max-width: 100%;
	margin-top: 15px;
}

.relkama-settings textarea {
	height: 110px;
}

.relkama-setting-2 {
	display: none;
}

.relkama-setting_result {
	text-align: center;
	margin-top: 20px;
}

.relkama-setting_result p {
	margin: 0 0 15px 0;
}

.relkama-setting_result small {
	color: #fff;
	font-weight: 400;
	font-size: 12px;
}

.relkama-setting_result small span {
	font-weight: 700;
}

.relkama-duration {
	width: 80%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}

.selecting-item {
	display: block;
	width: 100%;
	border: 1px solid #fff;
	border-radius: 5px;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	text-align: center;
	padding: 15px;
}

.selecting-item.active {
	background: #00FFFF;
	border-color: #00FFFF;
	color: #000;
}

.relkama-setting-2 button {
	max-width: 100%;
	margin-top: 15px;
	background: #fff;
}


/*  //УПРАВЛЕНИЕ И РЕКЛАМА МОИМ БИЗНЕСОМ  */
.prefer-grid_item {
	min-height: 150px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	position: relative;
}

.fav-heart.active {
	background-image: url('/template/imgs/heart-red.svg');
}

.red {
	color: red !important;
}

.red_background {
	background: red !important;
}

.fav-heart {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 23px;
	height: 21px;
	background-image: url('/template/imgs/heart-ic.svg');
	background-repeat: no-repeat;
	z-index: 50;
}


.none {
	display: none;
}

.flex {
	display: flex;
}

.prefer-grid-item_top img[src="/template/imgs/no_foto.png"] {
	height: 100%;
	width: 100%;
}

.map-slider {
	position: relative;
}

.map-slider img {
	display: block;
	/*max-width: 100%;
	height: auto;
	margin: 0 auto;*/
	max-height: 140px;
	max-width: 100%;
	height: auto;

}

.map_dots {
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

.map_dots ul {
	display: flex;
	padding: 0;
	list-style: none;
	justify-content: center;
	margin: 0;
}

.map_dots li:not(:last-child) {
	margin-right: 10px;
}

.map_dots li button {
	background: #D1D1D1;
	font-size: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	padding: 0;
}

.map_dots li.slick-active button {
	background: #339FE0;
}

.map {
	position: relative;
	margin: 0 auto;
}

.map iframe {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.map_search_shop {
	width: 92%;
	left: 50%;
	top: 20px;
	transform: translateX(-50%);
	position: absolute;
	z-index: 3;
}

.map_search_shop img {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}

.map_search_shop input {
	display: none;
	width: 100%;
	border: none;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 20px 15px 20px 35px;
	font-size: 10px;
	color: #2B2B2B;
	font-weight: 400;
	letter-spacing: 1px;
	outline: none;
}

.map_search_shop input::placeholder {
	/*padding-left: 20px;*/
	font-size: 10px;
	color: #2B2B2B;
	font-weight: 400;
	letter-spacing: 0.5px;
}

.map-video_circle {
	display: none;
	position: absolute;
	bottom: 25px;
	left: 15px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #0F0F0F;
	z-index: 2;
}

.map-video_circle img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.map-video {
	display: none;
	position: absolute;
	left: 0;
	bottom: 25px;
	width: 100%;
	background: url('../imgs/map-video-bg.png') no-repeat center;
	background-size: cover;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 12px;
	color: #0ff;
	z-index: 2;
}

.close {
	position: absolute;
	right: 10px;
	top: -40px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #0ff;
}

.close img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.map-video img {
	margin-right: 10px;
}

.map_menu {
	display: none;
	position: absolute;
	top: 65px;
	left: 50%;
	transform: translateX(-50%);
	width: 92%;
	padding: 25px 15px 15px 15px;
	background: #F1F1F1;
	height: 300px;
	overflow-y: auto;
	z-index: 2;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.map_menu.active {
	display: block;
}

.fav-popup {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	transform: translate(-50%, -50%);
	border-radius: 20px;
	background: #fff;
	padding: 30px;
	text-align: center;
	z-index: 52;
}

.fav-popup h3 {
	margin: 0;
	font-size: 14px;
}

.fav-popup p {
	font-weight: 400;
	font-size: 14px;
	margin: 20px 0;
}

.fav-popup .btns_flex {
	margin-top: 0;
}

.fav-popup .close {
	right: 0;
}

.offer.closed .offer-top_right span {
	color: red;
}

.offer.closed .offer-top_right>span span {
	background: red;
}

.offer.closed .offer-bottom_right a {
	filter: brightness(0.5);
}

.only-today {
	margin-bottom: 20px;
	padding: 15px;
	background: transparent;
	border-radius: 10px;
	word-break: break-all;
	border: 1px solid #339FE0;
}

.only-today strong {
	display: block;
	color: #000;
	margin-bottom: 10px;
	font-size: 14px;
}

.only-today p {
	margin: 0;
	color: #000;
	font-weight: 400;
	font-size: 13px;
}

.video {
	display: flex;
	width: 100%;
	background: url('../imgs/map-video-bg.png') no-repeat center;
	background-size: cover;
	justify-content: center;
	align-items: center;
	height: 60px;
	font-size: 12px;
	color: #0ff;
	z-index: 2;
	margin-bottom: 15px;
}

.video img {
	margin-right: 10px;
}

.offer-top_right>* {
	width: 91%;
}

.offer-top_right>span {
	width: 100%;
}

.fav-popup-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	z-index: 51;
}

.news {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
}

.news_item {
	border-bottom: 1px solid #339FE0;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.news_item p {
	margin: 10px 0;
	color: #000;
	font-size: 12px;
	font-weight: 400;
	word-break: break-all;
}

.news_item>div {
	display: flex;
	align-items: center;
}

.news_item>div.news-item__bottom {
	justify-content: space-between;
}

.news_item.active .has_video {
	display: flex;
}

.has_video {
	display: none;
	margin-left: 10px;
	width: 75px;
	height: 20px;
	border-radius: 5px;
	background: #0ff;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	font-weight: 400;
}

.has_video img {
	display: block;
	margin-left: 5px;
	width: 8px;
	height: 8px;
}

.news_item span {
	display: block;
	color: #fff;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 1px;
}

.news_item a {
	display: block;
	font-size: 10px;
	color: #339FE0;
	font-weight: 700;
	text-decoration: none;
}

.add-more-news {
	max-width: 210px;
	width: 100%;
	margin: 0 auto;
	font-size: 12px;
}

.new_back {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-left: 15px;
}

.new_back img {
	display: block;
	margin-right: 10px;
}

.new_back span {
	display: block;
	color: #fff;
	font-weight: 400;
	font-size: 10px;
	word-break: break-all;
	letter-spacing: 0.5px;
}

/*
.new_img {
	max-height: 300px;
	overflow: hidden;
}*/
.new_img img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.new_info {
	padding: 25px 15px;
	color: #fff;
	background: #1e1e1e;
	/*font-size: 12px;
	line-height: 1.8;*/
}

.article__block span {
	font-weight: 400;
	display: block;
	margin-bottom: 25px;
	letter-spacing: 0.3px;
}

.article__block {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.7;
}

.article__block:not(:last-child) {
	margin-bottom: 20px;
}

.article__block strong {
	display: block;
	font-weight: 700;
	font-style: italic;
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.new_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.new_bottom span {
	display: block;
	font-size: 12px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.new_socialMedia {
	display: flex;
}

.new_socialMedia a {
	display: block;
	cursor: pointer;
}

.new_socialMedia a img {
	display: block;
}

.new_socialMedia a:not(:last-child) {
	margin-right: 20px;
}

.news_source {
	display: block;
	font-size: 15px;
	color: #339FE0;
	letter-spacing: 0.5px;
}

.new_info img {
	display: block;
	max-width: 100%;
	height: auto;
}

.new_info a {
	color: #fff;
	font-weight: 400;
	line-height: 1.5;
	text-decoration: underline;
	font-size: 12px;
}

.confirm-policy {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.confirm-policy label {
	display: block;
	width: 35px;
	height: 30px;
	position: relative;
	border: 3px solid #7A7A7A;
	margin-right: 10px;
}

.confirm-policy label input {
	display: none;
}

.confirm-policy label img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.confirm-policy label img.active {
	display: block;
}

.confirm-policy p {
	display: block;
	margin: 0;
	font-weight: 400;
	color: #7a7a7a;
	font-size: 15px;
}

.confirm-policy p a {
	display: inline-block;
	font-weight: 400;
	color: #7a7a7a;
	font-size: 15px;
}

@media (max-width: 350px) {
	a.back {
		margin-right: 25px;
	}

	div.my-biz-relkama_top strong {
		font-size: 10px;
	}
}

.filter_item.active {
	background: #339FE0;
	color: #fff;
}

.smi_posts_list {
	color: #fff;
	line-height: 1.4;
}

.smi_posts_list>div:not(:last-child) {
	margin-bottom: 15px;
}

.smi-body {
	padding: 10px;
}

.smi-body>p {
	display: block;
	color: #fff;
	padding-left: 15px;
}

.smi-body>p a {
	display: block;
	color: #3cdcdc;
}

.smi_btns {
	display: flex;
	/*padding: 0 10px;*/
	margin-bottom: 25px;
}

.smi_btns p {
	margin: 0;
	width: 50%;
}

.smi_btns a {
	font-size: 14px;
}

.add-news_form {
	display: block;
}

.checkbox {
	display: flex;
	align-items: center;
}

.checkbox>div {
	width: 20px;
	height: 20px;
	border: 1px solid #fff;
	background: none;
	position: relative;
	border-radius: 6px;
	margin-right: 15px;
}

.checkbox>div img {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.smi_posts_list div {
	border-radius: 10px;
	padding: 10px;
	border: 2px solid;
}

.smi_posts_list div:nth-child(even) {
	border-color: #fff;
}

.smi_posts_list div:nth-child(odd) {
	border-color: #3cdcdc;
}

.smi_posts_list span {
	display: block;
}

.add-ad form>div {
	color: #fff;
	margin-bottom: 15px;
}

.ad-cats-list {
	padding: 15px;
}

.ad-cats-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 30px;
	text-align: center;
}

.ad-cats-list ul li:not(:last-child),
.one_ad ul li {
	margin-bottom: 10px;
}

.ad-cats-list ul a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 25px;
}

.one_ad {
	padding: 15px;
}

.one_ad img {
	display: block;
	max-width: 100%;
	height: auto;
}

.back_flex img {
	margin-right: 7px;
}

.back_flex {
	margin-bottom: 25px !important;
}

.one_ad ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 30px;
}

.one_ad h1 {
	color: #fff;
	margin: 0;
	font-size: 25px;
	margin-bottom: 10px;
}

.one_ad div {
	margin: 0;
	color: #fff;
}




.eating-info_top {
	width: 100%;
	height: 230px;
	background: url('../../imgs/sushi-imperator.png') no-repeat center;
	background-size: cover;
	position: relative;
}

.eating-info_back {
	position: absolute;
	top: 15px;
	left: 15px;
	height: 35px;
	width: 35px;
	background: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eating-info_content {
	padding: 0 15px;
	margin: 25px 0 30px 0;
}

.eating-info_content h1 {
	margin: 0 0 20px 0;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.eating-info-content_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.eating-info-content_flex .left {
	display: flex;
	align-items: center;
	font-size: 12px;
	color: #fff;
	font-weight: 400;
}

.eating-info-content_flex .left img {
	display: block;
	margin-right: 5px;
}

.eating-info-content_flex .left span {
	display: inline;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	margin: 0 5px;
}

.eating-info-content_flex .right {
	padding: 8px 14px;
	background: #323232;
	border-radius: 5px;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
	color: #fff;
}

.eating-info_menu {
	padding: 20px 15px;
	margin: 0 15px;
	background: #323232;
	border-radius: 15px;
}

.eating-info_menu h1 {
	font-size: 14px;
	color: #fff;
	margin: 0 0 20px 0;
	font-weight: 700;
}

.eating-info-menu_item {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	padding-bottom: 15px;
	/*border-bottom: 1px solid #414141;*/
	margin-bottom: 15px;
}

.eating-info-menu_item .left {
	width: 100%;
	margin-top: 10px;
}

.eating-info-menu_item .left strong,
.selected-product_flex .left strong {
	display: block;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #000;
	padding-left: 5px;
}

.eating-info-menu_item .left p,
.selected-product_flex .left p {
	font-size: 12px;
	border: 1px solid #339FE0;
	margin: 0 0 15px 0;
	display: block;
	padding: 5px;
	color: #000;
	border-radius: 7px;
	font-weight: 400;
	max-height: 250px;
	overflow-y: auto;
	max-width: 100% !important;
}

.eating-info-menu_item .left p,
.selected-product_flex .left p {
	max-height: 60px;
	border: none;
}

.eating-info-menu_item .left p::-webkit-scrollbar {
	display: none;
}

.eating-info-menu_item .left .product_price,
.selected-product_flex .left span,
.order-product-prices__item span {
	font-size: 38px;
	color: #339FE0;
	font-weight: 700;
	display: block;
	margin-bottom: 0;
}

.eating-info-menu_item .photo {
	display: flex;
	justify-content: center;
}

.eating-info-menu_item .photo img {
	max-height: 250px !important;
	display: block;
	max-width: 100%;
	height: auto;
	min-height: 250px !important;
	object-fit: cover;
}


.selected-product_back {
	display: flex;
	color: #fff;
	text-decoration: none;
	align-items: center;
	font-weight: 700;
	font-size: 14px;
	margin-bottom: 15px;
}

.selected-product_back img {
	margin-right: 5px;
}

.selected-product_photo {
	display: block;
	width: 100%;
	height: auto;
}

.selected-product_flex {
	display: flex;
	justify-content: space-between;
	margin-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #414141;
}

.selected-product_flex .left {
	width: 50%;
}

.add-to-busket {
	display: flex;
	align-items: center;
	background: #212121;
	padding: 15px 18px;
	font-size: 12px;
	font-weight: 400;
	border-radius: 5px;
}

.add-to-busket.active {
	background: #0ff;
}

.add-to-busket.active img {
	opacity: 1;
}

.add-to-busket img {
	margin-right: 6px;
	opacity: 0.7;
}

.quantity-and-addition {
	margin-top: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #414141;
	margin-bottom: 15px;
}

.quantity-and-addition .flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.quantity-and-addition .flex p {
	font-size: 12px;
	color: #fff;
	margin: 0;
	font-weight: 400;
	margin-right: 15px;
}

.quantity-and-addition .flex input,
.quantity-and-addition .flex div {
	background: #212121;
	border-radius: 5px;
	padding: 10px 15px;
	color: #fff;
	border: none;
	display: block;
	font-size: 12px;
	font-weight: 400;
	text-align: center;
}

.quantity-and-addition .flex input {
	width: 70px;
}

.add-more-food {
	display: block;
	width: 100%;
	border: none;
	background: #212121;
	border-radius: 5px;
	padding: 12px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	font-weight: 400;
}

/* преловадер на клик магазина
	*/
.preloader_shop_list {
	position: relative;
	min-height: 60px;
}

.preloader_shop_list:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .9);
	height: 100%;
	width: 100%;
	display: block !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.preloader_shop_list:after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -15px;
	width: 30px;
	height: 30px;
	border: 4px rgba(0, 0, 0, .25) solid;
	border-top: 4px #1071b6 solid;
	border-radius: 50%;
	-webkit-animation: preloader_shop_list .6s infinite linear;
	animation: preloader_shop_list .6s infinite linear;
}

@-webkit-keyframes preloader_shop_list {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes preloader_shop_list {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

/* ---------- */


.map-slider__title {
	font-size: 13px;
	color: #000;
	display: block;
	font-weight: 700;
	text-align: center;
	margin: 0 0 10px 0;
}

.my-orders {
	display: none;
	position: fixed;
	top: 250px;
	z-index: 20;
	right: 15px;
	height: 215px;
	overflow-y: auto;
}

.my_order {
	width: 60px;
	height: 60px;
	border: 2px solid #06BC39;
	border-radius: 50%;
	display: block;
	text-decoration: none;
}

.my-orders .my_order.swing {
	-webkit-animation-name: swing;
	animation-name: swing;
	animation-iteration-count: 1;
	animation-duration: 0.6s;
	animation-timing-function: ease;
	/*animation-delay: 5s;*/
}

.my_order:not(:last-child) {
	margin-bottom: 15px;
}

.my_order img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	width: 100%;
}

/* www */
.order-info-popup .product_img_order {
	width: 80px;
}

.order-info-popup .order-info-item__left>div {
	max-width: 150px;
}


.popup {
	display: flex;
	flex-direction: column;
	position: fixed;
	bottom: -100%;
	left: 0;
	height: 80%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background: #fff;
	z-index: 50;
	width: 100%;
	transition: all 0.3s ease;
}

.popup.active {
	bottom: 0;
}

.popup__body {
	overflow-y: auto;
	display: block;
	flex: auto;
	padding: 16px 16px 50px 16px;
}

.close-popup img {
	display: block;
	margin-left: auto;
	cursor: pointer;
}

.close-popup {
	position: absolute;
	right: 10px;
	top: -50px;
	display: inline-block;
}

.product-popup__item {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #E3E3E3;
}

.product-popup__photo img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.product-popup__item strong {
	font-size: 24px;
	display: block;
	font-weight: 400;
	margin: 15px 0 10px 0;
}

.product-description {
	font-size: 10px;
	color: #515151;
	font-weight: 400;
	margin: 10px 0 0 0;
	word-break: break-all;
}

.product-popup__radio p {
	color: #000;
	font-size: 12px;
	font-weight: 400;
	margin: 0 0 15px 0;
}

.product-popup__option label {
	display: flex;
	align-items: center;
}

.product-popup__option:not(:last-child) {
	margin-bottom: 10px;
}

.product-popup__option input {
	display: none;
}

.product-popup__option .check,
.order-info__item .check {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15px;
	min-width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #F1F1F1;
	transition: all 0.3s ease;
	margin: 0 10px 0 0;
}

.product-popup__option .check img,
.order-info__item .check img {
	opacity: 0;
	transition: all 0.3s ease;
}

.product-popup__option input:checked+.check,
.order-info__item input:checked+.check {
	background: #E3F5FF;
}

.product-popup__option input:checked+.check img,
.order-info__item input:checked+.check img {
	opacity: 1;
}

.product-popup__option p {
	font-size: 10px;
	font-weight: 400;
	margin: 0;
}

.product-popup__bottom {
	display: flex;
	width: 95%;
	margin: 0 auto;
	padding-bottom: 5px;
}

.product-popup__quantity {
	display: flex;
	margin-right: 10px;
	width: 50%;
}

.product-popup__quantity>* {
	display: block;
	padding: 15px 20px;
	background: #F4F4F4;
	border-radius: 5px;
	font-size: 14px;
	color: #339FE0;
	font-weight: 700;
	text-align: center;
	flex: auto;
}

.product-popup-quantity_number {
	margin: 0 3px;
}

.product-popup__buy {
	display: none;
	justify-content: center;
	align-items: center;
	flex: auto;
	padding: 15px 5px;
	background: #339FE0;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 5px;
	text-decoration: none;
}

.product-popup__buy.active {
	display: flex;
}

.product-popup__remove {
	display: none;
	justify-content: center;
	align-items: center;
	flex: auto;
	padding: 15px 5px;
	background: #FA1414;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 5px;
	text-decoration: none;
}

.product-popup__remove.active {
	display: flex;
}

.product-popup__edit {
	display: none;
	justify-content: center;
	align-items: center;
	flex: auto;
	padding: 15px 5px;
	background: #339FE0;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
	border: none;
	outline: none;
	border-radius: 5px;
	text-decoration: none;
}

.product-popup__edit.active {
	display: flex;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 49;
	display: none;
}

body.lock {
	overflow: hidden;
}

.go-pay {
	position: fixed;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	padding: 10px;
	border-radius: 5px;
	background: #339fe0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 11;
	bottom: -100%;
	transition: all 0.3s ease;
	text-decoration: none;
}

.go-pay.active {
	bottom: 5px;
}

.go-pay__left {
	display: flex;
	align-items: center;
}

.go-pay__circle {
	padding: 7px;
	display: block;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	color: #339FE0;
	font-size: 10px;
	font-weight: 700;
	margin-right: 5px;
	min-width: 27px;
}

.go-pay__left p {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.go-pay__amount {
	color: #fff;
	font-weight: 700;
	display: block;
	font-size: 12px;
	margin: 0 0 0 10px;
}

.popup__body {
	overflow-y: auto;
	display: block;
	flex: auto;
	padding: 16px 16px 50px 16px;
}

.order-info__items {
	padding: 30px 0;
	border-top: 1px solid #EAEAEA;
	border-bottom: 1px solid #EAEAEA;
	margin-bottom: 30px;
}

.order-info__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.order-info-item__left {
	display: flex;
	align-items: center;
}

.order-info-item__left>img {
	display: block;
	max-width: 100%;
	margin-right: 20px;
}

.order-info-popup .product_img_order {
	width: 80px;
}

.order-info-popup .order-info-item__left>div {
	max-width: 150px;
}

.order-info-item__left strong {
	display: block;
	margin: 0 0 15px;
	font-size: 12px;
	font-weight: 400;
	color: #000;
	word-break: break-all;
}

.order-info-item__left p {
	font-size: 9px;
	font-weight: 400;
	margin: 0;
	color: #000;
}

.selected-product_flex .left span {
	font-size: 12px;
	font-weight: 700;
	color: #339FE0;
	padding: 5px;
	background: #E3F5FF;
	display: inline-block;
	border-radius: 2px;
}

.order-info__pay {
	margin-bottom: 30px;
}

.order-info__top strong,
.order-info__pay strong,
.order-info__sum strong,
.order-info__del strong {
	font-size: 18px;
	font-weight: 400;
	display: block;
	line-height: 1;
}

.order-info-pay__flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.order-info-pay__flex .left {
	display: flex;
	align-items: center;
}

.order-info-pay__flex img {
	display: block;
	max-width: 100%;
	height: auto;
}

.order-info-pay__flex .left img {
	display: block;
	margin-right: 10px;
}

.order-info-pay__flex .left p {
	font-size: 12px;
	font-weight: 400;
	margin: 0 0 5px 0;
	color: #000;
}

.order-info-pay__flex .left span {
	display: block;
	font-size: 9px;
	color: #676767;
	font-weight: 400;
}

.order-info-pay__flex img {
	display: block;
	max-width: 100%;
	height: auto;
}

.order-info-sum__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.order-info-sum__item:not(:last-child) {
	margin-bottom: 15px;
}

.order-info-sum__item p {
	font-size: 9px;
	color: #000;
	font-weight: 400;
	margin: 0;
}

.selected-product_flex .left span {
	font-size: 12px;
	font-weight: 700;
	color: #339FE0;
	padding: 5px;
	background: #E3F5FF;
	display: inline-block;
	border-radius: 2px;
}

.close-popup {
	position: absolute;
	right: 10px;
	top: -50px;
	display: inline-block;
}

.close-popup img {
	display: block;
	margin-left: auto;
	cursor: pointer;
}

.order-info__sum strong,
.order-info__pay strong,
.order-info__del strong {
	margin-bottom: 15px;
}

.order-info__item:not(:last-child) {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #EAEAEA;
}

.order-info__del {
	margin-top: 30px;
}

.eating-info-content_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.eating-info-content_flex .left {
	display: flex;
	align-items: center;
	font-size: 8px;
	color: #000;
	font-weight: 400;
}

.eating-info-content_flex .left img {
	display: block;
	margin-right: 5px;
	width: 19px;
}

.eating-info-content_flex .left span {
	display: inline;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	margin: 0 5px;
	color: #000;
}

.eating-info-content_flex .right {
	padding: 9px 5px;
	background: #EAEAEA;
	border-radius: 5px;
	text-align: center;
	font-size: 7px;
	font-weight: 400;
	color: #000;
}

.go-to-store .eating-info-content_flex .right {
	padding: 5px 10px
}

.gm-style .gm-style-iw-c {
	padding: 10px 20px 10px 10px !important;
	background: #fff !important;
	border-radius: 5px !important;
	max-width: 345px !important;
	z-index: 50;
}

.go-to-store__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
}

.go-to-store__top strong {
	font-size: 9px;
	font-weight: 700;
	display: block;
	color: #000;
}

.go-to-store__opened {
	display: flex;
	align-items: center;
}

.go-to-store__opened p {
	color: #000;
	margin: 0;
	font-size: 7px;
	font-weight: 700;
}

.go-to-store__opened .dot {
	width: 10px;
	height: 10px;
	min-width: 10px;
	display: block;
	border-radius: 50%;
	background: #2DF07B;
	margin-right: 5px;
	animation-name: blink;
	animation-timing-function: linear;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

.go-to-store__opened .dot.green {
	background: #2DF07B;
}

.go-to-store__opened .dot.red {
	background: red;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

.gm-style .gm-style-iw-d {
	padding: 0 !important;
	overflow: auto !important;
}

.go-to-store>a {
	display: inline-block;
	background: #339FE0;
	border-radius: 5px;
	padding: 8px 40px;
	text-align: center;
	color: #fff;
	font-weight: 400;
	font-size: 10px;
	text-decoration: none;
	width: max-content;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	outline: none;
}

.map-slider {
	display: none;
}

.map_toggle_cat_map {
	width: 92%;
	left: 50%;
	top: 89px;
	transform: translateX(-50%);
	position: absolute;
	z-index: 3;
	border: none;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 10px 10px 10px 10px;
	font-size: 10px;
	color: #2B2B2B;
	font-weight: 400;
	letter-spacing: 1px;
}

.add_market {
	position: absolute;
	top: 20px;
	right: 17px;
	border: 1px solid #000;
	padding: 10px;
	border-radius: 23px;
	background-color: #eee;
}

.add_market a {
	background: url(/imgs/free-icon-shopping-cart-of-checkered-design-34627.png);
	width: 20px;
	height: 20px;
	display: block;
	z-index: 99999999999999999;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.chat_alert {
	background: #2E99DA;
	border-radius: 50%;
	width: 85px;
	height: 85px;
	min-width: 85px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 70px;
	cursor: pointer;
}

.chat_alert img {
	display: block;
	width: 27px;
}

.chat_alert span {
	font-size: 14px;
	color: #fff;
	font-weight: 400;
	margin-top: 5px;
}

.business_go_text {
	display: inline-block !important;
	font-weight: 400 !important;
	padding: 15px !important;
	background: #EEEEEE !important;
	border-radius: 10px !important;
	padding: 10px !important;
	width: max-content;
	max-width: 100%;
}

.auth-page {
	background-image: none;
	background: #fff;
}

.auth-container {
	display: block;
	max-width: 1682px;
	margin: 0 auto;
	flex: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.auth-header {
	display: flex;
	padding-bottom: 40px;
	border-bottom: 1px solid #949494;
	align-items: center;
	margin: 0 30px 50px 30px;
}

.header-lang {
	color: #949494;
	border: none;
	background: transparent;
	border-bottom: 1px solid #949494;
	padding-bottom: 5px;
	width: 70px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('../../imgs/header-lang-arrow.svg');
	background-repeat: no-repeat;
	background-position: 95% 40%;
	outline: none;
}

.auth-header-logo {
	margin: 0 auto;
	display: block;
	max-width: 100%;
	height: auto;
}

.auth-flex {
	display: flex;
	width: 100%;
	margin: 0 auto;
	background: #F8F8F8;
	flex: auto;
}

.auth-flex__left,
.auth-flex__right {
	width: 100%;
}

.auth-flex__right {
	background-image: url(../../imgs/login-right_bg.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.auth_tab_contnet {
	display: none;
	max-width: 400px;
	width: 100%;
}

.auth_tab_contnet.active {
	display: block;
}

.auth-page {
	padding: 30px 15px;
}

.login-tabs {
	display: flex;
}

.login_tab {
	width: 50%;
	border: 1px solid #148FDD;
	padding: 25px 10px;
	color: #148FDD;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
}

.login_tab.active {
	background: #148FDD;
	color: #fff;
}

.login-tabs__content {
	padding: 50px;
}

.auth_tab_title {
	display: block;
	font-weight: 700;
	font-size: 24px;
	color: #000;
	margin: 0 0 30px 0;
}

.auth_tab_contnet label {
	display: block;
	width: 100%;
	margin-bottom: 25px;
}

.auth_tab_contnet label input {
	display: block;
	width: 100%;
	background: #fff;
	border: 1px solid #E3E3E3;
	padding: 20px 15px;
	color: #000;
	font-weight: 400;
	font-size: 16px;
	outline: none;
}

.auth_tab_contnet label input:focus {
	background: #fff;
	border-color: #148FDD;
}

.auth_tab_contnet label input[type="submit"] {
	background: #148FDD;
	color: #fff;
}

.auth-logo img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.auth-logo {
	margin-bottom: 30px;
}

.auth-footer {
	margin: 50px 30px 0 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.auth-footer__logo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.auth-footer__media {
	display: flex;
	align-items: center;
}

.auth-footer__media strong {
	display: block;
	font-size: 20px;
	color: #000;
	font-weight: 400;
	margin-right: 36px;
}

.auth-footer__link {
	display: flex;
	align-items: center;
	color: #000;
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
}

.auth-footer__link img {
	margin-right: 7px;
	display: block;
}

.auth-footer__link:not(:last-child) {
	margin-right: 20px;
}

.auth-footer__copyright p {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	font-weight: 400;
}

.header__right {
	display: flex;
	align-items: center;
}

.header-right__item {
	cursor: pointer;
	position: relative;
}

.navbar-langs {
	display: none;
	position: absolute;
	top: 49px;
	left: -13px;
	z-index: 11;
	background: #fff;
	padding: 5px 15px
}

.navbar-langs a {
	display: block;
}

.navbar-langs a:not(:last-child) {
	margin-bottom: 5px;
}

.navbar-langs a img {
	display: block;
	width: 41px;
	height: auto;
}

.header-right__item:not(:last-child) {
	margin-right: 15px;
}

.header-right__item img {
	display: block;
	margin: 0 auto;
}

.current_lang_img {
	width: 41px;
}

.sidebar {
	position: fixed;
	top: 116px;
	left: -100%;
	width: 350px;
	height: calc(100% - 116px - 106px);
	background: #FFFFFF;
	z-index: 100;
	transition: all 0.3s ease;
	overflow-y: auto;
}

.sidebar.active {
	left: 0;
}

.sidebar-close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	display: none;
}

.sidebar-close img {
	width: 60px;
	display: block;
}

.sidebar__list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar-list__item:not(:last-child) {
	margin-bottom: 20px;
}

.sidebar-list__item a {
	text-decoration: none;
	display: block;
	font-size: 15px;
	color: #242424;
	font-weight: 400;
	background: #F5F5F5;
	border-radius: 10px;
	border: 2px solid #2E99DA;
	padding: 15px 20px;
}

.shop_list_page {
	max-width: 1225px;
	width: 100%;
	margin: 0 auto;
}

.sidebar__top {
	height: 180px;
	background-image: url('../../imgs/sidebar-top-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.sidebar__content {
	padding: 20px;
	overflow-y: auto;
}

.header__profile a {
	display: block;
}

.header__profile img {
	width: 48px;
	display: block;
	border-radius: 50%;
	height: 48px;
	object-fit: cover;
}

.header-right__item a span {
	font-size: 12px;
	font-weight: 400;
	display: block;
	color: #000;
	margin-right: 9px;

}

/*body {
    background-image: url(../../imgs/login-right_bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
main {
    padding-top: 150px;
    width: calc(100% - 350px);
    margin-left: auto;
    padding-bottom: 150px;
}*/
.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 200;
	background: #fff;
	border-top: 1px solid #EFEFEF;
}

.footer {
	padding: 30px 15px
}

.footer>img {
	display: block;
	max-width: 100%;
	width: 180px;
	height: auto;
	margin: 0 auto;
}

.map_main {
	display: flex;
	flex-direction: column;
	flex: auto;
}

.map_main .map {
	flex: auto;
	width: 100%;
	margin: -43px 0;
}

body>.chat_alert {
	display: none;
}

.navbar_logout {
	margin-left: 20px;
}

.navbar_logout img {
	display: block;
}

.chat_frame {
	min-height: 100vh;
}

.main_chat {
	padding-left: 25px;
	padding-right: 25px;
}

body#page-top {
	min-height: 100vh;
}

.my-favs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}

body {
	background: #F2F3F7;
}

.body-container {
	width: 100%;
}

.navbar__wrapper {
	background: #fff;
	padding-bottom: 30px;
}

.index_main,
.new-container {
	max-width: 1510px;
	margin: 0 auto;
	padding: 0 15px;
}

.navbar-top {
	display: none;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 15px;
}

.navbar-top a {
	display: block;
	text-decoration: none;
	color: #7b7a7b;
	font-weight: 400;
	font-size: 18px;
	position: relative;
}

.navbar-top a:after {
	content: '';
	position: absolute;
	bottom: -7px;
	left: 50%;
	width: 80%;
	height: 4px;
	border-radius: 7px;
	background: #000;
	opacity: 0;
	transform: translateX(-50%);
}

.navbar-top a:not(:last-child) {
	margin-right: 30px;
}

.navbar-top a.active {
	font-weight: 700;
	color: #000;
	font-size: 24px;
}

.navbar-top a.active:after {
	opacity: 1;
}

#navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 0;
}

.desktop-categories-wrapper {
	border-top: 1px solid #949494;
}

.nav-left {
	display: flex;
	align-items: center;
}

.navbar-logo a {
	display: block;
}

.navbar-logo a img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 186px;
}

.map {
	display: none;
}

.content-page .auth-footer {
	margin: 0;
	padding: 32px 0;
}

.desktop-categories {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
}

.desktop-categories__wrapper {
	display: flex;
	align-items: center;
}

.desktop-categories__item {
	display: flex;
	align-items: center;
	color: #7b7a7b;
	font-size: 12px;
	font-weight: 400;
	cursor: pointer;
}

.desktop-categories__item img {
	margin-left: 10px;
}

.desktop-categories__item:not(:last-child) {
	margin-right: 20px;
}

.desktop-categories__item:first-child {
	padding-right: 20px;
	border-right: 1px solid #7b7a7b;
}

.desktop-slides img {
	display: block;
	max-width: 100%;
	height: auto;
}

.desktop-slider {
	margin-bottom: 50px;
}

.desktop-section {
	padding-bottom: 60px;
	border-bottom: 1px solid #949494;
}

.desktop-section__title {
	display: block;
	font-size: 45px;
	color: #000;
	font-weight: 700;
	margin-bottom: 25px;
}

.desktop-products__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 30px;
}

.desktop__product {
	background: #fff;
	transition: all 0.3s ease;
	border-radius: 10px;
	cursor: pointer;
}

.desktop__product:hover {
	box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.05);
}

.desktop-product__top {
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 10px;
}

.desktop-product__top .quick-view {
	position: absolute;
	top: 50%;
	left: 50%;
	text-decoration: none;
	z-index: 2;
	background: #339FE0;
	padding: 29px;
	color: #fff;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	width: 80%;
	opacity: 0;
	transform: translate(-50%, -50%);
}

.desktop__product:hover .quick-view {
	opacity: 1;
}

.desktop-product__top img {
	display: block;
	max-width: 100%;
	height: auto;
}

.desktop-product__top .sale {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #323335;
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	width: 80px;
	height: 80px;
	position: absolute;
	top: 20px;
	right: 0;
	z-index: 1;
}

.desktop-product__bottom p {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	margin: 0 0 20px 0;
}

.product-rate {
	display: flex;
	margin-bottom: 8px;
}

.product-rate img {
	display: block;
	cursor: pointer;
}

.product-rate img:not(:last-child) {
	margin-right: 5px;
}

.desktop-product-price {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.desktop-product-price strong {
	font-size: 25px;
	font-weight: 400;
	display: block;
	color: #000;
	line-height: 1.4;
}

.desktop-product-price .old-price {
	font-size: 14px;
	display: block;
	color: #969696;
	margin-left: 15px;
	line-height: 1.4;
}

.desktop-product__btns {
	display: flex;
	align-items: center;
}

.desktop-product__btn {
	display: block;
	cursor: pointer;
}

.desktop-product__btn img {
	display: block;
}

.desktop-product__btn:not(:last-child) {
	margin-right: 25px;
}

.our-brands img {
	display: block;
	max-width: 100%;
	height: auto;
}

.desktop-section:not(:last-child) {
	margin-bottom: 60px;
}

.new-cats__title {
	display: none;
}

.desktop-slider {
	display: flex;
	background: #fff;
	padding: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.desktop-slider__left,
.desktop-slider__right {
	width: 20%;
}

.desktop-slider__center {
	width: 60%;
	margin: 0 16px;
}

.desktop-slider__left strong {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 25px;
	padding-left: 10px;
	display: block;
}

.desktop-slider-left__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.desktop-slider-left__item div {
	display: flex;
	align-items: center;
}

.desktop-slider-left__item div img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-right: 10px;
	width: 30px;
}

.desktop-slider-left__item a {
	text-decoration: none;
	color: #000;
	font-size: 14px;
	font-weight: 400;
}

.desktop-slider-left__item:not(:last-child) {
	margin-bottom: 20px;
}

.category_top_block {
	text-align: center;
}

.category_top_block {
	display: flex;
	justify-content: center;
	align-items: baseline;
}

.category_decoration {
	display: block;
	width: 20px;
	height: 10px;
	background-color: #0098E6;
	border-radius: 10px;
	margin: 0 20px 0;
}

.category_top_block p {
	font-size: 20px;
	font-weight: bold;
}

.category_top_title {
	margin-top: 80px;
}

.category_top_block p span {
	font-size: 16px;
	font-weight: 400;
}

.buyers-club {
	background: #FFE6D4;
	padding: 12px;
	margin-bottom: 9px;
}

.buyers-club p {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	margin: 0 0 7px 0;
}

.buyers-club strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 27px;
}

.buyers-club a {
	background: #222222;
	padding: 6px 17px;
	border-radius: 38px;
	text-decoration: none;
	color: #fff;
	width: max-content;
	display: block;
	margin-left: auto;
}

.online-trade-show {
	display: block;
	width: 100%;
	text-decoration: none;
	background: #0098E6;
	padding: 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 9px;
}

.list__item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #E6E8EB;
	justify-content: space-between;
}

.list-item__left {
	margin-right: 10px;
}

.list-item__left strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.list-item__right img {
	display: block;
}

.list__item:not(:last-child) {
	margin-bottom: 15px;
}

.desktop-slides-dots {
	margin-top: 10px;
}

.desktop-slides-dots ul {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
}

.desktop-slides-dots li:not(:last-child) {
	margin-right: 8px;
}

.desktop-slides-dots li button {
	font-size: 0;
	border-radius: 50%;
	min-height: 10px;
	min-width: 10px;
	border: 2px solid #D9D9D9;
	outline: none;
	background: #d9d9d9;
	padding: 0;
	cursor: pointer;
}

.desktop-slides-dots li.slick-active button {
	background: #fff;
	border-color: #0098E6;
}

.trade-show__top {
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
	padding: 16px 30px;
	display: grid;
	grid-template-columns: auto 1fr 1fr 1fr;
	grid-gap: 20px;
	align-items: center;
}

.trade-show-top__banner strong {
	font-size: 28px;
	display: block;
	font-weight: 700;
	margin-bottom: 12px;
	color: #000;
}

.trade-show-top__banner p {
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 0 0 30px 0;
}

.trade-show-top__banner a {
	display: block;
	width: max-content;
	cursor: pointer;
	text-decoration: none;
	padding: 10px 37px;
	background: #3F3F3F;
	color: #fff;
	text-align: center;
	border-radius: 38px;
	font-size: 18px;
	font-weight: 400;
}

.trade-show__photos {
	display: flex;
}

.trade-show__photo {
	width: 50%;
	background: #F6F6F6;
	padding: 21px 12px;
}

.trade-show__photo:first-child {
	margin-right: 8px;
}

.trade-show-top__item {
	padding: 12px;
	background: #fff;
	border-radius: 10px;
}

.trade-show-top__item strong {
	font-size: 14px;
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

.trade-show-top__item p {
	font-size: 12px;
	font-weight: 400;
	margin: 0 0 15px 0;
}

.trade-show__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	margin-bottom: 42px;
}

.trade-show__item {
	background: #fff;
	border-radius: 7px;
	padding: 11px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.trade-show__item>p {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	margin: 0 0 12px 0;
	padding-left: 30px;
}

.trade-show-item__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 7px;
}

.trade-show-grid__item p {
	font-size: 13px;
	font-weight: 400;
	color: #000;
	margin: 0;
	text-align: center;
}

.trade-show-grid__item p:not(:last-child) {
	margin-bottom: 2px;
}

.trade-show-grid__item .trade-show__photo {
	width: 100%;
	margin-right: 0;
	padding: 7px;
}

.trade-show-grid__item .trade-show__photo img {
	margin: 0 auto;
	display: block;
	max-width: 100%;
	height: auto;
}

.products {
	display: flex;
	margin-bottom: 40px;
}

.products__item {
	width: 50%;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.products__item:first-child {
	margin-right: 18px;
}

.products__item strong {
	display: block;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 4px;
}

.products__item p {
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 35px 0;
}

.products-item__flex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 11px;
}

.products-item__photo {
	background: #F7F7F7;
	border-radius: 9px;
	padding: 15px;
}

.products-item__photo span {
	font-size: 16px;
	display: block;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
}

.products-item__photo img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.categorie-new__title {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.categorie-new__title strong {
	display: block;
	font-size: 25px;
	color: #333333;
	font-weight: 700;
	text-transform: uppercase;
	margin-right: 35px;
}

.categorie-new__title .line {
	flex: auto;
	border-radius: 25px;
	height: 5px;
	background: #DCDEE3;
}

.categorie-new__content {
	display: flex;
}

.categorie-new__left {
	width: 20%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.categorie-new__left p {
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 20px 0;
}

.categorie-new__left a {
	display: block;
	text-decoration: none;
	width: max-content;
	background: #fff;
	padding: 9px 17px;
	border-radius: 38px;
	text-align: center;
	color: #000;
	font-size: 14px;
}

.categorie-new__right {
	width: 80%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #F4F4F4;
	grid-gap: 2px;
}

.categorie-new-right__item {
	background: #fff;
	padding: 15px 2px 2px 15px;
}

.categorie-new-right__item p {
	font-size: 16px;
	font-weight: 700;
	color: #000;
	margin: 0 0 8px 0;
}

.categorie-new-right__item span {
	font-size: 14px;
	font-weight: 400;
	display: block;
	color: #000;
	margin: 0 0 3px 0;
}

.categorie-new-right__item img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-top: auto;
}

.categorie-new {
	margin-bottom: 25px;
}

.weekly-deals {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}

.weekly-deals__content {
	background: #fff;
	padding: 9px 15px;
	display: flex;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.weekly-deals__product {
	width: 50%;
	text-align: center;
}

.weekly-deals__product img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 7px auto;
}

.weekly-deals__product a {
	padding: 10px 30px;
	background: #0098E6;
	display: block;
	width: max-content;
	margin: 0 auto;
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	border-radius: 38px;
	text-decoration: none;
}

.weekly-deals__product strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.weekly-deals__product .price_flex {
	display: flex;
	align-items: center;
	justify-content: center;
}

.weekly-deals__product .price_flex p {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
	color: #000;
}

.weekly-deals__product .price_flex span {
	font-size: 10px;
	color: #fff;
	font-weight: 400;
	padding: 2.5px 7.5px;
	background: #0098E6;
	border-radius: 20px;
	margin-left: 3px;
}

.weekly-deals__item .categorie-new__title strong {
	font-size: 20px;
	margin-right: 15px;
}

.request {
	margin-bottom: 40px;
}

.request__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 23px;
	align-items: flex-start;
}

.request__left {
	background: #C1E3FF;
	padding: 46px 40px;
}

.request__left h2 {
	font-size: 29px;
	font-weight: 400;
	display: block;
	margin: 0 0 45px 0;
}

.request-left__grid {
	max-width: 400px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px 95px;
	margin-bottom: 45px;
}

.request-left-grid__item strong {
	font-size: 20px;
	display: block;
	font-weight: 700;
	margin: 0;
}

.request-left-grid__item p {
	font-size: 12px;
	font-weight: 400;
	margin: 0;
}

.request__left a {
	display: block;
	width: max-content;
	text-decoration: none;
	color: #0B397A;
	font-size: 16px;
	font-weight: 400;
	border-radius: 38px;
	padding: 6.5px 11.5px;
	border: 1px solid #0B397A;
	background: transparent;
}

.request__right {
	border: 6px solid #DCDEE3;
	background: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 38px 35px;
}

.request__right strong {
	display: block;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #000;
}

.request__right p {
	font-weight: 400;
	font-size: 14px;
	color: #000;
	margin: 0 0 25px 0;
}

.request__form {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 11px;
}

.request__form input:not([type="file"]),
.request__form select,
.request__form textarea {
	font-family: 'Roboto', sans-serif;
	display: block;
	width: 100%;
	outline: none;
	border: 1px solid #C4C6CF;
	border-radius: 3px;
	padding: 9px 12px;
	font-size: 16px;
	font-weight: 400;
	color: #9999A6;
	background-color: transparent;
	resize: none;
}

.request__form textarea {
	height: 150px;
	overflow-y: auto;
}

.request__form input::placeholder {
	font-size: 16px;
	font-weight: 400;
	color: #9999A6;
}

.request__form select {
	background-image: url('../../imgs/request-arrow.png');
	background-repeat: no-repeat;
	background-position: 95% 50%;
	cursor: pointer;
}

.request__form input[type="submit"] {
	width: 100%;
	border: none;
	outline: none;
	border-radius: 38px;
	background: #0098E6;
	color: #fff;
	padding: 10px 33px;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	grid-column: 1/3;
}

.request__form .markets_add_img {
	display: block;
	max-width: 100%;
	height: auto;
}

.categorie-new__title p {
	font-size: 14px;
	color: #828795;
	margin: 0 14px;
	font-weight: 400;
}

.request .categorie-new__title strong {
	margin-right: 0;
}

.weekly-deals {
	margin-bottom: 40px;
}

.for-you {
	margin-bottom: 40px;
}

.for-you__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 12px;
}

.for-you__item {
	background: #fff;
	border-radius: 4px;
	padding: 12px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.for-you__photo {
	margin-bottom: 12px;
}

.for-you__photo img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.for-you__info p {
	font-size: 14px;
	color: #333333;
	font-weight: 400;
	margin: 0 0 12px 0;
}

.for-you__info strong {
	font-size: 15px;
	display: block;
	color: #333333;
	margin: 0 0 7px 0;
	font-weight: 700;
}

.for-you__info span {
	font-size: 12px;
	display: block;
	color: #666666;
	font-weight: 400;
}

.trade-services {
	margin-bottom: 40px;
}

.trade-services__subtitle {
	display: block;
	font-size: 14px;
	color: #333333;
	font-weight: 400;
	margin: 0 0 30px 0;
}

.trade-services__content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 22px;
}

.trade_service {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.trade-service__top {
	position: relative;
}

.trade-service__top img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

.trade-service__top p {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	z-index: 2;
}

.trade-service__info {
	background: #fff;
	padding: 16px 22px 19px 22px;
}

.trade-service__info strong {
	display: block;
	font-size: 16px;
	color: #333333;
	font-weight: 700;
	margin: 0 0 3px 0;
}

.trade-service__info p {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #333;
	margin: 0;
}

.region {
	display: none;
	margin-bottom: 50px;
}

.regions {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.region__item {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
}

.region__item img {
	display: block;
	margin-right: 10px;
}

.regions a {
	display: block;
	text-decoration: none;
	color: #0098E6;
	font-weight: 400;
	font-size: 14px;
}

.new-footer {
	background: #445268;
	padding: 65px 0 45px 0;
}

.new-footer__top {
	padding-bottom: 22px;
	border-bottom: 1px solid #313D52;
	margin-bottom: 23px;
}

.new-footer__form {
	margin-bottom: 50px;
}

.new-footer__form p {
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	margin: 0 0 17px 0;
}

.new-footer__form form {
	display: flex;
	max-width: 425px;
	margin: 0 auto;
	width: 100%;
	align-items: flex-start;
}

.new-footer-form__left {
	width: 70%;
	margin-right: 6px;
}

.new-footer-form__left input {
	width: 100%;
	display: block;
	background: #313D51;
	border: 1px solid #C6CAD1;
	padding: 10px;
	outline: none;
	font-size: 16px;
	color: #AAAAAA;
	font-weight: 400;
}

.new-footer-form__left input::placeholder {
	color: #aaa;
	font-size: 16px;
	font-weight: 400;
}

.new-footer-form__left small {
	display: block;
	font-size: 10px;
	font-weight: 400;
	color: #AAAAAA;
	margin-top: 5px;
}

.new-footer__form input[type="submit"] {
	display: block;
	flex: auto;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #C6CAD1;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	width: auto;
	background-color: transparent;
	cursor: pointer;
}

.new-footer__links {
	display: flex;
	justify-content: space-between;
}

.new-footer-links__column strong {
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	display: block;
	margin-bottom: 15px;
}

.new-footer-links__column a {
	text-decoration: none;
	display: block;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
}

.new-footer-links__column a:not(:last-child) {
	margin-bottom: 10px;
}

.new-footer__download {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.new-footer__download span {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin-right: 8px;
}

.new-footer__download a {
	display: block;
	text-decoration: none;
}

.new-footer__download a:not(:last-child) {
	margin-right: 5px;
}

.new-footer__download a img {
	display: block;
	max-width: 100%;
	height: auto;
}

.new-footer__bottom p {
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	margin: 0;
	line-height: 1.5;
}

.new-footer__bottom p:not(:last-child) {
	margin-bottom: 20px;
}

.product_title {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #000;
	margin: 0 0 30px 0;
}

.product__flex {
	display: flex;
}

.product__photo {
	width: 30%;
	margin-right: 40px;
}

.product__photo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.product__info {
	width: 70%;
}

.product_description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 20px;
}

.product_price {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #0098E6;
	margin-bottom: 20px;
}

.product .basket-success,
.eating-info-menu_item .left .basket-success {
	display: block;
	width: max-content;
	border: none;
	outline: none;
	border-radius: 38px;
	background: #0098E6;
	color: #fff;
	padding: 10px 24px;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	text-transform: uppercase;
}

.product {
	padding-bottom: 40px;
}

.new-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.90);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	display: none;
	z-index: 100;
}

.new-popup.active {
	display: flex;
}

.new-popup__body {
	max-width: 600px;
	width: 95%;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
	position: relative;
	padding: 60px 30px;
}

.new-popup__body .close-popup {
	position: absolute;
	top: -60px;
	right: 0;
	cursor: pointer;
	display: block;
}

.new-popup__body img:not(.close-popup) {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.new-popup__body p {
	font-size: 25px;
	text-align: center;
	margin: 30px 0 0 0;
	color: #000;
	font-weight: 700;
}

.auth-popup .login-tabs__content {
	padding: 20px 0 0 0;
}

.auth-popup .auth_tab_contnet {
	max-width: 100%;
	height: 400px;
	overflow-y: auto;
}

.product_quantity,
.product-price-wrapper {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
}

.product_quantity span {
	font-size: 18px;
	font-weight: 700;
	color: #0098E6;
	margin-bottom: 20px;
}

.product-price-wrapper span {
	display: inline;
}

.basket-buy {
	display: block;
	width: max-content;
	border: none;
	outline: none;
	border-radius: 38px;
	background: #0098E6;
	color: #fff;
	padding: 15px 40px;
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	font-weight: 400;
	cursor: pointer;
	text-transform: uppercase;
	margin-bottom: 40px;
	margin-left: auto;
}

.product-price-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 0px;
	padding-left: 5px;
}

.product_quantity {
	display: block;
	text-transform: capitalize;
}

.product_quantity input {
	display: block;
	width: 100%;
	max-width: 200px;
	outline: none;
	border: 1px solid #C4C6CF;
	border-radius: 3px;
	padding: 9px 12px;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	background-color: transparent;
	margin-top: 10px;
}

.selected-cats__top {
	display: flex;
	margin-bottom: 30px;
}

.selected-cats-top__left {
	background: #fff;
	border-radius: 5px;
	padding: 24px 16px;
	margin-right: 27px;
}

.selected-cats-top__left strong {
	font-size: 16px;
	font-weight: 600;
	display: block;
	margin-bottom: 24px;
	text-transform: uppercase;
}

.selected-cats-top__right {
	flex: auto;
}

.selected-cats-top__image {
	margin-bottom: 20px;
}

.selected-cats-top__image img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
}

.selected-cats-top__subcategories {
	background: #fff;
	border-radius: 5px;
	padding: 30px 16px;
	display: grid;
	justify-content: center;
	align-items: center;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 55px;
}

.selected-cats-top__subcategories .subcategorie img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.selected-cats-top__subcategories .subcategorie p {
	display: block;
	font-size: 14px;
	font-weight: 400;
	margin: 20px 0 0 0;
	text-align: center;
}

.selected-cats__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
	margin-bottom: 60px;
}

.selected-cats-grid__item {
	background: #fff;
	border-radius: 5px;
	padding: 30px 40px;
}

.selected-cats-grid__item strong {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 16px;
}

.selected-cats-grid__products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
}

.selected-cats-grid__product img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.selected-cats-grid__product p {
	font-size: 20px;
	font-weight: 700;
	margin: 12px 0 0 0;
	text-align: center;
}

.selected-cats__recomended {
	padding-bottom: 70px;
}

.selected-cats__recomended h1 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 35px 0;
	color: #000;
}

.selected-cats-recomended__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
}

.selected-cats-recomended__item {
	padding: 18px;
	background: #fff;
	border-radius: 5px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.selected-cats-recomended__item:hover {
	background: #0098E6;
	color: #fff;
}

.selected-cats-recomended__item:hover .selected-cats-recomended__info {
	display: none;
}

.selected-cats-recomended__item:hover .view-more {
	display: inline-block;
}

.selected-cats-recomended__image {
	margin-bottom: 10px;
}

.selected-cats-recomended__image img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	width: 100%;
}

.selected-cats-recomended__desc p {
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 15px 0;
}

.selected-cats-recomended__info .price {
	font-size: 16px;
	display: block;
	font-weight: 700;
	margin-bottom: 5px;
}

.selected-cats-recomended__info .piece {
	font-size: 13px;
	font-weight: 400;
	display: block;
	margin-bottom: 14px;
}

.county-and-years {
	display: flex;
}

.county-and-years .item {
	background: #ECECEC;
	border-radius: 7px;
	padding: 5px 7px;
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: #4D4D4D;
	margin-right: 8px;
}

.county-and-years .item img {
	display: block;
	margin-right: 4px;
}

.selected-cats-recomended__desc .view-more {
	display: none;
	text-decoration: none;
	border-radius: 19px;
	padding: 8px 32px;
	background: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #0098E6;
}

.pages_history {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	color: #7B7A7B;
	text-decoration: none;
	margin-right: 15px;
}

.pages-history_step {
	font-size: 14px;
	font-weight: 400;
	color: #7B7A7B;
	display: block;
	text-decoration: none;
	margin-right: 15px;
}

.pages-history_step:not(:first-child) {
	padding-left: 15px;
}

.order-product {
	display: flex;
	margin-bottom: 60px;
}

.order-product__left {
	margin-right: 50px;
}

.order-product__image img {
	display: block;
	max-width: 500px;
	height: auto;
	margin: 0 auto;
}

.view-larger-image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 16px 0;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
}

.view-larger-image img {
	display: block;
	margin-right: 11px;
}

.product-other-images img {
	display: block;
	max-width: 100%;
	height: auto;
}

.order-product__right {
	max-width: 675px;
}

.order-product__right strong {
	font-size: 20px;
	font-weight: 400;
	display: block;
	line-height: 150%;
}
.rating-area {
	display: flex;
	flex-direction: row-reverse;
	align-items: start;
	overflow: hidden;
	width: 265px;
	margin: 30px auto 10px;
}
.rating-area:not(:checked) > input {
	display: none;
}
.rating-area:not(:checked) > label {
	float: right;
	width: 42px;
	padding: 0;
	cursor: pointer;
	font-size: 32px;
	line-height: 32px;
	color: lightgrey;
	text-shadow: 1px 1px #bbb;
}
.rating-area:not(:checked) > label:before {
	content: '★';
}
.rating-area > input:checked ~ label {
	color: gold;
	text-shadow: 1px 1px #c60;
}
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
	color: gold;
}
.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
	color: gold;
	text-shadow: 1px 1px goldenrod;
}
.rate-area > label:active {
	position: relative;
}
.rating-area button {
	margin: 0 5px;
	padding: 9px 12px;
	background-color: green;
	border: 0;
	border-radius: 20px;
	color: #fff;
	transition: background-color .1s linear;
}
.rating-area button:hover {
	cursor: pointer;
	background-color: #006c00;
}
/* _____________________________________________________________ */
.product-eco {
	display: flex;
	align-items: center;
	margin: 16px 0 25px;
}

.product-eco img {
	display: block;
	max-width: 100%;
	margin-right: 15px;
}

.product-eco a {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #0098E6;
	text-decoration: none;
}

.order-product-right__rating {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}

.rating-stars {
	display: flex;
	align-items: center;
	margin-right: 15px;
}

.rating-stars img {
	display: block;
	margin-right: 5px;
}

.rating-stars span,
.product-rating__text {
	display: block;
	font-size: 14px;
	color: #7B7A7B;
	font-weight: 400;
}

.product-rating__text:not(:last-child) {
	margin-right: 30px;
}

.order-product__prices {
	padding: 24px 0;
	border-top: 1px solid #E9E9E9;
	border-top: 1px solid #E9E9E9;
	margin-bottom: 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 25px;
}

.order-product-prices__item p {
	display: block;
	font-size: 14px;
	color: #7B7A7B;
	font-weight: 400;
	margin: 0 0 10px 0;
}

.order-product-prices__item span {
	/* display: block;
	font-size: 20px;
	font-weight: 600;
	color: #000; */
}

.order-product__info {
	max-width: 500px;
}

.order-product-info__item {
	display: flex;
}

.order-product-info__item.aic {
	align-items: center;
}

.order-product-info__item:not(:last-child) {
	margin-bottom: 25px;
}

.order-product-info-item__left {
	width: 100px;
	margin-right: 25px;
	display: block;
	font-size: 14px;
	color: #7B7A7B;
	font-weight: 400;
}

.order-product-info-item__right {
	flex: auto;
}

.order-product-info-item__right p {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	margin: 0;
}

.order-product-info_tab {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	padding: 10px;
	border-radius: 7px;
	border: 1px solid #E9E9E9;
	cursor: pointer;
	display: inline-block;
}

.order-product-info_tab.active {
	border-color: #0098E6;
}

.order-product-info_tab:not(:last-child) {
	margin-right: 15px;
}

.order-product-info_tab img {
	display: block;
	max-width: 100%;
	height: auto;
}

.order-product-info_flex {
	display: flex;
	align-items: center;
}

.order-product-info_flex:not(:last-child) {
	margin-bottom: 12px;
}

.order-product-info_flex .line {
	height: 14px;
	width: 1px;
	display: block;
	background: #E9E9E9;
	margin: 0 16px;
}

.order-product-info_flex a {
	font-size: 14px;
	display: block;
	text-decoration: none;
	color: #0098E6;
	font-weight: 400;
	margin-left: 14px;
}

.order-product-info_flex small {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #ACACAC;
	margin-left: 8px;
}

.order-product-info_flex img {
	display: block;
	margin-right: 5px;
}

.also-like {
	padding-bottom: 100px;
}

.also-like p {
	font-size: 20px;
	margin: 0;
	font-weight: 400;
}

.request-button{
	display: flex;
    align-items: center;
    justify-content: center;
}

.request-link{
	font-size: 32px;
    background-color: #339FE0;
	color:#fff;
    font-weight: 700;
    display: block;
	text-decoration: none;
	padding: 15px;
    border-radius: 20px;
}
.request-link:hover{
	background-color: #702e95;
}
.text-field__group {
	display: flex;
  }
  /* кнопка */
  .text-field__btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: #eee;
	border: 1px solid #bdbdbd;
	padding: .375rem .75rem;
	font-size: 1rem;
	border-radius: .25rem;
	transition: background-color .15s ease-in-out;
  }
  .text-field__btn:hover {
	background-color: #bdbdbd;
  }
  .text-field__group .text-field__input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	position: relative;
	z-index: 2;
	height: 66px;
    border-radius: 20px;
	padding-left: 10px;
	border: solid 2px #339fe0;
	color: #339FE0;
    font-size: 22px;
    font-weight: 700;
	max-width: 160px;
  }
  .text-field__group .text-field__btn {
	position: relative;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left-width: 0;
  }
  .text-field {
	display: flex;
    align-items: center;
    justify-content: center;
}
.text-field__input::placeholder{
	color: #339FE0;
	font-size: 16px;
	font-weight: 700;
}

@media(max-width: 1450px) {

	.catalog-button,
	.search-button {
		font-size: 14px
	}

	.header-right__item span {
		font-size: 12px
	}

	.header-right__item:not(:last-child) {
		margin-right: 15px
	}

	.navbar-logo img {
		width: 180px
	}

	.navbar-search input {
		font-size: 16px
	}
}

@media(max-width: 1250px) {
	.my-favs {
		grid-template-columns: 1fr 1fr;
	}

	.trade-show__grid,
	.trade-show__top {
		grid-template-columns: 1fr 1fr;
	}

	.navbar-search button {
		width: 30%
	}

	.desktop-categories__item {
		font-size: 10px
	}

	.desktop-categories__item:not(:last-child) {
		margin-right: 10px
	}

	.desktop-slider__left,
	.desktop-slider__right {
		width: 25%;
	}

	.desktop-slider__center {
		width: 50%
	}

	.list-item__left strong {
		font-size: 14px
	}

	.buyers-club strong,
	.buyers-club p,
	.desktop-slider-left__item a {
		font-size: 12px
	}
}

@media(max-width: 770px) {

	.rating-area:not(:checked) > label {
		float: right;
		width: 34px;
		padding: 0;
		cursor: pointer;
		font-size: 26px;
		line-height: 32px;
		color: lightgrey;
		text-shadow: 1px 1px #bbb;
	}
	.rating-area {
		overflow: hidden;
		width: 180px;
		margin: 30px auto 10px;
	}
	.request-link{
		font-size: 24px;
	}

	/*body {
		padding: 30px 0;
	}*/
	.map {
		display: block
	}

	.login_tab {
		font-size: 8px;
		padding: 15px 10px;
	}

	.login-tabs__content {
		padding: 15px
	}

	.auth_tab_title {
		font-size: 18px;
		margin-bottom: 15px
	}

	.auth_tab_contnet label input {
		padding: 15px;
		font-size: 14px;
	}

	.auth_tab_contnet label input[type="submit"] {
		height: 48px
	}

	.auth-logo img {
		width: 180px
	}

	.map {
		height: auto;
		flex: auto;
	}

	.prefer-grid {
		display: flex;
		overflow-y: auto;
	}

	.prefer-grid::-webkit-scrollbar {
		background-color: #D1D1D1;
		height: 3px;
		width: 0;
		margin-left: 5px;
	}

	.prefer-grid_item {
		min-width: 158px;
		max-width: 158px;
		min-height: unset !important;
		background-color: rgb(244, 244, 244);
		border-radius: 9px;
		padding: 13px;
		border-radius: 9px;
	}

	.prefer-grid-item__image {
		width: 100%;
		height: 132px;
		border-radius: ;
	}

	.prefer-grid_item .fav-heart {
		display: none
	}

	main .shops_list .prefer-grid_item>a {
		position: relative;
		min-height: unset !important;
		height: auto !important;
		margin-top: 13px;
		text-align: center;
		padding: 0;
		align-items: center
	}

	main .shops_list .prefer-grid_item>a .business_go_text {
		background: none !important;
		display: block !important;
		text-align: center;
		color: #333;
		font-weight: 700 !important;
		font-size: 10px !important;
		text-transform: capitalize;
		padding: 0 !important;
	}

	.new-cats__title {
		display: block;
		margin: 35px 0 20px 0;
		font-weight: 700;
		color: #000;
		font-size: 18px;
	}

	body {
		background-image: none;
	}

	main {
		padding-top: 25px;
		width: 100%;
		margin-left: unset;
		padding-bottom: 25px
	}

	.sidebar {
		display: none
	}

	.map {
		width: 100%;
	}

	.map_main .map {
		margin: 0
	}

	.chat_alert {
		display: none
	}

	.main_chat {
		padding: 0
	}

	.my-favs {
		grid-template-columns: 1fr;
	}

	.auth-header,
	.auth-footer {
		display: none
	}

	.auth-container {
		justify-content: center;
	}

	.auth-flex {
		flex-direction: column-reverse;
		flex: unset;
	}

	.auth-flex__right {
		height: 300px;
	}

	.login-tabs__content {
		min-height: 508px;
	}

	.desktop-hide {
		display: none
	}

	.navbar-search input {
		font-size: 14px;
		padding: 10px 15px;
	}

	.navbar-search button {
		font-size: 14px
	}

	.navbar-center {
		margin: 0 20px;
	}

	.header-right__item a {
		font-size: 10px;
	}

	.header-right__item.flex .right {
		margin-left: 5px
	}

	.header-right__item:not(:last-child) {
		margin-right: 10px
	}

	.navbar-logo a img {
		width: 120px
	}

	.navbar__wrapper #navbar {
		padding: 20px 0;
	}

	.trade-show-top__banner strong,
	.products__item strong,
	.categorie-new__title strong {
		font-size: 20px
	}

	.trade-show-top__banner p,
	.products__item p {
		font-size: 14px;
		margin: 0 0 20px 0;
	}

	.trade-show-top__banner a {
		font-size: 14px
	}

	.products-item__flex {
		grid-template-columns: 1fr;
	}

	.products-item__photo img {
		width: 200px
	}

	.categorie-new__left {
		padding: 15px;
		width: 30%
	}

	.categorie-new__right {
		width: 70%
	}

	.categorie-new__left p {
		font-size: 18px
	}

	.categorie-new-right__item {
		padding: 7px 2px 2px 7px;
	}

	.categorie-new-right__item p {
		font-size: 14px
	}

	.categorie-new-right__item span {
		font-size: 12px
	}

	.categorie-new__right {
		grid-template-columns: 1fr 1fr;
	}

	.categorie-new-right__item img {
		width: 50px
	}

	.weekly-deals__content {
		max-width: 450px;
		width: 100%;
	}

	.weekly-deals {
		grid-template-columns: 1fr;
	}

	.request__content {
		grid-template-columns: 1fr;
	}

	.request__left,
	.request__right {
		padding: 26px 20px;
	}

	.request__left h2 {
		font-size: 24px;
		margin: 0 0 20px 0;
	}

	.request-left__grid {
		margin-bottom: 25px
	}

	.request__right strong {
		font-size: 24px
	}

	.for-you__grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.trade-services__content {
		grid-template-columns: repeat(2, 1fr)
	}

	.new-footer__links {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 50px 25px;
	}

	.selected-cats__top {
		flex-direction: column;
	}

	.selected-cats-top__left {
		margin-right: 0;
		margin-bottom: 30px
	}

	.selected-cats-top__subcategories {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.selected-cats-grid__item {
		padding: 16px 25px;
	}

	.selected-cats-grid__item strong {
		font-size: 18px
	}

	.selected-cats-grid__product p {
		font-size: 14px
	}

	.selected-cats-recomended__grid {
		grid-template-columns: repeat(3, 1fr)
	}

	.order-product {
		flex-direction: column;
	}

	.order-product__left {
		margin-right: 0;
		margin-bottom: 40px;
	}

	.product-other-images img {
		margin: 0 auto;
	}
}

.add_phone_mail {
	display: none;
	align-items: center;
	flex: auto;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.85);
	z-index: 10000;
	width: 100%;
	height: 100%;
}

.add_phone_mail.active {
	display: flex;
}

.add_phone_mail .form {
	width: 90%;
	background: #fff;
	padding: 25px 15px;
	border-radius: 10px;
}

.add_phone_mail .form img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
	height: auto;
}

.add_phone_mail .form label input {
	/*border: 1px solid #d5d5d5;*/
	border: 1px solid #339FE0;
}

.add_phone_mail .title_form {
	margin: 15px 0 10px 0;
}

.top-products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 15px;
}

.trade-show__photo img {
	display: block;
	max-width: 100%;
	height: auto;
}

.product-photo__more {
	display: none;
}

@media (max-width: 550px) {
	.navbar__wrapper {
		display: none;
	}

	.order-product__image img {

		max-height: 200px !important;
		min-height: 200px !important;
		max-width: 100%;
		object-fit: cover;
	}

	.eating-info-menu_item .left strong,
	.selected-product_flex .left strong {
		font-size: 12px;
	}

	.eating-info-menu_item .photo img {
		max-height: 150px !important;
		min-height: 150px !important;

	}

	.eating-info-menu_item .left .product_price,
	.selected-product_flex .left span,
	.order-product-prices__item span {
		font-size: 22px;

	}

	.top-products__grid {

		grid-gap: 8px;
	}

	.product-price-wrapper {
		margin-top: 18px;
	}



	.eating-info-menu_item {
		padding-bottom: 10px;
		margin-bottom: 0;
	}

	.product-eco,
	.order-product-right__rating,

	.also-like {
		display: none;
	}

	.mob-none {
		display: none !important;
	}

	.top-products__grid {
		grid-template-columns: repeat(2, 49%);
	}

	.mob-vue {
		display: flex !important;
	}

	.eating-info-menu_item .left p {
		border: none;
		max-height: 46px;
	}

	.product_item {
		padding: 4px;
	}

	.left p::-webkit-scrollbar {
		display: none;
	}

	.category_top_title {
		margin-top: 40px;
	}

}

@media (max-width: 480px) {
	.order-product-prices__item{
		text-align: center;
	}
	.text-field__group .text-field__input {
		height: 50px;
	}

	img.login_logo {
		display: none;
	}

	.nav-left,
	.header__right {
		display: none
	}

	.navbar-center {
		margin: 0
	}

	.trade-show__grid,
	.trade-show__top,
	.trade-services__content {
		grid-template-columns: 1fr;
	}

	.trade-show__top {
		padding: 20px
	}

	.products,
	.categorie-new__content {
		flex-direction: column;
	}

	.products__item,
	.categorie-new__left,
	.categorie-new__right,
	.desktop-slider__left,
	.desktop-slider__right,
	.desktop-slider__center {
		width: 100%
	}

	.products__item:first-child {
		margin-right: 0;
		margin-bottom: 20px
	}

	.for-you__grid {
		grid-template-columns: 1fr 1fr;
	}

	.desktop-slider {
		flex-direction: column;
	}

	.desktop-slider__center {
		margin: 0 0 30px 0;
		order: 1;
	}

	.desktop-slider__left {
		order: 2;
		margin: 0 0 30px 0;
	}

	.desktop-slider__right {
		order: 3;
	}

	.navbar__wrapper {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 50;
		padding-bottom: 0
	}

	main {
		margin-top: 0px !important;
	}

	.product__flex {
		flex-direction: column;
	}

	.product__photo,
	.product__info {
		width: 100%
	}

	.product__photo {
		margin-right: 0;
		margin-bottom: 20px
	}

	.product__photo img {
		margin: 0 auto
	}

	/* .top-products__grid {
		grid-template-columns: 1fr;
	} */

	.product_description {
		font-size: 12px;
		font-weight: 600
	}

	.product_title {
		font-size: 20px
	}

	.product-photo__more {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-gap: 10px;
		margin-bottom: 40px
	}

	.product-photo__more img {
		display: block;
		max-width: 100%;
		height: auto
	}

	.new-footer {
		display: none
	}

	.selected-cats-top__subcategories {
		grid-template-columns: repeat(2, 1fr)
	}

	.selected-cats__grid {
		grid-template-columns: 1fr;
	}

	.selected-cats-recomended__grid {
		grid-template-columns: 1fr 1fr;
		grid-gap: 20px
	}

	.selected-cats__recomended h1 {
		font-size: 18px
	}

	.selected-cats-recomended__desc p,
	.selected-cats-recomended__info .piece,
	.selected-cats-recomended__info .price {
		font-size: 12px
	}

	.selected-cats-recomended__info .price {
		font-size: 14px
	}

	.selected-cats-recomended__item {
		padding: 10px
	}

	.pages_history {
		flex-direction: column;
		align-items: flex-start;

	}

	.pages-history_step {
		font-size: 12px;
		margin-right: 0
	}

	.pages-history_step:not(:first-child) {
		padding-left: 0
	}

	.order-product__prices {
		grid-template-columns: repeat(1, 1fr)
	}

	.order-product-info-item__right p,
	.order-product-info_flex a,
	.order-product-info_flex small,
	.order-product-info_flex .price {
		font-size: 10px;
	}

	.order-product-info_flex .line {
		margin: 0 10px;
	}
}

.d-none {
	display: none !important;
}