/* root settings */

@charset "UTF-8";
:root {
	/* FONTS */
	--font-primary: "Lato", sans-serif;
	--font-secondary: "Lato", sans-serif;
	/* FONT SIZES */
	--font-size-default: 18px;
	--font-size-big: 20px;
	--font-size-bigger: 22px;
	--font-size-biggest: 27px;
	--font-size-small: 16px;
	--font-size-smaller: 14px;
	--font-size-smallest: 12px;
	--heading-size-smaller: 30px;
	--heading-size-small: 35px;
	--heading-size-big: 45px;
	--heading-size-bigger: 55px;
	--heading-size-biggest: 65px;
	/* SPACING */
	--spacing-20: 20px;
	--spacing-30: 30px;
	--spacing-40: 40px;
	--spacing-50: 50px;
	/* WIDTHS 
	--width-xl: 1360px;
	--width-lg: 1140px;
	--width-md: 960px;
	--width-sm: 720px;
	--width-xs: 540px;*/
	/* COLORS */
	--primary: #000;
	--secondary: #172850;	
	--color-blue-light: #0056D6;
}

/* top bar */

.top-bar-container {
	background-color: var(--secondary);
	color: var(--white);
}
.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: var(--default-content-width);
	margin-right: auto;
	margin-left: auto;
	padding: calc(var(--default-spacing-unit)/2) var(--default-spacing-unit);
}
.top-bar-phone {
	text-align: left;
	width: 33.333%;
}
.top-bar-message {
	text-align: center;
	width: 33.333%;
}
.top-bar-translate {
	text-align: right;
	width: 33.333%;
}
@media (max-width: 800px) {
	.top-bar-message {
		display: none;
	}
	.top-bar-phone, .top-bar-translate {
		width: 50%;
	}
}

/* global header */

.t-site-header__logo img {
    max-height: 90px;
    width: auto;
}
.t-site-header {
    border: 0;
}
@media (max-width: 59.999em) {
    .t-site-header {
        position: relative;
        z-index: 1001;
    }
}
.t-site-header__search-form {
    border: 1px solid var(--gray-600);
    border-radius: var(--default-border-radius);
    margin-bottom: 0;
    position: relative;
}
.t-site-header__search-form fieldset {
	display: flex;
}
.t-site-header__search-form fieldset .c-form-list:nth-child(2) {
	width: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.t-site-header__search-form fieldset .c-form-list:nth-child(3) {
	width: 70%;
}
@media (max-width: 1125px) {
	.t-site-header__search-form fieldset .c-form-list:nth-child(2) {
		width: 36%;
		font-size: 0.9em!important;
	}
	.t-site-header__search-form fieldset .c-form-list:nth-child(3) {
		width: 64%;
	}
}
@media (max-width: 500px) {
	.t-site-header__search-form fieldset .c-form-list:nth-child(2) {
		width: 39%;
		font-size: 0.85em!important;
	}
	.t-site-header__search-form fieldset .c-form-list:nth-child(3) {
		width: 61%;
	}
}
.t-site-header__search-form .t-site-header__search-button {
    display: block;
	width: inherit;
	background-color: var(--black);
	color: var(--white);
	padding-left: 0;
	padding-right: 0;
}
.t-site-header__search-form .c-control-group .c-control-group__button, .t-site-header__search-form .c-control-group .c-control-group__field {
    flex: inherit;
    position: relative;
    width: inherit;
}
.t-site-header__search-form .c-control-group .c-control-group__field {
	width: 82%;
	background-color: #F1F1F1;
}
.t-site-header__search-form .c-control-group .c-control-group__button {
	width: 18%;
}
.t-global-account-toggle i {
	font-size: 22px;
}
.global-header-slogan {
	margin-top: 8px;
	text-align: center;
	font-size: var(--font-size-big);
	font-weight: bold;
}
@media (max-width: 1225px) {
	.global-header-slogan {
		font-size: var(--font-primary);
	}
}
@media (max-width: 450px) {
	.global-header-slogan {
		font-size: 10px;
	}
}

/* navigation */

.t-site-navigation {
    border: 0;
}
.t-site-navigation {
    background-color: var(--primary);
}
	.t-page-sfnt .t-site-navigation {
		margin-bottom: 0;
	}
.t-site-navigation__wrap {
    font-size: 1rem;
}
.c-navigation__link {
    background-color: var(--primary)!important;
    color: var(--white)!important;
    display: block;
    padding: 0.3em 1em;
}
@media screen and (max-width: 59.999em) {
    .x-transfigure-navigation.is-open {
        z-index: 1001;
    }
}
/*@media screen and (min-width: 60em) {
	.x-transfigure-navigation .c-navigation__list:hover > .c-navigation__row, .x-transfigure-navigation .c-navigation__list:focus-within > .c-navigation__row {
		flex-direction: column;
	}
}*/

/* global footer */

@media (min-width: 48em) {
    .t-site-footer {
        padding-top: 1rem;
    }
    .t-site-footer__content {
        padding-bottom: 2rem;
    }
}
.t-site-footer__content .c-menu__link:not([class*=" u-icon-"]) {
    color: var(--white);
}
.global-footer-icons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 20px;
}
.global-footer-icons a {
	margin-right: 12px;
	font-size: 30px;
	text-decoration: none;
	text-align: center;
}
	.global-footer-icons a i {
		/*color: #000;
		background: #FFF;
		padding: 4px; 
		border-radius: 30px; */
	}
	.global-footer-icons a i.fa-youtube {
		color: #FF0033!important;
		background-color: #FFF;
		padding: 1px 3px;
		border-radius: 8px;
	}
	.global-footer-icons a strong {
		display: block;
		font-size: 11px;
		font-weight: 300;
	}

/* breadcrumbs */

.x-breadcrumbs__list {
    justify-content: start;
	padding-top: 0;
}
@media (min-width: 60em) {
    .x-breadcrumbs {
        margin: 0 auto var(--default-spacing-unit);
        max-width: var(--default-content-width);
        width: 100%;
    }
}
.x-breadcrumbs__item:not(:last-child) {
    margin-left: 5px;
}

/* container */

.t-main-content-element {
   padding-top: 20px;
   padding-bottom: 30px;
}
.t-page-ctgy .t-main-content-element, .t-page-prod .t-main-content-element {
   padding-top: 0;
   padding-bottom: 30px;
}

/* ctgy */

.x-product-list__item {
    justify-content: center;
}
.x-product-list__figure, .x-product-list__figure-caption, .x-subcategory-list__figure, .x-subcategory-list__figure-caption {
    justify-content: center;
}
.x-product-list__picture, .x-subcategory-list__picture {
    aspect-ratio: inherit;
}
.x-product-list__figure, .x-product-list__figure-caption, .x-subcategory-list__figure, .x-subcategory-list__figure-caption {
    width: 80%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.x-product-list__figure-caption {
	width: 100%;
}

/* miva page builder overrides */

mmx-image-across, mmx-product-carousel, mmx-image-and-text, mmx-video {
	display: block!important;
    max-width: var(--default-content-width)!important;
	margin-left: auto!important;
	margin-right: auto!important;
}
@media (max-width: 1499px) {
	mmx-image-across, mmx-product-carousel, mmx-image-and-text, mmx-video {
		padding-left: 16px!important;
		padding-right: 16px!important;
	}
}
.mmx-accordion__content {
    max-height: 200px!important
    overflow: scroll!important
}

/* category tree */

.x-category-tree__section-title a {
	margin-top: 0;
}
.x-category-tree__link, .x-category-tree__link-set {
    color: var(--black);
    display: block;
    font-weight: var(--font-normal);
    line-height: 1.3;
}
.x-category-tree__list--level-1 a {
	font-weight: var(--font-bold);
	font-size: calc(var(--font-size-default)*1);
}
.x-category-tree__list--level-2 .x-category-tree__link {
    padding-left: 0;
}

/* product display */

.x-product-layout-images__figure {
    flex-basis: inherit;
	margin-left: auto;
	margin-right: auto;
}
.x-product-layout-purchase__pricing-current #price-value {
	font-size: var(--font-size-biggest);
	color: var(--color-blue-light);
}
.prod-oem-parts {
	margin-bottom: var(--spacing-30);
	font-size: var(--font-size-default);
}

/* tech info */

.techinfo-item {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	border: 1px solid #DDD;
	margin-bottom: 15px;
	padding: 15px;
}
.techinfo-item-name {
	width: 25%;
	margin-right: 1%;
	font-size: var(--font-size-default);
	font-weight: var(--font-bold);
}
.techinfo-item a {
	text-decoration: none;
}
.techinfo-item-desc {
	width: 60%;
	margin-right: 1%;
	font-size: var(--font-size-smaller);
}
.techinfo-item-link {
	width: 13%;
}
	.techinfo-item-link a {
		display: block;
		text-align: center;
		padding: 6px 8px;
		background-color: #000;
		color: #FFF;
	}
@media (max-width:600px) {
	.techinfo-item-name {
		width: 33%;
		font-size: var(--font-size-smaller);
	}
	.techinfo-item-desc {
		width: 53%;
	}
	.techinfo-item-link {
		width: 13%;
	}
		.techinfo-item-link a {
			font-size: var(--font-size-smallest);
		}
}

.mm_combination_facet_container {
	padding: 30px;
	background-color: #F1F1F1;
}

/* combo facet styles */

.combo-facet-container {
	padding: 20px 30px;
	margin-bottom: 20px;
	background-color: #EFEFEF;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}
body.t-page-srch .combo-facet-container {
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: 5px;
}
.combo-facet-title {
	padding: 0 20px;
	height: 30px;
	line-height: 30px;
	font-weight: bold;
	width:25%;
	background-color: #000;
	color: #fff;
	text-align: center;
}
#ComboSearch {
	display:flex;
	align-items: center;
	width:75%;
}
#ComboSearch div {
	width: 75%;
}
.ss-main {
	width: 100%!important;
}
.ss-main.ss-disabled {
    background-color: #FFF!important;
}
#combo-reset-button {
	width: 25%;
	height: 30px;
	line-height: 30px;
	padding: 0 8px;
	background-color: #F1F1F1;
	border: 1px solid #DDD;
	cursor: pointer;
}
.ss-main {
	border-radius: 0!important;
}
.ss-main.ss-disabled {
    background-color: var(--ss-disabled-color);
    cursor: not-allowed;
	color: red;
	font-weight: bold;
}
@media (max-width:700px) {
	.combo-facet-container {
		flex-direction: column;
		position: sticky;
		top: 0;          /* sticks to top of viewport */
		z-index: 1000;   /* keeps it above other elements */
		background: #fff; /* optional to prevent bleed-through */
		padding: 20px 30px 0px 30px;
		font-feature-settings: normal; /* reset */
	}
	.combo-facet-title {
		width: 100%;
	}
	#ComboSearch {
		width:100%;
	}
	#ComboSearch div {
		width: 73%;
	}
	#combo-reset-button {
		width: 27%;
	}
}

#combo-facet-container .superscript {
  font-size: 0.7em;
  vertical-align: super;
}

#password_note {
    display: block;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #F1F1F1;
    text-align: center;
}
#password_note_long {
    display: block;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #F1F1F1;
    text-align: center;
	font-size: 1.15em;
}
#password_note_long strong {
	color: red;
}
.t-logn-block {
    margin: 2rem 0;
    padding: 0 3rem;
}