/*
 * CSS Reset
 */

.part-finder div, .part-finder span, .part-finder applet, .part-finder object, .part-finder iframe, .part-finder h1, .part-finder h2, .part-finder h3, .part-finder h4, .part-finder h5, .part-finder h6, .part-finder p, .part-finder blockquote, .part-finder pre, .part-finder a, .part-finder abbr, .part-finder acronym, .part-finder address, .part-finder big, .part-finder cite, .part-finder code, .part-finder del, .part-finder dfn, .part-finder em, .part-finder img, .part-finder ins, .part-finder kbd, .part-finder q, .part-finder s, .part-finder samp, .part-finder small, .part-finder strike, .part-finder strong, .part-finder sub, .part-finder sup, .part-finder tt, .part-finder var, .part-finder b, .part-finder u, .part-finder i, .part-finder center, .part-finder dl, .part-finder dt, .part-finder dd, .part-finder ol, .part-finder ul, .part-finder li, .part-finder fieldset, .part-finder form, .part-finder label, .part-finder legend, .part-finder table, .part-finder caption, .part-finder tbody, .part-finder tfoot, .part-finder thead, .part-finder tr, .part-finder th, .part-finder td, .part-finder article, .part-finder aside, .part-finder canvas, .part-finder details, .part-finder embed, .part-finder figure, .part-finder figcaption, .part-finder footer, .part-finder header, .part-finder hgroup, .part-finder menu, .part-finder nav, .part-finder output, .part-finder ruby, .part-finder section, .part-finder summary, .part-finder time, .part-finder mark, .part-finder audio, .part-finder video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

.part-finder article, .part-finder aside, .part-finder details, .part-finder figcaption, .part-finder figure, 
.part-finder footer, .part-finder header, .part-finder hgroup, .part-finder menu, .part-finder nav, .part-finder section {
  display: block;
}

.part-finder ol, .part-finder ul {
  list-style: none;
}

.part-finder blockquote, .part-finder q {
  quotes: none;
}

.part-finder blockquote:before, .part-finder blockquote:after,
.part-finder q:before, .part-finder q:after {
  content: '';
  content: none;
}

.part-finder table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 * Overall
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}


.part-finder,
.part-finder * {
  font-family: "Overpass", sans-serif;
}
  
.part-finder {
  background-color: white;
  width: 100%;
  min-height: 600px;
  line-height: 1;
}

div.tab-container {
  padding: 10px;
}

ul {
  margin: 0;
  padding: 0;
}

div.content-container {
  border-top: 2px solid #0044A8;
}

div.content-container p.headline {
  margin-top: 1em;
}

/*
 * Tooltips
 */

.tooltip-container {
  position: fixed;
  background-color: #EDEDED;
  color: #666666;
  font-family: "Overpass", sans-serif;
  font-weight: 300;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #666666;
  opacity: 0.0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  white-space: break-spaces;
  max-width: 75vw;
}

.tooltip-container.active {
  opacity: 1.0;
}

/*
 * Mixable
 */

.hidden {
  display: none !important;
}

.shown {
  display: initial !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.transparent {
  opacity: 0 !important;
}

.opaque {
  opacity: 1 !important;
}

/*
 * Tabs
 */

ul.tab-header li {
  display: inline-block;
  background-color: #EEE;
  color: #777;
  border-color: #CCC #CCC #0044A8 #CCC;
  border-style: solid;
  border-width: 2px;
  padding: 18px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

ul.tab-header li:not(.active):hover {
  text-decoration: underline;
}

ul.tab-header li.active {
  background-color: white;
  color: black;
  border-color: #0044A8 #0044A8 white #0044A8;
}

/*
 * Selectors
 */

div.selectors {
  padding: 10px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

div.selectors div.list-selector {
  flex-basis: 100%;
}

ul.selector {
  flex-basis: 100%;
  background-color: #DDD;
  margin: 10px 0;
  display: flex;
  flex-flow: row nowrap;
}

ul.filter {
  background-color: #CFE2F1;
}

ul.selector li {
  position: relative;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 18px 18px 18px 40px;
  border-right: 2px solid white;
}

ul.selector li.label {
  color: #0044A8;
  font-weight: 700;
}

ul.selector li:not(.label) {
  cursor: pointer;
  opacity: 0.8;
}

ul.selector li.active {
  font-weight: 700;
  opacity: 1.0;
}


ul.selector li:not(.label)::before {
  position: absolute;
  content: "\A";
  background-color: white;
  border-radius: 100%;
  width: 18px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
  left: 10px;
  border: 5px solid #FFF;
}

ul.selector li:not(.label).active::before {
  background-color: #184584;
}

@media screen and (max-width: 650px){
  ul.selector {
    flex-flow: row wrap;
    background: transparent;
  }
  ul.selector li.label {
    flex-basis: 100%;
    text-align: center;
    background-color: #DDD;
    margin: 10px;
  }
  ul.selector li:not(.label) {
    background-color: white;
    border-radius: 200px;
    border: 1px solid #CCC;
    margin: 5px 5px 0 0;
    font-size: 0.8em;
  }
  ul.selector li.active {
    color: white;
    background-color: #0044A8;
    font-weight: normal;
  }
}

div.selectors div.select-selector {
  flex-basis: 33%;
}

@media screen and (max-width: 850px) {
	div.selectors div.select-selector {
	  flex-basis: 50%;
	}
  }

@media screen and (max-width: 450px) {
  div.selectors div.select-selector {
    flex-basis: 100%;
  }
}

select.selector {
  display: block;
  width: 100%;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
  padding: 20px 0 20px 5px;
  font-size: 1em;
  background-image: url("../img/down-white.png"),
                    linear-gradient(to left, #0044A8 35px, transparent 35px),
                    linear-gradient(to bottom, white, #EEE);
  background-position: right 10px center, center center, center center;
  background-repeat: no-repeat;
  border-radius: 2px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select.selector:disabled {
  cursor: not-allowed;
}

select.selector:disabled {
  background-image: url("../img/down-white.png"),
                    linear-gradient(to left, #78A1C1 35px, transparent 35px),
                    linear-gradient(to bottom, white, #EEE);
}

select.selector:focus {
  background-image: url("../img/up-dark-transparent.png"),
                    linear-gradient(to left, #0044A8 35px, transparent 35px),
                    linear-gradient(to bottom, #EEE, #DDD);
}

select.selector::-ms-expand {
  display: none;
}

div.select-selector.filter {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: #cfe2f1;
}

div.select-selector.filter label {
  font-weight: bold;
  padding: 1em;
}

div.select-selector.filter select.selector {
  margin-bottom: 0;
  margin-right: 5px;
}

@media screen and (max-width: 450px) {
  div.select-selector.filter {
    flex-flow: column nowrap;
  }

  div.select-selector.filter select.selector {
    margin-right: 0px;
  }
}

select.selector option {
  padding: 25px;
  height: 25px;
  background-color: #EEE;
}

div.search-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

div.search-container div.search-input-container {
  padding: 19px 13px;
  border: 1px solid #AAA;
  min-width: 270px;
  max-width: 100%;
  cursor: text;
}

div.search-container input[type='text']{
  background: none !important;
  box-shadow: none !important;
  color: black;
  outline: none;
  border: none;
  width: 100%;
}

div.search-container button {
  padding: 14px 30px;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  background-color: #0044A8;
  margin-left: 10px;
  outline: none;
  border: 1px solid #0044A8;
  font-size: 0.8em;
  transition: color 0.3s, background-color 0.3s;
  height: auto;
  border-radius: 0;
  line-height: 1;
}

div.search-container button:hover {
  color: #0044A8;
  background-color: white;
}

@media screen and (max-width: 450px) {
  div.search-container {
    flex-flow: column nowrap;
    align-items: stretch;
    width: 100%;
  }

  div.search-container button {
    margin: 10px 0;
  }

  div.search-container input {
    width: 100%;
  }
}

/*
 * Loading
 */

div.loading {
  height: 400px;
  width: 400px;
  background-image: url("../img/loading.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 250px 250px;
  z-index: 9999;
  margin: 0 auto;
}

/*
 * Parts
 */

div.parts-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

h2.parts-container-empty {
  color: #0044A8;
}

p.parts-container-footnote {
  color: #AAA;
  font-style: italic;
  font-size: 0.75em;
  text-align: right;
}

div.part-container {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  text-align: center;
  padding: 20px 0;
  flex-basis: calc(33% - 20px);
  border: 1px solid #EEE;
  border-radius: 5px;
  margin: 10px;
}

div.part-image-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 200px;
}

div.part-image-container img.part-image {
  max-height: 200px;
  max-width: 200px;
}

@media screen and (max-width: 1000px){
  div.part-container {
    flex-basis: calc(50% - 20px);
  }
}

@media screen and (max-width: 650px){
  div.part-container {
    flex-basis: 100%;
    display: flex;
    flex-flow: row nowrap;
  }
  img.part-image {
    flex-basis: 33%;
  }
  div.part-details {
    flex-basis: 66%;
  }
}

@media screen and (max-width: 450px) {
  div.part-container {
    flex-flow: column nowrap;
  }
}

div.part-details button {
  font-size: 0.75em;
  display: block;
  position: relative;
  margin-bottom: 5px;
  padding: 10px 20px;
  font-weight: bold;
  background-color: white;
  background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1));
  outline: none;
  border: 1px solid #AAA;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: black;
  height: auto;
  line-height: 1;
}

div.part-details button.highlight {
  background-color: #0044A8;
  color: white;
}

div.part-details button:hover {
  color: #777;
  box-shadow: inset 0px 0px 8px rgba(0,0,0,0.4);
}
div.part-details button.highlight:hover {
  color: #DDD;
}

div.part-details div.part-buttons {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: stretch;
  margin: 5px;
}

div.part-details div.part-buttons div.part-detail-buttons {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: stretch;
}

div.part-details div.part-buttons div.part-detail-buttons > * {
  flex-basis: 100%;
}

div.part-details div.part-buttons div.part-detail-buttons > *:not(.hidden):not(:last-child) {
  margin-right: 5px;
}

div.part-details div.part-buttons > * {
  flex-basis: 100%;
}

div.part-tooltip,
div.part-tooltip-left,
div.part-tooltip-right {
  bottom: calc(100% + 15px);
  width: 250px;
  position: absolute;
  padding: 10px;
  background-color: #DDD;
  border: 1px solid #444;
  color: #444;
  font-weight: bold;
  transition: opacity 0.5s;
  font-size: 0.8em;
  border-radius: 5px;
  pointer-events: none;
}

div.part-tooltip-left {
  right: -4px;
}

div.part-tooltip-right {
  left: calc(100% - 37px);
}

div.part-tooltip-left::before,
div.part-tooltip-right::before {
  position: absolute;
  width: 0;
  content: "\A";
  bottom: -31px;
  border-width: 15px;
  border-style: solid;
  border-top-color: #444;
  z-index: 2;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

div.part-tooltip-right::before {
  left: 5px;
}

div.part-tooltip-left::before {
  right: 5px;
}

div.part-tooltip-left::after,
div.part-tooltip-right::after {
  position: absolute;
  content: "\A";
  width: 0;
  right: 10px;
  bottom: -30px;
  border-width: 15px;
  border-style: solid;
  border-top-color: #DDD;
  z-index: 2;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

div.part-tooltip-right::after {
  left: 5px;
}

div.part-tooltip-left::after {
  right: 5px;
}

div.part-tooltip-hover {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  line-height: 20px;
  border: 1px solid black;
  cursor: pointer;
  text-align: center;
}

div.part-tooltip-hover-empty {
  display: none;
}

div.part-type {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
  margin-bottom: 0.5em;
}

div.part-brand {
  color: #0044A8;
  font-weight: bold;
  margin-bottom: 0.25em;
}

div.part-description {
  font-size: 0.75em;
  margin-bottom: 0.25em;
}

div.part-number {
  margin-bottom: 0.25em;
}

div.shadowbox {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.75);
  transition: opacity 0.5s;
  cursor: pointer;
  box-sizing: border-box;
  padding: 185px 0 0 0;
}

div.shadowbox-content {
  position: relative;
  background-color: white;
  box-shadow: 1px 1px 15px black;
}

div.part-note-container {
  padding-top: 1em;
}

div.part-note-container p {
  padding: 1em;
}

div.part-detail-container {
  position: relative;
  width: 280px;
  padding: 25px;
  text-align: center;
  min-height: 400px;
  cursor: default;
}

div.details-loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 400px;
}

table.part-detail-specs,
table.part-detail-applications {
  border-collapse: collapse;
  margin: 0 0 10px 0;
  width: 100%;
}

table.part-detail-specs tr,
table.part-detail-applications tr {
  border-bottom: 1px solid white;
}

table.part-detail-specs th,
table.part-detail-applications th {
  color: #444;
  font-weight: bold;
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
  font-size: 0.8em;
  background-color: #CCC;
  padding: 8px;
  width: 50%;
}

table.part-detail-specs td,
table.part-detail-applications td {
  color: #444;
  text-align: left;
  font-size: 0.7em;
  background-color: #EEE;
  padding: 8px;
  width: 50%;
}

div.shadowbox-close {
  color: #0044A8;
  position: absolute;
  right: -26px;
  top: -41px;
  font-size: 80px;
  cursor: pointer;
  transition: color 0.25s; 
  z-index: 5;
  text-shadow: 1px 1px 3px black;
}

div.shadowbox-close-fixed {
  position: fixed;
  right: 10px;
  top: 10px;
}

div.shadowbox-close:hover {
  color: #217DE7;
}

ul.part-details-guides,
ul.part-details-vendors {
  margin: 5px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

ul.part-details-vendors {
  border-top: 1px solid rgba(0,0,0,0.2);
  padding-top: 6px;
}

ul.part-details-guides li,
ul.part-details-vendors li {
  display: block;
  flex-basis: calc(50% - 10px);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: 5px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}


ul.part-details-guides li::after,
ul.part-details-vendors li::after {
  content: "\A";
  position: absolute;
  pointer-events: none;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: transparent;
  transition: background-color 0.25s ease-in-out;
}

ul.part-details-guides li:hover::after,
ul.part-details-vendors li:hover::after {
  background-color: rgba(255,255,255,0.15);
}

ul.part-details-guides li a,
ul.part-details-vendors li a {
  display: block;
  padding: 15px 0;
  background-color: #0044A8;
  text-transform: capitalize;
  color: white;
  font-size: 10px;
  text-decoration: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 75%;
}

ul.part-details-vendors li a {
  font-size: 0;
}

ul.part-details-vendors li a::after {
  display: inline-block;
  font-size: 12px;
  content: "\A0";
}

ul.part-details-vendors li.other-link-container {
  flex-basis: 100%;
  box-shadow: none;
}

ul.part-details-vendors li a.other-link {
  font-size: 0;
  background-color: transparent;
  color: #444;
}

ul.part-details-vendors li a.other-link {
  font-size: 0.65em;
}

ul.part-details-vendors li a.other-link:hover {
  text-decoration: underline;
}

ul.part-details-vendors li a.advance-link {
  background-color: #cc0033;
  background-image: url("../img/advanceauto_stack.jpg");
}

ul.part-details-vendors li a.amazon-link {
  background-color: white;
  background-image: url("../img/amazon.jpg");
}

ul.part-details-vendors li a.walmart-link,
ul.part-details-vendors li a.walmart_twenty_k-link {
  background-color: white;
  background-size: 85% auto;
  background-image: url("../img/walmart.png");
}

ul.part-details-vendors li a.pep-boys-link {
  background-color: white;
  background-image: url("../img/pepboys.jpg");
}

ul.part-details-vendors li a.tractor-supply-link {
  background-color: #444;
  background-image: url("../img/tractorsupply.png");
}

ul.part-details-vendors li a.carparts-link {
  background-color: white;
  background-image: url("../img/carparts-small.png");
  background-size: 90% auto;
}

ul.part-details-vendors li a.farm-and-fleet-link {
	background-color: white;
	background-image: url("../img/blains-horizontal.svg");
	background-size: 90% auto;
}

ul.part-details-vendors li a.fred-meyer-link {
	background-color: white;
	background-image: url("../img/fred-meyer-horizontal.svg");
	background-size: 90% auto;
}

ul.part-details-vendors li a.lowes-link {
	background-color: white;
	background-image: url("../img/lowes.svg");
	background-size: 50% auto;
}

ul.part-details-vendors li a.meijer-link {
	background-color: white;
	background-image: url("../img/logo-meijer.png");
	background-size: 90% auto;
}

ul.part-details-vendors li a.menards-link {
	background-color: white;
	background-image: url("../img/menards.svg");
	background-size: 90% auto;
}

ul.part-details-vendors li a.zoro-link {
	background-color: white;
	background-image: url("../img/zoro.png");
	background-size: 130px auto;
}

div.part-application-container {
  position: relative;
  display: block;
  width: 90vw;
  max-width: 1000px;
  height: 750px;
  max-height: calc(100vh - 250px);
  background-color: white;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
  overflow: auto;
  cursor: default;
}

div.part-application-make {
  margin: 0;
}

h1.make-name {
  user-select: none;
  text-transform: uppercase;
  background-color: #CCC;
  color: #0044A8;
  padding: 15px;
  font-size: 1em;
  background-image: linear-gradient(to left, #0044A8 30px, transparent 30px);
  cursor: pointer;
  margin-bottom: 5px;
}

div.part-application-make h1.make-name::after{
  content:"+";
  position: absolute;
  right: 20px;
  color: white;
}

div.part-application-make.expanded h1.make-name::after{
  content:"-";
  position: absolute;
  right: 22px;
  color: white;
}

div.part-application-make input[type='text']{
  background-color: transparent;
  color: black;
  padding: 15px 8px;
  outline: none;
  border: 1px solid #AAA;
  transition: border-color 0.3s;
  min-width: 270px;
}

div.part-application-make input[type='text']:focus {
  border-color: #0044A8;
}

div.part-application-make table {
  margin: 10px 0px;
  width: 100%;
  border-top: 1px solid #AAA;
  border-left: 1px solid #AAA;
  border-collapse: collapse;
}

div.part-application-make table tr th {
  position: relative;
  padding: 10px;
  border-right: 1px solid #AAA;
  border-bottom: 1px solid black;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

div.part-application-make table tr th.sort-descending::after {
  content: "\2193";
  color: #0044A8;
  position: absolute;
  right: 5px;
  top: 18px;
  font-size: 0.75em;
}

div.part-application-make table tr th.sort-ascending::after {
  content: "\2191";
  color: #0044A8;
  position: absolute;
  right: 5px;
  top: 8px;
  font-size: 0.75em;
}

div.part-application-make table tr td {
  padding: 10px;
  border-right: 1px solid #AAA;
  border-bottom: 1px solid #AAA;
}

/* Category Selectors (new) */

.part-finder-application-category-selector-header {
  text-align: center;
  color: #0044A8;
  font-size: 1em;
  margin: 0.5em 0 0 0;
  padding: 0;
  font-family: "Overpass", sans-serif;
}

div.part-finder-category-selector-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

ul.part-finder-category-selector-list {
  list-style-type: none;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

ul.part-finder-category-selector-list::before,
ul.part-finder-category-selector-list::after {
  content: "\A";
  display: inline-block;
  height: 40px;
  width: 40px;
}

ul.part-finder-category-selector-list::before {
  background-image: linear-gradient(to bottom right, transparent 49.5%, #0044A8 50.5%);
}

ul.part-finder-category-selector-list::after {
  background-image: linear-gradient(to top left, transparent 49.5%, #0044A8 50.5%);
}

ul.part-finder-category-selector-list li {
  font-family: "Overpass", sans-serif;
  color: white;
  font-weight: bold;
  background-color: #0044A8;
  height: 40px;
  line-height: 40px;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

ul.part-finder-category-selector-list li::before {
  content:"\A";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  background-color: white;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  margin-right: 10px;
  border: 5px solid white;
  transition: background-color 0.25s ease-in-out;
}

ul.part-finder-category-selector-list li.active::before {
  background-color: #0044A8;
}

ul.part-finder-category-selector-list li:first-child {
  padding-left: 40px;
}

ul.part-finder-category-selector-list li:first-child::before {
  left: 10px;
}

ul.part-finder-category-selector-list li:not(:last-child) {
  padding-right: 20px;
}

ul.part-finder-category-selector-list li:last-child {
  padding-right: 10px;
}

@media screen and (max-width: 450px) {
  ul.part-finder-category-selector-list {
    flex-flow: column nowrap;
    margin: 0 5px;
    width: 100%;
    align-items: stretch;
  }

  ul.part-finder-category-selector-list::before,
  ul.part-finder-category-selector-list::after {
    display: none;
  }

  ul.part-finder-category-selector-list li,
  ul.part-finder-category-selector-list li:first-child,
  ul.part-finder-category-selector-list li:last-child {
    padding-left: 35px;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  
  ul.part-finder-category-selector-list li::before,
  ul.part-finder-category-selector-list li:first-child::before,
  ul.part-finder-category-selector-list li:last-child::before {
    left: 10px;
  }
}
