/**
 * Table of Contents
 *
 * - Reset
 * - Spinning loader
 * - Folding cube loader
 * - Navigations
 * - Mobile menu
 * - Menu search
 * - Header
 * - Content
 * - Footer
 * - Single post
 * - Single post gallery 
 * - Related posts
 * - Typography
 * - Single post content gallery
 * - Custom content box
 * - Archive
 * - Sidebar
 * - Grid
 * - Load more button 
 * - Classic pagination 
 * - Comments
 * - Widgets
 * - Post lists
 * - Tag cloud 
 * - Category list 
 * - Recent posts 
 * - Text widget 
 * - RSS widget 
 * - Calendar 
 * - Meta widget 
 * - Twitter widget 
 * - Search widget 
 * - 404 Page 
 * - Contact page 
 * - Two column page
 * - Resize Flags
 * - Avantgardia Slider
 * - Core Owl Carousel CSS
 * - Owl Carousel CSS3 Transitions 
 * - Head News Ticker
 * - News Blocks
 * - Animations 
 * - Ads
 * - Social Icons 
 * - Single post shares 
 * - WooCommerce
 */


/**
 * - Reset
 */

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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background: #ffffff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

em {
	font-style: italic;
}

a {	
	text-decoration: none;
}

a:focus {
	outline: none;
}

a:hover,
a:active,
a:visited {
	outline: 0;
}

a img {
	border: 0;
}

a:hover {
	color: #ff1d26 !important;
	border-color: #ff1d26 !important;
}

.clearfix:after {
	content:" ";
	display:table;
	clear:both
}

input, 
input:focus,
select,
select:focus {
	outline: none;
}

select {
	padding: 5px;
	color: #777777;
}


input[type=text], 
input[type=email], 
input[type=tel], 
input[type=password], 
textarea {
    border: 1px solid #b5b5b5;
    padding: 8px 5px;
}

#global-loader {
	display: block;
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: 1000;
}

.ag-no-loader #global-loader {
	display: none;
}

.ag-no-loader #page {
	opacity: 1;
}

/**
 * - Spinning loader
 */ 
 
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
}
.loader:before,
.loader:after {
  position: absolute;
  content: '';
}
.loader:before {
  width: 5.2em;
  height: 10.2em;
  background: #000000;
  border-radius: 10.2em 0 0 10.2em;
  top: -0.1em;
  left: -0.1em;
  -webkit-transform-origin: 5.2em 5.1em;
  transform-origin: 5.2em 5.1em;
  -webkit-animation: load2 2s infinite ease 1.5s;
  animation: load2 2s infinite ease 1.5s;
}
.loader {
  font-size: 11px;
  text-indent: -99999em;
  margin: 55px auto;
  position: relative;
  width: 10em;
  height: 10em;
  box-shadow: inset 0 0 0 1em #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.loader:after {
  width: 5.2em;
  height: 10.2em;
  background: #000000;
  border-radius: 0 10.2em 10.2em 0;
  top: -0.1em;
  left: 5.1em;
  -webkit-transform-origin: 0px 5.1em;
  transform-origin: 0px 5.1em;
  -webkit-animation: load2 2s infinite ease;
  animation: load2 2s infinite ease;
}
@-webkit-keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/**
 * - Folding cube loader
 */ 
 
.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg) translateY(-50%);
  transform: rotateZ(45deg) translateY(-50%);
  top: 50%;
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff1d26;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}


#page {
	opacity: 0;
	overflow: hidden;
}

.fixed {
    position: fixed;
    /*right: 50%;
    margin-right: -50%;*/
}

/**
 * - Navigations
 */
 
#masthead {
    display: block;
    width: 100%;
	margin: 0 auto;
	max-width: 1210px;
	padding: 0 10px;
	
	font-family: "Open Sans Condensed";
	font-weight: normal;
}

.page #masthead ,
.single-post #masthead {
	padding-left: 0;
	padding-right: 0;
}

.page-template-template-news-builder #masthead,
.page-template-template-two-column #masthead,
.page-template-template-grid #masthead {
	padding-left: 10px;
	padding-right: 10px;
}

.page-template-template-grid-boxed #masthead {
	max-width: 1245px;
}

.has-sidebar.page-template-template-grid-boxed #masthead {
	max-width: 1265px;
}

@media all and (max-width: 1210px){
	.page #masthead,
	.single-post #masthead {
		padding-left: 10px;
		padding-right: 10px;
	}
}

.page-template-template-two-column.has-sidebar #masthead {
	max-width: 1440px;
}

.page-template-template-news-builder #masthead {
	max-width: 1340px;
}

.has-grid #masthead {
	max-width: 100%;
}

.header-content-wrap {
	position: relative;
}

.site-navigation {
	width: 100%;
	position: relative;
}

.header-width-wrap {
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
	height: 100%;
}

.site-branding {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
	height: 60px;
	top: -150px;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.ag-header-menu {
	position: relative;
	z-index: 110;
}

.ag-header-menu > li {
	float: left;
	display: block;
}

.ag-header-menu ul {
    background-color: #ffffff;
}

.ag-header-menu ul {
    position: absolute;
    top: -999em;
    width: 10em;
}

.ag-header-menu, 
.ag-header-menu ul, 
.ag-header-menu li {
    list-style: outside none none;
    margin: 0;
}

.ag-header-menu li.menu-item-mark a {
    color: #ff1d26;
}

.ag-header-menu > .current-menu-item > a:after, 
.ag-header-menu > .current-menu-ancestor > a:after, 
.ag-header-menu > .current-category-ancestor > a:after, 
.ag-header-menu > li:hover > a:after,
.ag-header-menu > .open > a:after {
    background-color: #ff1d26;
}

.ag-header-menu > li > a:after {
    background-color: transparent;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    transform: translate3d(0px, 0px, 0px);
    width: 100%;
}

.ag-header-menu a.ag-with-ul {
    min-width: 1px;
    padding-right: 31px;
}
.ag-header-menu .ag-menu-item > a,
.ag-header-menu .menu-item-language > a {
    display: block;
    position: relative;
}
.ag-header-menu > li > a {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    line-height: 48px;
    padding: 5px 14px;
    text-transform: uppercase;
}

.ag-header-menu li:hover, 
.ag-header-menu li.open, 
.ag-header-menu a:focus, 
.ag-header-menu a:hover, 
.ag-header-menu a:active {
    outline: 0 none;
}

.ag-header-menu li:hover {
    visibility: inherit;
}

.ag-header-menu li {
    float: left;
    position: relative;
}

.ag-header-menu li.ag-fine-menu {
	position: static;
}

.ag-header-menu, 
.ag-header-menu ul, 
.ag-header-menu li {
    list-style: outside none none;
    margin: 0;
}

.ag-fine-menu {
    position: static !important;
}

.ag-header-menu li:hover ul, 
.ag-header-menu li.open ul {
    left: 0;
    top: auto;
    z-index: 99;
}

.ag-fine-menu ul {
    border: 1px solid #eaeaea;
    display: none;
    height: auto;
    left: 0;
    position: absolute;
    width: 100%;
	opacity: 0;
	
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.ag-header-menu ul {
    background-color: #ffffff;
	min-width: 200px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ag-header-menu ul .ag-menu-item > a,
.ag-header-menu ul .menu-item-language > a {
	color: #333333;
    font-size: 13px;
    padding: 7px 14px 8px;
	font-family: "Open Sans";
	font-weight: bold;
}

.ag-header-menu ul .current-menu-item > a {
    color: #ff1d26;
}

.ag-header-menu ul .ag-menu-item > a:hover,
.ag-header-menu ul .menu-item-language > a:hover {
	background-color: #ff1d26;
	color: #ffffff !important;
}

.ag-header-menu, 
.ag-header-menu ul, 
.ag-header-menu li {
    list-style: outside none none;
    margin: 0;
}

.ag-header-menu li > .sub-menu {
	display: none;
}

.ag-header-menu li.open > .sub-menu,
.ag-header-menu li:hover > .sub-menu {
	display: block;
	opacity: 1;
}

.ag-menu-item .sub-menu > li,
.menu-item-language .sub-menu > li {
	float: none;
}

.menu-item-language {
	display: block !important;
}

.ag-menu-post-list {
	display: none;
	
	-webkit-animation-duration: 1s !important;
	animation-duration: 1s !important;
}

.ag-menu-post-list.current {
	display: block;
}

.ag-menu-post-list .post-list {
	float: left;
	width: calc(20% - 20px);
	margin: 0 10px;
}

.has-cat-list .ag-fine-menu-posts .post-list {
	width: calc(25% - 20px);
}

.ag-fine-menu-content {
    padding: 20px 10px;
    overflow: hidden;
}

.ag-fine-menu .list-medium .entry-title a {
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
	display: block;
	
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: break-word
}

.ag-menu-cat-list {
    float: left;
    font-size: 14px;
    height: 100%;
    text-transform: uppercase;
    width: 210px;
    text-align: right;
    padding-right: 10px;
	font-family: "Open Sans Condensed";
	font-weight: 700;
}

.ag-menu-cat-filter {
	margin-bottom: 5px;
}

.ag-menu-cat-list .ag-menu-cat-filter a {
	color: #000000;
}

.ag-menu-cat-list .ag-menu-cat-filter.current a {
	color: #ff1d26;
}

.ag-fine-menu-posts {
	width: 100%;
}

.has-cat-list .ag-fine-menu-posts {
    float: left;
    margin-left: 10px;
    padding-left: 10px;
    width: calc(100% - 220px);
}

.ag-fine-menu-posts .post-category,
.ag-fine-menu-posts .edit-link {
	display: none;
}

.ag-menu-item i,
.menu-item-language i {
    margin-left: 5px;
}

.ag-header-menu .ag-drop-down {
	display: none;
}

.ag-header-menu .sub-menu li:hover .sub-menu {
    left: 100%;
    top: 0;
}

.ag-header-menu .sub-menu li:hover .sub-menu.sub-menu-more {
    left: auto;
    right: 100%;
}

.menu-item > a > .menu-arrow-down {
    display: none;
}

.menu-item.ag-cat-menu > a > .menu-arrow-down,
.ag-fine-menu > a > .menu-arrow-down,
.menu-item-has-children > a > .menu-arrow-down,
.page_item_has_children > a > .menu-arrow-down {
	display: inline-block;
}

@media all and (max-width: 900px) {
	
	.ag-fine-menu > ul {
		display: none !important;
	}
	
	.ag-fine-menu > a > .menu-arrow-down {
		display: none;
	}
}

ul li li .fa-angle-down {
	-webkit-transform: rotateZ(-90deg);
	-ms-transform: rotateZ(-90deg);
	transform: rotateZ(-90deg);
}

.menu-icon-left {
	margin-right: 5px;
}

.menu-item-description {
	display: none;
}

/**
 * - Mobile menu
 */
 
.ag-mobile-menu {
	display: none;
}

@media all and (max-width: 960px) {
	.ag-mobile-menu {
		display: block;
	}
	
	.main-menu-container {
		display: none;
	}	
	
	#small-header-logo {
		text-align: center;
		width: 100%;
	}
}

.ag-mobile-menu-button {
    border-radius: 2px;
    color: #333333;
    cursor: pointer;
    font-size: 30px;
    height: 40px;
    line-height: 32px;
    margin: 10px;
    padding: 3px;
    text-align: center;
    width: 40px;
	pointer-events: all;
}

.open .ag-mobile-menu-button {
    color: #ff1d26;
}

.ag-mobile-menu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
	pointer-events: none;
	z-index: 125;
}

.mobile-menu-container {
    background-color: #ffffff;
    font-family: "Open Sans Condensed";
    font-size: 28px;
    left: -10px;
    padding: 0;
    position: absolute;
    top: 100%;
    width: calc(100% + 20px);
    z-index: 999;
    padding: 0 20px;
	pointer-events: all;
}

.open .mobil-menu-container {
    border-bottom: 1px solid #dedede;
}

.mobile-menu-container > ul {
    display: none;
    overflow: hidden;
    padding-bottom: 20px;
}

.ag-mobile-menu li {
    padding: 5px 0;
	position: relative;
}

.ag-mobile-menu li > a > i {
    position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	padding: 5px 8px;
}

.ag-nav-menu-mobile li > a > i {
    margin-right: 30px;
}

.ag-nav-menu-mobile li > a > i.menu-arrow-down {
	margin-right: 0px;
}

.ag-mobile-menu a {
    color: #000000;
}

.ag-nav-menu-mobile > li > a {
    text-transform: uppercase;
}

.ag-mobile-menu .sub-menu {
	padding-left: 20px;
	display: none;
}

.ag-mobile-menu .menu-arrow-down {
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.open > a > .menu-arrow-down {
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}


/**
 * - Menu search
 */
 
.header-search {
    bottom: 0;
    position: absolute;
    right: 0;
}

.header-search-form {
    overflow: hidden;
    padding: 7px 0 6px 0;
    margin: 8px 0 13px 5px;
	position: relative;
	z-index: 120;
}

.wpml-menu-switch .header-search-form {
	padding-left: 100px;
}

.header-search-form:hover ,
.header-search-form.focus {	
	background-color: #f2f2f2;
}

.header-search .search-button {
    cursor: pointer;
    float: left;
    font-size: 17px;
    padding: 0 15px 0 10px;
    line-height: 18px;
}

.header-search-form.active .search-button:hover {
	color: #ff1d26;
}

.header-search-form .searchsubmit {
	display: none;
}

.header-search-form input {
	border: none;
}

.header-search .search-input-wrap {
	float: left;
}

.header-search .header-search-form input {
	background-color: #f2f2f2;
	width: 0px;
	transition: all 0.3s ease;
	opacity: 0;
	color: #333333;
	padding-top: 0px;
	padding-bottom: 0px;
}

.header-search .header-search-form input:focus,
.header-search:hover .header-search-form input {
	width: 200px;
	opacity: 1;	
	padding-left: 5px;
	padding-right: 10px;
}


/**
 * - Header
 */
 
#main-logo {
    float: left;
    height: 90px;
    overflow: hidden;
    width: calc(100% - 1000px);
    text-align: center;
	line-height: 90px;
	vertical-align: middle;
	text-align: left;
    margin-left: 10px;
}

#main-logo > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.no-primary-menu #main-logo {
	display: none;
}

#main-logo img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    width: auto;
	margin-top: -2px;
}

.main-site-title {
    color: #515151;
    font-size: 32px;
    left: 50%;
    line-height: 38px;
    position: relative;
    top: 50%;
    vertical-align: middle;
	font-family: "Roboto Condensed";
    text-transform: uppercase;
	
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.site-logo-wrapper {
	margin: 10px auto;
	max-width: 1440px;
}

.header-promo {
    float: right;
    min-height: 90px;
    width: 975px;
	text-align: center;
}

.header-promo > img {
	width: 100%;
	height: 100%;
}

.header-promo img {
    max-width: 100%;
    height: auto;
}

#small-header-logo {
    float: left;
	display: none;
	margin-left: 15px;
	position: relative;
	z-index: 120;
}

.no-primary-menu #small-header-logo {
	display: block;
}

#small-header-logo img {
    height: 50px;
    margin: 4px 20px 0 0;
}

.secondary-site-title {
    color: #515151;
    font-family: "Open Sans";
    font-size: 22px;
    line-height: 60px;
    margin: 0 5px;
    vertical-align: middle;
}

@media all and (max-width: 1160px) {	
	.header-promo {	
		float: none;
		margin: 0 auto;
	}
	
	#main-logo {
		display: none;
	}
	
	#small-header-logo {
		display: block;
	}
}

@media all and (max-width: 990px) {		
	.header-promo {
		width: 728px;
	}
	
}

@media all and (max-width: 750px) {
	.header-promo {
		width: 468px;
		min-height: 60px;
	}
	
	.site-logo-wrapper {
		margin: 10px -10px;
	}
}


@media all and (max-width: 500px) {
	.header-promo {
		width: 320px;
		min-height: 50px;
	}
}

.header-image {
    margin-left: 10px;
    margin-right: 10px;
	margin-bottom: 10px;
    overflow: hidden;
}

.has-news-ticker .header-image {
	margin-bottom: 0px;
}

.header-image img {
    display: block;
    height: auto;
    left: 50%;
    min-width: 640px;
    position: relative;
    width: 100%;
    
	-webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/**
 * - Content
 */

.site-content {
	margin: 0 auto;
    max-width: 1210px;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
	
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.ag-home-no-grid {
    padding: 20px 10px 0;
}

.has-grid .site-content {
	max-width: 100%;
	width: 100%;
	margin: 0px;
	padding-right: 0px;
}

.page-template-template-grid-boxed .site-content {
    max-width: 1245px;
}

.has-sidebar.page-template-template-grid-boxed .site-content {
    max-width: 1265px;
}

.content-area {
	width: 100%;
	float: left;
}

.has-sidebar .content-area {
    margin-right: 35px;
    width: calc(100% - 345px);
}

.has-sidebar.search-results .content-area,
.has-sidebar.archive .content-area {
	width: calc(100% - 355px);
}

.search-results .site-main,
.archive .site-main {
    margin-left: 10px;
    margin-right: 10px;
}

.home .site-main {
    padding: 0 5px;
}

.home.page-template-template-grid-boxed .site-main,
.home.page-template-template-news-builder .site-main,
.home.page-template-template-two-column .site-main {
    padding: 0px;
}

@media all and (max-width: 1230px) {		
	.page.has-sidebar .content-area,
	.single-post.has-sidebar .content-area {
		width: calc(100% - 355px);
	}
}

@media all and (max-width: 480px) {
	.home.page-template-template-grid-boxed .site-main{
		padding: 0 5px;
	}
}

/**
 * - Footer
 */

.site-footer {
    position: relative;
    width: calc(100% - 20px);
	float: left;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 70px;
}

.has-grid .site-footer {
	margin-left: 10px;
	margin-right: 10px;
}

.footer-widgets {
    position: relative;
	padding-bottom: 40px;
}

.footer-widgets .top-border {
    border-top: 1px solid #cacaca;
    height: 20px;
}

.footer-widgets-content {
    left: -25px;
    position: relative;
    width: calc(100% + 50px);
}

.footer-widgets .widget {
	width: 25%;
	display: block;
	float: left;
	padding: 25px 25px 0;
}

.footer-widgets .ag-footer-widgets-count-3 .widget {
    width: 33.333%;
}

.footer-widgets .ag-footer-widgets-count-2 .widget {
    width: 50%;
}

.footer-widgets .ag-footer-widgets-count-1 .widget {
    width: 100%;
}

.footer-logo img {
    height: 70px;
	width: auto;
	display: block;
}

.footer-logo {
    float: left;
    height: 70px;
    margin-right: 20px;
    margin-top: -15px;
}

.footer-description-text {
	float: left;
}

.info-links {
    float: right;
}

.site-info {
    color: #515151;
    float: left;
    font-family: "Montserrat";
    font-size: 11px;
    line-height: 40px;
    padding-bottom: 13px;
    padding-top: 30px;
    vertical-align: middle;
    width: 100%;
    border-top: 1px solid #cacaca;
}

.info-links > a {
    float: right;
    font-size: 18px;
    margin: 0 5px;
    color: #b6b6b6;
    border: 2px solid #b6b6b6;
    border-radius: 20px;
    padding: 0;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    line-height: 32px;
	
	-webkit-box-sizing: content-box;
	-ms-box-sizing: content-box;
	box-sizing: content-box;
}

.info-links > a:hover {
	color: #656565 !important;
	border-color: #656565 !important;
}

.footer-menu {
    font-family: "Montserrat";
    font-size: 12px;
    float: left;
    width: 100%;
    padding: 40px 5px;
    border-top: 1px solid #cacaca;
}

.footer-menu ul {
    position: relative;
    width: 100%;
    float: left;
}

.footer-menu li {
    float: left;
    padding-right: 10px;
	margin-right: 10px;
	position: relative;
}

.footer-menu .children,
.footer-menu .sub-menu {
    bottom: 100%;
    display: none;
    left: -5px;
    position: absolute;
    width: auto;
	background-color: #f8f8f8;
	z-index: 1;
	width: 200px;
	padding: 0 5px;
	border: 1px solid #f2f2f2;
}

.footer-menu .children .children,
.footer-menu .sub-menu .sub-menu {
	left: 100%;
	bottom: 0px;
}

.footer-menu .children > li,
.footer-menu .sub-menu > li {
	width: 100%;
	padding: 3px 0;
}

.footer-menu li > a {
    color: #515151;
}

.ag-nav-menu-footer > li:after {
    content: "|";
    position: absolute;
    top: 0;
    right: 0;
}

.ag-nav-menu-footer > li:last-child:after {
	display: none;
}

.footer-menu li:hover > .children,
.footer-menu .children:hover,
.footer-menu li:hover > .sub-menu,
.footer-menu .sub-menu:hover {
	display: block;
}

.has-grid .footer-widgets-content,
.has-grid .footer-menu-content,
.has-grid .site-info-content {
	padding: 0;
	margin: 0 auto;
	float: none;
	max-width: 1440px;
}

.footer-menu .footer-menu-arrow {
	display: none;
	margin-left: 3px;
}

.footer-menu-arrow.fa-plus {
    font-size: 8px;
}

.footer-menu .menu-item-has-children > a > .footer-menu-arrow,
.footer-menu .page_item_has_children > a > .footer-menu-arrow {
	display: inline-block;
}

#back-to-top {
    width: 52px;
    height: 52px;
    line-height: 44px;
    text-align: center;
    vertical-align: middle;
    background-color: rgba(0,0,0,0.15);
    border-radius: 52px;
    font-size: 32px;
    color: #ffffff;
    border: 2px solid #ffffff;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
	z-index: 999;
	display: none;
}

#back-to-top.animated {
	display: block;
}
 
@media all and (max-width: 960px) {
	.footer-widgets .ag-footer-widgets-count-3 .widget,
	.footer-widgets .widget {
		width: 50%;
		margin-bottom: 40px;
	}
}

@media all and (max-width: 640px) {
	.footer-widgets .ag-footer-widgets-count-3 .widget,
	.footer-widgets .ag-footer-widgets-count-2 .widget,
	.footer-widgets .widget {
		width: 100%;
	}
	
	.footer-logo {
		width: 100%;
		margin: 5px 0;
		text-align: center;
	}
	
	.footer-logo img {
		display: inline-block;
	}
	
	.footer-description-text {
		text-align: center;
		width: 100%;
	}
	
	.info-links {
		width: 100%;
		margin: 5px 0;
		text-align: center;
	}
	
	.info-links > a {
		float: none;
		display: inline-block;
	}
	
	.footer-menu ul {
		text-align: center;
		font-size: 20px;
	}
	
	.footer-menu li {
		display: inline-block;
		float: none;
	}
	
	.footer-menu .children,
	.footer-menu .sub-menu {
		text-align: left;
	}
}
 
/**
 * - Single post
 */
 
.head-stripe {
	color: #b5b5b5;
	height: 50px;
	line-height: 60px;
	vertical-align: middle;
	width: 100%;
	font-family: "Roboto Condensed";
	font-weight: lighter;
	text-transform: uppercase;
	font-size: 14px;
	padding: 0 5px;
	letter-spacing: 3px;
}

.head-stripe a {
	color: #b5b5b5;
}

.single-post-image {
    height: auto;
    width: auto;
	display: block;
	width: 100%;
	margin: 0 auto;
}

.single .single-post-image {
	width: auto;
}

.default-post-list .single-post-image {
    width: auto;
}

.single .type-1 .single-post-image,
.single .type-2 .single-post-image,
.single .type-3 .single-post-image,
.single .type-4 .single-post-image,
.single .type-5 .single-post-image {
	width: 100%;
}

.single-post-media {
	position: relative;
}

.ag-embeded {
	position: relative;
}

.ag-embeded iframe,
.single-post-media iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.single-post-media-and-info {
	position: relative;
	height: 100%;
}

.single-post-media.top,
.single-post-media.center,
.single-post-media.bottom {
	overflow: hidden;
}

.center .ag-image {
	position: absolute;
	min-width: 100%;
	width: auto;
	min-height: 100%;
	top: 50%;
	left: 50%;
	
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.bottom .ag-image {
	position: absolute;
	min-width: 100%;
	width: auto;
	min-height: 100%;
	bottom: 0px;
	left: 50%;
	
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.single-post-content .single-post-media {
    margin-left: -15px;
    margin-right: -15px;
}

.image-source-info-wrap {
    border: medium none;
    bottom: 0;
    position: absolute;
    font-family: "Roboto Condensed";
    color: #ffffff;
    font-size: 12px;
	width: 100%;
}

.image-source-info-wrap a,
.image-source-info-wrap a:visited {
	color: #ffffff;
}

.image-source-info-wrap i {
	margin-right: 5px;
}

.image-source-info {
    max-width: 1210px;
    margin: 0 auto;
	width: 100%;
	padding: 10px;
	position: relative;
	z-index: 1;
}

.type-4 .image-source-info,
.type-5 .image-source-info {
	padding-left: 5px;
}

.media-background-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.single-post-media-desc {
    color: #333333;
    font-family: "Roboto Condensed";
    font-size: 13px;
    font-style: italic;
    font-weight: lighter;
    margin: 0 auto;
    max-width: 1190px;
    padding: 15px 5px 8px;
}

.media-desc-width-wrap {
    margin: 0 auto;
    max-width: 1210px;
}

.single-post-quote {
    background-color: #f2f2f2;
	overflow: hidden;
}

.single-post-quote-wrap {
    max-width: 1210px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.single-post-quote-wrap {	
    font-family: "Georgia";
    font-style: italic;
	background: url("../img/quote_end.png") no-repeat scroll 97% 0 transparent;
}

.single-post-quote-name {
    color: #979797;
    font-size: 34px;
	margin-bottom: 20px;
}

.single-post-quote-content {
    font-size: 25px;
    color: #333333;
	line-height: 32px;
	letter-spacing: 1px;
}

.page .single-post-media-wrap {
    margin-bottom: 40px;
}

@media all and (max-width: 1190px) {
	.single-post-media-desc {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.single-post-meta {
    height: 43px;
    line-height: 35px;
    padding-top: 5px;
    font-family: "Roboto Condensed";
}

.type-2 .single-post-meta {
	padding-top: 9px;
	height: 38px;
}

.type-2 .post-header-wrap {
    margin-left: -15px;
    margin-right: -15px;
}

@media all and (max-width: 1210px){
	.type-2 .post-header-wrap {
		margin-left: 0;
	}
}

@media all and (max-width: 640px){
	.type-2 .post-header-wrap {
		margin-right: 0;
	}
}

.type-4 .single-post-meta {
	height: 38px;
	overflow: hidden;
}

.single-post-meta, 
.single-post-meta a {
	font-size: 12px;
	color: #ababab;
}

.single-post-date {
	float: left;
}

.single-post-author {
	float: right;
}

.single-post-content {
	margin: 0 15px;
	font-family: "Roboto Condensed";
	font-weight: lighter;
}

.content-area .entry-title {
    font-size: 43px;
	line-height: 47px;
    font-weight: bold;
    text-align: left;
	font-family: "Roboto Condensed";
	-webkit-word-wrap: break-word;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.type-2 .entry-title {
    margin-top: -4px;
}

.type-1.content-area .entry-title {
	margin-bottom: 25px;
}

.content-area .entry-title,
.content-area .entry-title a {
	color: #333333;
}

.single-post-social {
    height: 50px;
	margin-top: 30px;
}

.single-post-share-icons {
    margin-top: 0;
    float: left;
}

.type-2 .single-post-social {
	margin-bottom: 30px;
}

.type-3 .single-post-social {
    margin-top: 25px;
}

.type-4 .single-post-social,
.type-5 .single-post-social {
	margin-top: 25px;
}

.type-4 .entry-content,
.type-5 .entry-content {
	margin-top: 26px;
}

.single-post-view-count {
    color: #b5b5b5;
    float: right;
    font-size: 18px;
    height: 32px;
    line-height: 32px;
	font-weight: bold;
}

.single-post-share-icons .mashsb-container {
	padding-top: 0px;
}

.single-post-share-icons .mashsb-buttons > a {
    float: right;
}

.single-post-share-icons .mashsb-count {
    float: right !important;
	margin-right: 0px;
	margin-top: 16px;
}

.single-post-additional-content {
    float: left;
    margin: 4px 30px 4px 0;
}

@media all and (max-width: 500px){
    .single-post-additional-content {
        width: 100% !important;
        text-align: center;
        margin: 4px 0 4px;
    }
}

.attachment .single-post-additional-content {
    float: none;
    margin: 0 auto 20px auto;
}

.tags-links,
.news-source {
    color: #b5b5b5;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: lighter;
    margin-bottom: 40px;
}

.news-source a {
    color: #b5b5b5;
    text-transform: uppercase;
	margin-left: 10px;
}

.tags-links > a {
	color: #b5b5b5;
    text-transform: uppercase;
	margin-right: 10px;
}

.tags-links > .screen-reader-text {
	margin-right: 10px;
}

.section-title {
    background-color: #f2f2f2;
    color: #333333;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 14px;
    margin-bottom: 20px;
    padding: 10px;
    text-transform: uppercase;
}

.post {
	position: relative;
}

.default-post-list {
    margin: 20px 0;
    padding: 20px;
}

.post-box-shadow .default-post-list {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.sticky::after {
    content: "\f0a5";
    font-family: fontawesome;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 20px;
	color: #ff1d26;
}

.sticky {
    border: 1px solid #ff1d26;
}

.post-box-shadow .sticky {
	box-shadow: 0 0 6px 0 #ff1d26;
}

.type-3 .single-post-title-wrap {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
	color: #ffffff;
}

.has-head-stripe .single-post-title-wrap {
	padding-top: 50px;
}

.type-3.post .entry-title {
	color: #ffffff;
}

.type-3 .single-post-title-content {
    padding: 15px;
}

.type-3 .single-post-meta, 
.type-3 .single-post-meta a {
	color: #ffffff;
}

.type-3 .single-post-meta {
	height: 30px;
}


.type-3 .single-post-title-content header,
.type-3 .single-post-title-content .single-post-meta {
	position: relative;
	z-index: 10;
}

.type-3 .single-post-title-content {
	position: relative;
}

.type-3 .single-post-title-background {
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    position: absolute;
    top: 0px;
	left: 0px;
	z-index: 1;
}

.type-4 .single-post-title-wrap,
.type-5 .single-post-title-wrap {
    left: 0;
    padding: 0;
    position: absolute;
    top: 0;
}

.type-4 .single-post-media-desc,
.type-5 .single-post-media-desc {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	text-align: right;
	padding-top: 10px;
}

.type-4 .media-desc-width-wrap,
.type-5 .media-desc-width-wrap {
	padding-left: 400px;
	padding-right: 5px;
}

.type-4 .single-post-title-content,
.type-5 .single-post-title-content {
    background-color: #ffffff;
    bottom: 0;
    padding: 0 15px 15px;
    position: absolute;
    width: 100%;
}

.type-5 .single-post-title-content {
	background-color: transparent;
	background-color: rgba(0, 0, 0, 0);
	padding-bottom: 10px;
	padding-top: 40px;
}

.type-4 .single-post-media-desc,
.type-5 .single-post-media-desc {
    color: #ffffff;
    left: 0;
    max-width: 100%;
    position: absolute;
    text-shadow: 1px 1px 1px #000000;
    top: 0;
    width: 100%;
}

.type-4 .single-post-gallery-wrap,
.type-5 .single-post-gallery-wrap {
    bottom: 120px;
    position: absolute;
    width: calc(100% - 114px);
}

.type-4 .image-source-info-wrap,
.type-5 .image-source-info-wrap {
    bottom: auto;
    top: 0;
	text-shadow: 1px 1px 1px #000000;
}

.type-4 .media-background-overlay,
.type-5 .media-background-overlay {
	display: none;
}

.type-5 .single-post-title-content .single-post-title-background {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&amp;0+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
	
    height: 200%;
    position: absolute;
	left: 0px;
	bottom: 0px;
    width: 100%;
    z-index: 1;
	pointer-events: none;
}

.type-5 .single-post-title-content > * {
	position: relative;
	z-index: 10;
}


@media all and (max-width: 1280px) {
	.has-sidebar .content-area .list-large .entry-title {
		font-size: 25px;
		line-height: 30px;
	}
}

@media all and (max-width: 960px) {
	.type-4 .single-post-gallery-wrap,
	.type-5 .single-post-gallery-wrap {
		bottom: 0;
		position: relative;
		width: auto;
	}
	
	.type-4 .single-post-title-content,
	.type-5 .single-post-title-content {
		position: relative;
	}
	
	.type-4 .single-post-title-wrap,
	.type-5 .single-post-title-wrap {
		position: relative;
		top: 0px !important;
		width: 100%;
	}
	
	.content-area .list-large .entry-title {
		font-size: 25px;
		line-height: 30px;
	}
}

@media all and (max-width: 640px) {	
	.single-post-content {
		margin: 0 10px;
	}
	
	.type-4 .media-desc-width-wrap,
	.type-5 .media-desc-width-wrap {
		padding-left: 200px;
	}
}

@media all and (max-width: 480px) {		
	.type-2 .post-header-wrap {
		margin-left: 0;
		margin-right: 0;
	}
	.type-4 .media-desc-width-wrap,
	.type-5 .media-desc-width-wrap {
		display: none;
	}
}

/** 
 * - Single post gallery 
 */

.single-post-gallery-thumbnails {
	display: none;
}

.single-post-gallery-thumbnails.owl-carousel {
	display: block;
}

.single-post-gallery-thumbnails img {
    width: 100%;
}

.single-post-gallery-thumbnails .item {
    padding: 0 7px;
	cursor: pointer;
}


.single-post-gallery-main-image {
    position: relative;
    margin-bottom: 18px;
}

.loading-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    background-image: url("../img/ajax-loader.gif");
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
	
	display: none;
}

.loading .loading-overlay {
	display: block;
}

.single-post-gallery-main-image > img {
    height: auto;
    width: 100%;
	display: none;
}

.single-post-gallery-wrap {
    margin: 0 57px;
}

.type-3 .single-post-gallery-wrap {
    margin: 0 auto;
    max-width: 1096px;
}

.single-post-gallery-thumbnails .owl-controls {
    height: 100%;
    left: -57px;
    position: absolute;
    top: 0;
    width: calc(100% + 114px);
	z-index: 10;
	
    pointer-events: none;
}

.single-post-gallery-thumbnails .owl-buttons {
    font-size: 48px;
    width: 100%;
	height: 100%;
	pointer-events: none;
}

.single-post-gallery-thumbnails .owl-buttons  > div  {
	width: 57px;
	height: 57px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	cursor: pointer;
	text-align: center;
	color: #dedede;
	
	pointer-events: auto;
}

.single-post-gallery-thumbnails .owl-buttons  > div:hover {
	color: #b5b5b5;
}

.single-post-gallery-thumbnails .owl-prew { 
	left: 0px;
}

.single-post-gallery-thumbnails .owl-next {
	right: 0px;
}

@media all and (max-width: 640px) {

	.single-post-gallery-wrap {
		margin: 0px !important;
	}
	
	.single-post-gallery-thumbnails .owl-controls {
		display: none !important;
	}
	
	.content-area .entry-title {
		font-size: 25px;
		line-height: 28px;
	}
}


/**
 * - Related posts 
 */

.related-posts-section {
	margin-bottom: 40px;
}

.related-posts-wrap {
    float: left;
    width: calc(100% + 40px);
	margin-bottom: 25px;
}

.related-posts-wrap .related-post:nth-child(3n + 2) {
    margin-left: 2%;
    margin-right: 2%;
}
.related-post {
    float: left;
    margin-bottom: 2%;
    position: relative;
    width: 32%;
	min-height: 100px;
}

.related-post .post-thumbnail {
    height: auto;
    width: 100%;
	display: block;
}

.related-content-wrapper {
    bottom: 0;
    color: #ffffff;
    left: 0;
    padding: 10px;
    position: absolute;
    width: 100%;
}

.related-entry-title, 
.related-entry-title a {	
	color: #ffffff;
	font-family: "Roboto Condensed";
	font-size: 18px;
	line-height: 20px;
}

.related-post:hover .related-entry-title, 
.related-post:hover .related-entry-title a {	
	color: #ff1d26;
}

@media all and (max-width: 640px) {
	.page.has-sidebar .content-area,
	.single-post.has-sidebar .content-area,
	.has-sidebar .content-area,
	.has-sidebar.search-results .content-area,
	.has-sidebar.archive .content-area {
		width: 100%;
	}
	
	.related-post {
		width: 46%;
		margin-left: 2%;
		margin-right: 2%;
		margin-bottom: 4%;
	}
	
	.related-posts-wrap {
		width: 100%;
	}

}

@media all and (max-width: 480px) {

	.single-post-content {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.single-post-view-count {
		width: 100%;
		text-align: center;
		float: left;
	}
	
	.single-post-share-icons {
		width: 100%;
		float: left;
	}
	
	.mashsb-box {
		text-align: center;
	}
	
	.mashsb-box > * {
		display: inline-block;
	}
	
	.single-post-share-icons .mashsb-count {
		float: none !important;
		margin: 20px 0;
		width: 100%;
	}
	
	.related-post {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.related-posts-wrap .related-post:nth-child(3n + 2) {
		margin-left: 0;
		margin-right: 0;
	}
	
	.related-posts-wrap {
		width: 100%;
	}
}

.ag-article-meta {
	display: none;
}

.ag-article-footer {
	
}

/**
 * - Typography
 */
 
.entry-content {
    color: #515151;
    font-family: "Montserrat";
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 30px;
	margin-top: 16px;
	-webkit-word-wrap: break-word;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4, 
.entry-content h5, 
.entry-content h6 {
    text-transform: none;
    word-wrap: break-word;
}
.entry-content h1 a, 
.entry-content h2 a, 
.entry-content h3 a, 
.entry-content h4 a, 
.entry-content h5 a, 
.entry-content h6 a {
    color: inherit;
}
.entry-content h1, 
.entry-content h2, 
.entry-content h3, 
.entry-content h4, 
.entry-content h5, 
.entry-content h6 {
    margin-bottom: 25px;
	line-height: 1.1;
}
.entry-content h1 {
    font-size: 50px;
}
.entry-content h2 {
    font-size: 40px;
}
.entry-content h3 {
    font-size: 30px;
}
.entry-content h4 {
    font-size: 25px;
}
.entry-content h5 {
    font-size: 20px;
}
.entry-content h6 {
    font-size: 16px;
}

strong, b,
.entry-content b, .entry-content strong {
    color: #000000;
    font-weight: bold;
}
.entry-content blockquote {
    border-left: 5px solid #c1c1c1;
    color: #808080;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: italic;
    line-height: 120%;
    margin-bottom: 20px;
    padding-left: 30px;
}

blockquote p::after {
    content: "";
    font-family: "Times New Roman";
}

.entry-content p, 
.entry-content ul, .entry-content ol, 
.entry-content table, .entry-content dl, 
.entry-content pre, .entry-content address {
    margin-bottom: 20px;
}

.entry-content ul, .entry-content ol {
    list-style-position: inside !important;
}
.entry-content ul {
    list-style: outside disc;
}
.entry-content ul ul, .entry-content ol ol, 
.entry-content ul ol, .entry-content ol ul {
    margin-bottom: 0;
    margin-left: 10px;
    margin-top: 5px;
}
.entry-content ol {
    list-style: outside decimal;
}
.entry-content .comment-list {
    list-style: outside none;
}
.entry-content ul li, .entry-content ol li {
    margin-bottom: 5px;
}
.entry-content address {
    font-style: italic;
}
.entry-content pre {
    background-color: #f2f2f2;
    font-family: monospace;
    padding: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
.entry-content sup {
}
.entry-content sub {
}
.entry-content dt {
    font-weight: 700;
}
.entry-content dd {
    margin-bottom: 5px;
}
.entry-content .gallery dd {
    margin-bottom: 0;
}
.entry-content cite {
    font-style: italic;
}
.entry-content abbr, .entry-content acronym {
    border-bottom: 1px dotted;
}
.entry-content ins {
    text-decoration: none;
}
.entry-content kbd, .entry-content tt {
    font-family: monospace;
}
.readmore {
    display: inline-block;
    margin-top: 30px;
}
.entry-content img {
    height: auto;
    max-width: 100%;
}
.entry-content .wp-caption {
    max-width: 100%;
}
.entry-content img {
    max-width: 100% !important;
}
.alignleft {
    float: left;
}
.alignright {
    float: right;
}
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignleft > img,
img.alignleft,
.wp-caption.alignleft {
    float: left;
    margin: 5px 10px 10px 0;
}
.wp-caption.alignleft img {
	margin: 0;
}

.alignright img,
img.alignright,
.wp-caption.alignright {
    float: right;
    margin: 5px 0 10px 10px;
}
.wp-caption.alignright img {
	margin: 0;
}
.aligncenter img,
img.aligncenter,
.wp-caption.aligncenter {
    clear: both;
    display: block;
    margin: 5px auto;
    text-align: center;
}
.wp-caption.aligncenter img {
	margin: 0;
}
.alignnone img,
img.alignnone {
    margin: 10px 0;
}
img.size-full, img.size-large, img.wp-post-image {
    height: auto;
    max-width: 100%;
}
.entry-content table {
    border-collapse: collapse;
    border-spacing: 0;
}
.entry-content table th, .entry-content table td {
    border-bottom: 1px solid #cccccc;
    padding: 5px 7px;
}
.entry-content table thead th {
    color: #000000;
    text-transform: uppercase;
}
.entry-content table th {
    text-align: left;
}
.entry-content table td {
    font-style: italic;
}
.nav-links {
    background-color: #ffffff;
    font-size: 15px;
    overflow: hidden;
}
.nav-previous {
    float: left;
}
.nav-next {
    float: right;
}
.moretag {
    font-size: 24px;
    line-height: 10px;
}
.bypostauthor {
}

.entry-content a {
    color: #ff1d26;
}

.comments-area a {
	color: #ff1d26;
}


/** 
 * - Single post content gallery 
 */

.gallery {
    margin-bottom: 20px;
    margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.gallery dl{
    margin-bottom: 0;
}

.gallery img{
    width: 100%;
	height: auto;
    vertical-align: bottom;
}

.gallery-item {
    margin: 3px 5px;
    overflow: hidden;
    position: relative;
	display: inline-block;
}

.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
    display: table;
    margin: 0 auto 20px;
}

.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
    text-align: center;
}

.gallery-columns-2 .gallery-item {
    width: 48%;
    width: -webkit-calc(50% - 14px);
    width:         calc(50% - 14px);
}

.gallery-columns-3 .gallery-item {
    width: 31%;
    width: -webkit-calc(33% - 14px);
    width:         calc(33% - 14px);
}

.gallery-columns-4 .gallery-item {
    width: 23%;
    width: -webkit-calc(25% - 14px);
    width:         calc(25% - 14px);
}

.gallery-columns-5 .gallery-item {
    width: 19%;
    width: -webkit-calc(20% - 14px);
    width:         calc(20% - 14px);
}

.gallery-columns-6 .gallery-item {
    width: 15%;
    width: -webkit-calc(16.7% - 14px);
    width:         calc(16.7% - 14px);
}

.gallery-columns-7 .gallery-item {
    width: 13%;
    width: -webkit-calc(14.28% - 14px);
    width:         calc(14.28% - 14px);
}

.gallery-columns-8 .gallery-item {
    width: 11%;
    width: -webkit-calc(12.5% - 14px);
    width:         calc(12.5% - 14px);
}

.gallery-columns-9 .gallery-item {
    width: 9%;
    width: -webkit-calc(11.1% - 14px);
    width:         calc(11.1% - 14px);
}

.gallery-columns-1 {
	max-width: 300px;
}
.gallery-columns-2 {
	max-width: 400px;
}
.gallery-columns-3 {
	max-width: 550px;
}
.gallery-columns-4 {
	max-width: 600px;
}
.gallery-columns-5 {
	max-width: 750px;
}

.gallery-caption,
.wp-caption-text {
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
    max-height: 50%;
    opacity: 0;
    padding: 2px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    -webkit-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    transition:         opacity 400ms ease;
    width: 100%;
}

.gallery-caption::before,
.wp-caption-text:before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.gallery-caption, 
.wp-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

figure.wp-caption {
	position: relative;
}

.gallery-item:hover .gallery-caption,
.wp-caption:hover .wp-caption-text {
    opacity: 1;
}

.gallery-columns-7 .wp-caption-text,
.gallery-columns-8 .wp-caption-text,
.gallery-columns-9 .wp-caption-text,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none;
}

figure img {
	display: block;
}

figure {
	margin: 0 0 10px;
}

.submit-wrap {
	float: right;
}

.spam-wrap {
	float: left;
	margin-right: 10px;
}

.ninja-forms-required-items {
  display: none;
}

@media all and (max-width: 480px) {
	.gallery-item {
		width: calc(100% - 14px) !important;
	}
	
	figure img,
	figure {
		width: 100% !important;
	}
	
	.alignleft, 
	.alignright {
		float: none;
	}
	
	.gallery-item .gallery-caption,
	.wp-caption .wp-caption-text {
		opacity: 1;
	}
}

/**
 * - Custom content box
 */

.custom-conten-box-title {
    font-family: "Open Sans Condensed";
    font-size: 16px;
    font-weight: bold;
}

.custom-content-box {
    background-color: #dedede;
    padding: 10px;
    width: 300px;
	margin-top: 5px;
	margin-bottom: 10px;
}

.custom-content-box.is-bnr {
	background-color: transparent;
}

.custom-conten-box-title {
    font-family: "Open Sans Condensed";
    font-size: 16px;
    font-weight: bold;
}

.custom-content-box-content {
    color: #000000;
    font-family: "Roboto Condensed";
    font-style: italic;
}

.custom-content-box.not-just-text {
    background-color: transparent;
}

.custom-box-left {
	float: left;
	margin-right: 10px;
}

.custom-box-right {
	float: right;
	margin-left: 10px;
}

@media all and (max-width: 480px) {
	.custom-content-box {
		width: 100%;
	}
}

/**
 * - Archive
 */

.archive-posts-wrap {
    width: calc(100% + 40px);
}
 
.archive-header {
    border-bottom: 3px solid #dfe0e0;
    margin-bottom: 35px;
    margin-top: 22px;
}

.archive-page-name {
    color: #b5b5b5;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 5px;
	letter-spacing: 3px;
}

.archive-title {
    color: #333333;
    font-family: "Roboto Condensed";
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
	letter-spacing: 3px;
}

@media all and (max-width: 960px) {
	.archive-posts-wrap {
		width: 100%;
	}
}

/**
 * - Sidebar 
 */
 
.sidebar {
    float: left;
    margin-left: 10px;
    width: 300px;
	position: relative;
}

.sidebar-content {
    width: 300px;
	padding-bottom: 20px;
}

@media all and (max-width: 640px) {

	.sidebar,
	.sidebar-content {
		float: left;
		margin: 0;
		width: 100%;
	}
	
	.sidebar-content {
		padding-left: 10px;
		padding-right: 10px;
	}
}


/**
 * - Grid
 */
 
.post-block-wrapper {
	overflow: hidden;
	height: auto;
	position: relative;
	margin: 5px auto;
	max-width: 100%;
	
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.page-template-template-grid-boxed .post-block-wrapper {
    margin-top: 20px;
}

.has-sidebar.page-template-template-grid-boxed .post-block-wrapper {
    margin-left: -5px;
    margin-right: -5px;
    max-width: calc(100% + 10px);
}

@media all and (max-width: 640px){
	.has-sidebar.page-template-template-grid-boxed .post-block-wrapper {
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
	}
}

.grid-block {
	position: relative;
	float: left;
	font-family: "Roboto Condensed";
	font-weight: lighter;
	color: #ffffff;
	margin: 5px;
	
	box-shadow: inset 0 0 20px 5px rgba(0, 0, 0, 0.3);
}

.grid-block a,
.content-area .grid-block .entry-title, 
.content-area .grid-block .entry-title a,
.content-area .grid-block a {
	color: #ffffff;
}

.grid-post-header {
    margin-bottom: 5px;
}

.grid-block .entry-title {
    font-size: 12px;
    text-transform: uppercase;
	line-height: 16px;
	font-weight: normal;
	font-family: "Montserrat";
}

.grid-block:hover .entry-title,
.grid-block:hover .entry-title a {
	color: #ff1d26;
}

.hide-grid-content .grid-block:hover .entry-title,
.hide-grid-content .grid-block:hover .entry-title a {
	color: #ffffff !important;
}

.grid-block.small-wide .entry-title {
	font-size: 15px;
	line-height: 19px;
}
.grid-block.large-square .entry-title {
	font-size: 18px;
	line-height: 23px;
}
.grid-block.large-wide .entry-title {
	font-size: 22px;
	line-height: 27px;
}

.grid-post-date {
	font-size: 10px;
	position: absolute;
	top: 6px;
	left: 9px;
	text-shadow: 1px 1px 1px #000000;
}

.grid-content-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    height: auto;
    left: 0;
    padding: 9px 9px 6px;
    width: 100%;
	position: absolute;
	z-index: 10;
	
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;		
}

.hide-grid-content .grid-content-wrapper,
.hide-grid-content .grid-post-format,
.hide-grid-content .grid-post-date  {
	opacity: 0;
	
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.hide-grid-content .grid-block:hover .grid-content-wrapper,
.hide-grid-content .grid-block:hover .grid-post-format,
.hide-grid-content .grid-block:hover .grid-post-date {
	opacity: 1;
}

.grid-entry-meta {
	position: relative;
}

.dark-gradient {
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuNiIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.5)), color-stop(50%,rgba(0,0,0,0.6)), color-stop(100%,rgba(0,0,0,0.9))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.9) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.9) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.9) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.6) 50%,rgba(0,0,0,0.9) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#e6000000',GradientType=0 ); /* IE6-8 */
		
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.grid-block:hover .dark-gradient {
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuNiIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.6)), color-stop(50%,rgba(0,0,0,0.7)), color-stop(100%,rgba(0,0,0,0.9))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.9) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.9) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.9) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.9) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#e6000000',GradientType=0 ); /* IE6-8 */
}

.grid-post-content {
    font-size: 13px; 
    line-height: 16px;
	margin-bottom: 10px;
	display: none;
}

.grid-post-format,
.related-post-format {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 10;
}

.sticky .grid-post-format {
	display: none;
}

.grid-post-format i,
.related-post-format i {	
	background-color: rgba(0, 0, 0, 0.35);
    border-radius: 0 0 0 3px;
    font-size: 22px;
    padding: 3px 6px 3px 5px;
    text-shadow: 1px 1px 1px #000000;
    text-transform: uppercase;
	color: #ffffff;
}

.grid-entry-meta {
    font-size: 10px;
    text-transform: uppercase;
}

.search-results .news-post-block.block-full.has-post-thumbnail .news-list-excerpt,
.archive .news-post-block.block-full.has-post-thumbnail .news-list-excerpt,
.search-results .news-post-block.block-full.has-post-thumbnail .grid-entry-meta,
.archive .news-post-block.block-full.has-post-thumbnail .grid-entry-meta {
    padding-left: 310px;
}

.grid-entry-meta i {
	font-size: 11px;
}

.grid-entry-meta i {
	font-size: 120%;
}

.post-comment-count .fa {
    margin-right: 5px;
}

.grid-entry-meta,
.grid-entry-meta a {
	color: #b5b5b5;
}

.widget .edit-link {
    display: none;
}

.grid-entry-meta .post-category {
    float: right;
    margin-right: 0;
}

.list-small .post-category,
.block-small .post-category {
    float: none;
	margin-right: 20px;
}

.block-small.has-post-thumbnail .news-list-footer {
    padding-left: 95px;
}

.widget .list-small .post-category, 
.widget .block-small .post-category {
	display: none;
}

.meta-data-icons > span,
.grid-entry-meta > span {
    margin-right: 10px;
}

.grid-entry-meta span i {
	margin-right: 5px;
}

.meta-buttons-wrap {
    position: relative;
}

.post-meta-shb {
	cursor: pointer;
	margin-right: 10px;
}

article.page .post-meta-shb, 
article.page .meta-shb-buttons {
    display: none;
}

.show-shb .post-meta-shb > i {
	color: #ff1d26;
}

.meta-shb-buttons {
	display: block;
    position: absolute;
    top: -5px;
	min-height: 25px;
	padding-top: 5px;
    opacity: 0;
    width: 220px;
    height: 100%;
    left: 28px;
	display: none;
	z-index: 10;
	
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.meta-shb-button:hover {
	color: #ff1d26;
}

.show-shb .meta-shb-buttons {
	display: block;
	opacity: 1;
}

.meta-data-icons {	
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.show-shb .meta-data-icons {
	display: none;
	opacity: 0;
	position: relative;
	z-index: 9;
}

.meta-shb-button {
	cursor: pointer;
}

@media all and (max-width: 960px) {
	.search-results .news-post-block.block-full .news-list-excerpt,
	.archive .news-post-block.block-full .news-list-excerpt,
	.search-results .news-post-block.block-full .grid-entry-meta,
	.archive .news-post-block.block-full .grid-entry-meta {
		padding-left: 0px !important;
	}
}

@media all and (max-width: 640px) {
	.grid-entry-meta {
		font-size: 14px;
	}
	
	.meta-shb-buttons {
		left: 15px;
		text-align: center;
	}
	
	.meta-shb-button {
		margin: 0 5px;
	}
}

@media all and (max-width: 480px) {
	.block-small .post-category {
		display: none;
	}
}

.grid-block .avantgardia-block-image.ag-mobile-block-image {
	display: none;
}

.grid-block.large-square {
	width: 300px;
	height: 250px;
}

.grid-block.large-wide {
	width: 455px;
	height: 250px;
}

.grid-block.large-wide .grid-post-header {
	margin-bottom: 10px;
}

.grid-block.large-square .grid-post-header {
	margin-bottom: 7px;
}

.grid-block.small-wide {
	width: 300px;
	height: 120px;
}

.grid-block.small-square {
	width: 145px;
	height: 120px;
}

.grid-block.small-square .grid-post-header {
	margin-bottom: 0px;
}

.grid-block.small-square .grid-content-wrapper {
	padding-top: 6px;
	padding-bottom: 6px;
}

.grid-block.small-square .entry-title {
    line-height: 17px;
    max-height: 67px;
    overflow: hidden;
}

.grid-block.small-wide .grid-post-content {
	display: none;
}

.grid-block.small-square .grid-post-content,
.grid-block.small-square .grid-post-footer {
	display: none;
}

.grid-block .avantgardia-block-image.ag-no-image {
	display: none !important;
}

/* Boxed grid */

.has-sidebar.page-template-template-grid-boxed .content-area {
    margin-left: 10px;
    margin-right: 15px;
    width: calc(100% - 345px);
}

.has-sidebar.page-template-template-grid-boxed .page-slider-wrap.full-width-slider {
    margin-left: 10px;
}

.page-template-template-grid-boxed .page-slider-wrap.full-width-slider {
    margin-left: 5px;
}

@media all and (max-width: 640px) {
	.has-sidebar.page-template-template-grid-boxed .content-area {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
	}
}


/**
 * - Load more button 
 */

#load-more-posts {
    color: #ffffff;
    font-family: "Roboto Condensed";
    font-size: 18px;
    height: 160px;
    line-height: 230px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
	float: left;
	width: 100%;
}

.load-more-spinner {
    display: none;
}

.loading .load-more-spinner {
	display: inline;
}

.load-more-spinner.left {
	margin-right: 10px;
}

.load-more-spinner.right {
	margin-left: 10px;
}

.load-more-button {
	border: 2px solid #dedede;
    cursor: pointer;
    display: inline-block;
    padding: 10px 30px;
    width: 200px;
	line-height: 1;
	color: #b5b5b5;
	position: relative;
	z-index: 1;
	opacity: 1;
	
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.no-more-pages {
	display: none;
}

.loading .load-more-text {
	display: none;
}

.transition {
	-webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.loading-dot {
    display: none;
    font-size: 10px;
    padding: 0 3px;
    vertical-align: middle;
}

.dots .loading-dot:nth-child(2) {
	-webkit-animation-delay: 100ms;
	-moz-animation-delay: 100ms;
	animation-delay: 100ms;
}

.dots .loading-dot:nth-child(3) {
	-webkit-animation-delay: 300ms;
	-moz-animation-delay: 300ms;
	animation-delay: 300ms;
}

.loading .loading-dot {
	display: inline;
}

/**
 * - Classic pagination 
 */

.global-pagination {
    float: left;
    text-align: center;
    width: 100%;
	margin-top: 70px;
	margin-bottom: 0px;
    font-family: "Roboto Condensed";
    font-size: 15px;
}

.comment-navigation {
    font-family: "Roboto Condensed";
    padding: 0;
}

.comment-navigation .screen-reader-text {
    display: none;
}

.global-pagination.post-nav-links {
    margin-bottom: 40px;
    margin-top: 20px;
}

.nav-links > a,
.nav-links > span,
.page-numbers > li {
    display: inline-block;
    margin: 5px 7px;
}

.nav-links > a,
.nav-links > span {
	margin: 5px 6px;
}

.nav-links .page-numbers,
.page-numbers > li > a {
    display: inline-block;
    padding: 2px 4px;
	color: #b5b5b5;
}

.nav-links .current,
.page-numbers li .current,
.post-nav-links > span {
	color: #ff1d26;
	font-weight: bold;
	padding: 2px 4px;
	border: 1px solid #ff1d26;
}

.post-nav-links .nav-links > span {
    color: #ff1d26;
}

.post-nav-links a span {
	border: none;
}

.navigation .screen-reader-text {
    color: #b5b5b5;
    padding: 5px;
    text-transform: uppercase;
	display: none;
}

@media all and (max-width: 640px) {
	.hide-grid-content .grid-content-wrapper,
	.hide-grid-content .grid-post-format,
	.hide-grid-content .grid-post-date {
		opacity: 1;
	}
}

@media all and (max-width: 480px) {
	.grid-block,
	.grid-block.large-square,
	.grid-block.large-wide,
	.grid-block.small-square,
	.grid-block.small-wide {
		width: 100%;
		width: calc(100% - 10px);
		height: auto;
	}
	
	.grid-block .entry-title,
	.grid-block.large-square .entry-title,
	.grid-block.large-wide .entry-title,
	.grid-block.small-square .entry-title,
	.grid-block.small-wide .entry-title {
		font-size: 18px;
		line-height: 23px;
	}
		
	.grid-block .avantgardia-block-image {
		width: 100%;
		height: auto;
		display: none;
	}
	
	.grid-block .avantgardia-block-image.ag-mobile-block-image {
		display: inline;
	}
	
	.grid-block.small-wide .grid-post-content {
		display: block;
	}

	.grid-block.small-square .grid-post-content,
	.grid-block.small-square .grid-post-footer {
		display: block;
	}
	
	.grid-block {
		min-height: 130px;
	}
	
	.grid-block.large-wide .entry-title, 
	.grid-block.large-square .entry-title, 
	.grid-block.small-wide .entry-title, 
	.grid-block.small-square .entry-title {
		font-size: 22px;
		line-height: 27px;
	}
	
	.grid-block.small-square .entry-title {
		max-height: 100%;
	}
	
	.grid-post-content {
		display: none;
	}
}

/**
 * - Comments
 */
 
#comments {
    float: left;
    padding: 0 15px 60px;
    width: 100%;
}

#commentform {
    color: #515151;
    font-family: "Roboto Condensed";
    font-size: 14px;
    margin: 30px 0 50px;
}

#commentform a,
#commentform a:visited {
	color: #b5b5b5;
}

#comments-wrap {
    overflow: hidden;
}

.after-form-notes {
    font-size: 12px;
    text-align: right;
    margin-bottom: 20px;
}

.rel-post-list {
	padding: 0 10px;
}

.rel-post-link {
	margin: 10px 0;
}

.rel-post-link a,
.rel-post-link a:visited,
.rel-post-link a:hover {
	font-family: "Roboto Condensed";
	font-size: 14px;
	line-height: 16px;
	color: #b5b5b5;
}

.bar-title a, 
#reply-title a,
.comment-reply-title a {
    background-color: #f2f2f2;
    color: #515151;
    display: block;
    font-family: "Roboto Condensed";
    font-size: 14px;
    line-height: 14px;
    margin-top: 20px;
    padding: 10px;
    text-transform: uppercase;
}

.comment-form input[type="text"], 
.comment-form input[type="email"], 
.comment-form input[type="password"], 
.comment-form input[type="number"], 
.comment-form textarea {
    color: #515151;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: 300;
	border: 1px solid #dedede;
    font-weight: lighter;
    line-height: 19px;
    padding: 5px;
}

.comment-field {
	width: 33.33333%;
	float: left;
	margin-bottom: 20px;
}

.comment-field  input {
	width: 100%;
	margin: 0;
}

.comment-field #author {
	width: calc(100% - 16px);
}

.comment-field #email {
	width: calc(100% - 32px);
	margin-left: 16px;
	margin-right: 16px;
}

.comment-field #url {
	width: calc(100% - 16px);
	margin-left: 16px;
}

.comment-form-comment textarea {
	width: 100%;
	height: 150px;
	padding: 5px 10px;
	border: 1px solid #dedede;
	margin-bottom: 20px;
}

.form-submit {
	text-align: right;
}	

.ag-fsubmit,
.form-submit #submit {
	background-color: #55c78d;
    border: medium none;
    color: #fff;
    cursor: pointer;
    font-family: "Open Sans Condensed";
    font-weight: 700;
    line-height: 14px;
    outline: medium none;
    padding: 10px 50px;
    text-transform: uppercase;
	font-size: 15px;
	margin: 0 0 0 65px;
	letter-spacing: 3px;
	
	-webkit-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.ag-fsubmit:hover,
.form-submit #submit:hover {
	background-color: #44a56b
}

#commentform .notes-after {
	float: left;
}

#commentform .notes-after span {
	color: #ff1d26;
}

.logged-in-as {
	margin-bottom: 20px;
}

.comment-author .avatar {
	display: none;
}

#comments .says {
	display: none;
}

#comments .comment-metadata {
	display: none;
}

#comments .reply {
	float: right;
	font-family: "Montserrat";
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 10px;
}

#comments .reply a {
	color: #999999;
}

.comment-author {
    margin-bottom: 5px;
	font-size: 15px;
}

.comment-body {
    background-color: #f2f2f2;
    color: #515151;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: lighter;
    line-height: 21px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 10px 15px;
}

.content-wrap img{
    max-width: 100%;
    height: auto;
}

.alignleft{
    float: left;
    margin-right: 20px;
    margin-bottom: 15px;
}

.alignright{
    float: right;
    margin-right: 20px;
    margin-bottom: 15px;
}

.aligncenter{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

img.alignleft{
    float: left;
    margin: 5px 5px 5px 0;
}

img.alignright{
    float: right;
    margin: 5px 0 5px 5px;
}

img.aligncenter{
    display: block;
    margin: 5px auto;
    text-align: center;
    clear: both;
}

img.alignnone{
    margin: 5px 0;
}

img.size-full,
img.size-large,
img.wp-post-image{
    max-width: 100%;
    height: auto;
}

.site-content .page-title {
    font-family: "Roboto Condensed";
    font-size: 48px;
    font-weight: 300;
    margin: 50px auto;
    text-align: center;
}


.wp-block-button {
    margin: 20px 0;
}

.wp-block-button.alignleft {
    margin-right: 20px;
    margin-top: 0;
}

.wp-block-button.alignright {
    margin-left: 20px;
    margin-top: 0;
}

.blocks-gallery-grid,
.wp-block-gallery {
    margin-bottom: 15px;
}

.wp-block-cover {
    margin-bottom: 20px;
}

.entry-content .has-background {
    padding: 10px;
}

.depth-2 {
	padding-left: 20px;
}
.depth-3 {
	padding-left: 40px;
}
.depth-4 {
	padding-left: 60px;
}
.depth-5 {
	padding-left: 80px;
}
.depth-6 {
	padding-left: 100px;
}
.depth-7 {
	padding-left: 120px;
}
.depth-8 {
	padding-left: 140px;
}
.depth-9 {
	padding-left: 160px;
}
.depth-10 {
	padding-left: 180px;
}

.comment-content > p {
    margin-bottom: 20px;
}

.comment-content > p:last-child {
    margin-bottom: 0px;
}

.comment-content h1, 
.comment-content h2, 
.comment-content h3, 
.comment-content h4, 
.comment-content h5, 
.comment-content h6 {
    text-transform: none;
    word-wrap: break-word;
}
.comment-content h1 a, 
.comment-content h2 a, 
.comment-content h3 a, 
.comment-content h4 a, 
.comment-content h5 a, 
.comment-content h6 a {
    color: inherit;
}
.comment-content h1, 
.comment-content h2, 
.comment-content h3, 
.comment-content h4, 
.comment-content h5, 
.comment-content h6 {
    margin-bottom: 25px;
}
.comment-content h1 {
    font-size: 50px;
}
.comment-content h2 {
    font-size: 40px;
}
.comment-content h3 {
    font-size: 30px;
}
.comment-content h4 {
    font-size: 25px;
}
.comment-content h5 {
    font-size: 20px;
}
.comment-content h6 {
    font-size: 16px;
}
.comment-content b, .comment-content strong {
    color: #000000;
    font-weight: bold;
}
.comment-content blockquote {
    border-left: 5px solid #c1c1c1;
    color: #808080;
    font-family: "Times New Roman";
    font-size: 20px;
    font-style: italic;
    line-height: 120%;
    margin-bottom: 80px;
    padding-left: 30px;
}
.comment-content .comment-content p, 
.comment-content ul, .comment-content ol, 
.comment-content table, .comment-content dl, 
.comment-content pre, .comment-content address {
    margin-bottom: 20px;
}
.comment-content ul, .comment-content ol {
    list-style-position: inside !important;
}
.comment-content ul {
    list-style: outside disc;
}
.comment-content ul ul, .comment-content ol ol, 
.comment-content ul ol, .comment-content ol ul {
    margin-bottom: 0;
    margin-left: 10px;
    margin-top: 5px;
}
.comment-content ol {
    list-style: outside decimal;
}
.comment-content .comment-content {
    list-style: outside none;
}
.comment-content ul li, .comment-content ol li {
    margin-bottom: 5px;
}
.comment-content address {
    font-style: italic;
}
.comment-content pre {
    background-color: #f2f2f2;
    font-family: monospace;
    padding: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.comment-content sup {
}
.comment-content sub {
}
.comment-content dt {
    font-weight: 700;
}
.comment-content dd {
    margin-bottom: 5px;
}
.comment-content .gallery dd {
    margin-bottom: 0;
}
.comment-content cite {
    font-style: italic;
}
.comment-content abbr, .comment-content acronym {
    border-bottom: 1px dotted;
}
.comment-content ins {
    text-decoration: none;
}
.comment-content kbd, .comment-content tt {
    font-family: monospace;
}
.comment-content img {
    height: auto;
    max-width: 100%;
}
.comment-content .wp-caption {
    max-width: 100%;
}
.comment-content img {
    max-width: 100% !important;
}
.comment-content table {
    border-collapse: collapse;
    border-spacing: 0;
}
.comment-content table th, .comment-content table td {
    border-bottom: 1px solid #cccccc;
    padding: 5px 7px;
}
.comment-content table thead th {
    color: #000000;
    text-transform: uppercase;
}
.comment-content table th {
    text-align: left;
}
.comment-content table td {
    font-style: italic;
}
.comment-navigation {
    margin-bottom: 40px;
    overflow: hidden;
}

.no-comments {
    color: #b5b5b5;
    font-family: "Montserrat";
    font-size: 19px;
    text-align: center;
}

@media all and (max-width: 640px){
	#comments {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.comment-field {
		width: 100%;
	}
	
	.comment-field #author {
		width: 100%;
	}
	
	.comment-field #email {
		margin-left: 0px;
		margin-right: 0px;
		width: 100%;
	}
	
	.comment-field #url {
		margin-left: 0;
		width: 100%;
	}
	
	.after-form-notes {
		width: 100%;
		margin-bottom: 20px;
	}
}


/**
 * - Widgets
 */ 
 
.widget {
    padding-top: 25px;
    font-family: "Roboto Condensed";
}

.widget-area {
    width: 100%;
}

.widget-title {
    color: #999999;
    font-size: 14px;
    font-weight: lighter;
    height: 25px;
    letter-spacing: 3px;
    line-height: 1;
    text-transform: uppercase;
}

.widget-title a {
    color: #999999;	
}

.avantgardia-ad-widget {
    margin-bottom: 25px;
    width: 100%;
}

.avantgardia-ad-widget * {
    max-width: 100%;
}

.avantgardia-ad {
    margin: 0 auto;
    max-width: 300px;
}

.avantgardia-ad > img {
	display: block;
}

.wp-block-rss__item-title {
    display: inline-block;
}

/**
 * - Post lists
 */

.post-list {
	margin-bottom: 25px;
	overflow: hidden;
	width: 100%;
	font-family: "Montserrat";
	position: relative;
}

.post-box-shadow .post-list, 
.post-box-shadow li.product {
	box-shadow: 0 0 10px 0px rgba(0,0,0,0.12);
}

.post-list-media {
	position: relative;
}

.list-small .post-list-media {
	margin: 0px 15px 0px 0px;
	float: left;
}

.post-list-media img {
	display: block;
	width: 100%;
	height: auto;
}

.post-list-media .post-list-date {
    left: 5px;
    position: absolute;
    text-shadow: 1px 1px 1px #000000;
    top: 4px;
}

.post-list-media .post-list-format {
    bottom: 0;
    font-size: 16px;
    left: 0;
    line-height: 1;
    position: absolute;
    text-shadow: 1px 1px 1px #000000;
}

.post-list-media .post-list-date,
.post-list-media .post-list-format {
    color: #ffffff;
}

.post-list-footer {
    bottom: 5px;
    padding: 0 10px;
    position: absolute;
    right: 0;
    width: 100%;
}

.list-large .post-list-footer {
	padding: 0 15px;
}

.post-list-footer,
.post-list-footer a {
    color: #999999;
}

.post-list-header {
    font-family: "Open Sans Condensed";
    font-size: 15px;
    font-weight: bold;
    line-height: 19px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.column-left .post-list-header  {
	margin-bottom: 27px;
	margin-top: 6px;
}

.post-list.list-small .post-list-header h2 {
    height: 40px;
    overflow: hidden;
}

.post-list-header,
.post-list-header a {
	color: #333333;
}

.list-small .post-list-media {
	width: 80px;
}

.list-small.has-post-thumbnail .post-list-footer {
	padding-left: 95px;
}

.post-list-content {
    color: #515151;
    font-size: 14px;
    line-height: 21px;
    padding: 0 0 34px;
}


.list-large .post-list-media {
    margin-bottom: 10px;
}

.list-large .post-list-header {
    font-size: 25px;
    line-height: 26px;
    margin-bottom: 10px;
}

.post-list-content-wrapper {
    padding: 0 10px;
}

.list-large .post-list-content-wrapper {
    padding: 0 15px;
}

.list-medium .entry-title {
    font-size: 25px;
    line-height: 30px;
}

.widget .list-medium .entry-title {
	font-size: 20px;
    line-height: 25px;
}

.widget .list-medium .post-list-header {
    margin-bottom: 29px;
    margin-top: 8px;
}

.widget .list-small .post-list-header {
    margin-top: 3px;
}


/**
 * - Tag cloud 
 */

.widget .tagcloud a {
    color: #b5b5b5;
    font-family: "Open Sans Condensed";
    font-size: 16px !important;
    font-weight: bold;
    line-height: 26px;
    padding-left: 6px;
    padding-right: 6px;
    text-transform: uppercase;
    display: inline-block;
    float: left;
	border: 2px solid transparent;	
}

.widget .tagcloud a:hover {
	border: 2px solid #dedede;
}

.widget_tag_cloud .tagcloud {
	margin-left: -6px;
	width: 100%;
	overflow: hidden;
}


/**
 * - Category list 
 */

.widget_pages li,
.widget_pages li a,
.widget_recent_entries li,
.widget_recent_entries li a,
.widget_nav_menu li,
.widget_nav_menu li a,
.widget_recent_comments li,
.widget_recent_comments li a,
.widget_rss li,
.widget_rss li a,
.widget_archive li,
.widget_archive li a,
.widget_categories li,
.widget_categories li a {
    font-family: "Open Sans Condensed";
    font-size: 14px;
    color: #515151;
    font-weight: normal;
}

.widget_pages li a,
.widget_nav_menu li a,
.widget_recent_comments li a,
.widget_rss li a,
.widget_archive li a,
.widget_categories li a {
    display: block;
    float: left;
    position: relative;
	background-color: #ffffff;
	z-index: 1;
	padding-right: 2px;
}

.widget_archive li::after,
.widget_categories li::after {
    content: ".....................................................";
    display: block;
    letter-spacing: 9px;
    position: absolute;
    right: 19px;
    top: 11px;
    font-size: 13px;
	color: #cacaca;
}

.widget_nav_menu > ul > li > a,
.widget_recent_comments > ul > li > a,
.widget_rss > ul > li > a,
.widget_archive > ul > li > a,
.widget_categories > ul > li > a {
	text-transform: uppercase;
}

.widget_pages ul ul,
.widget_nav_menu ul ul,
.widget_recent_comments > ul ul,
.widget_rss > ul ul,
.widget_archive > ul ul,
.widget_categories > ul ul {
    padding-left: 15px;
}

.widget_pages li,
.widget_nav_menu li,
.widget_recent_comments li,
.widget_rss li,
.widget_archive li,
.widget_categories li {
    overflow: hidden;
    padding-top: 10px;
    text-align: right;
	position: relative;
}


.widget_recent_comments li {
	text-align: left;
}

.widget_nav_menu li a,
.widget_recent_comments li a,
.widget_rss li a,
.widget_archive li a,
.widget_categories li a {
    display: block;
    float: left;
}

.widget_pages .widget-title,
.widget_nav_menu .widget-title,
.widget_recent_comments .widget-title,
.widget_rss .widget-title,
.widget_archive .widget-title,
.widget_categories .widget-title {
	height: 15px;
}

.widget_nav_menu .screen-reader-text,
.widget_recent_comments .screen-reader-text,
.widget_archive .screen-reader-text,
.widget_categories .screen-reader-text {
	display: none;
}

.widget select,
.widget_nav_menu select,
.widget_recent_comments select,
.widget_archive select,
.widget_categories select {
    width: 100%;
    margin-top: 15px;
    padding: 5px;
    color: #979797;
}

.widget_nav_menu li > a {
    width: 100%;
    text-align: left;
}

.widget_nav_menu .sub-menu {
    float: left;
    width: 100%;
}


/**
 * - Recent posts 
 */

.widget_recent_entries li {
    overflow: hidden;
    margin-bottom: 10px;
}

.widget_pages li > a, 
.widget_recent_entries li > a {
    float: left;
    font-family: "Open Sans Condensed";
    font-weight: bold;
    color: #515151;
}

.widget_recent_entries .post-date {
    float: left;
    font-size: 12px;
    width: 100%;
}

.widget_pages .children {
    float: left;
    width: 100%;
}

.widget_recent_comments > ul > li > a {
    color: #515151;
    display: block;
    font-family: "Open Sans Condensed";
    text-transform: none;
    width: 100%;
    font-weight: bold;
}

.widget_tag_cloud .tagcloud,
.widget_rss > ul,
.widget_meta > ul,
.widget_pages > ul,
.widget_recent_entries > ul,
.widget_recent_comments > ul,
.widget_categories > ul,
.widget_archive > ul {
	margin-bottom: 25px;
}


/**
 * - Text widget 
 */

.textwidget {
    font-family: "Montserrat";
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #515151;
}

.textwidget img {
    width: 100%;
    margin-bottom: 5px;
}

.widget .wp-caption {
    position: relative;
}

.widget .wp-caption img {
	display: block;
}


/**
 * - RSS widget 
 */

li > a.rsswidget {
    display: block;
    width: 100%;
    text-align: left;
}

.rssSummary {
    font-family: roboto;
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
    text-align: left;
    float: left;
    width: 100%;
}

.rss-date {
    float: left;
    font-size: 12px;
    font-weight: bold;
}

.widget_rss cite {
    font-size: 14px;
    font-weight: bold;
}


/**
 * - Calendar 
 */

#calendar_wrap {
    margin-bottom: 25px;
}

.widget_calendar table {
    width: 100%;
	position: relative;
	color: #979797;
}

.widget_calendar table th, 
.widget_calendar table td {
    border-bottom: 1px solid #eaeaea;
    padding-top: 9px;
    padding-bottom: 9px;
    text-align: center;
    font-family: "Open Sans";
    font-size: 12px;
	position: relative;
}

td#today {
	color: #ffffff;
	font-weight: bold;
}

td#today:after {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: #ff1d26;
    content: "";
    border-radius: 17px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.widget_calendar table td a {
	color: #000000;
	font-weight: 600;
}

.widget_calendar table tfoot td {
	padding-top: 0px;
	padding-bottom: 0px;
	border-bottom: none;
	position: static;
}

.widget_calendar table td.pad:last-child {
	border-bottom: none;
}

.widget_calendar caption {
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #b5b5b5;
    padding: 8px 0;
    text-align: center;
    font-family: "Open Sans";
    font-weight: bold;
	height: 36px;
}

.widget_calendar #prev.pad,
.widget_calendar #next.pad, 
.widget_calendar #prev > a,
.widget_calendar #next > a {
    font-size: 0;
	display: block;
	font-family: fontawesome;
	position: static;
}

.widget_calendar #prev.pad:after,
.widget_calendar #prev a:after {
	content: "\f104";
	background-color: #a2a2a2;
    color: #ffffff;
    font-size: 24px;
    padding: 5px 10px 5px 11px;
    position: absolute;
    top: 0;
	left: 0;
    height: 36px;
}

.widget_calendar #next.pad:after,
.widget_calendar #next a:after {
	content: "\f105";
	background-color: #a2a2a2;
    color: #ffffff;
    font-size: 24px;
    padding: 5px 11px 5px 10px;
    position: absolute;
    top: 0;
	right: 0;
    height: 36px;
}

.widget_calendar #prev.pad:after,
.widget_calendar #next.pad:after{
	background-color: #c2c2c2;
}

.widget_calendar tfoot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/**
 * - Meta widget 
 */

.widget_meta li a{
	color: #515151;
    font-family: "Open Sans Condensed";
    font-size: 14px;
    font-weight: normal;
	text-transform: uppercase;
}

.widget_meta li {
	padding-bottom: 10px;
}
	
/**
 * - Twitter widget 
 */

.wptt_TwitterTweets {
	font-family: "Roboto Condensed";
	font-weight: lighter;
	font-size: 13px;
}

.wptt_TwitterTweets li {
	position: relative;
}

.widget ul.dark li.tweets_avatar .tweet_data,
.widget ul.light li.tweets_avatar .tweet_data {
    color: #333333 !important;
    float: none;
    font-family: "Roboto Condensed";
    font-size: 13px;
    font-weight: lighter;
    line-height: 18px;
    padding-top: 20px;
	padding-left: 60px;
}

.wptt_TwitterTweets .times {
    position: absolute;
    right: 10px;
    top: 7px;
	font-size: 11px;
}

.wptt_TwitterTweets ul.light li.tweets_avatar .times a,
.wptt_TwitterTweets ul.dark li.tweets_avatar .times a {
	color: #b5b5b5 !important;
	font-family: "Roboto Condensed";
}

.wptt_TwitterTweets .tweets_avatar img {
	border-radius: 0;
}

.wptt_TwitterTweets .screen_name {
    display: none;
}

.wptt_TwitterTweets .wdtf-screen-name > br {
    display: none;
}

.wptt_TwitterTweets ul.light li.tweets_avatar .wdtf-screen-name > a,
.wptt_TwitterTweets ul.dark li.tweets_avatar .wdtf-screen-name > a {
    color: #15b0e6 !important;
}

.wptt_TwitterTweets div.wdtf-screen-name {
	position: absolute;
	left: 64px;
	top: 5px;
	font-size: 12px;
}

.wptt_TwitterTweets div.wdtf-user-card {
    width: auto;
}

.wptt_TwitterTweets .tweets_avatar img {
	margin-right: 15px;
}

.wptt_TwitterTweets li.tweets_avatar {
    border-radius: 0;
    border-width: 0px !important;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
	padding-bottom: 3px !important;
}

.wptt_TwitterTweets .fetched_tweets {
    margin-bottom: 25px !important;
}

.stats > a {
    width: auto !important;
    margin: 3px 0;
}

.stats > a:first-child {
	float: left !important;
}

.stats > a:last-child {
	float: right !important;
	margin-right: 0px;
}

.seperator_wpltf {
    display: none;
}

.tweet_wrap > br {
	display: none;
}

.tweets-intent-data ul.tweet-actions {
    display: none;
}

.tweets-intent-data {
	padding-left: 60px;
	border-top: none !important;
	font-size: 10px;
}

.tweets-intent-data .stats-favorites {
	text-transform: lowercase;
	color: #b5b5b5;
	font-family: "Roboto Condensed";
}

.tweets-intent-data .stats-favorites strong,
.tweets-intent-data .stats-favorites b {
	color: #b5b5b5;
	font-weight: normal;
}

li.tweets_avatar {
    margin-bottom: 25px;
}


.widget .tweets_avatar .screen_name {
    display: none;
}

.widget .tweets_avatar .wdtf-screen-name > br {
	display: none;
}

.widget .tweets_avatar .wdtf-user-card > .clear {
    display: none;
}

.widget .tweets_avatar .wdtf-user-card {
    float: none;
}

.widget .tweets_avatar .times {
    position: absolute;
    top: 10px;
    right: 10px;
}

.widget .tweets_avatar {
    border-radius: 0;
    position: relative;
    border-width: 0px !important;
}

/**
 * - Search widget 
 */
 
.widget .search-form .search-field {
    padding: 6px 5px;
    width: 100%;
}

.widget .search-form .screen-reader-text {
    display: none;
}


/**
 * - 404 Page 
 */
 
.nothing-found-404 {
    color: #b5b5b5;
    font-family: "Open Sans";
    font-size: 104px;
    font-weight: bold;
    margin-top: 60px;
    text-align: center;
}

.nothing-found-text {
    color: #b5b5b5;
    font-family: "Open Sans Condensed";
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

 
/**
 * - Contact page 
 */
 
.sffi {
	display: none;
}

#contact-form input[type=text], 
#contact-form textarea {
    font-family: "Open Sans Condensed";
    font-size: 14px;
    font-weight: normal;
    color: #515151;
    padding: 10px;
    line-height: 14px;
    float: left;
    margin-bottom: 20px;
    background-color: #f8f8f8;
    border: 1px solid #dedede;
}

#contact-form textarea {
	min-height: 125px;
	line-height: 19px;
}

.ag-contact {	
    width: 100%;
}

#contact-form .ag-fsubmit {
	margin-left: 0px;
}

.contact-form-message {
    font-family: "Open Sans Condensed";
    font-style: italic;
    font-size: 13px;
    font-weight: bold;
    margin-left: 20px;
}

.contact-section-title {
    font-family: "Open Sans Condensed";
    font-weight: bold;
    font-size: 25px;
    color: #333333;
    margin-bottom: 40px;
}

.contact-form-wrap {
    margin-bottom: 60px;
}

.contact-form-message {
	display: none;
}

.ag-contact.ag-fname {
    margin-right: 20px;
    width: calc(50% - 10px);
}

.ag-contact.ag-femail {
    width: calc(50% - 10px);
}

@media all and (max-width: 960px) {
	.ag-contact.ag-fname {
		margin-right: 0;
		width: 100%;
	}

	.ag-contact.ag-femail {
		width: 100%;
	}
}

.contact-info-data {
    font-family: "Open Sans Condensed";
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 20px;
}

.contac-info-st {
    display: inline-block;
    width: 80px;
}

.page-template-template-contact .entry-content {
	margin-top: 50px;
}

.contact-map {
    margin-bottom: 60px;
    padding: 30%;
    position: relative;
	overflow: hidden;
	height: 0px;
}

.contact-map iframe {
    left: 0;
    position: absolute;
    top: 0;        
	width: 100% !important;
    height: 100% !important;
}


/**
 * - Two column page
 */

.page-template-template-two-column.has-sidebar .site-content {
    max-width: 1440px;
}

.page-template-template-two-column.has-sidebar .content-area {
    margin-right: 10px;
	width: calc(100% - 340px);
}

.page-template-template-news-builder.has-sidebar .content-area {
    margin-right: 25px;
    padding: 10px;
}

.mobile-two-column {
    padding: 0 10px;
	display: none;
}

.mobile-two-column .head-stripe {
	padding: 0px;
}

.mobile-two-column .left-column-title {
	float: left;
}

.mobile-two-column .right-column-title {
	float: right;
}

.column-tab {
	cursor: pointer;
}

.column-tab.selected {
    color: #ff1d26;
}

.column-left {
    float: left;
    width: 410px;
	min-height: 20px;
	position: relative;
}

.column-left-content {
	padding: 0 20px;
}

.column-right {
    float: left;
    padding: 0 20px;
    width: calc(100% - 410px);
	min-width: 300px;
	position: relative;
}

.column-right:before {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	top: 0px;
	bottom: -70px;
	left: 0px;
}

.column-right:after {
	content: "";
	display: block;
	position: absolute;
	width: 15px;
	top: 0px;
	bottom: -70px;
	right: 0px;
}

.page-slider-wrap.boxed-slider {
    margin-top: 25px;
    position: relative;
}

.page-template-template-news-builder .page-slider-wrap.boxed-slider {
    margin-right: 20px;
	margin-top: 20px;
	margin-bottom: 30px;
}

.page-template-template-news-builder .page-slider-wrap.full-width-slider  {
	margin-bottom: 20px;
}

.page-slider-wrap.full-width-slider {
    margin-left: 10px;
    margin-right: 10px;
	margin-bottom: 40px;
	padding-top: 0px;
	position: relative;
}

.page-template-template-grid .page-slider-wrap.full-width-slider {
    margin-bottom: 0;
}

.page-template-template-two-column .page-slider-wrap.full-width-slider {
    margin-left: 20px;
    margin-right: 20px;	
}

.page-template-template-two-column .page-slider-wrap.boxed-slider {
	margin-left: 20px;
}

.full-width-slider.is-fullscreen {
    padding-top: 0;
}

.page-template-template-two-column .page-slider-wrap.full-width-slider {
    margin-bottom: 0;
}

@media all and (min-width: 960px) {		
	.horizontal-gradient:before {
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d5d5d5+0,000000+100&amp;1+0,0+100 */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q1ZDVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(left,  rgba(213,213,213,0.7) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(213,213,213,0.7)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(left,  rgba(213,213,213,0.7) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(left,  rgba(213,213,213,0.7) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(left,  rgba(213,213,213,0.7) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
		background: linear-gradient(to right,  rgba(213,213,213,0.7) 0%,rgba(0,0,0,0) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d5d5d5', endColorstr='#00000000',GradientType=1 ); /* IE6-8 */
	}

	.horizontal-gradient:after {
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,d5d5d5+100&amp;0+0,1+100 */
		/* IE9 SVG, needs conditional override of 'filter' to 'none' */
		background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkNWQ1ZDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
		background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(213,213,213,0.7) 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(213,213,213,0.7))); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(213,213,213,0.7) 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(213,213,213,0.7) 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(213,213,213,0.7) 100%); /* IE10+ */
		background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(213,213,213,0.7) 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d5d5d5',GradientType=1 ); /* IE6-8 */
	}
	
	.has-sidebar .column-right.horizontal-gradient:after {
		display: block;
	}
		
	.column-right.horizontal-gradient:after {
		display: none;
	}
}


@media all and (max-width: 1160px){
	.column-right {
		width: 50%;
	}
	
	.column-left {
		width: 50%;
	}
}

@media all and (max-width: 960px) {
	
	.page-template-template-two-column .content-area {
		width: 100%;
	}
	
	.page-template-template-two-column.has-sidebar .content-area {
		width: calc(100% - 330px);
	}
	
	.page-slider-wrap.boxed-slider {
		padding-left: 10px;
		padding-right: 10px;
		margin-left: 0px;
	}
	
	.column-right {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.page-template-template-two-column .page-slider-wrap.full-width-slider,
	.page-slider-wrap.full-width-slider {
		margin-left: 10px;
		margin-right: 10px;
	}
	
	.page-template-template-news-builder .page-slider-wrap.boxed-slider {
		margin-right: 10px;
	}
	
	.column-left-content {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.column-left, 
	.column-right {
		width: 100%;
		display: none;
	}
	
	.column-left.selected, 
	.column-right.selected {
		display: block;
	}
		
	.column-left .head-stripe,
	.column-right .head-stripe {
		display: none;
	}
	
	.mobile-two-column {
		display: block;
	}
	
	.column-left-content .head-stripe,
	.column-right-content .head-stripe {
		display: none;
	}	
	
	.page-template-template-two-column .page-slider-wrap.boxed-slider {
		margin-left: 0px;
	}
}

@media all and (max-width: 640px){		
	.page-template-template-two-column.has-sidebar .content-area  {
		width: 100%;
	}
	.column-right.horizontal-gradient:before,
	.column-right.horizontal-gradient:after {
		display: none;
	}
	
	.page-slider-wrap.boxed-slider {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}	
	
	.page-template-template-news-builder .page-slider-wrap.boxed-slider {
		margin-right: 0;
	}
}


/**
 * - Resize Flags
 */
 
#max-width-960 {
	display: none;
}
 
#max-width-640 {
	display: none;
}
 
@media all and (max-width: 960px) {
	#max-width-960 {
		display: inline;
	}
}

@media all and (max-width: 640px) {
	#max-width-640 {
		display: inline;
	}
}


/**
 * - Avantgardia Slider
 */
 
#avantgardia-slider {
	position: relative;
	height: 500px;
}

.ag-slides-wrap {
    height: 100%;
    position: relative;
    width: 100%;
	font-family: "Open Sans Condensed";
	font-weight: bold;	
    line-height: 1;
}

.ag-slides-wrap .ag-slide,
.ag-slides-wrap .owl-item {
    background-color: #ffffff;
    float: left;
    height: 100%;
    width: 100%;
    color: #ffffff;
    text-shadow: 1px 0 1px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.ag-slides-wrap .owl-wrapper-outer, 
.ag-slides-wrap .owl-wrapper {
    height: 100% !important;
}

.ag-slide-image {
    background-position: center center;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.ag-slider-post-title  {
	font-size: 48px;
	line-height: 55px;
	font-weight: bold;
}

.sfs-layout-type-1 .ag-slide-meta {
    font-size: 25px;
    left: 0;
    padding: 20px 100px;
    position: absolute;
    top: 0;
    width: 100%;
}

.sfs-layout-type-1 .ag-slider-post-cat {
    margin-bottom: 15px;
}

.sfs-layout-type-1 .ag-slider-post-title {
    background-color: rgba(0, 0, 0, 0.25);
    bottom: 0;
    left: 0;
    overflow: auto;
    padding: 50px 100px;
    position: absolute;
    width: 100%;
}

.ag-slider-navigation,
.ag-slides-wrap .owl-controls  {
    height: 30px;
    left: 0;
    padding-right: 100px;
    padding-top: 20px;
    position: absolute;
    text-align: right;
    top: 0;
    width: 100%;
}

.ag-slider-dot,
.owl-page {
    background-color: #000000;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: inline-block;
    height: 10px;
    margin: 0 4px;
    width: 10px;
	opacity: 0.2;
}

.ag-slider-dot:hover,
.ag-slider-dot.active,
.owl-page:hover,
.owl-page.active {
	background-color: #ffffff;
	opacity: 0.8;
}

.ag-slider-arrows {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ag-arrow {
    cursor: pointer;
    height: 100%;
    position: absolute;
    width: 40px;
    z-index: 10;
    background-position: 0 50%;
    background-color: transparent;
    background-repeat: no-repeat;
	display: none;
}

.ag-slides-wrap:hover .ag-arrow {
	display: block;
}

.ag-arrow:hover {
	background-position: 100% 50%;
}

.ag-slider-arrow-left {
    background-image: url("../img/angle-left.png");
    left: 20px;
    top: 0;
}

.ag-slider-arrow-right {
    background-image: url("../img/angle-right.png");
    right: 20px;
    top: 0;
}

.ag-slide-meta i {
    margin-right: 10px;
}

.sfs-layout-type-1,	
.sfs-layout-type-2,	
.sfs-layout-type-3 {	
    font-family: "Open Sans Condensed";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.sfs-layout-type-1 a,
.sfs-layout-type-2 a,
.sfs-layout-type-3 a{
	color: #ffffff;
}

.sfs-layout-type-2 .ag-slide-meta {
    font-size: 25px;
    font-weight: normal;
    left: 0;
    padding-top: 30px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
}

.sfs-layout-type-2 .ag-slider-post-title {
    left: 0;
    padding: 20px 40px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sfs-layout-type-3 .owl-controls .owl-pagination{
    display: none !important;
}

.sfs-layout-type-3 .ag-slider-content {
    height: 100%;
    left: 0;
    padding: 35px 80px 35px 80px;
    position: absolute;
    top: 0;
    width: 65%;
}

.sfs-layout-type-3 .ag-slide:before {
	content: "";
	position: absolute;
	max-width: 300px;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0.9+0,0.45+50,0+100 */
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0.7)), color-stop(50%,rgba(0,0,0,0.45)), color-stop(100%,rgba(0,0,0,0))); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0) 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0) 100%); /* IE10 preview */
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */

}

.sfs-layout-type-3 .ag-slide-cat {
    font-size: 25px;
    margin-bottom: 30px;
}

.sfs-layout-type-3 .ag-slide-meta {
    bottom: 0;
    font-size: 25px;
    padding-bottom: 50px;
    position: absolute;
}

.sfs-layout-type-3 .ag-slide-meta > div {
    float: left;
    margin-right: 35px;
}

.post-and-slide-title-list-wrap a {
	color: #ffffff;
}

.post-and-slide-title-list-wrap {
    height: 100%;
	padding: 35px 80px 10px 90px;
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
	font-family: "Open Sans Condensed";
	font-weight: normal;
	font-size: 15px;
	line-height: 18px;
	color: #ffffff;
    z-index: 100;
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0+0,0.45+50,0.9+100 */
	background: -moz-linear-gradient(left,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%); /* FF3.6-15 */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0)), color-stop(50%,rgba(0,0,0,0.45)), color-stop(100%,rgba(0,0,0,0.7))); /* Chrome4-9,Safari4-5 */
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0.7) 100%); /* Chrome10-25,Safari5.1-6 */
	background: -o-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0.7) 100%); /* Opera 11.10-11.50 */
	background: -ms-linear-gradient(left,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0.7) 100%); /* IE10 preview */
	background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.45) 50%,rgba(0,0,0,0.7) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#e6000000',GradientType=1 ); /* IE6-9 */
}

.post-and-slide-title-list {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.post-and-slide-cat {
    font-weight: lighter;
    text-transform: uppercase;
	margin-bottom: 5px;
}

.post-and-slide-title-link {
    font-weight: bold;
    height: 38px;
    overflow: hidden;
}

.post-and-slide-title {
    height: 90px;
    width: 100%;
	position: relative;
	cursor: pointer;
}

.post-and-slide-title-separator {
    background-color: #ffffff;
    bottom: 15px;
    height: 1px;
    left: 0;
    position: absolute;
    width: 75px;
}

.sfs-layout-type-3 .ag-slides-wrap .owl-controls {
	padding: 0;
	height: 0;
}

@media all and (max-width: 960px) {
	.has-sidebar .post-and-slide-title-list-wrap {
		display: none;
	}
		
	.has-sidebar .sfs-layout-type-3 .ag-slider-content {
		width: 100%;
	}
}

@media all and (max-width: 768px){
    .ag-slider-post-title {
        font-size: 32px;
    }
}

@media all and (max-width: 640px) {
	.ag-slider-navigation,
	#avantgardia-slider .ag-slides-wrap .owl-controls {
		bottom: 20px;
		top: auto;
		left: 0;
		padding-right: 0;
		text-align: center;
		width: 100%;
	}
	
	.ag-slider-post-title {
		padding-left: 10px;
		padding-right: 10px;
		text-align: center;
	}
	
	.sfs-layout-type-1 .ag-slider-post-title {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.sfs-layout-type-1 .ag-slide-meta {
		text-align: center;
	}
	
	.sfs-layout-type-3 .ag-slider-content {
		width: 100%;
	}
	
	.post-and-slide-title-list-wrap {
		display: none;
	}
	
	.sfs-layout-type-3 .ag-slide-cat {
		text-align: center;
	}	
		
	.sfs-layout-type-3 .ag-slide-meta {
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
			
	.sfs-layout-type-3 .ag-slide-meta > div {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	
	.ag-slider-post-title  {
		font-size: 26px;
		line-height: 45px;
		font-weight: bold;
	}
	
	.sfs-layout-type-3 .ag-slider-content {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.sfs-layout-type-3 .ag-slide-cat {
		font-size: 22px;
		margin-bottom: 27px;
	}
	
	.sfs-layout-type-3 .ag-slide-meta {
		font-size: 22px;
	}
}

 
 /**
 * - Core Owl Carousel CSS
 * v1.3.3
 */

 
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
	z-index: 10;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-ms-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}


/* 
 * - Owl Carousel CSS3 Transitions 
 * v1.3.2
 */

.owl-origin {
	-webkit-perspective: 1200px;
	-webkit-perspective-origin-x : 50%;
	-webkit-perspective-origin-y : 50%;
	-moz-perspective : 1200px;
	-moz-perspective-origin-x : 50%;
	-moz-perspective-origin-y : 50%;
	perspective : 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {opacity: 1}
}
@-moz-keyframes empty {
  0% {opacity: 1}
}
@keyframes empty {
  0% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@keyframes fadeIn {
  0% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-moz-keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@keyframes fadeOut {
  0% { opacity:1; }
  100% { opacity:0; }
}
@-webkit-keyframes backSlideOut {
  25% { opacity: .5; -webkit-transform: translateZ(-500px); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(-200%); }
}
@-moz-keyframes backSlideOut {
  25% { opacity: .5; -moz-transform: translateZ(-500px); }
  75% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; -moz-transform: translateZ(-500px) translateX(-200%); }
}
@keyframes backSlideOut {
  25% { opacity: .5; transform: translateZ(-500px); }
  75% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
  100% { opacity: .5; transform: translateZ(-500px) translateX(-200%); }
}
@-webkit-keyframes backSlideIn {
  0%, 25% { opacity: .5; -webkit-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -webkit-transform: translateZ(-500px); }
  100% { opacity: 1; -webkit-transform: translateZ(0) translateX(0); }
}
@-moz-keyframes backSlideIn {
  0%, 25% { opacity: .5; -moz-transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; -moz-transform: translateZ(-500px); }
  100% { opacity: 1; -moz-transform: translateZ(0) translateX(0); }
}
@keyframes backSlideIn {
  0%, 25% { opacity: .5; transform: translateZ(-500px) translateX(200%); }
  75% { opacity: .5; transform: translateZ(-500px); }
  100% { opacity: 1; transform: translateZ(0) translateX(0); }
}
@-webkit-keyframes scaleToFade {
  to { opacity: 0; -webkit-transform: scale(.8); }
}
@-moz-keyframes scaleToFade {
  to { opacity: 0; -moz-transform: scale(.8); }
}
@keyframes scaleToFade {
  to { opacity: 0; transform: scale(.8); }
}
@-webkit-keyframes goDown {
  from { -webkit-transform: translateY(-100%); }
}
@-moz-keyframes goDown {
  from { -moz-transform: translateY(-100%); }
}
@keyframes goDown {
  from { transform: translateY(-100%); }
}

@-webkit-keyframes scaleUpFrom {
  from { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpFrom {
  from { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpFrom {
  from { opacity: 0; transform: scale(1.5); }
}

@-webkit-keyframes scaleUpTo {
  to { opacity: 0; -webkit-transform: scale(1.5); }
}
@-moz-keyframes scaleUpTo {
  to { opacity: 0; -moz-transform: scale(1.5); }
}
@keyframes scaleUpTo {
  to { opacity: 0; transform: scale(1.5); }
}
/*****************************************************************/

/**
 * - Head News Ticker
 */
 
.ag-head-ticker {
    border-bottom: 5px solid #dedede;
    height: 35px;
    margin-bottom: 10px;
    margin-top: 15px;
	overflow: hidden;
	margin-left: 10px;
	margin-right: 10px;
	position: relative;
}

.page .ag-head-ticker,
.single-post .ag-head-ticker {
	margin-left: 0px;
	margin-right: 0px;
}

.page-template-template-news-builder .ag-head-ticker,
.page-template-template-two-column .ag-head-ticker,
.page-template-template-grid .ag-head-ticker {
	margin-left: 10px;
	margin-right: 10px;
}

@media all and (max-width: 1210px){
	.page .ag-head-ticker, .single-post .ag-head-ticker {
		margin-left: 10px;
		margin-right: 10px;
	}
}

.ag-head-ticker .owl-item {
    background-color: #ffffff;
}

.ag-head-ticker-cat {
    background-color: #ffffff;
    color: #ff1d26;
    float: left;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
    padding: 0 30px 0 0;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
    z-index: 15;
}

.ag-head-ticker .owl-controls {
    background-color: #ffffff;
	padding-left: 30px;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 2px;
}

.ag-head-ticker .owl-buttons {
	width: 50px;
	height: 24px;
}

.ag-head-ticker .owl-prev,
.ag-head-ticker .owl-next {
	border: 1px solid #dedede;
	color: #bfbfbf;
	width: 24px;
	height: 24px;
	text-align: center;
	line-height: 23px;
	vertical-align: middle;
	cursor: pointer;
	font-size: 18px;
}

.ag-head-ticker .owl-prev:hover,
.ag-head-ticker .owl-next:hover {
	background-color: #dedede;
	color: #ffffff;
}

.ag-head-ticker .owl-prev {
	float: left;
	padding-right: 1px;
}

.ag-head-ticker .owl-next {
	float: right;
	padding-left: 1px;
}

.ag-head-ticker-content {
    line-height: 30px;
	font-family: "Open Sans Condensed";
	color: #b5b5b5;
	font-weight: normal;
	font-size: 14px;
	display: inline;
}

.ag-head-ticker-sliding-panel {
    position: absolute;
    top: 0;
}

.ag-head-ticker .item {
    float: left;
	overflow: hidden;
}

.ag-head-ticker .item-separator {
    color: #000000;
    float: right;
    font-size: 6px;
    margin: 0 15px;
    text-align: center;
}

.ag-head-ticker .ag-head-ticker-sliding-panel .item:last-child .item-separator {
	display: none;
}

.ag-head-ticker-title {
	color: #333333;
	font-weight: bold;
}

a:hover .ag-head-ticker-title {
	color: #ff1d26;
}

.spacer-dash {
	margin: 0 5px;
}

@media all and (max-width: 640px) {
	.ag-head-ticker {
		height: auto;
	}
	
	.ag-head-ticker .owl-wrapper-outer {
		float: left;
	}
	
	.ag-head-ticker .owl-item {
		text-align: center;
	}
}


/**
 * - News Blocks
 */ 

.page-template-template-news-builder.has-sidebar .site-content {
	max-width: 1340px;
}

.ag-news-block {
    margin-bottom: 0px;
    padding: 10px 20px 10px 0px;
	position: relative;
}

.ag-news-header {
    border-bottom: 3px solid #dedede;
    height: 40px;
    margin-bottom: 35px;
    position: relative;
    width: 100%;
    font-family: "Roboto Condensed";
	font-size: 14px;
    font-weight: bold;
	color: #979797;
    line-height: 43px;
	vertical-align: middle;
}

.ag-news-block-title {
    color: #ff1d26;
    float: left;
    height: 100%;
    letter-spacing: 2px;
    margin-right: 20px;
    text-transform: uppercase;
	font-size: 18px;
	font-family: "Open Sans";
	font-weight: 800;
}

.ag-news-navigation {
    float: right;
    height: 100%;
    margin-left: 40px;
    text-align: left;
    width: 52px;
}

.ag-news-navigation > div {
    border: 1px solid #dedede;
    cursor: pointer;
	color: #cacaca;
    display: block;
    float: left;
    font-size: 18px;
    height: 24px;
    line-height: 22px;
    margin: 8px 1px;
    text-align: center;
    width: 24px;
}

.ag-news-nav-next {
    padding-left: 1px;
}

.ag-news-navigation > div:hover,
.ag-news-navigation .active,
.ag-news-navigation .disabled {
	background-color: #dedede;
	color: #ffffff;
}
.ag-news-filters a {
    color: #979797;
}

.ag-news-filter-link.active {
    color: #000000;
    font-weight: bold;
}

.ag-news-filter-link {
    margin-right: 20px;
}

.ag-news-filters {
    font-weight: normal;
    text-align: right;
	font-size: 13px;
}

.ag-news-filters > div {
    display: inline-block;
}

.ag-news-menu-button {
    cursor: pointer;
    text-align: center;
	text-transform: uppercase;
}

.ag-news-menu-button > span {
    margin-right: 5px;
}

.ag-news-menu-button:hover {
    color: #ff1d26;
}

.ag-news-menu {
	float: right;
    position: relative;
    z-index: 10;
}

.ag-news-menu-links {
    background-color: rgba(246, 246, 246, 0.9);
    border: 1px solid #ebebeb;
    display: none;
    padding: 10px 0;
    position: absolute;
    right: 0;
    top: 37px;
    z-index: 11;
}

.open .ag-news-menu-links,
.ag-news-menu:hover .ag-news-menu-links {
	display: block;
}

.ag-news-menu-links .ag-news-filter-link {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 8px 20px;
    text-align: left;
}

.ag-news-menu-links::before {
    background: transparent url("../img/dropdown_arrow.png") no-repeat scroll 100% 100%;
    content: "";
    height: 20px;
    position: absolute;
    right: -1px;
    top: -19px;
    width: 100%;
}

.ag-news-list {
    width: calc(100% + 40px);
}

.ag-row-wrap {
    float: left;
    width: 100%;
}

.news-post-block h2 {
	font-family: "Roboto Sans Condensed";
	font-weight: bold;
}

.news-list-excerpt {
    color: #515151;
    font-size: 14px;
    line-height: 21px;
	margin-bottom: 9px;
}

.news-list-media {
    position: relative;
}

.post-block-date {
    color: #ffffff;
    font-family: "Roboto Condensed";
    font-weight: normal;
    left: 9px;
    position: absolute;
    text-shadow: 1px 1px 1px #000000;
    top: 6px;
	font-size: 10px;
}

.post-block-format {
    bottom: 0;
    font-size: 16px;
    left: 0;
    line-height: 1;
    position: absolute;
    text-shadow: 1px 1px 1px #000000;
}

.post-block-format i,
.post-list-format i {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 0 3px 0 0;
    padding: 3px 6px 3px 5px;
	font-size: 22px;
	margin: 0px;
}

.post-block-format i.fa-quote-left {
    font-size: 18px;
    padding: 4px 8px 4px 7px;
}

.news-list-media > a,
.news-list-media > a:hover {
    color: #ffffff !important;
}

.news-list-media img {
    display: block;
	width: 100%;
	height: auto;
}

.news-post-block.block-half {
    float: left;
    margin-right: 40px;
    padding: 0;
    width: calc(50% - 40px);
}
.news-post-block.block-half .news-list-content-wrapper {
	padding: 10px;
}

.news-post-block.block-half h2 {
    font-size: 25px;
	margin-bottom: 10px;
	line-height: 28px;
}

.block-half .news-list-media {
	margin-bottom: 5px;
}

.news-post-block.block-small {
    float: left;
    padding: 0;
    width: calc(50% - 40px);
	margin-right: 40px;
}

.news-post-block.block-small .news-list-content-wrapper {
    padding: 2px 5px 0 0;
}

.news-post-block.block-small h2 {
	font-size: 16px;
	line-height: 20px;
	height: 40px;
	margin-bottom: 4px;
	overflow: hidden;
}

.news-post-block.block-small h2 a {
    display: block;
    overflow: hidden;
}

.block-small .post-block-date {
    left: 5px;
    top: 4px;
}

.news-post-block.block-small .news-list-media {
    float: left;
    margin: 0 15px 0 0;
    width: 80px;
}

.news-post-block.block-third h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}

.block-third .news-list-header {
    margin-bottom: 10px;
}

.block-third.title.text .news-list-header {
    margin-bottom: 0px;
}

.ag-news-loading-cover {
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
}

.loading .ag-news-loading-cover {
	display: block;
}

.news-post-block.block-third .news-list-media {
    margin-bottom: 5px;
}

.news-post-block.block-third {
    float: left;
    margin-right: 40px;
    padding: 0;
    width: calc(33.3333% - 40px);
}

.news-post-block.block-third .news-list-content-wrapper {
	padding: 10px;
}

.news-post-block.block-full .news-list-media {
    float: left;
    margin: 0 20px 0 0;
    width: 300px;
}

.news-post-block.block-full {
	width: calc(100% - 40px);
}

.news-post-block.block-full .news-list-content-wrapper{
	padding: 10px 10px 8px;
}

.news-post-block.block-full h2 {
	font-size: 25px;
	line-height: 28px;
	padding-bottom: 8px;
}

.news-post-block-related .section-title {
    background-color: transparent;
    margin-bottom: 10px;
	padding: 0px;
	color: #b5b5b5;
}

.news-post-block-related .news-post-block.block-small h2 {
    height: auto;
    margin-bottom: 10px;
}

.news-post-block-related .news-post-block.block-small h2 a {
	height: auto;
}

.news-post-block-related .post-list {
    box-shadow: 0 0 0 transparent;
}

.ag-news-template-8 .news-post-block.block-full,
.ag-news-template-9 .news-post-block.block-full {	
	box-shadow: 0 0 0 transparent;
	margin-bottom: 20px;
}

.ag-news-template-8, 
.ag-news-template-9 {
    border: 5px solid #dedede;
    margin-left: 0;
    margin-right: 20px;
    padding-bottom: 0;
    padding-left: 20px;
    padding-top: 20px;
	margin-bottom: 30px;
	margin-top: 20px;
}


@media all and (min-width: 960px) {
	
	.post-box-shadow .news-post-block.block-third.text .entry-title a,
	.post-box-shadow .news-post-block.block-half.text .entry-title a {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		word-wrap: break-word;
	}
	
	.post-box-shadow .news-post-block.block-half.text .entry-title a {
		height: 30px;
	}
	
	.post-box-shadow .news-post-block.block-third.text .entry-title a {
		height: 25px;
	}
	
	.post-box-shadow .news-post-block.block-half .entry-title a {
		height: 58px;
		display: block;
		overflow: hidden;
	}
	
	.post-box-shadow .news-post-block.block-third .entry-title a {
		height: 45px;
		display: block;
		overflow: hidden;
	}
	
	.post-box-shadow .news-post-block.block-third .news-list-excerpt,
	.post-box-shadow .news-post-block.block-half .news-list-excerpt {
		height: 84px;
		overflow: hidden;
	}
	
	.post-box-shadow .news-post-block.block-half .news-list-excerpt {
		margin-bottom: 15px;
	}
}

@media all and (max-width: 960px) {
	.ag-news-list {
		width: 100%;
	}
	
	.ag-news-template-8, 
	.ag-news-template-9 {
		margin-left: 10px;
		margin-right: 10px;
	}

	.news-post-block.block-full {
		width: 100%;
	}
	
	.news-post-block.block-full .news-list-media {
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.news-post-block.block-half {
		width: 100%;
		margin-right: 0px;
	}
	.news-post-block.block-third {
		width: 100%;
		margin-right: 0px;
	}
	
	.news-post-block.block-small {
		width: 100%;
		margin-right: 0px;
	}
	
	.ag-news-block {
		padding-left: 10px;
		padding-right: 10px;
	}
		
	.ag-news-navigation {
		margin-left: 10px;
	}
}

@media all and (max-width: 640px) {
	.ag-news-template-8, .ag-news-template-9 {
		border: 0px solid #dedede;
		margin-left: 0;
		margin-right: 0;
	}
	
	.news-post-block.block-full {
		padding: 0;
	}
	
	.news-post-block.block-half {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.news-post-block.block-third  {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.news-post-block.block-small {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.ag-news-block {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/**
 * - Animations 
 */
.animated {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}


@-ms-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  -ms-animation-name: zoomIn;
  animation-name: zoomIn;
}


@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}


@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes opacity {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

@-moz-keyframes opacity {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes opacity {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

.fade-in-animation {
	-webkit-animation-name: opacity;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	
	-moz-animation-name: opacity;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: infinite;
	
	animation-name: opacity;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

/**
 * - Ads
 */
.ag-ad-wrap {
    float: none;
    margin: 0 auto;
}

.ag-ad-wrap img {
    height: auto;
    max-width: 100%;
}

.ad-size-300x250 {
	width: 300px;
	height: 250px;
}

.ad-size-300x600 {
	width: 300px;
	height: 600px;
}

.ad-size-336x280 {
	width: 336px;
	height: 280px;
}

.ad-size-728x90 {
	width: 728px;
	height: 90px;
}

.ad-size-320x100 {
	width: 320px;
	height: 100px;
}

.ad-size-320x50 {
	width: 320px;
	height: 50px;
}

.column-right .ag-ad-wrap,
.column-left .ag-ad-wrap {
	margin-bottom: 25px;
}

.grid-block.ag-ad-wrap {
	margin: 5px;
}

.two-column-adw {
    margin-left: -20px;
    margin-right: -20px;
}

.ag-news-a-wrap {
    margin: 0 -10px 0 -30px;
}

.ag-news-a-wrap .ag-ad-wrap {
    margin-bottom: 40px;
    margin-top: 40px;
}

@media all and (max-width: 1100px) {
	.ag-news-a-wrap .ag-ad-wrap {
		width: 468px;
		height: auto;
		min-height: 60px;
	}
}

@media all and (max-width: 960px) {
	.ag-news-a-wrap {
		margin: 0 -10px;
	}
}

@media all and (max-width: 860px) {
	.ag-news-a-wrap .ag-ad-wrap {
		width: 320px;
		height: auto;
		min-height: 50px;
	}
}

@media all and (max-width: 640px) {
	.ag-news-a-wrap .ag-ad-wrap {
		width: 468px;
		height: auto;
		min-height: 60px;
	}
}

@media all and (max-width: 468px) {
	.ag-news-a-wrap .ag-ad-wrap {
		width: 320px;
		height: auto;
		min-height: 50px;
	}
}
	
	
/**
 * - Social Icons 
 */

.sfsh  {
	display: inline-block;
    font-family: FontAwesome;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size: inherit;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    text-rendering: auto;
}

.sfsb:before {
	content: "\f1e0";
}

.sffb:before {
	content: "\f09a";
}

.sftw:before {
	content: "\f099";
}

.sfgp:before {
	content: "\f0d5";
}

.sfln:before {
	content: "\f0e1";
}

.sfpt:before {
	content: "\f231";
}

.sfpt-alt:before {
	content: "\f0d2";
}

.sftm:before {
	content: "\f173";
}

.sfvm:before {
	content: "\f27d";
}

.sfyt:before {
	content: "\f16a";
}


/**
 * - Single post shares 
 */

.ag-ss-icon {
    float: left;
    width: 30px;
    height: 30px;
    line-height: 31px;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    background-color: #dedede;
    cursor: pointer;
	position: relative;
}

.ag-ss-icon:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.15);
	z-index: 10;
	pointer-events: none;
}

@media all and (max-width: 480px) {
	.single-post-share-icons {
		width: 100%;
		margin: 20px 0;
		text-align: center;
	}
	
	.ag-ss-icon {
		float: none;
		margin: 0 5px;
		display: inline-block;
	}
	
	.ag-ss-icon:after {
		display: none;
	}
}

.ag-ss-icon:hover:after {
	display: none;
}

.ag-ss-icon.sffb-share {
	background-color: #304f92;
}

.ag-ss-icon.sftw-share {
	background-color: #5cb9f6;
}

.ag-ss-icon.sfgp-share {
	background-color: #dc554b;
}

.ag-ss-icon.sfln-share {
	background-color: #1f81b1;
}

.ag-ss-icon.sfpt-share {
	background-color: #c53137;
}


.addtoany_list a,
.widget .addtoany_list a {
    padding: 0 !important;
}

.a2a_svg { border-radius: 0 !important; }

/**
 * WooCommerce
 */
 

/**
 * Basic WooCommerce support.
 */
 
.woocommerce .entry-content a {
    color: #b5b5b5;
}

.entry-content .woocommerce mark {
    background-color: transparent;
}

.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background-color: #b5b5b5;
    color: #fff;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover
.woocommerce #respond input#submit.alt.wc-forward, 
.woocommerce a.button.alt.wc-forward, 
.woocommerce button.button.alt.wc-forward, 
.woocommerce input.button.alt.wc-forward {
    background-color: #44a56b;
    color: #fff !important;
}

.woocommerce span.onsale {
    background-color: #ff1d26;
}

.woocommerce .quantity .qty {
    border: 1px solid #b5b5b5;
    padding: 0.45em 2px;
}

.woocommerce.single .site-main {
    padding: 0 10px;
}

.widget.woocommerce {
    color: #515151;
    font-family: "Montserrat";
    font-size: 13px;
    font-weight: normal;
    line-height: 20px;
}

.widget.woocommerce li a {
    color: #515151;
    font-family: "Open Sans Condensed";
    font-size: 14px;
    font-weight: normal;
}

.woocommerce .star-rating span::before {
	color: #ffcb00;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
	background-color: #b5b5b5;
}


.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
    background-color: #55c78d;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
    height: 0.2em;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
	top: -0.4em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
    font-size: 1.3em;
}

.widget.widget_product_search .search-field {
    padding: 6px 5px;
    width: 100%;
}

.widget.widget_product_search input[type=submit],
.widget.widget_product_search .screen-reader-text {
    display: none;
}

.widget.woocommerce .tagcloud {
    overflow: hidden;
    left: -9px;
    position: relative;
}

.widget_layered_nav ul li {
    text-transform: uppercase;
    margin-bottom: 5px;
}

.widget.woocommerce li .count {
    float: right;
}

.widget.woocommerce.widget_shopping_cart .total {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    margin-top: 10px;
    overflow: hidden;
    padding: 10px 0;
}

.woocommerce-breadcrumb {
	color: #b5b5b5;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.woocommerce-result-count,
.woocommerce-ordering {	
	color: #b5b5b5;
}

.woocommerce .product mark {
	background-color: transparent;
}

/**
 * Shop page
 */
 
.woocommerce .products {	
    font-family: "Roboto Condensed";
}

.woocommerce .products > .product * {
	text-transform: uppercase;
}
 
.woocommerce-page .site-content .page-title {
    text-align: left;
    margin: 20px 0;
    font-weight: bold;
}

.woocommerce ul.products li.product .onsale,
.woocommerce .product .onsale {
    border-left: 0.6em solid transparent;
    border-radius: 0;
    border-bottom: 1em solid #ff1d26;
    height: 0;
    line-height: 0em;
    margin: 0;
    min-height: 0;
    min-width: 4em;
    padding: 0 0.5em 0 0.5em;
    text-align: right;
    background-color: transparent;
    border-top: 1em solid #ff1d26;
    top: 0.5em;
	right: 0;
	left: auto;
	background-color: transparent;
	text-transform: uppercase;
	display: block;
    height: 0px;
}

.woocommerce.single-product .product .onsale {
	right: 52%;
}

@media all and (max-width: 760px) {	
	.woocommerce.single-product .product .onsale {
		right: 0px;
	}
}

.woocommerce ul.products > li.product {
    padding-bottom: 145px;
}

.woocommerce ul.products > li.product .add_to_cart_button {
    position: absolute;
    bottom: 0px;
	left: 0px;
    width: 100%;
    height: 30px;
    text-align: center;
    line-height: 30px;
    padding: 0px;
    vertical-align: middle;
    font-weight: bold;
    color: #ffffff;
    background-color: #b5b5b5;
	margin: 0;
    border-radius: 0;
	letter-spacing: 0px;
}

.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
.woocommerce ul.products > li.product .add_to_cart_button:hover {
	background-color: #44a56b;
	color: #ffffff !important;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    bottom: 92px;
    color: #333333;
    display: block;
    height: 30px;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
    line-height: 1;
    padding: 0 5px;
}

.woocommerce ul.products li.product .star-rating {
    bottom: 155px;
    left: 50%;
    position: absolute;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.woocommerce ul.products li.product .price {
    bottom: 40px;
    color: #333333;
    height: 35px;
    left: 0;
    line-height: 1.2;
    position: absolute;
    width: 100%;
    padding: 0 5px;
}

.woocommerce ul.products li.product a img {
    margin-bottom: 0px;
}

.woocommerce .star-rating span::before {
	color: #ffcb00;
}

.woocommerce ul.products li.product .star-rating span::before {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.woocommerce .star-rating span::before

.woocommerce ul.products li.product h3 .count {
    background-color: transparent;
}

.woocommerce #respond input#submit.loading::after, 
.woocommerce a.button.loading::after, 
.woocommerce button.button.loading::after, 
.woocommerce input.button.loading::after {
	top: 0.1em;
}

.woocommerce ul.products {
    padding-top: 45px;
}

.woocommerce .woocommerce-ordering, 
.woocommerce .woocommerce-result-count {
    margin: 0;
}

.woocommerce .woocommerce-result-count {
    color: #b5b5b5;
    font-family: "Roboto Condensed";
    font-size: 19px;
    font-weight: bold;
    margin: 0;
    line-height: 32px;
    vertical-align: middle;
    height: 25px;
}

.woocommerce .woocommerce-ordering select {
    margin-bottom: -1px;
    padding: 5px;
    font-family: "Roboto Condensed";
    font-weight: normal;
    font-size: 14px;
}

.woocommerce a.added_to_cart {
	display: none;
}

.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
	line-height: 1.2;
	color: #515151;
}

/**
 * Shop Single Product
 */
 
.woocommerce div.product .product_title {
    margin-bottom: 15px;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
	color: #333333;
}

.woocommerce div.product .woocommerce-product-rating {
    margin-bottom: 20px;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: #b5b5b5;
    font-weight: bold;
    font-family: "Roboto Condensed";
    font-size: 1.5em;
}

.product_meta > span {
    display: block;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
	padding: 0.4em 4.3em;
	border-radius: 0px;
	text-transform: uppercase;
}

.woocommerce #respond input#submit.alt.disabled, .woocommerce #respond input#submit.alt.disabled:hover, .woocommerce #respond input#submit.alt:disabled, .woocommerce #respond input#submit.alt:disabled:hover, .woocommerce #respond input#submit.alt[disabled]:disabled, .woocommerce #respond input#submit.alt[disabled]:disabled:hover, .woocommerce a.button.alt.disabled, .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt[disabled]:disabled, .woocommerce a.button.alt[disabled]:disabled:hover, .woocommerce button.button.alt.disabled, .woocommerce button.button.alt.disabled:hover, .woocommerce button.button.alt:disabled, .woocommerce button.button.alt:disabled:hover, .woocommerce button.button.alt[disabled]:disabled, .woocommerce button.button.alt[disabled]:disabled:hover, .woocommerce input.button.alt.disabled, .woocommerce input.button.alt.disabled:hover, .woocommerce input.button.alt:disabled, .woocommerce input.button.alt:disabled:hover, .woocommerce input.button.alt[disabled]:disabled, .woocommerce input.button.alt[disabled]:disabled:hover {
	background-color: #b5b5b5;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit[disabled]:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button[disabled]:disabled, .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button[disabled]:disabled, .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button[disabled]:disabled {
	padding: 0.4em 4.3em;
	background-color: #b5b5b5;
}


#content .tabs.wc-tabs {
    padding-left: 5px;
}


.woocommerce-tabs h2 {
    font-size: 20px;
    font-weight: bold;
    font-family: "Roboto Condensed";
}

.woocommerce-tabs.wc-tabs-wrapper {
    float: left;
    width: 100%;
	margin-bottom: 45px;
}

.woocommerce .up-sells,
.woocommerce .related {
    clear: left;
}

.woocommerce .up-sells > h2,
.woocommerce .related > h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Roboto Condensed";
	margin-bottom: 0px;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
	background-color: #b5b5b5;
	color: #ffffff;
	cursor: pointer;
    font-family: "Open Sans Condensed";
    letter-spacing: 2px;
	
	-webkit-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.woocommerce #respond input#submit.wc-forward, 
.woocommerce a.button.wc-forward, 
.woocommerce button.button.wc-forward, 
.woocommerce input.button.wc-forward,
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
	background-color: #44a56b;
	color: #ffffff !important;
}

.woocommerce-message:before,	
.woocommerce-info:before {	
	color: #55c78d;
}

.woocommerce-message, 
.woocommerce-info {
    border-top-color: #55c78d;
    color: #333333;
    font-weight: bold;
}

.woocommerce-message a, 
.woocommerce-info a {
	text-transform: none;
	font-weight: normal;
	color: #ff1d26;
}

.variations td {
    float: left;
    height: 32px;
    width: 100%;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.variations tr {
    margin-bottom: 20px;
    display: block;
    float: left;
    overflow: hidden;
    width: 100%;
}

.variations .label {
    float: left;
    text-transform: uppercase;
}

.woocommerce p.stars a:before {
	color: #ffcb00;
}

.page.woocommerce-page .head-stripe {
    display: none;
}

.woocommerce table.shop_table th {
    padding: 11px 12px;
    background-color: #dedede;
    color: #333333;
}

.woocommerce table.shop_table td {
    padding: 14px 12px;
}

.woocommerce a.remove {
    background-color: #dedede;
    color: #ffffff !important;
    font-family: arial;
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    height: 30px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    width: 30px;
    display: block;
	
	-webkit-transition: all .2s ease;
	-ms-transition: all .2s ease;
	transition: all .2s ease;
}


.woocommerce table.shop_table {
    font-family: "Roboto Condensed";
    text-transform: none;
    font-style: italic;
	border: none;
    background-color: #fcfcfc;
}


.woocommerce .shop_table .quantity .qty {
    border: none;
}

.woocommerce table.shop_table {
    font-family: "Roboto Condensed";
    font-style: italic;
	border-radius: 0px;
	margin-bottom: 40px;
}

.woocommerce table.shop_table td > * {
    color: #515151;
}

.woocommerce table.shop_table td {
	border-bottom: none;
}

.woocommerce table.shop_table .product-remove {
    width: 60px;
}

#add_payment_method table.cart .product-thumbnail, 
.woocommerce-cart table.cart .product-thumbnail, 
.woocommerce-checkout table.cart .product-thumbnail {
    width: 70px;
}

.woocommerce table.shop_table td .button {
    color: #ffffff !important;
}

.woocommerce #content table.cart td.actions .input-text, 
.woocommerce table.cart td.actions .input-text, 
.woocommerce-page #content table.cart td.actions .input-text, 
.woocommerce-page table.cart td.actions .input-text {
    width: 100px;
    padding: 8px 5px;
}

.woocommerce #content table.cart td.actions {
    background-color: #dedede;
}

.woocommerce #content table.cart td.actions .coupon .button {
    padding-left: 15px;
    padding-right: 15px;
}

.woocommerce .cart-collaterals .cross-sells h2 {
	font-family: "Roboto Condensed";
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.woocommerce .cart-collaterals .cross-sells ul.products {
    padding-top: 0px;
    border-top: none;
}

.woocommerce .cart-collaterals .cart_totals h2 {
	background-color: #dedede;
	margin: 0px;
	padding: 25px 10px;
	text-align: center;
	font-family: "Roboto Condensed";
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.woocommerce .cart_totals table.shop_table {
    margin-bottom: 0px;
}

.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
    padding: 0px;
}

.woocommerce .cart-collaterals table.shop_table th {
    background-color: transparent;
    color: #515151;
    text-transform: uppercase;
    text-align: left;
    padding-left: 30px;
    border-bottom: none;
}


.entry-content > .woocommerce {
    margin-left: -10px;
    margin-right: -10px;
}

@media all and (max-width: 1210px) {
		
	.entry-content > .woocommerce {
		margin-left: 0;
		margin-right: 0;
	}
	
	.woocommerce-checkout .woocommerce-breadcrumb,
	.woocommerce-cart .woocommerce-breadcrumb {
		margin-left: 10px;
	}
}

.woocommerce .login .form-row > * {
    float: right;
    margin-left: 20px;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register {
	padding-left: 0px;
	padding-right: 0px;
	border: none;
}

.woocommerce .login .lost_password {
    text-align: right;
	color: #ff1d26;
}

.woocommerce #customer_details h3 {
    padding: 15px 5px;
    background-color: #dedede;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    width: 100%;
}

.woocommerce table.woocommerce-checkout-review-order-table th {
    background-color: transparent;
    border-bottom: none;
    color: #333;
    text-transform: uppercase;
}


.woocommerce table.woocommerce-checkout-review-order-table {
    padding: 0;
    margin: 0 30px;
    width: calc(100% - 60px);
}

#order_review_heading {
    background-color: #dedede;
    color: #333;
    font-size: 20px;
    font-family: "Roboto Condensed";
    font-weight: bold;
    padding: 15px 5px;
    margin-bottom: 0px;
    margin-top: 40px;
}

#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
    background: #dedede none repeat scroll 0 0;
    border-radius: 0px;
}

#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
	background-color: #b5b5b5;
}

#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #b5b5b5;
}

.woocommerce.single .product_meta {
    font-family: "Roboto Condensed";
}

@media all and (max-width: 768px) {
	#add_payment_method table.cart .product-thumbnail, 
	.woocommerce-cart table.cart .product-thumbnail, 
	.woocommerce-checkout table.cart .product-thumbnail  {
		display: block !important;
		height: auto;
		width: 100%;
		text-align: center !important;
	}
	
	#add_payment_method table.cart .product-thumbnail:before, 
	.woocommerce-cart table.cart .product-thumbnail:before, 
	.woocommerce-checkout table.cart .product-thumbnail:before {
		display: none;
	}
	
	#add_payment_method table.cart .product-thumbnail .attachment-shop_thumbnail, 
	.woocommerce-cart table.cart .product-thumbnail .attachment-shop_thumbnail, 
	.woocommerce-checkout table.cart .product-thumbnail .attachment-shop_thumbnail {
		width: auto;
		height: auto;
		
	}
	.woocommerce table.shop_table .product-remove {
		width: 100%;
		text-align: center;
	}
	
	.woocommerce table.shop_table .product-remove a.remove {
		float: none;
		margin: 0 auto;
	}
	
	.woocommerce table.woocommerce-checkout-review-order-table {
		margin: 0;
		width: 100%;
	}
}



.woocommerce-thankyou-order-received {
    color: #333333;
    font-weight: bold;
    margin-left: 15px;
    font-style: italic;
}

.woocommerce-thankyou-order-details.order_details {
    font-family: "Roboto Condensed";
    border-top: 1px solid #dedede;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
}

.woocommerce .order_details li {
    border-right: medium none;
    width: 21%;
    font-size: 0.9em;
}

.woocommerce .order_details li strong {
    margin-top: 10px;
    font-size: 0.95em;
}


.woocommerce-account .entry-content .woocommerce h2,
.woocommerce-order-received .entry-content .woocommerce h2 {
    font-size: 20px;
    font-weight: bold;
    font-family: "Roboto Condensed";
    background-color: #dedede;
    padding: 10px 5px;
    color: #333333;
    margin-bottom: 0px;
}


.woocommerce-account .entry-content .woocommerce table.shop_table.order_details th,
.woocommerce-account .entry-content .woocommerce table.shop_table.customer_details th,
.woocommerce-order-received .entry-content .woocommerce table.shop_table.order_details th,
.woocommerce-order-received .entry-content .woocommerce table.shop_table.customer_details th {
    background-color: transparent;
    border-bottom: none;
    color: #515151;
    text-transform: uppercase;
}


.woocommerce-account .entry-content .woocommerce .addresses h3,
.woocommerce-order-received .entry-content .woocommerce .addresses h3 {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 10px;
}


.woocommerce-order-received .entry-content .woocommerce > h3 {
    font-weight: bold;
    font-size: 16px;
    font-family: "Roboto Condensed";
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
}

.woocommerce-MyAccount-navigation ul li {
    background-color: #dedede;
    color: #ffffff;
    list-style: outside none none;
	
	-webkit-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation ul li:hover,
.woocommerce-MyAccount-navigation ul li.is-active {
	background-color: #55c78d;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li a:visited,
.woocommerce-MyAccount-navigation ul li a {
    color: #ffffff !important;
	display: block;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0 0 20px;
    padding: 8px 10px;
    text-transform: uppercase;
}

.widget_rating_filter span.star-rating {
    margin-right: 15px;
}

.widget_shopping_cart .mini_cart_item {
    padding-left: 40px !important;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove {
    width: 20px;
    height: 20px;
    line-height: 18px;
    font-size: 20px;
    top: 10px;
}


.widget_shopping_cart .buttons .button {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    padding: 0.4em 4.3em;
    font-size: 1.3em;
}

.widget_shopping_cart .mini_cart_item > a {
    text-transform: uppercase;
}

.product_list_widget ul.cart_list li dl, 
.product_list_widget ul.product_list_widget li dl,
.widget_shopping_cart ul.cart_list li dl, 
.widget_shopping_cart ul.product_list_widget li dl {
	border-left: none !important;
}

.variation-color {
    margin-bottom: 2px !important;
}

.widget_product_categories ul li {
    font-family: "Open Sans Condensed";
    font-size: 14px;
}

.widget_product_categories > ul > li > a {
    text-transform: uppercase;
}

.widget_product_categories li span.count {
    float: right;
}

.widget_product_categories li ul {
    padding-left: 10px;
}

.widget_product_categories li > a {
    margin-bottom: 5px;
    display: inline-block;
}

.widget .product_list_widget li > a {
    text-transform: uppercase;
}

.cart-tab.left:hover a.cart-parent,
.cart-tab.right:hover a.cart-parent {
    background-color: #44a56b;
}

.cart-tab.right a.cart-parent {
    background-color: #dedede;
    color: #333333 !important;
    font-family: "Roboto Condensed";
    font-size: 1.5em;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    text-transform: uppercase;
    width: 7em;
    text-align: right;
    padding-right: 0.5em;
    left: -7em;
}

.cart-tab.left a.cart-parent {
	background-color: #44a56b;
    color: #333333 !important;
    font-family: "Roboto Condensed";
    font-size: 1.5em;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    text-transform: uppercase;
    width: 7em;
    text-align: left;
    padding-left: 0.5em;
    right: -7em;
}

.cart-tab a.cart-parent span.contents {
    color: #333333;
    font-size: 1em;
}

.cart-tab.right:hover a.cart-parent::before {
	border-right-color: #44a56b;
}

.cart-tab.right a.cart-parent::before {
    border-bottom: 1.7em solid transparent;
    border-right: 1em solid #dedede;
    border-top: 1.7em solid transparent;
    content: "\f07a";
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    width: 1px;
    font-family: fontawesome;
    line-height: 0;
    text-indent: 1.4em;
    bottom: 0px;
    margin-right: -1px;
}


.cart-tab.left:hover a.cart-parent::before {
    border-left-color: #44a56b;
}

.cart-tab.left a.cart-parent::before {
    border-bottom: 1.7em solid transparent;
    border-left: 1em solid #dedede;
    border-top: 1.7em solid transparent;
    content: "\f07a";
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    width: 1px;
    font-family: fontawesome;
    line-height: 0;
    text-indent: -2.2em;
    bottom: 0px;
    margin-left: -1px;
}

.cart-tab.light a.cart-parent::after {	
    background-color: #fefefe;
}

.cart-tab .widget {
    background-color: #fefefe;
}

.cart-tab.light a.cart-parent::after {
    background-color: transparent;
    color: #ffffff;
    content: "\f111";
    display: block;
    font-family: fontawesome;
    height: auto;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6em;
}

.cart-tab .buttons .button {
    padding-left: 0px !important;
    padding-right: 0px !important;
    text-align: center;
}
.cart-tab {
    top: 170px;
}

.cart-tab .widget_shopping_cart {
    min-height: 100px;
}

.cart-tab.light a.cart-parent, 
.cart-tab.light .widget {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
}

.woocommerce-cart-tab-shop-only .cart-tab {
	display: none;
}

.woocommerce-page.woocommerce-cart-tab-shop-only .cart-tab,
.woocommerce.woocommerce-cart-tab-shop-only .cart-tab {
    display: block;
}

@media all and (max-width: 768px) {
	.cart-tab.right {
		right: -29em;
	}
	
	.cart-tab.left {
		left: -29em;
	}
}

.widget .wc-layered-nav-rating {
    text-align: right;
}

.widget .wc-layered-nav-rating > a > span {
    float: left !important;
}

.woocommerce nav.woocommerce-pagination ul, 
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a, 
.woocommerce nav.woocommerce-pagination ul li span {	
    padding: 0.3em;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, 
.woocommerce nav.woocommerce-pagination ul li a:hover, 
.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: transparent !important;
    color: #ff1d26;
    padding: 0.3em;
}


.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: transparent !important;
    color: #ff1d26;
    border: 1px solid #ff1d26 !important;
    padding: 0.3em;
}

.woocommerce .woocommerce-pagination ul.page-numbers li, 
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
    margin: 0 5px;
}

.woocommerce.single .price del {
    margin-right: 5px;
}

.currentTextHolder {
    font-family: "Roboto Condensed";
}

.ppt {
    font-family: "Roboto Condensed";
}

.woocommerce .sidebar ul.product_list_widget img {
    width: 60px ;
    margin-bottom: 5px;
}

.widget ins {
    text-decoration: none;
}

@media all and (max-width: 480px) {
	.woocommerce-ordering {
		float: left;
		display: block;
		width: 100%;
		padding-top: 30px;
	}
}

.header-content-wrap.site-branding-fixed .site-branding {
    background-color: #ffffff;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content-wrap.site-branding-fixed .site-logo-wrapper {
    margin-bottm: 60px;
}
