/* colors */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 5px;
}

.brand-box {
  width: 12.5vw;
  height: 5vw;
  background-color: white;
  text-align: center;
  border: 1px solid #dee2e6;
  padding: 0.5vw;
}

.btn-alphabet {
  border: 1px solid #dee2e6;
  background-color: #f1f1f1;
  color: #8c8c8c;
  min-width: 1.5vw;
  height: 1.5vw;
  text-align: center;
  font-size: 0.8vw;
  font-weight: bold;
  line-height: 1.5vw;
  margin-bottom: 0.5vw;
  border-radius: 0.2vw;
  padding: 0 0.2vw;
  cursor: pointer;
}

.btn-alphabet:hover {
  background-color: #b40024;
  color: white;
}

.search-dropdown {
  display: flex;
  width: 24vw;
  height: 3vw;
  background-color: white;
  border: 1px solid #E1E1E1;
}

.search-dropdown > div {
  text-align: center;
  display: block;
  font-size: 1.1vw;
  font-weight: bold;
  width: 50%;
  line-height: 3vw;
}

.search-dropdown > select {
  width: 30%;
  margin-right: 10%;
  display: block;
  font-weight: bold;
  font-size: 0.9vw;
  border: none;
  background-color: transparent;
  color: #a1a1a1;
}

.search-dropdown > select > optgroup {
  text-align: right;
  direction: rtl;
  font-size: 0.8vw;
  font-weight: normal;
  background-color: white;
  line-height: 2vw;
  color: #212529;
}

.search-dropdown > select > optgroup > option {
  text-align: right;
  direction: rtl;
  font-size: 0.8vw;
  font-weight: normal;
  background-color: white;
  line-height: 2vw;
  color: #212529;
}