/*
Theme Name: Storefront Child
Version: 1.0
Description: Child theme for Storefront.
Author: Woo
Author URI: http://woocommerce.com
Template: storefront
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
main, article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* === General styling === */
@font-face {
	font-family:'ProximaNova-Extrabold';
	src: url('../fonts/ProximaNova-Extrabld.eot');
	src: url('../fonts/ProximaNova-Extrabld.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ProximaNova-Extrabld.woff') format('woff'),
		url('../fonts/ProximaNova-Extrabld.ttf') format('truetype'),
		url('../fonts/ProximaNova-Extrabld.svg#ProximaNova-Extrabld') format('svg');
	font-weight: 800;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-FB04;
}
@font-face {
	font-family:'ProximaNova-Regular';
	src: url('../fonts/ProximaNova-Regular.eot');
	src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ProximaNova-Regular.woff') format('woff'),
		url('../fonts/ProximaNova-Regular.ttf') format('truetype'),
		url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-FB04;
}
@font-face {
	font-family:'ProximaNova-Semibold';
	src: url('../fonts/ProximaNova-Semibold.eot');
	src: url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ProximaNova-Semibold.woff') format('woff'),
		url('../fonts/ProximaNova-Semibold.ttf') format('truetype'),
		url('../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
	font-weight: 600;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-FB04;
}
@font-face {
    font-family: 'ProximaNova-Bold';
    src: url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*, *:before, *:after {
	box-sizing: border-box;
    -moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root {
	-webkit-tap-highlight-color: transparent; /* no more color over a link when tapped */
	-webkit-font-smooth: always; /* no sharp edges, safari only */
    -webkit-font-smoothing: antialiased;
}
html, body {
    overflow-x: hidden;
}
html {
	-ms-overflow-style: scrollbar; /* scrollbar in case of overflow for ie/edge */
	-ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	font: 18px/1 'ProximaNova-Regular', sans-serif;
    letter-spacing: -0.15px;
	color: #202020;
	background: #fff;
}
h1, h2, h3, h4, h5, h6 {
	font-family: sans-serif;
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 25px;
    text-rendering: optimizeLegibility;
}
h1 {
	font-size: 42px;
}
h2 {
	font-size: 34px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 26px;
}
h5 {
	font-size: 22px;
}
h6 {
	font-size: 18px;
}
p {
	font: 16px/1.33 'ProximaNova-Regular', sans-serif;
	margin-bottom: 25px;
}
span {
    display: inline-block;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
    transition: color 0.33s ease;
    -webkit-transition: color 0.33s ease;
    -ms-transition: color 0.33s ease;
}
a:hover, a:focus {
    color: #f25e02 !important;
}
img, iframe {
	max-width: 100%;
	max-height: 100%;
}
b, strong, th, legend {
	font-weight: bolder;
}
i:not(.fa), em, cite, dfn {
	font-style: italic;
}
small {
	font-size: 80%;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
mark {
	padding: 3.5px;
    background-color: #f1f1f1;
}
abbr[title] {
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
}
abbr[data-original-title], abbr[title] {
    cursor: help;
}
ul, ol {
    font-size: 16px;
    line-height: 1.33;
    margin: 0 0 25px 20px;
}
ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
nav ul, nav ol {
    margin: 0;
    list-style: none;
}
del {
    text-decoration: line-through;
}
ins {
    text-decoration: underline;
}
dl {
    line-height: 1.6;
    margin-bottom: 25px;
}
dl dt {
    font-weight: 700;
    margin-bottom: 5px;
}
dd {
	margin-bottom: 0px;
}
kbd {
    font-family: monospace;
    font-size: inherit;
    line-height: inherit;
    background-color: #e6e6e6;
    padding: 2px 4px 0 4px;
}
table {
    line-height: 1.5;
	margin-bottom: 25px;
}
th, td {
	border: 1px solid #eceeef;
	padding: 5px;
}
caption {
	font-size: 15px;
    padding: 10px 0;
    color: #636c72;
    caption-side: bottom;
}
pre {
    font: 14px/1.25 monospace;
    letter-spacing: -0.5px;
	padding: 6px 20px;
	margin-bottom: 25px;
	background-color: #f7f7f7;
    color: #0a0a0a;
}
code {
    font: 16px/1.25 monospace;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}
pre code {
    font: inherit;
    letter-spacing: inherit;
}
code, pre code {
    display: block;
    overflow-x: auto;
    padding: 15px;
    padding-right: 64px;
    background: #f9f9f9;
    border: 1px solid #cacaca;
    color: #0a0a0a;
}
blockquote {
    font-size: 18px;
    line-height: 1.5;
    background-color: #f7f7f7;
    margin: 30px 0;
    padding: 26px 30px;
    border-left-style: solid;
    border-left-width: 4px;
    border-color: #f55035;
}
blockquote footer {
	font-size: 15px;
    color: #636c72;
}
blockquote p:last-child {
	margin-bottom: 0px;
}
legend {
	margin-bottom: 5px;
}
label {
	display: block;
}
input {
    line-height: normal;
}
input[type="submit"], input[type="reset"], button {
    -webkit-appearance: none;
    -moz-appearance: none;
	cursor: pointer;
}
button, input, textarea {
	margin: 0;
	outline: none;
}
button, input, textarea {
	font-family: inherit;
}
textarea {
	min-height: 50px;
	resize: vertical;
}
[hidden] {
	display: none;
}
input[type="submit"]:focus, input[type="reset"]:focus {
    outline: .3125rem auto #3b99fc;
}
@media all and (max-width: 767px) {
	h1 {
		font-size: 34px;
	}
	h2 {
	    font-size: 30px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 22px;
	}
	blockquote {
   	 	padding: 8px 10px;
    }
}
blockquote+h1, blockquote+h2, blockquote+h3, blockquote+h4, ul+h2, ul+h3, ul+h4, ol+h2, ol+h3, ol+h4, p+h2, p+h3, p+h4, table+h2, table+h3, table+h4 {
    margin-top: 2.5em;
}

#ajax-gif {
	display:none;
	position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255,0.8);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
}

#bars {
    height: 30px;
    left: 50%;
    margin: -30px 0 0 -20px;
    position: absolute;
    top: 50%;
    width: 40px;
}

.bar {
   background:#ff6302;
    bottom: 1px;
    height: 3px;
    position: absolute;
    width: 3px;
    animation: sound 0ms -800ms linear infinite alternate;
}

@keyframes sound {
    0% {
       opacity: .35;
        height: 3px;
    }
    100% {
        opacity: 1;
        height: 28px;
    }
}

.bar:nth-child(1)  { left: 1px; animation-duration: 474ms; }
.bar:nth-child(2)  { left: 5px; animation-duration: 433ms; }
.bar:nth-child(3)  { left: 9px; animation-duration: 407ms; }
.bar:nth-child(4)  { left: 13px; animation-duration: 458ms; }
.bar:nth-child(5)  { left: 17px; animation-duration: 400ms; }
.bar:nth-child(6)  { left: 21px; animation-duration: 427ms; }
.bar:nth-child(7)  { left: 25px; animation-duration: 441ms; }
.bar:nth-child(8)  { left: 29px; animation-duration: 419ms; }
.bar:nth-child(9)  { left: 33px; animation-duration: 487ms; }
.bar:nth-child(10) { left: 37px; animation-duration: 442ms; }

#no-display {
	display:none;
}
/* === END General typo === */
/* === WordPress Core === */
.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
        white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}
/* === END OF WORDPRESS CORE */
.background {
	background-size: cover;
	background-position: center center;
}
ul:after, ol:after, nav:after, .row:after, .container:after {
	content: "";
	display: block;
	clear: both;
}
header:before, header:after, footer:before, footer:after, section:before, section:after {
	content: "";
	display: table;
	clear: both;
}
.container {
	max-width: 1230px;
	width: 100%;
	padding: 20px 15px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
html.no-js.no-svg #wpadminbar {
    display: none !important;
}
html.no-js.no-svg {
    margin-top: 0 !important;
}
/*
HEADER
*/
body:not(.white-header) .menu-primary-container li a,
body:not(.white-header) .social_media li a:after,
body:not(.white-header) .login {
    color: #fff;
}
body:not(.white-header) .logo-menu {
    width: 52px;
    height: 59px;
    background: url('../images/home_logo.png') no-repeat center center;
    background-size: contain;
}
body.white-header .logo-menu {
    width: 52px;
    height: 59px;
    background: url('../images/logo_black.png') no-repeat center center;
    background-size: contain;
}
#main_header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 30px 0 25px 0;
    z-index: 100;
}
#main_header .container {
	padding-bottom:0px;
}
@media (min-width: 1061px) {
    .main_navigation .menu-primary-container ul.menu {
        margin-left: 30px;
				width:90%;
    }
}
.main_navigation {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main_navigation a {
    font-size: 14px;
}
.main_navigation .menu-primary-container a {
    display: block;
    font-size: 16px;
    outline:none;
    padding: 0 10px;
}
.main_navigation .menu-primary-container {
    -ms-flex: 1 0 auto;
    -webkit-box-flex: 1;
            flex: 1 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
    margin-top: -18px;
}
.menu-primary-container ul li {
    vertical-align: middle;
}
.menu-primary-container ul .logo-menu a {
    color: transparent !important;
    display: block;
    overflow: hidden;
    height: 100%;
    margin: 0 -10px;
}
.social_media {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
.right_login {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}
.main_navigation ul li {
    display: inline-block;
    padding: 0 10px;
}
.social_media li a:after {
    color: #000;
    -webkit-transition: color 0.33s ease;
    transition: color 0.33s ease;
}
.social_media .facebook a:after {
    content: "\f09a";
}
.social_media .instagram a:after {
    content: "\f083";
}
.social_media .youtube a:after {
    content: "\f166";
}
.social_media .bandcamp a:after {
    content: "\f2d5";
}
.social_media li a:after {
    color: #1e1e1e;
    font-family: FontAwesome;
    font-size: 18px;
}
.social_media li a:hover:after, .social_media li a:focus:after {
    color: #f25e02 !important;
}
.right_login a {
    text-transform: uppercase;
    font-family: 'ProximaNova-ExtraBold';
    padding-top: 5px;
    display: inline-block;
}
.right_login a:before {
    content: "\f090";
    font-family: FontAwesome;
    padding-right: 5px;
}
.mobile_menu_icon {
    color: #1e1e1e;
    cursor: pointer;
}
.mobile_menu_icon:after {
    content: "\f0c9";
    font-family: FontAwesome;
    font-size: 21px;
}
body:not(.white-header) .mobile_menu_icon {
    color: #fff;
}
.mobile_menu_icon {
    padding: 2px 0 0 10px;
}
@media (min-width: 1061px) {
    .mobile_menu_icon {
        display: none;
    }
}
@media (max-width: 1060px) {
    body:not(.white-header) #main_header,
    #main_header {
        padding: 30px 0;
    }
    .main_navigation .menu-primary-container ul li:not(.logo-menu) {
        display: none;
    }
    .menu-primary-container {
        position: absolute;
        -webkit-box-flex: 0;
                flex: 0;
        -webkit-flex: 0;
        -ms-flex: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .mobile_menu_icon {
        display: inline-block;
        vertical-align: -3px;
    }
    .right_login {
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1;
        text-align: right;
    }
}
@media (max-width: 767px) {
    .main_navigation ul li {
        padding: 0 7px;
    }
}
@media (max-width: 575px) {
    .main_navigation ul li {
        padding: 0 5px;
    }
}

body.white-header {
    padding-top: 115px;
}
body.white-header #main_header {
    background: #fff;
}
body.white-header #main_header:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 4px;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#f25e02), to(#000));
    background: linear-gradient(to right, #f25e02, #000);
    border-bottom: 1px solid #fff;
}
body.homepage #main_header{
	/*opacity:0;*/
}
body.white-header.homepage #main_header{
	opacity: 1;
    transition: opacity 1s ease-out;
    -ms-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -webkit-transition: opacity 1s ease-out;
}
@media (max-width: 1061px) {
    body.white-header {
        padding-top: 83px;
    }
}
@media (max-width: 350px) {
    .social_media li a:after {
        color: #1e1e1e;
        font-family: FontAwesome;
        font-size: 16px;
    }
    .main_navigation ul li {
        padding: 0 3px;
    }
}
/*
MOBILE MENU
*/
@media (min-width: 1061px) {
    .mobile-menu, .mobile_menu_close_icon {
        display: none;
        visibility: hidden;
    }
}
.mobile-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
    -ms-transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: all 700ms cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    transition-delay: 500ms;
}
.mobile_menu_close_icon {
    position: fixed;
    top: 27px; right: 13px;
    visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0, 1);
    -ms-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0, 1);
    transition: opacity 500ms cubic-bezier(0.455, 0.03, 0, 1);
    -webkit-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    transition-delay: 500ms;
    z-index: 1005;
}
.mobile_menu_close_icon:after {
    content: "\f00d";
    font-family: FontAwesome;
    font-size: 28px;
    color: #fff;
}
.mobile-menu .logo-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    width: 0; height: 0;
}
.mobile-menu ul li {
    display: block;
    text-align: center;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0, 1);
    -ms-transition: opacity 500ms cubic-bezier(0.455, 0.03, 0, 1);
    transition: opacity 500ms cubic-bezier(0.455, 0.03, 0, 1);
    -webkit-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-delay: 0ms;
    -ms-transition-delay: 0ms;
    transition-delay: 0ms;
    text-transform: uppercase;
}
.mobile-menu ul {
    position: fixed;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 370px;
    overflow: auto;
    width: 90%;
}
.mobile-menu ul li a {
    letter-spacing: 1px;
    font-size: 22px;
    color: #fff;
    padding: 0.15em;
    display: block;
}
html.menu-open .mobile_menu_close_icon {
    opacity: 1;
    visibility: visible;
}
html.menu-open .mobile-menu {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transition-delay: 0ms;
    -ms-transition-delay: 0ms;
    transition-delay: 0ms;
    -webkit-transition: all 500ms cubic-bezier(0.455, 0.03, 0, 1);
    -ms-transition: all 500ms cubic-bezier(0.455, 0.03, 0, 1);
    transition: all 500ms cubic-bezier(0.455, 0.03, 0, 1);
    visibility: visible;
}
html.menu-open .mobile-menu ul li:nth-child(1) {
    -webkit-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    transition-delay: 300ms;
}
html.menu-open .mobile-menu ul li:nth-child(2) {
    -webkit-transition-delay: 400ms;
    -ms-transition-delay: 400ms;
    transition-delay: 400ms;
}
html.menu-open .mobile-menu ul li:nth-child(3) {
    -webkit-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    transition-delay: 500ms;
}
html.menu-open .mobile-menu ul li:nth-child(5) {
    -webkit-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    transition-delay: 600ms;
}
html.menu-open .mobile-menu ul li:nth-child(6) {
    -webkit-transition-delay: 700ms;
    -ms-transition-delay: 700ms;
    transition-delay: 700ms;
}
html.menu-open .mobile-menu ul li:nth-child(7) {
    -webkit-transition-delay: 800ms;
    -ms-transition-delay: 800ms;
    transition-delay: 800ms;
}
html.menu-open .mobile-menu ul li {
    opacity: 1;
}
html.menu-open {
    overflow: hidden;
}
@-webkit-keyframes changeOpaity {
    0 {
        visibility: visible;
    }
    100% {
        visibility: hidden;
    }
}
@keyframes changeOpacity {
    0 {
        visibility: visible;
    }
    100% {
        visibility: hidden;
    }
}
@media (orientation: landscape) {
    .mobile-menu ul {
        padding-bottom: 25px;
    }
}
/*
FRONT PAGE
*/
.hero_banner {
    position: relative;
    padding-top: 140px;
    height: 730px;
}
.hero_banner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 90px;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.6)), to(rgba(0,0,0,0.01)) );
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.01) );
}
.hero_banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: block;
}
.photo_credits {
	position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    text-align: right;
    font-size: 17px;
    font-family:'ProximaNova-Bold';
    text-shadow: 1px 1px 1px #000;
    line-height:20px;
    z-index:99;
}
.photo_credits span {
	color:#fff;
}
@media (max-width:370px){
	.photo_credits {
		display:none!important;
	}
}
/*
MAIN PLAYER
*/
.main_player {
    position: relative;
    width: 290px;
    float: left;
    border: 1px solid #fff;
}
.player_inner {
    width: 100%;
    padding-bottom: 100%;
}
.player_inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.8)), to(rgba(0,0,0,0.02)));
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.02));
}
.player_inner:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.01)), to(rgba(0,0,0,0.8)));
    background: linear-gradient(rgba(0,0,0,0.01), rgba(0,0,0,0.8));
}
.player_content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.player_top {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    padding-top: 20px;
}
.player_top p {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.player_content p {
    font-family: 'ProximaNova-Bold';
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}
.player_content p:last-of-type {
    margin-bottom: 0;
}
.player_bottom {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding-bottom: 10px;
}
.player_controls {
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    line-height: 48px;
    text-align: center;
    border: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    z-index: 999;
    -webkit-box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.4);
    box-shadow: 4px 4px 4px 0px rgba(0,0,0,0.4);
}
.player_controls button {
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0 none;
    padding: 10px;
}
.btn-player-play {
    display: block;
    margin-left: 2px;
}
.player_controls button:after {
    font-family: "FontAwesome";
    color: #fff;
    font-size: 20px;
}
.btn-player-pause {
    display: none;
    margin-left: 1px;
}
.btn-player-play:after {
    content: "\f04b";
    display: block;
}
.btn-player-pause:after {
    content: "\f04c";
    outline: 0 none;
}
.player_volume {
    position: absolute;
    top: 30px;
    right: 8px;
}
.volume_instance {
    color: #fff;
    text-align: center;
    margin-bottom: 5px;
}
.volume_instance i {
    cursor: pointer;
    display: block;
}
#volume {
    position: relative;
    width: 10px;
    height: 120px;
    z-index: 999;
    width: 8px;
    border: 1px solid #fff;
    border-radius: 3px;
    margin: 0 auto;
}
#volume .ui-slider-range-min {
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 6px;
}
.player_volume:before {
    content: "\f028";
    top: -20px;
}
.player_volume:after {
    content: "\f026";
    bottom: -20px;
}
.player_volume:before, .player_volume:after {
    font-family: "FontAwesome";
    font-size: 16px;
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.ui-slider-range-min {
    cursor: grab;
    cursor: -webkit-grab;
}
/*
END MAIN PLAYER
*/
.main_events {
    max-width: 300px;
    width: 100%;
    float: right;
}
.main_events h1 {
    font-family: 'ProximaNova-ExtraBold';
    text-transform: uppercase;
    color: #fff;
    font-size: 22px;
    padding: 5px 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.upcoming_events {
    list-style: none;
    margin: 0;
}
.upcoming_events p {
    margin-bottom: 0;
}
.ue_date {
    width: 50px;
    background: #fff;
    padding: 7px;
}
.ue_date p {
    font-family: 'ProximaNova-Bold';
    font-size: 18px;
    color: #ff6302;
    line-height: 1;
    text-align: center;
}
.upcoming_events .event {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #fff;
}
.upcoming_events li {
    margin-bottom: 10px;
}
.upcoming_events li .event:hover > div p {
    color: #f25e02;
}
.upcoming_events .event > div {
    display: -ms-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    -webkit-box-flex: 1;
            flex: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5px 0 5px 15px;
}
.upcoming_events .event > div p {
    font-size: 15px;
    line-height: 1.33;
    color: #fff;
    transition: 0.33s ease;
    -webkit-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
}
.see_all_events {
    text-align: center;
    display: block;
    font-size: 17px;
    font-family: 'ProximaNova-ExtraBold';
    color: #fff;
    margin-top: 30px;
    outline: 0 none;
    text-transform: uppercase;
}

.featured {
    background: #1e1e1e;
    padding: 40px 0 70px 0;
}
.featured h2 {
    font-size: 32px;
    line-height: 37px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #dcdcdc;
    text-align: center;
    letter-spacing: 5px;
    font-family: 'ProximaNova-ExtraBold';
}
.featured_events {
    margin: 0 -10px;
    list-style: none;
    letter-spacing: -6px;
}
.featured_events li {
    display: inline-block;
    width: 20%;
    letter-spacing: normal;
    vertical-align: top;
}
.featured_events li .fe_inner {
    padding: 0 10px 25px 10px;
    text-align: center;
}
.featured_events .fe_image {
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 15px;
    position: relative;
}
.featured_events .fe_image img {
    position: absolute;
    width: 65px;
    top: 50%; left: 50%;
    -webkit-transform: scale(0) translate(-50%, -50%);
            transform: scale(0) translate(-50%, -50%);
    -wekbit-transform: scale(0) translate(-50%, -50%);
    -ms-transform: scale(0) translate(-50%, -50%);
    opacity: 0;
    transition: color 0.33s ease;
    -webkit-transition: color 0.33s ease;
    -ms-transition: color 0.33s ease;
    z-index: 10;
}

.featured_events li p {
    margin-bottom: 1px;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.33s ease;
    -webkit-transition: color 0.33s ease;
    -ms-transition: color 0.33s ease;
}
.fe_inner:hover p, .fe_inner:focus p {
    color: #f25e02;
}
.fe_inner {
    position: relative;
}
.fe_inner:hover .fe_image:after,
.fe_inner:active .fe_image:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.fe_inner .fe_image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.fe_inner:hover .fe_image img,
.fe_inner:active .fe_image img{
    -webkit-animation: 0.5s big_small;
            animation: 0.5s big_small;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 1;
}

@keyframes big_small {
    0% {
        -webkit-transform: scale(0) translate(-50%, -50%);
                transform: scale(0) translate(-50%, -50%);
    }
    50% {
        -webkit-transform: scale(1.3) translate(-50%, -50%);
                transform: scale(1.3) translate(-50%, -50%);
    }
    100% {
        -webkit-transform: scale(1) translate(-50%, -50%);
                transform: scale(1) translate(-50%, -50%);
    }
}
@-webkit-keyframes big_small {
    0% {
        -webkit-transform: scale(0) translate(-50%, -50%);
    }
    50% {
        -webkit-transform: scale(1.3) translate(-50%, -50%);
    }
    100% {
        -webkit-transform: scale(1) translate(-50%, -50%);
    }
}

@media (max-width: 1220px) {
    .featured_events {
        text-align: center;
    }
    .featured_events li {
        width: 25%;
    }
}
@media (min-width: 1061px) {
    .upcoming_events {
        max-height: 350px;
        overflow: auto;
    }
}
@media (max-width: 1060px) {
    .hero_banner {
        height: auto;
    }
    .hero_banner .container {
        padding-bottom: 50px;
    }
    .featured_events {
        text-align: left;
    }
}
@media (max-width: 875px) {
    .video_single_preview_image {
        height: 200px;
        max-height: 200px;
        overflow: hidden;
    }
    .video_single_preview_image img {
        min-height: 200px;
        max-height: inherit;
        object-fit: cover;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .hero_banner .container {
        display: -ms-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .main_player {
        float: none;
        width: 210px;
    }
    .main_events {
        max-width: initial;
        float: none;
        padding-left: 20px;
        -ms-flex: 1;
        -webkit-box-flex: 1;
                flex: 1;
    }
    .featured_events li {
        width: 33.33%;
    }
    .ue_date p {
        font-size: 18px;
    }
}
@media (max-width: 575px) {
    .hero_banner .container {
        display: block;
    }
    .main_player {
        margin: 0 auto;
        max-width: 290px;
        width: 100%;
        margin-bottom: 30px;
    }
    .main_events {
        -ms-flex: unset;
        -webkit-box-flex: unset;
                flex: unset;
        margin: 0 auto;
        padding-left: 0;
    }
    .featured_events li {
        width: 100%;
    }
    .featured_events .fe_image {
        padding-bottom: 60%;
    }
}
/*
FOOTER
*/
#global_footer {
    padding-top: 60px;
    padding-bottom: 120px;
    background: #111111;
}
#global_footer .col {
    width: 20%;
    float: left;
    padding: 0 10px;
}
#global_footer ul {
    margin: 0;
}
#global_footer .row {
    margin: 0 -10px;
}
#global_footer .title {
    display: block;
    color: #b4b4b4;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'ProximaNova-ExtraBold';
}
#global_footer .col a {
    display: block;
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.75;
}
#global_footer .col p {
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.75;
    margin-bottom: 0;
}
.bottom_nav {
    list-style: none;
    margin: 0;
}
.bottom_nav .logo-menu {
    display: none !important;
}
@media (max-width: 1061px) {
    body.white-header #global_footer {
        padding-bottom: 60px;
    }
}
@media (max-width: 991px) {
    #global_footer .row {
        margin: 0;
        letter-spacing: -6px;
    }
    #global_footer .col:first-child {
        display: none;
    }
    #global_footer .col {
        letter-spacing: normal;
        display: inline-block;
        float: none;
        vertical-align: top;
        width: 50%;
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    #global_footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
@media (max-width: 575px) {
    #global_footer .col {
        width: 100%;
    }
}

/*
FOOTER PLAYER
*/
body:not(.white-header) #global_player {
    display: none !important;
}
body:not(.white-header) #global_footer {
    padding-bottom: 60px;
}
#global_player {
    position: fixed;
    left: 0; bottom: 0;
    width: 100%;
    background: #111111;
    padding: 5px 0;
    z-index: 101;
}
#global_player .container {
    letter-spacing: -6px;
    padding:0px 15px;
}
.gp_left, .gp_center, .gp_right {
    display: inline-block;
    vertical-align: middle;
    width: 33.333333%;
    letter-spacing: normal;
}
.gp_right {
    padding-right: 25px;
}
.gp_center {
    text-align: center;
}
.gp_logo {
    display: inline-block;
    width: 50px;
    image-rendering: auto;
    vertical-align: middle;
}
.gp_stats {
    display: inline-block;
    vertical-align: middle;
    padding-left: 8px;
}
.gp_stats p {
    font-family: 'ProximaNova-SemiBold';
    margin-bottom: 3px;
    font-size: 12px;
}
.gp_radio-live, .gp_name-song {
    color: #fff;
}
.gp_name-album {
    color: #6a6a6a;
}
#footer_volume {
    position: relative;
    width: 120px;
    height: 8px;
    z-index: 999;
    border: 1px solid #fff;
    border-radius: 3px;
    margin: 0 0 0 auto;
}
#footer_volume:before,
#footer_volume:after {
    font-family: "FontAwesome";
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#footer_volume:before {
    content: "\f026";
    left: -15px;
}
#footer_volume:after {
    content: "\f028";
    right: -22px;
}
#footer_volume .ui-slider-range {
    height: 6px;
    background: #fff;
}
.gp_center button {
    position: relative;
    background: transparent;
    border: 0 none;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    vertical-align: middle;
    padding:0px!important;
}
.gp_center button:before {
    font-family: "FontAwesome";
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.btn-footer-player-play:before {
    content: "\f04b";
    outline: 0 none;
    margin-left: 2px;
}
.btn-footer-player-pause:before {
    content: "\f04c";
    outline: 0 none;
    margin-left: 0.75px;
}
.btn-footer-player-play:after {
    content: "PAUSED";
    display: inline-block;
    font-family: sans-serif;
    font-size: 11px;
    margin-left: 52px;
    color: #fff;
    font-weight: 600;
}
@media (max-width: 1060px) {
    .gp_left, .gp_center {
        width: 50%;
    }
    .gp_center {
        text-align: right;
    }
    .gp_right {
        display: none !important;
        visibility: hidden;
        width: 0px;
        height: 0px;
    }
    .gp_stats p {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .gp_center button:before {
        margin: 0;
    }
    .btn-footer-player-pause:after {
        content: "PAUSED";
        position: absolute;
        top: 11px;
        right: 50px;
        margin: 0;
    }
}
@media (max-width: 575px) {
    .gp_stats {
        padding-left: 0;
    }
    .gp_logo {
        display: none;
    }
    .gp_stats p {
        max-width: 180px;
    }
}
@media (max-width: 341px) {
    .gp_stats p {
        max-width: 150px;
    }
}
/*
REGISTER POPUP
*/
.login_popup {
    display: none;
}
.login_header:after {
    content: "";
    display: block;
    clear: both;
}
.login_popup_overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.login_popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    z-index: 999;
}
.login_popup_box {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 50%; left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 100%;
    width: 600px;
    padding: 20px;
    background: #ebebeb;
    z-index: 2;
}
.login_box_inner {
    position: relative;
    overflow: auto;
    max-height: 80vh;
}
.login_popup_close {
    position: absolute;
    top: -15px;
    right: -15px;
    color: #fff;
    font-size: 20px;
    width: 30px;
    height: 30px;
    background: #000;
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    line-height: 28px;
    z-index: 100;
}
.login_body_log, .login_body_register, .login_body_recover {
    display: none;
    background: #fff;
    padding: 15px 20px;
}
.login_body_log.is-active, .login_body_register.is-active, .login_body_recover.is-active {
    display: block;
}
.login_header_left, .login_header_right {
    width: 50%;
    float: left;
    padding: 10px 20px 15px 20px;
}
.login_header_left.is-active, .login_header_right.is-active {
    background: #fff;
}
.login_popup label {
    margin-bottom: 15px;
}
.login_popup input:not([type="submit"]) {
    padding: 10px 5px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    color: #666;
    width: 100%;
}
.login_popup .haft_left {
    width: 50%;
    float: left;
    padding-right: 15px;
}
.login_popup .haft_right {
    width: 50%;
    float: left;
    padding-left: 15px;
}
.login_popup input[type="submit"] {
    background: #f25e02;
    color: #fff;
    font-size: 14px;
    display: block;
    width: 100%;
    letter-spacing: 1.2px;
    padding: 10px;
    text-transform: uppercase;
    border: 0 none;
    font-family: 'ProximaNova-ExtraBold';
}
.login_popup input[type="submit"]:hover, .login_popup input[type="submit"]:focus {
    background: #d45100;
}
.login_popup ::-webkit-input-placeholder {
    -webkit-transition: 0.33s ease;
}
.login_popup :-ms-input-placeholder {
    -ms-transition: 0.33s ease;
}
.login_popup ::placeholder:focus {
    transition: 0.33s ease;
}
.login_popup :focus::-webkit-input-placeholder {
    color: transparent;
}
.login_popup :focus:-ms-input-placeholder {
    color: transparent;
}
.login_popup :focus::placeholder {
    color: transparent;
}
.btn-login_body_recover {
    display: block;
    text-align: center;
    color: #b4b4b4;
    font-size: 12px;
    font-weight: 600;
}
.login_header_left a, .login_header_right a {
    font-size: 38px;
    text-transform: uppercase;
    color: #393939;
    line-height: 1.15;
    font-family: 'ProximaNova-ExtraBold';
}
.login_header_left p, .login_header_right p {
    font-size: 16px;
    line-height: 18px;
    color: #b4b4b4;
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .login_header_left, .login_header_right {
        width: 100%;
        border: 2px solid transparent;
    }
    .login_header_left.is-active + .login_header_right {
        border: 2px solid #fff;
    }
    .login_popup .haft_right,
    .login_popup .haft_left {
        width: 100%;
        padding: 0;
    }
    .login_popup_close {
        right: 5px;
    }
    .login_header_left a, .login_header_right a {
        font-size: 26px;
    }
}
/*
CONTENT PAGE
*/
.big_header {
    min-height: 400px;
    margin-bottom: 25px;
    position:relative;
}
.big_header:after{
	background:#0000004d;
	position:absolute;
	width:100%;
	height:100%;
	content:'';
	z-index: 1;
	top:0;
}
.left-content {
    width: 73%;
    padding-right: 30px;
    float: left;
}
.right-content {
    width: 27%;
    float: left;
}
.show_disc {
    padding: 50px 0;
}
.sd_left {
    width: 30%;
    display: inline-block;
    vertical-align: middle;
}
.sd_right {
    width: 60%;
    display: inline-block;
    vertical-align: middle;
    padding-left: 30px;
}
.sd_date {
    font-family: 'ProximaNova-Semibold';
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.sd_date:before {
    content: "\f017";
    font-family: FontAwesome;
    padding-right: 5px;
}
.sd_content {
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
.sd_h1 {
    font-size: 28px;
    color: #fff;
    font-family: 'ProximaNova-ExtraBold';
    margin-bottom: 10px;
    transition: color 0.33s ease;
    -webkit-transition: color 0.33s ease;
    -ms-transition: color 0.33s ease;
}
a .sd_h1:hover, a .sd_h1:focus {
    color: #f25e02 !important;
}
.sd_read-more {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'ProximaNova-SemiBold';
}
.sd_read-more:after {
    content: "\f18e";
    font-family: FontAwesome;
    padding-left: 5px;
}
.podcast_player {
    padding-top: 30px;
}
.podcast_player .extra-html span:first-child{
	font-weight: bold;
    margin-right: 20px;
    width: 130px;
}
.audioplayer.skin-wave .controls-volume {
	width:110px;
}
.audioplayer .volume_static {
	width:80px;
}
.video_single_preview {
    margin-bottom: 30px;
}
.video_single_preview_image {
    margin-bottom: 5px;
}
.video_single_preview_image img {
    display: block;
}
.video_single_preview h3 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.5;
    transition: 0.33s ease;
    -webkit-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
}
.video_single_preview a:hover h3,
.video_single_preview a:focus h3 {
    color: #f25e02 !important;
}
.video_single_preview .date {
    font-size: 14px;
    font-family: 'ProximaNova-Semibold';
    text-transform: uppercase;
}

.video_single_preview .date:before {
    content: "\f017";
    font-family: FontAwesome;
    padding-right: 5px;
    vertical-align: -1px;
}
@media (min-width: 876px) {
    .right-content {
        padding-left: 30px;
        border-left: 1px solid #ebebeb;
        margin-bottom: 50px;
    }
    .video_single_preview:last-of-type {
        margin-bottom: 0;
    }
}
@media (max-width: 875px) {
    .big_header {
        min-height: initial;
    }
    .sd_right {
        width: 68%;
    }
    .left-content {
        width: 100%;
        padding-right: 0;
    }
    .right-content {
        letter-spacing: -6px;
        margin: 0 -10px;
        width: auto;
    }
    .right-content > * {
        letter-spacing: normal;
    }
    .video_single_preview {
        width: 50%;
        padding: 0 10px 0 10px;
        display: inline-block;
        vertical-align: top;
    }
    .left-content {
        margin-bottom: 35px;
    }
}
@media (max-width: 767px) {
    .sd_h1 {
        font-size: 24px;
    }
}
@media all and (max-width: 575px) {
    .sd_left {
        width: 100%;
        margin: 0 auto 25px auto;
    }
    .sd_left img {
        display: block;
        margin: 0 auto;
        max-width: 220px;
        width: 100%;
    }
    .sd_right {
        width: 100%;
        padding-left: 0;
    }
    .video_single_preview {
        width: 100%;
    }
    .right-content {
        margin: 0;
    }
    .video_single_preview {
        padding: 0;
    }
}
/*
EVENTS & TOURS
*/
.evtours_wrapper {
    margin: 0 -2px;
    letter-spacing: -6px;
    padding-bottom: 50px;
}
.event_single_container {
    margin-bottom: 5px;
    width: 33.33%;
    display: inline-block;
    vertical-align: top;
    padding: 0 2px;
    letter-spacing: normal;
    height: 200px;
    position: relative;
}
.event_single_container:after {
    content: "";
    position: absolute;
    left: 2px; right: 2px; top: 0px; bottom: 0px;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background: rgba(0,0,0,0.7);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.event_single {
    height: 100%;
    overflow: hidden;
}
.event_single_container:hover:after {
    opacity: 1;
}
.event_single_hover {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    top: 50%;
    z-index: -2;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.event_single_container:hover .event_single_hover {
    opacity: 1;
    z-index: 2;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.event_single_container h2 {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-family: 'ProximaNova-ExtraBold';
    margin-bottom: 5px;
    transition: 0.33s ease;
    -webkit-transition: 0.33s ease;
    -ms-transition: 0.33s ease;
}
.event_single_container h2:hover {
    color: #f25e02 !important;
}
@media (max-width: 991px) {
    .event_single_container {
        width: 50%;
    }
}
@media (max-width: 575px) {
    .event_single_container {
        width: 100%;
        margin-bottom: 15px;
    }
}
/*
CORPORATE PAGE
*/
.corporate-container h2 {
	color:#fff;
	text-align:left;
	margin:0px;
	padding:20px 0px;
}

.corporate-container ul {
	list-style-type:none;
	margin:0px;
	margin-bottom:25px;
}

.corporate-container ul li {
	float:left;
	display:inline-block;
	margin-right:20px;
	padding-bottom:10px;
	color:#fff;
}

.corporate-container ul li:first-child {
	margin-left:0px;
}

.medium_banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.medium_banner {
    padding: 0 15px;
    text-align: center;
    position: relative;
}
.medium_banner h1 {
    letter-spacing: 10px;
    font-size: 62px;
    text-transform: uppercase;
    font-family: 'ProximaNova-ExtraBold';
    z-index: 2;
    margin-bottom: 0;
    padding: 170px 0;
    color: #fff;
    position: relative;
    z-index: 2;
}
.single_page.corporate .title_page:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}
.brochure_btn {
    font-size: 18px;
    padding: 9px 18px;
    background: #f25e02;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
}
.brochure_btn:hover, .brochure_btn:focus {
    background: #d45100;
}
.brochure_btn:hover {
    color: #fff !important;
}

.single_page_content {
    padding-top: 50px;
}
.single_page_content ul li p {
    margin-bottom: 8px;
}
.single_content p,
.single_content li {

    color: #6a6a6a;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
}
.corporate_page .page_description {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}
.corporate_page .page_description p {
    text-align: center;
}
.corporate_page {
    padding-bottom: 0;
}
.corporate_page_footer {
    padding: 60px 0;
    text-align: center;
}
.corporate_page_footer ul {
    margin: 0;
    list-style: none;
    letter-spacing: -6px;
}
.corporate_page_footer ul li {
    width: 25%;
    letter-spacing: normal;
    vertical-align: top;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'ProximaNova-Bold';
    font-size: 18.5px;
    padding: 0 10px;
}
.corporate_page_footer h2 {
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'ProximaNova-Bold';
    color: #fff;
    margin-bottom: 25px;
}
.corporate_page_footer ul li:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 1060px) {
    .corporate_page_footer ul li {
        width: 33.333333%;
    }
}
@media (max-width: 767px) {
    .corporate_page_footer ul li {
        width: 50%;
    }
}
@media (max-width: 575px) {
    .corporate_page_footer ul li {
        width:100%;
    }
}
/*
ARTISTS PAGE
*/
.custom-artist-banner  {
	padding:60px 0px;
}
.custom-artist-banner .container {
	z-index:2;
}
.custom-artist-banner h1 {
	padding:20px 0px;
	text-align:left;
	font-size:55px;
}
.custom-artist-banner p {
	color:#fff;
	text-align:left;
	font-size:14px;
	padding-bottom:10px;
	max-width:800px;
	margin:0px;
}

.banner-left-side {
	max-width:80%;
	float:left;
	width:100%;
}

.banner-right-side {
	max-width:20%;
	float:left;
	width:100%;
}

#book-artist {
	width:210px;
	height:60px;
	position:fixed;
	bottom:50px;
	right:10px;
	z-index:9999;
	padding:10px;
	border-radius: 20px;
	border-bottom-right-radius:0px;
transition: height 5s ease-in;
	transition: width 5s ease-in;
}
.minimize-cta-artist {
	    height: 13px;
    width: 13px;
    color: #fff;
    position: absolute;
    top: 19px;
    right: 20px;
    cursor:pointer;
}
#book-artist .book-cta-artist {
	color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    padding: 10px 15px ;
    background: #f25e02;
    border-radius: 20px;
    border-bottom-right-radius: 0px;
}

#book-artist .book-cta-artist span {
	font-weight:bold;
	display:inline-block;
	cursor:pointer;
}

#book-artist .book-cta-artist span:hover{
	color:#fff!important;
	text-decoration:underline;
}
.book-artist-form,
.cta-form-artist-active .book-cta-artist{
	display:none;
}
.cta-form-artist-active .book-artist-form {
	display:block;
	background:#fff;
	border-radius:20px;
	border-bottom-right-radius:0px;
}
.cta-form-artist-active .book-artist-form  form{
	    padding: 20px;
    border: 2px solid #f25e03;
    border-bottom-left-radius: 20px;
}
.cta-form-artist-active {
	padding:20px 15px!important;
	width: auto!important;
    height: auto!important;
	display:block;
	bottom:0px;
}
.wpcf7-form-control-wrap {
	width:100%;
	display:block;
}
.cta-form-artist-active br {
	display:none;
}
.cta-form-artist-active label {
	width:100%;
	display:block;
	color:#0a0a0a;
	margin-top:10px;
}

.cta-form-artist-active input[type="email"],
.cta-form-artist-active input[type="text"],
.cta-form-artist-active textarea {
	    width: 100%;
    display: block;
    max-width: 345px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
}


.cta-form-artist-active input[type="email"],
.cta-form-artist-active input[type="text"]{
	height:27px;
}
.cta-form-artist-active input[type="text"],
.cta-form-artist-active textarea{
	width:100%;
	display:block;
	max-width: 345px;
}

.cta-form-artist-active textarea {
	max-height:120px;
	border:1px solid #ccc;
	resize: none;
}

.cta-form-artist-active input[type="submit"]{
	color: #fff;
    background: #f25e03;
    float:right;
    border: 1px solid #fff;
}

.cta-form-artist-active input[type="submit"]:hover {
	background:#fff;
	color:#f25e03;
	border:1px solid #f25e03;
}

.book-artist-form-header {
	background: #f25e03;
    font-size: 15px;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #fff;
    border-top-left-radius: 20px;
    position: relative;
    border-top-right-radius: 20px;
    margin-bottom: -2px;
}

.book-artist-form-header .booking-info {
	max-width:250px;
}

.artists_second_setion {
    padding: 50px 0;
}
.as_wrapper {
    margin: 0 -5px;
}
.artist-item {
	width:25%;
	float:left;
	position:relative;
	margin-bottom:25px;
}
.artist-item h2 {
	font-size: 14px;
    color: #fff;
    background: #f25e02;
    margin: 0px;
    position: absolute;
    bottom: -10px;
    padding: 9px 10px;
    left: 20px;
    z-index:99;
}
.as-item {
    width: 100%;
    border: 5px solid #fff;

}
.as-item_inner {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
}
.as-item .artist_title {
    display: block;
    font-size: 28px;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    text-transform: uppercase;
    opacity: 0;
    font-family: 'ProximaNova-ExtraBold';
    position: absolute;
    top: 50%;
    max-width: 100%;
    padding: 10px;
    width: 100%;
    z-index: -9;
    text-align: center;
    -webkit-transform: scale(0) translate(0%, -50%);
    -ms-transform: scale(0) translate(0%, -50%);
    transform: scale(0) translate(0%, -50%);
}
.as-item:hover .artist_title,
.as-item:focus .artist_title {
    opacity: 1;
    z-index: 9;
    animation: asc 0.6s forwards;
    -webkit-animation: asc 0.6s forwards;
}
.as-item_inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

#book-artist-form {
	width: 100%;
    text-align: center;
    display: block;
    margin-top: 60px;
    border-top: 1px solid #ccc;
    padding-top: 50px;
}
#book-artist-form h3 {
	padding-bottom:15px;
	width:100%;
	display:block;
	margin-bottom:0px;
}
input, textarea {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], textarea {
    border: 0 none;
    background: #fff;
    height: 45px;
    line-height: 45px;
    color: #000;
    font-family: 'ProximaNova-Regular', sans-serif
    font-size: 18px;
    padding-left: 5px;
    padding-right: 5px;
}
#book-artist-form .item input {
    background: transparent;
    border-bottom: 1px solid #363636;
    text-align: center;
    color: #363636;
    font-style: italic;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
#book-artist-form textarea {
    background: transparent;
    text-align: center;
    border-bottom: 1px solid #363636;
    color: #363636;
    width: 100%;
    text-transform: uppercase;
    height: 100px;
    resize:none;
}
#book-artist-form form {
	max-width:300px;
	width:100%;
	margin:0 auto;
}
#book-artist-form input[type="submit"]{
	color:#fff;
	font-size:18px;
	text-align:center;
	padding:7px 13px;
	background:#f25e02;
	margin:25px 0px;
	text-transform:uppercase;
	border:none;
	outline:none;
}
div.wpcf7-mail-sent-ok,
div.wpcf7-response-output {
	border:none!important;
}
/*
.as-item_inner:hover:after,
.as-item_inner:focus:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}*/

@keyframes from_small_to_big {
    from {
        transform: scale(0) translate(-50%, -50%);
    }
    50% {
        transform: scale(1.3) translate(-50%, -50%);
    }
    tp {
        transform: scale(1) translate(-50%, -50%);
    }
}

.as-item_inner:hover .artist_title, .as-item_inner:focus .artist_title {
    -webkit-transform: scale(1) translate(0%, -50%);
    -ms-transform: scale(1) translate(0%, -50%);
    transform: scale(1) translate(0%, -50%);
}
@media (max-width: 1061px) {
    .as-item {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .medium_banner h1 {
        letter-spacing: 4px;
        font-size: 34px;
        padding: 100px 0;
    }
    .artist-item {
    	width:100%;
    }
    .custom-artist-banner h1 {
    	padding:20px 0px;
    }
    .custom-artist-banner {
    	padding:15px 20px;
    }
    .custom-artist-banner .banner-left-side {
    	width:100%;
    	max-width:100%;
    }
    .custom-artist-banner .banner-right-side {
    	display:none;
    }
}
@media (max-width: 575px) {
    .as-item {
        width: 100%;
    }
}
/* SINGLE ARTISTS PAGE */
.artist-item:hover .artist-fm {
	animation: hoverEffectArtist 300ms forwards ;
}

@keyframes hoverEffectArtist {
    0% {
       opacity:0;
       bottom:-10px;
    }
    100% {
    	opacity:1;
        bottom:40px;
    }
}
.single_page_content .left-content .artist_booking_btn {
	font-size: 12px;
    color: white;
    background: #f25e02;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 8px;
    float:right;
    margin-left:10px;
}
.single_page_content .left-content .artist_booking_btn:hover,
.single_page_content .left-content .artist_booking_btn:focus{
	color:#fff!important;
}
.artist_title_inner {
	display:block;
	overflow:hidden;
	margin-bottom:00px;
}
.artist-fm {
	position: absolute;
    bottom: -10px;
    left: 20px;
    background: #f25d02;
    font-size: 16px;
    padding: 7px 10px;
    color: #fff;
    opacity:0;
    font-weight: bold;

}
.artist-share-icons {
	list-style-type:none;
	display:inline-block;
	margin:0px;
	    text-align: center;
    margin: 0 auto;
    display: block;
    overflow: hidden;
        float: right;
}

.artist-share-icons li {
	width:20px;
	height:20px;
	display:inline-block;
	margin:0px 7px;
}
.artist-share-icons li:first-child{
	width:auto;
	    font: 16px/1.33 'ProximaNova-Regular', sans-serif;
}

.artist-share-icons li a {
	display:block;

}

.artist-share-icons li a img {
	width:100%;
	height:auto;
	display:block;
}

.single_page_banner {
    height: 440px;
}
.single_page_content .single_title {
	overflow:hidden;
	display:block;
}
.single_page_content .single_title h1,
.single_page_content .single_title {
    font-size: 24px;
    line-height: 1.5;
    color: #393939;
    font-family: 'ProximaNova-ExtraBold';
    padding-bottom: 8px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}
.single_page_content .single_title h1 {
	border:none;
	padding-bottom:0px;
	margin-bottom:0px;
	float:left;
}
.single_page_content .content_publish_date {

    font-size: 14px;
    float: right;
    text-align: right;
}
.single_page_content .left-content a {
    text-decoration: underline;
    color: #f25e02;
}
.sidebar_gallery .item {
    margin-bottom: 20px;
    position: relative;
}
.right-content .video_link:before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    pointer-events: none;
}
.right-content .video_link:after {
    content: "\f04b";
    font-family: 'FontAwesome';
    position: absolute;
    font-size: 28px;
    color: #fff;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    margin-left: 2px;
    pointer-events: none;
}
.sidebar_gallery a {
    display: block;
}
.sidebar_gallery .item:last-of-type {
    margin-bottom: 0;
}
.sidebar_gallery img {
    display: block;
}
@media (max-width: 875px) {
    .sidebar_gallery {
        letter-spacing: -6px;
        margin: 0 -5px;
    }
    .sidebar_gallery .item {
        width: 50%;
        display: inline-block;
        vertical-align: top;
        padding: 0 5px;
        margin-bottom: 5px;
    }
    .sidebar_gallery a img {
        max-height: 200px;
        object-fit: cover;
        width: 100%;
    }
}
@media (max-width: 575px) {
    .sidebar_gallery .item {
        width: 100%;
    }
}

@media (max-width:400px){
	.single_page_banner {
		height:210px;
	}
	.single_page_content {
		padding-top:15px;
	}
	.single_page_content .single_title h1 {
		font-size:17px;
		display:block;
		float:none;
	}
	.artist-share-icons {
		float:none;
		text-align:left;
		margin:15px 0px;
	}
	.single_page_content .left-content .artist_booking_btn {
		float:none;
	}
}

/*
SINGLE OC
*/
.zoomsounds-wrapper-bg-center.is-playing {
    padding: 0 !important;
}
.zoomsounds-nav.skin-aura .menu-item .menu-item-number {
    min-width: 20px;
    text-align: center;
}
.audiogallery .slider-main .slider-clipper {
    height: auto !important;
}
#single_player .ap-controls-right {
    display: none;
    opacity: 0;
    visibility: hidden;
    height: 0px;
}
.oc_single_video_container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* keep the aprox screen ration 1.778 */
}
#oc_single_video {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
}
/*
PAGINATION
*/
.evt_prev_arrows, .evt_next_arrows, .navigation.pagination {
    letter-spacing: normal;
}
.navigation.pagination {
    width: 0; height: 0; overflow: hidden; visibility: hidden; opacity: 0; position: absolute;
}
.zoomsounds-wrapper-bg-center {
    padding: 0 !important;
}
/*
PLAYER RUNNING
*/
html .btn-player-play {
    display: block;
}
html .btn-footer-player-play {
    display: inline-block;
}
html .btn-player-pause,
html .btn-footer-player-pause {
    display: none;
}
html.player-running .btn-player-pause {
    display: block;
}
html.player-running .btn-footer-player-pause {
    display: inline-block;
}
html.player-running .btn-player-play,
html.player-running .btn-footer-player-play {
    display: none;
}
.right_login .login {
    display: none !important;
}
html.player-running .btn-footer-player-pause:after {
	content: "";
}
/* donate page start */
section.donate-landing {
  height: 90vh;
	background-image: url('https://www.vrtw.life/wp-content/uploads/2019/12/72475783_2353309878253320_3920363748841226240_o.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
section.donate-landing h1 {
	font-size: 32px;
	line-height: 37px;
	margin-bottom: 30px;
	text-transform: uppercase;
	color: #dcdcdc;
	letter-spacing: 2px;
	font-family: 'ProximaNova-ExtraBold';
}
section.donate-landing .darker-wrapper {
	position: absolute;
	height: 100%;
	width: 100%;
  background-color: #000000a1;
	padding-top: 100px;
}
section.donate-landing  .width-50 {
	width: 50%;
	float: left;
}

section.donate-landing .donate-link {
	text-align: right;
  font-size: 26px;
  border: 1px solid white;
  padding: 10px;
	color: white;
  font-family: 'ProximaNova-ExtraBold';
  text-transform: uppercase;
	margin: 0px;
}
section.donate-landing .darker-wrapper p {
	color: white;
	font-size: 25px;
	margin-bottom: 50px;
}
section.donate-landing .width-50.content-left{
text-align: left;
}
section.donate-landing .width-50.content-right{
text-align: right;
}
section.donate-landing .or-span {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 26px;
	padding: 10px;
	font-family: 'ProximaNova-ExtraBold';
}
@media (max-width: 1370px) and (min-width: 1200px) {
	section.donate-landing {
	 height: 85vh;
	}
	section.donate-landing .donate-link {
		font-size: 24px;
	}
}
@media (max-width: 1025px)  and (min-width: 800px){
	section.donate-landing .darker-wrapper {
		padding: 100px 30px;
	}
}
@media (max-width: 1025px) and (min-width: 600px) {
	section.donate-landing {
		height: 63vh;
	}
}
@media (max-width: 768px) and (min-width: 600px){
	section.donate-landing .width-50.content-left,
	section.donate-landing .width-50.content-right {
		text-align: center;
		float: unset;
		width: 100%;
	}
	section.donate-landing .or-span {
		width: 100%;
	  position: unset;
	  text-align: center;
	  margin: 30px 0px;
	  padding-bottom: 0px;
		}
	}
@media (max-width: 600px) {
	section.donate-landing {
		height: 100vh;
		min-height: 625px;
	}
	section.donate-landing h1 {
		font-size: 23px;
    line-height: 25px;
    margin-bottom: 20px;
	}
	section.donate-landing .width-50.content-left,
	section.donate-landing .width-50.content-right{
	text-align: center;
	}
	section.donate-landing .width-50.content-right  {
		padding-top: 40px;
	}
section.donate-landing .darker-wrapper p {
	    margin-bottom: 25px;
}
section.donate-landing .or-span {
	position: unset;
	width: 100%;
	text-align: center;
	padding-bottom: 0px;
  margin-bottom: 0;
}
	section.donate-landing .donate-link {
		width: 80%;
		display: block;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 25px;
		font-size: 23px;
	}
	section.donate-landing .width-50 {
		width: unset;
		float: unset;
	}
}
body.page-template-template-frontpage .donate-link {
	width: 100%;
  text-align: center;
  color: white;
  display: inline-block;
  padding-top: 10px;
  font-size: 16px;
}

/* donate page end */

/* fixes december 2020 */
@media(max-width:767px){
	.hero_banner{
		background-image: none!important;
    background-color: #000;
	}
	.hero_banner .photo_credits{
		display: none;
	}
}
.grecaptcha-badge{
	display: none!important;
}
