@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

@font-face {
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-regular-400.woff2)
			format("woff2"),
		url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-regular-400.ttf)
			format("truetype");
}
@font-face {
	font-family: "Font Awesome 6 Free";
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2)
			format("woff2"),
		url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.ttf)
			format("truetype");
}


* {
	box-sizing: border-box;
}

body {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
	-moz-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
	-ms-animation: -amp-start 8s steps(1, end) 0s 1 normal both;
	animation: -amp-start 8s steps(1, end) 0s 1 normal both;
	margin: 0;
	font-family: "Avenir", "Sen", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #fff;
}

html:not([amp4ads]) body {
	height: auto !important;
	margin: 0 !important;
}

html.i-amphtml-singledoc > body {
	overflow: visible !important;
}

html.i-amphtml-singledoc:not(.i-amphtml-inabox) > body {
	position: relative !important;
}

html {
	overflow-x: hidden !important;
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

@media screen, projection, tv {
	html {
		font-size: 16px;
		/* font-family: Roboto, Verdana, Geneva, Tahoma, sans-serif; */
		font-family: "Avenir", "Sen", sans-serif;
	}

	:root {
		--tcc-light-orange: #ea9f44;
		--tcc-light-blue: #0099cf;
		--tcc-tan: #fee7c6;
	}
}

html:not([amp4ads]) {
	height: auto !important;
}

nav {
	display: block;
}

.navbar {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0.5rem 1rem;
}

@media (min-width: 1200px) {
	.navbar-expand-xl {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.bg-white {
	background-color: #fff !important;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
  display:flex;
   flex-wrap:nowrap;
  justify-content:space-between;
}

 .fixed-top .subnav-logo{
   display:flex;
   flex-wrap:nowrap;
   justify-content:space-between;
  }

@media screen, projection, tv {
	.bg-white {
		background-color: #fff !important;
	}
}

*,
:after,
:before {
	box-sizing: border-box;
}

button {
	border-radius: 0;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	overflow: visible;
	text-transform: none;
}

[type="button"],
button {
	-webkit-appearance: button;
}

.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0.25rem;
  margin-left: 1rem;
}

@media screen, projection, tv {
	button,
	[type="button"] {
		-webkit-appearance: none;
	}
}

[type="button"]:not(:disabled),
button:not(:disabled) {
	cursor: pointer;
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-toggler {
		display: none;
	}
}

.navbar-light .navbar-toggler {
	color: rgba(0, 0, 0, 0.5);
	border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler:hover {
	text-decoration: none;
}

.navbar-collapse {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-align: center;
	align-items: center;
}

@media screen, projection, tv {
	.navbar-collapse {
		min-height: 100vh;
	}
}

@media (min-width: 1200px) {
	.navbar-collapse {
		min-height: 70px;
	}
}

.collapse:not(.show) {
	display: none;
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-collapse {
		display: -ms-flexbox !important;
		display: flex !important;
    flex-direction: row;
    justify-content: center;
		-ms-flex-preferred-size: auto;
		flex-basis: auto;
	}
}

a {
	color: #007bff;
	text-decoration: none;
	background-color: transparent;
}

@media screen, projection, tv {
	a {
		color: var(--tcc-light-blue);
	}
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

@media screen, projection, tv {
	a:hover {
		text-decoration: none;
	}
}

.d-none {
	display: none !important;
}

@media (min-width: 1200px) {
	.d-md-block {
		display: block !important;
	}
}

@media screen, projection, tv {
	.tcc-dark-gray {
		color: #555;
	}
}

@media (min-width: 1200px) {
	.nav-phone {
		/* font-family: "EB Garamond", serif; */
		font-family: "Avenir", "Sen", sans-serif;
		display: block;
		padding: 0;
		font-size: 1.125rem;
		color: #555;
		text-align: center;
	}
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: 50%/100% 100% no-repeat;
	background-image: initial;
	background-position-x: 50%;
	background-position-y: center;
	background-size: 100% 100%;
	background-repeat-x: no-repeat;
	background-repeat-y: no-repeat;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;
	background-color: initial;
}

.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

ul {
	margin-top: 0;
	margin-bottom: 1rem;
}

@media screen, projection, tv {
	ul {
		max-width: 78ch;
		font-size: 1.375rem;
		line-height: 1.6;
		color: #555;
	}
}

.navbar-nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

@media screen, projection, tv {
	.navbar-nav {
		/*margin-right: auto;*/
	}
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.mt-2 {
	margin-top: 0.5rem !important;
}

@media (min-width: 992px) {
	.mt-lg-0 {
		margin-top: 0 !important;
	}
}

nav img {
	vertical-align: middle;
	border-style: none;
}

@media screen, projection, tv {
	nav img {
		min-width: 5rem;
	}

	.small-logo {
		max-width: 100%;
		max-height: 40px;
	}

	li {
		max-width: 78ch;
		font-size: 1.375rem;
		line-height: 1.6;
		color: #555;
	}
}

.d-block {
	display: block !important;
}

@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.dropdown-toggle {
	white-space: nowrap;
}

@media (min-width: 1200px) {
	.dropdown-toggle {
		position: relative;
	}
}

.dropdown-toggle:after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}

@media screen, projection, tv {
	.dropdown-toggle:after {
		display: none;
	}
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.d-lg-block {
		display: block !important;
	}
}

.btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.btn:hover {
	color: #212529;
	text-decoration: none;
  background: none !important;
}

a.nav-link,
.nav-link {
	display: block;
	padding: 0.5rem 0.5rem;
	font-family: "Avenir", "Sen", sans-serif !important;
	font-weight: 800 !important;
	font-size: 18px !important;
}

@media screen, projection, tv {
	.nav-link {
		font-size: 1.375rem;
		/* margin-right: 1rem; */
		margin-right: 0;
		text-decoration: none;
		max-height: 100%;
	}
}

.navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0;
  	font-size: 1.2rem;
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: 0.5rem;
		padding-left: 0.5rem;
	}
}

.navbar-light .navbar-nav .nav-link {
	/* color: rgba(0, 0, 0, 0.5); */
	color: #333333 !important;
}

.nav-link:hover {
	text-decoration: none;
}

.navbar-light .navbar-nav .nav-link:hover {
	color: rgba(0, 0, 0, 0.7);
}

ul ul {
	margin-bottom: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: rem;
	padding: 0.5rem 0;
	margin: 0.125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 0.25rem;
}

@media screen, projection, tv {
	.dropdown-menu {
		margin: 0;
	}
}

@media (min-width: 1200px) {
	.dropdown-menu {
		left: auto;
		min-width: min(50vw, 10rem);
		padding: 2rem;
		border-radius: 0;
		border: unset;
		border: 1px solid var(--tcc-tan);
		box-shadow: var(--tcc-light-orange) 1px;
	}
}

.navbar-nav .dropdown-menu {
	position: static;
	float: none;
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute;
	}
}

.form-inline {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-ms-flex-align: center;
	align-items: center;
}

.mr-4 {
	margin-right: 1.5rem !important;
}

@media (min-width: 768px) {
	.mt-md-3 {
		margin-top: 1rem !important;
	}
}

.text-white {
	color: #fff !important;
}

@media screen, projection, tv {
.btn-account {
  background: #fff !important;
  color: #FA9E14 !important;
  border: 1px solid #FA9E14 !important;
  border-radius: 5px;
}
  .nav-link .btn-account .text-white .bg-blue {
    background: #FA9E14;
    color: #fff;
  }
  
	.bg-blue {
  background: #fff !important;
  color: #FA9E14 !important;
  border: 1px solid #FA9E14 !important;
  border-radius: 5px;
}
	}

}

.badge {
	display: inline-block;
	padding: 0.25em 0.4em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.badge-warning {
	color: #212529;
	background-color: #ffc107;
}

.badge:empty {
	display: none;
}

@media screen, projection, tv {
	#cart-qty-badge {
		position: absolute;
		top: 0;
		right: -10px;
	}
}

.fa {
	display: var(--fa-display, inline-block);
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fa-phone:before {
	content: "\f095";
}

@media screen, projection, tv {
	.nav-link i {
		font-size: 13pt;
		padding-bottom: 4px;
	}
}

.fa-caret-down:before {
	content: "\f0d7";
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

@media screen, projection, tv {
	.row {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
}

@media (min-width: 1200px) {
  .store-button-small {display:none !important;}
  .login-dropdown {display:none !important;}
  .navbar-nav {flex-direction: row; justify-content: center;}
  .account-buttons {
    align-items: center;
  }
	.dropdown-menu > .row {
		display: flex;
		justify-content: left;
		flex-wrap: nowrap;
		margin: 0;
	}
}


@media (max-width: 1200px) {
  .subnav-logo {width: 100%;}
  .fixed-top {flex-wrap: wrap;}
  .navbar-nav {flex-direction: column;}
  .account-buttons {display:none;}
	.dropdown-menu > .row  {
		display: flex;
		justify-content: left;
		flex-wrap: wrap;
     width: 100%;
		margin: 0;
	}
}


.d-flex {
	display: -ms-flexbox !important;
	display: flex !important;
}

.justify-content-end {
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

input {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	overflow: visible;
}

@media screen, projection, tv {
	input {
		line-height: 1.75rem;
		min-height: 2.5rem;
	}
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.5em + 0.75rem + 2px);
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (min-width: 576px) {
	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}
}

[type="submit"],
button {
	-webkit-appearance: button;
}

.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}

@media (min-width: 576px) {
	.my-sm-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}

@media screen, projection, tv {
	[type="submit"],
	button {
		-webkit-appearance: none;
	}
}

[type="submit"]:not(:disabled),
button:not(:disabled) {
	cursor: pointer;
}

h4 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
	font-size: 1.5rem;
}

.row > div{
	position: relative;
	max-width: 100%;
	padding-right: 15px;
	padding-left: 15px;
  flex: 0 0 100%;
}

.col-md-7 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 1200px) {
	.col-md-7 {
		-ms-flex: 0 0 58.333333%;
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
	}
}

.col-md-6 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

@media (min-width: 768px) {
	.col-md-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

.mr-5 {
	margin-right: 3rem !important;
}

.fa-magnifying-glass:before,
.fa-search:before {
	content: "\f002";
}

.mt-3 {
	margin-top: 1rem !important;
}

.fa-cart-shopping:before,
.fa-shopping-cart:before {
	content: "\f07a";
}

.dropdown-header {
	display: block;
	padding: 0.5rem 1.5rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #6c757d;
	white-space: nowrap;
}

@media screen, projection, tv {
	.dropdown-header {
		font-size: 1.125rem;
		padding: 0 0 0.5rem 0;
		color: #555;
		text-transform: uppercase;
		border-bottom: 3px solid #ea9f44;
	}
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: 0.25rem 1.5rem;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

@media screen, projection, tv {
	.dropdown-item {
		font-size: 1.125rem;
		padding: 0.5rem 0.25rem;
		margin: 0.5rem 0;
		color: #555;
	}
}

.dropdown-item:hover {
	color: #16181b;
	text-decoration: none;
	background-color: #e9ecef;
}

@media screen, projection, tv {
	.dropdown-item:hover,
	.dropdown-item:active {
		color: #555;
		font-weight: normal !important;
		background-color: #f3f3f3 !important;
	}

	.dropdown-item > i {
		margin-right: 0.5rem;
		width: 1.5rem;
	}
}

.fa-door-open:before {
	content: "\f52b";
}

.fa-automobile:before,
.fa-car:before {
	content: "\f1b9";
}

.fa-id-badge:before {
	content: "\f2c1";
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
	content: "\f19d";
}

.fa-balance-scale:before,
.fa-scale-balanced:before {
	content: "\f24e";
}

.fa-user:before {
	content: "\f007";
}

.fa-book:before {
	content: "\f02d";
}

sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
	top: -0.5em;
}

.fa-spa:before {
	content: "\f5bb";
}

.fa-pencil-alt:before,
.fa-pencil:before {
	content: "\f303";
}

.fa-notes-medical:before {
	content: "\f481";
}

.fa-video-camera:before,
.fa-video:before {
	content: "\f03d";
}

.fa-laptop:before {
	content: "\f109";
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
	color: #555;
	font-weight: normal !important;
	background-color: #f3f3f3 !important;
}
.dropdown-toggle{
position: relative;
}
.dropdown-toggle:hover > .dropdown-menu {
	display: block;
 right: 0;
}

nav ul li form {
	background-color: #fff;
	border: 1px #d0d0d0;
	border-radius: 18px;
	padding: 0;
}

nav button:hover,
nav .btn:hover {
	border: none;
	transition: all 0s;
}

.nav-item.btn.btn-md {
	border: none !important;
}
nav button.btn {
	border: none !important;
}

.body-container {
	padding: 0;
}


a.login-button {
  font-family: "Avenir", "Sen", sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  border: 2px solid #ffffff !important;
  padding: 6px 30px;
  border-radius: 5px;
  display: inline-block !important;
}

a.store-button {
  font-family: "Avenir", "Sen", sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  background-color: #ffffff !important;
  color: #333333 !important;
  border: 2px solid #333333;
  padding: 6px 30px;
  border-radius: 5px;
  min-width: 170px !important;
  display: inline-block !important;
}

a.contact-button {
  font-family: "Avenir", "Sen", sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  background-color: #572FD0 !important;
  color: #ffffff !important;
  border: 2px solid #572FD0;
  padding: 6px 30px;
  border-radius: 5px;
  min-width: 170px !important;
  display: inline-block !important;
}

.account-buttons {
	margin-left: 60px;
}

.account-buttons .nav-item {
	margin-left: 0 !important;
	margin-right: 0 !important;

}

.navbar-logo {
	margin-bottom: 8px;
}
