.block-message {
  z-index: 1011;
  position: fixed;
  padding: 20px;
  margin: 0;
  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, 1);
  z-index: 1000;
}

.message-text {
  padding: 0px 20px;
}

.block-message>div:not(:last-child) {
  padding-bottom: 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;
}

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

.block-message .custom-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-message .custom-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
}

.block-message .custom-link.even {
  background-color: #f0f0f0;
}

.block-message .custom-link img {
  width: 130px;
  height: 48px;
  object-fit: cover;
  margin-right: 10px;
}

.block-message .custom-link a {
  margin-left: auto;
}

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

  .block-message .custom-link img {
    width: 96px;
    height: 32px;
  }
}

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