.sendMessageWindowParrent {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  z-index: 99999;
  overflow-y: auto;
  overflow-x: hidden;
}

.windowForScrollingInphone {
  width: 100%;
  height: 150vh;
  margin-top: 50px;
  margin-bottom: 50px;
}

.sendMessageWindow {
  position: relative;
  width: 500px;
  height: auto;
  background-color: #fff;
  z-index: 9999;
  margin-left: 50%;
  transform: translateX(-50%);
  top: 100px;
  border-radius: 5px;
  display: block;
  z-index: 99999;
  box-shadow: 0px 0px 10px 4px #00000025;
}

.closeMessageWindow {
  width: 40px;
  height: 40px;
  background-color: #c7c7c78e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -20px;
  top: -20px;
  cursor: pointer;
}

.sendMessageTitle {
  font-size: 18px;
  padding-top: 30px;
  padding-left: 5%;
  color: #444;
}

.inputSendMessage {
  width: 90%;
  height: 50px;
  margin-left: 5%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  background-color: #edeff2;
  overflow: hidden;
  border: 0;
}

.inputSendMessage > div {
  width: 10%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inputSendMessage > div > img {
  width: 35px;
  margin-left: 10px;
}

.inputSendMessage > input {
  width: 90%;
  height: 50px;
  background-color: #edeff2;
  margin: 0;
  font-size: 20px;
  color: #333 !important;
  margin-left: 10px;

  border: 0;
}

.textareaLabel {
  font-size: 16px;
  color: #555;
  padding-left: 5%;

  padding-top: 20px;
  display: block;
}

.message {
  max-width: 90%;
  min-width: 90%;
  min-height: 50px;
  max-height: 250px;
  height: 80px;
  background-color: #edeff2;
  margin: 0;
  font-size: 18px;
  color: #333;
  margin-left: 10px;

  border: 0;
  border-radius: 5px;
  margin-left: 5%;
  padding: 10px;
}

.sendMessageButton {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: blue;
  color: #fff;
  border-radius: 0px 0px 5px 5px;
  margin-top: 50px;
  font-size: 20px;
  cursor: pointer;
  border: 0;
}

@media (max-width: 550px) {
  .windowForScrollingInphone {
    width: 100%;
    height: auto;
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .sendMessageWindow {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    border-radius: 0px;
  }
  .closeMessageWindow {
    border-radius: 5px;
    right: 5%;
    top: 10px;
  }
  .sendMessageTitle {
    padding-top: 80px;
  }
  .inputSendMessage {
    height: 40px;
  }
  .inputSendMessage > div > img {
    width: 30px;
    margin-left: 10px;
  }
  .inputSendMessage > input {
    height: 40px;
    font-size: 18px;
  }
  .textareaLabel {
    font-size: 14px;
    padding-bottom: 4px;
  }
  .message {
    font-size: 16px;
  }
  .sendMessageButton {
    width: 90%;
    height: 40px;
    border-radius: 5px;
    margin-top: 50px;
    font-size: 18px;
    margin-left: 5%;
  }
}

.linksBody {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 9999999;
  display: block;
}

.windowJustForEmailLink {
  width: 400px;
  height: 80px;
  border-radius: 5px;
  margin-left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 2px #eee solid;
  position: fixed;
  top: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 99999;
}

.windowJustForEmailLink > img:first-of-type {
  width: 50px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.windowJustForEmailLink > img:nth-of-type(2) {
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-bottom: 16px;
  margin-left: 15px;
}

.windowJustForEmailLink > input {
  font-size: 16px;
  color: #333;
  margin-bottom: 13px;
  margin-left: 10px;
  border: 0;
  background-color: #fff;
  user-select: all;

  width: 300px;
}

.closeLinkWindow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eee;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
}
