#languageModal {

    display: flex;

    justify-content: center;

    align-items: center;

}



#languageModal div {

    background: white;

    border-radius: 5px;

    box-shadow: 0 0 15px rgba(0,0,0,0.2);

    padding: 20px;

    text-align: center;

	display: flex;

  flex-direction: column;

  gap: 10px;

  align-items: center;

}

#languageModal .map-image {

  width: 265px;

  margin-bottom: 21px;
  
  margin-top: 16px

}

.confirm-btn {
  padding: 10px 10px;
  width: 90%;
  background: #35bd8a;
  border: none;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}
.confirm-btn:hover {
  background: #39b7ff;

}
.link-btn {

  padding: 4px 10px;

  background: transparent;

  border: none;

  border-bottom: 1px solid #000 !important;
  cursor: pointer;
transition: all 0.4s ease;
 }
.link-btn:hover {
  border-color: #39b7ff !important;
  color: #39b7ff;
}