/*	GLOBAL TEMPLATE STYLES	*/

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

	0.	DEFAULT
	N.	HEADER

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

/*----------------------------
	0.	DEFAULT
----------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');


.fl {
	float: left;
}

.fr {
	float: right;
}

.cb {
	clear: both;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

* {
	outline: none !important;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Open Sans';
	font-size: 14px;
	color: #000;
}

h1,
h2,
h3 {
	font-size: 42px;
}

h1, h2, h3, p, a {
	color: #000;
}
a {
	text-decoration: underline;
}

.wrapper {
	background-color: #000;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 100%;

}

/*.container {
	padding: 0 0;
}
*/
/*----------------------------
	N.	HEADER
----------------------------*/

.header {
	background-color: #1d1d1d;
	min-height: 94px;
}

.header-top {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 6px 0 10px;
}

.header-top__phone {
	color: #fff;
	font-size: 13px;
	margin-left: 15px;
	position: relative;
	text-decoration: none;
}

.no-touch .header-top__phone:hover {
	color: #fff;
	text-decoration: underline;
}

.header-top__phone::before {
	color: #fff;
	content: "\f095";
	font-size: 10px;
	font-family: FontAwesome;
	position: absolute;
	top: 2px;
	left: -14px;
}

.header-top__mail {
	color: #fff;
	font-size: 13px;
	margin-left: 15px;
	position: relative;
	text-decoration: none;
}

.no-touch .header-top__mail:hover {
	color: #fff;
	text-decoration: underline;
}

.header-top__mail::before {
	color: #fff;
	content: "\f0e0";
	font-size: 10px;
	font-family: FontAwesome;
	position: absolute;
	top: 2px;
	left: -14px;
}

.header-top__social {
	padding-top: 4px;
}

.header-top__social a i {
	color: #fff;
	display: inline-block;
	font-size: 18px;
	margin: 0 5px;
}

.header-top__search {
	padding-top: 4px;
	position: relative;
}

.header-top__search input[type = "text"] {
	background-color: #fff;
	border: none;
	border-radius: 4px;
	display: block;
	padding: 0 15px;
	width: 100%;
    color: #000;
}

.header-top__search button[type = "submit"] {
	background: transparent;
	border: none;
	display: block;
	padding: 0;
	position: absolute;
	top: 6px;
	right: 6px;
	height: 10px;
	width: 10px;
	z-index: 10;
}

.header-top__search button[type = "submit"]::before {
	color: #283b3f;
	content: "\f002";
	font-size: 10px;
	font-family: FontAwesome;
	position: absolute;
	top: 0px;
	right: 0px;
}

.header-bottom__logo {
	padding: 8px 0 15px;
	max-width: 200px;
}

/*	TOP MENU	*/

.top-menu {
	padding-top: 5px;
}

.top-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-menu li {
	float: left;
	margin-right: 45px;
	position: relative;
}

.top-menu li:last-child {
	margin-right: 0;
}

.top-menu li:hover > ul {
	opacity: 1;
	transform: translateX(0%);
	transition-delay: 0s;
	visibility: visible;
}

.top-menu a {
	color: #fff;
	line-height: 44px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	transition: all .4s ease;
}

.top-menu li.parent > a::before {
	color: rgba(255, 255, 255, .8);
	content: "\f078";
	font-size: 10px;
	font-family: FontAwesome;
	line-height: 1;
	position: absolute;
	top: 2px;
	right: -16px;
}

.no-touch .top-menu a:hover {
	color: #f2f2f2;
}

.top-menu li ul {
	background-color: #2d2d2d;
	border-radius: 12px;
	padding: 8px 0;
	position: absolute;
	top: 44px;
	left: 0;
	opacity: 0;
	transform: translateZ(0);
	transform: translateY(10%);
	transition: all 0.5s ease 0s, visibility 0s linear 0.5s;
	visibility: hidden;
	z-index: 100;
}

.top-menu li ul li {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 6px 0 7px 20px;
	width: 100%;
}

.top-menu li ul li:last-child {
	border: none;
}

.top-menu li ul li a {
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	text-transform: none;
	transition: all .4s ease;
}

.no-touch .top-menu li ul li a:hover {
	color: #f2f2f2;
}

.header-bottom__gift {
	background-color: transparent;
	border: 1px solid #e8484c;
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	font-size: 12px;
	display: block;
	line-height: 30px;
	position: relative;
	padding-left: 32px;
	margin-top: 10px;
	text-transform: uppercase;
	text-decoration: none;
}

.header-bottom__gift::before {
	color: #fff;
	content: "\f06b";
	font-size: 14px;
	font-family: FontAwesome;
	position: absolute;
	top: 0;
	left: 24px;
}

.no-touch .header-bottom__gift:hover {
	color: #fff;
	text-decoration: underline;
}


@media(max-width: 1200px) {


	.header-bottom__logo {
		margin-top: 7px;
	}

	.header-bottom__gift {
		padding-left: 18px;
	}

	.header-bottom__gift::before {
		left: 8px;
	}

}

@media(max-width: 991px) {

	.header-bottom__logo {
		margin: 10px auto 0;
		text-align: center;
	}

	.header-bottom__gift {
		margin: 10px auto 20px;
		max-width: 150px;
	}

	.top-menu {
		text-align: center;
	}

	.top-menu ul {
		display: inline-block;
		
	}

}


@media(max-width: 767px) {

	.header-bottom__gift {
		margin: 20px auto;
		max-width: 155px;
	}

	.header-top__phone {
		display: inline-block;
		font-size: 20px;
		margin: 10px 0;
		text-align: center;
		text-decoration: none;
		width: 100%;
	}

	.header-top__phone::before {
		font-size: 15px;
		margin-left: -20px;
		position: relative;
		top: 1px;
		left: -8px;
	}

	.header-top__mail {
		display: inline-block;
		font-size: 20px;
		margin: 10px 0;
		text-align: center;
		text-decoration: none;
		width: 100%;
	}

	.header-top__mail::before {
		font-size: 15px;
		margin-left: -20px;
		position: relative;
		top: -1px;
		left: -8px;
	}

	.header-top__social {
		margin: 5px 0 20px;
		text-align: center;
	}

	.header-top__social a i {
		font-size: 40px;
	}

	.header-top__search {
		margin-bottom: 10px;
	}

	.header-top__search input[type = "text"] {
		line-height: 40px;
		padding: 0 48px 0 20px;
		height: 40px;
	}

	.header-top__search button[type = "submit"]::before {
		cursor: pointer;
		font-size: 25px;
		right: 8px;
	}

	.header-bottom__logo {
		margin: 10px auto;
	}

	.top-menu li {
		display: block;
		width: 100%;
	}

	.top-menu li::before {
		right: 15px;
	}

	.top-menu {
		text-align: left;
	}

	.top-menu li ul {
		background: transparent;
		display: none;
		margin-bottom: 10px;
		overflow: hidden;
		padding: 0;
		position: relative;
		top: 0;
		height: 0;
		transition: all .4s ease;
		transform: translateY(0);
	}

	.top-menu li ul li {
		border: none;
	}

	.top-menu li ul.open {
		display: block;
		opacity: 1;
		visibility: visible;
		height: auto;
	}

}

/*----------------------------
	N.	CONTENT
----------------------------*/

.wrap-content {
	background: #fff;
	flex: 1;
}

.background {
	background-repeat: no-repeat;
	background-image: none !important;
}


.bg-section-1 {
	background-image: url("../images/background/1_1600.jpg");
	background-position: bottom center;
	background-size: cover;
	background-color: #0c0c0c;
}
.bg-section-1 h1, .bg-section-1 h2 {
	color: #fff;
}

.bg-section-2 {
	background-image: url("../images/background/2_1600.jpg");
	background-position: top center;
	background-size: 100% 100%;
	background-color: #efefef;
}


.bg-section-4 {
	background-image: url("../images/background/4_1600.jpg");
	background-position: top center;
	background-size: cover;
	background-color: #0c0c0c;
}
.bg-section-4 h1, .bg-section-4 h3 {
	color: #fff;
}


@media(max-width: 1200px) {
	
	.bg-section-1 {
		background-image: url("../images/background/1_1200.jpg");
		background-position: bottom center;
		background-size: cover;
	}

	.bg-section-2 {
		background-image: url("../images/background/2_1200.jpg");
		background-position: top center;
		background-size: 100% 100%;
	}


	.bg-section-4 {
		background-image: url("../images/background/4_1200.jpg");
		background-position: top center;
		background-size: contain;
	}

}

@media(max-width: 991px) {
	
	.bg-section-1 {
		background-image: url("../images/background/1_992.jpg");
		background-position: top center;
		background-size: contain;
	}

	.bg-section-2 {
		background-image: url("../images/background/2_992.jpg");
		background-position: center;
		background-size: cover;
	}

	.bg-section-4 {
		background-image: url("../images/background/4_992.jpg");
		background-position: top center;
		background-size: cover;
	}
	
}

@media(max-width: 767px) {
	
	.bg-section-1 {
		background-image: url("../images/background/1_768.jpg");
		background-position: center;
		background-size: contain;
	}

	.bg-section-2 {
		background-image: url("../images/background/2_768.jpg");
		background-position: center;
		background-size: contain;
	}


	.bg-section-4 {
		background-image: url("../images/background/4_768.jpg");
		background-position: top center;
		background-size: contain;
	}
	
}

@media(max-width: 767px) {
	
	.bg-section-1,
	.bg-section-2,
	.bg-section-4 {
		background: none;
	}

}


/*----------------------------
	N.	QUEST TOP
----------------------------*/

.quest-top {
	background: transparent;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	padding: 20px 0 0px;
	position: relative;
}

.quest-top__item {
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	max-width: 570px;
	margin: 0 auto 15px;
}

.quest-top__item a {
	display: block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.no-touch .quest-top__item a:hover {
	color: #fff;
	text-decoration: none;
}

.quest-top__item img {
	position: relative;
}

.quest-top__item-desc {
	padding: 0 30px;
	position: absolute;
	bottom: 22px;
	left: 0;
	height: auto;
	width: 100%;
	z-index: 10;
}

.quest-top__item span {
	color: #fff;
	display: block;
	font-size: 19px;
	font-weight: 500;
}

.quest-top__item p {
	color: #fff;
	margin: 5px 0 0;
}



/*----------------------------
	N.	QUEST FILTER
----------------------------*/

.quest-filter {

}

.quest-filter__title {
	margin-bottom: 45px;
}

.quest-filter__title h2 {
	color: #fff;
}

.quest-filter__open {
	background-color: #fff;
	border-radius: 4px;
	color: #1a282a;
	cursor: pointer;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 40px;
	padding: 8px 30px 8px 15px;
	position: relative;
}

.quest-filter__open::before {
	color: #1a282a;
	content: "\f078";
	font-size: 12px;
	font-family: FontAwesome;
	position: absolute;
	top: 15px;
	right: 10px;
}

.quest-filter__items ul {
	list-style: none;
	padding: 0;
}

.quest-filter__items li {
	border-radius: 4px;
	display: inline-block;
	margin: 0 5px 14px;
}

.quest-filter__items li > span {
	background: transparent;
	color: #fff;
	cursor: pointer;
	display: block;
	border-radius: 4px;
	padding: 0 5px;
	transition: all .4s ease;
}

.quest-filter__items li.active > span,
.no-touch .quest-filter__items li > span:hover {
	background-color: #fff;
	color: #1a282a;
}


@media (max-width: 480px) {

	.quest-top__item-desc {
		position: relative;
		padding: 50px 0 10px;
		text-align: center;
	}
	.quest-filter__title h2 {
		color: #000;
	}
	.quest-filter__open {
		color: #000;
	}
	.bg-section-1 h1, .bg-section-1 h2,.quest-news__title h3 {
		color: #000 !important;
	}
	.quest-filter__items li > span {
		color: #000;
	}
	.quest-filter__items li.active > span, .no-touch .quest-filter__items li > span:hover {
		background-color: #efefef;
	}
}

@media(max-width: 767px) {

	.quest-filter__dropdown {
		display: none;
		opacity: 0;
		transition: all .6s ease;
	}

	.quest-filter__dropdown li {
		display: block;
		text-align: center;
	}

	.quest-filter__dropdown.open {
		display: block;
		opacity: 1;
	}

}

/*----------------------------
	N.	QUEST LIST
----------------------------*/

.quest-list {
	margin: 20px 0;
}

.quest-list__item {
	border-radius: 18px;
	overflow: hidden;
	margin: 0 auto 20px;
	padding: 16px 12px;
	position: relative;
	min-height: 355px;
	max-width: 360px;
}

.quest-list__item-overlay {
	display: block;
}

/*.quest-list__item-overlay::before {*/
	/*!*background: -moz-linear-gradient(270deg, rgba(153,218,255,0) 0%, rgba(0,0,0,1) 100%); !* ff3.6+ *!*!*/
	/*!*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(153,218,255,0)), color-stop(100%, rgba(0,0,0,1))); !* safari4+,chrome *!*!*/
	/*!*background: -webkit-linear-gradient(270deg, rgba(153,218,255,0) 0%, rgba(0,0,0,1) 100%); !* safari5.1+,chrome10+ *!*!*/
	/*!*background: -o-linear-gradient(270deg, rgba(153,218,255,0) 0%, rgba(0,0,0,1) 100%); !* opera 11.10+ *!*!*/
	/*!*background: -ms-linear-gradient(270deg, rgba(153,218,255,0) 0%, rgba(0,0,0,1) 100%); !* ie10+ *!*!*/
	/*!*background: linear-gradient(180deg, rgba(153,218,255,0) 0%, rgba(0,0,0,1) 100%); !* w3c *!*!*/
	/*!*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99DAFF', endColorstr='#000000',GradientType=0 ); !* ie6-9 *!*!*/
	/*content: '';*/
	/*position: absolute;*/
	/*top: 0;*/
	/*left: 0;*/
	/*height: 100%;*/
	/*width: 100%;*/
	/*z-index: 10;*/
/*}*/

.quest-list__item-picture {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	border-radius: 8px;
	z-index: 0;
}

.quest-list__item-price {
	color: #fff;
	position: relative;
	z-index: 10;
}

.quest-list__item-adr {
	color: #fff;
	position: relative;
	z-index: 10;
}

.quest-list__item-adr i {
	background-color: #1031ff;
	border-radius: 50px;
	content: '';
	position: absolute;
	top: 6px;
	left: -14px;
	height: 8px;
	width: 8px;
}

.quest-list__item-desc {
	padding: 0 15px;
	position: absolute;
	left: 0;
	bottom: 28px;
	z-index: 10;
}

.quest-list__item-category {
	background-color: #e8d047;
	border-radius: 8px;
	color: #223539;
	font-size: 10px;
	margin-right: 6px;
	padding: 4px 8px;
}

.no-touch .quest-list__item-category:hover {
	text-decoration: none;
}

.quest-list__item-sales {
	background-color: #ffffff;
	border-radius: 8px;
	color: #f00;
	font-size: 10px;
	position: relative;
	padding: 4px 20px 4px 14px;
    font-weight: bold;
	white-space: nowrap;
	display: inline-block;
}

.no-touch .quest-list__item-sales:hover {
	text-decoration: none;
}

.quest-list__item-title {
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 500;
	margin: 4px 0 10px;
	text-decoration: none;
}

.no-touch .quest-list__item-title:hover {
	color: #fff;
	text-decoration: none;
}

.quest-list__item-text {
	color: #fff;
	margin-bottom: 18px;
}


/*----------------------------
	N.	QUEST NEW
----------------------------*/


.quest-new {
	padding: 50px 0 45px;
}

.quest-new__title {
	margin-bottom: 50px;
}

.quest-new__title h3 {
	color: #000;
	font-weight: 400;
}

.quest-new__item {
	border-radius: 18px;
	overflow: hidden;
	margin: 0 auto 20px;
	padding: 16px 12px;
	position: relative;
	max-width: 263px;
	min-height: 355px;
}

.quest-new__item-overlay {
	display: block;
}


.quest-new__item-picture {
	position: absolute;
	top: 0;
	left: 0;
	min-height: 100%;
	border-radius: 8px;
	z-index: 0;
	max-width: inherit
}

.quest-new__item-price {
	color: #fff;
	position: relative;
	z-index: 10;
}

.quest-new__item-adr {
	color: #fff;
	position: relative;
	z-index: 10;
	max-width: 150px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	padding-left: 14px;
}

.quest-new__item-adr i {
	background-color: #1031ff;
	border-radius: 50px;
	content: '';
	position: absolute;
	top: 6px;
	left: 0px;
	height: 8px;
	width: 8px;
}

.quest-new__item-desc {
	padding: 0 15px;
	position: absolute;
	left: 0;
	bottom: 28px;
	z-index: 10;
}

.quest-new__item-category {
	background-color: #e8d047;
	border-radius: 8px;
	color: #223539;
	font-size: 10px;
	margin-right: 6px;
	padding: 4px 8px;
}

.no-touch .quest-new__item-category:hover {
	text-decoration: none;
}

.quest-new__item-sales {
	background-color: #39fbf3;
	border-radius: 8px;
	color: #223539;
	font-size: 10px;
	position: relative;
	padding: 4px 20px 4px 14px;
}

.no-touch .quest-new__item-sales:hover {
	text-decoration: none;
}

.quest-new__item-title {
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 500;
	margin: 4px 0 10px;
	text-decoration: none;
}

.no-touch .quest-new__item-title:hover {
	color: #fff;
	text-decoration: none;
}

.quest-new__item-text {
	color: #fff;
	margin-bottom: 18px;
}

/*----------------------------
	N.	QUEST NEWS
----------------------------*/

.quest-news__title {
	margin-bottom: 50px;
}

.quest-news__title h3 {
	color: #fff;
}

.quest-news__item {
	border-radius: 18px;
	color: #000;
	margin: 0 auto 25px;
	overflow: hidden;
	position: relative;
	max-width: 370px;
	min-height: 488px;
}

.quest-news__item-overlay {
	color: #fff;
	display: block;
	text-decoration: none;
}

.no-touch .quest-news__item-overlay:focus,
.no-touch .quest-news__item-overlay:hover {
	color: #fff;
	text-decoration: none;
}


.quest-news__item img {
	border-radius: 20px;
}

.quest-news__item-desc {
	padding: 0 20px 60px;
	position: absolute;
	top: 190px;
	left: 0;
	max-width: 390px;
}

.quest-news__item h4,
.quest-news__item p,
.quest-news__item a {
	position: relative;
	z-index: 10;
}

.quest-news__item h4 {
	font-size: 20px;
	margin-bottom: 35px;
}

.quest-news__item p {
	color: #fff;
	font-size: 12px;
}

.quest-news__item-detail {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	position: absolute;
	left: 20px;
	bottom: 30px;
	text-decoration: none;
	text-transform: uppercase;
	z-index: 10;
}

.quest-news__item-detail::before {
	color: #fff;
	content: "\f077";
	font-size: 12px;
	font-family: FontAwesome;
	position: absolute;
	top: 5px;
	right: -34px;
}

.no-touch .quest-news__item-detail:hover {
	color: #fff;
}

.quest-news__all-news {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding-right: 25px;
	position: relative;
}

.quest-news__all-news::before {
	color: #fff;
	content: "\f078";
	font-size: 12px;
	font-family: FontAwesome;
	position: absolute;
	top: 5px;
	right: 8px;
}

.no-touch .quest-news__all-news:hover {
	color: #fff;
	text-decoration: none;
}

.quest-news__desc {
	color: #fff;
	margin-top: 85px;
	padding: 20px 0;
}

@media(max-width: 1200px) {

	.quest-news__item-desc {
		top: 40px;
	}

}

/*----------------------------
	N.	QUEST WIDGETS
----------------------------*/

.quest-widgets {
	padding-bottom: 160px;
}

.quest-widgets h5 {
	color: #fff;
	font-size: 26px;
	text-transform: uppercase;
}

.quest-widgets__item {
	margin-bottom: 25px;
}

.quest-widgets img {
	display: inline-block;
}


/*----------------------------
	N.	FOOTER
----------------------------*/

.footer {
	color: #fff;
	padding-bottom: 70px;
	padding-top: 20px;
}

.footer a {
	color: #fff;
	font-weight: 300;
	display: block;
	text-decoration: none;
}
.footer a:hover {

}

.footer__logo {
	margin-bottom: 6px;
	max-width: 200px;
}

.footer__desc {
	margin-bottom: 15px;
	color: #fff;
}

.footer__desc p {
	font-size: 12px;
	color: #fff;
}

.footer__copy {
	margin-top: 10px;
}


/*	FOOTER SERVICES	*/

.footer__services {
	padding-left: 80px;
}

.footer__services h4 {
	font-size: 34px;
	margin: 0;
	padding: 0;
}

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

.footer__services li {
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 14px 0;
}

.footer__services li:last-child {
	border: none;
}

/*	FOOTER CONTACTS	*/

.footer__contacts {
	padding-left: 64px;
	color: #fff;
}

.footer__contacts p {
	color: #fff;
}
.footer__contacts h4 {
	color: #fff;
	font-size: 34px;
	margin: 0 0 14px;
	padding: 0;
}

@media(max-width: 991px) {

	.footer__services {
		margin: 20px 0 10px;
		padding-left: 0;
	}

	.footer__contacts {
		margin: 20px 0 10px;
		padding-left: 0;
	}

}



.gradient {
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
}

.filter-box {
    border: 1px solid #4a4a4a;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 20px;
    background: #efefef;
}
.filter-box label {
	padding: 0 0 0 10px;
	font-weight: normal;
}
.filter-box h4 {
	padding-left: 10px;
}
.filter-box label i {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.filter-box input[type=text] {
    color: #000;
    font-weight: bold;
    background: transparent;
    border: 0;
}


.form-horizontal input{color:inherit;font:inherit;margin:0;}
.form-horizontal input::-moz-focus-inner{border:0;padding:0;}
.form-horizontal input{line-height:normal;}
.form-horizontal input[type="text"],.form-horizontal textarea{vertical-align:top;border:none;width:100%;outline:0;}
/*! CSS Used from: http://old.questcompass.ru/wp-content/themes/zepur/css/style.css?ver=2.4.1 */
::-moz-selection{background-color:rgba(0,0,0,0.66);color:#fff;}
::selection{background-color:rgba(0,0,0,0.66);color:#fff;}
.form-horizontal input[type="text"],.form-horizontal textarea{font-size:16px;padding:8px 0;box-shadow:0 -1px 0 0 rgba(0,0,0,0) inset;border-radius:0;border-bottom:1px solid #e8e8e8;background-color:transparent!important;color:inherit!important;-webkit-transition:border-color 0.3s, box-shadow 0.3s;transition:border-color 0.3s, box-shadow 0.3s;}
.form-horizontal input[type="text"]{height:46px;}
::-webkit-input-placeholder{color:#ccc;position:static;opacity:0.5;}
::-webkit-input-placeholder{opacity:1;}
::-moz-placeholder{opacity:0.5;color:#ccc;}
:-ms-input-placeholder{opacity:0.5;color:#ccc;}
/*! CSS Used from: Embedded */
.form-horizontal input[type="text"],.form-horizontal textarea{border-color:#4f5d64;}
.form-horizontal input:focus,.form-horizontal textarea{border-color:#188ae2;}
.form-horizontal input:focus,.form-horizontal textarea{box-shadow:0 -1px 0 0 #188ae2 inset;}

.form-horizontal button{font-size:15px;line-height:20px;padding:11px 22px;margin:5px 0;text-transform:uppercase;position:relative;border-radius:3px;border:none;-webkit-transition:background-color 0.3s, box-shadow 0.3s, color 0.3s;transition:background-color 0.3s, box-shadow 0.3s, color 0.3s;-webkit-tap-highlight-color:rgba(0,0,0,0);}
.form-horizontal button{box-shadow:0 2px 1px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.3);}
.no-touch button:hover{box-shadow:0 2px 3px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.3);}
.form-horizontal button:focus,button:active{box-shadow:0 3px 3px rgba(0,0,0,0.1), 0 5px 8px rgba(0,0,0,0.16), 0 9px 20px rgba(0,0,0,0.16)!important;}
.form-horizontal button{background-color:#c20;color:#fff;}
/*! CSS Used from: Embedded */
button{background-color:#188ae2;}
.form-horizontal input:focus{border-color:#188ae2;}
.form-horizontal input:focus{box-shadow:0 -1px 0 0 #188ae2 inset;}


.comment-block {
	display: flex;
	flex-flow: wrap;
}
.comment-item {
	display: flex;
}

.quest-list__item-desc {
	padding: 0 15px;
	position: absolute;
	left: 0;
	bottom: 28px;
	z-index: 10;
	background: #33333385;
}