/*
    Plugin: Stemco Hubodometer Calculator
    Author: EPIC Creative
    Developer: Andrew Von Haden
    Version: 1.0.0
*/
.center {
  text-align: center;
}

.hubo-button {
  color: #f0f0f0 !important;
  background-color: #da291c !important;
  border-radius: 25px !important;
  text-transform: uppercase;
  padding: 12px 24px !important;
  transition: all 0.3s;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1.13px;
  font-family: "Oswald", sans-serif !important;
  border: none !important;
}
.hubo-button:hover, .hubo-button:active {
  opacity: 0.8;
}
.hubo-button:disabled {
  background-color: #6b6b6b !important;
  cursor: default !important;
  opacity: 1 !important;
}

.hubo-calculator {
  padding: 40px 20px;
}
.hubo-calculator form input,
.hubo-calculator form select {
  color: rgba(57, 57, 57, 0.65);
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  border-radius: 0;
  border: 2px solid #979797;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  -ms-appearance: menulist;
}
.hubo-calculator form input:disabled,
.hubo-calculator form select:disabled {
  cursor: default;
  background-color: #f0f0f0;
}
.hubo-calculator form label {
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  font-size: 0.875em;
}
.hubo-calculator form div {
  margin-bottom: 1.5em;
}
.hubo-calculator form div:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .hubo-calculator {
    padding: 40px 80px;
  }
  .hubo-calculator form .form-element {
    display: flex;
    align-items: center;
  }
  .hubo-calculator label {
    width: 160px;
    padding-right: 20px;
    text-align: right;
    margin-bottom: 0;
  }

  #tire-selector-calc label {
    width: 120px;
  }

  #tire-finder-calc label {
    width: 180px;
  }

  #acre-finder label {
    width: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .hubo-calculator {
    padding: 40px 120px;
  }
}
#unit-finder {
  position: relative;
}

#part-type-display {
  font-size: 0.8rem;
}

@media screen and (min-width: 768px) {
  #part-type-display {
    position: absolute;
    right: 0;
    top: -30px;
  }
}
.calc-results {
  background-color: white;
  padding: 40px 20px;
}
.calc-results h3 {
  color: #002855;
  font-family: "Oswald", sans-serif;
  font-size: 2.4375em;
  text-align: center;
  margin-bottom: 1.5em;
}
.calc-results .hubodometers {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 10px;
}
.calc-results .hubodometer {
  margin-bottom: 30px;
}
.calc-results .hubodometer .hubo-img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.2em;
}
.calc-results .hubodometer img {
  max-width: 100%;
  height: 140px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.calc-results .hubodometer h4 {
  font-size: 1.0625em;
  margin-bottom: 1.5em;
  text-align: center;
  text-transform: uppercase;
  color: #002855;
  font-weight: bold;
}
.calc-results .hubodometer h5,
.calc-results .hubodometer p {
  color: #6b6b6b;
  display: block;
  line-height: 1em;
  white-space: nowrap;
  font-weight: normal;
  margin-bottom: 0;
  margin-top: 0;
}
.calc-results .hubodometer h5 {
  font-family: "Oxygen", sans-serif;
  font-size: 0.9375em;
}
.calc-results .hubodometer p {
  font-size: 1.0625em;
  text-align: right;
  text-decoration: underline;
}
.calc-results .hubodometer .hubo-numbers {
  border: 2px solid #e5e5e5;
}
.calc-results .hubodometer .hubo-numbers div {
  background-color: #f0f0f0;
  padding: 0.8em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
.calc-results .hubodometer .hubo-numbers div:first-of-type {
  margin-top: 0;
}

@media screen and (min-width: 500px) {
  .calc-results .hubodometers {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .calc-results .hubodometers {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .calc-results .hubodometers {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
  }
}

/*# sourceMappingURL=hubo-public.css.map */
