/*
Theme Name: Truckline
Theme URI: https://thriveweb.com.au
Author: Kurtis @ Thrive Digital
Author URI: https://thriveweb.com.au
Version: 1.0.0
*/



/*--------------------------------------------------------------
Elements
--------------------------------------------------------------*/
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    background: #001446;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: #fff;
    color: #001446;
    font-family: 'Bai Jamjuree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.618;
    overscroll-behavior: none;
}

::-moz-selection {
    background: #0097D6;
    color: #fff;
}
::selection {
    background: #0097D6;
    color: #fff;
}

hr {
	background: #eee;
	border: 0;
	height: 1px;
	margin-bottom: 20px;
}

ul,
ol {
	margin: 0 0 20px 20px;
	padding: 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin: 0 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 20px 20px;
}

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

table {
	margin: 0 0 20px;
	width: 100%;
}

p {
	margin: 0 0 20px;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

pre {
    background: #eee;
    color: #333;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
	max-width: 100%;
	overflow: auto;
	padding: 20px;
}

embed,
iframe,
object {
	max-width: 100%;
}

.clear:before,
.clear:after {
	content: "";
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}



/*--------------------------------------------------------------
Animations
--------------------------------------------------------------*/
.transition, a, input, button, textarea {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.animate {
	opacity: 0;
}

.animate.fade-left {
	opacity: 0;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: translate3d(-50px, 0px, 0px);
	-ms-transform: translate3d(-50px, 0px, 0px);
	transform: translate3d(-50px, 0px, 0px);
}

.animate.fade-right {
	opacity: 0;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: translate3d(50px, 0px, 0px);
	-ms-transform: translate3d(50px, 0px, 0px);
	transform: translate3d(50px, 0px, 0px);
}

.animate.fade-up {
	opacity: 0;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: translate3d(0px, 50px, 0px);
	-ms-transform: translate3d(0px, 50px, 0px);
	transform: translate3d(0px, 50px, 0px);
}

.animate.in-view {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-ms-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

@keyframes fadein {
	from { opacity: 0; }
	to { opacity: 1; }
}

@-moz-keyframes fadein {
	from { opacity: 0; }
	to { opacity: 1; }
}

@-webkit-keyframes fadein {
	from { opacity: 0; }
	to { opacity: 1; }
}

@-ms-keyframes fadein {
	from { opacity: 0; }
	to { opacity: 1; }
}

@-o-keyframes fadein {
	from { opacity: 0; }
	to { opacity: 1; }
}



/*--------------------------------------------------------------
Wordpress
--------------------------------------------------------------*/
/* Menus */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 20px;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/* Alignments */
.alignleft {
	float: left;
	margin-right: 20px;
}

.alignright {
	float: right;
	margin-left: 20px;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Comments */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Captions */
.wp-caption {
	margin-bottom: 20px;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 10px 0;
}

.wp-caption-text {
	text-align: center;
}



/*--------------------------------------------------------------
Helpers
--------------------------------------------------------------*/
.ta-left { text-align: left; }
.ta-center { text-align: center; }
.ta-right { text-align: right; }

.float-left { float: left; }
.float-right { float: right; }

.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }

.none { display: none; }
.inline { display: inline; }
.block { display: block; }
.inline-block { display: inline-block; }

.vertical-align {
	display: inline-block;
	vertical-align: middle;
}

.align-middle {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Inline List */
.inline-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.inline-list li {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

.inline-list li:first-child { margin-left: 0; }



/*--------------------------------------------------------------
Titles
--------------------------------------------------------------*/
h1, h2, h3, h4 {
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
	margin: 0 0 30px;
}

h1 {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
	font-size: 38px;
}

h3 {
    font-size: 22px;
    color: rgba(0, 20, 70, 0.85);
    text-transform: uppercase;
}

h4 {
    font-size: 16px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }
}
@media (max-width: 400px) {
    h1 {
        font-size: 30px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
    }
}



/*--------------------------------------------------------------
Links/Buttons
--------------------------------------------------------------*/
/* Links */
a {
    color: #0097D6;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    font-weight: 600;
    outline: none;
    display: inline-block;
    padding: 0 30px;
    font-size: 13px;
    background: transparent;
    border: 1px solid #103073;
    border-radius: 3px;
    color: #103073;
    text-transform: uppercase;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    position: relative;
}

.button.blue,
button.blue,
input[type="button"].blue,
input[type="reset"].blue,
input[type="submit"].blue {
    background: #103073;
    color: #fff;
}

.button.white,
button.white,
input[type="button"].white,
input[type="reset"].white,
input[type="submit"].white {
    background: #fff;
    color: #103073;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button.blue:hover,
button.blue:hover,
input[type="button"].blue:hover,
input[type="reset"].blue:hover,
input[type="submit"].blue:hover,
.button.white:hover,
button.white:hover,
input[type="button"].white:hover,
input[type="reset"].white:hover,
input[type="submit"].white:hover {
	background: #0097D6;
	border-color : #0097D6;
    color: #fff;
    text-decoration: none;
}

.btn-loader {
	display: none;
	position: absolute;
	left: calc(50% - 6px);
    top: calc(50% - 6px);
}



/*--------------------------------------------------------------
Forms/Inputs
--------------------------------------------------------------*/
/* Inputs */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
    font-size: 14px;
	outline: none;
	display: inline-block;
	width: 100%;
	background: #F2F3F6;
    padding: 0 10px;
    height: 30px;
    border: 1px solid #F2F3F6;
    color: #001446;
	margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}


input[type="number"] {
	padding: 0 0 0 10px;
}

input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
	border-color: #0097D6;
}

textarea {
	height: 120px;
    resize: vertical;
    padding: 10px;
}

::-webkit-input-placeholder { color: rgba(0, 20, 70, 0.85); }
::-ms-input-placeholder { color: rgba(0, 20, 70, 0.85); }
::placeholder { color: rgba(0, 20, 70, 0.85); }

/* Gravity Forms */
.gform_wrapper .gform_title {
    display: none;
}

.gform_wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gform_wrapper .validation_error {
    background: #001446;
    margin: 0 0 20px;
    color: #fff;
    padding: 10px 20px;
    border-left: 3px solid #0097D6;
}

.gform_wrapper .validation_message {
    background: #001446;
    margin: 0 0 20px;
    color: #fff;
    padding: 5px 20px;
    border-left: 3px solid #0097D6;
    text-transform: uppercase;
    font-size: 14px;
}

.gform_wrapper .gfield_label,
.gform_wrapper .hidden_sub_label {
    display: none;
}

.gform_wrapper .gfield_description {
    font-size: 14px;
    text-align: left;
}

.ginput_container_select {
    position: relative;
}

.ginput_container_select:after {
    content: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    padding: 0;
    position: absolute;
    right: 20px;
    top: 6px;
    z-index: 1;
    text-align: center;
    line-height: 48px;
    pointer-events: none;
}



/*--------------------------------------------------------------
Containers/Layout
--------------------------------------------------------------*/
.container,
.container-small, 
.container-large {
    width: 100%;
    padding-right: 20px;
	padding-left: 20px;
	margin-right: auto;
    margin-left: auto;
}

.container {
    max-width: 1240px;
}

.container-small {
    max-width: 840px;
}

.container-large {
    max-width: 1440px;
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
	padding-right: 20px;
	padding-left: 20px;
}

.row {
	margin-right: -20px;
	margin-left: -20px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
	padding-right: 20px;
	padding-left: 20px;
}

.parallax-container {
	overflow: hidden;
}



/*--------------------------------------------------------------
Header
--------------------------------------------------------------*/
.site-header {
    background: rgb(0,20,70);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 25%, rgba(0,20,70,1) 25%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 25%, rgba(0,20,70,1) 25%);
    background: linear-gradient(90deg, rgba(255,255,255,1) 25%, rgba(0,20,70,1) 25%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.fixed-header .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.site-logo {
    flex: 25%;
    margin: 0;
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.site-logo a,
.site-logo svg {
    display: block;
    margin: 0 auto;
    color: #06357A;
    height: 50px;
}

@media (max-width: 600px) {

}



/*--------------------------------------------------------------
Navigation
--------------------------------------------------------------*/
.site-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 75%;
}

.navigation-toggle {
	display: none;
}

.navigation-toggle:hover:before {
    display: none;
}

.site-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.site-navigation li {
	display: inline-block;
    position: relative;
    margin: 0 10px;
}

.site-navigation li a {
    display: block;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 1;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 5px 15px;
}

.site-navigation a:hover:before,
.site-navigation li.current-menu-item a:before,
.site-navigation li.current-menu-ancestor > a:before {
    content: '';
    background: #0097D6;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: skewX(-15deg);
    transform-origin: bottom left;
    width: calc(100% - 22px * 0.26794919);
}

.site-navigation li.menu-item-has-children > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fff;
    margin-left: 10px;
}

.site-navigation ul ul {
	position: absolute;
	top: 22px;
	left: -99999px;
	z-index: 1;
}

.site-navigation ul li:hover ul {
	left: 0;
}

.site-navigation ul ul li {
    margin: 0;
    white-space: nowrap;
    background: #fff;
    width: 100%;
}

.site-navigation ul ul li:nth-child(2n) {
    background: #F2F3F6;
}

.site-navigation ul ul li a {
    padding: 8px 20px;
    color: #001446;
    width: 100%;
}

.site-navigation ul ul li a:hover {
    color: #0097D6;
}

.site-navigation ul ul li a:hover:before {
    background: none;
    color: #0097D6;
}

.site-navigation ul ul li.current-menu-item {
    background: none;
}

.site-navigation ul ul li.current-menu-item a {
    color: #fff;
}

.site-navigation ul ul li.current-menu-item a:before {
    width: calc(100% - 28px * 0.26794919);
    background: #0097D6;
}

.site-nav-buttons a {
    color: #fff;
    border-color: #fff;
    margin: 0 0 0 10px;
}

.site-nav-buttons a.white {
    margin: 0 0 0 30px;
}

.site-nav-buttons a:hover:before {
    display: none;
}

@media (max-width: 1200px) {
	.site-navigation {
		padding: 20px;
	}
	.navigation-toggle {	
		display: block;
		position: relative;
		margin: 0;
		padding: 0;
		width: 25px;
		height: 16px;
		cursor: pointer;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}
	.navigation-toggle span,
	.navigation-toggle span::before,
	.navigation-toggle span::after {
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
		transition: background 0s 0.3s;
	}
	.navigation-toggle span {
		top: 7px;
	}
	.navigation-toggle span::before {
		content: "";
		top: -7px;
		transition-property: top, transform;
		transition-duration: 0.3s, 0.3s;
		transition-delay: 0.3s, 0s;
	}
	.navigation-toggle span::after {
		content: "";
		bottom: -7px;
		transition-property: bottom, transform;
		transition-duration: 0.3s, 0.3s;
		transition-delay: 0.3s, 0s;
	}
	.menu-toggled .navigation-toggle span {
		background: none;
	}
	.menu-toggled .navigation-toggle span::before {
		top: 0;
		transform: rotate(45deg);
		transition-delay: 0s, 0.3s;
	}
	.menu-toggled .navigation-toggle span::after {
		bottom: 0;
		transform: rotate(-45deg);
		transition-delay: 0s, 0.3s;
	}
	.site-navigation ul {
		display: none;
    }
    .site-nav-buttons {
        display: none;
    }
}
@media (max-width: 500px) {
    .site-navigation {
        flex: 50%;
    }
}



/*--------------------------------------------------------------
Mobile Navigation
--------------------------------------------------------------*/
.mobile-navigation {
	display: none;
}

@media (max-width: 1200px) {
	.site {
		position: relative;
		z-index: 1;
		-webkit-transition: transform 0.5s ease;
		-moz-transition: transform 0.5s ease;
		-o-transition: transform 0.5s ease;
		transition: transform 0.5s ease;
	}
	.menu-toggled .site {
		-webkit-transform: translate3d(-300px, 0px, 0px);
		-ms-transform: translate3d(-300px, 0px, 0px);
		transform: translate3d(-300px, 0px, 0px);
	}
	.mobile-navigation {
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		width: 300px;
		background: #001446;
		z-index: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		opacity: 0;
		transition: all ease 0.5s; 
	}
	.menu-toggled .mobile-navigation {
		opacity: 1;
		transition: all ease 0.5s; 
	}
	.fixed-header .mobile-navigation {
		top: 80px;
	}
	.mobile-navigation ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	.mobile-navigation li {
		float: none;
		display: block;
		width: 100%;
	}
	.mobile-navigation a {
		display: block;
        text-transform: uppercase;
        font-size: 14px;
		color: #fff;
        padding: 10px 30px;
        text-decoration: none;
	}
	.mobile-navigation a:hover {
        color: #0097D6;
        text-decoration: none;
    }
    .mobile-navigation ul ul {
        padding-left: 20px;
    }
    .mobile-nav-extra {
        position: fixed;
        bottom: 0;
        width: 300px;
        background: #0097D6;
        text-align: center;
    }
    .mobile-nav-extra ul {
        padding: 0;
    }
    .mobile-nav-extra a {
        color: #fff;
    }
    .mobile-nav-extra a:hover {
        color: #fff;
        background: #06357A;
    }
}
@media (max-height: 992px) {
    .mobile-nav-extra {
        position: static;
    }
}



/*--------------------------------------------------------------
General
--------------------------------------------------------------*/
/* Main */
.site {
	background: #fff;
	position: relative;
	z-index: 1;
}

.fixed-header .site {
	margin-top: 80px;
}

.site-main .default-page {
	padding: 100px 0;
}

/* Banner */
.site-banner {
    position: relative;
}

.site-banner .banner-image {
    display: block;
    height: 220px;
    width: 100%;
}

.home .site-banner .banner-image {
    height: 800px;
}

.site-banner .banner-content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.home .site-banner .banner-content {
    text-align: center;
}

.site-banner .banner-content h1 {
    margin: 0;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.site-banner .banner-content img {
    max-width: 500px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.site-banner .banner-content .button {
    background: #fff;
    font-size: 20px;
    height: auto;
    line-height: 50px;
    border-color: #fff;
    padding: 0 50px;
    margin: 60px 0 0;
}

.site-banner .banner-content .button:hover {
    background: #103073;
    border-color: #103073;
    color: #fff;
}

@media (max-width: 992px) {
    .site-banner .banner-content h1 {
        font-size: 50px;
    }
}
@media (max-width: 768px) {
    .home .site-banner .banner-image {
        height: 480px;
    }
    .site-banner .banner-content img {
        max-width: 240px;
    }
    .site-banner .banner-content .button {
        font-size: 16px;
        line-height: 40px;
        padding: 0 30px;
        margin: 40px 0 0;
    }
}
@media (max-width: 460px) {
    .site-banner .banner-content h1 {
        font-size: 40px;
        word-break: break-word;
    }
}

/* Accordion */
.accordion-entry {
    background: #F2F3F6;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.accordion-entry:nth-child(2n+1) {
    background: #E5E7ED;
}

.accordion-header {
    position: relative;
    cursor: pointer;
    padding: 5px 20px;
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header span {
    text-transform: uppercase;
    font-size: 14px;
    color: #103073;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.accordion-header:hover span,
.accordion-entry.active .accordion-header span,
.accordion-entry:hover .accordion-header i {
    color: #0097D6;
}

.accordion-header i {
    transition: all 0.3s ease;
}

.accordion-entry.active .accordion-header i {
    transform: rotate(-180deg);
    color: #0097D6;
}

.accordion-content {
    transition: all 0.3s ease;

    opacity: 0;
    max-height: 0;
    overflow: hidden;
    display: none;
    padding: 20px 0;
    font-size: 14px;
    background: #fff;
}

.accordion-entry.active .accordion-content {
    opacity: 1;
    max-height: 100vh;
    display: block;
}

/* Logos */
.logos-section {
    padding: 50px 0;
    background: rgba(0, 20, 70, 0.05);
}

.logos-section .swiper-wrapper {
    align-items: center;
}

.logos-section .logos-swiper img {
    max-height: 100px;
    margin: 0 auto;
}



/*--------------------------------------------------------------
Home
--------------------------------------------------------------*/
/* Intro */
.home-intro {
    padding: 160px 0;
    text-align: center;
}

.home-intro h3 {
    margin: 0;
}

.home-intro h1 span {
    color: #0097D6;
}

.home-intro p {
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.home-intro .button-container {
    margin: 40px 0 0;
}

.home-intro .button-container .button {
    margin: 0 5px;
}

/* Region Cards */
.home-regions {
    padding: 0 0 160px;
}

.home-regions-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.home-regions-card {
    flex: 0 0 calc(33.33333% - 20px);
    height: 200px;
    margin: 10px;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-regions-card:hover {
    box-shadow: 0 0 14px 0 #001446;
}

.home-regions-card-overlay {
    background: rgba(0, 20, 70, 0.75);
    width: 100%;
    height: 100%;
}

.home-regions-card:nth-child(2n+2) .home-regions-card-overlay {
    background: rgba(0, 151, 214, 0.75);
}

.home-regions-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.home-regions-card h2,
.home-regions-card a {
	-webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
    margin: 0;
}

.home-regions-card h2 {
    color: #fff;
	-webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    white-space: nowrap;
    padding: 0 20px;
}

.home-regions-card a {
    color: #fff;
    border-color: #fff;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
    transition: opacity 0.2s, transform 0.35s;
    opacity: 0;
}

.home-regions-card:hover h2,
.home-regions-card:hover a {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.home-regions-card:hover a {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
	-webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    opacity: 1;
}

.home-regions-card a:hover {
    background: #fff;
    border-color: #fff;
    color: #001446;
}

@media (max-width: 992px) {
    .home-regions-card {
        flex-grow: 1;
    }
}

/* Leaderboard */
.home-leaderboard {
    padding: 0 0 140px;
    text-align: center;
}

/* News */
.home-news {
    background: #F2F4F6;
    padding: 80px 0;
    text-align: center;
}

.home-news .home-news-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -40px;
    margin-right: -40px;
    text-align: left;
}

@media (max-width: 1400px) {
    .home-news .home-news-row {
        margin-left: -20px;
        margin-right: -20px;
    }
}

/* Fixtures */
.home-fixtures {
    padding: 140px 0 0; 
    text-align: center;
}

.home-fixtures .sp-table-caption {
    display: none;
}

.home-fixtures .sp-event-blocks .team-logo {
    background: #001446;
}

.home-fixtures .sp-event-blocks .team-logo.logo-even {
    background: #0097D6;
}

.home-fixtures .sp-event-blocks .team-logo img {
    -webkit-filter: drop-shadow(0px 0px 8px #fff);
    filter: drop-shadow(0px 0px 8px #fff);
    max-height: 120px;
    max-width: 120px;
    transition: all 0.3s ease;
}

.home-fixtures .sp-event-blocks .team-logo:hover img {
    transform: scale(1.07);
}

.home-fixtures .sp-event-blocks .sp-event-title a {
    color: rgba(0, 20, 70, 1);
}

.home-fixtures .sp-event-blocks .sp-event-title a:hover {
    color: rgba(0, 20, 70, 0.25);
}

.home-fixtures .sp-event-blocks .sp-event-title {
    margin: 30px 20%;
}

.home-fixtures .sp-event-blocks .sp-event-date {
    margin: 10px 0 30px 0;
}

@media (max-width: 768px) {
    .home-fixtures .sp-event-blocks .team-logo img {
        max-height: 80px;
        max-width: 80px;
    }
    .home-fixtures .sp-event-blocks .sp-event-title {
        margin: 20px;
    }
    .home-fixtures .sp-event-blocks .sp-event-date {
        margin: 10px 0 20px 0;
    }
}

/* Featured Team */
.home-featured {
    padding: 100px 0; 
}

.home-featured .home-featured-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-featured .home-featured-image {
    background: #0097D6;
    flex: 1 1 100%;
    height: 600px;
    max-width: 600px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-featured .home-featured-image:after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 600px 60px;
    border-color: transparent transparent transparent #0097D6;
}

.home-featured .home-featured-content {
    background: #001446;
    padding: 100px;
}

.home-featured .home-featured-content h3 {
    color: #0097D6;
    margin: 0 0 10px;
}

.home-featured .home-featured-content h1 {
    color: #fff;
    margin: 0 0 10px;
    word-break: break-all;
}

.home-featured .home-featured-content p {
    color: #fff;
    font-size: 14px;
    margin: 0 0 30px;
}

.home-featured .home-featured-content .button {
    color: #fff;
    border-color: #fff;
}

.home-featured .home-featured-content .button:hover {
    border-color: #0097D6;
}

@media (max-width: 768px) {
    .home-featured .home-featured-row {
        flex-wrap: wrap;
    }
    .home-featured .home-featured-image {
        height: auto;
        padding: 40px;
    }
    .home-featured .home-featured-image:after {
        display: none;
    }
    .home-featured .home-featured-image img {
        max-height: 200px;
    }
    .home-featured .home-featured-content {
        padding: 40px;
    }
}



/*--------------------------------------------------------------
About
--------------------------------------------------------------*/
.about {
    padding: 100px 0;
}



/*--------------------------------------------------------------
Rules
--------------------------------------------------------------*/
.rules {
    padding: 100px 0;
}

.rules .rules-intro {
    margin: 0 0 60px;
}

.rules .rules-cols img {
    display: block;
    margin: 0 auto 30px auto;
}

.rules .rules-cols h4 {
    margin: 0 0 10px;
    text-align: center;
}

.rules .rules-cols p {
    text-align: center;
}



/*--------------------------------------------------------------
Winner
--------------------------------------------------------------*/
.winner {
    padding: 100px 0;
}

.winner-team {
    text-align: center;
    padding: 30px 0;
}



/*--------------------------------------------------------------
Contact
--------------------------------------------------------------*/
.contact {
    padding: 100px 0;
}

.contact h3 {
    margin: 0 0 20px;
}

.contact p {
    color: #6B6B6B;
    font-size: 15px;
}

.contact .contact-main-section {
    margin: 0 0 60px;
}

.contact .contact-main-section a {
    color: #6B6B6B;
}

.contact .contact-socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
}

.contact .contact-socials a {
    color: #001446;
    border: 2px solid #001446;
    border-radius: 100%;
    text-decoration: none;
    margin-right: 15px;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.contact .contact-socials a:hover {
    background: #001446;
    color: #fff;
}

@media (max-width: 768px) {
    .contact .contact-main,
    .contact .contact-main-section {
        margin: 0 0 40px;
    }
}



/*--------------------------------------------------------------
Register/Login
--------------------------------------------------------------*/
/* Register */
.register {
    padding: 100px 0 60px 0;
    text-align: center;
}

.register .container {
    max-width: 600px;
}

.register h3 {
    margin: 0 0 10px;
}

.register p {
    font-size: 14px;
}

.register .gform_wrapper .gform_fields,
.register .gform_wrapper .ginput_container_password {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.register .gform_wrapper .form-half,
.register .gform_wrapper .ginput_left,
.register .gform_wrapper .ginput_right {
    flex: 50%;
    padding: 0 5px;
}

.register .gform_wrapper .form-full {
    width: 100%;
    padding: 0 5px;
}

.register .gform_wrapper .form-full .ginput_container_select:after {
    display: none;
}

.register .gform_wrapper .ginput_container_consent {
    color: #6B6B6B;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.register .gform_wrapper .ginput_container_consent input {
    margin-right: 10px;
}

.register .tagline {
    font-size: 14px;
    color: #6B6B6B;
    padding: 100px 0 0 0;
}

@media (max-width: 460px) {
    .register .gform_wrapper .form-half,
    .register .gform_wrapper .ginput_left,
    .register .gform_wrapper .ginput_right {
        flex: 100%;
    }
}

/* Login */
.login {
    padding: 100px 0;
    text-align: center;
}

.login .container {
    max-width: 600px;
}

.login h3 {
    margin: 0 0 10px;
}

.login .gform_wrapper .ginput_container_checkbox li {
    color: #6B6B6B;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin: 10px 0 20px 0;
}

.login .gform_wrapper .ginput_container_checkbox li input {
    margin-right: 5px;
}

.login .gf_login_links  {
    margin: 20px 0 0;
}

.login .gf_login_links a {
    font-size: 14px;
    color: #6B6B6B;
}

.login .tagline {
    font-size: 14px;
    color: #6B6B6B;
    padding: 100px 0 0 0;
}



/*--------------------------------------------------------------
Blog
--------------------------------------------------------------*/
/* Archive */
.blog-archive {
    padding: 140px 0;
}

.blog-archive .posts-archive-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -40px;
    margin-right: -40px;
}

.blog-archive .posts-load-more-wrap {
    text-align: center;
}

@media (max-width: 1400px) {
    .blog-archive .posts-archive-main {
        margin-left: -20px;
        margin-right: -20px;
    }
}

/* Entry */
.post-entry {
    flex: 1 0 50%;
    margin-bottom: 60px;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.post-entry .entry-image {
    max-width: 260px;
}

.post-entry .entry-image img {
	display: block;
	width: 100%;
}

.post-entry .entry-content {
    background: #fff;
    box-shadow: 0 0 14px 0 rgba(0,20,70,0.15);
    padding: 30px;
    position: absolute;
    top: 30px;
    left: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 40px;
}

.post-entry .entry-content:hover {
    text-decoration: none;
	box-shadow: 0 0 14px 0 rgba(0,20,70,0.6);
}

.post-entry .entry-category {
    font-size: 10px;
    text-transform: uppercase;
    color: #001446
}

.post-entry .entry-header {
    color: #001446;
    font-size: 19px;
    margin: 0;
}

.post-entry .entry-summary {
    font-size: 14px;
    line-height: 1.1;
    color: #001446;
}

.post-entry .entry-summary p {
    margin: 0;
}

.post-entry .read-more {
    font-size: 14px;
    text-transform: uppercase;
}

@media (max-width: 1400px) {
    .post-entry {
        padding-left: 20px;
        padding-right: 20px;
    }
    .post-entry .entry-content {
        margin-right: 20px;
    }
}
@media (max-width: 992px) {
    .post-entry {
        flex: 100%;
    }
}
@media (max-width: 500px) {
    .post-entry .entry-image {
        margin: 0 auto;
        width: 100%;
        max-width: none;
    }
    .post-entry .entry-content {
        position: static;
        margin: 0;
    }
}

/* Single */
.blog-single {
    padding: 100px 0;
}

.blog-single .entry-header,
.blog-single .entry-image {
	text-align: center;
}

.blog-single .entry-title {
	margin: 0;
}

.blog-single .entry-image {
	padding: 60px 0;
}

.blog-single .entry-meta {
	margin: 0 0 10px;
}

/* Pagination */
.pagination {
	position: relative;
	font-size: 16px;
	line-height: 16px;
	text-align: center;
	margin: 20px 0;
}

.pagination span, 
.pagination a {
	display: inline-block;
	margin: 2px 2px 2px 0;
	padding: 6px 9px 5px 9px;
	text-decoration: none;
	width: auto;
	color: #fff;
	background: #001446;
}

.pagination a:hover {
	color: #fff;
	background: #0097D6;
}

.pagination .current {
	padding: 6px 9px 5px 9px;
	background: #0097D6;
	color: #fff;
}

/* Social Shares */
.social-shares {
	margin: 50px 0;
}

.social-share-link {
	margin-right: 10px;
    display: inline-block;
    color: #001446;
}

.social-share-link:hover {
    color: #0097D6;
}

.social-share-icon i {
	font-size: 20px;
}



/*--------------------------------------------------------------
Region
--------------------------------------------------------------*/
.region h1 {
    text-align: center;
}

/* Events */
.region-events {
    padding: 100px 0;
}

.region-events-upcoming .sp-table-caption {
    display: none;
}

.region-events-leaderboard {
    margin: 0;
}

/* Teams */
.region-teams {
    background: rgba(0, 20, 70, 0.05);
    padding: 100px 0;
}

.region-teams-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.region-teams-card {
    flex: 0 0 calc(20% - 30px);
    height: 216px;
    margin: 15px;
    background: #0097D6;
    position: relative;
}

.region-teams-card:nth-child(2n) {
    background: #001446;
}

.region-teams-card img {
    max-height: 216px;
    max-width: 216px;
    display: block;
    margin: 0 auto;
}

.region-teams-card:hover .region-teams-card-overlay {
    opacity: 0;
}

.region-teams-card-overlay {
    transition: all 0.3s ease;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.region-teams-card-content {
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    width: 100%;
}

.region-teams-card-content span {
    font-size: 10px;
    background:#0097D6;
    padding: 6px 12px;
    margin-right: 10px;
    display: block;
    transform: skewX(-5deg);
}

@media (max-width: 1250px) {
    .region-teams-card {
        flex-grow: 1;
    }
}

/* Results */
.region-results {
    padding: 100px 0;
}

.region-results .sp-table-caption {
    display: none;
}

.region-results .sp-event-blocks tbody {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.region-results .sp-event-blocks tbody tr {
    flex: 0 0 calc(50% - 20px);
    margin: 10px;
}

.region-results .sp-event-blocks .team-logo {
    width: 25%;
}

.region-results .sp-event-blocks .team-logo img {
    max-height: 60px;
    max-width: 60px;
}

.region-results .sp-event-blocks .sp-event-title {
    font-size: 14px;
    margin: 10px 25% 0 25%;
}

.region-results .sp-event-blocks .sp-event-title a {
    color: #001446;
}

.region-results .sp-event-blocks .sp-event-title a:hover {
    text-decoration: underline;
}

.region-results .sp-event-blocks .sp-event-results {
    line-height: 22px;
    font-size: 18px;
}

.region-results .sp-event-blocks .sp-event-league, 
.region-results .sp-event-blocks .sp-event-date {
    display: none;
}

@media (max-width: 768px) {
    .region-results .sp-event-blocks tbody tr {
        flex: 100%;
    }
    .region-results .sp-event-blocks .team-logo {
        position: absolute;
        clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    }
    .region-results .sp-event-blocks .team-logo.logo-even {
        clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
    }
}



/*--------------------------------------------------------------
Tournaments
--------------------------------------------------------------*/
.tournaments {
    padding: 100px 0;
}

/* Featured */
.tournaments .tournaments-featured {
    background: #0097D6;
    transform: skewX(-10deg);
    transform-origin: bottom left;
    width: calc(100% - 172px * 0.17632698);
    margin: 0 0 60px;
}

.tournaments .tournaments-featured-content {
    transform: skewX(10deg);
    text-align: center;
    padding: 40px 20px;
}

.tournaments .tournaments-featured-content h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 26px;
    margin: 0 0 20px;
}

.tournaments .tournaments-featured-content .button {
    color: #fff;
    border-color: #fff;
}

.tournaments .tournaments-featured-content .button:hover {
    border-color: #001446;
    background: #001446;
}

@media (max-width: 768px) {
    .tournaments .tournaments-featured {
        width: calc(100% - 214px * 0.17632698);
    }
}

/* Content */
.tournaments .tournaments-content {
    margin: 0 0 40px;
}

.tournaments .tournaments-content h3 {
    margin: 0 0 10px;
}

.tournaments .tournaments-content p {
    font-size: 14px;
}

/* Rules */
.tournaments .tournaments-rules {
    margin: 0 0 40px;
}

.tournaments .tournaments-rules h3 {
    margin: 0 0 10px;
}

.tournaments .tournaments-rules p {
    font-size: 14px;
}

/* Comps */
.tournaments .tournaments-comps {
    margin: 0 0 40px;
}

.tournaments .tournaments-comps h3 {
    margin: 0 0 10px;
}

.tournaments .tournaments-comps-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.tournaments .tournaments-comps-card {
    transform: skewX(-10deg);
    flex: 0 0 calc(33.333333% - 10px);
    margin: 5px;
    background: #0097D6;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournaments .tournaments-comps-card:hover {
    background: #001446;
    text-decoration: none;
}

.tournaments .tournaments-comps-card span {
    transform: skewX(10deg);
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

@media (max-width: 500px) {
    .tournaments .tournaments-comps-card {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 420px) {
    .tournaments .tournaments-comps-card {
        flex: 0 0 calc(100% - 10px);
    }
}

/* Upcoming */
.tournaments-upcoming {
    margin: 0 0 40px;
}

.tournaments-upcoming .sp-table-caption {
    display: none;
}

.tournaments-upcoming .sp-event-blocks .team-logo {
    width: 25%;
}

.tournaments-upcoming .sp-event-blocks .team-logo img {
    max-height: 60px;
    max-width: 60px;
}

.tournaments-upcoming .sp-event-blocks .sp-event-title {
    font-size: 14px;
    margin: 10px 25% 0 25%;
}

.tournaments-upcoming .sp-event-blocks .sp-event-title a {
    color: #001446;
}

.tournaments-upcoming .sp-event-blocks .sp-event-title a:hover {
    text-decoration: underline;
}

.tournaments-upcoming .sp-event-blocks .sp-event-results {
    line-height: 22px;
    font-size: 18px;
}

.tournaments-upcoming .sp-event-blocks .sp-event-date {
    margin: 10px 25%;
    padding: 0 10px;
}

.tournaments-upcoming .sp-event-blocks .sp-event-date a {
    color: #0097D6;
}

.tournaments-upcoming .sp-event-blocks .sp-event-league, 
.tournaments-upcoming .sp-event-blocks .sp-event-results {
    display: none;
}

@media (max-width: 768px) {
    .tournaments-upcoming .sp-event-blocks .team-logo {
        position: absolute;
        clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
    }
    .tournaments-upcoming .sp-event-blocks .team-logo.logo-even {
        clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
    }
}



/*--------------------------------------------------------------
Events
--------------------------------------------------------------*/
/* General */
.single-sp_event .events {
    padding: 100px 0;
}

.single-sp_event .sp-section-content {
    margin: 0 0 60px;
}

.single-sp_event .sp-section-content .sp-table-caption {
    font-size: 22px;
    text-transform: uppercase;
    color: rgba(0, 20, 70, 0.85);
}

.single-sp_event .sp-section-content .sp-post-content {
    font-size: 14px;
}



/*--------------------------------------------------------------
Teams
--------------------------------------------------------------*/
.single-sp_team .team {
    padding: 100px 0;
}

.single-sp_team .team-main {
    /* display: flex;
    flex-wrap: wrap; */
}

.single-sp_team .team-main img {
    max-width: 500px;
    width: 100%;
    display: block;
}

.single-sp_team .sp-section-content {
    flex: 100%;
    margin-bottom: 60px;
}

.single-sp_team .sp-section-content .sp-widget-align-left,
.single-sp_team .sp-section-content .sp-widget-align-right {
    float: none;
    width: 100%;
    width: 100%;
}

.single-sp_team .sp-section-content.sp-section-content-logo {
    flex: 1 0 25%;
}

.single-sp_team .sp-section-content.sp-section-content-content {
    flex: 1 0 calc(75% - 60px);
    margin-left: 60px;
}

.single-sp_team .sp-team-logo {
    background: #0097D6;
    float: none;
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-height: 200px;
    transform: skewX(-10deg);
    transform-origin: bottom left;
    width: calc(100% - 200px * 0.17632698);
}

.single-sp_team .sp-post-content h1 {
    margin: 0;
}

.single-sp_team .sp-post-content p {
    font-size: 14px;
}

.single-sp_team .sp-team-logo img {
    max-width: 100px;
    transform: skewX(10deg);
}

.single-sp_team .sp-fixtures-results .sp-table-caption {
    font-size: 22px;
    color: rgba(0, 20, 70, 0.85);
    text-transform: uppercase;
}

.sp-template-player-gallery .sp-player-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.sp-template-player-gallery .sp-player-gallery-wrapper .gallery-item {
    flex: 0 0 33.33333%;
    position: relative;
    margin: 0;
}

.sp-template-player-gallery .sp-player-gallery-wrapper .gallery-item img {
    display: block;
    width: 100%;
}

.sp-template-player-gallery .sp-player-gallery-wrapper .gallery-item .wp-caption-text {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.sp-template-player-gallery .sp-player-gallery-wrapper .gallery-item .wp-caption-text strong {
    display: none;
}

@media (max-width: 600px) {
    .single-sp_team .sp-section-content.sp-section-content-logo {
        flex: 1 0 100%;
    }
    .single-sp_team .sp-section-content.sp-section-content-content {
        flex: 1 0 100%;
        margin-left: 0;
    }
    .single-sp_team .sp-team-logo {
        padding: 20px 0;
    }
    .sp-template-player-gallery .sp-player-gallery-wrapper .gallery-item {
        flex: 0 0 50%;
    }
}



/*--------------------------------------------------------------
Leaderboard
--------------------------------------------------------------*/
.leaderboard {
    padding: 100px 0;
}



/*--------------------------------------------------------------
Results
--------------------------------------------------------------*/
.results {
    padding: 100px 0;
}

.results .results-main .sp-table-caption {
    display: none;
}



/*--------------------------------------------------------------
Sportspress
--------------------------------------------------------------*/
/* Table Resets */
.sp-event-blocks,
.sp-event-blocks thead,
.sp-event-blocks tbody,
.sp-event-blocks tfoot,
.sp-event-blocks tr,
.sp-event-blocks th,
.sp-event-blocks td {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-collapse: inherit;
    border-spacing: 0;
    border-color: inherit;
    vertical-align: inherit;
    text-align: left;
    font-weight: inherit;
    -webkit-border-horizontal-spacing: 0;
    -webkit-border-vertical-spacing: 0;
}

.sp-event-blocks th, 
.sp-event-blocks td {
    display: inline;
}

/* Leaderboards */
.sp-league-table {
    font-size: 14px;
    text-transform: uppercase;
}

.sp-league-table tr {
    height: 50px;
}

.sp-league-table thead th {
    padding: 0 20px;
}

.sp-league-table thead th.sorting:hover {
    color: #0097D6;
}

.sp-league-table th.data-name,
.sp-league-table td.data-name {
    text-align: left !important;
}

.sp-league-table tbody tr {
    background: rgba(0, 20, 70, 0.05);
}

.sp-league-table tbody td {
    border-bottom: 7px solid #fff;
}

.sp-league-table tbody td a {
    color: #001446;
}

.sp-league-table tbody td a:hover {
    color: #0097D6;
}

/* Event Blocks */
.sp-event-blocks .sp-event-season,
.sp-event-blocks .sp-event-venue {
    display: none;
}

.sp-event-blocks tbody tr {
    border: 1px solid #979797;
    margin: 0 0 20px;
    position: relative;
}

.sp-event-blocks tbody tr td {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.sp-event-blocks .team-logo {
    height: 100%;
    max-width: none;
    margin: 0;
    background: rgba(0, 20, 70, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    float: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}

.sp-event-blocks .team-logo.logo-even {
    background: rgba(0, 151, 214, 0.1);
    right: 0;
    left: auto;
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
}

.sp-event-blocks .team-logo:hover {
    background: #001446;
}

.sp-event-blocks .team-logo.logo-even:hover {
    background: #0097D6;
}

.sp-event-blocks .team-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.sp-event-blocks .team-logo img {
    max-height: 100px;
    max-width: 100px;
    margin: 20px;
}

.sp-event-blocks .team-logo:hover img {
    -webkit-filter: drop-shadow(0px 0px 8px #fff);
    filter: drop-shadow(0px 0px 8px #fff);
}

.sp-event-blocks .sp-event-title {
    font-size: 22px;
    text-transform: uppercase;
    margin: 10px 20%;
    padding: 0 20px;
}

.sp-event-blocks .sp-event-title a {
    color: rgba(0, 20, 70, 0.25);
}

.sp-event-blocks .sp-event-title a:hover{
    color: rgba(0, 20, 70);
}

.sp-event-blocks .sp-event-league,
.sp-event-blocks .sp-event-date {
    font-size: 11px;
    text-transform: uppercase;
    color: #001446;
}

.sp-event-blocks .sp-event-date a {
    color: #001446;
}

.sp-event-blocks .sp-event-date a:hover {
    text-decoration: underline;
}

.sp-event-blocks .sp-event-results {
    font-size: 22px;
    margin: 10px 20%;
}

.sp-event-blocks .sp-event-results a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .sp-event-blocks .team-logo {
        position: static;
        clip-path: none;
        width: 100%;
    }
    .sp-event-blocks .team-logo.logo-odd {
        order: 1;
    }
    .sp-event-blocks .team-logo.logo-even {
        clip-path: none;
    }
    .sp-event-blocks .team-logo img {
        max-height: 80px;
        max-width: 80px;
    }
}

/* Event Calendars */
.sp-calendar {
    background: #E5E7ED;
    border: 1px solid #D3D3D3;
    border-collapse: collapse;
    font-size: 14px;
}

.sp-calendar .sp-table-caption {
    text-align: left;
    font-size: 22px;
    color: rgba(0, 20, 70, 0.85);
    text-transform: uppercase;
    margin: 0 0 20px;
}

.sp-calendar td,
.sp-calendar th {
    padding: 5px;
    border: 1px solid #D3D3D3;
}

.sp-calendar thead {

}

.sp-calendar tbody {

}

.sp-calendar tbody td.pad,
.sp-calendar tbody td.sp-highlight {
    background: #F1F3F6;
}

.sp-calendar tbody td a {

}

.sp-calendar tbody td a:hover {
    text-decoration: underline;
}

.sp-calendar tfoot {
    text-transform: uppercase;
}

.sp-calendar tfoot td.pad {
    background: #F1F3F6;
}

.sp-calendar tfoot td a {
    color: rgba(0, 20, 70, 0.25);
}

.sp-calendar tfoot td a:hover {
    color: #001446;
    text-decoration: none;
}

/* Event Teams */
.sp-template-event-logos {
    padding: 0 40px;
}

.sp-event-logos {
    font-size: 14px;
    text-transform: uppercase;
    color: #0097D6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.sp-event-logos .sp-team-logo {
    font-size: 22px;
}

.sp_event.status-publish .sp-event-logos .sp-team-logo {
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-event-logos .sp-team-name {
    color: rgba(0, 20, 70, 0.85);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.sp-event-logos .sp-team-logo:last-of-type .sp-team-name {
    top: auto;
    bottom: 0;
}

.sp-event-logos .sp-team-logo a:hover {
    text-decoration: none;
}

.sp-event-logos .sp-team-logo a:hover .sp-team-name {
    color: #001446;
}

.sp-event-logos .sp-team-logo img {
    transition: all 0.3s ease;
}

.sp-event-logos .sp-team-logo a:hover img {
    transform: scale(1.05);
}

.sp-event-logos .sp-team-result {
    color: #0097D6;
}

.sp-event-logos .sp-event-logos-time {
    font-size: 22px;
    margin: 0 40px;
}

@media (max-width: 650px) {
    .sp-template-event-logos {
        padding: 0;
    }
}
@media (max-width: 500px) {
    .sp-event-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    .sp-event-logos .sp-team-name {
        position: static;
        transform: none;
        display: block;
        margin: 20px 0;
    }
    .sp-event-logos .sp-team-result {
        flex: 100%;
        margin: 40px 0;
    }
    .sp_event.status-publish .sp-event-logos .sp-team-logo {
        flex: 100%;
        display: block;
    }
}
@media (max-width: 601px) {
    .sp-event-logos-2 .sp-team-logo .sp-team-result {
        margin: 0 0.25em;
    }
}

/* Event Details */
.sp-event-details {
    font-size: 14px;
    text-transform: uppercase;
}

.sp-event-details tr {
    height: 50px;
}

.sp-event-details thead th {
    padding: 0 20px;
}

.sp-event-details tbody tr {
    background: rgba(0, 20, 70, 0.05);
}

.sp-event-details tbody td {
    border-bottom: 7px solid #fff;
}

/* Event Results */
.sp-event-results {
    font-size: 14px;
    text-transform: uppercase;
}

.sp-event-results tr {
    height: 50px;
}

.sp-event-results thead th {
    padding: 0 20px;
}

.sp-event-results tbody tr {
    background: rgba(0, 20, 70, 0.05);
}

.sp-event-results tbody td {
    border-bottom: 7px solid #fff;
}

.sp-event-results tbody td a {
    color: #001446;
}

.sp-event-results tbody td a:hover {
    color: #0097D6;
}

/* Tournaments */
.sp-template-tournament-winner {
    background: rgba(0, 20, 70, 0.1);
}

.sp-tournament-winner-title {
    font-size: 22px;
    text-transform: uppercase;
    color: rgba(0, 20, 70, 0.85);
    background: rgba(0, 20, 70, 0.1);
    margin: 0;
}

.sp-tournament-winner a,
.sp-tournament-winner img {
    display: block;
}

.sp-tournament-winner img {
    margin: 0px auto;
    padding: 30px 0;
}

.sp-tournament-winner br {
    display: none;
}

.sp-tournament-bracket thead {
    font-size: 14px;
    text-transform: uppercase;
}

.sp-tournament-bracket thead th {
    padding: 10px;
}

.sp-tournament-bracket tbody tr:nth-child(2n+1) {
	background: transparent;
}

.sp-tournament-bracket .sp-team-name {
    font-size: 14px;
    text-transform: uppercase;
    color: #001446;
}

.sp-tournament-bracket .sp-home-team .sp-team-name {
    background: rgba(0, 20, 70, 0.1);
    border: 1px solid #001446;
    padding: 12px;
}

.sp-tournament-bracket .sp-away-team .sp-team-name {
    background: rgba(0, 151, 214, 0.1);
    border: 1px solid #001446;
    padding: 12px;
}

.sp-tournament-bracket .sp-heading,
.sp-tournament-bracket .sp-heading:hover {
	color: #fff;
	background: #001446 !important;
}

.sp-tournament-bracket .sp-team .sp-team-name:before {
	border-left-color: #001446;
}

.sp-tournament-bracket .sp-event {
    border-right-color: #001446 !important;
    border-right-width: 1px !important;
    font-size: 14px;
    text-transform: uppercase;
}

.sp-tournament-bracket .sp-event .sp-event-date {
    color: #001446;
    margin: 0 0 5px;
}

.sp-tournament-bracket .sp-event .sp-event-main {
    color: #0097D6 !important;
}

.sp-tournament-bracket .sp-event .sp-result {
    margin: 0 15px;
}

.sp-tournament-bracket img {
    max-width: 8em;
    max-height: 8em;
}

.sp-tournament-bracket .sp-event.sp-last-round {
    border-right: 1px solid #001446 !important;
}

/* Pagination */
.sp-table-wrapper .dataTables_paginate {
    font-size: 14px;
    text-transform: uppercase;
}

.sp-table-wrapper .dataTables_paginate a {
    color: #001446;
}

.sp-table-wrapper .dataTables_paginate a:hover,
.sp-table-wrapper .dataTables_paginate .current {
    color: #0097D6;
    text-decoration: none;
    opacity: 1;
}

.sp-table-wrapper .dataTables_paginate .disabled:hover {
    opacity: 0;
}



/*--------------------------------------------------------------
Footer
--------------------------------------------------------------*/
.site-footer {
	background: #001446;
    padding: 30px 0;
    border-top: 10px solid #0097D6;
    color: #fff;
    font-size: 14px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-footer .footer-logo svg {
    color: #fff;
    height: 50px;
}

.footer-links a.active {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-socials a {
    opacity: 0.5;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 100%;
    text-decoration: none;
    margin-left: 15px;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-row {
        text-align: center;
    }
    .footer-row div {
        flex: 100%;
        margin-bottom: 20px;
    }
    .footer-credits {
        order: 99;
        margin-bottom: 0;
    }
}



/*--------------------------------------------------------------
404 Not Found
--------------------------------------------------------------*/
.error-404 {
    padding: 100px 0;
	text-align: center;
}