/* STORE */

.store-dropdown-cont {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.store-dropdown {
  font-family: owners-text, sans-serif;
  font-size: 1rem;
  display: block;
  width: 30%;
  height: 55px;
  border: none;
  color: #7c7c7c;
  padding: 0 76px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color-terrain-green);
  background: url(../images/icons16.png) 32px center no-repeat;
  position: relative;
  flex: 1;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
}

option:hover {
  background-color: var(--color-message-gray);
}

option {
  color: var(--color-terrain-green);
  padding: 0 1rem;
}

.store-search-btn:disabled {
  background-color: var(--color-gravel-gray);
  color: var(--color-tread-black);
}

@media only screen and (max-width: 767px) {
  .store-dropdown {
    padding: 0 16px 0 76px;
  }
}

@media only screen and (max-width: 575px) {
  .store-dropdown-cont {
    flex-direction: column;
    align-items: center;
  }
  .store-dropdown {
    padding: 0 76px;
    width: 100%;
    flex: unset;
  }
  .store-search-btn {
    width: 100% !important;
  }
}

/* CONTACT US */

.contact-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin: 1rem auto;
  background-color: var(--color-message-gray);
  max-width: 800px;
  text-align: center;
}

.contact-details h3 {
  margin-bottom: 0.5rem;
}

.contact-details span {
  margin-bottom: 2rem;
}

/* TIRE CARE */

.sidewall {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  background-color: var(--color-terrain-green);
  color: var(--color-white);
  margin: 0 20px;
  padding: 3rem 0.5rem 0;
}

.tyre-illustration {
  position: relative;
  width: 90%;
  max-width: 745px;
}

.tyre-illustration div {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
}

.tyre-illustration .loc1 {
  left: 0.5%;
  top: 44%;
}

.tyre-illustration .loc2 {
  left: 18%;
  top: 12.5%;
}

.tyre-illustration .loc3 {
  right: 18%;
  top: 12.5%;
}

.tyre-illustration .loc4 {
  right: 0.5%;
  top: 44%;
}

@media only screen and (max-width: 767px) {
  .tyre-illustration div {
    width: 35px;
    height: 35px;
  }
}

.pop-up-info {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 102;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  display: none;
}

.pop-up-info .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
}

/* ABOUT US */

.about-us-pane-2 picture {
  max-width: 600px;
  float: left;
  margin-right: 2rem;
}

@media only screen and (max-width: 992px) {
  .about-us-pane-2 picture {
    max-width: unset;
    float: unset;
    margin-right: 0;
  }
}
