#message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #3f98f4;
  border-radius: 5px;
  box-shadow: 0 4px 5px rgb(0 0 0 / 14%), 0 1px 10px rgb(0 0 0 / 12%), 0 2px 4px rgb(0 0 0 / 20%);
  text-align: center;
  z-index: 20000;
  max-width: 300px;
}

#fab {
  display: none;
  background-color: #3f98f4;
  padding: 10px 20px;
}

#close {
  vertical-align:top;
}

.icon-section {
  width: 100%;
  display: flex;
  justify-content: end;
}

.message-body {
  font-family: Montserrat,sans-serif;
  padding: 30px 30px;
  color: #ffffff;
  text-align: center;
}

.description {
  color: white;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

#button-message {
  background-color: #3f98f4;
  margin-bottom: 10px;
  padding: 10px 20px;
  box-shadow: 0 0 20px -5px white;
}

@media screen and (max-width:400px) {
  .description {
    font-size: 18px;
    width: 100%;
  }
  .title {
    font-size: small;
  }
  #button-message {
    font-size: 11px;
    padding: 5px 10px;
  }
  .message-body {
    padding: 20px;
  }
  #fab {
    font-size: 11px;
    padding: 5px 10px;
  }
  #message {
    width: 75%;
  }
}