/*

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 6px;
  position: relative;
  padding: 20px;
}

.rs-domains__close {
  position: absolute;
  top: 10px; right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.rs-domains__title {
  margin-bottom: 15px;
  font-size: 20px;
}

.col-xs-4 {
  width: 100%;
  max-width: 33.33%;
  float: left;
  box-sizing: border-box;
  padding: 5px;
}

.rs-domains__city-name {
  display: block;
  padding: 6px 0;
  color: #007bff;
  text-decoration: none;
}

.rs-domains__city-name:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .col-xs-4 {
    max-width: 100%;
  }
}







*/