/** Shopify CDN: Minification failed

Line 334:19 The "-" operator only works if there is whitespace on both sides
Line 410:19 The "-" operator only works if there is whitespace on both sides
Line 452:20 The "-" operator only works if there is whitespace on both sides

**/
/* remove x pseudobutton from search input */
.mm-finder-combo-input::-ms-clear { display: none; width: 0; height: 0; }
.mm-finder-combo-input::-ms-reveal { display: none; width: 0; height: 0; }
.mm-finder-combo-input::-webkit-search-decoration,
.mm-finder-combo-input::-webkit-search-cancel-button,
.mm-finder-combo-input::-webkit-search-results-button,
.mm-finder-combo-input::-webkit-search-results-decoration { display: none; }

.mm-finder-highlighted{
  background-color:var(--mm-finder-mouse-highlight);
}

.mm-finder-previous{
  color: var(--mm-finder-select-text-color);
  background-color:var(--mm-finder-select-highlight);;
}

.mm-finder-no-results{
  pointer-events: none;
}

.mm-finder-input-container {
  position: relative;
  width: 100%;
}

.mm-finder-input-container:last-child {
  margin-right: 0;
}
.mm-finder-dropdown-list{
  display: none;
  margin-top: 0;
  background:white;
  z-index:2;
  position:absolute;
  top: 100%;
  overflow-y: auto;
  max-height:30rem;
  width: 100%;
  list-style-type: none;
  padding-left: 0;
  box-sizing: border-box;
  cursor: pointer;
  border: solid rgb(204, 204, 204);
  border-width: 1px;
  left: 0;
  scroll-behavior: smooth;
  border-radius:0.25rem;
  box-shadow: .5px 3px 5px #898989;
}

#mm-finder-heading-container {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mm-finder-images-left, .mm-finder-images-right {
  display: flex;
  flex-direction: row;
  align-items: center; 
  max-width: calc(100% - 5rem);
  margin: 0 5rem
}

.mm-finder-images-left img, .mm-finder-images-right img {
 max-width: 80px;
  height: auto; 
  margin: 0 10px;
  transform: translateY(-10%);
}

.mm-finder-text{
  flex: 2;
  text-align: center;
  transform: translateY(-20%);
  padding: 0 2.5rem;
  width:80rem;
}

#mm-finder-title{
  margin-bottom:0;
  font-weight: 900;
}

#mm-finder-subheading{
  font-weight: lighter;
  margin-top:0;
  margin-bottom: 0;
}

.mm-finder-banner {
  position: relative;
  width: 100vw; 
  left: 50%; 
  right: 50%; 
  margin-left: -50vw; 
  margin-right: -50vw;
  padding-top: calc(var(--mm-finder-padding-above) * 1px);
  padding-bottom: calc(var(--mm-finder-padding-below) * 1px);
  margin-bottom: calc(var(--mm-finder-margin-bottom) * 1px);
  margin-top: calc(var(--mm-finder-margin-top) * 1px);
}

.mm-finder-container {
  font-family: Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 12rem;
  margin: 0;
  padding: 0.625rem; 
}

.mm-finder-row-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem; 
  flex-wrap: nowrap; 
  width: calc(100% - 2.5rem );
  padding: 1.25rem auto;
  position: relative;
}

.mm-finder-input-row {
  display:flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  gap:1 rem;
  width:100%
}

.mm-finder-row-container > :nth-child(4) {
  flex-grow: 0;
}

#mm-finder-search-button { 
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  height: 3rem;
  text-align: center;
  min-height: 50px; 
  width:10rem;
  font-weight:700;
  font-size:15px;
}

#mm-finder-search-button svg {
  fill: white;
  width: 20px; 
  height: 20px; 
  margin-left: 0.5rem;
  flex-shrink: 0;
}

#mm-finder-search-button span {
  display: flex;
  align-items: center;
  justify-content: center;
   flex-grow: 1; 
}

#mm-finder-search-button:hover {
  opacity:.75;
}

#mm-finder-search-button:disabled {
  opacity: 0.50; 
  pointer-events: none; 
  cursor: not-allowed; 
}

.mm-finder-combo-input {
  border-radius:0.25rem;
  width: 100%;
  padding-bottom: 0;
  padding-left:18px;
  margin-bottom: 0;
  height: 3rem;
  border: solid rgb(204, 204, 204);
  border-width: 1px;
  min-height: 50px; 
  font-size:1.7rem;
}

.mm-finder-combo-input:focus{
  outline: none;
  border: solid var(--mm-finder-focus-border);
}

.mm-finder-combo-input:disabled{
  background-color: rgb(225, 225, 225);
}

.mm-finder-dropdown-button {
  position: absolute;
  right:11.2px;
  top: 26px;
  transform: translateY(-63%);
  z-index: 1;
  opacity: 50%;
}

.mm-finder-dropdown-button.mm-finder-active{
  opacity:1;
}

.mm-finder-dropdown-button.mm-finder-disabled{
  opacity: 30%;
  pointer-events:none;
}

.mm-finder-dropdown-button:hover{
  opacity: 100%;
}

.mm-finder-dropdown-button, .mm-finder-separator {
  margin: 0; 
  align-self: center; 
}


.mm-finder-dropdown-list > li{
  display: flex; 
  align-items: center; 
  padding-bottom: .5rem;
  padding-top: .25rem;
  min-height: 40px; 
  padding-left:18px;
  font-size:1.7rem;
}

.mm-finder-loading-indicator {
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  position: absolute; 
  right: 5rem;
  top: 50%; 
  transform: translateY(-75%);
  z-index: 10;
  pointer-events: none; 
}

.mm-finder-loading-indicator span {
  border-radius: 1em;
  margin: 0;
  display: inline-block;
  background-color: rgb(204, 204, 204); 
  height: .5rem;
  width: .5rem;
}

.mm-finder-dot-1 {
  animation: mm-finder-dot 1s infinite ease-in-out both;
}

.mm-finder-dot-2 {
  animation: mm-finder-dot 1s infinite ease-in-out both;
  animation-delay: 0.1s;
}

.mm-finder-dot-3 {
  animation: mm-finder-dot 1s infinite ease-in-out both;
  animation-delay: 0.3s;
}

.mm-finder-separator {
  position: absolute;
  right: 3.7rem; 
  top: 50%;
  transform: translateY(-55%);
  height: 2.5rem; 
  width: 1px;
  background-color: rgb(230, 230, 230);
  margin-left: 0.5rem; 
}

@keyframes mm-finder-dot {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}


/* Media Queries */

@media only screen and (max-width: 575px) {

  .mm-finder-dropdown-list > li{
    padding-bottom: .5rem;
    padding-top:.25rem;
  }
  
  .mm-finder-images-left, .mm-finder-images-right {
    display:none;
  }
  
  .mm-finder-combo-input {
    width: 100%; 
    height: 3rem;
  }

  .mm-finder-dropdown-button {
    width: 2rem;
    height: 2rem;
    right:0.5;
    transform: translateY(-60%);
  }

  .mm-finder-row-container {
    gap: 1rem; 
    flex-wrap: wrap; 
    width:calc(100%-5rem);
    margin: 0 auto;
  }

  #mm-finder-search-button {
    width: 100%; 
    padding: 1.25rem; 
  }

  #mm-finder-heading-container {
    font-size: 2.5rem; 
    margin-bottom: 0.5rem; 
    align-content:center;
    align-items:center;
  }

  /* .mm-finder-dropdown-list {
    max-height: 8rem; 
  } */

  .mm-finder-container {
    height: auto; 
  }

  .mm-finder-text {
    font-size: 2.5rem;  
    padding: 0 2.5rem;
    max-width:80vw;
  }
  
  .mm-finder-images{
   display: none; 
  }

  .mm-finder-dropdown-button, .mm-finder-separator {
    margin: 0; 
    align-self: center; 
  }

  .mm-finder-dropdown-button {
    width: 2rem; 
    height: 2rem; 
  }
  
  .mm-finder-input-row {
    flex-direction: column; 
    align-items: stretch; 
    max-width: 96%;
  }
  
}



@media only screen and (min-width: 576px) and (max-width: 640px) {

  .mm-finder-input-row {
    flex-direction: row;
    justify-content: flex-start; 
  }
  
  .mm-finder-input-row {
    flex-direction: column; 
    align-items: stretch; 
    max-width: 96%;
  }

 .mm-finder-dropdown-button {
    top: 28px;
    margin-left: 8px;
    transform:translateY(-60%);
  }
  
  .mm-finder-row-container {
    gap: 1rem; 
    flex-wrap: wrap;
    width:calc(100%-5rem);
    margin: 0 auto;
  }

  #mm-finder-search-button {
    width: 100%; 
    padding: 1.3rem; 
  }

  .mm-finder-container {
    height: auto; 
  }

  .mm-finder-images-disappearing{
    display: none;
  }
  
  .mm-finder-images-left, .mm-finder-images-right {
    padding: 0;
    margin: 0;
  }

    .mm-finder-images-left img, .mm-finder-images-right img {
      margin:0;
    }
  #mm-finder-heading-container{
    max-width:517px;
  }
  
  .mm-finder-text{
    width:7rem;
    padding: 0;
    font-size:2.25rem;
  }
  
}

@media only screen and (min-width: 641px) {
  .mm-finder-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100%-3rem);
    height: auto;
    gap: 1.5rem;
  }

 .mm-finder-dropdown-button {
   top:30px;
 }
  
  .mm-finder-row-container{
    margin: 0 auto;
  }
  
  .mm-finder-images-left, .mm-finder-images-right {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0;
  }
  
  .mm-finder-images-left img, .mm-finder-images-right img {
    max-width: 100px; 
    height: auto;
  }

  .mm-finder-text {
    flex: 1;
    text-align: center;
    margin: 0 auto;
    font-size: 2.5rem;
    width:22rem;
    padding: 0;
  }
  
  .mm-finder-combo-input{
    width: 22vw;
  }
  
  #mm-finder-search-button{
    padding-left:1.25rem;
    padding-right:1.25rem;
    bottom: 1px;
  }
  
}

@media only screen and (min-width: 768px) {
  .mm-finder-images-left img, .mm-finder-images-right img {
    max-width: 120px; 
  }

  .mm-finder-images-left, .mm-finder-images-right{
    padding: 0, 25px;
    margin: 0;
    
  }  
  
  #mm-finder-search-button{
    transform:translateY(-8%)
  }
  
  .mm-finder-combo-input{
    width: 24vw;  
    transform: translateY(-10%);
  }

 .mm-finder-dropdown-button {
   top:24px;
 }
  
  .mm-finder-container{
    height: auto;
  }

  .mm-finder-text {
    width:30rem;
    padding: 0;
  }

}

@media only screen and (max-width: 960px){
  .mm-finder-images-disappearing{
    display: none;
  }

  .mm-finder-text {
    width:40rem;
    padding: 0;
  }
  
}

@media only screen and (min-width: 961px){
  .mm-finder-combo-input {
    width: 26vw;
  }
  
  .mm-finder-text {
    font-size: 3rem;
    padding: 0 5rem;
    width:60rem;
  }

}

@media only screen and (min-width: 1200px) {
  .mm-finder-images-left img, .mm-finder-images-right img {
    max-width: 100%;
  }
  
  .mm-finder-combo-input {
  width: 28vw;
  max-width: 55rem;
}
  
  .mm-finder-text {
    font-size: 3.5rem;
    padding: 0 7.5rem;
    width:70rem;
  }

  .mm-finder-container {
    height: auto;
  }

 .mm-finder-dropdown-button {
   top:26px;
 }
  
}

@media only screen and (max-width: 1400px) {
    .mm-finder-images-disappearing{
    display: none;      
  }
  
}