/* === COLORS === */
/* === TRANSITIONS === */
/* === SIZES === */
/* New public web */
/* line 74, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pastel-orange {
  background-color: #fce6a6;
}

/* line 76, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pale-orange {
  background-color: #fef7e5;
}

/* line 78, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-pale-green {
  background-color: #eef7e5;
}

/* line 80, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.background-white {
  background-color: #fff;
}

/* line 82, /mnt/quipuapp/app/assets/stylesheets/public/00-base/variables.sass */
.color-dark-red {
  color: #970b00;
}

/* line 2, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  /* line 2, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
  .chathead {
    padding-right: 2rem;
  }
}
/* line 10, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead.flipped {
  align-items: flex-start;
}
/* line 12, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead.flipped .head {
  margin-right: 0;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  /* line 12, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
  .chathead.flipped .head {
    margin-left: -2rem;
  }
}
/* line 17, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead.flipped .message {
  background-image: linear-gradient(20deg, #341FC7 0%, #428FE5 100%);
}
/* line 19, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead.flipped .message::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border: 20px solid transparent;
  border-left: 20px solid #341FC7;
  left: 0;
  bottom: -20px;
}
/* line 28, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead .message {
  width: 100%;
  background-color: #1F56C7;
  background-image: linear-gradient(-224deg, #428FE5 0%, #341FC7 100%);
  box-shadow: 0 0 16px 0 rgba(25, 59, 128, 0.16);
  padding: 1.5rem;
  border-radius: 8px;
  position: relative;
}
/* line 36, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead .message::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border: 20px solid transparent;
  border-right: 20px solid #341FC7;
  right: 0;
  bottom: -20px;
}
/* line 45, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead .message p {
  color: white;
  font-weight: 600;
}
/* line 48, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead .message p.title {
  color: #AABFEB;
  text-transform: uppercase;
  margin-bottom: 0;
}
/* line 52, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead .head {
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 100%;
  box-shadow: 0 0 16px 0 rgba(63, 94, 156, 0.3);
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  /* line 52, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
  .chathead .head {
    margin-right: -2rem;
  }
}
/* line 61, /mnt/quipuapp/app/assets/stylesheets/public/01-atoms/chathead.sass */
.chathead .head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
