.faq-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-gap: 60px;
	align-items: start;
}
.showOnLaptop {
	display: none;
}
.title {
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}

.faq_ask {
	width: 100%;
	border: 1px solid #e5e5e5;
	padding: 44px;
}
.faq_ask .grid {
	display: grid;
	grid-template-columns: 154px 1fr;
	grid-gap: 30px;
	width: 100%;
}
.button.faq_button {
	background-color: #383838;
	padding: 10px 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}
.button.faq_button span {
	display: block;
	color: white;
	text-transform: uppercase;
	font-size: 10px;
}
.button.faq_button i {
	background: rgba(0, 0, 0, 0) url(images/arrows.png) repeat scroll 1px -441px;
	display: block;
	height: 9px;
	width: 12px;
}

.form.ASK {
	margin: 23px 0 0;
	width: 100%;
}
.form.ASK .form_head h4 {
	display: none;
}
.form.ASK .form_body {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}
.form.ASK .captcha-row {
	grid-column: 1/3;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.form.ASK .captcha-row label {
	width: 100%;
}
.form.ASK textarea {
	min-height: 228px;
}
.form.ASK {
	display: none;
	margin-top: 30px;
}


.captcha_reload {
	border: 1px solid transparent;
	cursor: pointer;
	height: 35px;
	width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.captcha_image {
	display: flex;
	align-items: center;
}
.captcha_reload:before,
.captcha_reload:after {
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.captcha_reload:before {
	color: white;
	background: var(--red-color);
	border-radius: 25px;
	height: 25px;
	width: 25px;
}
.captcha_reload:after {
	background: rgba(0, 0, 0, 0) url(images/img.png) repeat scroll -67px -82px;
	height: 13px;
	transition: background 0.7s ease-in-out 0s;
	width: 15px;
}
.captcha_input input {
	margin: 0!important;
}
.form_result.success {
	color: green;
	width: 100%;
	margin: 10px 0;
}

.faq.list {
	margin: 36px 0;
}
.faq.list h3 {
	font-size: 20px;
	margin: 0 0 20px 0;
}
.faq_section {
	border: 1px solid #e5e5e5;
	margin: 28px 0 26px;
}
.faq.list .item {
	padding: 19px 24px 22px;
	border-bottom: 1px solid #e5e5e5;
}

.faq.list .item:last-of-type {
	border: none;
}

.faq.list .item.opened {
	background-color: #f7f7f7;
}

.faq.list .item .q {
	font-weight: bold;
	position: relative;
	padding-right: 29px;
}

.faq.list .item .q .opener_icon {
	position: absolute;
	right: -3px;
	top: -5px;
}

.faq.list .item .q a {
	display: block;
	padding: 0px 20px 0px 0px;
	color: var(--red-color);
}

.faq.list .item .a {
	display: none;
	padding-top: 14px;
}
.opener_icon.no_bg i {
	background: url(images/arrows.png) 8px -255px no-repeat;
	display: inline-block;
	height: 29px;
	width: 29px;
	cursor: pointer;
	vertical-align: middle;
}
.faq.list .item.opened {
	background-color: #f7f7f7;
}
.opener_icon.opened.no_bg i {
	background-position: -24px -257px;
}

@media (max-width: 1280px) {
	.faq-grid {
		grid-template-columns: 100%;
		grid-gap: 30px;
	}
	.showOnLaptop {
		display: block;
	}
	.hideOnLaptop {
		display: none;
	}
}
@media (max-width: 768px) {
	.faq-grid,
	.form.ASK .form_body {
		grid-gap: 20px;
	}
	.title {
		margin-bottom: 10px;
	}
	.faq_ask {
		padding: 20px;
	}
	.faq_ask .grid {
		grid-gap: 10px;
	}
}
@media (max-width: 580px) {
	.faq_ask .grid {
		grid-gap: 10px;
		grid-template-columns: 1fr;
	}
	.button.faq_button {
		justify-content: center;
	}
	.button.faq_button span {
		display: block;
		margin-left: 20px;
	}
	.form.ASK .form_body {
		grid-template-columns: 1fr;
		grid-gap: 0;
	}
	.form.ASK .captcha-row {
		grid-column: initial;
	}
	.form.ASK textarea {
		min-height: 138px;
	}
	.captcha_input {
		margin-top: 10px;
	}
}