@font-face {
  font-family: Nunito;
  src: url("../fonts/Nunito-Regular.d8de52e6c5df.ttf");
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Black.301fe70f8f0f.ttf");
}
@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat-Black.27e3649bab7c.ttf");
}
@font-face {
  font-family: Courgette;
  src: url("../fonts/Courgette-Regular.cbd252f5c26c.ttf");
}
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 18px;
}
html *, html *::before, html *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100vh;
  font-family: Nunito, sans-serif;
  font-size: 18px;
}

a, button.link-inline, button.link-inline:not([href]):not([tabindex]), button.link, button.link:not([href]):not([tabindex]), a:not([href]):not([tabindex]) {
  text-decoration: none;
  color: #005f9e;
  cursor: pointer;
}
a:hover, button.link-inline:hover, button.link:hover, a:hover:not([href]):not([tabindex]) {
  color: #003b61;
  text-decoration: none;
}
p, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Roboto, sans-serif;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

hr {
  border: none;
  border-top: solid #ddd 2px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

select,
textarea,
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=date] {
  font-size: 1.1em;
  padding: 5px;
  background-color: #fcfcfc;
}

textarea {
  max-width: 100%;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: none;
}
table th, table td {
  padding: 0.5em 0;
}

button {
  display: inline-block;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: inherit;
  margin: 0;
  padding: 0;
}
button[disabled] {
  cursor: default;
}
button.link {
  display: contents;
}
button.link-inline {
  display: inline;
}

.btn {
  display: inline-block;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25em;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 2px 2px 5px -1px #333;
}
.btn[disabled] {
  cursor: default;
  background-color: #666;
}
.btn[disabled]:hover {
  background-color: #666;
}
.btn.btn-small {
  padding: 0.1rem 0.3rem;
  font-size: 0.9rem;
}
.btn.btn-xl {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 2rem;
}

.btn-primary {
  color: white;
  background-color: #005f9e;
}
.btn-primary:hover {
  color: white;
  background-color: #003b61;
}

.btn-orange {
  color: white;
  background-color: #ef3f23;
}
.btn-orange:hover {
  color: white;
  background-color: #C9280F;
}

.btn-red {
  color: white;
  background-color: #e02d09;
}
.btn-red:hover {
  color: white;
  background-color: #b82507;
}

.btn-green {
  color: white;
  background-color: #008000;
}
.btn-green:hover {
  color: white;
  background-color: #004b23;
}

.btn-grey {
  color: white;
  background-color: #777;
}
.btn-grey:hover {
  color: white;
  background-color: #444;
}

.btn-shadow {
  box-shadow: 2px 2px 5px -1px #333;
}

.collapsible .collapse-open {
  display: block;
}
.collapsible .collapse-open.inline {
  display: inline;
}
.collapsible .collapse-close {
  display: none;
}
.collapsible.selected .collapse-open, .collapsible.active .collapse-open {
  display: none;
}
.collapsible.selected .collapse-close, .collapsible.active .collapse-close {
  display: block;
}
.collapsible.selected .collapse-close.inline, .collapsible.active .collapse-close.inline {
  display: inline;
}

.border-box, .border-box-small {
  border-radius: 8px;
  border: solid #ddd 2px;
  padding: 1em;
}

.border-box-small {
  padding: 0.333em;
}

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

.tab-bar {
  display: flex;
  align-items: stretch;
  border-bottom: solid #333 2px;
  margin-top: 0.7em;
  margin-bottom: 0.5em;
}
.tab-bar a, .tab-bar a:not([href]):not([tabindex]), .tab-bar button.link, .tab-bar button.link-inline {
  display: flex;
  flex-direction: column;
}

.tab-bar a:not(:first-of-type) .tab-bar-item, .tab-bar button.link:not(:first-of-type) .tab-bar-item, .tab-bar button.link-inline:not(:first-of-type) .tab-bar-item {
  border-left: none;
}

.tab-bar-item {
  height: 100%;
  font-family: Roboto, sans-serif;
  font-size: 1.1em;
  padding: 0.3em 1em;
  border-radius: 0.4em 0.4em 0 0;
  border: solid #666 1px;
  border-bottom: none;
  margin-bottom: -2px;
  cursor: pointer;
}
.tab-bar-item:not(:first-of-type) {
  border-left: none;
}
.tab-bar-item:hover {
  background-color: #005f9e;
  color: white;
}
.tab-bar-item.selected {
  background-color: rgba(50, 50, 50, 0.97);
  color: white;
  cursor: default;
  border: none;
}
.tab-bar-item.large {
  font-size: 1.4em;
  padding: 0.6em 1em;
}
@media screen and (max-width: 800px) {
  .tab-bar-item.large {
    font-size: 1.1em;
    padding: 0.3em 1em;
  }
}

.color-top-box, .dark-blue-top-box, .catalog-filters .catalog-fitment-panel {
  box-shadow: 0 0 5px #666;
  border-radius: 8px;
}

.color-top-box-header, .dark-blue-top-box-header, .catalog-filters .catalog-fitment-panel .fitment-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  border-radius: 8px 8px 0 0;
  padding: 8px;
  margin: -1px -1px 7px;
  color: white;
}
.color-top-box-header h1, .dark-blue-top-box-header h1, .catalog-filters .catalog-fitment-panel .fitment-panel-header h1, .color-top-box-header h2, .dark-blue-top-box-header h2, .catalog-filters .catalog-fitment-panel .fitment-panel-header h2, .color-top-box-header h3, .dark-blue-top-box-header h3, .catalog-filters .catalog-fitment-panel .fitment-panel-header h3, .color-top-box-header h4, .dark-blue-top-box-header h4, .catalog-filters .catalog-fitment-panel .fitment-panel-header h4, .color-top-box-header h5, .dark-blue-top-box-header h5, .catalog-filters .catalog-fitment-panel .fitment-panel-header h5, .color-top-box-header h6, .dark-blue-top-box-header h6, .catalog-filters .catalog-fitment-panel .fitment-panel-header h6, .color-top-box-header p, .dark-blue-top-box-header p, .catalog-filters .catalog-fitment-panel .fitment-panel-header p {
  margin-bottom: 0;
}

.color-top-box-body, .catalog-filters .catalog-fitment-panel .fitment-panel-body {
  padding: 0 7px 7px;
}

.dark-blue-top-box, .catalog-filters .catalog-fitment-panel {
  border: solid #003b61 1px;
}

.dark-blue-top-box-header, .catalog-filters .catalog-fitment-panel .fitment-panel-header {
  background-color: #003b61;
}

.scroll-x {
  overflow-x: scroll;
}

.simple-form {
  width: 100%;
}
.simple-form select, .simple-form textarea, .simple-form input {
  margin: 0.75em 0;
}
.simple-form select,
.simple-form textarea,
.simple-form input[type=text],
.simple-form input[type=email],
.simple-form input[type=password] {
  width: 100%;
}
.simple-form label {
  margin-bottom: 0;
  font-weight: bold;
}
.simple-form .radio:not(:first-of-type) {
  margin-left: 1.5em;
}
.simple-form .radio input[type=radio] {
  margin-right: 0.5em;
}
.simple-form .help-block {
  margin-top: -0.75em;
  font-size: 0.7em;
  font-style: italic;
  color: #555;
}
.simple-form .form-actions {
  display: flex;
  align-items: center;
}

.single-row-horizontal-dropdown-form {
  display: flex;
  align-items: center;
}
.single-row-horizontal-dropdown-form fieldset {
  display: flex;
}
.single-row-horizontal-dropdown-form select {
  margin-right: 0.5em;
  border-radius: 8px;
}
.single-row-horizontal-dropdown-form input[type=submit] {
  margin-left: 0.5em;
}
.single-row-horizontal-dropdown-form.spaced-1 select {
  margin-right: 1em;
}
.single-row-horizontal-dropdown-form.spaced-1p5 select {
  margin-right: 1.5em;
}
.single-row-horizontal-dropdown-form.spaced-2 select {
  margin-right: 2em;
}

.submit-right .form-actions {
  display: flex;
  justify-content: flex-end;
}

.labels-by-side .control-group {
  display: flex;
  align-items: center;
}
.labels-by-side .control-group .control-label {
  width: 20%;
  font-family: Roboto, sans-serif;
  margin-right: 2em;
}
.labels-by-side .control-group .controls {
  flex-grow: 1;
}
@media screen and (max-width: 800px) {
  .labels-by-side .control-group {
    display: block;
    margin: 0.75em 0;
  }
  .labels-by-side .control-group .control-label {
    width: 100%;
  }
  .labels-by-side .control-group .help-block {
    margin-top: 0;
  }
  .labels-by-side .control-group select, .labels-by-side .control-group textarea, .labels-by-side .control-group input {
    margin: 0;
  }
}

.labels-above label {
  margin: 0;
  font-weight: bold;
}
.labels-above select, .labels-above textarea, .labels-above input {
  margin: 0;
}
.labels-above .control-group {
  margin: 1.25rem 0;
}

.asteriskField {
  color: red;
  margin-left: 0.2em;
}

.stacked-radios .radio {
  display: block;
}

.help-block {
  font-size: 0.7em;
  font-style: italic;
  color: #555;
  margin: 0;
}

.close-x {
  cursor: pointer;
  color: #333c48;
}

.textarea-readonly, .appointment-message {
  font-style: italic;
  border: solid #aaa 1px;
  border-radius: 8px;
  padding: 0.6rem;
}

.messages {
  display: flex;
  flex-flow: row wrap;
  padding: 0.6em;
}

.message-bar, .warning-4set {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.5em 5%;
  color: #333c48;
  font-weight: bold;
  background-color: rgba(153, 153, 153, 0.3);
  border: solid rgba(153, 153, 153, 0.7) 2px;
}
.message-bar .icon, .warning-4set .icon {
  color: #999;
}
.message-bar.success, .success.warning-4set {
  background-color: rgba(61, 188, 95, 0.3);
  border: solid rgba(61, 188, 95, 0.7) 2px;
}
.message-bar.success .icon, .success.warning-4set .icon {
  color: #3dbc5f;
}
.message-bar.info, .info.warning-4set {
  background-color: rgba(0, 109, 229, 0.3);
  border: solid rgba(0, 109, 229, 0.7) 2px;
}
.message-bar.info .icon, .info.warning-4set .icon {
  color: #006de5;
}
.message-bar.warning, .warning-4set {
  background-color: rgba(239, 148, 0, 0.3);
  border: solid rgba(239, 148, 0, 0.7) 2px;
}
.message-bar.warning .icon, .warning-4set .icon {
  color: #ef9400;
}
.message-bar.error, .error.warning-4set {
  background-color: rgba(236, 78, 44, 0.3);
  border: solid rgba(236, 78, 44, 0.7) 2px;
}
.message-bar.error .icon, .error.warning-4set .icon {
  color: #ec4e2c;
}
.message-bar .icon, .warning-4set .icon {
  margin-right: 1em;
}
.message-bar .close-x, .warning-4set .close-x {
  margin-left: 0.5em;
}

.warning-text {
  font-family: Roboto, sans-serif;
  font-size: 0.6rem;
  font-weight: bold;
  color: red;
}

.help-inline {
  color: red;
}

.alert {
  color: red;
}
.alert ul {
  list-style-type: none;
  padding-inline-start: 0;
}

.highlight-yellow {
  background-color: yellow;
  padding: 2px;
}

.main-content-wrapper {
  width: 100%;
  margin-bottom: 1.5rem;
}

.main-content {
  max-width: 1200px;
  min-height: 65vh;
  margin: 0 auto;
  padding: 15px;
}
.main-content.spacious {
  margin: 5vh auto;
}
.main-content.spacious p, .main-content.spacious h1, .main-content.spacious h2, .main-content.spacious h3, .main-content.spacious h4, .main-content.spacious h5, .main-content.spacious h6 {
  margin-bottom: 1.25rem;
}
.main-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.middle-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem;
}

.main-content-small, .main-content-med {
  max-width: 500px;
  margin: 5vh auto;
  padding: 15px;
}

.main-content-med {
  max-width: 900px;
}

.app-with-nav {
  display: flex;
  align-items: flex-start;
  margin: 2rem 0;
}
.app-with-nav ul.app-nav {
  list-style-type: none;
  flex: 0;
  margin: 0;
  border-right: solid #ddd 2px;
  min-width: 25%;
}
.app-with-nav ul.app-nav li {
  border-bottom: solid #ddd 2px;
  padding: 1rem 2.5rem 1rem 1rem;
  color: #005f9e;
  font-size: 1.25em;
  font-weight: bold;
}
.app-with-nav ul.app-nav li:first-of-type {
  border-top: solid #ddd 2px;
}
.app-with-nav ul.app-nav li.selected {
  box-shadow: inset 0 10px 8px -10px #CCC, inset 0 -10px 8px -10px #CCC;
  color: #333;
}
.app-with-nav ul.app-nav li:hover:not(.selected) {
  background-color: #003b61;
  color: white;
  cursor: pointer;
}
.app-with-nav .app-body {
  padding-left: 4rem;
}

.select-wrap, .select-wrap-big {
  border: solid #ddd 2px;
  border-radius: 4px;
  padding: 0 2px;
  margin-bottom: 10px;
}
.select-wrap label, .select-wrap-big label {
  font-size: 0.8em;
  color: #333;
  font-weight: bold;
}
.select-wrap select, .select-wrap-big select {
  width: 100%;
  border: 0;
  padding: 0;
}

.select-wrap-big {
  padding: 0.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}
.select-wrap-big select {
  font-size: 1.7rem;
  font-weight: bold;
}
.select-wrap-big label {
  font-size: 1.2rem;
}

.image-and-info-rows-wrapper {
  margin: 1.5em 0;
  border-top: solid #aaa 1px;
}
.image-and-info-rows-wrapper.reverse .image-and-info-row {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .image-and-info-rows-wrapper.reverse .image-and-info-row {
    flex-direction: column;
  }
}
.image-and-info-rows-wrapper.alternating .image-and-info-row:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .image-and-info-rows-wrapper.alternating .image-and-info-row:nth-of-type(2n) {
    flex-direction: column;
  }
}
.image-and-info-rows-wrapper.top-align .image-and-info-row {
  align-items: flex-start;
}
.image-and-info-rows-wrapper .image-and-info-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 1em;
  align-items: center;
  padding: 2em 0.5em;
  border-bottom: solid #aaa 1px;
}
@media screen and (max-width: 800px) {
  .image-and-info-rows-wrapper .image-and-info-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .image-and-info-rows-wrapper .image-and-info-row img, .image-and-info-rows-wrapper .image-and-info-row a.image-link, .image-and-info-rows-wrapper .image-and-info-row button.image-link.link, .image-and-info-rows-wrapper .image-and-info-row button.image-link.link-inline {
    margin: 0 auto;
  }
}

.large-marg-top {
  margin-top: 3em;
}

.med-marg-top {
  margin-top: 1.5em;
}

.row-nowrap {
  display: flex;
  flex-flow: row nowrap;
}

.row-nowrap-right {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}

.row-wrap {
  display: flex;
  flex-flow: row wrap;
}

.row-space-between, .bah-appointment-info .bah-appt-info-row, .row-space-around, .row-space-between-top-align, .row-space-between-bottom-align {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.row-space-between-bottom-align {
  align-items: flex-end;
}

.row-space-between-top-align {
  align-items: flex-start;
}

.row-space-between-wrap, .row-space-around-wrap, .row-space-around-wrap-reverse, .row-space-between-wrap-reverse {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.row-space-between-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.row-space-around {
  justify-content: space-around;
}

.row-space-around-wrap, .row-space-around-wrap-reverse {
  justify-content: space-around;
}

.row-space-around-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.gap-1 {
  gap: 1rem;
}

.gap-p5 {
  gap: 0.5rem;
}

.flex-grow-1 {
  flex-grow: 1;
}

.tight-row, .loose-row, .global-appointment-hold-bar .links, .global-appointment-hold-bar, .less-tight-row, .warning-4set, .site-header-right-mobile {
  display: flex;
  align-items: center;
}
.tight-row > *:not(:last-child), .loose-row > *:not(:last-child), .global-appointment-hold-bar .links > *:not(:last-child), .global-appointment-hold-bar > *:not(:last-child), .less-tight-row > *:not(:last-child), .warning-4set > *:not(:last-child), .site-header-right-mobile > *:not(:last-child) {
  margin-right: 0.5em;
}

.less-tight-row > *:not(:last-child), .warning-4set > *:not(:last-child), .site-header-right-mobile > *:not(:last-child) {
  margin-right: 1em;
}

.loose-row > *:not(:last-child), .global-appointment-hold-bar .links > *:not(:last-child), .global-appointment-hold-bar > *:not(:last-child) {
  margin-right: 2em;
}

.center-align {
  align-items: center;
}

.top-align {
  align-items: flex-start;
}

.bottom-align {
  align-items: flex-end;
}

.center-justify {
  justify-content: center;
}

.end-justify {
  justify-content: flex-end;
}

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

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

.column-nowrap, .column-nowrap-bottom, .column-nowrap-center, .cart-tire-pricing .subtotal {
  display: flex;
  flex-flow: column nowrap;
}

.column-nowrap-center, .cart-tire-pricing .subtotal {
  justify-content: center;
}

.column-nowrap-bottom {
  justify-content: flex-end;
}

.margin-top-0 {
  margin-top: 0;
}

.margin-top-1 {
  margin-top: 1em;
}

.margin-top-1p5 {
  margin-top: 1.5em;
}

.margin-top-half {
  margin-top: 0.5em;
}

.margin-bottom-0 {
  margin-bottom: 0;
}

.margin-bottom-1 {
  margin-bottom: 1em;
}

.margin-bottom-1p5 {
  margin-bottom: 1.5em;
}

.margin-bottom-2 {
  margin-bottom: 2em;
}

.margin-bottom-half {
  margin-bottom: 0.5em;
}

.margin-bottom-quarter {
  margin-bottom: 0.25em;
}

.margin-left-1 {
  margin-left: 1em;
}

.margin-right-1 {
  margin-right: 1em;
}

.margin-right-2 {
  margin-right: 2em;
}

.padding-0 {
  padding: 0;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1p2 {
  line-height: 1.2;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.left-border-thick {
  border-left: solid black 2px !important;
}

.width-25 {
  width: 25%;
}

.width-50 {
  width: 50%;
}

.width-75 {
  width: 75%;
}

table.layout-auto {
  table-layout: auto;
}

table.key-val tr td:first-of-type {
  font-weight: bold;
}
table.key-val.tight {
  table-layout: auto;
}
table.key-val.tight td {
  padding: 0;
}

table.sticky-header thead tr th {
  position: sticky !important;
  top: 0;
  z-index: 10;
}

table.hover-rows tr:hover {
  background-color: #d0f2ff;
}

ul.unstyled {
  list-style-type: none;
  padding-left: 0;
}

a.unstyled, a.unstyled:not([href]):not([tabindex]), button.unstyled.link, button.unstyled.link-inline {
  color: inherit;
}

.default-cursor {
  cursor: default !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
  margin-left: auto;
}
.pagination .fas {
  color: #005f9e;
  font-size: 28px;
}
@media screen and (max-width: 800px) {
  .pagination .btn {
    padding: 0.1rem 0.3rem;
    font-size: 1.1rem;
  }
  .pagination .fas {
    font-size: 1.25rem;
  }
}

.pagination-small {
  display: flex;
  align-items: center;
}
.pagination-small button, .pagination-small span {
  padding: 0 0.75em;
  color: #005f9e;
  border-top: solid #aaa 1px;
  border-bottom: solid #aaa 1px;
  border-right: solid #aaa 1px;
  font-size: 0.9em;
  font-weight: bold;
}
.pagination-small button:first-child, .pagination-small span:first-child {
  border-left: solid #aaa 1px;
}
.pagination-small button:disabled, .pagination-small span:disabled {
  background-color: #005f9e;
  color: white;
  border-color: #666;
}

#loading {
  background: rgba(255, 255, 255, 0.7) url("../images/loading.341908049c23.gif") no-repeat top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  display: none;
}

.loading-gif {
  display: none;
  background: rgba(255, 255, 255, 0.8) url("../images/spinning-tire.f9a93bc79e6c.svg") no-repeat center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}
.loading-gif.cover-common-box-shadow {
  top: -8px;
  left: -8px;
  width: calc(100% + 8px * 2);
  height: calc(100% + 8px * 2);
}
.loading-gif.full-page {
  position: fixed;
  width: 100vw;
  height: 100vh;
}
.loading-gif.full-page-minus-header {
  position: fixed;
  width: 100vw;
  height: calc(100vh - clamp(80px, 7vw, 125px) - 10px);
  top: calc(clamp(80px, 7vw, 125px) + 10px);
}
.loading-gif.top-align {
  background-position-y: 1em;
}
.loading-gif.modal-fill {
  width: 700px;
  height: 100%;
  max-height: 85vh;
}
@media screen and (max-width: 800px) {
  .loading-gif.modal-fill {
    width: 85%;
  }
}
.loading-gif.modal-fill {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading-gif.modal-fill.desktop-wide {
  width: 75%;
  max-width: 1100px;
}
.loading-gif.dark {
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("../images/spinning-tire-light.1b715f10fc5c.svg");
}

.htmx-request .loading-gif {
  display: block;
}
.htmx-request.loading-gif {
  display: block;
}

.disabled {
  opacity: 0.5;
  font-style: italic;
}

.color-blue {
  color: #005f9e;
}

.color-orange {
  color: #ef3f23;
}

.color-inherit {
  color: inherit;
}

.color-grey {
  color: #666;
}

.color-light-grey {
  color: #ccc;
}

.color-dark-grey {
  color: #333;
}

.color-red {
  color: #e02d09;
}

.color-green {
  color: green;
}

.color-warning {
  color: #ef9400;
}

.color-black {
  color: #000;
}

.color-white {
  color: #fff;
}

.header-font {
  font-family: Roboto, sans-serif;
}

.thick-header-font {
  font-family: Montserrat, sans-serif;
}

.bold-font {
  font-weight: bold;
}

.italic-font {
  font-style: italic;
}

.bold-italic-font {
  font-weight: bold;
  font-style: italic;
}

.normal-font {
  font-weight: normal !important;
}

.underlined {
  text-decoration: underline;
}

.small-print, .service-disclaimer, .monthly-payments-disclaimer {
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  margin: 0;
}

.size-up {
  font-size: 1.2em;
}

.size-up-extra {
  font-size: 1.4em;
}

.size-down {
  font-size: 0.8em;
}

.size-down-extra {
  font-size: 0.6em;
}

.large-print {
  font-size: 1.4em;
}

.xl-print {
  font-size: 1.7em;
}

.nowrap-text {
  white-space: nowrap;
}

.head-sub {
  margin-bottom: 1.2rem;
}
.head-sub h1, .head-sub h2, .head-sub h3, .head-sub h4, .head-sub h5, .head-sub h6, .head-sub p {
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .thin-scrollbar::-webkit-scrollbar, .modal::-webkit-scrollbar {
    width: 12px;
    border-radius: 8px;
  }
  .thin-scrollbar::-webkit-scrollbar-track, .modal::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
  }
  .thin-scrollbar::-webkit-scrollbar-thumb, .modal::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 8px;
  }
  .thin-scrollbar::-webkit-scrollbar-button, .modal::-webkit-scrollbar-button {
    background-color: rgba(0, 0, 0, 0.5);
    height: 12px;
    border-radius: 4px;
  }
}

.modal-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10001;
}

.modal {
  width: 700px;
  height: 100%;
  max-height: 85vh;
}
@media screen and (max-width: 800px) {
  .modal {
    width: 85%;
  }
}
.modal {
  display: block;
  overflow: auto;
  padding: 40px 25px 25px;
  border-radius: 8px;
  background-color: white;
  position: relative;
}
.modal.auto-height {
  height: auto;
}
.modal.auto-width {
  width: auto;
}
.modal.narrow {
  width: 300px;
}
.modal.desktop-wide {
  width: 75%;
  max-width: 1100px;
}
.modal table.sticky-header thead tr th {
  top: -41px;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 13px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #666;
}
.modal-close:hover {
  color: #ef3f23;
}

.under-construction {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 3em;
}
@media screen and (max-width: 1024px) {
  .under-construction {
    display: block;
  }
}
.under-construction img {
  width: 500px;
  align-self: flex-start;
}
@media screen and (max-width: 500px) {
  .under-construction img {
    width: 100%;
  }
}

.bare-list, ul.small-horizontal-bordered {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.bare-list.small, ul.small.small-horizontal-bordered {
  font-size: 0.75em;
}

ul.small-horizontal-bordered {
  display: flex;
  align-items: center;
  font-size: 0.75em;
}
ul.small-horizontal-bordered li {
  padding: 0 0.3em;
}
ul.small-horizontal-bordered li:first-of-type {
  padding-left: 0;
}
ul.small-horizontal-bordered li:not(:first-of-type) {
  border-left: solid #aaa 1px;
}
ul.small-horizontal-bordered li:last-of-type {
  padding-right: 0;
}

.tight-vertical-group {
  margin-bottom: 1em;
}
.tight-vertical-group div, .tight-vertical-group h1, .tight-vertical-group h2, .tight-vertical-group h3, .tight-vertical-group h4, .tight-vertical-group h5, .tight-vertical-group h6, .tight-vertical-group p, .tight-vertical-group a, .tight-vertical-group a:not([href]):not([tabindex]), .tight-vertical-group button.link, .tight-vertical-group button.link-inline {
  margin-bottom: 0;
  line-height: 1.25em;
}

.djdt-scroll table {
  table-layout: auto;
}

.above-site-header {
  width: 100%;
  min-height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Courgette, sans-serif;
  background-color: #002238;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .above-site-header {
    font-size: 1rem;
  }
}

.site-header {
  width: 100%;
  min-height: clamp(80px, 7vw, 125px);
  background-color: ghostwhite;
  display: flex;
  padding: 10px 25px 0 20px;
  box-shadow: 0 0 10px 0 #333;
}
@media screen and (max-width: 800px) {
  .site-header .site-header-nav,
  .site-header .site-header-right-column {
    display: none;
  }
  .site-header .site-header-right-mobile {
    display: flex;
  }
}

.site-header-logo-box {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header-logo {
  height: clamp(80px, 7vw, 100px);
  display: block;
  margin-right: 2.5vw;
  padding-bottom: 10px;
}

.site-header-nav {
  display: flex;
  align-items: flex-end;
}
.site-header-nav div {
  font-size: clamp(16px, 1.6vw, 32px);
  font-weight: bold;
  margin: 0 2.2vw;
  cursor: pointer;
  padding-bottom: 10px;
}
.site-header-nav div:hover {
  color: #005f9e;
}
.site-header-nav div:hover .site-header-sub-menu {
  display: flex;
}
.site-header-nav div a, .site-header-nav div a:not([href]):not([tabindex]), .site-header-nav div button.link, .site-header-nav div button.link-inline {
  color: inherit;
}
.site-header-nav div .site-header-sub-menu {
  position: absolute;
  top: calc(clamp(80px, 7vw, 125px) + 45px);
  display: none;
  flex-direction: column;
  margin: 0;
  font-size: clamp(14px, 1.4vw, 20px);
  background-color: rgba(50, 50, 50, 0.97);
  border-radius: 0 0 8px 8px;
  z-index: 10000;
}
.site-header-nav div .site-header-sub-menu a, .site-header-nav div .site-header-sub-menu button.link, .site-header-nav div .site-header-sub-menu button.link-inline {
  color: white;
  padding: 10px clamp(10px, 1.5vw, 20px);
}
.site-header-nav div .site-header-sub-menu a:hover, .site-header-nav div .site-header-sub-menu button.link:hover, .site-header-nav div .site-header-sub-menu button.link-inline:hover {
  background-color: rgba(100, 100, 100, 0.99);
}

.site-header-right-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.site-header-right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 10px;
  justify-content: space-between;
}

.site-header-right-row {
  display: flex;
  align-items: center;
}
.site-header-right-row:hover a, .site-header-right-row:hover button.link, .site-header-right-row:hover button.link-inline {
  color: #005f9e;
}
.site-header-right-row div {
  display: flex;
  flex-direction: column;
}
.site-header-right-row div:first-child {
  margin-right: 0.7vw;
}
@media screen and (max-width: 1024px) {
  .site-header-right-row div:first-child {
    display: none;
  }
}
.site-header-right-row a, .site-header-right-row a:not([href]):not([tabindex]), .site-header-right-row button.link, .site-header-right-row button.link-inline {
  font-size: clamp(12px, 1.2vw, 22px);
  font-weight: bold;
  color: black;
}
.site-header-right-row .fas {
  font-size: clamp(18px, 1.5vw, 27px);
}

.site-header-cart-icon {
  position: relative;
}
.site-header-cart-icon span {
  position: absolute;
  top: -8px;
  right: -5px;
  border-radius: 50%;
  background-color: red;
  color: white;
  padding: 3px 5px;
  font-size: clamp(11px, 0.7vw, 15px);
  line-height: clamp(9px, 0.7vw, 13px);
}

.site-header-account-block {
  padding-bottom: 15px;
}
.site-header-account-block:hover .site-header-account-sub-panel {
  display: block;
}

.site-header-account-sub-panel {
  display: none;
  position: absolute;
  top: calc(clamp(80px, 7vw, 125px) + 45px);
  right: 0;
  background-color: rgba(50, 50, 50, 0.97);
  color: white;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  padding: 0.5em 1em;
}
.site-header-account-sub-panel a, .site-header-account-sub-panel a:not([href]):not([tabindex]), .site-header-account-sub-panel button.link, .site-header-account-sub-panel button.link-inline {
  color: white;
  font-weight: bold;
}

.site-header-right-mobile {
  display: none;
  height: 100%;
  align-items: center;
  font-size: 30px;
}
.site-header-right-mobile a, .site-header-right-mobile a:not([href]):not([tabindex]), .site-header-right-mobile button.link, .site-header-right-mobile button.link-inline {
  color: black;
}
.site-header-right-mobile .site-header-cart-icon span {
  top: -2px;
  right: -8px;
}

.site-header-mobile-menu {
  display: none;
  position: absolute;
  top: calc(clamp(80px, 7vw, 125px) + 45px);
  right: 0;
  min-width: 60%;
  flex-direction: column;
  background-color: rgba(50, 50, 50, 0.97);
  color: white;
  z-index: 999;
}
.site-header-mobile-menu a, .site-header-mobile-menu a:not([href]):not([tabindex]), .site-header-mobile-menu button.link, .site-header-mobile-menu button.link-inline {
  color: white;
}
.site-header-mobile-menu .account-info {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: solid 1px rgba(100, 100, 100, 0.99);
}
.site-header-mobile-menu .account-info .user-icon {
  font-size: 2rem;
  margin-right: 1rem;
}
.site-header-mobile-menu .account-info .user-info {
  word-break: break-word;
}
.site-header-mobile-menu .account-info .user-info p {
  margin: 0;
}
.site-header-mobile-menu .account-info .user-info p:first-of-type {
  font-size: 0.9em;
}
.site-header-mobile-menu .account-info .user-info p:last-of-type {
  font-size: 1.1em;
  font-weight: bold;
}
.site-header-mobile-menu .menu-item {
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
  cursor: pointer;
}
.site-header-mobile-menu .menu-item:not(:last-child) {
  border-bottom: solid 1px rgba(100, 100, 100, 0.99);
}
.site-header-mobile-menu .menu-item .sub-menu {
  display: none;
  position: relative;
  flex-direction: column;
  padding: 0 30px;
  margin-top: 15px;
  font-size: 16px;
}
.site-header-mobile-menu .menu-item .sub-menu a, .site-header-mobile-menu .menu-item .sub-menu button.link, .site-header-mobile-menu .menu-item .sub-menu button.link-inline {
  padding: 5px 0;
}
.site-header-mobile-menu .menu-item.selected .sub-menu {
  display: flex;
}

.site-footer {
  margin-top: auto;
  width: 100%;
  background-color: #323232;
  color: white;
  font-size: 0.8rem;
}
.site-footer h5 {
  font-size: 1rem;
  margin-bottom: 0;
  border-bottom: solid rgba(100, 100, 100, 0.99) 2px;
}
.site-footer a, .site-footer a:not([href]):not([tabindex]), .site-footer button.link, .site-footer button.link-inline {
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  gap: 2em 3em;
  margin-bottom: 2.5em;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.company-info-row {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 2em;
  justify-content: space-between;
  padding-top: 1em;
  border-top: solid rgba(100, 100, 100, 0.99) 2px;
}
.company-info-row .location-row {
  display: flex;
  flex-flow: row wrap;
  gap: 2em 5em;
}
@media screen and (max-width: 600px) {
  .company-info-row .location-row {
    column-gap: 2em;
  }
}
.company-info-row .location-row .location-info h6 {
  font-size: 0.9rem;
  margin: 0;
}
.company-info-row .location-row .location-info p {
  margin: 0;
}
.company-info-row .location-row .location-info p.address {
  display: block;
}
.company-info-row .location-row .location-info p.phone-number {
  font-weight: bold;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  color: deepskyblue;
}

.tire-finder, #vehicle-form-holder {
  background-color: rgba(255, 255, 255, 0.8);
  width: 325px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  overflow: hidden;
}
.tire-finder h4, #vehicle-form-holder h4 {
  font-family: Montserrat, sans-serif;
  color: #ef3f23;
  text-align: center;
  font-size: 40px;
  margin: 0;
  text-shadow: 1px 1px #444;
}
.tire-finder #size-search-form, #vehicle-form-holder #size-search-form, .tire-finder #brand-search-form, #vehicle-form-holder #brand-search-form {
  display: none;
}
.tire-finder form, #vehicle-form-holder form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tire-finder select, #vehicle-form-holder select {
  width: 100%;
  font-size: 20px;
  margin: 1vh 0;
  background-color: white;
}
.tire-finder input[type=submit], #vehicle-form-holder input[type=submit] {
  font-size: 24px;
  font-weight: bold;
  white-space: normal;
}
.tire-finder .asteriskField, #vehicle-form-holder .asteriskField {
  display: none;
}
.tire-finder .brand-search, #vehicle-form-holder .brand-search {
  height: 100%;
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}

.hero {
  background-color: rgba(50, 50, 50, 0.97);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6vh 0;
}

.home-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/homepage-hero-image.35da592221fe.jpg");
}
.home-hero .home-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 1.5rem;
}
.home-hero .home-hero-content .tire-specials-carousel a, .home-hero .home-hero-content .tire-specials-carousel button.link, .home-hero .home-hero-content .tire-specials-carousel button.link-inline {
  color: white;
}
.home-hero .home-hero-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.homepage-content-header {
  background-color: #003b61;
  padding: 1rem 2rem;
  min-height: 160px;
}
.homepage-content-header .content-header-text {
  max-width: 1200px;
  min-height: 160px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
}
.homepage-content-header .content-header-text h2 {
  font-family: Montserrat, sans-serif;
}
.homepage-content-header .content-header-text h2, .homepage-content-header .content-header-text p, .homepage-content-header .content-header-text a, .homepage-content-header .content-header-text button.link, .homepage-content-header .content-header-text button.link-inline {
  color: white;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.5em 0;
}
.brand-strip a, .brand-strip a:not([href]):not([tabindex]), .brand-strip button.link, .brand-strip button.link-inline {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-strip img {
  width: 80%;
}
.brand-strip button {
  background: rgb(58, 141, 226);
  background: linear-gradient(90deg, rgb(58, 141, 226) 0%, rgb(9, 116, 241) 100%);
}
.brand-strip button span {
  font-size: 0.75em;
}
@media screen and (max-width: 1100px) {
  .brand-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .brand-strip {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .brand-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75em 0;
  }
  .brand-strip img {
    max-height: 30px;
    width: auto;
    max-width: 80%;
  }
}

.homepage-services-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 1.5rem;
}
.homepage-services-wrapper a, .homepage-services-wrapper a:not([href]):not([tabindex]), .homepage-services-wrapper button.link, .homepage-services-wrapper button.link-inline {
  margin: 1rem calc((100% - 900px) / 8);
}
@media screen and (max-width: 1024px) {
  .homepage-services-wrapper a, .homepage-services-wrapper a:not([href]):not([tabindex]), .homepage-services-wrapper button.link, .homepage-services-wrapper button.link-inline {
    margin: 1rem calc((100% - 450px) / 4);
  }
}
@media screen and (max-width: 550px) {
  .homepage-services-wrapper a, .homepage-services-wrapper a:not([href]):not([tabindex]), .homepage-services-wrapper button.link, .homepage-services-wrapper button.link-inline {
    margin: 1rem calc((100% - 225px) / 2);
  }
}

.locations-wrapper {
  background-color: #fffefe;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../images/grey-locations-map-bg.5fcec9e99c67.jpg");
  padding: 1.5rem 0;
}
.locations-wrapper .location-card {
  background-color: rgba(255, 255, 255, 0.85);
}

.amenity-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid #aaa 1px;
}
.amenity-row:last-of-type {
  border-bottom: none;
}
.amenity-row .amenity {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 1.5rem;
}
.amenity-row .amenity:nth-of-type(2n+1) {
  border-right: solid #aaa 1px;
}
@media screen and (max-width: 800px) {
  .amenity-row .amenity {
    width: 100%;
  }
  .amenity-row .amenity:nth-of-type(2n+1) {
    border-right: none;
    border-bottom: solid #aaa 1px;
  }
}
.amenity-row .amenity img {
  width: 80px;
  margin-right: 2rem;
}

.cc-images-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 1rem 0;
}
.cc-images-wrapper a, .cc-images-wrapper a:not([href]):not([tabindex]), .cc-images-wrapper button.link, .cc-images-wrapper button.link-inline {
  margin: 1rem 0.5rem;
  width: calc(33.333% - 1rem);
  max-width: 250px;
}
@media screen and (max-width: 450px) {
  .cc-images-wrapper a, .cc-images-wrapper a:not([href]):not([tabindex]), .cc-images-wrapper button.link, .cc-images-wrapper button.link-inline {
    width: calc(50% - 1rem);
  }
}
.cc-images-wrapper a img, .cc-images-wrapper a:not([href]):not([tabindex]) img, .cc-images-wrapper button.link img, .cc-images-wrapper button.link-inline img {
  width: 100%;
}

.contact-us-form-wrapper {
  margin-top: 2em;
  padding: 1.5em;
  border-radius: 8px;
  border: solid #ddd 3px;
}

.lyft-box, .catalog-lyft-box, .cart-lyft-box {
  display: flex;
  margin-top: 1.5rem;
  width: 350px;
  background: #f80086;
  padding: 5px;
  border-radius: 6px;
  color: white;
}
@media screen and (max-width: 390px) {
  .lyft-box, .catalog-lyft-box, .cart-lyft-box {
    width: 90vw;
  }
}
.lyft-box img, .catalog-lyft-box img, .cart-lyft-box img {
  width: 20%;
  align-self: center;
  margin-right: 20px;
}
.lyft-box h4, .catalog-lyft-box h4, .cart-lyft-box h4 {
  margin-bottom: 0;
}
.lyft-box p, .catalog-lyft-box p, .cart-lyft-box p {
  font-size: 0.9rem;
  line-height: 1;
}
.lyft-box p:last-of-type, .catalog-lyft-box p:last-of-type, .cart-lyft-box p:last-of-type {
  font-size: 12px;
  margin: 0;
}

.catalog-lyft-box, .cart-lyft-box {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1rem;
}
.catalog-lyft-box img, .cart-lyft-box img {
  max-height: 65px;
}

.cart-lyft-box {
  margin-bottom: 1.5rem;
}

.lyft-text-col {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  vertical-align: center;
}

.lyft-details h1 {
  color: #f80086;
}
@media screen and (max-width: 800px) {
  .lyft-details h1 {
    font-size: 1.9rem;
  }
  .lyft-details h3 {
    font-size: 1.3rem;
  }
}

.lyft-details-content {
  display: flex;
  flex-flow: row wrap-reverse;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.lyft-details-content p {
  font-size: 1.5rem;
  width: calc(50% - 0.75rem);
}
.lyft-details-content img {
  align-self: flex-end;
  width: calc(50% - 0.75rem);
  max-width: 500px;
}
@media screen and (max-width: 800px) {
  .lyft-details-content p {
    width: 100%;
    font-size: 1.25rem;
  }
  .lyft-details-content img {
    width: 100%;
  }
}

.tire-search-tab {
  line-height: 1;
}
.tire-search-tab span {
  display: block;
  font-size: 0.6em;
}

.tire-search-content {
  margin: 1em 0;
}

.tire-search-param:not(:last-of-type) {
  margin-bottom: 1em;
}

.tire-search-param-head {
  display: flex;
  align-items: center;
  background-color: #003b61;
  color: white;
  padding: 0.5em 1em;
  border-radius: 8px;
  box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(255, 255, 255, 0.5), inset -0.1em -0.1em 0.1em 0 rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.tire-search-param-head.active {
  background-color: #005f9e;
}
.tire-search-param-head.disabled {
  background-color: #666;
  opacity: 1;
  cursor: default;
}
.tire-search-param-head i {
  margin-right: 1em;
}
.tire-search-param-head h2 {
  margin: 0;
}

.tire-search-param-options {
  display: none;
  padding: 1em 0;
}

.param-options-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}

.tire-search-option {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.1em;
  margin: 0.6em;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  color: #005f9e;
  font-size: 1.2em;
  font-family: Montserrat, sans-serif;
}
.tire-search-option:hover {
  background-color: #003b61;
  color: white;
}
.tire-search-option.selected {
  background-color: #555;
  color: white;
  cursor: default;
  box-shadow: none;
}
.tire-search-option.size-option {
  min-width: 65px;
  height: 50px;
}
.tire-search-option.veh-option {
  padding: 0.5em;
  min-height: 50px;
}

.brand-logos-container {
  display: flex;
  flex-flow: row wrap;
}
.brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.5rem;
  border: solid #aaa 1px;
  border-radius: 8px;
}
.brand-logos-container a.logo-wrapper:hover, .brand-logos-container button.logo-wrapper.link:hover, .brand-logos-container button.logo-wrapper.link-inline:hover {
  box-shadow: 0 0 8px #333;
}
.brand-logos-container a.logo-wrapper img, .brand-logos-container button.logo-wrapper.link img, .brand-logos-container button.logo-wrapper.link-inline img, .brand-logos-container a.logo-wrapper button, .brand-logos-container button.logo-wrapper.link button, .brand-logos-container button.logo-wrapper.link-inline button {
  width: 90%;
}
@media screen and (max-width: 1200px) {
  .brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
    width: calc(16.6666666667% - 1rem);
  }
}
@media screen and (max-width: 1030px) {
  .brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
    width: calc(20% - 1rem);
  }
}
@media screen and (max-width: 875px) {
  .brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
    width: calc(25% - 1rem);
  }
}
@media screen and (max-width: 700px) {
  .brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
    width: calc(33.3333333333% - 1rem);
  }
}
@media screen and (max-width: 550px) {
  .brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 375px) {
  .brand-logos-container a.logo-wrapper, .brand-logos-container button.logo-wrapper.link, .brand-logos-container button.logo-wrapper.link-inline {
    width: calc(50% - 1rem);
    height: 35vw;
  }
}

.brand-page-models-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  margin: 1rem 0;
}
.brand-page-models-container a.model-wrapper, .brand-page-models-container button.model-wrapper.link, .brand-page-models-container button.model-wrapper.link-inline {
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin: 1.5rem 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  color: black;
  text-align: center;
  word-break: break-word;
}
.brand-page-models-container a.model-wrapper:hover, .brand-page-models-container button.model-wrapper.link:hover, .brand-page-models-container button.model-wrapper.link-inline:hover {
  box-shadow: 0 0 16px #005f9e;
}
.brand-page-models-container a.model-wrapper img, .brand-page-models-container button.model-wrapper.link img, .brand-page-models-container button.model-wrapper.link-inline img {
  width: 150px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 800px) {
  .brand-page-models-container a.model-wrapper, .brand-page-models-container button.model-wrapper.link, .brand-page-models-container button.model-wrapper.link-inline {
    width: calc(50% - 2rem);
    margin: 1rem;
    padding: 1rem 0.2rem;
  }
}
@media screen and (max-width: 400px) {
  .brand-page-models-container a.model-wrapper, .brand-page-models-container button.model-wrapper.link, .brand-page-models-container button.model-wrapper.link-inline {
    width: calc(50% - 1rem);
    margin: 0.5rem;
  }
  .brand-page-models-container a.model-wrapper img, .brand-page-models-container button.model-wrapper.link img, .brand-page-models-container button.model-wrapper.link-inline img {
    max-width: 80%;
  }
}

.tire-page-header {
  display: flex;
  margin: 2.5rem 0;
}
@media screen and (max-width: 800px) {
  .tire-page-header {
    flex-wrap: wrap;
  }
}
.tire-page-header img.model-image {
  max-height: 50vh;
  max-width: 100%;
}

.tire-page-info {
  margin-top: 2rem;
  margin-left: 5%;
  flex: 1;
}
.tire-page-info img.brand-logo {
  max-width: 100%;
  margin-bottom: 1rem;
}
.tire-page-info .result-card-collapsible-item:first-of-type {
  margin-top: 1rem;
}

.tire-page-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
}
.tire-page-description h6 {
  font-size: 1.4rem;
}

.model-page-sizes-wrapper {
  display: flex;
  flex-flow: row wrap;
}
.model-page-sizes-wrapper a, .model-page-sizes-wrapper a:not([href]):not([tabindex]), .model-page-sizes-wrapper button.link, .model-page-sizes-wrapper button.link-inline {
  font-size: 1.75rem;
  font-weight: bold;
  padding: 1rem;
  margin: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 0 5px #666;
}
.model-page-sizes-wrapper a:hover, .model-page-sizes-wrapper button.link:hover, .model-page-sizes-wrapper button.link-inline:hover {
  background-color: #003b61;
  color: white;
}
@media screen and (max-width: 420px) {
  .model-page-sizes-wrapper a, .model-page-sizes-wrapper a:not([href]):not([tabindex]), .model-page-sizes-wrapper button.link, .model-page-sizes-wrapper button.link-inline {
    font-size: 1.3rem;
    padding: 0.6rem;
  }
}

ul.detail-page-specs {
  margin-top: 1rem;
  padding: 0;
  list-style-type: none;
  border-top: solid black 2px;
  font-size: 1.2rem;
}
ul.detail-page-specs li {
  padding: 0.25rem 0;
  border-bottom: solid #aaa 1px;
  display: flex;
  justify-content: space-between;
}
ul.detail-page-specs li span {
  font-weight: bold;
  margin-right: 1.5rem;
}

.gbb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5vw;
  overflow-x: auto;
  margin-bottom: 15px;
  padding: 15px 9px 30px;
  border-bottom: solid #ddd 3px;
}
@media screen and (max-width: 1100px) {
  .gbb {
    padding: 9px 9px 18px;
  }
}
@media screen and (max-width: 500px) {
  .gbb {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
  }
}
.gbb.empty {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.gbb.incomplete {
  justify-content: space-around;
}

.gbb-carousel {
  display: none;
  position: relative;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .gbb-carousel {
    display: flex;
  }
}
.gbb-carousel.empty {
  display: none;
}
.gbb-carousel .m-result-card.gbb-card {
  width: auto;
}
.gbb-carousel .carousel {
  padding-bottom: 0.5rem;
}
.gbb-carousel .carousel-control-prev,
.gbb-carousel .carousel-control-next {
  filter: invert(100%);
  position: relative;
}
.gbb-carousel .carousel-indicators {
  margin-bottom: 0;
}
.gbb-carousel .carousel-indicators li {
  height: 5px;
  background-color: #005f9e;
  margin-left: 6px;
  margin-right: 6px;
}

.catalog-head {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 8px;
  border-bottom: solid #ddd 2px;
  margin-bottom: 1rem;
}
.catalog-head p {
  color: #666;
  margin: 0;
  font-size: 20px;
  font-style: italic;
}
.catalog-head p span {
  font-weight: bold;
}
.catalog-head h1 span {
  color: #005f9e;
}

.catalog-container {
  display: flex;
  padding-top: 25px;
}
@media screen and (max-width: 1100px) {
  .catalog-container {
    flex-direction: column;
    padding-top: 0;
  }
}

.clear-filters {
  display: flex;
  align-items: center;
  color: red;
  cursor: pointer;
  font-size: 1em;
  font-family: Roboto, sans-serif;
  line-height: 1.05em;
}
.clear-filters span {
  margin-right: 0.3em;
  font-size: 1.3em;
}
.clear-filters.blue {
  color: #005f9e;
}

.catalog-filters {
  min-width: 25%;
  padding-right: 30px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1100px) {
  .catalog-filters {
    padding-right: 0;
  }
  .catalog-filters form {
    max-height: 50vh;
    overflow-y: auto;
    background: #f8f8f8;
    padding-left: 0.5rem;
    box-shadow: inset 0 10px 8px -10px #CCC, inset 0 -10px 8px -10px #CCC;
  }
}
.catalog-filters .catalog-fitment-panel {
  margin-bottom: 20px;
  max-width: 300px;
}
.catalog-filters .catalog-fitment-panel .clear-filters {
  font-size: 0.6em;
}
@media screen and (max-width: 1100px) {
  .catalog-filters .catalog-fitment-panel {
    width: 100%;
    max-width: none;
  }
}
.catalog-filters .catalog-fitment-panel .fitment-panel-header .clear-filters {
  color: #eee;
  font-family: Nunito, sans-serif;
}
.catalog-filters .catalog-fitment-panel .fitment-panel-header .collapse-icon {
  display: none;
}
@media screen and (max-width: 1100px) {
  .catalog-filters .catalog-fitment-panel .fitment-panel-header .collapse-icon {
    display: block;
  }
}
.catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between .small-print, .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appointment-info .bah-appt-info-row .small-print, .bah-appointment-info .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appt-info-row .small-print, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between .service-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appointment-info .bah-appt-info-row .service-disclaimer, .bah-appointment-info .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appt-info-row .service-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between .monthly-payments-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appointment-info .bah-appt-info-row .monthly-payments-disclaimer, .bah-appointment-info .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appt-info-row .monthly-payments-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-bottom-align .small-print, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-bottom-align .service-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-bottom-align .monthly-payments-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-top-align .small-print, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-top-align .service-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-top-align .monthly-payments-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-around .small-print, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-around .service-disclaimer, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-around .monthly-payments-disclaimer {
  margin-right: 0.75em;
}
.catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between .clear-filters span, .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appointment-info .bah-appt-info-row .clear-filters span, .bah-appointment-info .catalog-filters .catalog-fitment-panel .fitment-panel-body .bah-appt-info-row .clear-filters span, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-bottom-align .clear-filters span, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-between-top-align .clear-filters span, .catalog-filters .catalog-fitment-panel .fitment-panel-body .row-space-around .clear-filters span {
  margin-right: 0.5em;
}
.catalog-filters .filter-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  border-bottom: solid #ddd 2px;
}
.catalog-filters .filter-group-header .fas {
  display: none;
}
@media screen and (max-width: 1100px) {
  .catalog-filters .filter-group-header h2 {
    font-size: 1.25rem;
  }
  .catalog-filters .filter-group-header .fas {
    display: inline;
    margin-right: 0.35rem;
  }
  .catalog-filters .filter-group-header .clear-filters {
    font-size: 0.6em;
  }
  .catalog-filters .filter-group-header .clear-filters span {
    margin-right: 0;
  }
  .catalog-filters .filter-group-header:not(.active) + form {
    display: none;
  }
}
.catalog-filters .filter-item {
  padding: 10px 0;
  margin: 0;
  border-bottom: solid #ddd 2px;
}
@media screen and (max-width: 1100px) {
  .catalog-filters .filter-item {
    width: 95%;
  }
}
.catalog-filters .filter-item .filter-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}
.catalog-filters .filter-item .filter-head h4 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.catalog-filters .filter-item .filter-head .fas {
  font-size: 0.6em;
  margin-right: 0.4rem;
}
.catalog-filters .filter-item .filter-head.active {
  color: #005f9e;
}
.catalog-filters .filter-item .filter-head.active h4 {
  margin-bottom: 0.5rem;
}
.catalog-filters .filter-item .filter-head .clear-filters {
  font-size: 0.8em;
}
.catalog-filters .filter-item .filter-head .clear-filters .fas {
  margin-right: 0.2vw;
  font-size: 0.7em;
}
.catalog-filters .filter-item .filter-body {
  display: none;
  max-height: 25vh;
  overflow-y: auto;
}
.catalog-filters .filter-item .filter-body .controls {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .catalog-filters .filter-item .filter-body .controls {
    flex-wrap: wrap;
    max-height: 15vh;
  }
  .catalog-filters .filter-item .filter-body .controls label {
    margin-right: 0.6em;
  }
}
.catalog-filters .filter-item .filter-body label.checkbox {
  margin-bottom: 0.5rem;
}
.catalog-filters .filter-item .filter-body input {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1100px) {
  .catalog-filters .filter-item .filter-body {
    max-height: 15vh;
  }
}
.catalog-filters #div_id_avail_qty label {
  margin-right: 1em;
}

.catalog-results-container {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .catalog-results-container #loading {
    position: fixed;
  }
}

.result-card {
  min-height: 250px;
  background-color: white;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}
.result-card.clearance {
  box-shadow: 0 0 8px #ef3f23;
  background-image: url("../images/sale-tag-orange-and white.5d0f00565ddd.svg");
  background-repeat: no-repeat;
  background-size: auto 115%;
  background-position: 70%;
  background-color: rgba(255, 255, 255, 0.93);
  background-blend-mode: lighten;
}
@media screen and (max-width: 700px) {
  .result-card {
    display: none;
  }
}

.result-card-image img.brand-logo {
  max-width: 80%;
  max-height: 30px;
  width: auto;
  height: auto;
}
.result-card-image img.model-image {
  width: 180px;
}

.model-image-container {
  position: relative;
  align-self: flex-start;
  display: inline-block;
}
.model-image-container img.sale-tag {
  width: 60%;
  position: absolute;
  left: -1em;
  bottom: 0;
}

.warranty {
  background-color: #003b61;
  color: white;
  font-size: 0.75rem;
  text-align: center;
  border-radius: 4px;
  padding: 3px;
  margin-top: 0.3em;
}
.warranty span {
  font-size: 1rem;
  font-family: Roboto, sans-serif;
}

.result-card-info {
  min-width: calc(100% - 180px);
  display: flex;
  justify-content: space-between;
}
.result-card-info .product-info {
  width: 100%;
  padding: 0 40px;
}
.result-card-info .product-info .header-link {
  margin-bottom: 16px;
}
.result-card-info .product-info .header-link a span.brand, .result-card-info .product-info .header-link button.link span.brand, .result-card-info .product-info .header-link button.link-inline span.brand {
  font-family: Roboto, sans-serif;
  font-size: 1.15rem;
  color: #333;
}
.result-card-info .product-info .header-link a span.model, .result-card-info .product-info .header-link button.link span.model, .result-card-info .product-info .header-link button.link-inline span.model {
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
}
.result-card-info .product-info p {
  margin: 0;
}
.result-card-info .product-info p span {
  font-family: Roboto, sans-serif;
}

.result-card-collapsibles {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.result-card-collapsible-item {
  padding: 10px;
  border-bottom: solid #aaa 1px;
}
.result-card-collapsible-item:first-of-type {
  margin-top: 30px;
  border-top: solid #aaa 1px;
}
.result-card-collapsible-item .rcc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.result-card-collapsible-item .rcc-header .wrapper {
  display: flex;
  align-items: center;
}
.result-card-collapsible-item .rcc-header .wrapper .icon {
  min-width: 3rem;
  font-size: 2rem;
  color: #ef3f23;
}
.result-card-collapsible-item .rcc-header .wrapper .icon.blue {
  color: #006de5;
}
.result-card-collapsible-item .rcc-header .wrapper .icon img {
  width: 2rem;
}
.result-card-collapsible-item .rcc-header .wrapper .text {
  font-family: Roboto, sans-serif;
  font-size: 1.1rem;
}
.result-card-collapsible-item .rcc-header .wrapper .text span {
  font-family: Nunito, sans-serif;
  font-size: 0.9rem;
  font-style: italic;
}
.result-card-collapsible-item .rcc-header.rcc-special {
  background: #ffe97f;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  margin: auto -0.5rem;
}
.result-card-collapsible-item .rcc-body {
  display: none;
  margin-top: 8px;
  font-size: 0.9rem;
}
.result-card-collapsible-item .rcc-body .rcc-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: solid black 1px;
}
.result-card-collapsible-item .rcc-body .rcc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: solid black 1px;
}
.result-card-collapsible-item .rcc-body .rcc-row div:first-of-type {
  font-weight: bold;
  margin-right: 5px;
}
.result-card-collapsible-item .rcc-body .rcc-row div:last-of-type {
  text-align: right;
}

.price-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}
.price-info.detail-page {
  align-items: flex-start;
  margin: 1em 0;
}
.price-info span.price {
  font-family: Montserrat, sans-serif;
  font-size: 1.75em;
  color: #ef3f23;
}

.price-container {
  text-align: right;
}

.clearance-orig-price {
  font-family: Montserrat, sans-serif;
  font-size: 1.4em;
  color: #777;
  text-decoration: line-through;
  font-style: italic;
  margin-bottom: -0.5em;
}
.clearance-orig-price.cart-per-tire {
  font-family: Nunito, sans-serif;
  font-size: 1.3em;
}
.clearance-orig-price.cart-subtotal {
  font-size: 1.25em;
}

.map-info {
  color: #666;
  font-size: 1.3rem;
  cursor: pointer;
}
.map-info:hover {
  color: #333;
}

.qty, .m-result-card .lead-row .qty {
  margin-top: 0.6em;
  font-size: 0.9em;
  font-weight: bold;
}

.store-qtys {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 0.7rem;
  background-color: #dbdbdb;
}
.store-qtys div {
  margin-right: 0.5rem;
  text-align: center;
}
.store-qtys div span {
  display: block;
  font-weight: bold;
  border-bottom: solid #aaa 1px;
}

.m-result-card {
  display: none;
  background-color: white;
  margin-bottom: 20px;
  padding: 7px;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  word-break: break-word;
}
.m-result-card.clearance {
  box-shadow: 0 0 8px #ef3f23;
}
@media screen and (max-width: 700px) {
  .m-result-card {
    display: block;
  }
}
.m-result-card .lead-row {
  display: flex;
  align-items: flex-start;
}
.m-result-card .lead-row img.logo-img {
  max-width: 80%;
  margin: 3vw 0 1.5vw;
}
.m-result-card .lead-row h5 {
  font-size: 5.5vw;
  font-family: Montserrat, sans-serif;
  margin: 0;
}
.m-result-card .lead-row p {
  font-size: 4.8vw;
  margin: 0;
}
.m-result-card .lead-row .qty {
  font-size: 1em;
}
.m-result-card .result-card-image {
  width: 40%;
  margin-right: 7vw;
}
.m-result-card .result-card-image img.model-image {
  width: 100%;
}
.m-result-card .info-col {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.m-result-card .info-col .price-container {
  margin-top: 5vw;
  font-size: 3.5vw;
}
.m-result-card .info-col .price-container span.price {
  font-family: Montserrat, sans-serif;
  color: #ef3f23;
  font-size: 7vw;
}
.m-result-card .cart-button-container {
  display: flex;
  flex-flow: row-reverse wrap-reverse;
  justify-content: space-between;
  margin-top: 1em;
  gap: 0.5rem;
}
.m-result-card .cart-button-container .button-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.m-result-card .cart-button-container .button-container .instant-quote-button {
  margin-top: 0.5rem;
}
.m-result-card .result-card-collapsible-item:first-of-type {
  margin-top: 15px;
}
.m-result-card .result-card-collapsible-item .rcc-header .wrapper .icon {
  min-width: 10vw;
  font-size: 6vw;
}
.m-result-card .result-card-collapsible-item .rcc-header .wrapper .icon img {
  width: 6vw;
}
.m-result-card .result-card-collapsible-item .rcc-header .wrapper .text {
  font-size: 5vw;
}
.m-result-card .result-card-collapsible-item .rcc-header .wrapper .text span {
  font-size: 4vw;
}
.m-result-card.gbb-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 325px;
  flex: none;
}
@media screen and (max-width: 800px) {
  .m-result-card.gbb-card {
    margin: 0 9px 20px 9px;
  }
}
@media screen and (max-width: 500px) {
  .m-result-card.gbb-card {
    min-height: auto !important;
  }
}
.m-result-card.gbb-card .gbb-card-header {
  background-color: #005f9e;
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 8px 8px 0 0;
  margin: -7px -7px 0;
}
.m-result-card.gbb-card .gbb-card-header h3 {
  margin: 0;
}
.m-result-card.gbb-card .lead-row img.logo-img {
  max-width: 100%;
  margin: 0.67em 0 0.33em;
}
.m-result-card.gbb-card .lead-row h5 {
  font-size: 1.15em;
}
.m-result-card.gbb-card .lead-row p {
  font-size: 1em;
}
.m-result-card.gbb-card .lead-row .price-container {
  margin-top: 1.15em;
  font-size: 1em;
}
.m-result-card.gbb-card .lead-row .price-container span.price {
  font-size: 1.75em;
}
@media screen and (max-width: 375px) {
  .m-result-card.gbb-card .lead-row .price-container span.price {
    font-size: 1.3em;
  }
}
.m-result-card.gbb-card .result-card-image {
  margin-right: 1.5em;
}
.m-result-card.gbb-card .result-card-collapsible-item .rcc-header .wrapper .icon {
  min-width: 2em;
  font-size: 1.5em;
}
.m-result-card.gbb-card .result-card-collapsible-item .rcc-header .wrapper .icon img {
  width: 1.5em;
}
.m-result-card.gbb-card .result-card-collapsible-item .rcc-header .wrapper .text {
  font-size: 0.9em;
}
.m-result-card.gbb-card .result-card-collapsible-item .rcc-header .wrapper .text span {
  font-size: 0.8em;
}
.m-result-card .result-card-text-banner {
  font-size: 1em;
}

.warning-4set {
  text-align: left;
  font-size: 0.7rem;
  line-height: 1.1em;
  border-radius: 8px;
}

.result-card-text-banner {
  width: 100%;
  padding: 0.5em 1em;
  margin-top: 0.5em;
  background-color: #fda74f;
  border-radius: 8px;
  font-size: 1.2em;
  font-family: Roboto, sans-serif;
}

.monthly-payments-box {
  padding: 0.25rem 0.5rem 0.1rem 0.5rem;
  border-radius: 8px;
  border: solid #C9280F 3px;
  color: black;
  cursor: pointer;
  max-width: 200px;
}
.monthly-payments-box .top-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.monthly-payments-box .top-line div {
  padding: 0 0.5rem;
  text-align: center;
}
.monthly-payments-box .top-line div:first-child {
  padding-left: 0;
}
.monthly-payments-box .top-line div:last-child {
  padding-right: 0;
}
.monthly-payments-box .top-line div:not(:last-child) {
  border-right: solid black 1px;
}
.monthly-payments-box .top-line div p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;
}
.monthly-payments-box .top-line div p:first-child {
  font-size: 1rem;
  font-weight: bold;
}
.monthly-payments-box .price-line {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  line-height: 1;
  font-weight: bold;
}
.monthly-payments-box .price-line:first-child {
  font-size: 0.8rem;
}
.monthly-payments-box .price-line:not(:last-child) {
  margin-bottom: 0.2rem;
}
.monthly-payments-box .price-line .ala {
  font-size: 0.5rem;
  display: flex;
  flex-direction: column;
  margin-right: 0.3rem;
}
.monthly-payments-box .price-line .price {
  font-size: 1.4rem;
  font-family: Montserrat, sans-serif;
  color: #ef3f23;
}
.monthly-payments-box .bottom-line {
  font-size: 0.6rem;
  line-height: 1;
  text-align: right;
}

.monthly-payments-disclaimer {
  margin-top: -10px;
  margin-bottom: 20px;
}
.monthly-payments-disclaimer.in-cart {
  margin-top: 1.5em;
  margin-bottom: 0;
}

.instant-quote-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background-color: #005f9e;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
}
.instant-quote-button:hover {
  background-color: #003b61;
}
.instant-quote-button span {
  padding: 0 0.15rem;
  white-space: nowrap;
}

.instant-quote-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem;
  margin: 1rem 0;
}
.instant-quote-form .inputs {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem 1.5rem;
}
.instant-quote-form .inputs #div_id_email {
  width: 400px;
  max-width: 100%;
}
.instant-quote-form .inputs #div_id_email .emailinput {
  width: 100%;
}

#clearance-table {
  table-layout: auto;
  overflow-x: auto;
  margin: 1rem auto;
}
@media screen and (max-width: 800px) {
  #clearance-table {
    display: block;
  }
}
#clearance-table th {
  background-color: white;
  font-size: 1.8rem;
}
#clearance-table td {
  padding: 0.9rem 3rem 0.9rem 0;
  vertical-align: middle;
}
#clearance-table td.size {
  font-size: 1.4rem;
  font-weight: bold;
}
#clearance-table td.size .load-speed {
  font-size: 1rem;
  font-weight: normal;
  font-style: italic;
}
#clearance-table td .orig-price {
  font-weight: bold;
  font-style: italic;
  text-decoration: line-through;
  color: #666;
}
#clearance-table td.price {
  font-family: Montserrat, sans-serif;
  font-size: 1.4rem;
  color: #ef3f23;
}
#clearance-table td.price .orig-price {
  font-size: 1.2rem;
  font-style: italic;
  text-decoration: line-through;
  color: #666;
}
#clearance-table img.brand-logo {
  width: 175px;
  margin-bottom: 0.75rem;
}
#clearance-table .model-name {
  font-family: Montserrat, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #003b61;
  line-height: 1.2rem;
  margin-bottom: 0.75rem;
}

.choose-fitment-content h3 {
  font-family: Nunito, sans-serif;
  font-weight: lighter;
  font-style: italic;
  margin-top: 2rem;
}
.choose-fitment-content p {
  font-size: 1.25rem;
}
.choose-fitment-content .fitment-opts {
  border-top: solid #ddd 2px;
  margin: 1rem 0;
}
.choose-fitment-content .fitment-opt {
  display: flex;
  align-items: center;
  padding: 1rem;
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: solid #ddd 2px;
}
.choose-fitment-content .fitment-opt .fitment {
  display: flex;
  flex-direction: column;
}
.choose-fitment-content .fitment-opt.split-fitment .fitment {
  width: 350px;
}
.choose-fitment-content .fitment-opt.split-fitment .fitment span {
  font-size: 1.1rem;
}
.choose-fitment-content .fitment-opt.split-fitment .fitment a, .choose-fitment-content .fitment-opt.split-fitment .fitment button.link, .choose-fitment-content .fitment-opt.split-fitment .fitment button.link-inline {
  line-height: 1.75rem;
}
@media screen and (max-width: 700px) {
  .choose-fitment-content .fitment-opt.split-fitment .fitment {
    width: 50%;
  }
}

.trim-unknown-content {
  margin-top: 2rem;
}
.trim-unknown-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.trim-unknown-content .image-wrapper {
  float: right;
  width: 500px;
  margin: 0 0 1rem 2rem;
}
@media screen and (max-width: 800px) {
  .trim-unknown-content .image-wrapper {
    width: 100%;
    margin-left: 0;
  }
}
.trim-unknown-content .image-wrapper img {
  width: 100%;
}
.trim-unknown-content .image-wrapper p {
  font-style: italic;
  font-size: 0.9rem;
  color: #222;
  text-align: right;
  margin-top: 0;
}

table.fitment-options {
  font-size: 1.1rem;
  overflow-x: auto;
}
table.fitment-options tr {
  border-bottom: solid black 2px;
}
table.fitment-options th, table.fitment-options td {
  padding: 0.9rem 3rem 0.9rem 0;
}
table.fitment-options th {
  text-align: left;
  font-size: 1.3rem;
  font-family: Roboto, sans-serif;
}
table.fitment-options td.split-fitment {
  font-size: 0.9rem;
}
@media screen and (max-width: 800px) {
  table.fitment-options {
    display: block;
  }
}

.oem-choose-year-form {
  display: inline-block;
}

.oem-image {
  max-width: 400px;
}
@media screen and (max-width: 425px) {
  .oem-image {
    max-width: 100%;
  }
}

.cart-content {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .cart-content {
    flex-direction: column;
  }
}
.cart-content.is-modal {
  flex-direction: column;
}

.cart-items {
  width: 70%;
  margin-right: 1em;
}
@media screen and (max-width: 1024px) {
  .cart-items {
    width: 100%;
    margin-right: 0;
  }
}
.cart-items.is-modal {
  width: 100%;
  margin-right: 0;
}

.cart-tire-card {
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px #333;
  margin-bottom: 1rem;
  position: relative;
}
.cart-tire-card .tire-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .cart-tire-card .tire-wrapper {
    flex-direction: column;
    padding-top: 1.25rem;
  }
}
.cart-tire-card .tire-wrapper.is-modal {
  flex-direction: column;
  padding-top: 1.25rem;
}
.cart-tire-card .remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.cart-tire-card .remove button {
  color: red;
  font-size: 0.7em;
  font-weight: bold;
}

.cart-tire-info {
  display: flex;
}
.cart-tire-info img {
  width: 7rem;
  height: fit-content;
}
@media screen and (max-width: 500px) {
  .cart-tire-info img {
    width: 25vw;
  }
}
.cart-tire-info .tire-info-data {
  margin-left: 2rem;
  padding-top: 0.5rem;
}
.cart-tire-info .tire-info-data h3 {
  font-size: 1.5rem;
}
@media screen and (max-width: 350px) {
  .cart-tire-info {
    display: block;
  }
  .cart-tire-info .tire-info-data {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .cart-tire-info.is-modal {
    display: block;
  }
  .cart-tire-info.is-modal .tire-info-data {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .cart-tire-info img {
    width: 25vw;
  }
  .cart-tire-info .tire-info-data h3 {
    font-size: 1.15rem;
  }
  .cart-tire-info p {
    font-size: 0.8rem;
  }
}

.cart-tire-pricing {
  display: flex;
}
@media screen and (max-width: 800px) {
  .cart-tire-pricing {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.cart-tire-pricing .per-tire {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 2vw;
  margin-right: 5vw;
}
@media screen and (max-width: 800px) {
  .cart-tire-pricing .per-tire {
    flex-direction: row;
    gap: 7vw;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.cart-tire-pricing .per-tire p {
  margin: 0;
}
.cart-tire-pricing .per-tire .price {
  font-size: 1.5rem;
  font-weight: bold;
}
.cart-tire-pricing .subtotal {
  min-width: 7rem;
}
.cart-tire-pricing .subtotal .price {
  font-family: Montserrat, sans-serif;
  font-size: 1.5rem;
  color: #ef3f23;
}
.cart-tire-pricing .subtotal span {
  font-weight: bold;
}

.cart-fee {
  padding: 0.5rem;
}
.cart-fee .fee-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-fee .fee-header.discount {
  background-color: #005f9e;
  padding: 0.75rem 0.5rem;
  border-radius: 6px;
  color: white;
}
.cart-fee .fee-header h6 {
  margin-bottom: 0;
}
.cart-fee .fee-header span {
  font-size: 0.9rem;
  font-style: italic;
}
.cart-fee .fee-header .fee-subtotal {
  font-size: 1.1rem;
  font-weight: bold;
  margin-left: 1rem;
}
.cart-fee .fee-header .fee-subtotal.discount {
  font-family: Roboto, sans-serif;
  font-size: 1.2rem;
}
.cart-fee .fee-description {
  font-size: 0.85em;
  padding-left: 2rem;
}
.cart-fee .fee-description ul {
  margin: 0;
}

.cart-item-subtotal, .subtotal-after-rebates {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: Montserrat, sans-serif;
  font-size: 1.8em;
  color: #ef3f23;
  margin-top: 0.5rem;
}
.cart-item-subtotal span, .subtotal-after-rebates span {
  margin-right: 3rem;
}
@media screen and (max-width: 425px) {
  .cart-item-subtotal, .subtotal-after-rebates {
    font-size: 1.4em;
  }
  .cart-item-subtotal span, .subtotal-after-rebates span {
    margin-right: 1.5rem;
  }
}

.subtotal-after-rebates {
  padding: 0.25em;
  border-radius: 0.25em;
  font-size: 1.4em;
  font-family: Roboto, sans-serif;
  background-color: #005f9e;
  color: white;
}
@media screen and (max-width: 450px) {
  .subtotal-after-rebates {
    font-size: 1.1em;
  }
}

.totals-box {
  font-size: 1.3rem;
  line-height: 1.4rem;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 425px) {
  .totals-box {
    font-size: 1.1rem;
  }
}
.totals-box .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}
.totals-box .row span:last-of-type {
  margin-left: 2rem;
  font-family: Roboto, sans-serif;
}
.totals-box .row:last-of-type {
  font-size: 1.6rem;
}
.totals-box .row:last-of-type span:last-of-type {
  color: #005f9e;
  font-family: Montserrat, sans-serif;
}
@media screen and (max-width: 400px) {
  .totals-box.is-modal .row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cart-modal-close-row {
  margin-top: -25px;
  display: flex;
  justify-content: space-between;
  gap: 0.75em;
}
@media screen and (max-width: 375px) {
  .cart-modal-close-row {
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
.cart-modal-close-row .right-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75em;
}
@media screen and (max-width: 550px) {
  .cart-modal-close-row .right-container {
    flex-direction: column;
    align-items: flex-end;
  }
}

.location-page-map-container {
  background: #e8eaed url("../images/spinning-tire.f9a93bc79e6c.svg") no-repeat center;
  margin-bottom: 1rem;
  height: 225px;
  position: relative;
}

.location-page-map {
  width: 100%;
  height: 225px;
  border: none;
}

.store-info-row, .description-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 800px) {
  .store-info-row, .description-hours-row {
    flex-wrap: wrap;
  }
}
.store-info-row .image-wrapper, .description-hours-row .image-wrapper {
  width: calc(50% - 0.5rem);
}
@media screen and (max-width: 800px) {
  .store-info-row .image-wrapper, .description-hours-row .image-wrapper {
    width: 100%;
  }
}
.store-info-row .image-wrapper img, .description-hours-row .image-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}

.store-info {
  width: calc(50% - 0.5rem);
}
@media screen and (max-width: 800px) {
  .store-info {
    width: 100%;
  }
}
.store-info h1 {
  font-size: 2.2rem;
}
.store-info p {
  margin: 2rem 0;
}
.store-info p.address {
  font-size: 1.5rem;
}
.store-info p.phone-number {
  font-size: 2.5rem;
  font-family: Roboto, sans-serif;
  color: #ef3f23;
}
@media screen and (max-width: 400px) {
  .store-info h1 {
    font-size: 1.9rem;
  }
  .store-info p.address {
    font-size: 1.2rem;
  }
  .store-info p.phone-number {
    font-size: 2rem;
  }
}
.store-info .icon-row {
  max-width: 400px;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
@media screen and (max-width: 800px) {
  .store-info .icon-row {
    justify-content: space-around;
  }
}
.store-info .icon-row a, .store-info .icon-row button.link, .store-info .icon-row button.link-inline {
  text-align: center;
  font-weight: bold;
}
.store-info .icon-row a .fas, .store-info .icon-row button.link .fas, .store-info .icon-row button.link-inline .fas {
  font-size: 2.2rem;
}
@media screen and (max-width: 400px) {
  .store-info .icon-row a .fas, .store-info .icon-row button.link .fas, .store-info .icon-row button.link-inline .fas {
    font-size: 1.7rem;
  }
}

.description-hours-row {
  flex-direction: row-reverse;
}

.store-description .image-wrapper {
  float: left;
  margin: 0 1.6rem 1.6rem 0;
  width: 250px;
  max-width: 45vw;
}
.store-description .image-wrapper p {
  margin: 0 0 0 7px;
  color: #ef3f23;
}
.store-description .image-wrapper p:first-of-type {
  font-weight: bold;
}
.store-description .image-wrapper p:last-of-type {
  font-size: 1rem;
  margin-top: -5px;
}
.store-description p {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
@media screen and (max-width: 500px) {
  .store-description p {
    font-size: 1rem;
  }
}

.store-hours {
  min-width: 280px;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  background-color: #d0f2ff;
}
@media screen and (max-width: 800px) {
  .store-hours {
    margin: 0 auto;
    width: 80%;
  }
}
.store-hours .hours {
  display: flex;
  justify-content: space-between;
  margin: 0.75rem 0.5rem;
}
.store-hours .hours span {
  font-weight: bold;
}
.store-hours hr:last-of-type {
  display: none;
}

.location-modal-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
@media screen and (max-width: 400px) {
  .location-modal-block.full-page-mode {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .location-modal-block:not(.full-page-mode) {
    flex-direction: column;
  }
}
.location-modal-block:not(:last-of-type) {
  border-bottom: solid #ddd 2px;
}
.location-modal-block p.address {
  font-size: 0.8rem;
}
.location-modal-block a.phone-number, .location-modal-block button.phone-number.link, .location-modal-block button.phone-number.link-inline {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  color: #ef3f23;
  margin: 0;
}
.location-modal-block .fas {
  font-size: 1.6rem;
}
.location-modal-block img {
  width: 200px;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}

.location-card {
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  padding: 0.5rem;
  text-align: center;
  color: black;
  margin: 1rem;
}
.location-card img {
  width: 275px;
  margin-bottom: 0.5rem;
  border-radius: 8px;
}
.location-card h4 {
  margin: 0;
}
.location-card p.address {
  font-size: 0.8rem;
}
.location-card p.phone-number {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  color: #ef3f23;
  margin: 0;
}

.specials-list {
  margin-top: 1.5rem;
}

.specials-list-wrapper {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 800px) {
  .specials-list-wrapper {
    flex-flow: column nowrap;
    align-items: center;
  }
}

.coupon {
  width: 275px;
  padding: 0.7rem;
  border: dashed black 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 1rem 1.5rem;
}
.coupon .coupon-header {
  margin-bottom: 0.5rem;
  text-align: center;
}
.coupon .coupon-header h2 {
  color: #ef3f23;
  font-size: 1.75rem;
  margin: 0;
}
.coupon .coupon-header h4 {
  margin: 0;
}
.coupon .coupon-links {
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.specials-list-item {
  width: 360px;
  margin: 0.6em;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  padding: 1em 0.5em 2em 0.5em;
}
@media screen and (max-width: 800px) {
  .specials-list-item {
    max-width: 100%;
  }
}
.specials-list-item img {
  width: 325px;
  border-radius: 8px;
}
.specials-list-item .info-links {
  font-family: Roboto, sans-serif;
  margin-top: 0.65em;
}
.specials-list-item .info-links span {
  font-size: 1.4em;
  color: #999;
}
.specials-list-item .expires-soon {
  position: absolute;
  bottom: 5px;
  font-weight: bold;
}
.specials-list-item .expires-soon .fas {
  color: #ef3f23;
}

.special-header-image-wrapper {
  display: flex;
  justify-content: center;
  margin: 0.5em 0 2.25em 0;
}
.special-header-image-wrapper img {
  max-width: 100%;
}
.special-header-image-wrapper.mb-img {
  display: none;
}
@media screen and (max-width: 420px) {
  .special-header-image-wrapper.dt-img {
    display: none;
  }
  .special-header-image-wrapper.mb-img {
    display: flex;
  }
}

.special-detail-h1 {
  font-size: 1.8em;
  color: #005f9e;
}

.special-detail-h2 {
  font-size: 1.2em;
  font-family: Nunito, sans-serif;
  font-weight: bold;
}

.special-detail-h3 {
  font-size: 1.4em;
  color: #ef3f23;
  margin: 1em 0 0.5em 0;
}
.special-detail-h3.margin-bottom-0 {
  margin-bottom: 0;
}

.elg-objs {
  margin: 0.25em 0 0.5em 0.5em;
}
.elg-objs:not(:first-of-type) {
  margin-top: 0.75em;
}

.amount-flex-wrapper {
  display: flex;
  flex-flow: row wrap;
}
.amount-flex-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0 10% 0 1em;
}
.amount-flex-wrapper li {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0.35em;
}

.tire-specials-carousel .carousel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  height: 300px;
  margin-bottom: 0.75rem;
}
.tire-specials-carousel .carousel-inner {
  overflow: visible;
}
.tire-specials-carousel .carousel-inner img {
  height: 250px;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}
@media screen and (max-width: 360px) {
  .tire-specials-carousel .carousel-inner img {
    width: 80vw;
    height: auto;
  }
}
.tire-specials-carousel .carousel-control-prev,
.tire-specials-carousel .carousel-control-next {
  position: relative;
  margin: 0.3rem;
}
.tire-specials-carousel a, .tire-specials-carousel a:not([href]):not([tabindex]), .tire-specials-carousel button.link, .tire-specials-carousel button.link-inline {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-family: Roboto, sans-serif;
}
.tire-specials-carousel .carousel-indicators {
  margin-bottom: 0;
}

.service-list-wrapper {
  margin: 2rem 0;
  display: flex;
  flex-flow: row wrap;
  gap: 2rem 2.5rem;
}
@media screen and (max-width: 550px) {
  .service-list-wrapper {
    flex-flow: column nowrap;
    align-items: center;
  }
}
.service-list-wrapper a, .service-list-wrapper a:not([href]):not([tabindex]), .service-list-wrapper button.link, .service-list-wrapper button.link-inline {
  display: flex;
}

.service-list-item {
  width: 225px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}
.service-list-item img {
  width: 165px;
  margin-bottom: 1em;
}
.service-list-item h5 {
  color: #322b2b;
}

.service-page-hero {
  min-height: 275px;
  color: white;
  padding: 2em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5em;
  margin-bottom: 2rem;
  position: relative;
}
.service-page-hero h1 {
  font-size: 3rem;
  text-shadow: 0 0 8px black;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .service-page-hero h1 {
    font-size: 2rem;
  }
}
.service-page-hero img.service-hero-logo {
  width: 150px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.service-page-hero div.service-hero-cta-container {
  z-index: 1;
}

.service-top-container {
  background: linear-gradient(to bottom, #ebebeb, rgba(255, 255, 255, 0) 60px);
  background: -webkit-linear-gradient(top, #ebebeb, rgba(255, 255, 255, 0) 60px);
  display: flex;
  flex-flow: row wrap-reverse;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem;
}
.service-top-container .service-top-text {
  align-self: center;
  width: calc(100% - 350px - 2.5rem);
}
@media screen and (max-width: 800px) {
  .service-top-container .service-top-text {
    width: 100%;
  }
}
.service-top-container .specials-list-wrapper {
  gap: 0.5rem;
}
.service-top-container .coupon {
  width: 350px;
  margin: 0;
}
@media screen and (max-width: calc(350px + 2.5rem)) {
  .service-top-container .coupon {
    width: 90%;
  }
}

.service-content-row {
  background: linear-gradient(to bottom, #ebebeb, rgba(255, 255, 255, 0) 60px);
  background: -webkit-linear-gradient(top, #ebebeb, rgba(255, 255, 255, 0) 60px);
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 1.5rem;
}
.service-content-row:nth-child(even) {
  flex-flow: row-reverse wrap;
}
.service-content-row .service-content-col {
  width: 50%;
  padding: 1rem;
}
@media screen and (max-width: 700px) {
  .service-content-row .service-content-col {
    width: 100%;
  }
  .service-content-row .service-content-col.image {
    text-align: center;
  }
}
.service-content-row .service-content-col img {
  max-width: 100%;
}

.service-detail-content {
  background: linear-gradient(to bottom, #ebebeb, rgba(255, 255, 255, 0) 60px);
  background: -webkit-linear-gradient(top, #ebebeb, rgba(255, 255, 255, 0) 60px);
  padding: 0.5rem;
}

.service-description {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.service-description p {
  margin-bottom: 0.65em;
}

.service-disclaimer {
  margin: 1rem 0;
}

.service-faqs {
  margin-top: 2rem;
}
.service-faqs h3 {
  color: #ef3f23;
  font-family: Montserrat, sans-serif;
}
.service-faqs .question {
  background-color: #005f9e;
  color: white;
  font-family: Roboto, sans-serif;
  padding: 0.5em;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0.5em;
}
.service-faqs .question .collapse-icon {
  margin-right: 1em;
  font-size: 0.8em;
}
.service-faqs .answer {
  display: none;
  padding: 0.5em 1.5em;
  margin-bottom: 0.5em;
}

.choose-appointment-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0;
}
.choose-appointment-container .column {
  max-width: 475px;
}

.calendar-container {
  padding: 0.75rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
  margin-bottom: 1rem;
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: Montserrat, sans-serif;
  color: #005f9e;
}
.calendar-header div {
  margin: 0 0.75rem;
}
.calendar-header i {
  font-size: 1.3rem;
}

table.calendar {
  max-width: 450px;
}
table.calendar th, table.calendar td {
  text-align: center;
}
table.calendar td.available {
  color: #005f9e;
  font-family: Roboto, sans-serif;
}
table.calendar td.out-of-month {
  color: #bbb;
}
table.calendar td.selected span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #005f9e;
  color: white;
}
table.calendar td.today {
  font-family: Montserrat, sans-serif;
}

.appointments {
  margin-bottom: 3rem;
}

.location-appointments {
  margin-bottom: 1.25rem;
}

.appointment-button-container {
  display: flex;
  flex-flow: row wrap;
}
.appointment-button-container button {
  min-width: 85px;
  margin: 0.5rem;
}

#vehicle-form-holder {
  width: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}
#vehicle-form-holder input[type=submit] {
  font-size: 20px;
  padding: 3px 0;
}

.book-appointment-header {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1.5rem 0 3rem 0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}
@media screen and (max-width: 600px) {
  .book-appointment-header {
    flex-direction: column;
    align-items: center;
  }
}

.bah-location-info {
  margin-right: 1.5rem;
  width: 200px;
}
.bah-location-info img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px #333;
}
.bah-location-info .bah-store-address {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.2;
}
.bah-location-info .bah-store-phone {
  margin-top: 0.75rem;
}
.bah-location-info .bah-store-phone a, .bah-location-info .bah-store-phone button.link, .bah-location-info .bah-store-phone button.link-inline {
  font-family: Roboto, sans-serif;
}
@media screen and (max-width: 600px) {
  .bah-location-info {
    width: 100%;
    margin-right: 0;
  }
}

.bah-appointment-info h4 {
  margin-bottom: 1rem;
}
.bah-appointment-info .bah-appt-info-row {
  margin: 0.5rem 0;
}
.bah-appointment-info .bah-appt-info-row span:first-of-type {
  font-weight: bold;
  margin-right: 1.5rem;
}
@media screen and (max-width: 600px) {
  .bah-appointment-info {
    width: 100%;
  }
}

.bah-timer-container {
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bah-timer-container p {
  font-size: 0.9rem;
  font-style: italic;
}
.bah-timer-container .timer {
  display: inline-block;
  padding: 2rem;
  border-radius: 50%;
  background-color: #005f9e;
  color: white;
  font-weight: bold;
  text-align: center;
}

#time-left {
  font-family: "Courier New", monospace;
  font-size: 2.25rem;
}

.book-appointment-body {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 950px) {
  .book-appointment-body {
    flex-direction: column;
  }
  .book-appointment-body .book-appointment-cart {
    width: 100%;
    margin: 0 auto 2.5rem auto;
  }
}

.book-appointment-cart {
  width: 500px;
  flex: 0 0 auto;
}
@media screen and (max-width: 1200px) {
  .book-appointment-cart {
    width: 400px;
  }
}

table.appointment-cart-table {
  table-layout: auto;
}
table.appointment-cart-table th:not(:last-of-type), table.appointment-cart-table td:not(:last-of-type) {
  padding-right: 1rem;
}
table.appointment-cart-table th:last-of-type, table.appointment-cart-table td:last-of-type {
  text-align: right;
}
table.appointment-cart-table tr.tire-row td {
  border-top: solid #aaa 1px;
}
table.appointment-cart-table tr.discount-row td {
  color: #e02d09;
}
table.appointment-cart-table td.appt-cart-tire-line p {
  line-height: 1.2;
}
table.appointment-cart-table td.appt-cart-tire-line p:first-of-type {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0;
}
table.appointment-cart-table td.appt-cart-tire-line p:last-of-type {
  font-size: 0.9rem;
  font-style: italic;
}
table.appointment-cart-table td.appt-cart-tire-price p:first-of-type {
  margin-bottom: 0;
}
table.appointment-cart-table td.appt-cart-tire-price p:last-of-type {
  font-size: 0.7rem;
  font-style: italic;
}
table.appointment-cart-table tr.subtotals-row {
  line-height: 1.2rem;
}
table.appointment-cart-table td.subtotals {
  padding: 0 0 0 40%;
}
@media screen and (max-width: 550px) {
  table.appointment-cart-table td.subtotals {
    padding-left: 20%;
  }
}
@media screen and (max-width: 400px) {
  table.appointment-cart-table td.subtotals {
    padding-left: 0;
  }
}
table.appointment-cart-table td.subtotal {
  border-top: solid #aaa 1px;
  padding-top: 1.5rem;
  font-weight: bold;
}
table.appointment-cart-table td.total {
  font-size: 1.5rem;
  font-family: Roboto, sans-serif;
  color: #ef3f23;
}

.book-appointment-form {
  width: 100%;
  margin-right: 3rem;
}
.book-appointment-form fieldset {
  margin-bottom: 2rem;
}
.book-appointment-form legend {
  font-family: Montserrat, sans-serif;
}
.book-appointment-form .control-group {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
@media screen and (max-width: 800px) {
  .book-appointment-form .control-group {
    display: block;
  }
}
.book-appointment-form .control-group label {
  width: 200px;
  flex: 0 0 auto;
  font-family: Roboto, sans-serif;
}
.book-appointment-form .control-group .controls {
  flex: 1;
}
.book-appointment-form .control-group .controls select,
.book-appointment-form .control-group .controls textarea,
.book-appointment-form .control-group .controls input[type=text],
.book-appointment-form .control-group .controls input[type=email],
.book-appointment-form .control-group .controls input[type=password],
.book-appointment-form .control-group .controls input[type=tel] {
  width: 100%;
}
.book-appointment-form .control-group .controls .help-block {
  font-size: 0.7em;
  font-style: italic;
}
.book-appointment-form .control-group .controls #id_state, .book-appointment-form .control-group .controls #id_license_plate_state {
  width: auto;
}
.book-appointment-form .control-group .controls #id_zip_code {
  width: 150px;
}
.book-appointment-form .control-group .controls #id_license_plate {
  width: 200px;
}

.agree-box .control-group .controls {
  display: flex;
  align-items: center;
}
.agree-box .control-group .controls label {
  width: auto;
}
.agree-box .control-group .controls .help-block {
  margin-left: 1em;
  font-size: 1em;
  font-style: normal;
}

.global-appointment-hold-bar {
  align-items: center;
}
@media screen and (max-width: 600px) {
  .global-appointment-hold-bar {
    flex-direction: column;
  }
  .global-appointment-hold-bar .links {
    width: 100%;
    justify-content: space-around;
    margin-top: 0.75rem;
  }
}
.global-appointment-hold-bar #time-left {
  font-size: 1.1rem;
}

.appointment-detail-body {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.appointment-detail-body h2 {
  font-family: Montserrat, sans-serif;
}
.appointment-detail-body .column {
  padding: 1rem;
}
@media screen and (max-width: 400px) {
  .appointment-detail-body h2 {
    font-size: 1.5rem;
  }
  .appointment-detail-body .column {
    padding-left: 0;
    padding-right: 0;
  }
}

.appointment-details-section {
  margin-bottom: 2rem;
}
.appointment-details-section form[name=resend-email] {
  padding: 0.75rem 0.5rem;
}

.appointment-key-val {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding: 0.75rem 0.5rem;
  font-size: 1.3rem;
}
.appointment-key-val .key {
  font-family: Roboto, sans-serif;
  width: 200px;
}
.appointment-key-val .val {
  word-break: break-word;
}
@media screen and (max-width: 800px) {
  .appointment-key-val {
    display: block;
  }
}

.appointment-message {
  max-width: 500px;
  min-height: 9rem;
}
.appointment-message.none {
  color: #888;
}

.appointment-details-box {
  margin-top: 2rem;
  margin-bottom: 3rem;
  max-width: 500px;
  padding: 1.5rem;
  box-shadow: 0 0 8px #333;
  border-radius: 8px;
}
.appointment-details-box img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.appointment-details-box .address {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.appointment-details-box .icon-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
@media screen and (max-width: 800px) {
  .appointment-details-box .icon-row {
    justify-content: space-around;
  }
}
.appointment-details-box .icon-row a, .appointment-details-box .icon-row button.link, .appointment-details-box .icon-row button.link-inline {
  text-align: center;
  font-weight: bold;
}
.appointment-details-box .icon-row a .fas, .appointment-details-box .icon-row button.link .fas, .appointment-details-box .icon-row button.link-inline .fas {
  font-size: 2.2rem;
}
@media screen and (max-width: 400px) {
  .appointment-details-box .icon-row a .fas, .appointment-details-box .icon-row button.link .fas, .appointment-details-box .icon-row button.link-inline .fas {
    font-size: 1.7rem;
  }
}
.appointment-details-box table.appointment-cart-table {
  margin-bottom: 1rem;
}
@media screen and (max-width: 350px) {
  .appointment-details-box {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.staff-appointments-page-filters {
  display: flex;
  flex-flow: row wrap;
  gap: 1.5rem 3rem;
  align-items: flex-end;
  padding: 0.9rem;
  box-shadow: 0 0 8px #333;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.staff-appointments-page-filters label {
  margin: 0;
  font-weight: bold;
}
.staff-appointments-page-filters input, .staff-appointments-page-filters select {
  border: solid 1px black;
}
.staff-appointments-page-filters .submit-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.staff-appointments-page-filters .submit-container input[type=submit] {
  display: block;
  font-size: 1rem;
}
.staff-appointments-page-filters .submit-container a, .staff-appointments-page-filters .submit-container button.link, .staff-appointments-page-filters .submit-container button.link-inline {
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 3px;
  margin-bottom: -10px;
}

.staff-appointments-page-table {
  width: auto;
  table-layout: auto;
  margin-bottom: 2rem;
}
.staff-appointments-page-table th, .staff-appointments-page-table td {
  padding: 0.75rem 1.75rem;
}
.staff-appointments-page-table th {
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  background-color: #003b61;
  color: white;
}
.staff-appointments-page-table td {
  border-bottom: solid #aaa 1px;
}
.staff-appointments-page-table td.green-status {
  color: #3dbc5f;
}
.staff-appointments-page-table td.red-status {
  color: #ec4e2c;
}
.staff-appointments-page-table td button {
  font-size: 1rem;
}

/*# sourceMappingURL=main.css.map */
