.tabs {
	display: flex;
	flex-wrap: wrap;
}

.tabs>input[type="radio"] {
	display: none;
}

.tabs>div {
	/* скрыть контент по умолчанию */
	display: none;
	width: 100%;
}

/* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2{
	display: block;
}

.modal_form.modal_reviews #addseo{
	display: none;
}

.tabs>label {
	display: block;
	width: 48.71%;
	text-align: center;
	background-color: #fff;
	border: 1px solid #F2F2F2;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
	cursor: pointer;
	position: relative;
	padding: 20px 10px 24px;
	font-family: 'Rubik',sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 26px;
	line-height: 36px;
	text-align: center;
	color: #000000;
	margin: 0 15px;
}

.tabs>label:not(:first-of-type) {
	margin-right: 0;
}
.tabs>label:not(:last-of-type) {
	margin-left: 0;
}

.tabs>input[type="radio"]:checked+label {
	background-color: #F2F2F2;
}


.tabs>.reviews_btn_form{
	margin: 60px 0;
	display: block!important;
}

.reviews_btn_form button{
	width: 236px;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 120%;
	text-transform: uppercase;
	color: #FFFFFF;
	border: 0;
	outline: 0!important;
	padding: 17px 0 18px;
	background: #E10613;
}

.reviews_item{
	margin-bottom: 117px;
}

.reviews_item_video{
	margin-bottom: 26px;
	position: relative;
}

.reviews_item_video a{
	display: block;
	position: relative;
}

.reviews_item_video_btn{
	width: 90px;
	height: 90px;
	border-radius: 100%;
	background: #F3F3F3;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity: 0;
	cursor: pointer;
}
.reviews_item_video a:hover .reviews_item_video_btn{
	opacity: 1;
}

.reviews_item_img{
	margin-bottom: 28px;
	height: 130px;
	width: 170px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviews_item_data{
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 25px;
	color: #000000;
	margin-bottom: 15px;
}

.reviews_item_name{
	font-family: 'Rubik',sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 28px;
	line-height: 39px;
	color: #000000;
}

.reviews_item_text{
	margin-top: 15px;
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 25px;
	color: #000000;
	position: relative;
	height: 161px;
}

.reviews_item_text_cont{
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	z-index: 1;
}

.reviews_item_text_cont.active{
	position: absolute;
	padding-bottom: 20px;
}

.reviews_item_text .short{
	visibility: hidden;
	display: none;
}

.reviews_item_text .short.active{
	visibility: visible;
	display: block;
}

.reviews_item_text .long{
	display: block;
	visibility: hidden;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	z-index: 2;
	max-height: 350px;
	overflow: auto;
	box-sizing: content-box;
}

.reviews_item_text .long::-webkit-scrollbar { width: 3px; }
.reviews_item_text .long::-webkit-scrollbar-thumb { 
	background-color: #E10613;
  border-radius: 2px;
 }

.reviews_item_text .long.active{
	visibility: visible;
	position: relative;
}

.reviews_item_text_more{
	margin-top: 14px;
}

.reviews_item_text_more button{
	padding: 0;
	border: 0;
	outline: 0!important;
	background: none;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
	text-decoration: underline;
	color: #E10613;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.reviews_item_text_more button:hover{
	color: #808080;
}

@media(max-width:1200px){
	.tabs>label{
		width: 47.71%;
	}
}

@media(max-width:992px){
	.tabs>label{
		width: 100%;
		margin: 0 0 20px!important;
	}

	.reviews_item{
		margin-bottom: 50px;
	}
}

@media(max-width: 576px){
	.reviews_item_text{
		height: auto;
	}
}