[data-toggle].collapsed {
  display: inherit;
}

.collection_header {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0;
  margin: 0 1rem;
  border-bottom: 1px solid #C4C4C4;
  width: 100%;
}

.collection_header > div:first-child {
  padding-left: 0;
}

.collection_header > div:last-child {
  padding-right: 0;
}

.collection_header_title {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.collection_header_title h1 {
  margin: 0;
  margin-left: 5px;
}

.collection_header_manufacturer {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.collection_header_manufacturer .oem_text {
  display: none;
  font-style: italic;
  padding-right: 1rem;
}

.collection_header_manufacturer .oem_logo {
  display: none;
}

.collection_header_manufacturer .oem_logo img {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  max-height: 63px;
}

.collection_filters_sidebar > * {
  padding: 0.75rem;
}

.collection_filters_header {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.25;
  color: #333;
  text-align: center;
}
.collection_filters_text {
  padding-bottom: 0;
}
.collection_filters_text p {
  margin: 0
}

.collection_filters_inner {
  background-color: #E8E6E7;
  border-radius: 4px;
}

.collection_filters_toggle {
  display: block;
  text-align: left;
  color: #0075AA;
  font-weight: bold;
}

.collection_filters_toggle_icon {
  float: right;
  margin: -0.428571em -0.857142em;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.collection_filters {
  padding-top: 1rem;
}

.collection_filter {
  display: block;
  padding-bottom: 1rem;
}

.collection_filter_header {
  color: #505050;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.collection_filter_options {
  background-color: #fff;
}

.collection_filter_option {
  padding: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.collection_filter_options > :first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.collection_filter_option > label {
  margin-bottom: 0;
}

.collection_filter_option input {
  display: none;
}

/* checkbox and radio inputs */
.filter_option_checkbox, .filter_option_radio {
  position: relative;
  display: inline-block;
  vertical-align: text-top;
  width: 1rem;
  height: 1rem;
  margin-right: 0.25em;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

input:checked ~ .filter_option_checkbox {
  background-color: #0075AA;
  border: 1px solid #0075AA;
}

input:checked ~ .filter_option_checkbox:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url("/includes/css/checkmark.png");
  background-size: cover;
}

.filter_option_radio {
  border-radius: 50%;
}

input:checked ~ .filter_option_radio {
  border: 1px solid #0075AA;
}

input:checked ~ .filter_option_radio:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #0075AA;
}

.collection_filter_view_more a {
  font-weight: bold;
  color: #0075AA;
}

.collection .sc-search .breakdown-search-outer {
  width: 100%;
  margin-left: 0;
  box-shadow: none;
}

.collection .sc-search .input-group {
  width: 100%;
}

.collection .sc-search .breakdown-search-inner {
  padding: 1rem 0;
  background-color: transparent;
}

.collection .sc-search .breakdown-search-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.collection .sc-search .breakdown-search-input {
  padding: 0.75rem;
  background-color: #E8E6E7;
  border-radius: 4px;
}

.collection-part-filter {
  display: none;
}

.collection-model-filter {
  display: none;
}

#partPopup .collection-part-filter {
  display: block;
}

#partPopup .collection-model-filter {
  display: block;
}

@media (min-width: 992px) {
  .collection_header {
    border: none;
    padding: 1rem 0;
    margin: 1rem 0;
  }
  .collection_header > div:first-child {
    padding-left: 1rem;
  }
  .collection_header > div:last-child {
    padding-right: 1rem;
  }
  .collection_header_manufacturer .oem_text {
    display: initial;
  }
  .collection_header_manufacturer .oem_logo {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .collection_filters_sidebar {
    background-color: #E8E6E7;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  .collection_filters_header {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1;
    padding-bottom: 0;
  }
  .collection_filters_toggle, .collection_filters_toggle.collapsed {
    display: none;
  }
  .collection_filters.collapse {
    display: block;
  }
  .collection .sc-search {
    margin-bottom: 0;
  }
  .collection .sc-search .input-group {
    width: 100%;
  }
  .collection .sc-search .breakdown-search-inner {
    padding: 1rem 2rem;
    background-color: #E8E6E7;
  }
  .collection .sc-search .breakdown-search-header {
    text-align: left;
    line-height: 1;
  }
  .collection .sc-search .breakdown-search-input {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
  .modal-filters {
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Modal filter questions */
@media (min-width: 576px) {
  #collection-filter-modal .modal-dialog {
    max-width: 700px;
    min-width: 500px;
  }
}


#collection-filter-modal .modal-dialog-centered {
  height: auto;
}

#collection-filter-modal .modal-content {
  border: none;
  border-radius: 12px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

#collection-filter-modal .modal-header {
  padding: 1.5rem 1rem;
  padding-bottom: 1rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#collection-filter-modal .modal-header .close {
  margin-top: -1.5rem;
}

#collection-filter-modal .modal-title {
  line-height: 1;
}

#collection-filter-modal .modal-body {
  padding: 1.5rem 1.5rem;
}

#collection-filter-modal .modal-filter-question {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1.5rem;
}

#collection-filter-modal .modal-filter-options {
  padding-bottom: 1rem;
}

#collection-filter-modal .modal-filter-submit {
  text-align: center;
  width: 100%;
}

#collection-filter-modal .modal-filter-submit .btn-alternative {
}

@media (min-width: 62rem) {
  #collection-filter-modal .modal-body {
    padding: 2.5rem;
  }
  #collection-filter-modal .modal-filters {
    padding-bottom: 2.5rem;
  }
  #collection-filter-modal .modal-filters > div {
    padding-bottom: 0;
  }
  #collection-filter-modal .modal-filter-question {
    text-align: left;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
}

.collection-filter-suggestion > .col-12 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem 0;
}

.collection-filter-suggestion-title {
  font-size: 1rem;
  font-weight: bold;
}

.collection-filter-suggestion-part > div {
  padding: 0 0.5rem;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.collection-filter-suggestion-part [class^=list-part] {
  display: block;
}

.collection-filter-suggestion-cart {
  width: 100%;
}

.collection-suggestion-description-part-number > span {
  display: inline-block;
}

.modal-collection-search {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-collection-search-copy {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.filter_modal #header_search > div > span {
  top: 1px;
}

.btn-model-fit {
  width: 90%;
  margin-top: 1rem;
}

#collection_v2 h3.collection-subhead {
  background: #E6E6E6;
  font-weight: bold;
  padding: .5em 1em;
  border-radius: 10px;
  font-size: 1.5rem;
  width: 100%;
}

#collection_v2 #breakThumbBox {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
#collection_v2 #breakThumbBox::-webkit-scrollbar {
  display: none;
}
#collection_v2 .popular-part-scroller {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 964px;
}
@media(max-width: 992px) {
  #collection_v2 .popular-part-scroller {
    overflow-y: hidden;
    overflow-x: scroll;
    max-height: auto;
  }
  #collection_v2 .popular-part-scroller::-webkit-scrollbar {
    display: none;
  }
}
#collection_v2 .popular-part-scroller .product-row {
  background: none transparent !important;
  border: 1px solid #DCDCDC;
  padding: 6px;
  font-size: .6rem;
  width: 100%;
}

#collection_v2 .diagram-nav {
  display: none;
}
#collection_v2 span.list-part-avail {
  display: block;
}
#collection_v2 .collection-suggestion-description-part-number {
  margin-bottom: 0;
}

#collection-mobile-tabs {
  border-bottom: 2px solid #C8C8C8;

}

#collection-mobile-tabs > a {
  display: block;
  width: 50%;
  text-align: center;
  background: #808080;
  color: white;
  font-size: 1.2em;
  color: white;
  font-weight: bold;
  padding: .4em 0;
  cursor: pointer;
}

#collection-mobile-tabs > a:active,
#collection-mobile-tabs > a:hover {
  text-decoration: none;
}

#collection-mobile-tabs > a.active-tab {
  color: black;
  background: white;
}

#collection_v2 .popular_parts .list-part-name a {
  text-decoration: none;
  font-weight: normal !important;
}

#collection_v2 .popular_parts .list-part-number {
  display: block !important;
  font-weight: normal !important;
}
#collection_v2  .popular_parts .list-part-number b {
  display: inline !important;
  font-weight: normal !important;
  white-space: nowrap;
}
#collection_v2 .popular_parts .list-part-number span {
  white-space: nowrap;
}
#collection_v2 .popular_parts .part-cost-mobile-new {
  display: none !important;
}
#collection_v2 .popular_parts .list-part-avail-small {
  display: none;
}
#collection_v2 .popular_parts .product_list_add_button {
  display: none;
}
#collection_v2 .popular_parts .checkout_v2 .product_list_add_button {
  display: inline-block;
  color: #0CA789;
  font-size: 0.9em;
  background: white;
  border: 1px solid #85D3C4;
  border-radius: 2px;
  white-space: nowrap;
  padding: .4em 0;
  text-align: center;
  width: 100%;
}
#collection_v2 .popular_parts .checkout_v2 {
  display: flex !important;
}
#collection_v2 .imgAlias {
  height: auto;
}
#collection_v2 .breakdown_section {
  border: 0 none;
}
#collection_v2 .popular_parts .list-part-avail {
  display: none;
}
.modal-body .btn-v2{
  display: none;
}
.arrowback, .arrowforward {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 14px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  right: -16px;
  bottom: 50%;
  cursor: pointer;
}
.arrowback {
  border-width: 15px 14px 15px 0;
  border-color: transparent #000000 transparent transparent;
  left: -16px;
}
.popular_parts .arrowback {
  left: 0;
}
.popular_parts .arrowforward {
  right: 0;
}
#collection_v2 .popular-part-scroller .legacy-price {
  display: none;
}
@media (max-width: 576px) {
  #collection-mobile-tabs {
    margin: 0 -15px;
    width: calc(100% + 30px);
    max-width: calc(100% + 30px);
  }
}
@media (max-width: 991px) {
  #collection_v2 .collection_header {
    border: 0px none;
  }
}
@media (min-width: 992px) {
  .arrowback {
    left: -18px;
  }
  .arrowforward {
    right: -18px;
  }
  #collection_v2 .popular-part-scroller {
    flex-wrap: wrap;
  }
  #collection_v2 .popular-part-scroller .product-row {
    border: 0 none;
    font-size: 1rem;
  }
  #collection_v2 .popular_parts .part-img-col {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    width: 41.666667%;
    max-width: 41.666667%;
  }
  #collection_v2 .popular_parts .part_txt_container {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    width: 58.333333%;
    max-width: 58.333333%;
    font-size: 0.8em;
  }

  #collection_v2 .popular_parts .part_txt_container a,
  #collection_v2 .popular_parts .part_txt_container b,
  #collection_v2 .popular_parts .part_txt_container span {
    font-weight: bold !important;
  }
}

@media (min-width: 576px) {
  .btn-model-fit {
    margin-top: 0;
    width: auto;
  }
}

.collection #multiDiagramZone {
  margin-top: 1rem;
}
