html,body{
	width: 100%;
	min-width: 300px;
	height: 100%;
	color: #272727;
	background: #fff;
	font: 300 14px/18px 'Yanone Kaffeesatz', sans-serif;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	-moz-border-box: border-box;
}

img{border: none; max-width: 100%; height: auto;}

a{color: #008999;}
a:hover{text-decoration: none;}
a:active{color: #e10008; outline: none;}

b, strong{font-weight: 600;}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Yanone Kaffeesatz', sans-serif;
	padding: 0;
	margin-bottom: 20px;
	font-weight: 300;
}

h1{font-size: 32px; line-height: 36px;}
h2{font-size: 30px; line-height: 34px;}
h3{font-size: 26px;}
h4{font-size: 22px;}
h5{font-size: 18px;}
h6{font-size: 14px;}

p{
	margin: 0 0 20px 0;
	text-align: justify;
	line-height: 20px;
}

.ul{
	margin-bottom: 30px;
    list-style: none;
    line-height: 24px;
}

	.ul li{
		position: relative;
		padding-left: 35px;
	}

	.ul li:before{
		position: absolute;
		content: '';
		width: 5px;
		height: 5px;
		border-radius: 100%;
		background-color: rgba(66, 186, 150, 0.8);
		left: 20px;
		top: 10px;
	}
	
.ol{
	counter-reset: number;
    list-style: none;
    margin-bottom: 30px;
    line-height: 24px;
}

	.ol li{
		position: relative;
		padding-left: 35px;
	}

	.ol li:before{
		position: absolute;
		counter-increment: number;
		content: counter(number);
		width: 23px;
		height: 23px;
		text-align: center;
		line-height: 23px;
		font-size: 12px;
		font-weight: 600;
		color: #42BA96;
		left: 5px;
		top: 1px;
	}

.table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 300;
}

	.table tr{}

	.table tr td{padding: 10px; border: 1px solid #eee;}

.align-c{text-align: center;}
.align-r{text-align: right;}
.align-j{text-align: justify;}

.hidden{opacity: 0; display: none !important;}
.visible{opacity: 1; display: block;}

.italic{font-style: italic; font-size: 14px;}

.w-full{width: 100%;}

.button{
	padding: 10px 15px;
	border-radius: 46px;
	height: 46px;
	line-height: 26px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .5px;
	cursor: pointer;
	text-align: center;
	text-transform: uppercase;
	color: #000;
	text-decoration: none;
	display: inline-flex;
    justify-content: center;
    align-items: center;
	
	transition: color .2s,background .2s,border .2s;
}

	.button.button-outline{
		color: #000;
	    border: 1px solid #e54557;
	}

	.button.button-outline:hover{
		background: linear-gradient(288deg,#ee6647 50%,#df3260);
	    background-size: 200% 200%;
	    color: #fff;
	}

	.button.button-bg{
		background: linear-gradient(288deg,#ee6647 50%,#df3260);
	    background-size: 200% 200%;
	    color: #fff;
	}

	.button.button-bg:hover{

	}

	.button svg{
		width: 16px;
		height: 16px;
		margin-right: 10px;
	}

.error{
	padding: 20px;
	background: #ffccd2;
	margin: 30px 0;
	border-radius: 10px;
}

/* layer */
.layer{
	min-height: 100%;
	margin-bottom: -120px;
}

.empty{height: 120px;}

.clear{clear: left;}

.container{
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
}

.preventscroll{
	overflow-y: scroll;
	position: fixed;
	width: 100%;
	left: 0px;
	top: 0px;
}

/* header */
.header{
	height: 60px;
	margin-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;

	background: #1b1b1b;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);

	/*
	background-color: var(--color-bg-blur, rgba(0, 0, 0, .6));
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    */
}
	
	.header .container{
		display: flex;
		flex-direction: row;
		padding: 10px 15px;
		justify-content: center;
	}

	.header .logo{
		flex: 1 1 auto;
		padding-left: 20px;
		z-index: 810;
		height: 40px;
	}

		.header .logo a{
			color: rgba(255, 255, 255, 1);
			text-decoration: none;
			font-size: 18px;
			font-weight: 500;
			line-height: 36px;
		}

		.header .logo .icon{
			display: inline-block;
			vertical-align: middle;
			background: url(/templates/image/logo@2x.png) no-repeat;
			background-size: 40px 40px;
			width: 40px;
			height: 40px;
			margin-right: 10px;
		}

	.header .lang-nav{
		flex: none;
		z-index: 830;
	}

		.lang-nav .item{
			display: inline-block;
			vertical-align: middle;
			line-height: 40px;
			color: #797878;
			padding: 0 6px;
		}

		.lang-nav a.item{color: #fff;}
		.lang-nav a.item:hover{color: #ff594f;}

		.lang-nav .line{
			display: inline-block;
			vertical-align: middle;
			height: 40px;
			border-right: 1px solid #797878;
		}

/* main */
.main{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 0 15px;
}

	.main .h1{margin: 10px 0 20px; font-weight: 600;}

	.main-left{
		flex: 1;
	}

	.main-right{
		margin-left: 20px;
		width: 20%;
		padding-top: 10px;
	}

		.block-right{
			padding: 20px;
			background: #fff;
		}

	.speed-bar{
		margin: 0 0 10px;
		font-size: 13px;
	}

		.speed-bar > span{
			display: inline-block;
			font-weight: 300;
		}

		.speed-bar a:hover{text-decoration: none;}

			.speed-bar > span:after{
				content: '›';
				display: inline-block;
				color: #444;
				vertical-align: middle;
				margin: 0 4px 0 8px;
			}

		.speed-bar > span:last-child a{color: #444; text-decoration: none; font-weight: 600;}

			.speed-bar > span:last-child:after{display: none;}


/* main-cities */
.main-cities{
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	gap: 1rem; /* 16px */
	column-gap: 1rem; /* 16px */
	row-gap: 1rem; /* 16px */

	
	position: relative;
	margin: 20px 0;
	padding-top: 20px;
	border-top: 4px solid #e0e0e0;
}

.main-nav{}

	.main-nav_hub{
		margin-bottom: 20px; 
		background: #f5f5f5;
		border-radius: 10px;
		padding: 20px;
	}

	.main-nav_header{
		line-height: 26px;
		font-size: 20px;
	}

		.main-nav_header a{text-decoration: none; color: #000;}

	.main-nav_menu{
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		list-style: none;
		margin-top: 20px;
	}

		.main-nav_menu li{
			padding: 2px 0;
		}

			.main-nav_menu li a{
				display: inline-block;
				background: #1b1b1bb5;
				border-radius: 20px;
				padding: 7px 15px;
				font-weight: 500;
				text-decoration: none;
				color: #fff;
				position: relative;
				padding-right: 39px;
				transition: all .1s linear;
			}

			.main-nav_menu li a:hover{
				background: #e54557;
				color: #fff;
			}

			.main-nav_menu li a:after{
				content: '';
				position: absolute;
				right: 15px;
				top: 50%;
				margin-top: -8px;
				opacity: 1;
				content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 13.5L13.5 8m0 0L8 2.5M13.5 8h-11' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
			}


/* right_top */
.right-top{

}

	.right-top__item{
		background: #f4f4f4;
		padding: 20px;
		border-radius: 10px;
		margin-bottom: 20px;
	}

	.right-top__item .name{
		text-align: center;
		font-weight: 600;
	}

	.right-top__item .image{
		margin: 10px auto 20px;
		display: block;
		width: 150px;
	}

	.right-top__item .ul-info{
		margin-bottom: 20px;
		list-style: none;
		font-size: 12px;
	}

		.right-top__item .ul-info li{

		}

	.right-top__item .button{width: 100%;}

.right-addads{
	background: #f4f4f4;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}

	.right-addads .button{width: 100%;}

/* tabs */
.tabs-wrap{background: #fff; padding: 10px 0; margin-bottom: 20px;}

.tabs{font-size: 0;}

	.tabs .item{
		display: inline-block;
		vertical-align: top;
		color: #333;
		font-size: 16px;
		line-height: 20px;
		padding: 9px 20px;
		cursor: pointer;
		height: 40px;
	}

		.tabs .item .d{display: inline-block; border-bottom: 1px solid #333;}

		.tabs .item:hover .d{border: none;}

	.tabs .item.current{background: #ff594f; color: #fff; border-radius: 4px;}
		.tabs .item.current .d{border: none;}


/* top-nav */
.top-nav{
	position: relative;
}

	.top-nav .item{
		display: inline-block;
		font-size: 16px;
		line-height: 24px;
		margin-right: 15px;
		background: #f5f8fa;
		padding: 5px 15px;
	}

	.top-nav .item:hover{background: #008999; color: #fff;}

		.top-nav .item .title{cursor: pointer; line-height: 20px;}

			.top-nav .item .title a{color: #333; text-decoration: none;}

			.top-nav .item .icon{margin-left: 6px; vertical-align: bottom; }
		
		.top-nav .item:hover .item-sub{display: block;}

		.top-nav .item .item-sub{
			display: none;
			position: absolute;
			width: 100%;
			z-index: 800;
			height: auto;
			background: #fff;
			box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
			border-radius: 0 0 6px 6px;
			padding: 20px;
			top: 35px;
			left: 0;
			transition: all .2s ease;
		}

			.top-nav .item .item-sub a{
				display: inline-block;
				width: 24%; 
				line-height: 28px; 
				font-size: 16px;
				color: #000;
				text-decoration: none;
			}

			.top-nav .item .item-sub a:hover{color: rgb(248, 61, 98);}

/* feed */
.feed{
	
}
	
	.feed .item{
		display: flex;
		flex-direction: row;

		position: relative;
		padding: 8px;
		margin-bottom: 12px;
		border-radius: 20px;
		color: #404040;
		/*border: 1px dashed #b4cfdf;*/
		background-color: #fff;
		box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
		
		will-change: box-shadow;
	    transition: box-shadow .2s;
	}

	.feed .item:hover{
		/*box-shadow:0 22px 35px 0 rgba(0,0,1,.26);*/
		box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.26);
	}

		.feed .item-img{
			flex: none;
			width: 160px;
			position: relative;
		}

			.feed .item-img .preview{
				display: block;
				width: 100%;
				height: 200px;
				background: center no-repeat; 
				background-size: cover;
				border-radius: 15px;
			}

		.feed .item-wrap{
			flex: 1 1 auto;
			display: flex;
		}

		.feed .item-body{
			height: 200px;
			flex: 1;
			display: grid;
			grid-gap: 8px;
			padding: 8px 8px 8px 24px;
			align-content: center;
		}

			.feed .item-body .item-title{
				font-weight: 700;
				font-size: 18px;
			}

		.feed .item-button{
			display: grid;
			align-content: center;
		}

			.feed .item-button .button{ padding: 10px 20px; }

	.feed--more{
		display: block;
		width: 200px;
		margin: 20px auto;
	}

/* feed-nav */

.feed-nav{
	background: #1b1b1b;
	height: 50px;
	border-radius: 10px;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	padding: 0 5px;
}

	.feed-nav a{
		display: block;
		flex: 1 1 auto;
		
		color: #fff;
		text-decoration: none;
		text-transform: uppercase;
	    letter-spacing: .5px;
	    font-weight: 700;
	    font-size: 13px;
	    line-height: 50px;
	    text-align: center;

	    transition: all .1s linear;
	}

	.feed-nav a:nth-child(n+2){ border-left: 1px solid hsla(0,0%,100%,.17); }

	.feed-nav a:hover,
	.feed-nav a.current{ color: #e54557; }


/* table-content */
.table-content{
	border-radius: 10px;
    background-color: #f4f4f4;
    padding: 0 20px;
    margin-bottom: 20px;
}

	.table-content .heading{
		position: relative;
		width: 100%;
		font-size: 18px;
		font-weight: 600;
		line-height: 24px;
		color: #1c1d20;
		text-align: left;
		padding: 8px 0;
		border: none;
    	background: transparent;
    	cursor: pointer;
	}

		.table-content .heading:before{
			position: absolute;
			content: "";
			width: 18px;
			height: 10px;
			background: url(/templates/image/sprite.svg#table-arrow) no-repeat;
			right: 0;
			top: calc(50% - 5px);
		}

		.table-content.open .heading:before{
			-webkit-transform: rotate(-180deg);
			transform: rotate(-180deg);
		}

		.table-content .icon-content{
			position: relative;
			display: inline-block;
			vertical-align: middle;
			width: 50px;
			height: 50px;
			border-radius: 100%;
			background-color: #fff;
			margin-right: 15px;
		}

			.table-content .icon-content:before{
				position: absolute;
				content: "";
				width: 20px;
				height: 20px;
				background: url(/templates/image/sprite.svg#contents) no-repeat;
				top: calc(50% - 10px);
				left: calc(50% - 10px);
			}
	
	.ol-table-content{
		counter-reset: number;
	    height: 0;
	    overflow: hidden;
	}

	.table-content.open .ol-table-content{
		border-top: 1px solid #e9ece8;
	    height: auto;
	    padding: 20px 0 30px;
	    list-style: none;
	}

		.ol-table-content li{
			position: relative;
		    width: auto;
		    font-weight: 500;
		    padding-left: 0;
		    margin-bottom: 0;
		    font-size: 14px;
		    line-height: 24px;
		}

			.ol-table-content li a{
				font-weight: 500;
				text-decoration: none;
				color: #1c1d20;
			}

			.ol-table-content li a:before {
				counter-increment: number;
				content: counter(number) ". ";
				font-weight: 500;
				font-size: 16px;
				line-height: 28px;
			}

			.ol-table-content li a:hover{color: #ff594f;}

/* seo */

.article{
	margin: 20px 0;
}



.block-text{
	width: 100%;
	background-color: #fff;
	padding: 25px 30px;
	margin: 20px 0;
}

	.block-text p:last-child{margin-bottom: 0;}

.block-faq{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	counter-reset: number;
	margin-top: 20px;
}

.faq-item{
	/*width: calc(50% - 30px);*/
	width: 100%;
	background-color: #fff;
	padding: 10px 10px 10px 30px;
	margin: 0 0 20px;
}

	.faq-item h3{
		text-align: left;
		font-size: 18px;
		font-weight: 500;
		line-height: 21px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
	}

	.faq-item h3:before {
		position: absolute;
		content: "";
		counter-increment: number;
		content: counter(number);
		color: #008999;
		font-size: 18px;
		font-weight: 600;
		line-height: 21px;
		left: -25px;
	}

	.faq-item p:last-child, .faq-item ol:last-child, .faq-item ul:last-child{
		margin-bottom: 0;
	}

/* cities-nav */

.cities-nav{
	background: #f4f4f4;
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
}

/*  */
.suggestion-list{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

	.suggestion-list li{
		list-style: none;
		font-size: 13px;
	}

		.suggestion-list li a{ color: #000; }
		.suggestion-list li a:hover{ color: #e54557; }



/* tabs */
.tags-list{

}

	.tags-list .item-tab{
		display: inline-block;
		text-decoration: none;
		padding: 4px 12px;
		color: #000;
		background: #f5f5f5;
		font-size: 13px;
		font-weight: 500;
		border-radius: 12px;
		transition: all .1s linear;
	}

	.tags-list .item-tab:hover{
		background: #e54557;
		color: #fff;
	}

/* service-feed */
.service-feed{
	display: flex;
	flex-wrap: wrap;
}

	.service-feed .item{
		border: 1px solid #00899961;
		border-radius: 3px;
		text-decoration: none;
		padding: 4px 8px;
		margin: 5px;
		font-size: 13px;
	}

	.service-feed .item:hover{
		background: #008999;
		border-color: #008999;
		color: #fff;
	}

/* .pop-alert */

.pop-alert{
	position: fixed;
	z-index: 900;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	padding: 20px;
	text-align: center;
	opacity: 0;
}

	.pop-alert__success{
		background: green;
	}

	.pop-alert__error{
		background: red;
	}

	.pop-alert__visible{opacity: 1;}


/* popup-phone */
.popup-phone{
	position: fixed;
	left: 5px;
	right: 5px;
	bottom: -80px;
	z-index: 800;
	transition: all 300ms;
	opacity: 1;

	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 40px 0 rgb(0 0 0 / 40%);
	padding: 6px 10px;
	display: flex;
	flex-wrap: nowrap;
}

	.popup-phone__info{width: 120px;}
		.popup-phone__name{white-space: nowrap; overflow-x: hidden; overflow-y: hidden; color: #444; line-height: 20px; font-size: 12px; margin-bottom: 4px;}
	.popup-phone__button{flex: 1 1 auto; padding: 0 5px;}
		.popup-phone__button .contact-button{display: block; height: 40px; margin: 0; line-height: 40px;}

	.popup-phone__mess{height: 40px;}
	.popup-phone__mess img{width: 40px; display: inline-block;}


/**/
.error--button{
	margin: 0 auto 50px;
	width: 200px;
	display: block;
}


/* b-lazy */
.b-lazy{opacity: 0;}
.b-lazy.b-loaded{opacity: 1; transition: opacity 300ms;}

/* footer */
.footer{background: #1a1a1a; min-height: 120px;}

	.footer .container{
		padding: 30px;
		font-size: 13px;
		line-height: 20px;
		color: #7a7a7b;
	}

	.footer a{color: #fff;}

	.footer-nav{margin-top: 10px;}

		.footer-nav a{
			display: inline-block;
			margin-right: 10px;
			text-transform: uppercase;
			text-decoration: none;
			color: rgba(255, 255, 255, 0.6);
		}

		.footer-nav a:hover{ color: rgba(255, 255, 255, 1); }


/* mobile */

.mob-nav{
	flex: none;
}

	.mob-nav-toggle{
		width: 40px;
		height: 40px;
		cursor: pointer;
		padding: 5px;
		border-radius: 4px;
		background: rgba(255, 255, 255, 0);
		transition: all 0.2s ease;
	}

		.mob-nav-toggle:hover{
			background: rgba(255, 255, 255, 0.3);
		}

	.mob-nav-sub{
		opacity: 0;
    	visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		background-color: #232323;
		overflow-y: auto;
		transition: all .2s ease;
		z-index: 800;
	}

	.mob-nav-sub.visible{opacity: 1; visibility: visible;}

		.mob-nav-sub .container{display: block; padding: 0;}

		.mob-nav-sub__top{
			height: 60px;
			position: relative;
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			padding: 15px;
		}

			.mob-nav-sub__top .logo{
				
			}

			.mob-nav-sub__top .mob-nav-toggle{
				position: absolute;
				left: 15px;
				top: 10px;
			}

		.mob-nav-sub__nav{

		}

			.mob-nav-sub__nav .item{
				display: block;
				color: #fff;
				font-size: 16px;
				font-family: 'Yanone Kaffeesatz', sans-serif;
				font-weight: 400;
				line-height: 30px;
				padding: 5px 30px;
				text-decoration: none;
				text-transform: uppercase;
				letter-spacing: .5;
			}

			.mob-nav-sub__nav .item:hover,
			.mob-nav-sub__nav .item:active{
				background: linear-gradient(288deg,#ee6647 50%,#df3260);
				/*background: #08d9d6;
				background: linear-gradient(to right, #08d9d6, #138994);*/
			}

		.mob-nav-sub__signup{
			text-align: center;
			padding: 20px;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
		}

			.mob-nav-sub__signup .btn{
				display: block;
			}

			.mob-nav-sub__signup .btn:first-child{margin-bottom: 10px;}

.mob-account{
	display: none;
	position: absolute;
	right: 0px;
	top: 0px;
}

	.mob-account-toggle{
		
	}

		.mob-account-toggle .img{
			height: 60px;
			background: rgba(0, 0, 0, 0.1);
			padding: 10px;
		}

		.mob-account-toggle .img img{
			display: inline-block;
			width: 40px;
			height: 40px;
			border-radius: 6px;
		}

	.mob-account-sub{
		opacity: 0;
    	visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		background-color: #fff;
		overflow-y: auto;
		transition: opacity .2s ease;
		z-index: 800;
	}

	.mob-account-sub.visible{opacity: 1; visibility: visible;}

		.mob-account-sub .mob-account-toggle{
			position: absolute;
			right: 21px;
			top: 16px;
			color: #fff;
			font-size: 28px;
		}
		
		.mob-account-sub__photo{
			background-color: #252a34;
			padding: 20px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		}

			.mob-account-sub__photo img{display: block; width: 30%; margin: 0 auto; border-radius: 6px;}

		.mob-account-sub__nav{

		}

			.mob-account-sub__nav .item{
				display: block;
				color: #444;
				font-size: 20px;
				font-family: 'Yanone Kaffeesatz', sans-serif;
				font-weight: 600;
				line-height: 30px;
				padding: 5px 30px;
				border-bottom: 1px solid #eee;
			}


@media screen and (max-width: 820px) {
	
	.main{ display: block; }
	.main-right{ width: 100%; margin-left:0; }	
	.main .h1{font-size: 26px; line-height: 30px;}

	.feed-nav{
		visibility: hidden;
		display: none;
	}

}

@media screen and (max-width: 600px) {
	
	.header{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 990;
		height: 60px;
	}

	.layer{padding-top: 60px;}

	.container{padding: 0 10px;}

		.mob-nav{display: block;}
		.mob-account{display: block;}
	
	.main .h1{font-size: 18px; line-height: 22px; font-weight: 300; margin-bottom: 15px;}

	.speed-bar{margin: 10px 0;}

	.container-feed{padding: 0 !important;}
	.feed{}

		.feed .item{ padding: 0; border: 0; box-shadow: none; margin-bottom: 30px; flex-wrap: wrap; }
		.feed .item:hover{ box-shadow: none; }
		.feed .item-img{ width: 120px; }
			.feed .item-img .preview{ border-radius: 1.5em; height: 160px; }
		.feed .item-wrap{  }
		.feed .item-body{ height:auto; padding: 0 8px 8px; align-content: start; }
		.feed .item-button{flex: 1 1 auto; padding: 5px 0 0;}

		.tags-list .item-tab{margin: 4px; font-size: 11px;}
	
	.suggestion-list{grid-template-columns: repeat(2, minmax(0, 1fr));}

	.profile-item{display: block;}
	.profile-item-left{display: block; flex: none; width: 100%;}
	.profile-item-right{display: block; flex: none; padding: 0;}

	.border-line{margin: 0 -20px;}
	
	.service-feed .item{flex: 1; white-space: nowrap; text-align: center;}

	.account-photos .col-3{flex: 0 0 50%; max-width: 50%; padding: 0 10px;}
		
		.account-photos .item .detail-ava{
			bottom: 40px;
			font-size: 20px;
			height: 40px;
			line-height: 22px;
		}

		.account-photos .item .detail-del{
			font-size: 20px;
			height: 40px;
			line-height: 22px;
		}

		.account-photos .detail-ava .hint,
		.account-photos .detail-del .hint{display: none;}

	.account-feed__btns .btn{display: block; margin-bottom: 10px;}

	.popup-phone__visible{
		opacity: 1;
		bottom: 20px;
	}

}

@media screen and (max-width: 400px) {

	.container{padding: 0 10px;}

	.account-main-container{padding: 0;}

	.feed .item-wrap{margin-bottom: 0;}
	
	.tabs .item{display: block;}

}

@media screen and (max-width: 600px) {
	
}

@media screen and (max-width: 460px) {
	
}