.ContainerSignature {
  overflow: scroll;
  background: #fff;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  position: relative;
  -webkit-animation: animation-up 0.8s 0s forwards;
  animation: animation-up 0.8s 0s forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ContainerSignature--active {
  -webkit-animation: animation-down 1s 0s forwards;
  animation: animation-down 1s 0s forwards;
}

.ContainerSignature__header {
  width: 100%;
  padding: 20px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #999999;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ContainerSignature__header h4 {
  font-weight: normal;
  font-size: 13px;
  margin: 0;
  padding: 0;
  color: #999999;
}

.ContainerSignature__header__back img {
  width: 6px;
  margin-right: 20px;
  margin-top: 5px;
}

.ContainerSignature__header__close {
  width: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ContainerSignature__header__close img {
  width: 10px;
}

.ContainerSignature__body {
  padding: 20px 10px 0;
}

.ContainerSignature__body__content {
  text-align: center;
  color: #000000;
  font-size: 15px;
}

.ContainerSignature__body__undo {
  /* width: 100%; */
  /* display: -webkit-box; */
  display: -ms-flexbox;
  /* display: flex; */
  /* -webkit-box-pack: end; */
  -ms-flex-pack: end;
  /* justify-content: flex-end; */
  /* margin: 25px 0 5px; */
  /* margin-top: -10px; */
  position: absolute;
  left: -10px;
  top: -10px;
  background: white;
  padding: 5px;
  border-radius: 50%;
}

.ContainerSignature__body__undo>div {
  color: #999999;
  padding-top: 40px;
  padding-bottom: 20px;
}

.ContainerSignature__body__undo>div img {
  width: 25px;
  height: 25px;
}

.ContainerSignature__body__close {
  /* width: 100%; */
  /* display: -webkit-box; */
  display: -ms-flexbox;
  /* display: flex; */
  /* -webkit-box-pack: end; */
  -ms-flex-pack: end;
  /* justify-content: flex-end; */
  /* margin: 25px 0 5px; */
  /* margin-top: -10px; */
  position: absolute;
  right: -10px;
  top: -10px;
  background: white;
  padding: 5px;
  border-radius: 50%;
}

.ContainerSignature__body__close>div {
  color: #999999;
  padding-top: 40px;
  padding-bottom: 20px;
}

.ContainerSignature__body__close>div img {
  width: 25px;
  height: 25px;
}

.ContainerSignature__body__signature {
  width: 100%;
  margin: 0 auto;
  height: auto;
  /* border-bottom: 1px solid #999999 */
}

.ContainerSignature__body__signature_name {
  width: 85%;
  text-align: center;
  margin: 12px auto;
  position: absolute;
  bottom: 0;
  border-top: 1px solid #999999;
  left: 50%;
  transform: translate(-50%, 0px);
}

.ContainerSignature__err {
  border: 0;
  border: 0px solid transparent;
  border-radius: 0;
  width: 100%;
}

.ContainerSignature__footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.ContainerSignature--exit {
  -webkit-animation: ContainerSignature-animation-down .8s 0s forwards;
  animation: ContainerSignature-animation-down .8s 0s forwards;
}

@-webkit-keyframes ContainerSignature-animation-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(110vh);
    transform: translateY(110vh);
  }
}

@keyframes ContainerSignature-animation-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(110vh);
    transform: translateY(110vh);
  }
}

.ContainerSignatureMessage {
  width: 100%;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 0;
  margin-top: 20px;
  height: auto;
  -webkit-animation: Chat-animation-down 0.5s .2s forwards;
  animation: Chat-animation-down 0.5s 0s forwards;
  opacity: 0;
}

.ContainerSignatureMessage__content {
  text-align: center;
}

.ContainerSignatureMessage__content p {
  font-size: 12px;
}

.ContainerSignatureMessage__signature {
  width: 95%;
  border-bottom: 1px solid #999999;
  margin: 20px auto 0;
  text-align: center;
}

.ContainerSignatureMessage__signature img {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  -webkit-animation: ContainerSignatureMessage-animation .8s 1s forwards;
  animation: ContainerSignatureMessage-animation .8s 1s forwards;
}

.ContainerSignatureMessage__signature_name {
  width: 85%;
  text-align: center;
  margin: 5px auto;
}

@-webkit-keyframes ContainerSignatureMessage-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ContainerSignatureMessage-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.ContainerSign {
  position: relative;
  border-radius: 15px;
  border: 1px solid silver;
  top : 15%;
}