/*** RESET STYLES (NORMALIZE) ***/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, div, input, textarea, select,
button {
	display: block;
	-o-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

/* Reset `button` and button-style `input` default styles */
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	background: none;
	border: 0;
	color: inherit;
	/* cursor: default; */
	font: inherit;
	line-height: normal;
	overflow: visible;
	padding: 0;
	-webkit-appearance: button;
	/* for input */
	-webkit-user-select: none;
	/* for button */
	-moz-user-select: none;
	-ms-user-select: none;
}

button,
input[type="submit"] {
	padding: 0;
	margin: 0;
	border: none;
	cursor: pointer;
}

/*** END RESET STYLES ***/
/* GENERAL */
a {
	text-decoration: none;
	color: #7e7e7e;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	font: 14px/1.2 "Montserrat", sans-serif;
	font-weight: 400;
	background: #fff;
	color: #7e7e7e;
	min-width: 320px;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

body.dark:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: #878787;
	height: 100%;
	opacity: 0.7;
	z-index: 99;
}

img {
	display: block;
	max-width: 100%;
}

.wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-height: 100vh;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.container {
	max-width: 1044px;
	margin: 0 auto;
	padding: 0 10px;
}

.svg-icon {
	width: 1em;
	height: 1em;
	display: block;
	fill: currentColor;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* end GENERAL */
/* Buttons etc */
.btn,
input[type="submit"] {
	display: inline-block;
	vertical-align: top;
	padding: 12px 18px;
	color: #7e7e7e;
	font-weight: 400;
	text-transform: uppercase;
	outline: none;
}

@media only screen and (max-width: 640px) {
	.btn,
	input[type="submit"] {
		padding: 8px 10px;
	}
}

/* EOF Buttons etc */
/* Inputs */
.input, .textarea {
	width: 100%;
	height: 100%;
	outline: none;
	border: none;
	padding: 10px;
}

.textarea {
	resize: vertical;
	overflow: hidden;
}

input, textarea, select, button {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

/* EOF Inputs */
.go-up {
	display: none;
	width: 79px;
	height: 49px;
	position: fixed;
	right: 6%;
	bottom: 20px;
	-webkit-box-shadow: 0 2px 5px #444444;
	        box-shadow: 0 2px 5px #444444;
	background-color: #fff;
	cursor: pointer;
	-webkit-transition: background-color 0.3s;
	        transition: background-color 0.3s;
	z-index: 999;
}

@media only screen and (min-width: 768px) {
	.go-up:hover {
		background-color: #5DD2DF;
	}
	.go-up:hover .svg-icon {
		color: #fff;
	}
}

.go-up .svg-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 23px;
	color: #444444;
	-webkit-transition: color 0.3s;
	        transition: color 0.3s;
}

.header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 8px 30px;
	margin-bottom: 40px;
	background: #48a5ad;
	background: -webkit-linear-gradient(left, #48a5ad 0%, #6bc8d0 25%, #6bc8d0 30%, #6dcad2 39%, #6dcad2 39%, #2e8b93 100%);
	background: -webkit-gradient(linear, left top, right top, from(#48a5ad), color-stop(25%, #6bc8d0), color-stop(30%, #6bc8d0), color-stop(39%, #6dcad2), color-stop(39%, #6dcad2), to(#2e8b93));
	background: linear-gradient(to right, #48a5ad 0%, #6bc8d0 25%, #6bc8d0 30%, #6dcad2 39%, #6dcad2 39%, #2e8b93 100%);
}

@media only screen and (max-width: 1024px) {
	.header {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 768px) {
	.header {
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		padding: 8px 10px;
	}
}

.header-search {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	position: relative;
}

@media only screen and (max-width: 768px) {
	.header-search {
		-webkit-box-ordinal-group: 2;
		-webkit-order: 1;
		    -ms-flex-order: 1;
		        order: 1;
		width: 100%;
		margin-top: 10px;
	}
}

.header-search__btn {
	position: absolute;
	top: 50%;
	right: 16px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.header-search__btn .svg-icon {
	font-size: 32px;
	color: #2f8c94;
	-webkit-transition: color 0.3s;
	        transition: color 0.3s;
}

@media only screen and (max-width: 768px) {
	.header-search__btn .svg-icon {
		font-size: 26px;
	}
}

@media only screen and (min-width: 768px) {
	.header-search__btn:hover .svg-icon {
		color: #000;
	}
}

.header-search .input {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 19px 16px 13px 40px;
}

@media only screen and (max-width: 768px) {
	.header-search .input {
		padding: 14px 15px 8px 15px;
	}
}

.header-media {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-left: 35px;
}

@media only screen and (max-width: 430px) {
	.header-media {
		margin-left: 0;
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}

.header-media__box {
	width: 79px;
	height: 49px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 20px;
	-webkit-box-shadow: 0 2px 5px #116168;
	        box-shadow: 0 2px 5px #116168;
	background-color: #fff;
	cursor: pointer;
	-webkit-transition: -webkit-box-shadow 0.3s;
	        transition: box-shadow 0.3s;
}

@media only screen and (max-width: 768px) {
	.header-media__box {
		width: 43px;
		height: 35px;
		margin-right: 5px;
	}
}

.header-media__box:last-child {
	margin-right: 0;
}

@media only screen and (min-width: 768px) {
	.header-media__box:hover {
		-webkit-box-shadow: 0 0 0 #116168;
		        box-shadow: 0 0 0 #116168;
	}
}

.header .logo {
	margin-right: 25px;
}

@media only screen and (max-width: 768px) {
	.header .logo {
		margin-right: 5px;
	}
}

@media only screen and (max-width: 430px) {
	.header .logo {
		width: 100%;
		margin: 0 0 10px 0;
	}
}

@media only screen and (max-width: 430px) {
	.header .logo img {
		margin: 0 auto;
	}
}

.usermenu__ico .svg-icon {
	color: #14989f;
	font-size: 35px;
}

@media only screen and (max-width: 768px) {
	.usermenu__ico .svg-icon {
		font-size: 24px;
	}
}

.main {
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-height:900px;
}

.popup-box {
	position: fixed;
	overflow:auto;
	max-height:100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 1115px;
	background-color: #efefef;
	z-index: 100;
}

@media only screen and (max-width: 1120px) {
	.popup-box {
		width: 100%;
	}
}

.popup-box-close{
	position:absolute;
	top:15px;
	right:15px;
	font-size:15px;
	color:#7e7e7e;
	cursor:pointer;
	z-index:10;
}

.popup-box__top {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
	.popup-box__top {
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
	}
}

@media only screen and (max-width: 768px) {
	.popup-box__top {
		margin-bottom: 20px;
	}
}

.popup-box__top .player {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	position: relative;
	width: 50%;
}

@media only screen and (max-width: 1024px) {
	.popup-box__top .player {
		width: 100%;
		margin:45px 0 0 0;
	}
}

.popup-box__top .player iframe,
.popup-box__top .player #kt_player,
.popup-box__top .player #kt_player_internal {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	width: 100% !important;
	height: 100% !important;
}

.popup-box__top .player .fp-poster img{
	top:50% !important;
	left:50% !important;
	-webkit-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	height:auto !important;
}

.popup-box__content {
	height: 420px;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	overflow-y: scroll;
}

@media screen and (max-width: 1024px) {
	.popup-box__content {
		height:auto;
	}
}

.popup-box__content .item-bottom {
	padding: 0 0 15px;
}

.popup-box__content .item-bottom:before, .popup-box__content .item-bottom:after {
	top: inherit;
	bottom: 0;
}

.popup-box__content .item-bottom:before {
	bottom: 2px;
}

.popup-box__content .item-bottom:after {
	bottom: 3px;
}

.content {
	margin-bottom: 70px;
}

@media only screen and (max-width: 1024px) {
	.content {
		margin-bottom: 30px;
	}
}

.content .item {
	margin-bottom: 40px;
}

.content .item:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
	.content .item {
		margin-bottom: 20px;
	}
}

.content .media-list ul li a {
	text-transform: lowercase;
}

.item {
	padding: 15px 35px;
	background-color: #efefef;
}

@media only screen and (max-width: 1024px) {
	.item {
		padding: 10px;
	}
}

.item-top {
	margin-bottom: 25px;
	padding: 0 0 10px;
	position: relative;
}

.item-top:after {
	content: '';
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	background: -webkit-gradient(linear, left bottom, right top, color-stop(49.9%, rgba(107, 154, 189, 0)), color-stop(52%, #efefef), color-stop(68%, #efefef), color-stop(70%, rgba(107, 154, 189, 0))), -webkit-gradient(linear, left bottom, right top, color-stop(18%, #efefef), color-stop(20%, rgba(107, 154, 189, 0)));
	background: -webkit-linear-gradient(left bottom, rgba(107, 154, 189, 0) 49.9%, #efefef 52%, #efefef 68%, rgba(107, 154, 189, 0) 70%), -webkit-linear-gradient(left bottom, #efefef 18%, rgba(107, 154, 189, 0) 20%);
	background: linear-gradient(to right top, rgba(107, 154, 189, 0) 49.9%, #efefef 52%, #efefef 68%, rgba(107, 154, 189, 0) 70%), linear-gradient(to right top, #efefef 18%, rgba(107, 154, 189, 0) 20%);
	background-size: 0.4em 1em;
	background-color: #fff;
}

@media only screen and (max-width: 1120px) {
	.item-top {
		padding: 0 0 10px 0;
	}
}

@media only screen and (max-width: 768px) {
	.item-top {
		margin-bottom: 10px;
		padding: 0 0 5px 0;
	}
}

.item-head {
	margin-bottom: 30px;
}

.item-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
	.item-info {
		margin-bottom: 10px;
	}
}

.item-info__box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.item-info__photo {
	max-width: 50px;
	margin-right: 10px;
}

.item-info__text span {
	display: block;
}

.item-info__name {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.item-text {
	padding-bottom: 20px;
	line-height:1.4;
}

.item-text__row {
	line-height: 30px;
	margin-bottom: 20px;
}

.item-text__row:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	.item-text__row {
		line-height: 20px;
	}
}

.item-buttons {
	margin-bottom: 20px;
}

.item-buttons .btn {
	font-size: 16px;
	padding: 11px 14px;
	-webkit-box-shadow: 0 1px 0 #d8d8d8;
	        box-shadow: 0 1px 0 #d8d8d8;
	background-color: #ffffff;
	text-shadow: 0 1px 0 #ffffff;
	color: #14989f;
	font-weight: 600;
	-webkit-transition: color 0.3s, background-color 0.3s, text-shadow 0.3s;
	        transition: color 0.3s, background-color 0.3s, text-shadow 0.3s;
}

@media only screen and (min-width: 768px) {
	.item-buttons .btn:hover {
		color: #fff;
		background-color: #14989f;
		text-shadow: 0 1px 0 #14989f;
	}
}

.item-bottom {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 15px 25px 0;
	position: relative;
}

.item-bottom:before, .item-bottom:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
}

.item-bottom:before {
	background-color: #dedede;
	top: 2px;
}

.item-bottom:after {
	background-color: #fff;
	top: 1px;
}

.item-bottom__holder {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.item-bottom__ico {
	margin-right: 8px;
}

.item-bottom__ico .svg-icon {
	font-size: 20px;
	color: #fff;
}

.item-bottom__box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 50px;
}

.item-bottom__box:last-child {
	margin-right: 0;
}

.item-bottom__text {
	font-size: 16px;
	font-weight: 600;
}

.item-gallery {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-left: -10px;
}

.item-gallery__img {
	margin: 0 0 20px 10px;
}

.item__title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.item__title_ico {
	display: block;
	width: 33px;
	height: 32px;
	background: url(../../images/item-ico.png) no-repeat;
}

.item__title_text {
	font-size: 24px;
}

@media only screen and (max-width: 768px) {
	.item__title_text {
		font-size: 16px;
	}
}

.item__desc{
	padding:10px 0;
}

.item__row {
	margin-bottom: 15px !important;
	padding:0 !important;
}

.item__row:last-child {
	margin-bottom: 0;
}

.media {
	width: 80%;
	margin: 0 auto;
	padding-bottom: 35px;
}

@media only screen and (max-width: 1024px) {
	.media {
		width: 100%;
		padding: 0 10px 10px;
	}
}

.media-info {
	margin-bottom: 20px;
	border-bottom: 1px solid transparent;
}

@media only screen and (max-width: 768px) {
	.media-info {
		margin-bottom: 0;
	}
}

.media-info-title {
	font-size: 18px;
	margin-bottom: 13px;
}

.media-info-row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.media-description {
	line-height: 18px;
	margin-bottom: 10px;
}

.media-values {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin: 0 10px 7px 0;
}

.media-values li {
	margin-right: 40px;
	font-size: 16px;
}

.media-values li:last-child {
	margin-right: 0;
}

@media only screen and (max-width: 768px) {
	.media-values li {
		font-size: 14px;
		margin: 0 25px 3px 0;
	}
}

.media-values-title {
	margin-bottom: 5px;
}

.media-values-text {
	font-weight: 600;
}

.media-lists {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 0 23px;
}

@media only screen and (max-width: 768px) {
	.media-lists {
		padding: 0;
		margin-bottom: 10px;
	}
}

.media-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-right: 5px;
}

.media-list-title {
	font-size: 16px;
	margin-right: 7px;
}

.media-list ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.media-list ul li {
	margin: 3px 0 0 3px;
}

.media-list ul li:first-child {
	margin: 3px 0 0 0;
}

.media-list ul a {
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 1px 0 #18757d;
	-webkit-box-shadow: 0 1px 0 #ffffff;
	        box-shadow: 0 1px 0 #ffffff;
	background-color: #14989f;
	-webkit-transition: background-color 0.3s, color 0.3s, -webkit-box-shadow 0.3s;
	        transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

@media only screen and (min-width: 768px) {
	.media-list ul a:hover {
		color: #14989f;
		-webkit-box-shadow: 0 1px 0 #d8d8d8;
		        box-shadow: 0 1px 0 #d8d8d8;
		background-color: #fff;
	}
}

@media only screen and (max-width: 768px) {
	.media-list ul a {
		font-size: 14px;
		padding: 5px;
	}
}

.media-button {
	margin-bottom: 17px;
}

.media-button .btn {
	-webkit-transition: color 0.3s, background-color 0.3s;
	        transition: color 0.3s, background-color 0.3s;
}

.media-actions {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0 0 7px 0;
}

.media-actions__box {
	background-color: #cbcbcb;
	margin-right: 8px;
	padding: 4px;
	cursor: pointer;
	-webkit-transition: opacity 0.3s;
	        transition: opacity 0.3s;
}

.media-actions__box:last-child {
	margin-right: 0;
}

@media only screen and (min-width: 768px) {
	.media-actions__box:hover {
		background-color: #BAB9B9;
	}
}

.media-actions__ico .svg-icon {
	color: #fff;
	font-size: 38px;
}

.vote {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin: 0 20px 7px 0;
	min-width: 170px;
}

.vote .voters {
	text-align: center;
	margin: 5px 0 0 0;
}

.vote-button {
	padding: 4px;
	-webkit-align-self: center;
	    -ms-flex-item-align: center;
	        align-self: center;
}

.vote-button:first-child {
	margin-right: 8px;
}

.vote-button.vote-like {
	background: #afce20;
	background: -webkit-linear-gradient(top, #afce20 0%, #99b80a 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#afce20), to(#99b80a));
	background: linear-gradient(to bottom, #afce20 0%, #99b80a 100%);
}

.vote-button.vote-dislike {
	background: #e84620;
	background: -webkit-linear-gradient(top, #e84620 0%, #d22f0a 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#e84620), to(#d22f0a));
	background: linear-gradient(to bottom, #e84620 0%, #d22f0a 100%);
}

.vote-button .svg-icon {
	font-size: 38px;
	color: #fff;
	-webkit-transition: opacity 0.3s;
	        transition: opacity 0.3s;
}

@media only screen and (min-width: 768px) {
	.vote-button:hover .svg-icon {
		opacity: 0.7;
	}
}

.vote-progress {
	width: 170px;
	margin: 0 0 0 50px;
	padding-right: 50px;
	position: relative;
}

@media only screen and (max-width: 768px) {
	.vote-progress:before, .vote-progress:after {
		display: none;
	}
}

.vote-progress:before {
	content: '';
	position: absolute;
	width: 1px;
	height: 30px;
	top: 50%;
	right: -1px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	background-color: #dedede;
}

.vote-progress:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 30px;
	top: 50%;
	right: 1px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	background-color: #fff;
}

.vote-progress-num {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
}

@media only screen and (max-width: 768px) {
	.vote-progress-num {
		font-size: 23px;
		margin-bottom: 10px;
	}
}

.vote-progress-line {
	width: 100%;
	height: 5px;
	position: relative;
	-webkit-border-radius: 5px;
	        border-radius: 5px;
	overflow: hidden;
	background: #e84620;
	background: -webkit-linear-gradient(top, #e84620 0%, #d22f0a 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#e84620), to(#d22f0a));
	background: linear-gradient(to bottom, #e84620 0%, #d22f0a 100%);
}

.vote-progress-bar {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #afce20;
	background: -webkit-linear-gradient(top, #afce20 0%, #99b80a 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#afce20), to(#99b80a));
	background: linear-gradient(to bottom, #afce20 0%, #99b80a 100%);
}

.comments ::-webkit-input-placeholder,
.textfield ::-webkit-input-placeholder {
	color: #7e7e7e;
	text-transform: lowercase;
	font-size: 12px;
}

.comments ::-moz-placeholder,
.textfield ::-moz-placeholder {
	color: #7e7e7e;
	text-transform: lowercase;
	font-size: 12px;
}

.comments :-moz-placeholder,
.textfield :-moz-placeholder {
	color: #7e7e7e;
	text-transform: lowercase;
	font-size: 12px;
}

.comments :-ms-input-placeholder,
.textfield :-ms-input-placeholder {
	color: #7e7e7e;
	text-transform: lowercase;
	font-size: 12px;
}

.comments__title {
	padding-left: 23px;
	margin-bottom: 12px;
}

@media only screen and (max-width: 768px) {
	.comments__title {
		padding-left: 0;
	}
}

.comments-form-row {
	width: 34%;
	margin-bottom: 20px;
}

.comments-form-row:last-child {
	margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
	.comments-form-row {
		width: 100%;
		margin-bottom: 10px;
	}
}

.comments-form-text {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media only screen and (max-width: 768px) {
	.comments-form-text {
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
	}
}

.comments-form-input {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

@media only screen and (max-width: 768px) {
	.comments-form-input {
		width: 100%;
	}
}

.comments-form-submit {
	margin-left: 10px;
}

@media only screen and (max-width: 768px) {
	.comments-form-submit {
		margin: 10px 0 0;
		width: 100%;
		text-align: center;
	}
}

.comments-form .btn-submit {
	font-weight: 600;
	text-transform: lowercase;
	color: #fff;
	background: #afce20;
	background: -webkit-linear-gradient(top, #afce20 0%, #99b80a 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#afce20), to(#99b80a));
	background: linear-gradient(to bottom, #afce20 0%, #99b80a 100%);
	-webkit-transition: opacity 0.3s;
	        transition: opacity 0.3s;
}

@media only screen and (min-width: 768px) {
	.comments-form .btn-submit:hover {
		opacity: 0.7;
	}
}

.comments .input, .comments .textarea {
	padding: 12px 23px;
}

.comments .textarea {
	min-height: 218px;
}

.show-more {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 10px;
	cursor: pointer;
}

@media only screen and (min-width: 768px) {
	.show-more:hover .show-more__ico {
		background-color: #14989f;
	}
}

.show-more__ico {
	width: 7px;
	height: 7px;
	-webkit-border-radius: 50%;
	        border-radius: 50%;
	margin-right: 4px;
	background-color: #a0a0a0;
	-webkit-transition: background-color 0.3s;
	        transition: background-color 0.3s;
}

.show-more__ico:last-child {
	margin-right: 0;
}

.footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 25px 0;
	background: #48a5ad;
	background: -webkit-linear-gradient(left, #48a5ad 0%, #6bc8d0 25%, #6bc8d0 30%, #6dcad2 39%, #6dcad2 39%, #2e8b93 100%);
	background: -webkit-gradient(linear, left top, right top, from(#48a5ad), color-stop(25%, #6bc8d0), color-stop(30%, #6bc8d0), color-stop(39%, #6dcad2), color-stop(39%, #6dcad2), to(#2e8b93));
	background: linear-gradient(to right, #48a5ad 0%, #6bc8d0 25%, #6bc8d0 30%, #6dcad2 39%, #6dcad2 39%, #2e8b93 100%);
}

@media only screen and (max-width: 768px) {
	.footer {
		padding: 15px 0;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
	}
}

.footer-menu ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.footer-menu__item {
	line-height: 14px;
	margin-right: 5px;
}

.footer-menu__item:last-child {
	margin-right: 0;
}

@media only screen and (min-width: 768px) {
	.footer-menu__link:hover {
		text-decoration: underline;
	}
}

.footer .logo {
	margin: 0 45px;
}

@media only screen and (max-width: 768px) {
	.footer .logo {
		margin: 10px 0 15px;
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	.footer .logo img {
		margin: 0 auto;
	}
}

.footer-menu__link,
.copyright {
	font-size: 10px;
	text-transform: uppercase;
	line-height: 14px;
	color: #fff;
}

.block-drop-holder {
	position: relative;
}

.block-drop-holder .block-drop {
	position: absolute;
	top: 100%;
	right: 0;
	background: #BAB9B9;
	color:#fff;
	min-width: 270px;
	padding:15px;
	display:none;
}

/*@media screen and (max-width: 400px) {
	.block-drop-holder .block-drop {
		right: auto;
		left:0;
	}
}*/

.block-drop-holder .block-drop a{
	color:#fff;
}

.block-drop-holder:hover .block-drop{
	display:block;
}

.block-drop-holder .row {
	margin:0 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	        align-items: center;
}

.block-drop-list li{
	margin:5px 0 0 0;
}

.block-drop-list li:first-child{
	margin:0;
}

.hidden{
	display:none;
}

.field-label{
	display:block;
	margin:0 0 10px;
}

input[type="submit"].submit,
.button{
	padding:10px;
	display:block;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 1px 0 #18757d;
	-webkit-box-shadow: 0 1px 0 #ffffff;
	box-shadow: 0 1px 0 #ffffff;
	background-color: #14989f;
	-webkit-transition: background-color 0.3s, color 0.3s, -webkit-box-shadow 0.3s;
	transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

input[type="submit"].submit:hover,
.button:hover{
	color: #14989f !important;
	-webkit-box-shadow: 0 1px 0 #d8d8d8;
	box-shadow: 0 1px 0 #d8d8d8;
	background-color: #fff;
}

.comment-like{
	display:block !important;
}

.title-404{
	font-size:42px;
}

.empty-content{
	margin:0 0 20px;
}
.plain-text{
	line-height:1.4;
}
.plain-text li {
    display: list-item
}

.plain-text head {
    display: none
}

.plain-text table {
    display: table
}

.plain-text tr {
    display: table-row
}

.plain-text thead {
    display: table-header-group
}

.plain-text tbody {
    display: table-row-group
}

.plain-text tfoot {
    display: table-footer-group
}

.plain-text col {
    display: table-column
}

.plain-text colgroup {
    display: table-column-group
}

.plain-text td,
.plain-text th {
    display: table-cell
}

.plain-text caption {
    display: table-caption
}

.plain-text th {
    font-weight: bolder;
    text-align: center
}

.plain-text caption {
    text-align: center
}

.plain-text body {
    margin: 8px
}

.plain-text h1 {
    font-size: 2em;
    margin: .67em 0
}

.plain-text h2 {
    font-size: 1.5em;
    margin: .75em 0
}

.plain-text h3 {
    font-size: 1.17em;
    margin: .83em 0
}

.plain-text h4,
.plain-text p,
.plain-text blockquote,
.plain-text ul,
.plain-text fieldset,
.plain-text form,
.plain-text ol,
.plain-text dl,
.plain-text dir,
.plain-text menu {
    margin: 1.12em 0
}

.plain-text h5 {
    font-size: .83em;
    margin: 1.5em 0
}

.plain-text h6 {
    font-size: .75em;
    margin: 1.67em 0
}

.plain-text h1,
.plain-text h2,
.plain-text h3,
.plain-text h4,
.plain-text h5,
.plain-text h6,
.plain-text b,
.plain-text strong {
    font-weight: bolder
}

.plain-text blockquote {
    margin-left: 40px;
    margin-right: 40px
}

.plain-text i,
.plain-text cite,
.plain-text em,
.plain-text var,
.plain-text address {
    font-style: italic
}

.plain-text pre,
.plain-text tt,
.plain-text code,
.plain-text kbd,
.plain-text samp {
    font-family: monospace
}

.plain-text pre {
    white-space: pre
}

.plain-text button,
.plain-text textarea,
.plain-text input,
.plain-text select {
    display: inline-block
}

.plain-text big {
    font-size: 1.17em
}

.plain-text small,
.plain-text sub,
.plain-text sup {
    font-size: .83em
}

.plain-text sub {
    vertical-align: sub
}

.plain-text sup {
    vertical-align: super
}

.plain-text table {
    border-spacing: 2px;
}

.plain-text thead,
.plain-text tbody,
.plain-text tfoot {
    vertical-align: middle
}

.plain-text td,
.plain-text th,
.plain-text tr {
    vertical-align: inherit
}

.plain-text s,
.plain-text strike,
.plain-text del {
    text-decoration: line-through
}

.plain-text hr {
    border: 1px inset
}

.plain-text ul{
	list-style:disc;
}

.plain-text ol,
.plain-text ul,
.plain-text dir,
.plain-text menu,
.plain-text dd {
    margin-left: 40px
}

.plain-text ol {
    list-style-type: decimal
}

.plain-text ol ul,
.plain-text ul ol,
.plain-text ul ul,
.plain-text ol ol {
    margin-top: 0;
    margin-bottom: 0
}

.plain-text u,
.plain-text ins {
    text-decoration: underline
}

.plain-text br:before {
    content: "\A";
    white-space: pre-line
}

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


/* Begin bidirectionality settings (do not change) */

.plain-text BDO[DIR="ltr"] {
    direction: ltr;
    unicode-bidi: bidi-override
}

.plain-text BDO[DIR="rtl"] {
    direction: rtl;
    unicode-bidi: bidi-override
}

.plain-text *[DIR="ltr"] {
    direction: ltr;
    unicode-bidi: embed
}

.plain-text *[DIR="rtl"] {
    direction: rtl;
    unicode-bidi: embed
}

.popup-title{
	font-size: 2em;
	margin: .67em 0;
	display:block;
}

.textfield{
	padding: 12px 23px;
	width:100%;
	border:1px solid #ccc;
	text-transform:lowercase;
	font-size:12px;
}
textarea.textfield{
	min-height: 218px;
}
@media screen and (max-width: 767px) {
	textarea.textfield{
		min-height: 100px;
	}
}
form .row{
	margin:0 0 20px;
}

.field-error{
	color:red;
	font-size:12px;
	margin:5px 0 0 0;
}

.links{
	margin:15px 0 0 0;
}

.links a{
	color:#48a5ad;
}

.popup-holder label{
	display:block;
	margin:10px 0;
}

.captcha-control .image{
	margin:0 0 15px;
}

.js-get-video-pop{
	cursor:pointer;
}

.loader{
	position:fixed;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	-moz-transform:translate(-50%, -50%);
	-ms-transform:translate(-50%, -50%);
	-o-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	display:none;
	z-index:100;
}

.generic-error{
	color:red;
}

.comments .generic-error{
	margin:10px 0 0 0;
}