body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	color: var(--text-default, #1a1a1a);
	font-size: 16px;
	line-height: 20px;
	width: 100%;
	background: var(--bg-page-default, #ffffff);
}
h1, h2, h3, h4, h5, h6 {
	color: var(--text-primary, #4E7A94);
}
/* default font size */
.fa {
	font-size: 16px;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 33px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 10.2px;
}
a {
	color: var(--text-secondary, #729FDA);
}
a:hover {
	text-decoration: none;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 12px;
	font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 14px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 14px;
}
.input-group .input-group-addon {
	font-size: 14px;
	height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: var(--color-danger, #dc3545);
	font-weight: bold;
}

/* content */
#content {
	min-height: 600px;
}
#product-category #content, #product-product #tab-description, #information-information #content {
	font-size: 13px;
}

/* alert */
.alert {
	padding: 8px 14px 8px 14px;
}
.alert > .close {
	position: relative;
	top: -2px;
	right: 0px;
	color: inherit;
}
/* =========================================================
   Breadcrumb
   ========================================================= */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 8px 0;
	margin: 0 0 10px 0;
	list-style: none;
	background: transparent;
	font-size: 14px;
	color: var(--text-secondary, #5e5e5e);
	margin: 15px auto;
}
.breadcrumb li {
	display: flex;
	align-items: center;
	color: var(--text-secondary, #5e5e5e);
	white-space: nowrap;
}
.breadcrumb li a {
	color: var(--text-secondary, #5e5e5e);
	text-decoration: none;
	transition: color 0.15s ease;
}
.breadcrumb li a:hover {
	color: var(--color-primary, #4E7A94);
	text-decoration: underline;
}
.breadcrumb li + li::before {
	content: "/";
	color: var(--text-secondary, #5e5e5e);
	margin: 0 6px;
	font-size: 13px;
	line-height: 1;
}
.breadcrumb li:last-child {
	color: var(--color-primary, #4E7A94);
	font-weight: 600;
}
.breadcrumb li:last-child a {
	pointer-events: none;
	color: var(--color-primary, #4E7A94);
	text-decoration: none;
}

.pagination {
	margin: 0;
}

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:left;
	}
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
       width: 100%;
    }

	#column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }

	#column-left + #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}
