/*
Theme Name: HopeTV
Author: the Hope Channel Bulgaria Team
Author URI: sdabg.tv
Description: This theme has been custom developed, from scratch, for the Hope Channel Bulgaria website. It is 100% based on a flexbox grid, which is completely responsive and easy to manage. It's main purpose is to gracefully manage & display video posts from an archive database, while not compromising on page functionality.
Version: 3.0.2
Tags: grid-layout, sidebars, advanced-custom-fields, custom-logo, featured-images, footer-widgets, theme-options, full-width-template, news, blog, language-support
*/

/*General Styles*/
* { -webkit-box-sizing: border-box; box-sizing: border-box; }

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	font-size: 14px;
	color: #363636;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; font-weight: 500; line-height: 1.2; }
h1 { font-size: 40px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 14px; }
h6 { font-size: 12px; }

a { color: #0c4da2; }
p, li { line-height: 1.8; }
p { margin-top: 0; }
img {max-width: 100%;}

/* Reusable Styles */
.right { text-align: right; }
.left { text-align: left; }
.center { text-align: center; margin: 0 auto; }
.clear { clear: both; }
.nomargin { margin: 0!important; }
.nopadding { padding: 0!important; }

/* Buttons */
.button {
	background-color: #ffd503;
	border: 1px solid #ffd503;
	border-radius: 4px;
	color: #363636;
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	-webkit-transition: background-color .2s, color .2s, border-color .2s;
	-o-transition: background-color .2s, color .2s, border-color .2s;
	transition: background-color .2s, color .2s, border-color .2s;
	cursor: pointer;
	font-weight: bold;
	z-index: 999;
}
.button:hover {
	background-color: #0c4da2;
	border-color: #0c4da2;
	color: #fff;
}
.inverted {
	background-color: rgba(255,255,255,0);
	color: #0c4da2;
}
.inverted:hover {
	background-color: #0c4da2;
	color: #fff;
}
.empty {
	padding: 5px 15px;
	margin-top: 15px;
	font-size: 13px;
}
.empty:hover {
	
}
/*Header Styles*/
header {
	padding: 25px 15px 50px;
	position: relative;
	z-index: 999;
}
header:before {
	content: '';
	background-color: #0c4da2;
	width: 100%;
	height: 100%;
	position: absolute;
	top: -3vw;
	left: 0;
	-webkit-transform: skewY(3deg);
	-ms-transform: skewY(3deg);
	transform: skewY(3deg);
	padding-bottom: 3vw;
}
.logo img {
	max-width: 275px;
}

/* Desktop Menu */
.menu {
	margin: 0;
	padding: 0;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	float: right;
}
.menu li {
	list-style: none;
	position: relative;
}
.menu a {
	color: #fff;
	font-weight: bold;
	padding: 10px 15px;
	display: block;
	text-decoration: none;
	-webkit-transition: background-color .3s, color .3s;
	-o-transition: background-color .3s, color .3s;
	transition: background-color .3s, color .3s;
}
.menu > li.current-menu-item > a:after,
.menu > li.current_page_parent > a:after,
.menu > li > a:after {
	content: '';
	background-color: #ffd503;
	width: 30px;
	height: 2px;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: 0;
}
.menu > li > a:after {
	background-color: #fff;
	width: 0;
	-webkit-transition: width .2s;
	-o-transition: width .2s;
	transition: width .2s;
}
.menu > li:hover > a:after {
	width: 30px;
}

/*sub-menu*/
.sub-menu {
	position: absolute;
	top: 100%;
	min-width: 220px;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height .15s ease-out;
	-o-transition: max-height .15s ease-out;
	transition: max-height .15s ease-out;
	z-index: 999;
	background-color: #0c4da2;
	-webkit-box-shadow: 1px 1px 5px -1px rgba(0,0,0,1);
	box-shadow: 1px 1px 5px -1px rgba(0,0,0,1);
}
.menu li:hover > .sub-menu {
	max-height: 2000px;
	-webkit-transition: max-height .25s ease-in;
	-o-transition: max-height .25s ease-in;
	transition: max-height .25s ease-in;
}

.sub-menu a {
	font-weight: normal;
}
.sub-menu li a:hover {
	background-color: #0c4da2;
}

/* Mobile Menu */
.menu-toggle {
	background-color: rgba(255,255,255,.1);
	border-radius: 4px;
	border: 0;
	display: none;
	color: #fff;
	cursor: pointer;
	line-height: 1;
	padding: 15px 20px;
	float: right;
}
.menu-toggle:before {
	content: '\2630';
	font-size: 25px;
}
.menu-toggle.active:before {
	content: '\2716';
	margin-left: 2px;
}
.menu-toggle:focus {
	outline: none;
}
.open {
	display: none;
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	height: 35px;
	position: absolute;
	top: 3px;
	right: 28%;
	width: 35px;
	
}
.open:before {
	content: "\276F";
	position: relative;
	top: -1px;
	left: 1px;
	font-size: 10px;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	display: inline-block;
	-webkit-transition: top .4s, -webkit-transform .4s;
	transition: top .4s, -webkit-transform .4s;
	-o-transition: transform .4s, top .4s;
	transition: transform .4s, top .4s;
	transition: transform .4s, top .4s, -webkit-transform .4s;
	font-size: 18px;
}
.open.rotate:before {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
	top: 0;
}

.thumb {
	position: relative;
	width: 100%;
	text-align: center;
	height: 210px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.clickable {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

/*Footer Styles*/
footer:before,
footer:after,
.wrapper.banner:before,
.wrapper.banner:after {
	content: '';
	background-color: #fff;
	position: absolute;
	left: 0;
	width: 50%;
	-webkit-transform: skewY(5deg);
	-ms-transform: skewY(5deg);
	transform: skewY(5deg);
	height: 6vw;
	top: -3vw;
}
footer:after,
.wrapper.banner:after {
	right: 0;
	left: auto;
	-webkit-transform: skewY(-5deg);
	-ms-transform: skewY(-5deg);
	transform: skewY(-5deg);
}
.wrapper.banner:before,
.wrapper.banner:after {
	bottom: 0;
	top: auto;
	z-index: 20;
}
footer {
	background-color: #0c4da2;
	color: #fff;
	clear: both;
	position: relative;
}
.ftop {
	padding: 10vw 0 30px;
}
.ftitle {
	margin: 0;
	font-size: 26px;
}
.ftitle:after,
.home-title:after {
	content: '';
	display: block;
	border-bottom: 2px solid #fff;
	width: 95px;
	margin: 20px auto 50px;
}
footer article {
	margin-bottom: 30px;
}
footer article .thumb {
	height: 100px;
	margin-bottom: 10px;
}
footer article h5 {
	margin: 0;
	font-size: 16px;
}
footer article a {
	color: #fff;
	text-decoration: none;
}

.fbottom {
	background-color: #062e62;
	padding: 30px 0;
}
.fbottom .row {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.fbottom .social {
	margin: 0;
}
.fbottom .social a {
	display: inline-block;
	margin-right: 30px;
}
.fbottom .social img {
	max-width: 30px;
}


/*Home Page*/
.banner {
	position: relative;
	top: -3vw;
}
.banner,
.unslider ul li {
	height: 23vw;
	max-height: 560px;
	min-height: 335px;
}
.banner-content {
	position: absolute;
	top: 45%;
	color: #fff;
	left: 0;
	right: 0;
	text-align: center;
}
.banner-content h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	margin: 0;
	font-size: 30px;
}
.angle.top-angle {
	width: 100%;
    position: absolute;
    top: 24vw;
    z-index: 999;
}
main {
	position: relative;
	z-index: 30;
}
.home main {
	position: relative;
	top: -3vw;
	z-index: 30;
}
.row.featured {
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	min-height: 350px;
	height: 25vw;
	max-height: 420px;
	margin-bottom: 120px;
	padding: 0 15px;
}
.featured .col-4 {
	padding-right: 0;
}
.featured article {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 4px;
}
.featured article .clickable {
	z-index: 999;
}
.featured article h3 {
	background-image: url(images/play-button-white.png);
    background-repeat: no-repeat;
    background-position: bottom left;
	color: #fff;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 0;
    margin: 0;
    padding: 15px 0 15px 80px;

}
.featured .tagcloud {
	background-color: #ffd503;
	border-radius: 4px;
	padding: 30px;
	position: relative;
	height: 100%;
}
.featured .tagcloud a {
	color: #363636;
	border-color: #363636;
}
.featured .tagcloud a:hover {
	background-color: rgba(255,255,255,.3);
	color: #363636;
}
.featured .tagcloud h2 {
	margin-top: 0;
}



/*Homepage Slider*/

.my-slider {
  display: none;
}
.unslider {
  overflow: auto;
  margin: 0;
  padding: 0;
  position: relative;
}
.unslider-wrap {
  position: relative;
}
.unslider-wrap.unslider-carousel > li {
  float: left;
}
.unslider-vertical > ul {
  height: 100%;
}
.unslider-vertical li {
  float: none;
  width: 100%;
}
.banner-slider {
  position: relative;
}
.banner-slider .unslider-wrap li {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 8;
}
.banner-slider .unslider-wrap li:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12,77,162,.7);
    z-index: -1;
}
.banner-slider .unslider-wrap li.unslider-active {
  z-index: 10;
}
.unslider ul, .unslider ol, .unslider li {
  list-style: none;
  /* Reset any weird spacing */
  margin: 0;
  padding: 0;
  border: none;
}
.unslider-arrow {
  position: absolute;
  left: 20px;
  z-index: 2;
  cursor: pointer;
  top: 35%;
  z-index: 999;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.3);
  opacity: 0;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.unslider-arrow:after{
  content: url('/wp-content/themes/hopetv/images/left.png');
  position: absolute;
  left: 27px;
  top: 23px;
}
.unslider-arrow.next:after {
  content: url('/wp-content/themes/hopetv/images/right.png');
  position: absolute;
  left: 30px;
  top: 23px;
}
.unslider-arrow.next {
  left: auto;
  right: 20px;
}
.unslider:hover .unslider-arrow {
  opacity: 1;
}
.unslider ul li {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.unslider-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 999;
}
.unslider-nav ol {
  list-style: none;
  text-align: center;
}
.unslider-nav ol li {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 4px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999em;
  cursor: pointer;
  background: #fff;
  position: relative;
  top: -2px;
}
.unslider-nav ol li.unslider-active {
  background: transparent;
  cursor: default;
  border: 2px solid #fff;
  width: 11px;
  height: 11px;
  top: 0;
}
.img-clickable {
  position: absolute;
  width: 100%;
  height: 100%;
}

/*Slider LOADER*/
#loader {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 45%;
  z-index: 999;
}
#loader span{
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  border: 2px solid #ffd503;
  margin: 35px 2px;
}
#loader span:nth-child(1){
  -webkit-animation: bounce 1s ease-in-out infinite;
          animation: bounce 1s ease-in-out infinite;
}
#loader span:nth-child(2){
  -webkit-animation: bounce 1s ease-in-out 0.33s infinite;
          animation: bounce 1s ease-in-out 0.33s infinite;
  background: #ffd503;
  width: 8px;
  height: 8px;
}
#loader span:nth-child(3){
  -webkit-animation: bounce 1s ease-in-out 0.66s infinite;
          animation: bounce 1s ease-in-out 0.66s infinite;
  background: #ffd503;
  width: 8px;
  height: 8px;
}
@-webkit-keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.blue-section {
	background-color: #0c4da2;
	position: relative;
	padding: 20px 0 40px;
}
.blue-section:before,
.blue-section:after {
	content: '';
	background-color: #0c4da2;
	width: 100%;
	position: absolute;
	top: -3vw;
	left: 0;
	-webkit-transform: skewY(-3deg);
	-ms-transform: skewY(-3deg);
	transform: skewY(-3deg);
	padding-bottom: 6vw;
	z-index: -1;
}
.blue-section:after {
	top: auto;
	bottom: -3vw;
	-webkit-transform: skewY(3deg);
	-ms-transform: skewY(3deg);
	transform: skewY(3deg);
}
.blue-section .post-content {
	background-color: #fff;
}
.category-section .button {
	margin: 45px 0;
}
.blue-section .button:hover {
	border-color: #ffd503;
}
.white-section {
	padding: 4vw 0;
}

main .category-section:last-child {
	padding-bottom: 0;
}
main .category-section:last-child .button {
	margin-bottom: 0;
	position: relative;
	z-index: 999;
}
.home-title {
	text-align: center;
	color: #fff;
}
.home-title:after {
	border-color: #ffd503;
}
.white-section .home-title {
	color: #363636;
}
.white-section .home-title:after {
	border-color: #0c4da2;
}

/*Fotoer Styles*/
.page-404 {
	padding-bottom: 60px;
}
.page-404 ol li {
	margin-bottom: 7px;
}
.page-404 form,
.page-404 form input {
	display: inline-block;
	width: auto;
	padding: 6px;
}
.page-404 form input {
	background-color: #444;
	border: 1px solid #444;
	margin-left: 15px;
}
.page-404 form button {
	background: #555;
}
.page-404 h5 {
	display: inline;
}

/*Archive Page*/
.row.posts {
	padding-left: 0;
	position: relative;
	z-index: 999;
}
.posts article {
	padding-right: 0;
	margin-bottom: 15px;
}
.loadmore {
	margin: 0 auto;
	margin-top: 30px;
}
article .thumb {
	border-radius: 3px 3px 0 0;
}
article .thumb .clickable {
	background-image: url('images/play-button.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15%;
}
article .post-content {
	border: 1px solid #b7b7b7;
	border-radius: 0 0 3px 3px;
	padding: 25px;
}
article .post-content h3 {
	margin: 0;
}
article .post-content h3 a {
	color: #0c4da2;
	text-decoration: none;
}
article .post-categories,
.program .post-categories {
	padding: 0;
	margin: 10px 0;
}
article .post-categories li,
.program .post-categories li {
	display: inline-block;
	list-style: none;
	margin-right: 0;
	line-height: 2.5;
}

article .post-categories li a,
.program .post-categories li a,
.tagcloud a {
	color: #0c4da2;
	border: 1px solid #0c4da2;
	border-radius: 3px;
	text-decoration: none;
	padding: 7px 10px;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: bold;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
article .post-categories li a:hover {
	background-color: #0c4da2;
	color: #fff;
}
.tagcloud a {
	color: #fff;
	border-color: #fff;
	font-size: 10px!important;
	display: inline-block;
	margin-bottom: 10px;
	margin-right: 6px;
}
.tagcloud a:hover {
	background-color: #fff;
	color: #0c4da2;
}
.col.search {
	padding-right: 30px;
}
.searchform input,
.searchform button {
	padding: 7px;
	padding-left: 12px;
	border: 1px solid #fff;
	border-right: 0;
	border-radius: 4px 0 0 4px;
	color: #fff;
	background-color: rgba(0,0,0,0);
	font-family: 'Montserrat', sans-serif;
	outline: none!important;
}
.searchform button {
	border-left: 0;
	border-right: 1px solid #fff;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	padding: 7px 15px;
}

.searchform input::-webkit-input-placeholder { color: rgba(255,255,255,.7); }
.searchform input::-moz-placeholder { color: rgba(255,255,255,.7); }
.searchform input:-ms-input-placeholder { color: rgba(255,255,255,.7); }
.searchform input:-moz-placeholder { color: rgba(255,255,255,.7); }

aside .archive-widget,
aside .widget {
	background-color: #0c4da2;
	color: #fff;
	padding: 25px;
	margin-bottom: 30px;
	border-radius: 3px;
	z-index: 990;
	position: relative;
}
aside.archive-sidebar {
	padding-right: 0;
}
aside a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: color .2s;
	-o-transition: color .2s;
	transition: color .2s;
}
aside a:hover {
	color: #ffd503;
}
aside h3 {
	margin-top: 0;
}
aside .archive-widget ul {
	padding: 0;
	padding-left: 15px;
	margin: 0;
}
aside .archive-widget li {
	position: relative;
}
aside .widget-title + ul > li {
	margin-bottom: 6px;
}
.children {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height .15s ease-out;
	-o-transition: max-height .15s ease-out;
	transition: max-height .15s ease-out;
	list-style: none;
	padding-left: 0!important;
}
.children a {
	color: rgba(255,255,255,1);
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
	font-weight: bold;
}
.children .children a {
	font-weight: normal;
	color: rgba(255,255,255,.65);
}
.children a:hover {
	color: #fff;
	border-color: #fff!important;
}
.children.toggled {
	max-height: 2500px;
	-webkit-transition: max-height .25s ease-in;
	-o-transition: max-height .25s ease-in;
	transition: max-height .25s ease-in;
}
.children .children {
	max-height: 1500px;
}
.children .cat-item-has-children .children li {
	border-left: 1px dashed rgba(255,255,255,.65);
	padding-left: 7px;
}
.cat-item-has-children {
	list-style: none;
}
.current-cat > a {
	font-weight: bold;
	border-bottom: 1px dashed #ffd503;
	color: #ffd503;
}
.arrow {
	position: absolute;
	left: -30px;
	width: 25px;
	height: 25px;
	top: -1px;
	cursor: pointer;
	background-color: rgba(255,255,255,.1);
	border-radius: 50%;
	text-align: center;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	-o-transition: transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}
.arrow-rotate {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
.arrow:before {
	content: '\276F';
}

main.page-index {
	position: relative;
}
.filters-toggle {
	display: none;
	position: absolute;
    right: 15px;
    top: -45px;
    color: #0c4da2;
    padding: 5px 10px;
    border: 1px solid #0c4da2;
    border-radius: 4px;
	font-weight: bold;
	-webkit-transition: background-color.3s;
	-o-transition: background-color.3s;
	transition: background-color.3s;
	cursor: pointer;
}
.filters-toggle:hover {
	background-color: #ffd503;
}
.filters-toggle:before {
	content: '+ ';
}
.filters-toggle.minus:before {
	content: '- ';
}
.filters-toggle.minus {
	padding-left: 13px;
	background-color: #ffd503;
}

/*News Page*/
.news {
	margin-bottom: 20px;
}
.news .button {
	padding: 5px 15px;
}
.news .text {
	padding-left: 60px;
}
.news .date {
	background-color: #0c4da2;
	color: #fff;
	position: absolute;
	right: -30px;
	width: 60px;
	height: 60px;
	top: calc(50% - 30px);
	border-radius: 50%;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
}
.news .date span {
	display: block;
}
.news .thumb {
	margin-top: 5px;
}
.news h3 {
	margin-top: 0;
}
.wrapper.news aside .widget ul {
	padding-left: 15px;
	margin: 0;
}

.pagination {
	text-align: center;
	margin-top: 50px;
}
.pagination a {
	padding: 10px 15px;
	background-color: #ffd503;
	color: #363636;
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: background-color .2s;
	-o-transition: background-color .2s;
	transition: background-color .2s;
	border-radius: 4px;
	margin-right: 2px;
	display: inline-block;
}
.pagination a:hover {
	background-color: #0c4da2;
	color: #fff;
}
.pagination a.current {
	background-color: #e3e3e3!important;
	color: #363636;
}



.program-item {
	border: 1px solid #b7b7b7;
	border-top: none;
	padding: 25px 10px;
}
.program .col-9 .program-item:first-child {
	background-color: #0c4da2;
	border-top: 1px solid #b7b7b7;
	color: #fff;
}
.program .col-9 .program-item:first-child .post-categories li a {
	color: #fff;
	border-color: #fff;
}
.program .col-9 .program-item:first-child .description .button:hover {
	border-color: #ffd503;
}
.program-item h3,
.fprog h3 {
	margin: 0;
}
.program-item img {
	border-radius: 4px;
}
.program-item .date {
	color: #898989;
	font-size: 11px;
	text-transform: uppercase;
}
.program-item .date span {
	text-transform: none;
}
.program .col-9 .program-item:first-child .date {
	color: #fff;
}
.fprog .row {
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
.fprog h3 {
	font-size: 18px;
	margin-bottom: 3px;
}
.fprog .date {
	font-size: 18px;
	font-weight: bold;
}
.fprog .date-wrap {
	position: relative;
}
.fprog .date-wrap:after {
	content: '';
	position: absolute;
	height: 100%;
	border-right: 1px solid #fff;
	right: 15px;
}
.fprog .info {
	margin-bottom: 45px;
	padding-right: 20%;
}
.fprog .info:last-child {

}
.fprog .button {
	font-size: 12px;
	position: relative;
	top: -10px;
}
.fprog .button:hover {
	border-color: #ffd503;
}
.kgvid_video_meta { display: none!important; }
.widget-title.share { margin: 0 0 20px; }
.kgvid_share_icons { text-align: left!important; }

.kgvid_below_video { margin-top: 10px!important; margin-right: 0!important; }
.download-button-wrapper { text-align: right; }
.download-button-wrapper a {
	text-decoration: none;
	border: 1px solid #0c4da2;
	padding: 5px 15px;
	padding-right: 13px;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.download-button-wrapper a:hover {
	color: #fff;
	background: #0c4da2;
}
.download-button-wrapper a:before {
	content: 'Свали ';
	font-weight: bold;
}
main.page-single {
	margin-bottom: 45px;
}
.videos-slider {
	top: 0;
	height: 100%;
}
article.featured-video,
.featured-wrapper .unslider,
.featured-wrapper .my-slider,
.featured-wrapper .unslider-wrap,
.featured-wrapper ul li {
	height: 100%;
}
.featured-wrapper .unslider-arrow { display: block; }
.featured-wrapper .unslider-arrow { top: 40%; color: rgba(0,0,0,0); }
.featured-wrapper .unslider-arrow:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); }


footer p.copy {
	background-image: url('images/logo-footer.png');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50px;
	margin: 0;
	margin-top: 50px;
	padding: 5px 0;
	padding-left: 65px;
	font-size: 13px;
}
footer p.copy em {
	font-size: 12px;
}
footer p.copy a {
	width: 28px;
	float: right;
	position: relative;
	top: -5px;
}
footer p.copy a img {
	width: 100%;
	height: auto;
}
.footer-menu {
	max-width: 300px;
}
.footer-menu ul {
	display: block;
	float: none;
	position: static!important;
	background: none!important;
	padding: 0!important;
}
.footer-menu ul li {
	line-height: 1.5;
}
.footer-menu ul li a {
	padding: 0;
	font-size: 11px;
	font-weight: normal;
	display: inline-block;
	position: relative;
}
.footer-menu ul li a:after {
	margin: 0;
	height: 1px;
}
.footer-menu ul li a:hover:after {
	width: 100%;
}
.footer-menu h3 {
	font-size: 18px;
	margin: 0;
	margin-bottom: 12px;
}
blockquote {
	font-size: 18px;
	border-left: 8px solid #ffd503;
	padding: 10px 20px;
	margin-right: 0;
}
blockquote p {
	margin-bottom: 10px;
}
.blog-title {
	margin: 0;
	margin-bottom: 5px;
}
.blog-date,
.views {
	color: #999;
	font-size: 12px;
}
.views {
	margin-top: 5px;
	margin-bottom: 20px;
}

.blog-template-default .widget-title {
	font-size: 22px;
}
.heateor_sss_sharing_ul li:first-child {
	margin-right: 10px!important;
}
.single-blog .post-featured {
	min-height: 250px;
	height: 15vw;
	border-radius: 4px;
	background-size: cover;
	background-position: center;
	margin-bottom: 20px;
}

/* Responsive Grid */
.container {
	width: 100%;
	max-width: 1141px;
	margin: 0 auto;
}
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
.row.stretch {
	-webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	padding: 0 15px;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { -webkit-box-flex: 0; -ms-flex: none; flex: none; }
.col-1 { width: 8.333%; }
.offset-1 { margin-left: 8.333%; }
.col-2 { width: 16.666%; }
.offset-2 { margin-left: 16.666%; }
.col-3 { width: 25%; }
.offset-3 { margin-left: 25%; }
.col-4 { width: 33.333%; }
.offset-4 { margin-left: 33.333%; }
.col-5 { width: 41.666%; }
.offset-5 { margin-left: 41.666%; }
.col-6 { width: 50%; }
.offset-6 { margin-left: 50%; }
.col-7 { width: 58.333%; }
.offset-7 { margin-left: 58.333%; }
.col-8 { width: 66.666%; }
.offset-8 { margin-left: 66.666%; }
.col-9 { width: 75%; }
.offset-9 { margin-left: 75%; }
.col-10 { width: 83.333%; }
.offset-10 { margin-left: 83.333%; }
.col-11 { width: 91.666%; }
.offset-11 { margin-left: 91.666%; }
.col-12 { width: 100%; }

@media all and (max-width: 768px) {
	.row { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; }
	.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { -webkit-box-flex: 1; flex: auto; -ms-flex: auto; width: 100%; }
	.row.reverse { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse;	}
	.offset-1, .offset-2, .offset-3, .offset-4, .offset-5, .offset-6, .offset-7, .offset-8, .offset-9, .offset-10, .offset-11 { margin: 0; }
}
/* END Responsive Grid */

/* Responsive Breakpoints */
@media (max-width: 768px) {
	.footer-menu { text-align: center; margin-bottom: 40px; }
	.fbottom .row.stretch { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
	header { text-align: center; padding: 15px 0 25px; }
	.main-menu { position: relative; }
	.menu-toggle { display: inline-block; }
	.menu { display: block; float: none; width: 100%; position: absolute; left: -100%; z-index: 999; -webkit-transition: .3s; -o-transition: .3s; transition: .3s; background-color: #0c4da2; top: 56px; padding: 15px; border-radius: 4px; }
	.menu a { font-size: 16px; }
	.sub-menu { max-height: 0!important; position: static; }
	.sub-menu a { padding: 10px 20px; font-size: 14px; }
	.sub-menu.expand { max-height: 1000px!important; }
	.slidein { left: 0; }
	.open { display: block; }
	.row.featured { height: auto; min-height: auto;	max-height: 1000px; margin-bottom: 90px; }
	.featured article { min-height: 300px; margin-bottom: 15px; }
	.featured .col-4 { padding: 0; }
	.posts article, footer article { padding: 0 15px; width: 50%; margin: 15px auto; margin-top: 0; }
	aside.archive-sidebar { padding: 0 15px; }
	.row.news { padding-bottom: 20px; margin-bottom: 35px; border-bottom: 1px solid #e3e3e3; }
	.news .text { padding: 0; }
	.news .thumb { margin: 0; margin-bottom: 40px; }
	.news .date { top: auto; bottom: -30px; left: 0; right: 0; margin: 0 auto; }
	.pagination { margin: 0; margin-bottom: 35px; }
	.col.search.right { text-align: center; margin-bottom: 25px; }
	.page-single .sidebar { margin-top: 20px; }
	.fprog .info { margin-bottom: 30px; padding-right: 15px; }
	.fprog .date-wrap:after { display: none; }
	.ftitle:after, .home-title:after { margin-bottom: 30px; }
	footer .fprog { text-align: center; }
	.ftitle { margin-top: 30px; }
	.social { text-align: center; }
	.social a:last-child { margin-right: 0; }
}
@media (max-width: 700px) {
	.posts article { width: 80%; }
}
@media (max-width: 500px) {
	.posts article { width: 100%; }
	footer article { width: 70%; }
	aside.archive-sidebar ul { direction: rtl; }
	aside.archive-sidebar ul li { margin: 7px 0; line-height: 1.8; }
	aside.archive-sidebar ul li .children li { line-height: 1.3; }
	aside.archive-sidebar ul li a { line-height: 1; }
	.arrow { left: auto; right: -43px; top: -6px; width: 35px; height: 35px; }
	.arrow-rotate { -webkit-transform: rotate(-90deg); -ms-transform: rotate(-90deg); transform: rotate(-90deg); }
	.arrow:before { position: relative; top: 6px; right: 1px; }
	.children .cat-item-has-children .children li { border: none; border-right: 1px dashed rgba(255,255,255,.65); padding-left: 0; padding-right: 7px; }
	.children .children { padding-left: 0!important; padding-right: 7px!important; }
	aside .archive-widget ul { padding-left: 0; }
	aside .archive-widget ul li a { font-size: 16px; }
	aside .archive-widget .children { padding-right: 0; }
	main .filters { padding-left: 15px; padding-right: 60px; }
	main .filters h3 { text-align: right; }
	.filters-toggle { display: block; }
	.archive-sidebar { overflow: hidden; max-height: 0; -webkit-transition: max-height .35s ease-out; -o-transition: max-height .35s ease-out; transition: max-height .35s ease-out; }
	.archive-sidebar.maxheight { max-height: 3000px; -webkit-transition: max-height .55s ease-in; -o-transition: max-height .55s ease-in; transition: max-height .55s ease-in; }
	.row.posts { padding: 0; }
}