.orderpage .minecraft-order-location-block {
  margin-top: 28px;
}

.orderpage .minecraft-order-location-block > p {
  margin-top: 4px;
}

.orderpage .minecraft-order-location-list {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.orderpage .minecraft-order-location-option {
  position: relative;
  min-height: 84px;
  padding: 17px 17px 17px 49px;
  color: #aeb7d5;
  font-family: inherit;
  text-align: left;
  background: #1d2237;
  border: 1px solid #3b435e;
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.orderpage .minecraft-order-location-option:hover {
  border-color: #6070a6;
  transform: translateY(-1px);
}

.orderpage .minecraft-order-location-option.checked {
  background: rgba(43, 73, 255, 0.12);
  border-color: #5870ff;
  box-shadow: inset 0 0 0 1px rgba(88, 112, 255, 0.28);
}

.orderpage .minecraft-order-location-option strong,
.orderpage .minecraft-order-location-option small {
  display: block;
}

.orderpage .minecraft-order-location-option strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
}

.orderpage .minecraft-order-location-option .location-dot {
  position: absolute;
  top: 26px;
  left: 18px;
  width: 17px;
  height: 17px;
  border: 2px solid #59627f;
  border-radius: 50%;
}

.orderpage .minecraft-order-location-option.checked .location-dot {
  background: #fff;
  border: 5px solid #2b49ff;
}

@media only screen and (max-width: 767px) {
  .orderpage .minecraft-order-location-list {
    grid-template-columns: 1fr;
  }
}
