.cnt-MsgSent {
  margin: 3em 0;
  padding: 1em;
  background-color: #b2a687;
  border-radius: 1em;
  color: #fff;
}

.cnt-MsgSent > *:first-child {
  margin-top: 0;
}

.cnt-MsgSent > *:last-child {
  margin-bottom: 0;
}

.info-container {
  position: relative;
  margin-bottom: 3em;
}
@media screen and (min-width: 500px) {
  .info-container {
    padding-left: 6em;
  }
}

.info-container .fa {
  display: block;
  margin: 0.4em auto 0;
  color: #b2a687;
}
@media screen and (min-width: 500px) {
  .info-container .fa {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
}

.info-container > h2 {
  margin-top: 0.25em;
}
@media screen and (min-width: 500px) {
  .info-container > h2 {
    margin-top: auto;
  }
}

.btn-submit.disable {
  display: none;
}

.lds-ellipsis.enable {
  display: inline-block;
}

.lds-ellipsis {
  display: none;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #16222b;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}