.contact-methods-window {
  background: white;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  max-width: fit-content;
  min-height: 50%;
  padding: 0 0.625rem 0.625rem 0.625rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-methods-window .top-bar {
  display: flex;
  gap: 5px;
}

.contact-methods-window .top-bar .button:not(.close-contact-method-window) {
  border: 1px solid #d9d9d9;
  border-radius: 15px;
  padding: 0.625rem 20px;
  width: -webkit-fill-available;
}

.button.call-method {
  margin-right: 15px;
}

.contact-methods-window .button.selected {
  background: #a81b1b;
  color: white;
  border: 1px solid black;
}

.contact-methods-window h5 {
  font-size: 1.2rem;
}

.contact-methods-window .content {
  padding: 30px 20px;
}

.contact-methods-window .content p {
  margin-top: 10px;
  margin-left: 15px;
}

.contact-methods-window .bottom {
  display: flex;
  margin-top: 10px;
}

.button.email {
  border: 4px solid #fc425a;
  border-radius: 100%;
  padding: 0.8rem;
  align-self: flex-end;
  margin-left: auto;
}

.button.email img {
  width: 32px;
  display: flex;
  cursor: pointer;
}

.contact-methods-window .buttons {
  align-self: flex-end;
  margin-left: auto;
}

.contact-methods-window .buttons img {
  border-radius: 100%;
  width: 62px;
  display: flex;
  cursor: pointer;
}

button.close-contact-method-window {
  background: #111;
  color: white;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-top: 3px;
}