/*---------------------------------------------------------------------------------

	Theme Name: VDL Theme
    Text Domain: vdl
	Version: 1.8
	Description: VDL Custom theme
	Author: Jasmin Higgs
	Author URI: https://barbendingdesigns.com
	License: GNU General Public License version 2.0
	License URI: http://www.gnu.org/licenses/gpl-2.0.html
	
	All files, unless otherwise stated, are released under the GNU General Public License
	version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

-----------------------------------------------------------------------------------

	0.	CSS Reset
	1.	Document Setup
	2.  Structure
	3.	Header
	4.	Blog
	5.  Post Content
	6.	Comments
	7.	Pagination
	8.	Footer

-----------------------------------------------------------------------------------
ho
    Colours:
    Dark orange: #dd3e09
    Mid orange: #ec6637
    Mid grey: #d1d1d1
    Mid-ish grey: #e0e0e0
    Light grey: #f5f6f6
    Nearly white: #f9f9f9
    Nearly black: #333

----------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */


html, body { 
    margin: 0; 
    padding: 0; 
    height: 100%; 
    min-height: 100%; 
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	font-weight:normal;
	font-style:normal;
	font-size:100%;
	text-align:left;
}

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

ol, ul { list-style:none; }

blockquote:before, 
blockquote:after { content:""; }

a { 
    outline:none;
    cursor: pointer;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* Screen Reader Text */

.screen-reader-text {
	clip: rect( 1px, 1px, 1px, 1px );
	height: 1px;
	overflow: hidden;
    position: absolute !important;
    width: 1px;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}


/* -------------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------------- */


.hide-xs {
    display: none;
}

.show-xs {
    display: block;
}

@media screen and (min-width: 768px){
    .show-sm {
        display: block;
    }
    
    .hide-sm {
        display: none !important;
    }
}

body {
    background: #fff;
	border: none;
    color: #111;
    /*font-size: 16px;*/
    
}

@media (min-width: 480px) {
    body {
        /*font-size: 18px;*/
    }
}

body * {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
	box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif;
}

.flex-container {
    display: flex;
    flex-direction: column;
    background: #f1f2f2;
    min-height: 100%;
}

.flex-container > header,
.flex-container > footer {
    flex-shrink: 0;
}

.flex-container > .wrapper {
    flex: 1 0 auto;
    padding: 0 0 calc(15px + 5%);
    background: #fff;
}

.flex-container > .wrapper > .inner-wrap {
    padding: 0 15px;
}

@media (min-width: 600px){
    .flex-container > .wrapper > .inner-wrap {
        padding-left: 8%;
        padding-right: 8%;
    }
    .home .flex-container > .wrapper > .inner-wrap{
        padding-left: 15px;
        padding-right: 15px;
    }
}

h1, h4, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

h1 {
    font-size: 32pt;
}

h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

h2 {
    color: #ec6637;
    font-size: 24pt;
    font-weight: 400; /* Brief says light aka 300, but it's just too pale and thin */
}

h3 {
    color: #333;
    text-align: center;
    font-size: 18pt;
    font-weight: 300;
}

h4 {
    font-size: 27pt;
}

h5 {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    color: #333;
    font-size: 21pt;
    /* "1pt, offset 2pp" */
}

@media (min-width: 600px){
    h1 {
        font-size: 38pt;
    } 
    h2 {
        font-size: 28pt;
    }
}

@media (min-width: 768px){
    h1 {
        font-size: 42pt;
    } 
}

@media (min-width: 920px){
    h1 {
        font-size: 44pt;
    }   
}

@media (min-width: 1200px){
    h1 {
        font-size: 46pt;
    }
}

h6 {
    font-size: 15pt;
}

a {
	text-decoration: none;
}

a,
a:hover {
	color: #111;
}

body a:hover { 
	text-decoration: underline; 
}

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

.clear { clear: both; }

::selection {
	background: #111;
	color: #FFF;
}

input::-webkit-input-placeholder { color: #999; }
input:-ms-input-placeholder { color: #999; }
input::-moz-placeholder { color: #999; }

.align-center { text-align: center; }
.align-right { text-align: right; }

p.small {
	font-size: 85%;
}

/* -------------------------------------------------------------------------------- */
/*	2.	Structure
/* -------------------------------------------------------------------------------- */


.wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.inner-wrap {
    padding: 0 2%;
}

#media-sizer {
    display: none;
    width: 0;
    height: 0;
}

@media (min-width: 768px){
   .wrapper {
        margin: 0 auto;
    	width: 960px;
    	max-width: 90%;
    	padding: 0;
    } 
    
    .inner-wrap {
        padding: 0;
    }
    
    #media-sizer {
        display: block;
        width: 100%;
    }
}


/* -------------------------------------------------------------------------------- */
/*	3.	Header
/* -------------------------------------------------------------------------------- */

header { 
    margin: 0;
    width: 100%;
    background-color: #dd3e09;
    color: #f9f9f9;
    padding: .5em 0 2%;
}

header .masthead {
    padding: 0;
    display: flex;
    justify-content: space-between;
}

header .masthead-logo,
header .masthead-logo a {
    text-align: left;
    color: white;
    font-weight: 400;
    text-transform: none;
    margin: 0;
}

header .social-icons {
    display: none;
}



/*
header h2 {
    font-size: 1.5em;
	font-weight: 700;
    margin-top: 40px;
	text-align: center;
}
*/

header p {
    /*
    margin-top: 20px;
	text-align: center;
	*/
}

@media (min-width: 480px) {
    /* header { margin-bottom: 100px; } */
    
    /* header h2 { margin-top: 80px; } */
}


.menu { 
    display: none;
    margin: 10px 0 0;
    padding: 0;
	text-align: center;
	border: 1px solid;
}

.toggle-menu {
    font-size: 30px;
    line-height: 1;
    margin-left: 30px;
}

.show-menu .toggle-menu { 
    text-decoration: line-through; 
}

.menu ul {
    display: none;
    padding: 0;
}

.menu li {
    line-height: 1.5;
    text-align: center;
    border-top: 1px dashed #fff;
    position: relative;
    background: #F76636;
}

.menu > li {
    border: 1px solid #fff;
}

.menu ul a:first-child { 
    font-style: italic; 
}

.menu a,
.menu .nav-search {
    padding: 3px 30px;
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.menu a.vdl-nav-toggle {
    position: absolute;
    right: 0;
    padding: 3px 5px;
    top: 0;
    font-style: normal;
    border-left: 1px solid;
    background: #F76636;
}

.menu a:hover {
    background-color: #dd3e09;
}

.menu a.vdl-nav-toggle:hover {
    text-decoration:none;
}

.nav-search i:hover,
.hide-sm.nav-search:hover {
    cursor: pointer;
}

.hide-sm.nav-search:hover {
    background-color: #dd3e09;
}

@media ( min-width: 768px ) {
    
    header {
        padding-bottom: 0;
    }

    header .masthead {
        padding: 2em 0 2.5em;
    }

    header .social-icons {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
    }
    
    header .social-icons li + li {
        margin-left: 13px;
    }
    
    header .social-icons a {
        color: white;
    }

    .toggle-menu { display: none; }
    
    .menu { 
    	display: block !important;
    	border: none;
    	margin: 0;
    }

    .menu li { 
        line-height: 1;
        border: none;
        background: none;
    }
    
    .menu a {
        padding: 5px 15px 10px;
    }
    
    .menu li li {
        font-style: normal;
        background: #F76636;   /* This is the lightest that even comes close to an accessibility pass */
    }
    
    .menu > li > ul > li {
        border: 2px solid #fff;
    }
    
    .menu > li > ul > li li {
        border-top: 1px dashed #fff;
    }
    
    .menu > li { display: inline-block; }
    .menu > li + li { 
        border-left: 1px solid;
    }

    .menu > .page_item_has_children > a:after,
    .menu > .menu-item-has-children > a:after { 
        content: " \276f";
        transform: rotate(90deg);
        display: inline-block;
        margin-left: 8px;
    }

    .menu ul {
        position: absolute;
        display: none;
        top: 100%;
        width: calc(100% + 72px);
    }
    
    .menu > li > ul {
        font-size: 0.9em;
        border: 2px solid #f9dacf;
    }

    .menu li ul:before {
        content: "";
        display: block;
        margin-left: -16px;
        position: absolute;
        left: 50%;
        top: -10px;
        width: 0;
        height: 0;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-bottom: 8px solid #f9dacf;
    }

    .menu ul a {
        color: #fff;
        display: block;
        padding: 12px;
        text-align: center;
        font-size: 13px;
    }
    
    .menu ul a:first-child { 
        font-style: normal; 
    }
    
    .menu ul .page_item_has_children > a:first-child,
    .menu ul .menu-item-has-children > a:first-child {
        padding-right: 44px;
    }

    .menu ul a:hover { color: #fff; }
    
    .menu li ul li a:hover {
        background-color: #dd3e09;
    }
    
    .menu > li:hover > ul {
        display: block;
        left: -36px;
        z-index: 101;
    }
    
    .menu ul li ul {
        position: relative;
        margin: 0;
        padding-left: 0;
        top: 100%;
        width: 100%;
    }
    
    .menu ul li ul:before {
        border-color: transparent;
        border-right-color: #111;
        left: 14px;
        top: 18px;
    }

    .menu ul li:hover > ul {
        left: 0;
    }
    
    .menu > li > .vdl-nav-toggle {
        display: none;
    }
    
    .menu a.vdl-nav-toggle {
        position: absolute;
        top: 0;
        right: 0;
        padding: 11px;
        color: #fff;
        height: 100%;
        max-height: 100%;
        border: none;
    }
    
    .menu .nav-search {
        padding: 0;
        display: inline-block;
    }

}

.nav-search-form {
    display: none;
}

.show-menu .nav-search-form {
    display: block;
}

.nav-search-form form {
	text-align: center;
    margin-top: 10px;
    background: #f76636;
    border-radius: 1px;
    padding: 5px;
    border: 2px solid #fff;
	display: none;
}

.nav-search-form input[type="text"] {
    display: inline-block;
    width: calc(100% - 48px);
    padding: 12px;
    font-size: 14px;
    margin: 0;
    border-radius: 1px 0 0 1px;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    border-left: 48px solid #fff;
}

.nav-search-form input[type="submit"] {
	display: inline-block;
    width: 48px;
    padding: 12px;
    border-radius: 0 1px 1px 0;
    border: 0;
    border-left: 2px solid #f76636;
    background: #f76636;
    text-transform: uppercase;
    font-weight: 400;
	color: #fff;
	text-align: center;
}

.nav-search-form input[type="submit"]:hover {
	background: #dd3e09;
	cursor: pointer;
}

@media (min-width: 768px){
	.nav-search-form {
		display: block;
	}
	
	.nav-search-form form {
		margin-top: 0;
		background: none;
		border: none;
		padding: 3em 1em;
	}
	
	.nav-search-form input[type="text"] {
		width: 80%;
		max-width: 400px;
		border: 1px solid #fff;
	}

	.nav-search-form input[type="submit"] {
		width: auto;
		max-width: 20%;
		background: #dd3e09;
		border: 1px solid #fff;
		border-left: none;
	}
	
	.nav-search-form input[type="submit"]:hover {
		background: #f76636;
	}
}

/* -------------------------------------------------------------------------------- */
/*	n.	Page Title
/* -------------------------------------------------------------------------------- */

.title-wrap {
    background-size: cover;
    position: relative;
    width: 100%;
    margin: 0 0 5%;
    padding: 0 0 1%;
}

.title-wrap .title-under {
    /* background: rgb(195, 195, 195); */
    background: #c8c8c8;
    position: absolute;
    padding: 1%;
    width: 95%;
    border-radius: 0 0% 100% 0%;
    overflow: hidden;
    height: 100%;
}

.title-wrap .archive-page-title,
.title-wrap .page-title {
    padding: 5% 15px;
    width: 100%;
    border-radius: 0 0% 100% 0%;
    margin: 0 0 1%;
    background: rgba(253, 253, 253, 0.5);
    position: relative;
}

.title-wrap h1 {
    margin: 0 0 10%;
    width: 80%;
}

.title-wrap .header-item-line {
    margin: 3% 0 0;
}

.title-wrap .page-title h6,
.title-wrap .archive-page-title h6 {
    margin: 1% 0 3%;
}

.title-wrap .page-title .title.has-subtitle,
.title-wrap .archive-page-title .title.has-subtitle {
    margin-bottom: 0;
}

.title-wrap .page-title h5,
.title-wrap .archive-page-title h5 {
    margin: 1% 55% 3% 0;
    font-size: 15pt;
}

.title-wrap .page-title h5 span.vdl-date,
.title-wrap .archive-page-title h5 span.vdl-date {
    font-family: 'Crimson Text', serif;
    display: block;
    margin-top: 10px;
}
    
@media (min-width: 600px){
    .title-wrap .title-under {
        width: 85%;
    }
    .title-wrap .archive-page-title,
    .title-wrap .page-title {
        padding: 5% 8%;
        width: 90%;
    }
    
    .title-wrap h1 {
        width: 90%;
    }
    
    .title-wrap .page-title h5,
    .title-wrap .archive-page-title h5 {
        font-size: 21pt;
    }
    

}

/* -------------------------------------------------------------------------------- */
/*	4.	Blog
/* -------------------------------------------------------------------------------- */

/*
.post:before,
.comments:before,
.comment-respond:before,
.comments .comment-respond:after,
.pagination:before,
footer:before {
	display: block;
	height: 16px;
	margin: 30px auto;
	content: "-•-•-•-";
	text-align: center;
	font-size: 16px;
	line-height: 16px;
}

@media ( min-width: 480px) {
    .post:before,
    .comments:before,
    .comment-respond:before,
    .comments .comment-respond:after,
    .pagination:before,
    footer:before {
        margin: 50px auto;
    }
}

@media ( min-width: 768px) {
    .post:before, 
    .comments:before, 
    .comment-respond:before, 
    .comments .comment-respond:after, 
    .pagination:before, 
    footer:before {
        margin: 80px auto;
    }
}
*/

.title {
    /*
    line-height: 1.4;
	background: #f7f7f7;
	border-radius: 2px;
	padding: 15px;
	margin-left: -15px;
	margin-right: -15px;
	min-width: calc(50% + 15px);
	*/
}

.has-featured-image .title {
    /*
    position: absolute;
    display: inline-block;
    z-index: 10;
    background: rgba(247,247,247, 0.95);
    margin-top: 15px;
    */
}

.featured-image {
    /*
    display: block;
    margin: 0 -15px 30px;
    position: relative;
    width: calc(100% + 30px);
    */
}

.meta {
    color: #333;
	margin-top: 4%;
}

.post,
.archive-page-title {
    /*
    padding: 0 15px;
    position: relative;
    */
}

.post .meta p { 
	line-height: 1.55;
    margin: 0 0 5px;
}

span.sep { margin: 0 10px; }

.meta p:first-child + p { 
    /* margin-top: 15px; */
}

.meta a,
.meta a:hover { color: #777; }

.meta .meta-highlight-links a,
.meta .meta-highlight-links a:hover {
    color: #ec6637;
}

.sticky {}

.archive .post h5,
.archive .post h6,
.search .post h5,
.search .post h6 {
    margin: 15px 0;
}

.archive .post .meta,
.search .post .meta {
    margin: 15px 0 5%;
}

.archive .post,
.search .post {
    border-bottom: 1px solid #ddd;
}

.archive .post:last-child,
.search .post:last-child {
    border-bottom: none;
}

.title a,
.title a:hover {
    color: inherit;
    text-decoration: none;
}

.title-prefix {
    font-size: 15pt;
    border-bottom: 2px solid;
    border-radius: 1px;
}

.vdl-post-top h6 {
    margin: 4% 0 8%;
}

.single-vdl-event .vdl-post-top h6 {
    margin-bottom: 0;
}

.vdl-post-top {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.vdl-awards-page .vdl-post-top h5 {
    margin: 10px 0 0;
}
    
.archive .vdl-post-top h5,
.search .vdl-post-top h5,
.vdl-member-item .vdl-post-top h5 {
    margin-bottom: 21pt;
}

.archive .post .vdl-post-top,
.search .post .vdl-post-top,
.vdl-member-item .vdl-post-top {
    margin-bottom: 2%;
}

@media ( min-width: 480px) {
    span.sep { margin: 0 15px; }
}

@media ( min-width: 600px) {
    .vdl-post-top {
        display: block;
    }
    
    .vdl-post-top h6 {
        margin: 4% 0;
    }
    
    .single-vdl-event .vdl-post-top h6 {
        margin-bottom: 0;
    }
    
    .vdl-awards-page .vdl-post-top h5 {
        margin-bottom: 21px;
    }
    
}


/* -------------------------------------------------------------------------------- */
/*	5.	Post Content
/* -------------------------------------------------------------------------------- */

.content {
    overflow: auto;
    word-wrap: initial;
}

/*.content * { max-width: 100%; }*/

.content a { border-bottom: 1px solid #111; }

.content a:hover { 
    border-color: #666;
    color: #666;
    text-decoration: none; 
}

em {
    font-style: italic;
}

.post {
    overflow: auto;
}

.post p { 
	line-height: 1.55;
	
}

.single .post .content p {
    margin-bottom: 30px; 
}

.post p:last-child { margin-bottom: 0; }

/*
.archive-page-title h1,
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    font-weight: 700;
	margin-bottom: 30px;
}
*/

.post hr {
	border: none;
	/*margin: 40px 0;*/
    text-align: center;
}

.post hr:before { content: "***"; }

.content > ol,
.content > ul {
    margin-bottom: 30px;
}

.post ol,
.post ul {
    /* margin-left: 1.5rem; */
}

.post ul { list-style: disc; }
.post ul ul { list-style: circle; }
.post ul ul ul { list-style: square; }

.post ol { list-style: decimal; }
.post ol ol { list-style: lower-alpha; }
.post ol ol ol { list-style: lower-roman; }

.post li {
    line-height: 1.5;
	margin-top: 0.5em;
}

dd,
dt {
	line-height: 1.5;
}

dd + dt { margin-top: 15px; }

pre {
    overflow: auto;
}

pre, code {
    font-family: monospace;
}


.post .featured-image {
    border: 2px solid #f76636;
    padding: 1%;
    background: #f1f2f2;
    margin: 8% 0 4%;
    order: 10;
}

.post .featured-image img {
    width: 100%;
}

.post-type-archive-vdl-event .post .featured-image,
.archive.tax-vdl_event_cat .post .featured-image {
    margin-top: 0;
}

.post .img-line {
    display: inline-block;
    width: 25%;
    height: 2px;
    border-radius: 1px;
    margin: 10px 0;
    background: #333;
}

@media (min-width: 600px) {
    .post .featured-image {
        float: right; 
        margin: 0 0 5% 5%;
        order: initial;
    }
}

/* Quotes ----------------------------- */

blockquote {
	border-left: 1px solid #ccc;
    margin: 0 0 30px 0;
    padding: 0 0 0 30px;
}

blockquote p { font-style: italic; }

blockquote cite:before { content: "— "; }


/* Inputs ----------------------------- */

.archive .post.search-form-bottom {
    margin-top: 5%;
    border: 0;
}

fieldset {
    border: 1px solid #ddd;
	padding: 25px;
}

fieldset.search-form {
    background: #f1f2f2;
    border: none;
}

fieldset legend {
    font-size: 0.9em;
    font-style: italic;
	padding: 0 15px;
}

label {
	font-size: 0.9em;
    font-style: italic;
    margin-bottom: 10px;
}

textarea,
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="number"] {
    border: 1px solid #ddd;
    color: #111;
	display: block;
	font-size: 0.9em;
    margin: 0 0 15px 0;
    padding: 15px;
    width: 100%;
}

textarea {
    line-height: 1.5;
	height: 200px;
}

input[type="button"],
input.button,
input[type="submit"] {
	background: #111;
    border: none;
    color: #fff;
    display: inline-block;
	font-size: 14px;
    padding: 14px 24px;
	-moz-appearance: none;
	-webkit-appearance: none;
}

input[type="button"]:hover,
input.button:hover,
input[type="submit"]:hover {
	background: #333;
	cursor: pointer;
}

.post button,
.post input[type="button"],
.post input[type="submit"],
.post .button,
.vdl-links a,
.vdl-links input[type="submit"],
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    display: inline-block;
    border: 2px solid #ec6637;
    color: #333;
    border-radius: 1px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    background-color: #fff; 
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    padding: 7px;
    margin-right: 5px;
}

.post button,
.post input[type="button"],
.post input[type="submit"],
.post .button,
.vdl-links a,
.vdl-links input[type="submit"],
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    padding: 10px;
    margin-right: 10px;
    font-size: 15pt;
}

.post button:hover,
.post input[type="button"]:hover,
.post .button:hover,
.post input[type="submit"]:hover,
.vdl-links a:hover,
.vdl-links input[type="submit"]:hover,
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
    text-decoration: none;
    color: #fff;
    background: #dd3e09;
}

.meta a.button {
    margin-top: 15px;
}

.vdl-links a:last-child {
    margin-right: 0;
}

.vdl-links form {
    display: inline-block;
}

.vdl-links label {
    font-size: 15pt;
    font-weight: 700;
    text-transform: uppercase;
    font-style: unset;
}

.vdl-links select {
    background: #fff;
    display: inline-block;
    border: 2px solid #ec6637;
    color: #333;
    border-radius: 1px;
    padding: 10px;
    margin-right: 0;
    font-size: 15pt;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.vdl-meta-radio {
    margin-bottom: 8px;
    display: flex;
    align-items: start;
}

.vdl-meta-radio input {
    margin-right: 7px;
}

.vdl-meta-radio-text {
    display: inline;
}

/* Tables ----------------------------- */

table {
	border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 0.9em;
    margin-bottom: 30px;
    max-width: 100%;
    overflow: scroll;
    width: 100%;
}

th,
td {
    line-height: 1.4;
	margin: 0;
	overflow: visible;
    padding: 2.5% 5px;
    vertical-align: top;
}

table.condensed th,
table.condensed td {
    padding: 0.75% 4px;
}

table.condensed button,
table.condensed .button,
table.condensed input[type="button"] {
    padding: 5px;
    font-size: 12pt;
    margin: 0;
}

caption {
    border-bottom: 1px solid #ddd;
	font-size: 13px;
	font-weight: 700;
    padding-bottom: 2.5%;
	text-align: center;
	text-transform: uppercase;
}

thead {
	vertical-align: bottom;
	white-space: nowrap;
}

th { 
	border-bottom: 1px solid #ddd;
	font-weight: 700; 
}

tbody > tr:nth-child(even) { background-color: #f6f6f6; }

table.flextable .flexlabel {
    display: none;
}

@media (min-width: 1051px){
    table.flextable .numeric {
        text-align: center;
    }
}

@media (max-width: 1050px){
    table.flextable thead {
        display: none;
    }
    table.flextable tr {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    table.flextable td {
        width: 50%;
    }
    
    table.flextable td:first-child {
        width: 100%;    
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-size: 2.5em;
        color: #ec6637;
    }
    
    table.flextable td:nth-child(2) {
        width: 100%;    
        font-family: 'Crimson Text', serif;
        font-style: italic;
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    
    table.flextable td:last-child {
        width: 100%;    
        margin-top: 5px;
    }
    
    table.flextable .flexlabel {
        display: inline;
    }
    
    table.flextable td:first-child .flexlabel,
    table.flextable td:nth-child(2) .flexlabel {
        display: none;
    }
    
    table.flextable a {
        width: 100%;
        text-align: center;
    }
    

}

@media (max-width: 480px){
    table.flextable tr {
        flex-direction: column;
    }
    
    table.flextable td {
        width: 100%;
    }
}

/* -------------------------------------------------------------------------------- */
/*	6.	Comments
/* -------------------------------------------------------------------------------- */


.comment { margin-top: 40px; }

.comment a { text-decoration: underline; }

.commentlist > .comment:first-child { margin-top: 0; }

.comment .comment { margin: 40px 0 0 30px; }

.comment-author a,
.comment-meta a,
.comment .reply a {
    text-decoration: none;
}

.comment-author {
    padding-left: 50px;
    position: relative;
}

footer.comment-meta::before {
    padding-right: 50px;
}

.bypostauthor .comment-author cite { font-weight: 700; }

.comment-author .says { display: none; }

.comment-author .avatar {
    position: absolute;
        left: 0;
        top: 1px;
    width: 40px;
}

.comment-awaiting-moderation {
    font-size: 14px;
    font-style: italic;
    padding-left: 50px;
}

.comment-meta { 
    font-size: 14px;
    margin: 2px 0 20px 0;
    padding-left: 50px;
}

.comment-meta a,
.comment-meta a:hover { color: #999; }

.comment .reply {
    font-size: 14px;
    font-style: italic;
    margin-top: 15px;
    text-align: right;
}

.comment .reply a { color: #999; }
.comment .reply a:hover { text-decoration: underline; }

/* Respond ---------------------------- */

.comment-respond p + p { margin-top: 20px; }

.post .comment-reply-title { text-align: center; }

.logged-in-as { 
    margin: -10px 0 30px; 
    text-align: center;
}

.comment-respond label { display: block; }


/* -------------------------------------------------------------------------------- */
/*	7.	Pagination
/* -------------------------------------------------------------------------------- */


.pagination { 
    text-align: center; 
}
.pagination a,
.pagination .page-info { 
    margin-top: 5%; 
    display: inline-block;
}
.pagination-top a {
    margin-bottom: 5%; 
    margin-top: 0;
}
.pagination * + * { margin-left: 30px; }
.pagination a + a { margin-left: 20px; }

@media (min-width: 480px) {
    .pagination a + a { margin-left: 30px; }    
}

/* -------------------------------------------------------------------------------- */
/*	n.	Homepage
/* -------------------------------------------------------------------------------- */


.home .flex-container > .wrapper {
    padding-bottom: 0;
}

.home-item-line,
.header-item-line {
    display: inline-block;
    width: 25%;
    height: 2px;
    border-radius: 1px;
    margin-bottom: 5px;
    background: #333;
}

.home-slider {
    margin: 0;
    height: 450px;
}

.home-slider-item {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: none;
}

.home-slider .home-slider-item:first-child,
.home-slider.slick-initialized .home-slider-item {
    display: inline-block;
}

.home-slider-img {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    top: 0;
    background-color: #333;
}

.home-slider-bg {
    z-index: 99;
    position: absolute;
    background: #c8c8c8;
    opacity: 0.9;
}

.home-slider-txt {
    position: absolute;
    z-index: 100;
    background: rgba(255, 255, 255, 0.3);
}

.home-slider-bg {
    width: 100%;
    height: 100%;
    border-radius: 0 0 100% 0;
    left: -5%;
    top: 0;
}


.home-slider-txt {
    width: 100%;
    height: 95%;
    padding: 0 10% 0 15px;
    border-radius: 0 0 100% 0;
    margin: 0;
}


@media (min-width: 768px){
    .home-slider-bg {
        width: 70%;
        height: 140%;
        border-radius: 0 70% 70% 0;
        left: 0;
        top: -30%;
        opacity: 0.94;
    }
    
    .home-slider-txt {
    	width: 73%;
        height: 132%;
        padding: 18% 6% 4% 15px;
        border-radius: 0 70% 70% 0;
        margin: -18% 0 -4%;
    }
}

@media (min-width: 880px){
    .home-slider-bg {
        width: 60%;
        height: 140%;
        border-radius: 0 55% 50% 0;
        left: 0;
        top: -20%;
    }
    .home-slider-txt {
        width: 63%;
        height: 132%;
        padding: 12% 6% 4% 15px;
        border-radius: 0 55% 50% 0;
        margin: -12% 0 -4%;
    }
}

.home-slider-txt a,
.home-slider-txt a:hover {
    text-decoration: none;
    display: block;
}

.home-slider-txt h1 {
    margin: 2% 0;
    font-size: 28pt;
}

.home-slider-txt h5 {
    margin: 2% 0;
    font-size: 14pt;
}

.home-slider-txt .home-item-line,
.title-wrap .header-item-line {
    background: #333;
    width: 10%;
}

.home-slider-txt h6 {
    margin: 10% 0 3%;
    font-size: 12pt;
}

.home-slider-txt h6.home-slider-btn {
    display: inline-block;
    margin: 5% 0;
    border: 2px solid #f76636;
    padding: 10px 15px;
    border-radius: 1px;
}

.home-slider-txt .home-slider-link:hover h6.home-slider-btn {
    text-decoration: none;
    background-color: #f76636;
    border-color: #dd3e09;
    color: #fff;
}


@media (min-width: 600px){
    .home-slider-txt h1 {
        font-size: 36pt;
    }
}


@media (min-width: 1000px){
    .home-slider-txt h1 {
        font-size: 40pt;
    }
}

.home-icons {
    display: flex;
    justify-content: space-around;
    margin: 2% 0 8%;
}

.home-icon {
    flex: 1;    
}

.home-icon a {
    display: block;
}

.home-icon a:hover {
    text-decoration: none;
    cursor: pointer;
}

.home-icon a:hover img {
    background-color: #f1f2f2;
}

.home-icon a img {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin: 5% auto 5px;
}

.home-icon h3 {
    font-size: 10pt;
    margin: 5px;
    font-weight: 400;
}

@media (min-width: 768px){
    .home-icon {
        flex: auto;    
    }
    
    .home-icon a img {
        width: 70px;
        height: 70px;
        border-radius: 35px;
    }
    
    .home-icon h3 {
        font-size: 12pt;
    }
}

.home-showing-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.home-nowshowing h2 {
    margin-bottom: 15px;
    margin-top: 5%;
}

.home-showing-item {
    width: 100%;
    min-height: 250px;
    background-repeat: no-repeat;
    border: 2px solid #f76636;
    margin-bottom: 2%;
    color: #333;
    background-size: cover;
    border-radius: 1px;
}

.home-showing-item a,
.home-showing-item h4,
.home-showing-item h5,
.home-showing-item h6 {
    color: inherit;
    margin: 0;
}

.home-showing-item h4 {
    font-size: 18pt;
}

.home-showing-item h6 {
    font-size: 15pt;
    text-transform:none;
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-weight: 200;
}

.home-showing-item h6.ad-hover {
    display: none;
}

.home-showing-item:hover h6.ad-hover {
    display: block;
}

.home-showing-item:hover h6.ad-nohover {
    display: none;
}

.home-showing-item h5,
.home-showing-item .more-info,
.home-showing-item .home-item-line {
    display: none;
}

.home-showing-item a {
    display: block;
    height: 100%;
    padding: 5%;
    position: relative;
}

.home-showing-item .home-item-txt {
    background: #fff;
    padding: 3%;
    margin: 0 -5%;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.home-showing-item a:hover {
    text-decoration: none;
    background-color: rgba(233, 82, 31, .9);
}

.home-showing-item:hover {
    color: #fff;
}

.home-showing-item:hover .home-item-txt {
    background: none;
    position: relative;
    padding: 0 5%;
}

.home-showing-item:hover h4 {
    margin: 5px 0 12px;
}

.home-showing-item:hover .home-item-line {
    display: inline-block;
    background: #fff;
}

.home-showing-item:hover h5 {
    display: block;
    font-size: 15pt;
}

.home-showing-item:hover h6 {
    padding-bottom: 50px;
}

.home-showing-item:hover .more-info {
    display: inline-block;
    border: 2px solid #fff;
    position: absolute;
    bottom: 5%;
    padding: 10px;
}

@media (min-width: 500px){
    .home-showing-item {
        width: 49.5%;
        margin-bottom: 1%;
        max-height: 250px;
        overflow: hidden;
    }
    
    .home-showing-item:hover .home-item-txt {
        max-height: 140px;
        overflow: hidden;
    }
}

@media (min-width: 768px){
    .home-showing-item {
        width: 33%;
        margin-bottom: 0.5%;
    }
}

.home-news {
    margin-bottom: 8%;
}

.home-news h2 {
    margin-bottom: 15px;
    margin-top: 5%;
}

.home-news .home-item-line{
    background: #333;
}

.home-news .home-news-item {
    background: #f1f2f2;
    border-radius: 1px;
    margin-bottom: 2%;
}

.home-news .home-news-item a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.home-news .home-news-item a,
.home-news .home-news-item a:hover {
    text-decoration: none;
}

.home-news .home-news-img {
    width: 37.5%;
    background: #f1f2f2;
    padding: 15px 0 15px 15px;
}

.home-news .home-news-img img {
    width: 100%;
}

.home-news .home-news-txt {
    width: 61.5%;
    padding: 2%;
}

.home-news .home-news-item h4 {
    margin: 5px 0 12px;
    font-size: 18pt;
}

.home-news .home-news-item h5 {
    margin: 0;
    font-size: 15pt;
}

.home-news .home-news-fb {
    border-radius: 1px;
    min-height: 350px;
    background: #f1f2f2;
}

@media (min-width: 768px){
    .home-news-items {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .home-news .home-news-posts {
        width: 66.5%;
    }
    
    .home-news .home-news-item {
        margin-bottom: 1%;
    }
    
    .home-news .home-news-fb {
        width: calc(33% - 2px);
        margin-bottom: 1%;
    }
}

.home-sponsors {
    margin: 0 -15px;
    background: #e2e2e2;
    min-height: 200px;
    padding: 15px;
}

.home-sponsors > h2 {
    margin-top: 0;
}

.home-sponsors a,
.home-sponsors a:hover {
    text-decoration: none;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.home-sponsor-items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.home-sponsor-items .sponsor-item {
    margin: 2%;
    flex-basis: 25%;
    flex-shrink: 1;
    flex-grow: 1;
    background: #fff;
    padding: 1%;
    border-radius: 1px;
    border-bottom: 2px solid #c8c8c8;
}

.home-sponsor-items .sponsor-item img {
    margin: auto;
    max-height: 130px;
}

.home-sponsor-items .sponsor-item h6 {
    text-align: center; 
}

@media (min-width: 600px){
    .home-sponsor-items {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

}



/* -------------------------------------------------------------------------- */
/*	n.	VDL awards
/* -------------------------------------------------------------------------- */

.awards-award .content .awardee {
    overflow: auto;
}

.awards-award .awardee  ~ .awardee,
.awards-award .awardee-silver {
    padding-top: 5%;
    border-top: 1px solid #ddd;
}

.awards-award .silver-title {
    padding-top: 5%;
    border-top: 1px solid #ddd;
    margin-top: 0;
}

.awards-gold-star i {
    color: #DAA520;
    font-size: 2em;
    vertical-align: sub;
}

.awards-silver-star i {
    color: silver;
    font-size: 2em;
    vertical-align: sub;
}

.awards-entry-star i {
    color: #f76636;
    font-size: 2em;
    vertical-align: sub;
}

/* -------------------------------------------------------------------------- */
/*	n.	Banner ads
/* -------------------------------------------------------------------------- */
.vdl-banner-ad {
    margin: -5% 0 5% 0;
}

.vdl-banner-ad a {
    padding: 15px;
    display: block;
    background-color: #c8c8c8;
}

.vdl-banner-ad a:hover {
    text-decoration: none;
    background-color: #dd3e09;
}

.vdl-banner-ad h6 {
    margin: 0;
    font-size: 10pt;
}

.vdl-banner-ad h4 {
    margin: 5px 0;
    font-size: 15pt;
}

.vdl-banner-ad:hover h6,
.vdl-banner-ad:hover h4 {
    color: #fff;    
}

.vdl-banner-ad h5 {
    margin: 0;
    font-size: 15pt;
}

.vdl-banner-ad:hover h5 {
    display: none;
}

.vdl-banner-ad button {
    display: none;
}

.vdl-banner-ad:hover button {
    display: inline-block;
    border: 2px solid #fff;
    border-radius: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background-color: #dd3e09;
}

@media (min-width: 600px){
    .vdl-banner-ad a {
        padding: 2% 8%;
    }
}

/* -------------------------------------------------------------------------- */
/*	n.	Woocommerce
/* -------------------------------------------------------------------------- */

.product-type-vdl-membership > .onsale,
.product-type-vdl-membership > a > .onsale {
    display: none;
}

.product .related.products {
    width: 100%;
    display: table;
}

.inner-wrap header {
    background-color: inherit;
    color: inherit;
}

.woocommerce ul.products li.product .price {
    color: #333;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: #dd3e09;
}

.product_meta > span {
    margin: 1em 0;
    display: block;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    color: #f5f6f6;
    background: #444;
    border-top: 3px solid #ec6637;
}

.woocommerce-message {
    border-top-color: #dd3e09;
}

.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
    color: #f5f6f6;
    border-color: #f5f6f6;
}

.woocommerce-error a:hover, .woocommerce-info a:hover, .woocommerce-message a:hover {
    color: #fff;
    border-color: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    font-weight: bold;
}

.woocommerce .product > .entry-summary > h6 {
    margin: 0 0 1em;
}

.woocommerce table.shop_table a.button {
    margin-bottom: 10px;
}

.woocommerce table.shop_table a.button:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------------- */
/*	n.  Adjudicator portal
/* -------------------------------------------------------------------------------- */

.adjudicator-portal .entry-row td {
    width: 40%;
}

.adjudicator-portal .entry-row td:last-child {
    width: 20%;
}

.adjudicator-portal .entry-detail {
    margin-bottom: 8px;
    padding-right: 8px;
}

.adjudicator-portal h2 small {
    font-size: 50%;
}

/* -------------------------------------------------------------------------------- */
/*	8.	Footer
/* -------------------------------------------------------------------------------- */

footer .wrapper {
    padding: 0 15px;
}

footer { 
	padding: 15px 0;
	text-align: center;
	background: #333;
	color: #f1f1f1;
	font-size: 80%;
}

footer p { 
    line-height: 1;
	text-align: center; 
	font-size: 12.8px;
}

footer p + p { 
    font-style: italic;
}

footer a,
footer a:hover,
footer a:visited {
    color: #f1f1f1;
}

#footer-main {

}

#footer-menus {
    display: flex;
    padding: 2% 0;
    margin-bottom: 3%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-menu-container {
    padding: 0 0 15px;
    flex: 0 0 46%;
}

#footer-menus ul {
    margin: 0;
    padding: 0;
}

#footer-menus li {
    margin-bottom: 4px;
}

#footer-menus li > a + a {
    margin-left: 5px;
}

#footer-logo {
    padding: 2%;
}

#footer-logo img {
    margin: 0 auto;
    width: 300px;
}

@media (min-width: 600px){
    #footer-menus {
        flex-wrap: nowrap;
    }
    
    .footer-menu-container {
        padding: 0 2.9%;
        flex: 1 1 25%;
    }
    
}

@media (min-width: 768px){
    footer .wrapper {
        padding: 0;
    }
    
    #footer-main {
        display: flex;
        padding: 0 15px;
    }

    #footer-menus {
        width: 70%;
    }
    

    #footer-logo {
        width: 30%;
    }
}

@media (min-width: 920px){
    .footer-menu-container {
        width: auto;
    }
}

@media ( min-width: 480px ) {

}
