* {
    font-family: 'Jost', sans-serif;
    color:#fff;
  }
  .bubbleWrapper {
    padding: 10px 30px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-self: flex-end;
    color: #fff;
  }
  .inlineContainer {
    display: inline-flex;
  }
  .inlineContainer.own {
    flex-direction: row-reverse;
  }
  .inlineIcon {
    width:60px;
    object-fit: contain;
  }
  .ownBubble {
    min-width: 60px;
    max-width: 700px;
    padding: 14px 18px;
    margin: 6px 8px;
    background-color: #5b5377;
    border-radius: 16px 16px 0 16px;
    border: 1px solid #443f56;
  }
  .ownBubbleMore {
    min-width: 60px;
    max-width: 700px;
    padding: 14px 18px;
    margin: 6px 67px;
    background-color: #5b5377;
    border-radius: 16px 16px 16px 16px;
    border: 1px solid #443f56;
  }
  .ownBubbleEnd {
    min-width: 60px;
    max-width: 700px;
    padding: 14px 18px;
    margin: 6px 67px;
    background-color: #5b5377;
    border-radius: 16px 0px 16px 16px;
    border: 1px solid #5b5377;
  }
  .otherBubble {
    min-width: 60px;
    max-width: 700px;
    padding: 14px 18px;
    margin: 6px 8px;
    background-color: #6C8EA4;
    border-radius: 16px 16px 16px 0;
    border: 1px solid #54788e;
  }
  .otherBubbleMore {
    min-width: 60px;
    max-width: 700px;
    padding: 14px 18px;
    margin: 6px 67px;
    background-color: #6C8EA4;
    border-radius: 16px 16px 16px 16px;
    border: 1px solid #54788e;
  }
  .otherBubbleEnd {
    min-width: 60px;
    max-width: 700px;
    padding: 14px 18px;
    margin: 6px 67px;
    background-color: #6C8EA4;
    border-radius: 0px 16px 16px 16px;
    border: 1px solid #54788e;
  }
  .otherRight {
    align-self: flex-end;
  }
  .otherLeft {
    align-self: flex-start;
    padding-left: 5px;
  }
  span.otherRight,
  span.otherLeft{
    font-size: 14px;
    color: grey;
  }

body {
    overflow-x: hidden;
}

:root {
    --animate-delay: 3s;
  }

.buttonChoice {
  background: linear-gradient(to bottom right, #5b5377, #54788e);
  border: 0;
  border-radius: 12px;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system,system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5;
  outline: transparent;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.buttonChoice:not([disabled]):focus {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem #5b5377, .125rem .125rem 1rem lightblue;
}

.buttonChoice:not([disabled]):hover {
  box-shadow: 0 0 .25rem rgba(0, 0, 0, 0.5), -.125rem -.125rem 1rem #5b5377, .125rem .125rem 1rem lightblue;
}