.containerMessages {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .Message__avatar img {
    width: 40px;
    margin-top: 0px;
  }
  
  .Message__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
  }
  
  .Message__wrapper__content {
    padding-left: 10px;
  }
  
  .Message__wrapper__content__message {
    background: #efeff4;
    color: #000;
    width: auto;
    margin-left: -5px;
    border-radius: 3px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 20px;
    font-size: 1.1em;
    margin-bottom: 8px;
    overflow: hidden;
    padding: 13px 20px 13px 20px;
  }
  
  .Message__wrapper__content__message:nth-child(2) {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 20px;
  }
  
  .MessageUser__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  
  .MessageUser__wrapper__content {
    margin-left: -5px;
  }
  
  .MessageUser__wrapper__content__image {
    background: #b9bcc4;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -10px;
  }
  
  .MessageUser__wrapper__content__message {
    background: #b9bcc4;
    color: #ffffff;
    margin-left: -5px;
    border-radius: 3px;
    text-align: right;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 1.1em;
    margin-bottom: 8px;
    overflow: hidden;
  }
  
  .MessageUser__wrapper__content__message > div {
    padding: 13px 20px 13px 20px;
  }
  
  .MessageUser__wrapper__content__message:nth-child(2) {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 5px;
    border-top-right-radius: 20px;
  }
  
  
  @-webkit-keyframes animation-opacity {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes animation-opacity {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @-webkit-keyframes animation-down {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes animation-down {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }


  @-webkit-keyframes animation-scale {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes animation-scale {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
    }
  }