/*
Theme Name: TVCO
Author: KMSTUDIO
Description: Tema base
Version: 2.0
*/

html { font-size: 18px; }
body {
    position: relative;
	background-color: #1a1a1a;
	color: #fff;
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-weight: 300;
	padding: 0;
	margin: 0;
}

h1 {
    font-size: 1.7rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #4abf13;
    margin: 4rem 0 3rem 0;
    padding: 0;
    text-align: center;
}
h2 {
    font-size: 1.7rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #4abf13;
    margin: 4rem 0 3rem 0;
    padding: 0;
    text-align: center;
}
body.faith-style h1,
body.faith-style h2 {
    color: #bb8510;
}

a {
	color: #4abf13;
	transition: color 300ms,
				background-color 300ms,
                border 300ms;
    text-decoration: none;
}
a:hover {
	color: #fff;
    text-decoration: none;
}
a,
a:hover,
a:link,
a:visited,
a:active {
	outline: none;
}
body.faith-style a {
	color: #bb8510;
}
body.faith-style a:hover {
	color: #fff;
}

b,strong { font-weight: 600; }
p { margin: 0 0 1.5rem 0; line-height: 1.5; }

.button {
	color: #fff;
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	border: 1px solid #4abf13;
	border-radius: 0.2rem;
	background-color: #4abf13;
	transition: background-color 300ms,
                color 300ms;
	display: inline-block;
}
.button a {
	display: block;
	padding: 0.3rem 1rem;
	text-decoration: none;
    color: #fff;
}
.button a:hover {
	color: #4abf13;
}
.button:hover {
	background-color: transparent;
}
body.faith-style .button {
	color: #fff;
	border: 1px solid #bb8510;
	background-color: #bb8510;
}
body.faith-style .button a {
	color: #fff;
}
body.faith-style .button a:hover {
	color: #bb8510;
}
body.faith-style .button:hover {
	background-color: transparent;
}
button.button {
    position: relative;
	display: block;
	padding: 0.3rem 1rem;
	text-decoration: none;
    color: #fff;
}
.button-submit::after {
	content: '';
	display: block;
	position: absolute;
	left: 0; right: 0; top: 0; bottom: 0;
	margin: auto;
	width: 1em;
	height: 1em;
	color: #fff;
	border: 3px solid;
	border-radius: 50%;
    border-bottom-color: transparent;
	border-left-color: transparent;
    animation: spin linear .4s infinite;
	transition: opacity .5s;
	opacity: 0;
}
.button-submit.loading::after {
    opacity: 1;
}
.button-submit.loading {
    background-color: #4abf13;
    color: #4abf13;
}
body.faith-style .button-submit.loading {
    background-color: #bb8510;
    color: #bb8510;
}

.overlay-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	opacity: 0;
	transition: opacity 800ms;
    pointer-events: none;
    
}
.overlay-bg.active {
	opacity: 1;
    pointer-events: all;
}


/*--- FINESTRA RICERCA */
#fullscreen-search {
	display: block;
	position: fixed;
	z-index: 999;
	left: 50%;
	top: 8rem;
	transform: translateX(-50%);
	opacity: 0;
	transition: all 250ms;
    background-color: #1a1a1a;
	width: 600px;
    visibility: hidden;
    padding: 0 0 1rem 0;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.25); 
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.25);
}
#fullscreen-search.expanded {
	opacity: 1;
    visibility: visible;
}
#fullscreen-search .top-bar {
    background-color: #252525;
    padding: 0.1rem 0.6rem 0.3rem;
    margin-bottom: 1rem;
}
#fullscreen-search .close-search {
	cursor: pointer;
	transition: background-color 400ms,
				color 400ms;
	color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}
#fullscreen-search .close-search:hover {
	color: #4abf13;
}
body.faith-style #fullscreen-search .close-search:hover {
	color: #bb8510;
}
#fullscreen-search h2 {
	font-weight: 600;
	font-size: 1.4rem;
	text-transform: uppercase;
	color: #fff;
	text-align: left;
	margin: 0 0 1rem 0;
	padding: 0;
	line-height: 1;
}
#fullscreen-search form {
	display: block;
	width: 100%;
	margin: 1rem auto 0;
	position: relative;
	padding: 0;
}
#fullscreen-search form input {
	width: 100%;
	border: none;
	padding: 0.1rem 0.5rem 0.4rem;
    transition: box-shadow 300ms;
}
#fullscreen-search form input:focus {
	box-shadow: 0 0 0 0.25rem #4abf13;
	outline: none;
}
body.faith-style #fullscreen-search form input:focus {
	box-shadow: 0 0 0 0.25rem #bb8510;
}


/*--- STILI GENERALI */
.toast {
	border: none;
    box-shadow: 0;
    width: auto;
    font-weight: 500;
}
.toast.add-favourite {
	background-color: #006f00;
}
.toast.remove-favourite {
	background-color: #90060F;
}
.toast a:hover {
	text-decoration: underline;
}
.toast.add-favourite a {
	color: #FFF505;
}
.toast.remove-favourite a {
	color: #FFF505;
}
#wide-slider {
    position: relative;
    height: 80vh;
    animation-duration: 1000ms;
    animation-iteration-count: 1;
    animation-name: wide_slider;
}
body.home #wide-slider {
    height: 80vh;
}
#wide-slider .swiper-slide {
    background-color: #000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#wide-slider .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 14%);
}
#wide-slider .swiper-slide section.meta {
    position: absolute;
    bottom: 6rem;
    z-index: 2;
    pointer-events: none;
}
#wide-slider .swiper-slide section.meta.enable-events {
    pointer-events: all;
}
#wide-slider .swiper-slide section.meta h2 {
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: left;
}
#wide-slider .swiper-slide section.meta h3 {
    font-size: 1.6rem;
    font-weight: 300;
    color: #4abf13;
    margin: 0;
    padding: 0;
    text-align: left;
}
body.faith-style #wide-slider .swiper-slide section.meta h3 {
    color: #bb8510;
}
#wide-slider .swiper-slide section.meta h3 span {
    text-transform: uppercase;
}
#wide-slider .swiper-slide section.meta ul {
    margin: 1rem 0 0 0;
    padding: 0;
    list-style-type: none;
}
#wide-slider .swiper-slide section.meta ul li {
	color: #fff;
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	border: 1px solid #4abf13;
	border-radius: 0.2rem;
	background-color: #4abf13;
	transition: background-color 300ms,
                color 300ms;
	display: inline-block;
    margin: 0 0.5rem 0 0;
    padding: 0;
    list-style-type: none;
}
body.faith-style #wide-slider .swiper-slide section.meta ul li {
	color: #fff;
	border: 1px solid #bb8510;
	background-color: #bb8510;
}
#wide-slider .swiper-slide section.meta ul li:last-of-type {
    margin: 0;
}
#wide-slider .swiper-slide section.meta ul li a {
	display: block;
	padding: 0.3rem 1rem;
	text-decoration: none;
    color: #fff;
}
#wide-slider .swiper-slide section.meta ul li a:hover {
	color: #4abf13;
}
#wide-slider .swiper-slide section.meta ul li:hover {
	background-color: transparent;
}
body.faith-style #wide-slider .swiper-slide section.meta ul li a:hover {
	color: #bb8510;
}
body.faith-style #wide-slider .swiper-slide section.meta ul li:hover {
	background-color: transparent;
}
#wide-slider .swiper-button-next::after,
#wide-slider .swiper-button-prev::after {
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 1.5rem;
	text-transform: uppercase !important;
	letter-spacing: 0;
	line-height: 1;
}
#wide-slider .swiper-button-prev::after,
#wide-slider .swiper-rtl .swiper-button-next::after {
	content: 'back';
}
#wide-slider .swiper-button-next,
#wide-slider .swiper-button-prev {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	width: auto;
	height: auto;
	margin: 0;
	color: #4abf13;
    transition: color 300ms;
}
#wide-slider .swiper-button-next:hover,
#wide-slider .swiper-button-prev:hover {
	color: #fff;
}
body.faith-style #wide-slider .swiper-button-next,
body.faith-style #wide-slider .swiper-button-prev {
    color: #bb8510;
}
body.faith-style #wide-slider .swiper-button-next:hover,
body.faith-style #wide-slider .swiper-button-prev:hover {
	color: #fff;
}
#wide-slider .swiper-button-prev,
#wide-slider .swiper-rtl .swiper-button-next {
	left: 2rem;
	right: auto;
}
#wide-slider .swiper-button-next,
#wide-slider .swiper-rtl .swiper-button-prev {
	right: 2rem;
	left: auto;
}
#wide-slider .arrow-down {
    position: absolute;
    z-index: 1;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
}
#wide-slider .arrow-down:hover {
    cursor: pointer;
}
#wide-slider .arrow-down svg {
    width: 80px;
}
#wide-slider .arrow-down svg path {
    stroke: #4abf13;
    transition: stroke 300ms;
}
#wide-slider .arrow-down:hover svg path {
    stroke: #fff;
}
body.faith-style #wide-slider .arrow-down svg path {
    stroke: #bb8510;
}
body.faith-style #wide-slider .arrow-down:hover svg path {
    stroke: #fff;
}
.cover-box-alignment {
	margin-bottom: 1rem;
}
.cover-box-alignment .row div[class^="col-"] {
	padding: 1rem;
}
.cover-box-alignment figure {
	overflow: hidden;
	margin: 0;
	position: relative;
	background: #000;
	width: 100%;
	height: 100%;
}
.cover-box-alignment figure img {
	opacity: 1;
	transition: 300ms ease-in-out;
	width: 100%;
	height: 100%;
}
.cover-box-alignment figure:hover img {
	opacity: 0.2;
}
.cover-box-alignment figure .info {
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scale(0.7);
    left: 0;
	right: 0;
	margin: auto;
	width: 90%;
	text-align: center;
	transition: all 300ms ease-in-out;
}
.cover-box-alignment figure:hover .info {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}
.cover-box-alignment figure .info .title {
	font-weight: 500;
	font-size: 1.7rem;
	color: #4abf13;
	text-transform: uppercase;
	word-wrap: break-word;
	line-height: 1;
	margin: 0 0 0.3rem 0;
}
body.faith-style .cover-box-alignment figure .info .title,
.cover-box-alignment figure .info.faith-style .title {
	color: #bb8510;
}
.cover-box-alignment figure .info .directed {
	font-weight: 500;
	font-size: 0.7rem;
	color: #fff;
	margin: 0 0 0.6rem 0;
}
.cover-box-alignment figure .info .directed span {
	text-transform: uppercase;
}
.cover-box-alignment figure .info ul.tags {
	margin: 0 auto 2rem auto;
	padding: 0;
	list-style-type: none;
	text-align: center;
	width: 100%;
}
.cover-box-alignment figure .info ul.tags li {
	margin: 0 0.2rem 0 0;
	padding: 0;
	list-style-type: none;
	color: #4abf13;
	font-weight: 500;
	font-size: 0.7rem;
	text-transform: uppercase;
}
body.faith-style .cover-box-alignment figure .info ul.tags li,
.cover-box-alignment figure .info.faith-style ul.tags li {
	color: #bb8510;
}
.cover-box-alignment figure .info ul.tags li:last-child {
	margin: 0;
}
.cover-box-alignment figure .info ul.tags li::before {
	content: "#";
}
.cover-box-alignment figure .info .status {
	color: #fff;
    font-weight: 500;
	font-size: 0.7rem;
	text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.cover-box-alignment figure .info.faith-style .button {
	color: #fff;
	border: 1px solid #bb8510;
	background-color: #bb8510;
}
.cover-box-alignment figure .info.faith-style .button a {
	color: #fff;
}
.cover-box-alignment figure .info.faith-style .button a:hover {
	color: #bb8510;
}
.cover-box-alignment figure .info.faith-style .button:hover {
	background-color: transparent;
}
.mini-container {
    width: 55rem;
    margin: 0 auto;
}
nav[aria-label="paging"] {
	margin: 2rem 0;
}
nav[aria-label="paging"] .pagination {
    margin: 0;
}
nav[aria-label="paging"] .pagination .page-item .page-link {
	border: 1px solid #333;
	color: #4abf13;
	background-color: transparent;
}
body.faith-style nav[aria-label="paging"] .pagination .page-item .page-link {
	border: 1px solid #bb8510;
	color: #bb8510;
}
nav[aria-label="paging"] .pagination .page-item.disabled .page-link {
	color: #ccc;
}
nav[aria-label="paging"] .pagination .page-item.current .page-link {
    background-color: #333;
}
nav[aria-label="paging"] .pagination .page-item:first-child .page-link {
	border-top-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
}
nav[aria-label="paging"] .pagination .page-item:last-child .page-link {
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
}
nav[aria-label="paging"] .pagination .page-item .page-link:focus,
nav[aria-label="paging"] .pagination .page-item .page-link:hover {
	background-color: #333;
	color: #fff;
	box-shadow: none;
}
body.faith-style nav[aria-label="paging"] .pagination .page-item .page-link:focus,
body.faith-style nav[aria-label="paging"] .pagination .page-item .page-link:hover {
	background-color: #bb8510;
	color: #fff;
	box-shadow: none;
}
.content-wordpress {
    
}
.content-wordpress img {
    max-width: 100%;
    height: auto;
}
.social-sharing {
	cursor: pointer;
	position: relative;
	display: inline-block;
}
.social-sharing > a.share-btn {
	color: #000;
	font-size: 1em;
	text-decoration: none;
}
.social-sharing > a.share-btn:hover {
	text-decoration: none;
	color: #000;
}
.social-sharing[data-position='left'] .share-box-socials {
	right: 15px;
}
.social-sharing[data-position='left'] .share-box-socials::after {
	border-bottom: 5px solid transparent;
	border-right: 5px solid #000;
	border-top: 5px solid #000;
	border-left: 5px solid transparent;
	right: 0;
}
.social-sharing[data-position='right'] .share-box-socials {
	left: 15px;
}
.social-sharing[data-position='right'] .share-box-socials::after {
	border-bottom: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #000;
	border-left: 5px solid #000;
	left: 0;
}
.social-sharing .share-box-socials {
	position: absolute;
	cursor: auto;
	bottom: 45px;
	white-space: nowrap;
	background-color: #000;
	box-sizing: border-box;
	opacity: 0;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-transform-origin: right bottom;
			transform-origin: right bottom;
	transition: transform 400ms,
                opacity 400ms !important;
	z-index: 1;
}
.social-sharing > .share-btn:hover {
	color: #4abf13;
}
.social-sharing .share-box-socials::after {
	position: absolute;
	bottom: -10px;
	display: block;
	content: '';
	width: 0;
	height: 0;
}
.social-sharing .share-box-socials a {
	display: inline-block;
	padding: 5px;
	color: #fff !important;
	text-align: center;
	transition: background-color 400ms !important;
	box-sizing: border-box;
}
.social-sharing .share-box-socials a:hover {
	background-color: #4abf13;
}
.social-sharing .share-box-socials .share-btn:first-child::after {
    content: "";
    position: absolute;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    border-left: 5px solid #000;
    left: 0;
    bottom: -10px;
    z-index: 1;
    -webkit-transition: border 400ms !important;
    -o-transition: border 400ms !important;
    transition: border 400ms !important;
}
.social-sharing .share-box-socials .share-btn:first-child:hover::after {
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #4abf13;
    border-left: 5px solid #4abf13;
}
body.faith-style .social-sharing .share-box-socials .share-btn:first-child:hover::after {
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #bb8510;
    border-left: 5px solid #bb8510;
}
body.faith-style .social-sharing .share-box-socials a:hover {
	background-color: #bb8510;
}
.social-sharing.opened .share-box-socials {
	opacity: 1;
	transition: transform .3s cubic-bezier(0,.74,.16,1.13), opacity .6s;
	-webkit-transform: scale(1);
			transform: scale(1);
}
.social-sharing.opened > a.share-btn {
    color: #4abf13 !important;
}
body.faith-style .social-sharing.opened > a.share-btn {
    color: #bb8510 !important;
}
.all-genres {
	margin-bottom: 2rem;
}
.all-genres p {
	text-transform: uppercase;
	color: #4abf13;
	border-bottom: 2px solid #4abf13;
	font-size: 1rem;
	font-weight: 500;
	padding: 0;
	margin: 0 0 0.3rem 0;
}
.all-genres ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.all-genres ul li {
	margin: 0 0.5rem 0 0;
	padding: 0;
	list-style-type: none;
	font-weight: 300;
	font-size: 0.9rem;
	color: #4abf13;
	text-transform: uppercase;
}
.all-genres ul li::before {
	content: "#";
	color: #fff;
}
.all-genres ul li.selected::before {
	color: #4abf13;
}
.all-genres ul li a {
	text-decoration: none;
	color: #fff;
}
.all-genres ul li a:hover {
	text-decoration: none;
	color: #4abf13;
}
.all-genres ul li.selected a {
	color: #4abf13;
}
.next-section {
    padding-top: 3rem;
}
.next-section > h1:first-child,
.next-section > h2:first-child {
    margin-top: 0;
}
.form-control {
    border: none;
    border-radius: 0;
    transition: box-shadow 300ms;
}
.form-control:focus {
	border-color: transparent;
	box-shadow: 0 0 0 .25rem #4abf13;
}
.form-control .invalid-feedback {
	color: #ff6575;
}


/*--- NAVIGATION RESPONSIVE */
nav.nav-responsive {
	position: fixed;
    transform: translateY(-100%);
	top: 0;
	background-color: #1a1a1a;
	z-index: 9999;
	padding: 2rem 0;
	opacity: 0;
	overflow-y: auto;
	transition: all 300ms;
    width: 100%;
}
nav.nav-responsive.expanded {
    transform: translateY(0%);
    transition: all 600ms;
    opacity: 1;
}
nav.nav-responsive .logo img {
    width: 500px;
}
body.faith-style nav.nav-responsive .logo img {
    width: 340px;
}
nav.nav-responsive .navigation .block {
    margin-right: 1.5rem;
}
nav.nav-responsive .navigation .block.last {
    margin-right: 1rem;
}
nav.nav-responsive .navigation .block:last-child {
    margin-right: 0;
    padding-left: 1rem;
    border-left: 1px solid #4abf13;
}
body.faith-style nav.nav-responsive .navigation .block:last-child {
	border-left: 1px solid #bb8510;
}
nav.nav-responsive .navigation .block .text {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
nav.nav-responsive .navigation .block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
nav.nav-responsive .navigation .block ul li {
    margin: 0 0.5rem 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 1.4rem;
}
nav.nav-responsive .navigation .block ul li:last-child {
    margin: 0;
}
nav.nav-responsive .navigation .block ul li [class^="icon-"]::before,
nav.nav-responsive .navigation .block ul li [class*=" icon-"]::before {
	width: auto;
	margin: auto;
}
nav.nav-responsive hr {
    background-color: #333;
    opacity: 1;
    margin: 2rem 0;
}
nav.nav-responsive .menu-navigation {
    
}
nav.nav-responsive .menu-navigation .single-col-nav {
    padding: 0 1rem;
}
nav.nav-responsive .menu-navigation .single-col-nav .main-link {
    color: #4abf13;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}
nav.nav-responsive .menu-navigation .single-col-nav .main-link.no-margin {
    margin: 0;
}
nav.nav-responsive .menu-navigation .single-col-nav .main-link a {
    color: #4abf13;
}
nav.nav-responsive .menu-navigation .single-col-nav .main-link a:hover {
    color: #fff;
}
nav.nav-responsive .menu-navigation .single-col-nav .main-link.logo {
    margin-top: 1rem;
}
nav.nav-responsive .menu-navigation .single-col-nav .main-link.logo img {
    width: 100px;
}
body.faith-style nav.nav-responsive .menu-navigation .single-col-nav .main-link.logo img {
	width: 120px;
}
nav.nav-responsive .menu-navigation .single-col-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li {
    color: #4abf13;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li:last-child {
    margin: 0;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li a {
    color: #4abf13;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li a:hover {
    color: #fff;
}
body.faith-style nav.nav-responsive .menu-navigation .single-col-nav ul li a {
    color: #bb8510;
}
body.faith-style nav.nav-responsive .menu-navigation .single-col-nav ul li a:hover {
    color: #fff;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 1rem;
    color: #fff;
    text-transform: none;
    font-weight: 300;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li ul li a {
    color: #fff;
}
nav.nav-responsive .menu-navigation .single-col-nav ul li ul li a:hover {
    color: #4abf13;
}
body.faith-style nav.nav-responsive .menu-navigation .single-col-nav ul li ul li a {
    color: #fff;
}
body.faith-style nav.nav-responsive .menu-navigation .single-col-nav ul li ul li a:hover {
    color: #bb8510;
}
nav.nav-responsive .menu-navigation .right {
    padding: 0 1rem;
    border-left: 1px solid #333;
}
nav.nav-responsive .menu-navigation .right .single-item {
    margin-bottom: 0.7rem;
}
nav.nav-responsive .menu-navigation .right .single-item span {
	display: block;
	margin-right: 0.8rem;
	font-size: 0.9rem;
	width: 1.5rem;
	text-align: center;
    line-height: 1.2;
}
nav.nav-responsive .menu-navigation .right .single-item [class^="icon-"]::before,
nav.nav-responsive .menu-navigation .right .single-item [class*=" icon-"]::before {
    width: auto;
	margin: auto;
}
nav.nav-responsive .menu-navigation .right .single-item .text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}


/*--- HEADER */
header.primary {
    position: relative;
}
header.primary:not(.absolute) {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
header.primary.absolute > .container {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
header.primary .logo img {
    width: 500px;
}
body.faith-style header.primary .logo img {
    width: 340px;
}
header.primary .logo-responsive {
    display: none;
}
header.primary .right {
    
}
header.primary .right .block {
    margin-right: 1.5rem;
}
header.primary .right .block.last {
    margin-right: 1rem;
}
header.primary .right .block:last-child {
    margin-right: 0;
    padding-left: 1rem;
    border-left: 1px solid #4abf13;
}
body.faith-style header.primary .right .block:last-child {
	border-left: 1px solid #bb8510;
}
header.primary .right .block .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
header.primary .right .block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
header.primary .right .block ul li {
    margin: 0 0.5rem 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 1.4rem;
}
header.primary .right .block ul li:last-child {
    margin: 0;
}
header.primary .right .block ul li [class^="icon-"]::before,
header.primary .right .block ul li [class*=" icon-"]::before {
	width: auto;
	margin: auto;
}

main {
    min-height: 500px;
}


/*--- CATALOGUE (SINGLE) */
.catalogue-single {
    padding-top: 3rem;
}
.catalogue-single .last {
    padding-left: 3rem;
}
.catalogue-single .block {
    margin-bottom: 2rem;
    padding: 0 3rem;
}
.catalogue-single .block.full-block {
    margin-bottom: 1.5rem;
    padding: 0;
}
.catalogue-single .block .title {
	font-size: 1.3rem;
	font-weight: 300;
	text-transform: uppercase;
	color: #4abf13;
	text-align: left;
    margin: 0 0 0.2rem 0;
    padding: 0;
}
body.faith-style .catalogue-single .block .title {
	color: #bb8510;
}
.catalogue-single .block.full-block .title {
    margin: 0 0 0.3rem 0;
}
.catalogue-single .block.full-block .image {
    
}
.catalogue-single .block.full-block .image img {
    width: 200px;
}
.catalogue-single .block.full-block .image-small img {
    width: 150px;
}
.catalogue-single .block .title.fake-button {
    font-size: 1.1rem;
    color: #1a1a1a;
	font-weight: 500;
	text-transform: uppercase;
	border: 1px solid #4abf13;
	border-radius: 0.2rem;
	background-color: #4abf13;
	transition: background-color 300ms,
                color 300ms;
	display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.1rem 0.6rem 0.2rem;
}
.catalogue-single .block .title.fake-button a {
    color: #fff;
    display: block;
}
body.faith-style .catalogue-single .block .title.fake-button {
    color: #1a1a1a;
	border: 1px solid #bb8510;
	background-color: #bb8510;
}
body.faith-style .catalogue-single .block .title.fake-button a {
    color: #fff;
}
.catalogue-single .block .title.fake-button.permalink:hover {
    background-color: transparent;
}
.catalogue-single .block .title.fake-button a:hover {
    color: #4abf13;
}
.catalogue-single .block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.catalogue-single .block ul li {
    margin: 0 0.6rem 0 0;
    padding: 0;
    list-style-type: none;
}
.catalogue-single .block ul li:last-child {
    margin: 0;
}
.catalogue-single .block ul.hashtags li {
    margin: 0 0.3rem 0 0;
}
.catalogue-single .block ul.hashtags li:last-child {
    margin: 0;
}
.catalogue-single .block ul.hashtags li::before {
    content: "#";
}
.catalogue-single .block ul.icons {
    margin: -0.4rem 0 0 0;
}
/*
.catalogue-single .block ul.icons > li [class^="icon-"]::before,
.catalogue-single .block ul.icons > li [class*=" icon-"]::before {
	width: auto;
	margin: 0;
}
*/
.catalogue-single .block ul.icons li a {
    color: #fff;
    font-size: 1.5rem;
}
.catalogue-single .block ul.icons li a:hover {
    color: #4abf13;
    font-size: 1.5rem;
}
.catalogue-single .block ul.icons li a.mfc-add-favorite.wait span:before,
.catalogue-single .block ul.icons li a.mfc-remove-favorite.wait span:before {
    content: '\e832';
    animation: spin 1s infinite linear;
}
body.faith-style .catalogue-single .block ul.icons li a:hover {
    color: #bb8510;
}
.catalogue-single .block.reviews p {
    margin-bottom: 0;
}
.catalogue-single .festivals {
    margin-top: 2rem;
    padding-right: 0;
}
.catalogue-single .festivals .title {
    position: relative;
    overflow: hidden;
}
.catalogue-single .festivals .title::after {
	content: "";
	position: absolute;
	border: 1px solid #4abf13;
	width: 100%;
	height: 1px;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 1rem;
}
.catalogue-single .festivals .logos {
    
}
.catalogue-single .festivals .logos img {
    margin-right: 1rem;
    height: auto;
}
.catalogue-single .festivals .logos img:last-child {
    margin: 0;
}
.catalogue-single .last figure img {
    width: 100%;
}


/*--- TEAM (ARCHIVIO) */
#team-archive {
	
}
#team-archive .content-wordpress {
    margin-bottom: 5rem;
}
#team-archive .single-person {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
}
#team-archive .single-person:last-child {
	padding-bottom: 0;
	border: none;
}
#team-archive .single-person .image figure {
	margin: 0;
}
#team-archive .single-person .info h2 {
	text-align: left;
	margin: 0;
	text-transform: none;
	font-size: 1.6rem;
	font-weight: 500;
}
#team-archive .single-person .info h3 {
	text-align: left;
	margin: 0 0 1rem 0;
	text-transform: none;
	font-size: 1rem;
	font-weight: 400;
	color: #4abf13;
	font-style: italic;
}
#team-archive .single-person .info .biography {
	text-align: justify;
}
#team-archive .single-person .info .biography p {
	margin-bottom: 0.6rem;
}
#team-archive .single-person .info .social {
	width: 100%;
	border-top: 1px solid #333;
	margin-top: 1rem;
    padding-top: 0.2rem;
}
#team-archive .single-person .info .social.no-border {
	border: none;
	margin: 0;
	padding: 0;
}
#team-archive .single-person .info .social ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#team-archive .single-person .info .social ul li {
	margin: 0 1rem 0 0;
	padding: 0;
	list-style-type: none;
    font-size: 1.3rem;
}
#team-archive .single-person .info .social ul li:last-child {
	margin: 0;
}
#team-archive .single-person .info .social ul li a {
	color: #fff;
	text-decoration: none;
}
#team-archive .single-person .info .social ul li a:hover {
	color: #4abf13;
	text-decoration: none;
}
#team-archive .single-person .info .social ul li a span {
	
}
#team-archive .single-person .info .social ul li a span:before {
	width: auto;
	margin: 0;
}


/*--- SEARCH */
#search-page h3 {
	font-size: 1.1rem;
	font-weight: 300;
	text-transform: uppercase;
	color: #fff;
	margin: 0rem 0 1rem 0;
	padding: 0;
	text-align: left;
}


/*--- CONTACT US */
#contacts-template {
	
}
#contacts-template iframe {
	margin-top: 1rem;
}
#contacts-template .success-form:empty {
	padding: 0;
}
#contacts-template .success-form {
	background-color: #468132;
	color: #fff;
	padding: 10px 30px;
}
#contacts-template .success-form p {
	margin: 0;
}
#contacts-template .content {
	width: 45%;
}
#contacts-template .contacts-form {
	width: 45%;
}


/*--- FOOTER */
footer.primary {
    background-color: #000;
    padding: 2.5rem 0;
    margin-top: 6rem;
}
footer.primary .logo {
    margin-right: 3rem;
}
footer.primary .logo img {
    width: 200px;
}
footer.primary .copyrights {
    
}
footer.primary .copyrights ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
footer.primary .copyrights ul li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-weight: 500;
    font-size: 0.8rem;
    color: #fff;
}
footer.primary .copyrights ul li::after {
    content: "/";
    margin: 0 0.3rem;
}
footer.primary .copyrights ul li:last-child::after {
    content: "";
    margin: 0;
}
footer.primary .copyrights ul li a {
    color: #fff;
}
footer.primary .copyrights ul li a:hover {
    color: #4abf13;
}
footer.primary .right .block {
    margin-right: 1.5rem;
}
footer.primary .right .block.last {
    margin-right: 1rem;
}
footer.primary .right .block:last-child {
    margin-right: 0;
    padding-left: 1rem;
    border-left: 1px solid #333;
}
footer.primary .right .two-icons .block:last-child {
    border-left: none;
    padding-left: 0;
    margin-right: 1rem;
}
footer.primary .right .block .text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4d4d4d;
    text-transform: uppercase;
}
footer.primary .right .block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
footer.primary .right .block ul li {
    margin: 0 0.5rem 0 0;
    padding: 0;
    list-style-type: none;
    font-size: 1.4rem;
}
footer.primary .right .block ul li:last-child {
    margin: 0;
}
footer.primary .right .block ul li [class^="icon-"]::before,
footer.primary .right .block ul li [class*=" icon-"]::before {
	width: auto;
	margin: auto;
}
footer.primary .right .block ul li a {
    color: #333;
}
footer.primary .right .block ul li a:hover {
    color: #4abf13;
}

/*--- Glyphicon Spin (rotate animate) ---*/
.glyphicon-spin {
	-webkit-animation: spin 1000ms infinite linear;
	animation: spin 1000ms infinite linear;
	display: inline-block;
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
/*------------------------*/

@-webkit-keyframes wide_slider {
    0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes wide_slider {
    0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}