.block-message {
  z-index: 1011;
  position: fixed;
  padding: 15px 0 0;
  margin: 0px;
  width: 30%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
  color: rgb(0, 0, 0);
  border: 3px solid rgb(170, 170, 170);
  background-color: rgb(255, 255, 255);
  cursor: wait;
}

.block-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  z-index: 1000;
}

.block-message > div:not(:last-child) {
  padding: 0 20px;
}

.block-message .geoloc-operators-list ul {
  max-height: 270Px;
  overflow: scroll;
  padding: 15px 0 0;
  border-radius: 5px;
  list-style: none;
}

.block-message .geoloc-operators-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  padding: 10px 15px;
}

.block-message .geoloc-operators-list ul li:nth-child(even) {
  background-color: #fff;
}

.block-message .geoloc-operators-list ul li picture {
  max-width: 135px;
  width: 100%;
}

.block-message .geoloc-operators-list ul li img {
  max-width: 135px;
  width: 100%;
  max-height: 50px;
  height: auto;
  padding: 10px;
  object-fit: cover;
  border-radius: 5px;
}

.block-message .geoloc-operators-list ul li a {
  color: #000;
  cursor: pointer;
  align-items: center;
  transition: 0.5s;
}

.block-message .geoloc-operators-list ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1300px) {
  .block-message {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .block-message {
    width: 95%;
  }
}