/*   
Theme Name: Spinfire Sport
Theme URI: https://www.spinfiresport.com
Description: This is a custom theme for Spinfire Sport website.
Author: Spinfire Sport
Author URI: https://www.spinfiresport.com
Version: 3.0.0
Text Domain: spinfire
*/

/*
 
SpinfireSport.com stylesheet

1.0 Globals
2.0 Buttons
	2.1 Primary Button
	2.2 Secondary Button
	2.3 Link Button
3.0 Social Icons
4.0 Widgets
- Category
99.0 Footer
	99.1 Footer Logo


- Single Product

*/

/* 1.0 Globals */

:root {
	--white: #fff;
	--black: #000;
	--gray: #d6d6d6;

	--sky-blue: #00aeef;
	--sky-blue--light: #66e0ff;
	--sky-blue--dark: #007fbc;

	--light-blue: #d1ecf1;

	--magenta: #332a86;
	--magenta--light: #6554b7;
	--magenta--dark: #000458;

	--global-radius: 3px;	

	--wp-admin-bar-height: 0px;
	--main-header-height: 0px;
	--header-height: 0px;
	--sidebar-nav-mobile-height: 0px;
}

* {
	margin:0;
	padding:0;
}

body {
	background:#ffffff;
	font-family:Arial, sans-serif;
	font-size:10pt;
}

body.home {
	background-color:#060129;
}

h1, h2, h3, h4, h5, h6 {
	color:#332a86;
}

a {
	color:#32247B;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

a img {
	border:0;
}

strong, b {
	font-weight: 700;
}

header, section, footer, aside, nav, article {
    display: block;
}

p {
	padding:10px 0;
	line-height:150%;
}

li {
	line-height:150%;
}

input[type="text"], input[type="email"], select, input[type="submit"], input[type="password"], input[type="tel"], textarea {
	border:1px solid #d6d6d6;
	border-radius:3px;
	padding:6px;
}

select {
	line-height:27px;
	height:31px;
}

input[type="submit"] {
	cursor:pointer;
}

.clearfix { 
	display: block; 
	clear:both;
} /* close commented backslash hack */

.clearfix:after { 
	visibility: hidden; 
	display: block; 
	font-size: 0; 
	content: " "; 
	clear: both; 
	height: 0; 
}

.alignleft {
	float:left;
	margin:10px 10px 10px 0;
}

.alignright {
	float:right;
	margin:10px 0 10px 10px;
}

.aligncenter {
	display:block;
	float:none;
	margin:10px auto;
}

.alignnone {
	float:none;
}

.wp-caption {

}

.wp-caption-text {

}

.sticky {

}

.gallery-caption {

}

/* end of: 1.0 Globals */

/* 2.0 Buttons */
.btn {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;


	display: inline-block;
	padding: 0.5rem 1.5rem;
	border: 1px solid var(--black);
	border-radius: var(--global-radius);
	background: none;
	color: var(--black);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}


.btn:focus,
.btn:hover {
	background: var(--black);
	color: var(--white);
}

.btn--large {
	font-size: 1.15rem;
	border-width: 2px;
}

.btn--primary,
.btn--secondary,
.btn--warning,
.btn--danger {
	color: var(--white);
}

/* 2.1 Primary Button */
.btn--primary {
	background: var(--sky-blue);
	border-color: var(--sky-blue);
}

.btn--primary:focus,
.btn--primary:hover {
	background: var(--sky-blue--dark);
	border-color: var(--sky-blue--dark);
}

.btn--primary.btn--hollow {
	background: none;
	color: var(--sky-blue);
}


.btn--primary.btn--hollow:focus,
.btn--primary.btn--hollow:hover {
	background: var(--sky-blue--dark);
	color: var(--white);
}
/* end of: 2.1 Primary Button */


/* 2.2 Secondary Button */
.btn--secondary {
	background: var(--magenta);
	border-color: var(--magenta);
}

.btn--secondary:focus,
.btn--secondary:hover {
	background: var(--magenta--dark);
	border-color: var(--magenta--dark);
}

.btn--secondary.btn--hollow {
	background: none;
	color: var(--magenta);
}


.btn--secondary.btn--hollow:focus,
.btn--secondary.btn--hollow:hover {
	background: var(--magenta--dark);
	color: var(--white);
}

.btn--round {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	border-radius: 30px;
}
/* end of: 2.2 Secondary Button */


/* 2.3 Link Button */
.btn--link {
	color: var(--sky-blue);
	border: none;
}

.btn--link:focus,
.btn--link:hover {
	background: none;
	text-decoration: underline;
}
/* end of: 2.3 Link Button */

/* end of: 2.0 Buttons */

/* 3.0 Social Icons */
.social-links {
	list-style: none;
	margin-bottom: 20px;
}

.social-links > li {
	display: inline-block;
}

.social-links > li > a {
	display: inline-block;
	width: 52px;
	height: 52px;
	line-height: 52px;
	margin-right: 0.25rem;
	text-decoration: none !important;
	color: var(--white);
	overflow: hidden;
	transition: color 0.3s ease-in-out;
}

.social-links > li > a:hover {
	color: var(--light-blue) !important;
}

.social-links > li > a::before {
	display: block;
	font-family: Fontawesome;
	font-size: 3.5rem;
}

.social-links > li > a[href*='facebook.com']::before {
	content: '\f082';
}

.social-links > li > a[href*='instagram.com']::before {
	content: '\f16d';
}

.social-links > li > a[href*='tel:']::before {
	content: '\f098';
}
/* End of: 3.0 Social Icons */


/*** HEADER ***/

#header-navs-wrap {
	background:#00aeef;
	border-bottom:1px solid #ffffff;
	padding:5px;
}

#header-navs {
	display:block;
	margin:0 auto;
	vertical-align:middle;
	width:1024px;
}

nav#nav1 {
	float:left;
	margin-right:20px;
	margin-top:6px;
	width:auto;
}

ul#products-nav {
	list-style-type:none;
	font-size:13pt;
}

ul#products-nav li {
	display:inline;
	padding:0 7px;
	position:relative;
}

ul#products-nav li:first-child {
	padding-left:0;
}

ul#products-nav li a {
	border:0;
	color:#ffffff;
	text-decoration:none;
	-webkit-transition: color .5s; /* For Safari 3.1 to 6.0 */
	transition: color .5s;
}

ul#products-nav li a:hover {
	color:#332a86;
}

#products-nav li ul {
	background:#00AEEF;
	display:none;
	position:absolute;
	top:20px;
	left:7px;
	width:234px;
	-webkit-transition:display .3s;
	transition:display .3s;	
}

#products-nav li ul li {
	padding:0;
}

#products-nav li:hover ul, li.over ul {
	display:block;
	-webkit-transition:display .3s;
	transition:display .3s;
}

#products-nav li ul li a {
	display:block;
	padding:7px;
}

nav#nav2 {
	float:left;
	margin-top:9px;
	width:auto;
}

ul#pages-nav {
	list-style-type:none;
	font-size:10pt;
}

ul#pages-nav li {
	display:inline;
	padding: 0 5px;
}

li.current-menu-item {
	font-weight:bold;
}

ul#pages-nav li a {
	color:#332a86;
	text-decoration:none;
	-webkit-transition: color .5s; /* For Safari 3.1 to 6.0 */
	transition: color .5s;
}

ul#pages-nav li a:hover {
	color:#ffffff;
}

#header-misc {
	float:right;
	/*margin-right:11px;*/
	width:215px;
}

#header-language, #header-user, #header-cart, #woo-header-cart {
	float:/*left*/right;
}

#header-language {
	margin-top:5px;
	width:100px;
}

#header-language select {
	cursor:pointer;
	padding:2px;
}

#lang_sel li, #lang_sel_click a {
	width:100px!important;
}

#header-user, #header-cart, #woo-header-cart {
	position:relative;
	margin-right:17px;
	margin-top:4px;
}

#woo-header-cart {
	margin-right:5px;
}

#header-user img, #header-cart img {
	cursor:pointer;
}

#header-language {
	
}

.wpml-ls-legacy-dropdown .wpml-ls-flag+span {
	font-size:8px;
}

#header-user {
	margin-right:17px;
}

.cleanlogin-container {
	overflow: visible;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0px;
    border: 0px solid #ddd;
}

.cleanlogin-preview-top, .cleanlogin-form-bottom {
    display: none;
}

.cleanlogin-preview .avatar {
    border-radius: 0;
    float: left;
    width: 40px;
    height: 40px;
    margin: -19px 20px 0 0;
}

.user-loggedin {
	display: block;
    width: 100%;
}

.user-loggedin img {
	float:left;
	margin:0 10px 20px 0;
}

.user-loggedin p {
	padding-top:0;
	text-transform: capitalize;
}

.dropdown {
	position: absolute;
	top: 15px;
	left: 34px;
}

.header-pop {
	background: none repeat scroll 0% 0% #EEE;
	border: 2px solid #E6E6E6;
	border-radius: 3px;
	display:none;
	font-size: 10pt;
	padding: 7px;
	position: absolute;
	top: 32px;
	width: 220px;
	z-index:999999;
}

#user-account {
	left: -99px;
}

#user-cart {
	left: -109px;
}

#user-account .btn {
	padding:2px 5px;
	width: 100%;
	margin-bottom: 10px;
}

#user-account #btnForgotPassword {
	background:transparent;
	border:0px;
	color:#666;
}

#user-account input#user_pass {
	display:block;
}

.cleanlogin-preview-edit-link, .cleanlogin-form-register-link {
	display:none!important;
}

#wpmp_rp_email {
	width:160%;
}

#user-account .avatar_container {
	float:left;
	margin: 0 10px 10px 0;
}

#user-account .avatar_container:before { 
	clear: both; 
	display:block;
	width:100%;
}

.widget_shopping_cart_content ul {
	border-top:1px dashed #d6d6d6;
	border-bottom:1px dashed #d6d6d6;
	margin:10px 0;
	padding:5px;
}

.widget_shopping_cart_content li {
	border-top:1px dashed #d6d6d6;
	clear:both;
	display:block!important;
	list-style-type:none!important;
	padding:5px 0;
}

.widget_shopping_cart_content li:first-child {
	border-top:0;
}

.widget_shopping_cart_content img {
	float:left;
	margin:0 5px 5px 0;
	width:50px!important;
	height:50px!important;
}

#show-nav {
	display:none;
	height:55px;
	position:relative;
}

.shownav-logo {
	margin-left:10px;
	width:122px;
}

/*** HOME MAIN ***/

#home-main {
	background-color:#060129;
	background-repeat:no-repeat;
	background-position:top center;
	min-height:700px;
}

.page-template-template-test #home-main {
	background-size:cover!important;
	background-position:center center!important;
}

#home-main2 img {
	width:100%!important;
}

/*** CATEGORIES ***/

#home-categories-wrap {
	background-image:url('images/categ-bg.jpg');
	background-repeat:no-repeat;
	background-size:cover;
	padding-top:22px;
	text-align:center;
}

#home-categories {
	margin:0 auto;
	width:1024px;
}

ul#home-product-categories {
	list-style-type:none;
	margin:0 auto;
	width:895px;
}

ul#home-product-categories li {
	display:block;
	float:left;
	margin-right:3px;
	width:176px;
}

.home-product-name {
	font-size:11pt;
	font-weight:bold;
	text-align:center;
	text-transform:uppercase;
	padding-bottom:20px;
}

li.home-product-category {
	padding-top:16px;
}

li.home-product-category:first-child {
	padding-top:0;
}

li.home-product-category .home-product-name {
	padding-top: 17px;
}

li.home-product-category:first-child .home-product-name {
	padding-top:0;
}

.home-product-category a {
	color:#ffffff;
}

.home-product-category a:hover {
	color:#25ACE4;
	text-decoration:none;
}

/*** PRODUCTS ***/

.archive .category-product {
	border:1px solid #e6e6e6;
	margin-bottom:30px!important;
	position:relative!important;
	width:100%!important;
}

.single .category-product, .single li.type-product {
	border:1px solid #e6e6e6;
	margin:0 7px 0 0;
	width:23%;
}

/*
.archive .prod-image {
	float:left;
	text-align:left;
	width:265px;
}
*/

.single .prod-details {
	padding:10px;
}

/*
.archive .prod-name {
	line-height: 1.2;
}

.archive .prod-name a {
	color:#332a86;
	color: var(--violet);
	font-size:17pt;
}
*/

.single .prod-name {
	font-size:12pt;
}

.prod-description {
	color:#484848;
	font-size:10pt;
}

.prod-price {
	color:#00aeef;
	font-size:16pt;
}

.prod-price span.amount {
	font-weight:bold!important;
}

/*
.archive .prod-link {
	background:#00aeef;
	color:#fff;
	display:inline;
	font-size:11pt;
	font-weight:bold;
	padding: 12px 15px 5px 41px;
	position:absolute;
	bottom:0;
	right:0;
	text-transform:uppercase;
}

.prod-link:before {
	content:url('images/pre-prod-link.png');
	position: absolute;
	left: 0;
	top: -4px;
}

.prod-link:hover {
	background:#332a86;
	-webkit-transition:background .3s;
	transition:background .5s;
}
*/


/*** DISTRIBUTORS ***/

#tab-holder {
	margin:20px 0;
}

#tab-contents {

}

.dis-tab {
	border:1px solid #efefef;
	cursor:pointer;
	float:left;
	margin:0 5px 10px 0;
}

.dis-tab figure {
	position: relative;
}

.dis-tab figcaption {
	position: absolute;
	bottom: 0.75rem;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	text-align: center;
	color: var(--magenta);
}

.dis-tab:hover, .tab-active {
	border:1px solid #00aeef;
}

/*.distributor {
	margin:15px 10px 10px;
}*/

.distributor {
	float:left;
	width:30%;
	padding:15px 10px 30px;
}

.distributor:nth-child(3n+2) {
	clear:both;
}

.dis-content {
	display:none;
	font-weight:normal;
}

.dis-active {
	display:block;
}

.dis-region {
	color:#00aeef;
	font-size:11pt;
	font-weight:bold;
}

.dis-store {
	font-weight:bold;
}
	
/*** MAIN CONTENT ***/

#title-main {
	margin:0 auto;
	padding-bottom:0;
}

h1.page-title {
	margin-top: 20px;
	color: var(--violet);
	font-size: 24px;
}

#main-wrap {
	background:#ffffff;
}

#content-wrap {
	background:#ffffff;
	color:#484848;
	margin:0 auto;
	padding: 0 15px;
	max-width: 1024px;
}

@media (min-width: 768px) {
	#content-wrap {
		width: 750px;
	}
}
@media (min-width: 992px) {
	#content-wrap {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	#content-wrap {
		width: 1170px;
	}
}

#main-content {
	padding:30px 0;
	position:relative;
}

#main-content ul, #main-content ol {
	margin:10px 0 10px 30px;
}

#main-content ul.products,
#main-content ol.products {
	margin: 0;
}

.not-full {
	background:#fff;
	float:left;
	width:744px;
}

.full {
	width:100%;
}

.distributor p {
	padding:0;
}
/*
#tab-contents {
	max-width:780px;
}*/

#tab-contents {
	max-width:100%;
}

/*** MKB ***/

.mkb-root h1, .mkb-root h2, .mkb-root h3, .mkb-root h4, .mkb-root h5, .mkb-root h6 {
	color:#332a86;
	font-family:Arial, sans-serif;
	text-transform:uppercase;
}

table.bordered-table {
	border-collapse:collapse;
}

table.table td {
	padding:8px;
}

table.bordered-table td {
	border:1px solid #a9a9a9;
}

table.specs-table td h2 {
	font-size:18px;
}

.mkb-article-text ol, .mkb-article-text ul {
	margin-left:30px;
  margin-bottom: 10px;
}

/*** BLOG ***/

.entry {
	border-bottom:1px dashed #d6d6d6;
	padding:20px 0 10px;
}

.single .entry {
	border-bottom:0;
}

.entry:last-child {
	border-bottom:0;
}

.read-more {
	text-align:right;
}

/*** DOCU ***/

.docusearch {
	max-width:600px;
	margin:30px auto;
}

.docu-box {
	width:46.3%;
	float:left;
	margin-right:20px;
	margin-top:20px;
	margin-bottom:20px;
	border:1px solid #ddd;
	padding:10px;
}

.docu-box:nth-of-type(odd) {
	clear:both;
}

.docu-box:nth-of-type(even) {
	margin-right:0;
}

.docu-box h2 {
	text-transform:uppercase;
}

#no-access {
	max-width:600px;
	margin:20px auto;
	padding:25px;
	border:1px solid #ddd;
}

#no-access > * {
	max-width: 465px;
	margin: 0 auto 12px;
}

#no-access > *:last-child {
	margin-bottom: 0;
}

#no-access a {
	color: var(--sky-blue);
}

#no-access input[type="text"], #no-access input[type="email"], #no-access input[type="password"] {
	display:block;
	width:100%;
	max-width:450px;
}

#editor-login {
	max-width: 465px;
	margin: 0 auto;
}

.docu-most-viewed .wpp-list li {
	overflow:visible;
	margin-bottom:0;
}

/*** WOOCOMMERCE ***/

.with-dist {
	display:block;
	padding:20px;
	background:#EEEEEE;
	color:red;
	clear:both;
	margin-bottom:20px;
}

.single_add_to_cart_button {
	margin-bottom:20px!important;
}

.single-product .images {
}

@media screen and (max-width: 991px) {
	.single-product .images {
		width: 50% !important;
	}
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	width:100%!important;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
}

div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
	float: left;
	width: 48%;
	width: calc(40% - 30px);
	margin-left: 30px;
}

.product h2 {
	color:#00aeef;
	text-transform:uppercase;
}

.archive .product h2, .woocommerce-Price-amount {
	color:#332A86;
	text-transform:none;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background:#342B86;
}

.archive .prod-details .add_to_cart_button, .single .prod-link  {
	display:none;
}

div.buy-product {
	border: 1px solid #d6d6d6;
	float: left;
	margin-left: 30px;
	padding: 10px 20px 0;
	width: 48%;
	width: calc(40% - 30px);
}

.product-features {
	float:left;
	margin:10px 0 0 30px;
	width:40%;
}

.product-features .symple-column {
	margin-bottom:0;
}

.product-features p {
	padding:0;
}

.product-features .symple-column p {
	padding:10px 0;
}

.single_add_to_cart_button {
	color:#ffffff!important;
	font-weight:bold!important;
}

.single-product .price {
	font-size:16pt!important;
	font-weight:bold;
}

.woocommerce div.product .woocommerce-tabs ul.tabs, .woocommerce #content div.product .woocommerce-tabs ul.tabs, .woocommerce-page div.product .woocommerce-tabs ul.tabs, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs {
	padding: 0px 0px 0px 2px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce #content div.product .woocommerce-tabs ul.tabs li, .woocommerce-page div.product .woocommerce-tabs ul.tabs li, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li {
    border: none!important;
    background: #d6d6d6!important;
    display: inline-block;
    position: relative;
    z-index: 0;
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important;
    box-shadow: none!important;
	text-transform:uppercase;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after, .woocommerce #content div.product .woocommerce-tabs ul.tabs li.active:after, .woocommerce-page div.product .woocommerce-tabs ul.tabs li.active:after, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active:after {
    box-shadow: none!important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active, .woocommerce #content div.product .woocommerce-tabs ul.tabs li.active, .woocommerce-page div.product .woocommerce-tabs ul.tabs li.active, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active {
	background:#00aeef!important;
	color:#ffffff!important;
	text-transform:uppercase;
}

.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt, .woocommerce #content input.button.alt, .woocommerce-page a.button.alt, .woocommerce-page button.button.alt, .woocommerce-page input.button.alt, .woocommerce-page #respond input#submit.alt, .woocommerce-page #content input.button.alt {
	color:#ffffff!important;
	text-transform:uppercase;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce #content div.product .woocommerce-tabs ul.tabs li:before, .woocommerce-page div.product .woocommerce-tabs ul.tabs li:before, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before {
    border-bottom-right-radius: 0!important;
    border-width: 0!important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce #content div.product .woocommerce-tabs ul.tabs li:after, .woocommerce-page div.product .woocommerce-tabs ul.tabs li:after, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after {
    border-bottom-left-radius: 0!important;
    border-width: 0!important;
}	
	
.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after, .woocommerce #content div.product .woocommerce-tabs ul.tabs li:before, .woocommerce #content div.product .woocommerce-tabs ul.tabs li:after, .woocommerce-page div.product .woocommerce-tabs ul.tabs li:before, .woocommerce-page div.product .woocommerce-tabs ul.tabs li:after, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after {
    border: 1px solid #DFDBDF;
    position: absolute;
    bottom: -1px;
    width: 0!important;
    height: 0!important;
}

#main-content ul.tabs {
	margin:0;
}

.woocommerce-tabs {
	padding-top:20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
	padding-left:30px!important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child {
	padding-right:30px!important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child:before {
	content:url('images/pre-prod-link.png')!important;
	position: absolute;
	left: -4px;
	top: 0;
}

.woocommerce div.product form.cart div.quantity {
	margin:6px 4px 0px 0px;
}

#main-content ul.woocommerce-error {
    margin: 0px 0 30px 0px;
}

.single-product .images img.wp-post-image {
	border:1px solid #d6d6d6;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}

.flex-direction-nav a {
	top:59%!important;
}

.upsells {
	clear:both;
}

.woocommerce-page .upsells ul.products li.product {
	width:24%;
}

.tc-extra-product-options ul {
	margin:0!important;
}

.tc-extra-product-options .tm-epo-field.tmcp-select, .tm-epo-field-label.tm-left + .tm-extra-product-options-container {
	width:100%!important;
}
 
.tm-epo-field-label.tm-left {
	padding-top:5px;
	font-size:11pt;
}

.woocommerce td.product-name dl.variation p {
	padding:0;
}

dl.variation {
	margin-left:20px;
}

dl.variation .tc-av-price {
	display:none!important;
}

dl.variation dt.tc-name {
	font-weight:bold;
}

.upsells .price, .upsells .woocommerce-Price-amount {
	display:block!important;
	color:#00aeef!important;
	font-size:18px!important;
}

.product-features .symple-one-fourth {
	margin-bottom:0px;
	margin-right:1%;
	width:24%;
}

.woocommerce div.product div.images {
	width: 60%;
	margin-bottom: 10px;
}

a#cheaper-shipping {
	color:#00aeef;
	font-weight:bold;
	font-weight:11pt;
}

.youtube-responsive {
position:relative;
padding-bottom:56.25%;
padding-top:30px;
height:0;
overflow:hidden;
}

.youtube-responsive iframe, .youtube-responsive object, .youtube-responsive embed {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

}
/*
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
    color: #141414!important;
    background-color: #342B86!important;
	margin-right:5px;
}
*/

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background: rgb(52 43 134 / 0.80); 
}

/*** SIDEBAR ***/

#sidebar {
	float:right;
	width:245px;
}

#logo {
	margin: 0 0 30px;
	padding-top:30px;
	text-align:center;
}

.widget {
	border-bottom:1px dashed #d6d6d6;
	color:#484848!important;
	margin-bottom:20px;
	padding:10px 0;
}

.widget-title {
	color: #332A86;
	border-bottom:1px dashed #d6d6d6;
	font-size: 16px;
	margin-bottom: 10px;
	padding-bottom:10px;
}

.widget-content {
	padding:0 10px;
}

.tslider blockquote p {
	font-size: 10pt!important;
	color: #888!important;
	margin: 0!important;
}

.cbp-qtcontent footer {
	display:none;
}

/*** FOOTER ***/

#footer-widgets-wrap {
	background:#00aeef;
	color:#ffffff;
}

#footer-widgets-wrap td {
	color:#ffffff;
}

#footer-widgets {
	font-size:12pt;
	margin:0 auto;
	padding:30px 0;
}

.footer-widget {
	float:left;
}

.footer-widget-title {
	color:#332a86;
	font-size:16px;
	margin-bottom:20px;
	text-transform:uppercase;
}

#copyright-wrap {
	background:#332a86;
	color:#ffffff;
}

#copyright {
	font-size:10pt;
	margin:0 auto;
	width:1024px;
}

/*** Comments ***/

#respond {
	border-top:1px dashed #d6d6d6;
	margin-top:10px;
	padding:10px 0;
}

#respond input, #respond textarea {
	border:1px solid #bebebe;
	margin-bottom:10px;
}

#respond input[type="submit"] {
	cursor:pointer;
	padding:8px 12px!important;
}
	
ol.commentlist { list-style: none; }
ol.commentlist li { }
ol.commentlist li.alt { }
ol.commentlist li.bypostauthor { }
ol.commentlist li.byuser { }
ol.commentlist li.comment-author-admin { }
ol.commentlist li.comment { border-bottom: 1px dotted #666; padding: 10px; }
ol.commentlist li.comment div.comment-author { }
ol.commentlist li.comment div.vcard { }
ol.commentlist li.comment div.vcard cite.fn { font-style: normal; }
ol.commentlist li.comment div.vcard cite.fn a.url { }
ol.commentlist li.comment div.vcard img.avatar { float:right; margin: 0 0 10px 10px; }
ol.commentlist li.comment div.vcard img.avatar-32 { }
ol.commentlist li.comment div.vcard img.photo { }
ol.commentlist li.comment div.vcard span.says { }
ol.commentlist li.comment div.commentmetadata { }
ol.commentlist li.comment div.comment-meta { font-size: 10px; }
ol.commentlist li.comment div.comment-meta a { color: #ccc; }
ol.commentlist li.comment p { }
ol.commentlist li.comment ul { }
ol.commentlist li.comment div.reply { font-size: 11px; }
ol.commentlist li.comment div.reply a { font-weight: bold; }
ol.commentlist li.comment ul.children { list-style: none; margin: 10px 0 0; }
ol.commentlist li.comment ul.children li { }
ol.commentlist li.comment ul.children li.alt { }
ol.commentlist li.comment ul.children li.bypostauthor { }
ol.commentlist li.comment ul.children li.byuser { }
ol.commentlist li.comment ul.children li.comment { }
ol.commentlist li.comment ul.children li.comment-author-admin { }
ol.commentlist li.comment ul.children li.depth-2 { border-left: 5px solid #555; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-3 { border-left: 5px solid #999; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-4 { border-left: 5px solid #bbb; margin: 0 0 10px 10px; }
ol.commentlist li.comment ul.children li.depth-5 { }
ol.commentlist li.comment ul.children li.odd { }
ol.commentlist li.even { background: #fff; }
ol.commentlist li.odd { background: #f6f6f6; }
ol.commentlist li.parent { border-left: 5px solid #111; }
ol.commentlist li.thread-alt { }
ol.commentlist li.thread-even { }
ol.commentlist li.thread-odd { }

/*** Flex ***/
.flexslider.thumbnails {
	margin: 0 24px;
}

.flexslider.thumbnails ul.slides > li > a {
	margin-bottom: 0;
}

.flex-direction-nav a {
	float: none!important;
	width: 30px !important;
	height: 30px !important;
	margin-right: 0!important;
	margin-bottom: 0!important;
}

.flex-direction-nav .flex-disabled {
	opacity: 0.4 !important;
}

.flex-direction-nav .flex-next {
    background-position: 100% 0;
}

.flex-pauseplay {
	display:none;
}

.images ul li a.zoom {
	width:100%!important;
}

.flexslider {
	box-shadow:none!important;
}

ul.slides {
	margin:0!important;
	overflow:hidden;
}

.flexslider .slides li {
	margin-right:5px;
}

.flex-pauseplay, .flex-control-nav {
	display:none!important;
}

.flexslider .flex-prev,
.flexslider .flex-next {
	background: var(--border-color);
	text-indent: 0;
	text-align: center;
	line-height: 30px;
}

.flexslider .flex-prev::before,
.flexslider .flex-next::before {
	font-family: Dashicons;	
	font-size: 20px;
}

.flexslider .flex-next {
	opacity: 0.8; 
	right: -30px!important;
} 

.flex-direction-nav a.flex-next::before,
.flexslider .flex-next::before {
	content: '\f345';
}

.flexslider .flex-prev {
	opacity: 0.8; 
	left: -30px!important;
}

.flex-direction-nav a.flex-prev::before,
.flexslider .flex-prev::before {
	content: '\f341';
}

/*** Geo Popup ***/

#sgcboxLoadedContent {
	margin-bottom:0!important;
	overflow:hidden!important;
}

.gpopup-content {
	text-align:center;
	max-width:600px;
}

.gpopup-content p {
	color:#332A86;
	font-size:28px;
	margin-bottom:20px;
}

.gpopup-flagswrap {
	width:100%;
}

.gpopup-flag {
	float:left;
	text-align:center;
	width:50%;
}

.gpopup-flag img {
	display:block;
	margin:0 auto 10px;
}

.gpopup-flag a.gpopup-button {
	/*background:#00AEEF;
	border-radius:7px;
	color:#ffffff;
	display:block;
	font-size:24px;
	height:13px;
	margin:12px auto;
	padding:8px 15px;
	text-decoration:none;
	text-transform:uppercase;
	width:83px;*/
	display:block;
	margin:34px auto 0;
	width:228px;
}

.colorbox1.sg-popup-content-1 #sgcboxClose, .colorbox1.sg-popup-content-2 #sgcboxClose {
	background:url('images/stay-global-lg.png')!important;
	background-color:#01ADEF;
	border-radius:7px;
	color:#00AEEF!important;
	height:60px!important;
	font-size:0;
	left: 37px;
	padding:0 15px!important;
	text-indent:0!important;
	text-transform:uppercase!important;
	top: 210px;
	width:228px!important;	
}


.colorbox1.sg-popup-content-5 #sgcboxClose, .colorbox1.sg-popup-content-19 #sgcboxClose {
	/*background:url('https://www.spinfiresport.com/wp-content/uploads/2018/05/stay-global-mobile.png')!important;*/
	background:url('../../uploads/2018/05/stay-global-mobile.png')!important;
	height:39px!important;
	left: 10px!important;
	top: 160px!important;
	width:150px!important;	
}

.close-text {
	color: rgb(255, 255, 255);
	position: relative;
	z-index: 1;
	font-size: 12px;
	text-transform: uppercase;
	padding-top: 9px;
	line-height: 0!important;
	margin-top: 18px!important;
	display: block!important;
}

/* Knowledgebase */

.search-results #main-content .type-kb {
    display: none;
}

.hide {
  display: none;
}

.contact-info {
  margin-bottom: 1rem;
  padding: 1.5rem;
  padding-left: 36px;
  color: #5a5a5a;
  background-color: #d1ecf1;
  border-color: #bee5eb;
  font-size: 0.9rem;
}

.contact-info > * {
  position: relative;
}

.contact-info > *::before {
  font-family: Fontawesome;
  position: absolute;
  left: -16px;
  color: #5a5a5a;
}

.contact-info p {
  padding: 0 0 10px;
}

.contact-info a {
  color: #00adef;
}

.contact-info__address {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted;
  font-style: normal;
}

.contact-info__address::before {
  content: '\f041 ';
}

.contact-info__hours {
  margin-bottom: 10px;
  border-bottom: 1px dotted;
}

.contact-info__hours::before {
  content: '\f017 ';
}

.contact-info__phone {

}

.contact-info__phone::before {
  content: '\f095 ';
}

/** Thank You */
.gform_confirmation_message,
.thank-you {
  padding: 24px;
  background-color: #e1faea;
  color: #5a5a5a;
}

.thank-you a {
  color: #00adef;
}

/* CPT: Documentation */
.single-documentation #main-content a {
  color: #00aeef;
}

.single-documentation #main-content a:hover {
  text-decoration: underline;
}

.single-documentation #main-content ul,
.single-documentation #main-content ol {
  margin: 0;
  list-style-position: inside;
}

.single-documentation #main-content ul ul,
.single-documentation #main-content ul ol,
.single-documentation #main-content ol ol,
.single-documentation #main-content ol ul {
  margin-left: 30px;
}


.single-documentation #main-content li {
  margin-bottom: 20px;
}

/* WP admin bar */
#wpadminbar {
  position: fixed !important;
  top: 0;
}

/* Improvements on product details page. */
#main-content .woocommerce-Tabs-panel--description h1,
#main-content .product-features h1,
#main-content .woocommerce-Tabs-panel--description h2,
#main-content .product-features h2,
#main-content .woocommerce-Tabs-panel--description h3,
#main-content .product-features h3,
#main-content .woocommerce-Tabs-panel--description h4,
#main-content .product-features h4,
#main-content .woocommerce-Tabs-panel--description h5,
#main-content .product-features h5,
#main-content .woocommerce-Tabs-panel--description h6,
#main-content .product-features h6 {
    margin-bottom: 10px;
}

#main-content .woocommerce-Tabs-panel--description h4 {
    font-size: 12pt;
}

#main-content .woocommerce-Tabs-panel--description h5 {
    font-size: 10pt;
}

#main-content .woocommerce-Tabs-panel--description p {
    padding-top: 0;
}

#main-content .product-features ul,
#main-content .woocommerce-Tabs-panel ul {
    list-style: none;
    margin-left: 0 !important;
    margin-bottom: 0;
}

#main-content .product-features ul li,
#main-content .woocommerce-Tabs-panel ul li {
    position: relative;
    padding-left: 0.75rem;
    padding-bottom: 0.25rem;
}

#main-content .product-features li::before,
#main-content .woocommerce-Tabs-panel li::before {
    content: '.';
    position: absolute;
    left: 0;
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    margin-top: 7px;
    background: var(--gray);
    border-radius: 50%;
    color: transparent;
}

#main-content .product-features  {
    clear: left;
    float: none;
    margin: 10px 0;
    width: 100%;
}

@media only screen and (max-width: 768px) {
    #main-content .product-features {
        width: 100%;
    }
}

@media screen and (min-width: 767px) {
}

#tab-title-additional_information { display: none; }

.mkb-article-text ol,
.mkb-article-text ul {
	margin-bottom: 10px !important;
}

/* 4.0 Widgets */
#footer-widgets .footer-widget {
	font-size: 1rem;
}

.footer-widget address {
	margin-bottom: 12px;
	font-size: 1.5rem;
	font-weight: 700;
	font-style: normal;
}

.footer-widget .widget-subtitle {
	font-size: 1.25rem;
	font-weight: 700;
}

.additional-info {
	list-style: none;
}

.additional-info > li {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 42px;
	line-height: 1.4rem;
	margin-bottom: 12px;	
	padding-left: 56px;
}

.additional-info > li::before {
	font-family: Fontawesome;
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 42px;
	height: 42px;
	line-height: 42px;
	font-size: 1.5rem;
	background-color: var(--white);
	color: var(--sky-blue);
	text-align: center;
	border-radius: 8px;
}

.additional-info__shipping::before {
	content: '\f0d1';
	transform: rotateY(180deg);
}

.additional-info__support::before {
	content: '\f095';
}

.additional-info__payment::before {
	content: '\f09d';
}

@media (max-width: 767px) {
	#footer-widgets {
		padding: 0;
	}

	#footer-widgets .footer-widget {
		width: 100%;
		box-sizing: border-box;
		margin: 0 0 20px;
		padding: 40px 20px;
		border-bottom: 2px solid var(--light-blue);
	}

	#footer-widgets .footer-widget:last-child {
		margin-bottom: 0 !important;
		border-bottom: 0;
	}
}

@media (max-width: 479px) {
	#footer-widgets .footer-widget {
		padding: 30px 20px;
	}

}
/* End of: 4.0 Widgets */


/* - Category */
.woocommerce .product a.added_to_cart,
.product .added_to_cart {
	display: none;
}
/* End of: - Category */


/* 99.0 Footer */
#site-footer a {
	color: var(--white);
	text-decoration: underline;
}

#site-footer a::hover {
	color: var(--light-blue);
}

/* 99.1 Footer Logo */
#footer-logo {
	margin: -33px 0 -20px;
	filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
	#footer-logo {
		width: 200px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	#footer-logo {
		margin-top: 0;
	}
}
/* end of: 99.1 Footer Logo */
/* end of: 99.0 Footer */

/* Spinfire App Guide */
.sidebar-nav-container {
	position: static;
}

.sidebar-nav-mobile {
	display: none;
}

@media screen and (max-width: 991px) {
	html.sidebar-nav-mobile-open,
	body.sidebar-nav-mobile-open {
		overflow-y: hidden;
	}

	body .is-layout-flex > .sidebar-nav-container {
	    margin-left: -15px;
	    margin-right: -15px;
	}

	body .is-layout-flex > .sidebar-nav-container.sticky {
	    margin-left: 0;
	    margin-right: 0;
	}

	.sidebar-nav-container {
	    margin-left: -15px;
	    margin-right: -15px;
	    padding: 20px 15px;
	    background: var(--dark-gray);
	}

	.sidebar-nav-container.sticky {
		position: fixed;
		left: 0;
		right: 0;
		z-index: 2;
		width: 100%;
		box-shadow: 0 5px 20px rgba(36,36,36,.12);
	}

	body.sidebar-nav-sticky .sidebar-nav-container + .wp-block-column {
		padding-top: 100px;
	}

	.sidebar-nav-mobile {
		position: relative;
		display: block;
		border: 1px solid var(--border-color);
		padding: 12px 16px;
		background: var(--white);
		font-weight: 700;
		cursor: pointer;
	}

	.sidebar-nav-mobile::after {
		content: '.';
		position: absolute;
		top: 50%;
		right: 15px;
		display: inline-block;
		width: 18px;
		height: 18px;
		background-image: url(images/dropdown--alt.svg);
		background-position: 50% 50%;
		background-size: 150%;
		background-repeat: no-repeat;
		color: transparent;
		transform: translateY(-50%);
	}

	.sidebar-nav-mobile.active::after {
		background-image: url(images/close-alt.svg);
		background-size: 100%;
	}
	
	.sidebar-nav-mobile p {
		margin-bottom: 0;
		padding-bottom: 0;
	}

	.sidebar-nav-mobile .sidebar-nav-mobile__title {
		display: none;	
	}

	.sidebar-nav-mobile.active .sidebar-nav-mobile__title {
		display: block;
	}

	.sidebar-nav-mobile .sidebar-nav-mobile__subtitle {
		display: block;
	}

	.sidebar-nav-mobile.active .sidebar-nav-mobile__subtitle {
		display: none;
	}

	.sidebar-nav-mobile + .sidebar-nav {
		display: none;
		position: static !important;
		overflow-y: auto;
		height: calc(100dvh - calc(var(--header-height) + var(--wp-admin-bar-height) + var(--sidebar-nav-mobile-height)))
	}

	.sidebar-nav-mobile.active + .sidebar-nav {
		display: block;
	}
}
/* End of: Spinfire App Guide */

/* - Single Product */
.single-product {

}

.single-product div.product {
	container: singleProduct / inline-size;
}

@container singleProduct (min-width: 940px) {
	.woocommerce div.product div.images.woocommerce-product-gallery {
		transform: rotate(90deg);
		height: 60cqw;
	}

	.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
		height: 60cqw;
	}

	.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image {
		width: calc(60cqw - 78px);
		transform: rotate(-90deg);
	}
	
	.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__image:first-child:last-child {
		width: 60cqw;
	}

	.woocommerce div.product div.images.woocommerce-product-gallery .flexslider {
		padding-top: 0;
		width: 420px;
		width: 470px;
	}

	.woocommerce div.product div.images.woocommerce-product-gallery .flexslider li img {
		transform: rotate(-90deg);
	}
	
	.woocommerce div.product div.images.woocommerce-product-gallery .flexslider ul.flex-direction-nav {
		margin: 0 !important;
	}
	
}

/* End of: - Single Product */
