@charset "UTF-8";

/* WIZARD FILTER STYLES */

#wizardcta {
  position: fixed;
  z-index: 999999;
  bottom: 0px;
  right: 0px;
  display: block;
  background-color: #F26722;
  color: #FFFFFF;
  height: 110px;
  width: 200px;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1em;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#wizardcta.closed {
  height: 30px;
  padding-top: 30px;
  padding-bottom: 0px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wizard-cta-title {
  text-transform: uppercase;
  font-weight: 900;
}

.wizard-cta-text {
  font-size: 0.85rem;
}

.wizard-cta-hide-show {
  background-color: transparent;
  border: 0px solid transparent;
  color: #FFFFFF;
  position: absolute;
  top: 3px;
  left: 3px;
  display: block;
  height: 20px;
  width: 20px;
}

#wizardcta.closed .wizard-cta-hide-show i {
  transform: rotate(180deg);
}

@media(min-width:992px) {
  #wizardcta {
    height: 150px;
    width: 300px;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .wizard-cta-title {
    font-size: 1.25rem;
  }
}

.global-wizard-btn {
  background-color: #FFFFFF !important;
  color: #F26722 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  letter-spacing: initial !important;
  font-size: 1rem;
  margin-bottom: 0px !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  padding-top: 10px !important;
  padding-bottom: 5px !important;
  padding-left: 10px !important;
  padding-right: 10px !important; 
}

#wizardfilter {
  display: none;
  position: fixed;
  z-index: 99999999;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(22,22,22,0.95);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.wizard-active #wizardfilter {
  display: block;
}

.loading-results {
  position: fixed;
  z-index: 99999;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(22,22,22,0.75);
  color: #FFFFFF;
  font-size: 4rem;
}

.loading-results .loading-spinner {
  position: absolute;
  display: block;
  height: 64px;
  width: 64px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading-results.d-block .loading-spinner i {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.help-cta {
  display: block;
  position: absolute;
  bottom: 30px;
  left: 0px;
  right: initial;
  width: 390px;
  text-align: left;
  font-weight: bold;
  color: #FFFFFF;
  padding-left: 15px;
  padding-right: 15px;
}

.help-cta .disclaimer-text {
  font-size: 10px;
  color: #777777;
}

@media (min-width: 1200px) {
  .help-cta {
    right: 8.333333%;
    bottom: 80px;
    text-align: right;
    left: initial;
  }
}

.wizard-filters-close {
  color: #FFFFFF;
  background-color: transparent;
  border: 0px solid transparent;
  padding: 0px;
  margin: 0px;
  font-size: 4rem;
  font-weight: bold;
  position: fixed;
  right: 3rem;
  top: 2rem;
  line-height: 3.5rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
}

@media (max-width: 1199px){
  .wizard-filters-close {
    right: 1rem;
  }
}

@media(max-width:767px){
  .wizard-filters-close {
    top: 0rem;
    font-size: 3rem;
  }
}

.wizard-clear-btn {
  background-color: transparent;
  border: 0px solid transparent;
  color: #FFFFFF;
  position: absolute;
  right: 15px;
  top: 25px;
}

@media (max-width:767px){
  .wizard-clear-btn {
    top: 19px;
  }
}

.wizard-clear-btn-txt {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.wizard-filters-search-container {
  margin-top: 5rem;
  position: fixed;
}

@media (max-width:767px){
  .wizard-filters-search-container {
    margin-top: 3rem;
  }
}

.wizard-brand-search {
  background-color: transparent;
  color: #FFFFFF;
  border: 0px solid transparent;
  border-bottom: 1px solid #FFFFFF;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.55);
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline: 0px solid transparent;
}

.wizard-shp-search {
  background-color: transparent;
  text-wrap: nowrap;
  color: #FFFFFF;
  border: 0px solid transparent;
  border-bottom: 1px solid #FFFFFF;
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  width: 100%;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.55);
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline: 0px solid transparent;
}

@media (max-width:767px){
  .wizard-brand-search {
    font-size: 1.5rem;
    padding-left: 0.5rem;
    padding-right: 5rem;
  }
  .wizard-shp-search {
    overflow-x: scroll;
    width: 80%;
  }
}

.wizard-lists-container {
  position: fixed;
  left: 0px;
  right: 0px;
  bottom: 80px;
  top: 12rem;
  overflow-y: scroll;
}

@media (max-width: 1200px) {
  .wizard-lists-container {
    bottom: 150px;
  }
}

@media (max-width:767px){
  .wizard-lists-container {
    top: 9rem;
  }
}

/*.wizard-filters-container {
  position: absolute;
  top: 12rem;
}*/

.featured-filter {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 0px solid transparent;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
  margin-left: 5rem;
  overflow: hidden;
}

@media (max-width: 1679px){
  .featured-filter {
    width: 148px;
    height: 148px;
    margin-left: 3rem;
  }
}

@media (max-width: 1475px){
  .featured-filter {
    width: 128px;
    height: 128px;
    margin-left: 1.75rem;
  }
}

@media (max-width: 767px){
  .featured-filter {
    width: 80px;
    height: 80px;
    padding: 10px;
    margin-left: 1.4rem;
  }
}

/*@media (max-width: 991px){*/
  .wizard-featured-filters {
    overflow-x: scroll;
    white-space: nowrap;
  }
/*}*/

.featured-filter:first-child {
  margin-left: 0px;
}

.wizard-filter-list {
  color: #FFFFFF;
  font-size: 1.875rem;
  font-weight: 600;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
}

@media (max-width:767px) {
  .wizard-filter-list {
    font-size: 1.25rem;
  }
}

.wizard-filter-list ul {
  list-style: none;
  padding-left: 0px;
}

.wizard-filter-list ul li {
  padding-bottom: 0.5rem;
}

.wizard-shp-filter-list ul.inline-list li {
  display: inline-block;
  margin-right: 3rem;
}

@media (max-width:767px){
  .wizard-shp-filter-list ul.inline-list li {
    margin-right: 1.5rem;
  }
}

.filter, .shp-toggle {
  cursor: pointer;
}

.shp-filter {
  cursor: pointer;
}

.shp-filter.selected {
  text-decoration: underline;
}

.wizard-model-list-container {
  color: #FFFFFF;
  font-size: 1.875rem;
  font-weight: 600;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
}

@media (max-width:767px){
  .wizard-model-list-container {
    font-size: 1.25rem;
  }
}

.wizard-model-list-container ul {
  list-style: none;
  padding-left: 0px;
}

.wizard-model-list-container ul li {
  padding-bottom: 0.5rem;
}

.model-item a {
  color: #FFFFFF;
  text-decoration: none;
}

.instructions {
  font-size: 18px;
}

.section-title {
  text-transform: uppercase;
  font-size: 16px;
  color: #999999;
}

.best-match a {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.wizard-shp-filters-search .base {
  display: block;
  color: #FFFFFF;
  font-size: 1.875rem;
  font-weight: 600;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
}

.wizard-shp-filters-search {
  color: #FFFFFF;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.55);
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  outline: 0px solid transparent;
}

.wizard-shp-filters-search .btn {
  margin-top: 5px;
  vertical-align: text-top;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

@media (max-width:767px){
  .wizard-shp-filters-search .btn {
    line-height: 0.75em;
    margin-top: 0px;
    margin-bottom: 0.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.4rem;
  }
  .wizard-shp-filters-search .base {
    font-size: 1.2rem;
  }
  .wizard-shp-filters-search .wizard-clear-btn {
    top: 2px;
  }
}

.wizard-shp-filters-search .btn.disabled {
  background-color: rgba(91, 91, 91, 0.75);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(91, 91, 91, 0.75);
}

.selection-container {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: text-top;
}

@media (max-width:767px){
  .selection-container {
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: text-top;
  }
}

.selection-label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  color: #999999;
}

.selection {
  display: block;
  font-weight: 600;
  font-size: 16px;
  padding: 4px 4px 0px 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.25);
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.55);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.55);
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.55);
}

.selection.filled {
  display: block;
  font-weight: 600;
  padding: 4px 4px 0px 4px;
  border: 1px solid #FFFFFF;
  background-color: rgba(255, 255, 255, 0.25);
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.55);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.55);
  box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.55);
}

@media (max-width:767px){
  .selection {
    font-size: 13px;
  }
}

.wizard-lists-container.shp {
  top: 15rem;
}



