@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 53%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 100%, 50% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    -ms-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    -ms-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%, 100%, 20%, 40%, 60%, 80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    -ms-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%, 100%, 60%, 75%, 90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    -ms-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -ms-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    -ms-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    -ms-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -ms-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

.amaran.awesome {
  width: 300px;
  min-height: 65px;
  background: #f3f3f3;
  color: #222;
  margin: 15px;
  padding: 5px 5px 5px 70px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 1px 1px 1px #000;
}

.amaran.awesome .icon {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 10px;
  background: #000;
  margin-top: -25px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
}

.amaran.awesome p {
  padding: 0;
  margin: 0;
}

.amaran.awesome p span {
  font-weight: 300;
}

.amaran.awesome p span.light {
  font-size: 13px;
  display: block;
  color: #777;
}

.amaran.awesome.ok p.bold {
  color: #178B13;
}

.amaran.awesome.ok .icon {
  background-color: #178B13;
  color: #fff;
}

.amaran.awesome.error p.bold {
  color: #D82222;
}

.amaran.awesome.error .icon {
  background-color: #D82222;
  color: #fff;
}

.amaran.awesome.warning p.bold {
  color: #9F6000;
}

.amaran.awesome.warning .icon {
  background-color: #9F6000;
  color: #fff;
}

.amaran.awesome.yellow p.bold {
  color: #CFA846;
}

.amaran.awesome.yellow .icon {
  background-color: #CFA846;
  color: #fff;
}

.amaran.awesome.blue p.bold {
  color: #2980b9;
}

.amaran.awesome.blue .icon {
  background-color: #2980b9;
  color: #fff;
}

.amaran.awesome.green p.bold {
  color: #27ae60;
}

.amaran.awesome.green .icon {
  background-color: #27ae60;
  color: #fff;
}

.amaran.awesome.purple p.bold {
  color: #5B54AA;
}

.amaran.awesome.purple .icon {
  background-color: #5B54AA;
  color: #fff;
}

.amaran.colorful {
  width: 300px;
  min-height: 45px;
  overflow: hidden;
  background-color: transparent;
  z-index: 1;
}

.amaran.colorful .colorful-inner {
  width: 100%;
  min-height: 45px;
  display: block;
  position: relative;
  background-color: #484860;
  padding: 15px 25px 15px 15px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.amaran.colorful .amaran-close {
  color: #fff;
  z-index: 2;
  top: 8px;
  right: 8px;
  text-align: center;
  line-height: 18px;
}

.amaran-wrapper.center .amaran.colorful {
  margin: 0 auto;
}

.amaran.default {
  width: 300px;
  min-height: 45px;
  background: #1B1E24;
  background: -webkit-linear-gradient(left, #111213, #111213 15%, #1b1e24 15%, #1b1e24);
  background: linear-gradient(left, #111213, #111213 15%, #1b1e24 15%, #1b1e24);
  color: #fff;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  margin: 5px;
  overflow: hidden;
  border-bottom: 1px solid #111213;
  border-radius: 6px;
}

.amaran.default .default-spinner {
  width: 45px;
  min-height: 45px;
  line-height: 45px;
  display: block;
  float: left;
  position: relative;
  font-size: 22px;
  text-align: center;
}

.amaran.default .default-spinner span {
  width: 18px;
  height: 18px;
  background: #27ae60;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  margin-top: -9px;
}

.amaran.default .default-message {
  float: left;
}

.amaran.default .default-message span {
  padding: 3px;
  line-height: 45px;
}

.amaran.default .default-message:after {
  clear: both;
}

.amaran-wrapper * {
  box-sizing: border-box;
}

.amaran-wrapper {
  position: fixed;
  z-index: 999900;
}

.amaran-wrapper.top {
  top: 0;
  bottom: auto;
}

.amaran-wrapper.bottom {
  bottom: 0;
  top: auto;
}

.amaran-wrapper.left {
  left: 0;
}

.amaran-wrapper.right {
  right: 0;
  left: auto;
}

.amaran-wrapper.center {
  width: 50%;
  height: 50%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.amaran {
  width: 200px;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px;
  color: #fff;
  border-radius: 4px;
  display: none;
  font-size: 13px;
  cursor: pointer;
  position: relative;
  text-align: left;
  min-height: 50px;
  margin: 10px;
}

.amaran-close {
  position: absolute;
  top: 2px;
  right: 2px;
  display: block;
  width: 20px;
  height: 20px;
}

.amaran.tumblr {
  width: 300px;
  min-height: 45px;
  overflow: hidden;
  background-color: #fff;
  color: #444;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.amaran.tumblr .title {
  position: relative;
  font-size: 15px;
  line-height: 15px;
  height: 28px;
  padding: 5px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 700;
  z-index: 1;
}

.amaran.tumblr .content {
  padding: 5px;
}

.amaran.tumblr .image {
  float: left;
}

.amaran.tumblr .amaran-close {
  z-index: 2;
}

.amaran.tumblr .amaran-close:before {
  color: #000;
}

.amaran.user {
  width: 300px;
  min-height: 100px;
  background: #f3f3f3;
  color: #222;
  margin: 15px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  box-shadow: 1px 1px 1px #000;
  border-radius: 0;
  padding: 0;
}

.amaran.user .icon {
  width: 100px;
  height: 100px;
  position: relative;
  background: #000;
  float: left;
}

.amaran.user img {
  width: 100%;
  height: 100%;
}

.amaran.user .info {
  padding-left: 110px;
  padding-top: 10px;
}

.amaran.user b {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.amaran.user.blue {
  background: #2773ed;
  color: #fff;
}

.amaran.user.yellow {
  background: #f4b300;
  color: #fff;
}

.amaran.user.green {
  background: #78ba00;
  color: #fff;
}

.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] {
  position: absolute;
  z-index: 1000;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item {
  font-size: 14px;
  padding: 1px 3px;
  border: 0;
}

.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item a {
  text-decoration: none;
  display: block;
  height: 100%;
  line-height: 1.8em;
  padding: 0 1.54em 0 0.615em;
  color: #4f4f4f;
}

.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item:hover, .dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item.active {
  background-color: #e4e4e4;
}

.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item:hover a, .dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item.active a {
  color: #333;
}

.dropdown-menu.textcomplete-dropdown[data-strategy=emojionearea] li.textcomplete-item .emojioneemoji {
  font-size: inherit;
  height: 2ex;
  width: 2.1ex;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: 0 5px 0.2ex 0;
  line-height: normal;
  vertical-align: middle;
  max-width: 100%;
  top: 0;
}

.bp-emojionearea-text [class*=emojione-], .bp-emojionearea-text .emojioneemoji {
  font-size: inherit;
  height: 2ex;
  width: 2.1ex;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.2ex 0.15em 0.2ex;
  line-height: normal;
  vertical-align: middle;
  max-width: 100%;
  top: 0;
}

.bp-emojionearea, .bp-emojionearea * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bp-emojionearea.bp-emojionearea-disable {
  position: relative;
  background-color: #eee;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.bp-emojionearea.bp-emojionearea-disable:before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.3;
  position: absolute;
  background-color: #eee;
}

.bp-emojionearea, .bp-emojionearea.form-control {
  display: block;
  position: relative !important;
  width: 100%;
  height: auto;
  padding: 6px 24px 6px 12px;
  font-size: 14px;
  border: 0;
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: border-color 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box !important;
}

.bp-emojionearea.focused {
  border-color: var(--main-bm-color);
  outline: 0;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
}

.bp-emojionearea .bp-emojionearea-editor {
  display: block;
  height: auto;
  min-height: 4em;
  /* max-height: 15em; */
  overflow: auto;
  padding: 0;
  font-size: inherit;
  color: #555555;
  background-color: transparent;
  border: 0;
  cursor: text;
  margin-right: 1px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  box-shadow: none;
  /* max-height: 100px; */
  overflow-y: auto;
  overflow-x: hidden;
  line-height: initial;
  text-align: left;
}

.bp-emojionearea .bp-emojionearea-editor:empty:before {
  content: attr(placeholder);
  display: block;
  color: #BBBBBB;
  line-height: initial;
  width: 100%;
  text-align: left;
}

.bp-emojionearea .bp-emojionearea-editor:focus {
  border: 0;
  outline: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bp-emojionearea .bp-emojionearea-editor [class*=emojione-], .bp-emojionearea .bp-emojionearea-editor .emojioneemoji {
  font-size: inherit;
  height: 2ex;
  width: 2.1ex;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.2ex 0.15em 0.2ex;
  line-height: normal;
  vertical-align: middle;
  max-width: 100%;
  top: 0;
}

.bp-emojionearea.bp-emojionearea-inline {
  height: 34px;
}

.bp-emojionearea.bp-emojionearea-inline > .bp-emojionearea-editor {
  height: 32px;
  min-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 12px;
  right: 24px;
  padding: 6px 0;
}

.bp-emojionearea.bp-emojionearea-inline > .bp-emojionearea-button {
  top: 4px;
}

.bp-emojionearea .bp-emojionearea-button {
  z-index: 5;
  position: absolute !important;
  right: 3px;
  top: 3px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  opacity: 1;
  cursor: pointer;
  -moz-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  -webkit-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.bp-emojionearea .bp-emojionearea-button:hover {
  opacity: 1;
}

.bp-emojionearea .bp-emojionearea-button > div {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  position: absolute;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-open {
  background-position: 0 -24px;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  font-weight: 400;
}

.bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-open::after {
  position: relative;
  display: block;
  font-family: "BM Font Awesome 6 Free";
  font-weight: 400;
  content: "\f118";
  font-size: 14px;
}

.bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-close {
  background-position: 0 0;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-close::after {
  position: relative;
  display: block;
  font-family: "BM Font Awesome 6 Free";
  font-weight: 400;
  content: "\f057";
  font-size: 14px;
}

.bp-emojionearea .bp-emojionearea-button.active > div.bp-emojionearea-button-open {
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.bp-emojionearea .bp-emojionearea-button.active > div.bp-emojionearea-button-close {
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.bp-emojionearea-picker {
  background: #FFFFFF;
  position: absolute;
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.32);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.32);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 276px;
  width: 316px;
  top: -15px;
  right: -15px;
  z-index: 800;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.bm-picker-div-app {
  z-index: 800;
}

.bp-emojionearea-picker.hidden {
  /*display: none;*/
  pointer-events: none;
}

.bp-emojionearea-picker .bp-emojionearea-wrapper {
  position: relative;
  height: 276px;
  width: 316px;
}

.bp-emojionearea-picker .bp-emojionearea-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 91;
}

.bp-emojionearea-picker .bp-emojionearea-filters {
  width: 100%;
  position: absolute;
  z-index: 95;
}

.bp-emojionearea-picker .bp-emojionearea-filters {
  background: #F5F7F9;
  padding: 0 0 0 7px;
  height: 40px;
}

.bp-emojionearea-picker .bp-emojionearea-filters .bp-emojionearea-filter {
  display: block;
  float: left;
  height: 40px;
  width: 32px;
  filter: inherit;
  padding: 7px 1px 0;
  cursor: pointer;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.bp-emojionearea-picker .bp-emojionearea-filters .bp-emojionearea-filter.active {
  background: #fff;
}

.bp-emojionearea-picker .bp-emojionearea-filters .bp-emojionearea-filter.active, .bp-emojionearea-picker .bp-emojionearea-filters .bp-emojionearea-filter:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.bp-emojionearea-picker .bp-emojionearea-filters .bp-emojionearea-filter > i {
  width: 24px;
  height: 24px;
  top: 0;
}

.bp-emojionearea-picker .bp-emojionearea-filters .bp-emojionearea-filter > img {
  width: 24px;
  height: 24px;
  margin: 0 3px;
}

.bp-emojionearea-picker .bp-emojionearea-search-panel {
  height: 30px;
  position: absolute;
  z-index: 95;
  top: 40px;
  left: 0;
  right: 0;
  padding: 5px 0 5px 8px;
}

.bp-emojionearea-picker .bp-emojionearea-search-panel .bp-emojionearea-tones {
  float: right;
  margin-right: 10px;
  margin-top: -1px;
}

.bp-emojionearea-picker .bp-emojionearea-tones-panel .bp-emojionearea-tones {
  position: absolute;
  top: 4px;
  left: 171px;
}

.bp-emojionearea-picker .bp-emojionearea-search {
  float: left;
  padding: 0;
  height: 20px;
  width: 160px;
  position: initial !important;
}

.bp-emojionearea-picker .bp-emojionearea-search > input {
  outline: 0;
  width: 160px;
  min-width: 160px;
  height: 20px;
  border: 1px solid;
  box-sizing: border-box;
  padding: 0 5px;
  margin: 0;
  background: none;
  box-sizing: border-box;
  min-height: auto;
}

.bp-emojionearea-picker .bp-emojionearea-tones {
  padding: 0;
  width: 120px;
  height: 20px;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone {
  display: inline-block;
  padding: 0;
  border: 0;
  vertical-align: middle;
  outline: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-0, .bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-0:after {
  background-color: #ffcf3e;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-1, .bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-1:after {
  background-color: #fae3c5;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-2, .bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-2:after {
  background-color: #e2cfa5;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-3, .bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-3:after {
  background-color: #daa478;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-4, .bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-4:after {
  background-color: #a78058;
}

.bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-5, .bp-emojionearea-picker .bp-emojionearea-tones > .btn-tone.btn-tone-5:after {
  background-color: #5e4d43;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-bullet > .btn-tone, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-square > .btn-tone {
  width: 20px;
  height: 20px;
  margin: 0;
  background-color: transparent;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-bullet > .btn-tone:after, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-square > .btn-tone:after {
  content: "";
  position: absolute;
  display: block;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-bullet > .btn-tone.active:after, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-square > .btn-tone.active:after {
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-radio > .btn-tone, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-checkbox > .btn-tone {
  width: 16px;
  height: 16px;
  margin: 0px 2px;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-radio > .btn-tone.active:after, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-checkbox > .btn-tone.active:after {
  content: "";
  position: absolute;
  display: block;
  background-color: transparent;
  border: 2px solid #fff;
  width: 8px;
  height: 8px;
  top: 2px;
  left: 2px;
  box-sizing: initial;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-bullet > .btn-tone, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-bullet > .btn-tone:after, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-radio > .btn-tone, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-radio > .btn-tone:after {
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-square > .btn-tone, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-square > .btn-tone:after, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-checkbox > .btn-tone, .bp-emojionearea-picker .bp-emojionearea-tones.bp-emojionearea-tones-checkbox > .btn-tone:after {
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area {
  height: 236px;
}

.bp-emojionearea-picker .bp-emojionearea-search-panel + .bp-emojionearea-scroll-area {
  height: 206px;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area {
  overflow: auto;
  overflow-x: hidden;
  width: 100%;
  position: absolute;
  padding: 0 0 5px;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-emojis-list {
  z-index: 1;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-title {
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #b2b2b2;
  background: #FFFFFF;
  line-height: 20px;
  margin: 0;
  padding: 7px 0 5px 6px;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-title:after, .bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-title:before {
  content: " ";
  display: block;
  clear: both;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-block {
  padding: 0 0 0 7px;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-block > .bp-emojionearea-category {
  padding: 0 !important;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-block > .bp-emojionearea-category:after, .bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-block > .bp-emojionearea-category:before {
  content: " ";
  display: block;
  clear: both;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-block:after, .bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-block:before {
  content: " ";
  display: block;
  clear: both;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area [class*=emojione-] {
  box-sizing: content-box !important;
  margin: 0;
  width: 24px;
  height: 24px;
  top: 0;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .emojibtn {
  box-sizing: content-box !important;
  width: 24px;
  height: 24px;
  float: left;
  display: block;
  margin: 1px;
  padding: 3px;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .emojibtn:hover {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #e4e4e4;
  cursor: pointer;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .emojibtn i, .bp-emojionearea-picker .bp-emojionearea-scroll-area .emojibtn img {
  float: left;
  display: block;
  width: 24px !important;
  height: 24px !important;
  margin: 0;
}

.bp-emojionearea-picker .bp-emojionearea-scroll-area .emojibtn img.lazy-emoji {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-top .bp-emojionearea-filters {
  top: 0;
  -moz-border-radius-topleft: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  -moz-border-radius-topright: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-top.bp-emojionearea-search-position-top .bp-emojionearea-scroll-area {
  bottom: 0;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-top.bp-emojionearea-search-position-bottom .bp-emojionearea-scroll-area {
  top: 40px;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-top.bp-emojionearea-search-position-bottom .bp-emojionearea-search-panel {
  top: initial;
  bottom: 0;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-bottom .bp-emojionearea-filters {
  bottom: 0;
  -moz-border-radius-bottomleft: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-bottom.bp-emojionearea-search-position-bottom .bp-emojionearea-scroll-area {
  top: 0;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-bottom.bp-emojionearea-search-position-bottom .bp-emojionearea-search-panel {
  top: initial;
  bottom: 40px;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-bottom.bp-emojionearea-search-position-top .bp-emojionearea-scroll-area {
  top: initial;
  bottom: 40px;
}

.bp-emojionearea-picker.bp-emojionearea-filters-position-bottom.bp-emojionearea-search-position-top .bp-emojionearea-search-panel {
  top: 0;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-top {
  margin-top: -286px;
  right: -14px !important;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-top .bp-emojionearea-wrapper:after {
  width: 19px;
  height: 10px;
  background-position: -2px -49px;
  bottom: -10px;
  right: 20px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-top.bp-emojionearea-filters-position-bottom .bp-emojionearea-wrapper:after {
  background-position: -2px -80px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-left, .bp-emojionearea-picker.bp-emojionearea-picker-position-right {
  margin-right: -326px;
  top: -8px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-left .bp-emojionearea-wrapper:after, .bp-emojionearea-picker.bp-emojionearea-picker-position-right .bp-emojionearea-wrapper:after {
  width: 10px;
  height: 19px;
  background-position: 0px -60px;
  top: 13px;
  left: -10px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-left.bp-emojionearea-filters-position-bottom .bp-emojionearea-wrapper:after, .bp-emojionearea-picker.bp-emojionearea-picker-position-right.bp-emojionearea-filters-position-bottom .bp-emojionearea-wrapper:after {
  background-position: right -60px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-bottom {
  margin-top: 10px;
  right: -14px;
  top: 47px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-bottom .bp-emojionearea-wrapper:after {
  width: 19px;
  height: 10px;
  background-position: -2px -100px;
  top: -10px;
  right: 20px;
}

.bp-emojionearea-picker.bp-emojionearea-picker-position-bottom.bp-emojionearea-filters-position-bottom .bp-emojionearea-wrapper:after {
  background-position: -2px -90px;
}

.bp-emojionearea-picker:not(.hidden) {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.bp-emojionearea-picker:not(.hidden).bp-emojionearea-picker-position-top {
  margin-top: -269px;
}

.bp-emojionearea-picker:not(.hidden).bp-emojionearea-picker-position-left,
.bp-emojionearea-picker:not(.hidden).bp-emojionearea-picker-position-right {
  margin-right: -309px;
}

.bp-emojionearea-picker:not(.hidden).bp-emojionearea-picker-position-bottom {
  margin-top: -7px;
}

.bp-emojionearea.bp-emojionearea-standalone {
  display: inline-block;
  width: auto;
  box-shadow: none;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-editor {
  min-height: 33px;
  position: relative;
  padding: 6px 42px 6px 6px;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-editor::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  bottom: 4px;
  border-left: 1px solid #e6e6e6;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-editor.has-placeholder {
  background-repeat: no-repeat;
  background-position: 20px 4px;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-editor.has-placeholder .emojioneemoji {
  opacity: 1;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-button {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-button > div {
  right: 6px;
  top: 5px;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-picker.bp-emojionearea-picker-position-bottom .bp-emojionearea-wrapper:after, .bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-picker.bp-emojionearea-picker-position-top .bp-emojionearea-wrapper:after {
  right: 23px;
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-picker.bp-emojionearea-picker-position-left .bp-emojionearea-wrapper:after, .bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-picker.bp-emojionearea-picker-position-right .bp-emojionearea-wrapper:after {
  top: 15px;
}

.bp-emojionearea .bp-emojionearea-button > div, .bp-emojionearea-picker .bp-emojionearea-wrapper:after {
  /* background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAABuCAYAAADMB4ipAAAHfElEQVRo3u1XS1NT2Rb+9uOcQF4YlAJzLymFUHaLrdxKULvEUNpdTnRqD532f+AHMLMc94gqR1Zbt8rBnUh3YXipPGKwRDoWgXvrYiFUlEdIkPPYZ/dAkwox5yQCVt/bzRrBPnt9e+211/etFeDQDu3ArL+/X37OeqmRWoH7+vpItfWawStF1tfXR+zW9xW5ne0p8loOcAKuCdwpRft60C8a+X5zTvebCqcAvmidf1GGHtqhHdpf1qqKzsrKipyensbi4iKWl5cBAMFgEG1tbYhGo2hpadlbmxseHpaDg4MAgI6ODng8HgBAPp/H/Pw8AODatWvo7e2tvUHrui7v3r2L+fl5XL58GVeuXIHH49m1N5/Py0ePHmF0dBQdHR24desWVFXdtYdXAn/48CHm5+dx8+ZNRKPRigEUDpuenpb3799H4YaOnWh5eVmOj48jFoshGo0STdPkwMCAXF5elqV7BgYGpKZpMhqNklgshrGxMbx580Y6gicSCTDGEIvFAADpdBqpVArJZLK4J5lMIpVKIZ1OAwBisRgYY0gkEs6Rp1IphMNh+Hw+AgCGYQAANE0r7in8Xfjm8/lIOBzGq1evnMHX19fR1NRU/D8UCoFzjnA4XFwLh8PgnCMUChXXmpqakM1mUfVBS62xsZHk83lZWi1nz579ZA0AhBDO4A0NDchkMsWSJIRAURRiVy26rktVVUkmk0EgEHAGP3XqFKamppDP56Vpmrhz5w5u374t/X4/OP+w3TRNZLNZ6LoO0zSRz+dlf38/Ll686Jzz8+fPQwiBeDwOt9tNrl+/jkwmU6yaQpVkMhncuHEDbrebxONxCCEQiUScIw8Gg+TBgwdyZGQEyWRSdnV1kVQqJYeGhrC6ugrGGEKhEHp7e3Hy5EmSTCblvXv30NPTg2AwSA6M/vF4HCMjI7b0/yzh8vv9AIBsNrt34aokuQsLC7skt729varkHtqftUFf++FHsrq0QN3eBvp68Tfvf9Mv12oFCYU7G//e9nVuO7dpNbe2W4M//yQr0p8yRvyBo1Zr++lwLcCt7afD/sBRizJGavrB1dDYYh47Htrq+Kb7jBNwxzfdZ44dD201NLaYVUkU7ozQpuAJBkARwnRZpunN5zaa5hJjiXLH05GeiMd7JEM5zzHGNQBGZvk/Iv0yYVWMvK0zKk1Dl6ahW5RQobjqdjy+wEZn9PKF0n2d0csXPL7AhuKq26GECtPQLdPQZVtn1LlB69p7yRVVSEiDEGJwRd12e4+8PR3piRQidnuPvOWKuk0IMSSkwRVV6Np7WVVbSqvGsgSnlKkAFNPQXdrOtuKqcxtcUTUAhmUJnVJmlleJo3CVHmAaOlPUOmYJkxFKibQsSRkXhr4juKIKO2BHVSwcoLrqCVdUYho6K3YYRRWmoUtdey/tgKtK7rUffiQAsLq08MnbNLe2WwBgB/zHzueFyD8nwlIfbvdx8eU0WV1aKD1cVAMs9+F2j9gUPEEKemEJIe3AnXy4XfkBoNKSZHNthWfX31EA69VKttyHVyIOY1wRwmS6tqNsrr31vXo5k/bUu4gT2cp9lhbm0rzCJpeUUrE0vS63+c7/6uXMbDUWl/ssLczNFrVFddUT09AZpUy1LKvO0DVfPrfR9HxqfNbuEe185l9MFX3o6tIC5YpKFLWOfdQQ93Zu49j0+FDCDtjOp1yaOQCYhs4Y40wI05XfWj8yPT40Ua2ey33mEmMTtp2IUEq0nW3FKeJPGPjRp1Iz2QUuLUu66txG9NLVSK3gBZ+C1lcE54oqKOOCK6rm8QU2unu+u1ANuNynvFsBAG1ubbdMQ5eGviMAFDuP0w3sfMpvQEtb24fOQncU1bXl8R7JnOu+ZNv97XxKJwY6+PNPsrm13drObVqUMlMIU5OWpVHOc96Go5lTnV2fzC/VfAozD7HTCa6olBBa1Imlhbmq2lLuQ5xaW6nCPfnln0Yt7bDUhzhps8cfKH5//uTXmvS81OeLdqI/ZoROzSZrHqG/OvOPzxuhK5VgJTvV2bW3EdqJRABwrvvS/kfoSkoZvXT1YEbociHr7vnuYEfogpBFL109HKH/h0fomnXg3Lff79r7/MmvVbWG7gX4QObzc99+Tz7mHKah05KcW6ahQ9feS6cbMCdgt7eBWJagjCuUAC5tZzuouuo0Spm0hElc9R4cbf4bVl8v1p6WUmCuqEwIs34ruxaeeTy4uJVd67As08UVlVmWoG5vA7FLG3WMmHEupVTyW+vh2cn4DADMTsaTuc21LiGEhzHOnQ6gNtMrJSBMCKHkNt999WLi0S7hejEZH81n174WpukiIMw0dKq66p3Bw50RwhUVXFGJKUy28Xal48VkfKrSlWenhsc23q2cEB9SR7iiItwZIbbgHn8AlDFCCMW7laXjqZnHjkNpaubJzNuVpWZCKChjxOMPVH/QlaW0f/G3ZLqWWl6ce/bvlddp7yFD/w8Z+njoX1+GoZMjgzMAMDkyeLAMnRh+uKveJ0YGD4ahEyODFRk6OfrL/hj67GnckaHPng7vjaGzyYmaGDr77KktQ38H8tqx8Wja+WIAAAAASUVORK5CYII=') !important; */
}

.bp-emojionearea.bp-emojionearea-standalone .bp-emojionearea-editor.has-placeholder {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMAQMAAABsu86kAAAABlBMVEUAAAC/v79T5hyIAAAAAXRSTlMAQObYZgAAABNJREFUCNdjYGNgQEb/P4AQqiAASiUEG6Vit44AAAAASUVORK5CYII=") !important;
}

.bp-emojionearea-emojis-list h1 {
  font-size: 12px;
  margin: 0;
  line-height: initial;
}

/*!
 * Justified Gallery - v3.6.3
 * http://miromannino.github.io/Justified-Gallery/
 * Copyright (c) 2016 Miro Mannino
 * Licensed under the MIT license.
 */
.justified-gallery {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.justified-gallery > a, .justified-gallery > div {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  filter: "alpha(opacity=10)";
  opacity: 0.1;
}

.justified-gallery > a > img, .justified-gallery > div > img, .justified-gallery > a > a > img, .justified-gallery > div > a > img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  border: 0;
  filter: "alpha(opacity=0)";
  opacity: 0;
}

.justified-gallery > a > .caption, .justified-gallery > div > .caption {
  display: none;
  position: absolute;
  bottom: 0;
  padding: 5px;
  background-color: #000;
  left: 0;
  right: 0;
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-family: sans-serif;
}

.justified-gallery > a > .caption.caption-visible, .justified-gallery > div > .caption.caption-visible {
  display: initial;
  filter: "alpha(opacity=70)";
  opacity: 0.7;
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  -o-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}

.justified-gallery > .entry-visible {
  filter: "alpha(opacity=100)";
  opacity: 1;
  background: 0 0;
}

.justified-gallery > .entry-visible > img, .justified-gallery > .entry-visible > a > img {
  filter: "alpha(opacity=100)";
  opacity: 1;
  -webkit-transition: opacity 500ms ease-in;
  -moz-transition: opacity 500ms ease-in;
  -o-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}

.justified-gallery > .jg-filtered {
  display: none;
}

.justified-gallery > .spinner {
  position: absolute;
  bottom: 0;
  margin-left: -24px;
  padding: 10px 0;
  left: 50%;
  filter: "alpha(opacity=100)";
  opacity: 1;
  overflow: initial;
}

.justified-gallery > .spinner > span {
  display: inline-block;
  filter: "alpha(opacity=0)";
  opacity: 0;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #000;
  border-radius: 6px;
}

/* Magnific Popup CSS */
.bpbmmfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100001;
  verflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.bpbmmfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100002;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.bpbmmfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.bpbmmfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.bpbmmfp-align-top .bpbmmfp-container:before {
  display: none;
}

.bpbmmfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.bpbmmfp-inline-holder .bpbmmfp-content,
.bpbmmfp-ajax-holder .bpbmmfp-content {
  width: 100%;
  cursor: auto;
}

.bpbmmfp-ajax-cur {
  cursor: progress;
}

.bpbmmfp-zoom-out-cur, .bpbmmfp-zoom-out-cur .bpbmmfp-image-holder .bpbmmfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.bpbmmfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.bpbmmfp-auto-cursor .bpbmmfp-content {
  cursor: auto;
}

.bpbmmfp-close,
.bpbmmfp-arrow,
.bpbmmfp-preloader,
.bpbmmfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.bpbmmfp-loading.bpbmmfp-figure {
  display: none;
}

.bpbmmfp-hide {
  display: none !important;
}

.bpbmmfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.bpbmmfp-preloader a {
  color: #CCC;
}

.bpbmmfp-preloader a:hover {
  color: #FFF;
}

.bpbmmfp-s-ready .bpbmmfp-preloader {
  display: none;
}

.bpbmmfp-s-error .bpbmmfp-content {
  display: none;
}

button.bpbmmfp-close,
button.bpbmmfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.bpbmmfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.bpbmmfp-close:hover,
.bpbmmfp-close:focus {
  opacity: 1;
}

.bpbmmfp-close:active {
  top: 1px;
}

.bpbmmfp-close-btn-in .bpbmmfp-close {
  color: #333;
}

.bpbmmfp-image-holder .bpbmmfp-close,
.bpbmmfp-iframe-holder .bpbmmfp-close {
  color: black;
  right: -6px;
  /* text-align: right; */
  /* padding-right: 6px; */
  /* width: 100%; */
  margin: 0;
  padding: 0;
  border: 0;
  background: white;
}

.bpbmmfp-image-holder .bpbmmfp-close:hover,
.bpbmmfp-iframe-holder .bpbmmfp-close:hover {
  background: white;
  border: none;
}

.bpbmmfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.bpbmmfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.bpbmmfp-arrow:active {
  margin-top: -54px;
}

.bpbmmfp-arrow:hover,
.bpbmmfp-arrow:focus {
  opacity: 1;
}

.bpbmmfp-arrow:before,
.bpbmmfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.bpbmmfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.bpbmmfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.bpbmmfp-arrow-left {
  left: 0;
}

.bpbmmfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.bpbmmfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.bpbmmfp-arrow-right {
  right: 0;
}

.bpbmmfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.bpbmmfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.bpbmmfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.bpbmmfp-iframe-holder .bpbmmfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.bpbmmfp-iframe-holder .bpbmmfp-close {
  top: -40px;
}

.bpbmmfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.bpbmmfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.bpbmmfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.bpbmmfp-figure {
  line-height: 0;
}

.bpbmmfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.bpbmmfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.bpbmmfp-figure figure {
  margin: 0;
}

.bpbmmfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.bpbmmfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.bpbmmfp-image-holder .bpbmmfp-content {
  max-width: 100%;
}

.bpbmmfp-gallery .bpbmmfp-image-holder .bpbmmfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .bpbmmfp-img-mobile .bpbmmfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .bpbmmfp-img-mobile img.bpbmmfp-img {
    padding: 0;
  }
  .bpbmmfp-img-mobile .bpbmmfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .bpbmmfp-img-mobile .bpbmmfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .bpbmmfp-img-mobile .bpbmmfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .bpbmmfp-img-mobile .bpbmmfp-bottom-bar:empty {
    padding: 0;
  }
  .bpbmmfp-img-mobile .bpbmmfp-counter {
    right: 5px;
    top: 3px;
  }
  .bpbmmfp-img-mobile .bpbmmfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .bpbmmfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .bpbmmfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .bpbmmfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .bpbmmfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@-webkit-keyframes bpbm-medium-editor-image-loading {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bpbm-medium-editor-image-loading {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes bpbm-medium-editor-pop-upwards {
  0% {
    opacity: 0;
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
    transform: matrix(0.97, 0, 0, 1, 0, 12);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
    transform: matrix(0.99, 0, 0, 1, 0, 2);
  }
  40% {
    opacity: 1;
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1);
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
@keyframes bpbm-medium-editor-pop-upwards {
  0% {
    opacity: 0;
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
    transform: matrix(0.97, 0, 0, 1, 0, 12);
  }
  20% {
    opacity: 0.7;
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
    transform: matrix(0.99, 0, 0, 1, 0, 2);
  }
  40% {
    opacity: 1;
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
    transform: matrix(1, 0, 0, 1, 0, -1);
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
.bpbm-medium-editor-anchor-preview {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  left: 0;
  line-height: 1.4;
  max-width: 280px;
  position: absolute;
  text-align: center;
  top: 0;
  word-break: break-all;
  word-wrap: break-word;
  visibility: hidden;
  z-index: 2000;
}

.bpbm-medium-editor-anchor-preview a {
  color: #fff;
  display: inline-block;
  margin: 5px 5px 10px;
}

.bpbm-medium-editor-anchor-preview-active {
  visibility: visible;
}

.bpbm-medium-editor-dragover {
  background: #ddd;
}

.bpbm-medium-editor-image-loading {
  -webkit-animation: bpbm-medium-editor-image-loading 1s infinite ease-in-out;
  animation: bpbm-medium-editor-image-loading 1s infinite ease-in-out;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  height: 40px;
  width: 40px;
}

.bpbm-medium-editor-placeholder {
  position: relative;
}

.bpbm-medium-editor-placeholder:after {
  content: attr(data-placeholder) !important;
  position: absolute;
  left: 0;
  top: 0;
  white-space: pre;
  padding: inherit;
  margin: inherit;
  opacity: 0.7;
  pointer-events: none;
}

.bpbm-medium-editor-placeholder-relative {
  position: relative;
}

.bpbm-medium-editor-placeholder-relative:after {
  content: attr(data-placeholder) !important;
  font-style: italic;
  position: relative;
  white-space: pre;
  padding: inherit;
  margin: inherit;
}

.medium-toolbar-arrow-under:after, .medium-toolbar-arrow-over:before {
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -8px;
  position: absolute;
  width: 0;
}

.medium-toolbar-arrow-under:after {
  border-width: 8px 8px 0 8px;
}

.medium-toolbar-arrow-over:before {
  border-width: 0 8px 8px 8px;
  top: -8px;
}

.bpbm-medium-editor-toolbar {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 10000;
}

.bpbm-medium-editor-toolbar ul {
  margin: 0;
  padding: 0;
}

.bpbm-medium-editor-toolbar li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bpbm-medium-editor-toolbar li button {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 1.33;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 15px;
  text-decoration: none;
}

.bpbm-medium-editor-toolbar li button:focus {
  outline: none;
}

.bpbm-medium-editor-toolbar li .bpbm-medium-editor-action-underline {
  text-decoration: underline;
}

.bpbm-medium-editor-toolbar li .bpbm-medium-editor-action-pre {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 12px;
  font-weight: 100;
  padding: 15px 0;
}

.bpbm-medium-editor-toolbar-active {
  visibility: visible;
}

.bpbm-medium-editor-sticky-toolbar {
  position: fixed;
  top: 1px;
}

.bpbm-medium-editor-relative-toolbar {
  position: relative;
}

.bpbm-medium-editor-toolbar-active.bpbm-medium-editor-stalker-toolbar {
  -webkit-animation: bpbm-medium-editor-pop-upwards 160ms forwards linear;
  animation: bpbm-medium-editor-pop-upwards 160ms forwards linear;
}

.bpbm-medium-editor-action-bold {
  font-weight: bolder;
}

.bpbm-medium-editor-action-italic {
  font-style: italic;
}

.bpbm-medium-editor-toolbar-form {
  display: none;
}

.bpbm-medium-editor-toolbar-form input,
.bpbm-medium-editor-toolbar-form a {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bpbm-medium-editor-toolbar-form .bpbm-medium-editor-toolbar-form-row {
  line-height: 14px;
  margin-left: 5px;
  padding-bottom: 5px;
}

.bpbm-medium-editor-toolbar-form .bpbm-medium-editor-toolbar-input,
.bpbm-medium-editor-toolbar-form label {
  border: none;
  box-sizing: border-box;
  font-size: 14px;
  margin: 0;
  padding: 6px;
  width: 316px;
  display: inline-block;
}

.bpbm-medium-editor-toolbar-form .bpbm-medium-editor-toolbar-input:focus,
.bpbm-medium-editor-toolbar-form label:focus {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
  outline: 0;
}

.bpbm-medium-editor-toolbar-form a {
  display: inline-block;
  font-size: 24px;
  font-weight: bolder;
  margin: 0 10px;
  text-decoration: none;
}

.bpbm-medium-editor-toolbar-form-active {
  display: block;
}

.bpbm-medium-editor-toolbar-actions:after {
  clear: both;
  content: "";
  display: table;
}

.bpbm-medium-editor-element {
  word-wrap: break-word;
  min-height: 30px;
}

.bpbm-medium-editor-element img {
  max-width: 100%;
}

.bpbm-medium-editor-element sub {
  vertical-align: sub;
}

.bpbm-medium-editor-element sup {
  vertical-align: super;
}

.bpbm-medium-editor-hidden {
  display: none;
}

@-webkit-keyframes a {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes a {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.UppyAnimation-zoomOutLeft {
  -webkit-animation-name: a;
  animation-name: a;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

[aria-label][role~=tooltip] {
  position: relative;
}

[aria-label][role~=tooltip]:after, [aria-label][role~=tooltip]:before {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  -webkit-transform-origin: top;
  transform-origin: top;
}

[aria-label][role~=tooltip]:before {
  background-size: 100% auto !important;
  content: "";
}

[aria-label][role~=tooltip]:after {
  background: hsla(0, 0%, 7%, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}

[aria-label][role~=tooltip]:focus:after, [aria-label][role~=tooltip]:focus:before, [aria-label][role~=tooltip]:hover:after, [aria-label][role~=tooltip]:hover:before {
  opacity: 1;
  pointer-events: auto;
}

[role~=tooltip][data-microtip-position|=top]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0z'/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}

[role~=tooltip][data-microtip-position|=top]:after {
  margin-bottom: 11px;
}

[role~=tooltip][data-microtip-position|=top]:before {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position|=top]:hover:before {
  -webkit-transform: translate3d(-50%, -5px, 0);
  transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position|=top]:after {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=top]:hover:after {
  -webkit-transform: translate3d(-50%, -5px, 0);
  transform: translate3d(-50%, -5px, 0);
}

[role~=tooltip][data-microtip-position=top-left]:after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-left]:hover:after {
  -webkit-transform: translate3d(calc(-100% + 16px), -5px, 0);
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}

[role~=tooltip][data-microtip-position=top-right]:after {
  -webkit-transform: translate3d(calc(0% - 16px), 0, 0);
  transform: translate3d(calc(0% - 16px), 0, 0);
  bottom: 100%;
}

[role~=tooltip][data-microtip-position=top-right]:hover:after {
  -webkit-transform: translate3d(calc(0% - 16px), -5px, 0);
  transform: translate3d(calc(0% - 16px), -5px, 0);
}

[role~=tooltip][data-microtip-position|=bottom]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='12'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12z'/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position|=bottom]:after {
  margin-top: 11px;
}

[role~=tooltip][data-microtip-position|=bottom]:before {
  -webkit-transform: translate3d(-50%, -10px, 0);
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}

[role~=tooltip][data-microtip-position|=bottom]:hover:before {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position|=bottom]:after {
  -webkit-transform: translate3d(-50%, -10px, 0);
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}

[role~=tooltip][data-microtip-position=bottom]:hover:after {
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}

[role~=tooltip][data-microtip-position=bottom-left]:after {
  -webkit-transform: translate3d(calc(-100% + 16px), -10px, 0);
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-left]:hover:after {
  -webkit-transform: translate3d(calc(-100% + 16px), 0, 0);
  transform: translate3d(calc(-100% + 16px), 0, 0);
}

[role~=tooltip][data-microtip-position=bottom-right]:after {
  -webkit-transform: translate3d(calc(0% - 16px), -10px, 0);
  transform: translate3d(calc(0% - 16px), -10px, 0);
  top: 100%;
}

[role~=tooltip][data-microtip-position=bottom-right]:hover:after {
  -webkit-transform: translate3d(calc(0% - 16px), 0, 0);
  transform: translate3d(calc(0% - 16px), 0, 0);
}

[role~=tooltip][data-microtip-position=left]:after, [role~=tooltip][data-microtip-position=left]:before {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  -webkit-transform: translate3d(10px, -50%, 0);
  transform: translate3d(10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=left]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342z'/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}

[role~=tooltip][data-microtip-position=left]:after {
  margin-right: 11px;
}

[role~=tooltip][data-microtip-position=left]:hover:after, [role~=tooltip][data-microtip-position=left]:hover:before {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]:after, [role~=tooltip][data-microtip-position=right]:before {
  bottom: auto;
  left: 100%;
  top: 50%;
  -webkit-transform: translate3d(-10px, -50%, 0);
  transform: translate3d(-10px, -50%, 0);
}

[role~=tooltip][data-microtip-position=right]:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='36'%3E%3Cpath fill='rgba(17, 17, 17, 0.9)' d='M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658z'/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}

[role~=tooltip][data-microtip-position=right]:after {
  margin-left: 11px;
}

[role~=tooltip][data-microtip-position=right]:hover:after, [role~=tooltip][data-microtip-position=right]:hover:before {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

[role~=tooltip][data-microtip-size=small]:after {
  white-space: normal;
  width: 80px;
}

[role~=tooltip][data-microtip-size=medium]:after {
  white-space: normal;
  width: 150px;
}

[role~=tooltip][data-microtip-size=large]:after {
  white-space: normal;
  width: 260px;
}

.uppy {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica, helvetica neue, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
  line-height: 1;
}

.uppy *, .uppy :after, .uppy :before {
  box-sizing: inherit;
}

.UppyIcon {
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
  display: inline-block;
  vertical-align: text-top;
  overflow: hidden;
}

.UppyIcon--svg-baseline {
  bottom: -0.125em;
  position: relative;
}

.UppyButton--circular {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.UppyButton--blue {
  color: #fff;
  background-color: #4a90e2;
}

.UppyButton--blue:focus, .UppyButton--blue:hover {
  background-color: #2275d7;
}

.UppyButton--white {
  color: #525252;
  background-color: #fff;
}

.UppyButton--white:focus, .UppyButton--white:hover {
  color: #fff;
  background-color: #2275d7;
}

.UppyButton--yellow {
  color: #fff;
  background-color: #ffd600;
}

.UppyButton--yellow:focus, .UppyButton--yellow:hover {
  background-color: #e6c100;
}

.UppyButton--green {
  color: #fff;
  background-color: #7ac824;
}

.UppyButton--green:focus, .UppyButton--green:hover {
  background-color: #609d1c;
}

.UppyButton--red {
  color: #fff;
  background-color: #d32f2f;
}

.UppyButton--red:focus, .UppyButton--red:hover {
  background-color: #ab2424;
}

.UppyButton--sizeM {
  width: 60px;
  height: 60px;
}

.UppyButton--sizeS {
  width: 45px;
  height: 45px;
}

.uppy-FileInput-container {
  margin-bottom: 15px;
}

.uppy-FileInput-btn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  font-family: sans-serif;
  font-size: 0.85em;
  padding: 10px 15px;
  color: #1b5dab;
  border: 1px solid #1b5dab;
  border-radius: 8px;
  cursor: pointer;
}

.uppy-FileInput-btn:hover {
  background-color: #1b5dab;
  color: #fff;
}

.uppy-Informer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  background-color: #000;
  color: #fff;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: all 0.3s ease-in;
  z-index: 1004;
}

.uppy-Dashboard--wide .uppy-Informer {
  height: 40px;
  line-height: 40px;
  font-size: 13px;
}

.uppy-Informer[aria-hidden=true] {
  opacity: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
  transition: all 0.3s ease-in;
}

.uppy-Informer p {
  margin: 0;
  padding: 0;
  height: 30px;
  line-height: 30px;
}

.uppy-Dashboard--wide .uppy-Informer p {
  height: 40px;
  line-height: 40px;
}

.uppy-Informer span {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 3px;
  font-size: 10px;
  margin-left: -1px;
}

.uppy-Informer span:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-Dashboard--modal {
  z-index: 100000;
}

.uppy-Dashboard--modal[aria-hidden=true] {
  display: none;
}

.uppy-Dashboard-isOpen {
  overflow: hidden;
  height: 100vh;
}

.uppy-Dashboard--modal .uppy-Dashboard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: hsla(0, 0%, 100%, 0.8);
  z-index: 100001;
}

.uppy-Dashboard-inner {
  position: relative;
  background-color: #fafafa;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: none;
  border: 1px solid hsla(0, 0%, 58%, 0.2);
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
  z-index: 100005;
}

@media only screen and (min-width: 768px) {
  .uppy-Dashboard-inner {
    width: 750px;
    height: 550px;
    border-radius: 5px;
  }
}
.uppy-Dashboard-innerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  min-height: 300px;
}

.uppy-Dashboard--semiTransparent .uppy-Dashboard-inner {
  background-color: hsla(0, 0%, 100%, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.uppy-Dashboard--modal .uppy-Dashboard-inner {
  position: fixed;
  top: 0;
  left: 0;
  border: none;
}

@media only screen and (min-width: 768px) {
  .uppy-Dashboard--modal .uppy-Dashboard-inner {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px 7px hsla(0, 0%, 58%, 0.15);
  }
}
.uppy-Dashboard-close {
  background: none !important;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  display: none;
  position: absolute;
  top: 7px;
  right: 7px;
  cursor: pointer;
  color: #858585;
  transition: all 0.2s;
  box-shadow: none;
  min-height: 1px;
}

.uppy-Dashboard-close:hover {
  color: #4a90e2;
  background: none;
}

.uppy-Dashboard-close .UppyIcon {
  width: 12px;
  height: 12px;
}

.uppy-Dashboard--wide .uppy-Dashboard-close {
  top: 10px;
  right: 8px;
}

.uppy-Dashboard--wide .uppy-Dashboard-close .UppyIcon {
  display: block;
  margin: auto;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.uppy-Dashboard--modal .uppy-Dashboard-close {
  z-index: 100000;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  color: black;
}

.uppy-DashboardTabs {
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #b9b9b9;
}

.uppy-DashboardTabs[aria-hidden=true] {
  display: none;
}

.uppy-DashboardTabs-title {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #525252;
}

.uppy-Dashboard--wide .uppy-DashboardTabs-title {
  font-size: 17px;
  line-height: 40px;
}

.uppy-Dashboard-browse {
  background: none !important;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  color: #2275d7 !important;
  vertical-align: baseline;
  box-shadow: none;
  min-height: 0px;
}

.uppy-DashboardTabs-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.uppy-DashboardTab {
  width: 70px;
  margin: 0;
  display: inline-block;
  text-align: center;
}

.uppy-Dashboard--wide .uppy-DashboardTab {
  width: 75px;
  margin: 0 5px;
}

.uppy-DashboardTab-btn {
  width: 100%;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
  transition: all 0.3s;
  color: #535353;
}

.uppy-DashboardTab-btn:active, .uppy-DashboardTab-btn:focus, .uppy-DashboardTab-btn:hover {
  color: #4a90e2;
}

.uppy-DashboardTab-name {
  font-size: 8px;
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 400;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uppy-Dashboard--wide .uppy-DashboardTab-name {
  font-size: 9px;
}

.uppy-DashboardTab .UppyIcon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.uppy-Dashboard--wide .uppy-DashboardTab .UppyIcon {
  width: 23px;
  height: 23px;
}

.uppy-Dashboard-input {
  width: 0.1px !important;
  height: 0.1px !important;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.uppy-DashboardContent-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  border-bottom: 1px solid hsla(0, 0%, 58%, 0.3);
  z-index: 1004;
  background-color: #f5f5f5;
}

.uppy-Dashboard--wide .uppy-DashboardContent-bar {
  height: 50px;
}

.uppy-DashboardContent-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
  max-width: 170px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  margin: auto;
}

.uppy-Dashboard--wide .uppy-DashboardContent-title {
  font-size: 16px;
  line-height: 50px;
  max-width: 300px;
}

.uppy-DashboardContent-titleFile {
  text-decoration: underline;
}

.uppy-DashboardContent-back {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 14px;
  line-height: 40px;
  font-weight: 500;
  cursor: pointer;
  color: #4a90e2;
}

.uppy-Dashboard--wide .uppy-DashboardContent-back {
  font-size: 15px;
  line-height: 50px;
}

.uppy-DashboardContent-back .UppyIcon {
  position: relative;
  margin-right: 3px;
}

.uppy-DashboardContent-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  will-change: transform;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.15);
  padding-top: 40px;
  overflow: hidden;
  z-index: 1004;
}

.uppy-Dashboard--wide .uppy-DashboardContent-panel {
  padding-top: 50px;
}

.uppy-DashboardContent-panel[aria-hidden=false] {
  -webkit-transform: none;
  transform: none;
}

.uppy-Dashboard-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12%;
}

.uppy-Dashboard-progressBarContainer.is-active {
  z-index: 1004;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.uppy-Dashboard-next {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  background-color: hsla(0, 0%, 58%, 0.7);
  -webkit-appearance: none;
  border: 0;
  z-index: 1002;
  transition: background-color 0.5s;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: not-allowed;
}

.uppy-Dashboard-next.is-active {
  cursor: pointer;
  background-color: #4a90e2;
}

.uppy-Dashboard-next.is-active:hover {
  background-color: #1b5dab;
}

.uppy-Dashboard-filesContainer {
  position: relative;
  overflow-y: hidden;
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.uppy-Dashboard-filesContainer:after {
  content: "";
  display: table;
  clear: both;
}

.uppy-Dashboard-files {
  margin: 0;
  padding: 10px;
  padding-top: 15px;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.uppy-Dashboard.drag .uppy-Dashboard-innerWrap {
  background-color: #e6e6e6;
}

.uppy-Dashboard.drag .uppy-Dashboard-files--noFiles {
  border-color: #b1b1b1;
}

.uppy-Dashboard-bgIcon {
  width: 100%;
  max-width: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: all 0.3s;
  padding: 0 20px;
}

.uppy-Dashboard-bgIcon .UppyIcon {
  width: 100%;
  height: 80px;
  fill: none;
  stroke: #525252;
}

.uppy-Dashboard--wide .uppy-Dashboard-bgIcon .UppyIcon {
  height: 110px;
}

.uppy-Dashboard.drag .uppy-Dashboard-bgIcon {
  opacity: 1;
}

.uppy-Dashboard-dropFilesTitle {
  text-align: center;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #525252;
  margin: 0;
  margin-top: 25px;
}

.uppy-Dashboard--wide .uppy-Dashboard-dropFilesTitle {
  font-size: 18px;
}

.uppy-Dashboard-note {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
  color: #525252;
}

.uppy-Dashboard--wide .uppy-Dashboard-note {
  font-size: 13px;
}

.uppy-DashboardItem {
  list-style: none;
  margin: 10px 0;
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.uppy-Dashboard--wide .uppy-DashboardItem {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  float: left;
  width: 140px;
  height: 170px;
  margin: 5px 15px;
  border: 0;
  background-color: initial;
}

.uppy-DashboardItem-preview {
  width: 60px;
  height: 60px;
  border-bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.uppy-Dashboard--wide .uppy-DashboardItem-preview {
  width: 100%;
  height: 100px;
  border: 0;
}

.uppy-DashboardItem-sourceIcon {
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  color: hsla(0, 0%, 58%, 0.6);
}

.uppy-Dashboard--wide .uppy-DashboardItem-sourceIcon {
  width: 10px;
  height: 10px;
}

.uppy-DashboardItem-previewInnerWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.uppy-Dashboard--wide .uppy-DashboardItem-previewInnerWrap {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.uppy-DashboardItem-previewInnerWrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  z-index: 1001;
}

.uppy-DashboardItem-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.uppy-DashboardItem-previewIconWrap {
  height: 85%;
  position: relative;
}

.uppy-DashboardItem-previewIconBg {
  height: 100%;
  -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 0 1px);
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0 0 1px);
}

.uppy-DashboardItem-previewIcon {
  width: 25%;
  max-height: 55%;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.uppy-Dashboard--wide .uppy-DashboardItem-previewIcon {
  width: 40%;
  max-height: 80%;
}

.uppy-DashboardItem-info {
  padding: 10px 19px 0 25px;
  position: relative;
  max-width: 70%;
}

.uppy-Dashboard--wide .uppy-DashboardItem-info {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 3px;
  border-top: 0;
}

.uppy-DashboardItem-name {
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
  margin: 0;
  padding: 0;
  max-height: 28px;
  margin-bottom: 3px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.uppy-Dashboard--wide .uppy-DashboardItem-name {
  word-break: break-all;
  white-space: normal;
}

.uppy-DashboardItem-name a {
  text-decoration: underline;
  color: #000;
}

.uppy-DashboardItem-status {
  font-size: 11px;
  font-weight: 400;
  color: #939393;
  margin-bottom: 4px;
}

.uppy-DashboardItem-statusSize {
  display: inline-block;
  vertical-align: bottom;
  text-transform: uppercase;
  margin-right: 3px;
}

.uppy-DashboardItem-copyLink, .uppy-DashboardItem-edit {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 4px;
}

.uppy-Dashboard--wide .uppy-DashboardItem-copyLink, .uppy-Dashboard--wide .uppy-DashboardItem-edit {
  top: 9px;
  right: 3px;
}

.uppy-DashboardItem-edit .UppyIcon {
  width: 11px;
  height: 11px;
  color: #525252;
}

.uppy-Dashboard--wide .uppy-DashboardItem-edit .UppyIcon {
  width: 12px;
  height: 12px;
}

.uppy-DashboardItem-copyLink .UppyIcon {
  width: 11px;
  height: 11px;
  color: #525252;
}

.uppy-Dashboard--wide .uppy-DashboardItem-copyLink .UppyIcon {
  width: 13px;
  height: 13px;
}

.uppy-DashboardItem-action {
  position: absolute;
  top: 8px;
  right: 5px;
  z-index: 1002;
}

.uppy-Dashboard--wide .uppy-DashboardItem-action {
  top: -8px;
  right: -8px;
}

.uppy-DashboardItem-remove {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  color: #858585;
  width: 16px;
  height: 16px;
  vertical-align: top;
}

.uppy-Dashboard--wide .uppy-DashboardItem-remove {
  width: 20px;
  height: 20px;
  color: #666;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
}

.uppy-DashboardItem.is-inprogress:not(.is-resumable) .uppy-DashboardItem-remove {
  display: none;
}

.uppy-DashboardItem-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1002;
  color: #fff;
  text-align: center;
  width: 120px;
  display: none;
  transition: all 0.35 ease;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress {
  -webkit-transform: initial;
  transform: none;
  top: -9px;
  right: -8px;
  left: auto;
  width: auto;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progress, .uppy-DashboardItem.is-error .uppy-DashboardItem-progress, .uppy-DashboardItem.is-inprogress .uppy-DashboardItem-progress {
  display: block;
}

.uppy-DashboardItem-progressIndicator {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  width: 38px;
  height: 38px;
  opacity: 0.9;
  cursor: pointer;
  transition: all 0.35s ease;
}

.uppy-Dashboard--wide .uppy-DashboardItem-progressIndicator {
  width: 55px;
  height: 55px;
}

.uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator {
  width: 18px;
  height: 18px;
}

.uppy-Dashboard--wide .uppy-DashboardItem.is-error .uppy-DashboardItem-progressIndicator {
  width: 28px;
  height: 28px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator {
  width: 18px;
  height: 18px;
  opacity: 1;
}

.uppy-Dashboard--wide .uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator {
  width: 25px;
  height: 25px;
}

.uppy-DashboardItem-progressInfo {
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  height: 10px;
  display: none;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.uppy-Dashboard--wide .uppy-DashboardItem-progressInfo {
  display: block;
}

.UppyIcon-progressCircle {
  width: 100%;
  height: 100%;
}

.uppy-DashboardItem .bg {
  stroke: hsla(0, 0%, 100%, 0.4);
  opacity: 0;
}

.uppy-DashboardItem .progress {
  stroke: #fff;
  transition: stroke-dashoffset 0.5s ease-out;
  opacity: 0;
}

.uppy-DashboardItem .play {
  stroke: #fff;
  display: none;
}

.uppy-DashboardItem .cancel, .uppy-DashboardItem .pause, .uppy-DashboardItem .play {
  fill: #fff;
  opacity: 0;
  transition: all 0.2s;
}

.uppy-DashboardItem .pause {
  stroke: #fff;
  display: none;
}

.uppy-DashboardItem.is-error .retry {
  fill: #fff;
}

.uppy-DashboardItem.is-resumable .pause, .uppy-DashboardItem.is-resumable .play {
  display: block;
}

.uppy-DashboardItem.is-resumable .cancel {
  display: none;
}

.UppyIcon-progressCircle .check {
  opacity: 0;
  fill: #fff;
  transition: all 0.2s;
}

.uppy-DashboardItem.is-inprogress .bg, .uppy-DashboardItem.is-inprogress .cancel, .uppy-DashboardItem.is-inprogress .pause, .uppy-DashboardItem.is-inprogress .progress {
  opacity: 1;
}

.uppy-DashboardItem.is-error .uppy-DashboardItem-previewInnerWrap:after, .uppy-DashboardItem.is-inprogress .uppy-DashboardItem-previewInnerWrap:after {
  display: block;
}

.uppy-DashboardItem.is-paused .pause {
  opacity: 0;
}

.uppy-DashboardItem.is-paused .play {
  opacity: 1;
}

.uppy-DashboardItem.is-complete .uppy-DashboardItem-progressIndicator {
  cursor: default;
}

.uppy-DashboardItem.is-complete .progress {
  stroke: #7ac824;
  fill: #7ac824;
  opacity: 1;
}

.uppy-DashboardItem.is-complete .check {
  opacity: 1;
}

.uppy-DashboardItem-progressNum {
  position: relative;
  z-index: 1001;
}

.uppy-DashboardItem-progressInner {
  height: 15px;
  background-color: #4a90e2;
  position: absolute;
  top: 0;
  left: 0;
}

.uppy-Dashboard-actions {
  text-align: center;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1002;
}

.uppy-Dashboard--wide .uppy-Dashboard-actions {
  bottom: 20px;
  right: 20px;
}

.uppy-Dashboard-pauseResume .UppyIcon {
  width: 100%;
  height: 100%;
}

.uppy-Dashboard-upload {
  position: relative;
  width: 50px;
  height: 50px;
}

.uppy-Dashboard--wide .uppy-Dashboard-upload {
  width: 60px;
  height: 60px;
}

.uppy-Dashboard-upload .UppyIcon {
  position: relative;
  top: 1px;
  width: 50%;
}

.uppy-Dashboard-uploadCount {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: #7ac824;
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 8px;
}

.uppy-Dashboard--wide .uppy-Dashboard-uploadCount {
  width: 18px;
  height: 18px;
  line-height: 18px;
  font-size: 9px;
}

.uppy-DashboardFileCard {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.25s ease-in-out;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1004;
  box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.uppy-DashboardFileCard[aria-hidden=true] {
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
}

.uppy-DashboardFileCard-inner {
  height: 100%;
  padding-top: 40px;
}

.uppy-Dashboard--wide .uppy-DashboardFileCard-inner {
  padding-top: 50px;
}

.uppy-DashboardFileCard-preview {
  height: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-bottom: 1px solid hsla(0, 0%, 58%, 0.3);
  background-color: #f9f9f9;
  position: relative;
}

.uppy-DashboardFileCard-preview img {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: cover;
  object-fit: cover;
}

.uppy-DashboardFileCard-info {
  padding: 30px 20px 20px;
  height: 55%;
  overflow-y: auto;
}

.uppy-DashboardFileCard-fieldset {
  font-size: 0;
  border: 0;
  padding: 0;
  max-width: 450px;
  margin: auto;
  margin-bottom: 15px;
}

.uppy-DashboardFileCard-label {
  display: inline-block;
  vertical-align: middle;
  width: 25%;
  font-size: 11px;
  color: #525252;
}

.uppy-Dashboard--wide .uppy-DashboardFileCard-label {
  font-size: 13px;
}

.uppy-DashboardFileCard-input {
  display: inline-block;
  vertical-align: middle;
  width: 75%;
  border: 0;
  border-bottom: 1px solid rgba(82, 82, 82, 0.3);
  outline: none;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 5px;
  margin: auto;
}

.uppy-DashboardFileCard-input:focus {
  border-color: #525252;
}

.uppy-DashboardFileCard-done {
  width: 50px;
  height: 50px;
}

.uppy-Dashboard--wide .uppy-DashboardFileCard-done {
  width: 60px;
  height: 60px;
}

.uppy-DashboardFileCard-done .UppyIcon {
  width: 25px;
  height: 25px;
}

.uppy-Dashboard--wide .uppy-DashboardFileCard-done .UppyIcon {
  width: 30px;
  height: 30px;
}

.uppy-Dashboard--wide .uppy-StatusBar {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}

.uppy-DragDrop-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 7px;
  background-color: #fff;
}

.uppy-DragDrop-inner {
  margin: 0;
  text-align: center;
  padding: 80px 20px;
  line-height: 1.4;
}

.uppy-DragDrop-arrow {
  width: 60px;
  height: 60px;
  fill: #e0e0e0;
  margin-bottom: 17px;
}

.uppy-DragDrop-container.is-dragdrop-supported {
  border: 2px dashed;
  border-color: #adadad;
}

.uppy-DragDrop-container.drag {
  border-color: #939393;
  background-color: #e6e6e6;
}

.uppy-DragDrop-container.drag .uppy-DragDrop-arrow {
  fill: #939393;
}

.uppy-DragDrop-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.uppy-DragDrop-label {
  display: block;
  cursor: pointer;
  font-size: 1.15em;
  margin-bottom: 5px;
}

.uppy-DragDrop-note {
  font-size: 1em;
  color: #adadad;
}

.uppy-DragDrop-dragText {
  color: #4a90e2;
}

.uppy-Provider-auth, .uppy-Provider-error, .uppy-Provider-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  height: 100%;
}

.uppy-Provider-authTitle {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
}

.uppy-Provider-authBtn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  border-radius: 6px;
  background-color: #4a90e2;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding: 12px 46px;
  transition: background-color 0.3s;
  text-decoration: none;
  margin-bottom: 20px;
  cursor: pointer;
}

.uppy-Provider-authBtn:hover {
  background-color: #2275d7;
  color: #fff;
}

.uppy-Provider-breadcrumbs button {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
}

.uppy-Provider-breadcrumbs button:hover {
  text-decoration: underline;
}

.uppy-Provider-breadcrumbs button:focus {
  outline: 1px dotted #aaa;
}

.uppy-Provider-breadcrumbs li {
  display: inline-block;
  margin: 0;
}

.uppy-Provider-breadcrumbs li ~ li:before {
  content: "/";
  padding: 0 10px;
}

.uppy-ProviderBrowser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  height: 100%;
}

.uppy-ProviderBrowser-user {
  margin: 16px 0;
}

.uppy-ProviderBrowser-header {
  z-index: 1001;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}

::-webkit-input-placeholder {
  color: hsla(0, 0%, 47%, 0.75);
}

::-moz-placeholder {
  color: hsla(0, 0%, 47%, 0.75);
}

:-ms-input-placeholder {
  color: hsla(0, 0%, 47%, 0.75);
}

.uppy-ProviderBrowser-headerBar {
  line-height: 50px;
  padding-left: 16px;
  z-index: 1001;
}

.uppy-ProviderBrowser-headerBar, .uppy-ProviderBrowser-search {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f9f9f9;
}

.uppy-ProviderBrowser-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  transition: all 0.2s;
}

.uppy-ProviderBrowser-search:not([aria-hidden=true]) {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.uppy-ProviderBrowser-search input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: transparent;
  outline: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 50px;
  border: 0;
  padding: 0 16px;
}

.uppy-ProviderBrowser-searchToggle {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  width: 15px;
  cursor: pointer;
  color: #939393;
  transition: all 0.2s;
}

.uppy-ProviderBrowser-searchToggle:hover {
  color: #000;
}

.uppy-ProviderBrowser-searchClose {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  width: 12px;
  color: #939393;
  transition: all 0.2s;
  position: relative;
  right: 16px;
}

.uppy-ProviderBrowser-searchClose:hover {
  color: #000;
}

.uppy-ProviderBrowser-userLogout {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  margin-right: 16px;
  cursor: pointer;
}

.uppy-ProviderBrowser-userLogout:hover {
  text-decoration: underline;
}

.uppy-Provider-breadcrumbs {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #000;
  font-size: 12px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-left: 16px;
}

.uppy-ProviderBrowser-breadcrumbs span {
  font-size: 16px;
  margin-left: 32px;
}

.uppy-ProviderBrowser-breadcrumbs span.active {
  color: #525252;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
}

.uppy-ProviderBrowser-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.uppy-ProviderBrowser-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-spacing: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uppy-ProviderBrowserItem-inner {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowser-list {
  padding-top: 6px;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem {
  padding: 10px 14px;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img {
  vertical-align: text-top;
  margin-right: 3px;
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox label:before {
  border-color: rgba(82, 82, 82, 0.3);
}

.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox input:checked + label:before {
  border-color: #4a90e2;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowser-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 3px;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowser-list:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem {
  display: inline-block;
  width: 33.3333%;
  position: relative;
  padding: 3px;
  opacity: 0.9;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem--selected {
  opacity: 1;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner {
  width: 100%;
  height: 100%;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox {
  position: absolute;
  top: 8px;
  right: 10px;
  margin-right: 0;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox label:before {
  background-color: #4a90e2;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox input + label {
  opacity: 0;
}

.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox input:checked + label {
  opacity: 1;
}

.uppy-Dashboard--wide .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem {
  width: 20%;
}

.uppy-ProviderBrowserItem-checkbox input {
  opacity: 0;
}

.uppy-ProviderBrowserItem-checkbox {
  position: relative;
  display: inline-block;
  top: -3px;
  margin-right: 25px;
}

.uppy-ProviderBrowserItem-checkbox label {
  display: block;
}

.uppy-ProviderBrowserItem-checkbox label:after, .uppy-ProviderBrowserItem-checkbox label:before {
  position: absolute;
  cursor: pointer;
}

.uppy-ProviderBrowserItem-checkbox label:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  top: 0;
  border: 1px solid #4a90e2;
  background-color: #fff;
  border-radius: 50%;
}

.uppy-ProviderBrowserItem-checkbox label:after {
  content: "";
  display: inline-block;
  height: 5px;
  width: 8px;
  left: 6px;
  top: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.uppy-ProviderBrowserItem-checkbox input + label:after {
  content: none;
}

.uppy-ProviderBrowserItem-checkbox input:checked + label:after {
  content: "";
}

.uppy-ProviderBrowserItem-checkbox input:checked + label:before {
  background-color: #4a90e2;
}

.uppy-ProviderBrowserItem-checkbox input:focus + label:before {
  outline: 5px auto #3b99fc;
}

.uppy-ProviderBrowser-doneBtn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1002;
  width: 50px;
  height: 50px;
}

.uppy-Dashboard--wide .uppy-ProviderBrowser-doneBtn {
  width: 60px;
  height: 60px;
}

.uppy-ProviderBrowser-doneBtn .UppyIcon {
  width: 30px;
  height: 30px;
}

.uppy-Url {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.uppy-Url-input {
  width: 80%;
  height: 50px;
  padding-left: 10px;
  font-size: 15px;
  border: 1px solid hsla(0, 0%, 58%, 0.5);
  border-right: 0;
}

.uppy-Url-importButton {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  width: 100px;
  height: 50px;
  color: #fff;
  background-color: #4a90e2;
  cursor: pointer;
  font-size: 16px;
  padding: 12px;
}

.uppy-ProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  transition: height 0.2s;
}

.uppy-ProgressBar[aria-hidden=true] {
  height: 0;
}

.uppy-ProgressBar-inner {
  background-color: #4a90e2;
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.7);
  height: 100%;
  width: 0;
  transition: width 0.4s ease;
}

.uppy-ProgressBar-percentage {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}

.uppy-StatusBar {
  position: relative;
  height: 30px;
  line-height: 30px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: rgba(82, 82, 82, 0.7);
  box-shadow: 1px 1px 4px 0 rgba(82, 82, 82, 0.3);
  z-index: 1001;
  transition: height 0.2s;
}

.uppy-StatusBar[aria-hidden=true] {
  overflow-y: hidden;
  height: 0;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
  background-color: #7ac824;
}

.uppy-StatusBar.is-error .uppy-StatusBar-progress {
  background-color: #d32f2f;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-content {
  text-align: center;
  padding-left: 0;
}

.uppy-StatusBar:not([aria-hidden=true]).is-waiting {
  background-color: #fff;
  height: 65px;
  line-height: 65px;
}

.uppy-StatusBar-progress {
  background-color: #4a90e2;
  height: 100%;
  position: absolute;
  z-index: 1001;
  transition: background-color, width 0.3s ease-out;
}

.uppy-StatusBar-progress.is-indeterminate {
  background-size: 64px 64px;
  background-image: linear-gradient(45deg, #2275d7 25%, transparent 0, transparent 50%, #2275d7 0, #2275d7 75%, transparent 0, transparent);
  -webkit-animation: b 1s linear infinite;
  animation: b 1s linear infinite;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-progress {
  display: none;
}

@-webkit-keyframes b {
  0% {
    background-position: 64px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes b {
  0% {
    background-position: 64px 0;
  }
  to {
    background-position: 0 0;
  }
}
.uppy-StatusBar-content {
  position: relative;
  z-index: 1002;
  padding-left: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
}

.uppy-StatusBar-statusIndicator {
  color: #fff;
  margin-right: 8px;
}

button.uppy-StatusBar-statusIndicator {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  margin-right: 8px;
  cursor: pointer;
}

.uppy-StatusBar-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  z-index: 1004;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actions {
  left: 20px;
  right: auto;
}

.uppy-StatusBar-actionBtn {
  background: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  padding: 0;
  margin: 0;
  border: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1em;
  font-weight: 400;
  padding: 7px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.uppy-StatusBar-actionBtn:not(:last-child) {
  margin-right: 5px;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn {
  padding: 13px 30px;
  font-size: 15px;
}

.uppy-StatusBar-actionBtn--upload {
  background-color: #fff;
  color: #4a90e2;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  background-color: #4a90e2;
  color: #fff;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover {
  background-color: #1b5dab;
}

.uppy-StatusBar-actionBtn--retry, .uppy-StatusBar-details {
  background-color: #fff;
  color: #d32f2f;
}

.uppy-StatusBar-details {
  line-height: 12px;
  width: 13px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 6px;
  font-size: 10px;
  text-align: center;
}

.uppy-StatusBar-details:after {
  line-height: 1.3;
  word-wrap: break-word;
}

.uppy-Webcam-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.uppy-Webcam-videoContainer {
  width: 100%;
  height: 100%;
}

.uppy-Dashboard--wide .uppy-Webcam-videoContainer {
  height: auto;
}

.uppy-Webcam-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.uppy-Webcam-video--mirrored {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.uppy-Webcam-buttonContainer {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.uppy-Webcam-recordButton .UppyIcon {
  width: 50%;
  height: 50%;
  position: relative;
  top: -1px;
}

.uppy-Webcam-permissons {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  height: 100%;
}

.uppy-Webcam-permissons p {
  line-height: 1.4;
}

.uppy-Webcam-Title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  margin-bottom: 30px;
  padding: 0 15px;
  max-width: 500px;
  text-align: center;
}

/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.9.2
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2020 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2020-05-13T13:55:37.023Z
 */
@-webkit-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@-o-keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    -o-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
@keyframes cm-spin {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    -o-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    -o-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
.bpbm-context-menu-icon-add:before {
  content: "\ea01";
}

.bpbm-context-menu-icon-copy:before {
  content: "\ea02";
}

.bpbm-context-menu-icon-cut:before {
  content: "\ea03";
}

.bpbm-context-menu-icon-delete:before {
  content: "\ea04";
}

.bpbm-context-menu-icon-edit:before {
  content: "\ea05";
}

.bpbm-context-menu-icon-loading:before {
  content: "\ea06";
}

.bpbm-context-menu-icon-paste:before {
  content: "\ea07";
}

.bpbm-context-menu-icon-quit:before {
  content: "\ea08";
}

.bpbm-context-menu-icon::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  font-family: "context-menu-icons";
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: var(--main-bm-color);
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bpbm-context-menu-icon.bpbm-context-menu-hover:before {
  color: #fff;
}

.bpbm-context-menu-icon.bpbm-context-menu-disabled::before {
  color: #bbb;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon-loading:before {
  -webkit-animation: cm-spin 2s infinite;
  -o-animation: cm-spin 2s infinite;
  animation: cm-spin 2s infinite;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  font-family: FontAwesome;
  font-size: 1em;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: var(--main-bm-color);
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa.bpbm-context-menu-hover:before {
  color: #fff;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa.bpbm-context-menu-disabled::before {
  color: #bbb;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 {
  display: list-item;
  font-family: inherit;
  line-height: inherit;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5 svg {
  position: absolute;
  top: 0.3em;
  left: 0.5em;
  color: var(--main-bm-color);
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-hover > i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-hover > svg {
  color: #fff;
}

.bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-disabled i, .bpbm-context-menu-icon.bpbm-context-menu-icon--fa5.bpbm-context-menu-disabled svg {
  color: #bbb;
}

.bpbm-context-menu-list {
  position: absolute !important;
  display: inline-block;
  min-width: 13em;
  max-width: 26em;
  padding: 0.25em 0 !important;
  margin: 0.3em;
  font-family: inherit;
  list-style-type: none;
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0.2em !important;
  box-shadow: 0 1px 1px rgb(0 0 0/8%) !important;
  font-size: 15px;
  line-height: 21px;
}

.bpbm-context-menu-item {
  position: relative;
  box-sizing: content-box !important;
  padding: 0.2em 2em;
  color: #2f2f2f;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  list-style: none;
  margin: 0;
}

.bpbm-context-menu-separator {
  padding: 0;
  margin: 0.35em 0;
  border-bottom: 1px solid #e6e6e6;
}

.bpbm-context-menu-item > label > input,
.bpbm-context-menu-item > label > textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.bpbm-context-menu-item.bpbm-context-menu-hover {
  color: #fff;
  cursor: pointer;
  background-color: var(--main-bm-color);
}

.bpbm-context-menu-item.bpbm-context-menu-disabled {
  color: #bbb;
  cursor: default;
  background-color: #fff;
}

.bpbm-context-menu-input.bpbm-context-menu-hover {
  color: #2f2f2f;
  cursor: default;
}

.bpbm-context-menu-submenu:after {
  position: absolute;
  top: 50%;
  right: 0.5em;
  z-index: 1;
  width: 0;
  height: 0;
  content: "";
  border-color: transparent transparent transparent #2f2f2f;
  border-style: solid;
  border-width: 0.25em 0 0.25em 0.25em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**
 * Inputs
 */
.bpbm-context-menu-item.bpbm-context-menu-input {
  padding: 0.3em 0.6em;
}

/* vertically align inside labels */
.bpbm-context-menu-input > label > * {
  vertical-align: top;
}

/* position checkboxes and radios as icons */
.bpbm-context-menu-input > label > input[type=checkbox],
.bpbm-context-menu-input > label > input[type=radio] {
  position: relative;
  top: 0.12em;
  margin-right: 0.4em;
}

.bpbm-context-menu-input > label {
  margin: 0;
}

.bpbm-context-menu-input > label,
.bpbm-context-menu-input > label > input[type=text],
.bpbm-context-menu-input > label > textarea,
.bpbm-context-menu-input > label > select {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bpbm-context-menu-input > label > textarea {
  height: 7em;
}

.bpbm-context-menu-item > .bpbm-context-menu-list {
  top: 0.3em;
  /* re-positioned by js */
  right: -0.3em;
  display: none;
}

.bpbm-context-menu-item.bpbm-context-menu-visible > .bpbm-context-menu-list {
  display: block;
}

.bpbm-context-menu-accesskey {
  text-decoration: underline;
}

/**
 * bmselectize.css (v0.13.4)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 * Copyright (c) 2020 Bmselectize Team & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 * @author Ris Adams <bmselectize@risadams.com>
 */
.bmselectize-control.plugin-drag_drop.multi > .bmselectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

.bmselectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.bmselectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.bmselectize-control .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.bmselectize-control .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.bmselectize-control .dropdown-header-close:hover {
  color: #000;
}

.bmselectize-dropdown.plugin-optgroup_columns .bmselectize-dropdown-content {
  display: flex;
}

.bmselectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.bmselectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.bmselectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.bmselectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.bmselectize-control.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}

.bmselectize-control.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 6px;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  margin-left: 6px;
}

.bmselectize-control.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.bmselectize-control.plugin-remove_button .item.active .remove {
  border-left-color: #cacaca;
}

.bmselectize-control.plugin-remove_button .disabled .item .remove:hover {
  background: none;
}

.bmselectize-control.plugin-remove_button .disabled .item .remove {
  border-left-color: #fff;
}

.bmselectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.bmselectize-control {
  position: relative;
}

.bmselectize-dropdown, .bmselectize-input, .bmselectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  font-smoothing: inherit;
}

.bmselectize-input, .bmselectize-control.single .bmselectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

.bmselectize-input {
  border: 1px solid #d0d0d0;
  padding: 7px 7px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.bmselectize-control.multi .bmselectize-input.has-items {
  padding: 6px 8px 3px;
}

.bmselectize-input.full {
  background-color: #fff;
}

.bmselectize-input.disabled, .bmselectize-input.disabled * {
  cursor: default !important;
}

.bmselectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.bmselectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

.bmselectize-input > * {
  vertical-align: baseline;
  display: inline-block;
  zoom: 1;
}

.bmselectize-control.multi .bmselectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

.bmselectize-control.multi .bmselectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.bmselectize-control.multi .bmselectize-input.disabled > div, .bmselectize-control.multi .bmselectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #fff;
  border: 0 solid #fff;
}

.bmselectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  user-select: auto !important;
  box-shadow: none !important;
}

.bmselectize-input > input::-ms-clear {
  display: none;
}

.bmselectize-input > input:focus {
  outline: none !important;
}

.bmselectize-input > input[placeholder] {
  box-sizing: initial;
}

.bmselectize-input.has-items > input {
  margin: 0 0px !important;
}

.bmselectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.bmselectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.bmselectize-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -2px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, .1);*/
  border-radius: 0 0 3px 3px;
}

.bmselectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.bmselectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.bmselectize-dropdown .option, .bmselectize-dropdown .optgroup-header, .bmselectize-dropdown .no-results, .bmselectize-dropdown .create {
  padding: 5px 8px;
}

.bmselectize-dropdown .option, .bmselectize-dropdown [data-disabled], .bmselectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.bmselectize-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}

.bmselectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.bmselectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

.bmselectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.bmselectize-dropdown .active.create {
  color: #495c68;
}

.bmselectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.bmselectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  overflow-scrolling: touch;
}

.bmselectize-dropdown-emptyoptionlabel {
  text-align: center;
}

.bmselectize-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}

.bmselectize-dropdown .spinner:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bmselectize-control.single .bmselectize-input, .bmselectize-control.single .bmselectize-input input {
  cursor: pointer;
}

.bmselectize-control.single .bmselectize-input.input-active, .bmselectize-control.single .bmselectize-input.input-active input {
  cursor: text;
}

.bmselectize-control.single .bmselectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: gray transparent transparent transparent;
}

.bmselectize-control.single .bmselectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent gray transparent;
}

.bmselectize-control.rtl {
  text-align: right;
}

.bmselectize-control.rtl.single .bmselectize-input:after {
  left: 15px;
  right: auto;
}

.bmselectize-control.rtl .bmselectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.bmselectize-control .bmselectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

/*!
 * BM Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */
.youzify .bp-messages-wrap i.fas {
  font-family: "BM Font Awesome 6 Free" !important;
}

.bp-messages-wrap {
  /* BM Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  readers do not read off random characters that represent icons */
}
.bp-messages-wrap i.fa,
.bp-messages-wrap i.fas,
.bp-messages-wrap i.fa-solid,
.bp-messages-wrap i.far,
.bp-messages-wrap i.fa-regular,
.bp-messages-wrap i.fal,
.bp-messages-wrap i.fa-light,
.bp-messages-wrap i.fat,
.bp-messages-wrap i.fa-thin,
.bp-messages-wrap i.fad,
.bp-messages-wrap i.fa-duotone,
.bp-messages-wrap i.fab,
.bp-messages-wrap i.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-family: "BM Font Awesome 6 Free";
  font-style: normal !important;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.bp-messages-wrap i.fas {
  font-weight: bold;
}
.bp-messages-wrap i.far {
  font-weight: 400;
}
.bp-messages-wrap .fa-1x {
  font-size: 1em;
}
.bp-messages-wrap .fa-2x {
  font-size: 2em;
}
.bp-messages-wrap .fa-3x {
  font-size: 3em;
}
.bp-messages-wrap .fa-4x {
  font-size: 4em;
}
.bp-messages-wrap .fa-5x {
  font-size: 5em;
}
.bp-messages-wrap .fa-6x {
  font-size: 6em;
}
.bp-messages-wrap .fa-7x {
  font-size: 7em;
}
.bp-messages-wrap .fa-8x {
  font-size: 8em;
}
.bp-messages-wrap .fa-9x {
  font-size: 9em;
}
.bp-messages-wrap .fa-10x {
  font-size: 10em;
}
.bp-messages-wrap .fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}
.bp-messages-wrap .fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em;
}
.bp-messages-wrap .fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em;
}
.bp-messages-wrap .fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}
.bp-messages-wrap .fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em;
}
.bp-messages-wrap .fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}
.bp-messages-wrap .fa-fw {
  text-align: center;
  width: 1.25em;
}
.bp-messages-wrap .fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.bp-messages-wrap .fa-ul > li {
  position: relative;
}
.bp-messages-wrap .fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}
.bp-messages-wrap .fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.bp-messages-wrap .fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}
.bp-messages-wrap .fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}
.bp-messages-wrap .fa-beat {
  -webkit-animation-name: fa-beat;
  animation-name: fa-beat;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.bp-messages-wrap .fa-bounce {
  -webkit-animation-name: fa-bounce;
  animation-name: fa-bounce;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.bp-messages-wrap .fa-fade {
  -webkit-animation-name: fa-fade;
  animation-name: fa-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.bp-messages-wrap .fa-beat-fade {
  -webkit-animation-name: fa-beat-fade;
  animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.bp-messages-wrap .fa-flip {
  -webkit-animation-name: fa-flip;
  animation-name: fa-flip;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.bp-messages-wrap .fa-shake {
  -webkit-animation-name: fa-shake;
  animation-name: fa-shake;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear);
}
.bp-messages-wrap .fa-spin {
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 2s);
  animation-duration: var(--fa-animation-duration, 2s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, linear);
  animation-timing-function: var(--fa-animation-timing, linear);
}
.bp-messages-wrap .fa-spin-reverse {
  --fa-animation-direction: reverse;
}
.bp-messages-wrap .fa-pulse,
.bp-messages-wrap .fa-spin-pulse {
  -webkit-animation-name: fa-spin;
  animation-name: fa-spin;
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));
  animation-timing-function: var(--fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce) {
  .bp-messages-wrap .fa-beat,
.bp-messages-wrap .fa-bounce,
.bp-messages-wrap .fa-fade,
.bp-messages-wrap .fa-beat-fade,
.bp-messages-wrap .fa-flip,
.bp-messages-wrap .fa-pulse,
.bp-messages-wrap .fa-shake,
.bp-messages-wrap .fa-spin,
.bp-messages-wrap .fa-spin-pulse {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-beat {
  0%, 90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  45% {
    -webkit-transform: scale(var(--fa-beat-scale, 1.25));
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@-webkit-keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-bounce {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
  }
  10% {
    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
    transform: scale(1, 1) translateY(0);
  }
}
@-webkit-keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@-webkit-keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@-webkit-keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-flip {
  50% {
    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@-webkit-keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes fa-shake {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  4% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  8%, 24% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }
  12%, 28% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }
  16% {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg);
  }
  20% {
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg);
  }
  32% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }
  36% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
  }
  40%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bp-messages-wrap .fa-rotate-90 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.bp-messages-wrap .fa-rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.bp-messages-wrap .fa-rotate-270 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.bp-messages-wrap .fa-flip-horizontal {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.bp-messages-wrap .fa-flip-vertical {
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
.bp-messages-wrap .fa-flip-both,
.bp-messages-wrap .fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1, -1);
  transform: scale(-1, -1);
}
.bp-messages-wrap .fa-rotate-by {
  -webkit-transform: rotate(var(--fa-rotate-angle, none));
  transform: rotate(var(--fa-rotate-angle, none));
}
.bp-messages-wrap .fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.bp-messages-wrap .fa-stack-1x,
.bp-messages-wrap .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
  line-height: inherit !important;
}
.bp-messages-wrap .fa-stack-1x {
  line-height: inherit !important;
}
.bp-messages-wrap .fa-stack-2x {
  font-size: 2em;
}
.bp-messages-wrap .fa-inverse {
  color: var(--fa-inverse, #fff);
}
.bp-messages-wrap .fa-0::before {
  content: "0";
}
.bp-messages-wrap .fa-1::before {
  content: "1";
}
.bp-messages-wrap .fa-2::before {
  content: "2";
}
.bp-messages-wrap .fa-3::before {
  content: "3";
}
.bp-messages-wrap .fa-4::before {
  content: "4";
}
.bp-messages-wrap .fa-5::before {
  content: "5";
}
.bp-messages-wrap .fa-6::before {
  content: "6";
}
.bp-messages-wrap .fa-7::before {
  content: "7";
}
.bp-messages-wrap .fa-8::before {
  content: "8";
}
.bp-messages-wrap .fa-9::before {
  content: "9";
}
.bp-messages-wrap .fa-a::before {
  content: "A";
}
.bp-messages-wrap .fa-address-book::before {
  content: "\f2b9";
}
.bp-messages-wrap .fa-contact-book::before {
  content: "\f2b9";
}
.bp-messages-wrap .fa-address-card::before {
  content: "\f2bb";
}
.bp-messages-wrap .fa-contact-card::before {
  content: "\f2bb";
}
.bp-messages-wrap .fa-vcard::before {
  content: "\f2bb";
}
.bp-messages-wrap .fa-align-center::before {
  content: "\f037";
}
.bp-messages-wrap .fa-align-justify::before {
  content: "\f039";
}
.bp-messages-wrap .fa-align-left::before {
  content: "\f036";
}
.bp-messages-wrap .fa-align-right::before {
  content: "\f038";
}
.bp-messages-wrap .fa-anchor::before {
  content: "\f13d";
}
.bp-messages-wrap .fa-anchor-circle-check::before {
  content: "\e4aa";
}
.bp-messages-wrap .fa-anchor-circle-exclamation::before {
  content: "\e4ab";
}
.bp-messages-wrap .fa-anchor-circle-xmark::before {
  content: "\e4ac";
}
.bp-messages-wrap .fa-anchor-lock::before {
  content: "\e4ad";
}
.bp-messages-wrap .fa-angle-down::before {
  content: "\f107";
}
.bp-messages-wrap .fa-angle-left::before {
  content: "\f104";
}
.bp-messages-wrap .fa-angle-right::before {
  content: "\f105";
}
.bp-messages-wrap .fa-angle-up::before {
  content: "\f106";
}
.bp-messages-wrap .fa-angles-down::before {
  content: "\f103";
}
.bp-messages-wrap .fa-angle-double-down::before {
  content: "\f103";
}
.bp-messages-wrap .fa-angles-left::before {
  content: "\f100";
}
.bp-messages-wrap .fa-angle-double-left::before {
  content: "\f100";
}
.bp-messages-wrap .fa-angles-right::before {
  content: "\f101";
}
.bp-messages-wrap .fa-angle-double-right::before {
  content: "\f101";
}
.bp-messages-wrap .fa-angles-up::before {
  content: "\f102";
}
.bp-messages-wrap .fa-angle-double-up::before {
  content: "\f102";
}
.bp-messages-wrap .fa-ankh::before {
  content: "\f644";
}
.bp-messages-wrap .fa-apple-whole::before {
  content: "\f5d1";
}
.bp-messages-wrap .fa-apple-alt::before {
  content: "\f5d1";
}
.bp-messages-wrap .fa-archway::before {
  content: "\f557";
}
.bp-messages-wrap .fa-arrow-down::before {
  content: "\f063";
}
.bp-messages-wrap .fa-arrow-down-1-9::before {
  content: "\f162";
}
.bp-messages-wrap .fa-sort-numeric-asc::before {
  content: "\f162";
}
.bp-messages-wrap .fa-sort-numeric-down::before {
  content: "\f162";
}
.bp-messages-wrap .fa-arrow-down-9-1::before {
  content: "\f886";
}
.bp-messages-wrap .fa-sort-numeric-desc::before {
  content: "\f886";
}
.bp-messages-wrap .fa-sort-numeric-down-alt::before {
  content: "\f886";
}
.bp-messages-wrap .fa-arrow-down-a-z::before {
  content: "\f15d";
}
.bp-messages-wrap .fa-sort-alpha-asc::before {
  content: "\f15d";
}
.bp-messages-wrap .fa-sort-alpha-down::before {
  content: "\f15d";
}
.bp-messages-wrap .fa-arrow-down-long::before {
  content: "\f175";
}
.bp-messages-wrap .fa-long-arrow-down::before {
  content: "\f175";
}
.bp-messages-wrap .fa-arrow-down-short-wide::before {
  content: "\f884";
}
.bp-messages-wrap .fa-sort-amount-desc::before {
  content: "\f884";
}
.bp-messages-wrap .fa-sort-amount-down-alt::before {
  content: "\f884";
}
.bp-messages-wrap .fa-arrow-down-up-across-line::before {
  content: "\e4af";
}
.bp-messages-wrap .fa-arrow-down-up-lock::before {
  content: "\e4b0";
}
.bp-messages-wrap .fa-arrow-down-wide-short::before {
  content: "\f160";
}
.bp-messages-wrap .fa-sort-amount-asc::before {
  content: "\f160";
}
.bp-messages-wrap .fa-sort-amount-down::before {
  content: "\f160";
}
.bp-messages-wrap .fa-arrow-down-z-a::before {
  content: "\f881";
}
.bp-messages-wrap .fa-sort-alpha-desc::before {
  content: "\f881";
}
.bp-messages-wrap .fa-sort-alpha-down-alt::before {
  content: "\f881";
}
.bp-messages-wrap .fa-arrow-left::before {
  content: "\f060";
}
.bp-messages-wrap .fa-arrow-left-long::before {
  content: "\f177";
}
.bp-messages-wrap .fa-long-arrow-left::before {
  content: "\f177";
}
.bp-messages-wrap .fa-arrow-pointer::before {
  content: "\f245";
}
.bp-messages-wrap .fa-mouse-pointer::before {
  content: "\f245";
}
.bp-messages-wrap .fa-arrow-right::before {
  content: "\f061";
}
.bp-messages-wrap .fa-arrow-right-arrow-left::before {
  content: "\f0ec";
}
.bp-messages-wrap .fa-exchange::before {
  content: "\f0ec";
}
.bp-messages-wrap .fa-arrow-right-from-bracket::before {
  content: "\f08b";
}
.bp-messages-wrap .fa-sign-out::before {
  content: "\f08b";
}
.bp-messages-wrap .fa-arrow-right-long::before {
  content: "\f178";
}
.bp-messages-wrap .fa-long-arrow-right::before {
  content: "\f178";
}
.bp-messages-wrap .fa-arrow-right-to-bracket::before {
  content: "\f090";
}
.bp-messages-wrap .fa-sign-in::before {
  content: "\f090";
}
.bp-messages-wrap .fa-arrow-right-to-city::before {
  content: "\e4b3";
}
.bp-messages-wrap .fa-arrow-rotate-left::before {
  content: "\f0e2";
}
.bp-messages-wrap .fa-arrow-left-rotate::before {
  content: "\f0e2";
}
.bp-messages-wrap .fa-arrow-rotate-back::before {
  content: "\f0e2";
}
.bp-messages-wrap .fa-arrow-rotate-backward::before {
  content: "\f0e2";
}
.bp-messages-wrap .fa-undo::before {
  content: "\f0e2";
}
.bp-messages-wrap .fa-arrow-rotate-right::before {
  content: "\f01e";
}
.bp-messages-wrap .fa-arrow-right-rotate::before {
  content: "\f01e";
}
.bp-messages-wrap .fa-arrow-rotate-forward::before {
  content: "\f01e";
}
.bp-messages-wrap .fa-redo::before {
  content: "\f01e";
}
.bp-messages-wrap .fa-arrow-trend-down::before {
  content: "\e097";
}
.bp-messages-wrap .fa-arrow-trend-up::before {
  content: "\e098";
}
.bp-messages-wrap .fa-arrow-turn-down::before {
  content: "\f149";
}
.bp-messages-wrap .fa-level-down::before {
  content: "\f149";
}
.bp-messages-wrap .fa-arrow-turn-up::before {
  content: "\f148";
}
.bp-messages-wrap .fa-level-up::before {
  content: "\f148";
}
.bp-messages-wrap .fa-arrow-up::before {
  content: "\f062";
}
.bp-messages-wrap .fa-arrow-up-1-9::before {
  content: "\f163";
}
.bp-messages-wrap .fa-sort-numeric-up::before {
  content: "\f163";
}
.bp-messages-wrap .fa-arrow-up-9-1::before {
  content: "\f887";
}
.bp-messages-wrap .fa-sort-numeric-up-alt::before {
  content: "\f887";
}
.bp-messages-wrap .fa-arrow-up-a-z::before {
  content: "\f15e";
}
.bp-messages-wrap .fa-sort-alpha-up::before {
  content: "\f15e";
}
.bp-messages-wrap .fa-arrow-up-from-bracket::before {
  content: "\e09a";
}
.bp-messages-wrap .fa-arrow-up-from-ground-water::before {
  content: "\e4b5";
}
.bp-messages-wrap .fa-arrow-up-from-water-pump::before {
  content: "\e4b6";
}
.bp-messages-wrap .fa-arrow-up-long::before {
  content: "\f176";
}
.bp-messages-wrap .fa-long-arrow-up::before {
  content: "\f176";
}
.bp-messages-wrap .fa-arrow-up-right-dots::before {
  content: "\e4b7";
}
.bp-messages-wrap .fa-arrow-up-right-from-square::before {
  content: "\f08e";
}
.bp-messages-wrap .fa-external-link::before {
  content: "\f08e";
}
.bp-messages-wrap .fa-arrow-up-short-wide::before {
  content: "\f885";
}
.bp-messages-wrap .fa-sort-amount-up-alt::before {
  content: "\f885";
}
.bp-messages-wrap .fa-arrow-up-wide-short::before {
  content: "\f161";
}
.bp-messages-wrap .fa-sort-amount-up::before {
  content: "\f161";
}
.bp-messages-wrap .fa-arrow-up-z-a::before {
  content: "\f882";
}
.bp-messages-wrap .fa-sort-alpha-up-alt::before {
  content: "\f882";
}
.bp-messages-wrap .fa-arrows-down-to-line::before {
  content: "\e4b8";
}
.bp-messages-wrap .fa-arrows-down-to-people::before {
  content: "\e4b9";
}
.bp-messages-wrap .fa-arrows-left-right::before {
  content: "\f07e";
}
.bp-messages-wrap .fa-arrows-h::before {
  content: "\f07e";
}
.bp-messages-wrap .fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}
.bp-messages-wrap .fa-arrows-rotate::before {
  content: "\f021";
}
.bp-messages-wrap .fa-refresh::before {
  content: "\f021";
}
.bp-messages-wrap .fa-sync::before {
  content: "\f021";
}
.bp-messages-wrap .fa-arrows-spin::before {
  content: "\e4bb";
}
.bp-messages-wrap .fa-arrows-split-up-and-left::before {
  content: "\e4bc";
}
.bp-messages-wrap .fa-arrows-to-circle::before {
  content: "\e4bd";
}
.bp-messages-wrap .fa-arrows-to-dot::before {
  content: "\e4be";
}
.bp-messages-wrap .fa-arrows-to-eye::before {
  content: "\e4bf";
}
.bp-messages-wrap .fa-arrows-turn-right::before {
  content: "\e4c0";
}
.bp-messages-wrap .fa-arrows-turn-to-dots::before {
  content: "\e4c1";
}
.bp-messages-wrap .fa-arrows-up-down::before {
  content: "\f07d";
}
.bp-messages-wrap .fa-arrows-v::before {
  content: "\f07d";
}
.bp-messages-wrap .fa-arrows-up-down-left-right::before {
  content: "\f047";
}
.bp-messages-wrap .fa-arrows::before {
  content: "\f047";
}
.bp-messages-wrap .fa-arrows-up-to-line::before {
  content: "\e4c2";
}
.bp-messages-wrap .fa-asterisk::before {
  content: "*";
}
.bp-messages-wrap .fa-at::before {
  content: "@";
}
.bp-messages-wrap .fa-atom::before {
  content: "\f5d2";
}
.bp-messages-wrap .fa-audio-description::before {
  content: "\f29e";
}
.bp-messages-wrap .fa-austral-sign::before {
  content: "\e0a9";
}
.bp-messages-wrap .fa-award::before {
  content: "\f559";
}
.bp-messages-wrap .fa-b::before {
  content: "B";
}
.bp-messages-wrap .fa-baby::before {
  content: "\f77c";
}
.bp-messages-wrap .fa-baby-carriage::before {
  content: "\f77d";
}
.bp-messages-wrap .fa-carriage-baby::before {
  content: "\f77d";
}
.bp-messages-wrap .fa-backward::before {
  content: "\f04a";
}
.bp-messages-wrap .fa-backward-fast::before {
  content: "\f049";
}
.bp-messages-wrap .fa-fast-backward::before {
  content: "\f049";
}
.bp-messages-wrap .fa-backward-step::before {
  content: "\f048";
}
.bp-messages-wrap .fa-step-backward::before {
  content: "\f048";
}
.bp-messages-wrap .fa-bacon::before {
  content: "\f7e5";
}
.bp-messages-wrap .fa-bacteria::before {
  content: "\e059";
}
.bp-messages-wrap .fa-bacterium::before {
  content: "\e05a";
}
.bp-messages-wrap .fa-bag-shopping::before {
  content: "\f290";
}
.bp-messages-wrap .fa-shopping-bag::before {
  content: "\f290";
}
.bp-messages-wrap .fa-bahai::before {
  content: "\f666";
}
.bp-messages-wrap .fa-baht-sign::before {
  content: "\e0ac";
}
.bp-messages-wrap .fa-ban::before {
  content: "\f05e";
}
.bp-messages-wrap .fa-cancel::before {
  content: "\f05e";
}
.bp-messages-wrap .fa-ban-smoking::before {
  content: "\f54d";
}
.bp-messages-wrap .fa-smoking-ban::before {
  content: "\f54d";
}
.bp-messages-wrap .fa-bandage::before {
  content: "\f462";
}
.bp-messages-wrap .fa-band-aid::before {
  content: "\f462";
}
.bp-messages-wrap .fa-barcode::before {
  content: "\f02a";
}
.bp-messages-wrap .fa-bars::before {
  content: "\f0c9";
}
.bp-messages-wrap .fa-navicon::before {
  content: "\f0c9";
}
.bp-messages-wrap .fa-bars-progress::before {
  content: "\f828";
}
.bp-messages-wrap .fa-tasks-alt::before {
  content: "\f828";
}
.bp-messages-wrap .fa-bars-staggered::before {
  content: "\f550";
}
.bp-messages-wrap .fa-reorder::before {
  content: "\f550";
}
.bp-messages-wrap .fa-stream::before {
  content: "\f550";
}
.bp-messages-wrap .fa-baseball::before {
  content: "\f433";
}
.bp-messages-wrap .fa-baseball-ball::before {
  content: "\f433";
}
.bp-messages-wrap .fa-baseball-bat-ball::before {
  content: "\f432";
}
.bp-messages-wrap .fa-basket-shopping::before {
  content: "\f291";
}
.bp-messages-wrap .fa-shopping-basket::before {
  content: "\f291";
}
.bp-messages-wrap .fa-basketball::before {
  content: "\f434";
}
.bp-messages-wrap .fa-basketball-ball::before {
  content: "\f434";
}
.bp-messages-wrap .fa-bath::before {
  content: "\f2cd";
}
.bp-messages-wrap .fa-bathtub::before {
  content: "\f2cd";
}
.bp-messages-wrap .fa-battery-empty::before {
  content: "\f244";
}
.bp-messages-wrap .fa-battery-0::before {
  content: "\f244";
}
.bp-messages-wrap .fa-battery-full::before {
  content: "\f240";
}
.bp-messages-wrap .fa-battery::before {
  content: "\f240";
}
.bp-messages-wrap .fa-battery-5::before {
  content: "\f240";
}
.bp-messages-wrap .fa-battery-half::before {
  content: "\f242";
}
.bp-messages-wrap .fa-battery-3::before {
  content: "\f242";
}
.bp-messages-wrap .fa-battery-quarter::before {
  content: "\f243";
}
.bp-messages-wrap .fa-battery-2::before {
  content: "\f243";
}
.bp-messages-wrap .fa-battery-three-quarters::before {
  content: "\f241";
}
.bp-messages-wrap .fa-battery-4::before {
  content: "\f241";
}
.bp-messages-wrap .fa-bed::before {
  content: "\f236";
}
.bp-messages-wrap .fa-bed-pulse::before {
  content: "\f487";
}
.bp-messages-wrap .fa-procedures::before {
  content: "\f487";
}
.bp-messages-wrap .fa-beer-mug-empty::before {
  content: "\f0fc";
}
.bp-messages-wrap .fa-beer::before {
  content: "\f0fc";
}
.bp-messages-wrap .fa-bell::before {
  content: "\f0f3";
}
.bp-messages-wrap .fa-bell-concierge::before {
  content: "\f562";
}
.bp-messages-wrap .fa-concierge-bell::before {
  content: "\f562";
}
.bp-messages-wrap .fa-bell-slash::before {
  content: "\f1f6";
}
.bp-messages-wrap .fa-bezier-curve::before {
  content: "\f55b";
}
.bp-messages-wrap .fa-bicycle::before {
  content: "\f206";
}
.bp-messages-wrap .fa-binoculars::before {
  content: "\f1e5";
}
.bp-messages-wrap .fa-biohazard::before {
  content: "\f780";
}
.bp-messages-wrap .fa-bitcoin-sign::before {
  content: "\e0b4";
}
.bp-messages-wrap .fa-blender::before {
  content: "\f517";
}
.bp-messages-wrap .fa-blender-phone::before {
  content: "\f6b6";
}
.bp-messages-wrap .fa-blog::before {
  content: "\f781";
}
.bp-messages-wrap .fa-bold::before {
  content: "\f032";
}
.bp-messages-wrap .fa-bolt::before {
  content: "\f0e7";
}
.bp-messages-wrap .fa-zap::before {
  content: "\f0e7";
}
.bp-messages-wrap .fa-bolt-lightning::before {
  content: "\e0b7";
}
.bp-messages-wrap .fa-bomb::before {
  content: "\f1e2";
}
.bp-messages-wrap .fa-bone::before {
  content: "\f5d7";
}
.bp-messages-wrap .fa-bong::before {
  content: "\f55c";
}
.bp-messages-wrap .fa-book::before {
  content: "\f02d";
}
.bp-messages-wrap .fa-book-atlas::before {
  content: "\f558";
}
.bp-messages-wrap .fa-atlas::before {
  content: "\f558";
}
.bp-messages-wrap .fa-book-bible::before {
  content: "\f647";
}
.bp-messages-wrap .fa-bible::before {
  content: "\f647";
}
.bp-messages-wrap .fa-book-bookmark::before {
  content: "\e0bb";
}
.bp-messages-wrap .fa-book-journal-whills::before {
  content: "\f66a";
}
.bp-messages-wrap .fa-journal-whills::before {
  content: "\f66a";
}
.bp-messages-wrap .fa-book-medical::before {
  content: "\f7e6";
}
.bp-messages-wrap .fa-book-open::before {
  content: "\f518";
}
.bp-messages-wrap .fa-book-open-reader::before {
  content: "\f5da";
}
.bp-messages-wrap .fa-book-reader::before {
  content: "\f5da";
}
.bp-messages-wrap .fa-book-quran::before {
  content: "\f687";
}
.bp-messages-wrap .fa-quran::before {
  content: "\f687";
}
.bp-messages-wrap .fa-book-skull::before {
  content: "\f6b7";
}
.bp-messages-wrap .fa-book-dead::before {
  content: "\f6b7";
}
.bp-messages-wrap .fa-bookmark::before {
  content: "\f02e";
}
.bp-messages-wrap .fa-border-all::before {
  content: "\f84c";
}
.bp-messages-wrap .fa-border-none::before {
  content: "\f850";
}
.bp-messages-wrap .fa-border-top-left::before {
  content: "\f853";
}
.bp-messages-wrap .fa-border-style::before {
  content: "\f853";
}
.bp-messages-wrap .fa-bore-hole::before {
  content: "\e4c3";
}
.bp-messages-wrap .fa-bottle-droplet::before {
  content: "\e4c4";
}
.bp-messages-wrap .fa-bottle-water::before {
  content: "\e4c5";
}
.bp-messages-wrap .fa-bowl-food::before {
  content: "\e4c6";
}
.bp-messages-wrap .fa-bowl-rice::before {
  content: "\e2eb";
}
.bp-messages-wrap .fa-bowling-ball::before {
  content: "\f436";
}
.bp-messages-wrap .fa-box::before {
  content: "\f466";
}
.bp-messages-wrap .fa-box-archive::before {
  content: "\f187";
}
.bp-messages-wrap .fa-archive::before {
  content: "\f187";
}
.bp-messages-wrap .fa-box-open::before {
  content: "\f49e";
}
.bp-messages-wrap .fa-box-tissue::before {
  content: "\e05b";
}
.bp-messages-wrap .fa-boxes-packing::before {
  content: "\e4c7";
}
.bp-messages-wrap .fa-boxes-stacked::before {
  content: "\f468";
}
.bp-messages-wrap .fa-boxes::before {
  content: "\f468";
}
.bp-messages-wrap .fa-boxes-alt::before {
  content: "\f468";
}
.bp-messages-wrap .fa-braille::before {
  content: "\f2a1";
}
.bp-messages-wrap .fa-brain::before {
  content: "\f5dc";
}
.bp-messages-wrap .fa-brazilian-real-sign::before {
  content: "\e46c";
}
.bp-messages-wrap .fa-bread-slice::before {
  content: "\f7ec";
}
.bp-messages-wrap .fa-bridge::before {
  content: "\e4c8";
}
.bp-messages-wrap .fa-bridge-circle-check::before {
  content: "\e4c9";
}
.bp-messages-wrap .fa-bridge-circle-exclamation::before {
  content: "\e4ca";
}
.bp-messages-wrap .fa-bridge-circle-xmark::before {
  content: "\e4cb";
}
.bp-messages-wrap .fa-bridge-lock::before {
  content: "\e4cc";
}
.bp-messages-wrap .fa-bridge-water::before {
  content: "\e4ce";
}
.bp-messages-wrap .fa-briefcase::before {
  content: "\f0b1";
}
.bp-messages-wrap .fa-briefcase-medical::before {
  content: "\f469";
}
.bp-messages-wrap .fa-broom::before {
  content: "\f51a";
}
.bp-messages-wrap .fa-broom-ball::before {
  content: "\f458";
}
.bp-messages-wrap .fa-quidditch::before {
  content: "\f458";
}
.bp-messages-wrap .fa-quidditch-broom-ball::before {
  content: "\f458";
}
.bp-messages-wrap .fa-brush::before {
  content: "\f55d";
}
.bp-messages-wrap .fa-bucket::before {
  content: "\e4cf";
}
.bp-messages-wrap .fa-bug::before {
  content: "\f188";
}
.bp-messages-wrap .fa-bug-slash::before {
  content: "\e490";
}
.bp-messages-wrap .fa-bugs::before {
  content: "\e4d0";
}
.bp-messages-wrap .fa-building::before {
  content: "\f1ad";
}
.bp-messages-wrap .fa-building-circle-arrow-right::before {
  content: "\e4d1";
}
.bp-messages-wrap .fa-building-circle-check::before {
  content: "\e4d2";
}
.bp-messages-wrap .fa-building-circle-exclamation::before {
  content: "\e4d3";
}
.bp-messages-wrap .fa-building-circle-xmark::before {
  content: "\e4d4";
}
.bp-messages-wrap .fa-building-columns::before {
  content: "\f19c";
}
.bp-messages-wrap .fa-bank::before {
  content: "\f19c";
}
.bp-messages-wrap .fa-institution::before {
  content: "\f19c";
}
.bp-messages-wrap .fa-museum::before {
  content: "\f19c";
}
.bp-messages-wrap .fa-university::before {
  content: "\f19c";
}
.bp-messages-wrap .fa-building-flag::before {
  content: "\e4d5";
}
.bp-messages-wrap .fa-building-lock::before {
  content: "\e4d6";
}
.bp-messages-wrap .fa-building-ngo::before {
  content: "\e4d7";
}
.bp-messages-wrap .fa-building-shield::before {
  content: "\e4d8";
}
.bp-messages-wrap .fa-building-un::before {
  content: "\e4d9";
}
.bp-messages-wrap .fa-building-user::before {
  content: "\e4da";
}
.bp-messages-wrap .fa-building-wheat::before {
  content: "\e4db";
}
.bp-messages-wrap .fa-bullhorn::before {
  content: "\f0a1";
}
.bp-messages-wrap .fa-bullseye::before {
  content: "\f140";
}
.bp-messages-wrap .fa-burger::before {
  content: "\f805";
}
.bp-messages-wrap .fa-hamburger::before {
  content: "\f805";
}
.bp-messages-wrap .fa-burst::before {
  content: "\e4dc";
}
.bp-messages-wrap .fa-bus::before {
  content: "\f207";
}
.bp-messages-wrap .fa-bus-simple::before {
  content: "\f55e";
}
.bp-messages-wrap .fa-bus-alt::before {
  content: "\f55e";
}
.bp-messages-wrap .fa-business-time::before {
  content: "\f64a";
}
.bp-messages-wrap .fa-briefcase-clock::before {
  content: "\f64a";
}
.bp-messages-wrap .fa-c::before {
  content: "C";
}
.bp-messages-wrap .fa-cake-candles::before {
  content: "\f1fd";
}
.bp-messages-wrap .fa-birthday-cake::before {
  content: "\f1fd";
}
.bp-messages-wrap .fa-cake::before {
  content: "\f1fd";
}
.bp-messages-wrap .fa-calculator::before {
  content: "\f1ec";
}
.bp-messages-wrap .fa-calendar::before {
  content: "\f133";
}
.bp-messages-wrap .fa-calendar-check::before {
  content: "\f274";
}
.bp-messages-wrap .fa-calendar-day::before {
  content: "\f783";
}
.bp-messages-wrap .fa-calendar-days::before {
  content: "\f073";
}
.bp-messages-wrap .fa-calendar-alt::before {
  content: "\f073";
}
.bp-messages-wrap .fa-calendar-minus::before {
  content: "\f272";
}
.bp-messages-wrap .fa-calendar-plus::before {
  content: "\f271";
}
.bp-messages-wrap .fa-calendar-week::before {
  content: "\f784";
}
.bp-messages-wrap .fa-calendar-xmark::before {
  content: "\f273";
}
.bp-messages-wrap .fa-calendar-times::before {
  content: "\f273";
}
.bp-messages-wrap .fa-camera::before {
  content: "\f030";
}
.bp-messages-wrap .fa-camera-alt::before {
  content: "\f030";
}
.bp-messages-wrap .fa-camera-retro::before {
  content: "\f083";
}
.bp-messages-wrap .fa-camera-rotate::before {
  content: "\e0d8";
}
.bp-messages-wrap .fa-campground::before {
  content: "\f6bb";
}
.bp-messages-wrap .fa-candy-cane::before {
  content: "\f786";
}
.bp-messages-wrap .fa-cannabis::before {
  content: "\f55f";
}
.bp-messages-wrap .fa-capsules::before {
  content: "\f46b";
}
.bp-messages-wrap .fa-car::before {
  content: "\f1b9";
}
.bp-messages-wrap .fa-automobile::before {
  content: "\f1b9";
}
.bp-messages-wrap .fa-car-battery::before {
  content: "\f5df";
}
.bp-messages-wrap .fa-battery-car::before {
  content: "\f5df";
}
.bp-messages-wrap .fa-car-burst::before {
  content: "\f5e1";
}
.bp-messages-wrap .fa-car-crash::before {
  content: "\f5e1";
}
.bp-messages-wrap .fa-car-on::before {
  content: "\e4dd";
}
.bp-messages-wrap .fa-car-rear::before {
  content: "\f5de";
}
.bp-messages-wrap .fa-car-alt::before {
  content: "\f5de";
}
.bp-messages-wrap .fa-car-side::before {
  content: "\f5e4";
}
.bp-messages-wrap .fa-car-tunnel::before {
  content: "\e4de";
}
.bp-messages-wrap .fa-caravan::before {
  content: "\f8ff";
}
.bp-messages-wrap .fa-caret-down::before {
  content: "\f0d7";
}
.bp-messages-wrap .fa-caret-left::before {
  content: "\f0d9";
}
.bp-messages-wrap .fa-caret-right::before {
  content: "\f0da";
}
.bp-messages-wrap .fa-caret-up::before {
  content: "\f0d8";
}
.bp-messages-wrap .fa-carrot::before {
  content: "\f787";
}
.bp-messages-wrap .fa-cart-arrow-down::before {
  content: "\f218";
}
.bp-messages-wrap .fa-cart-flatbed::before {
  content: "\f474";
}
.bp-messages-wrap .fa-dolly-flatbed::before {
  content: "\f474";
}
.bp-messages-wrap .fa-cart-flatbed-suitcase::before {
  content: "\f59d";
}
.bp-messages-wrap .fa-luggage-cart::before {
  content: "\f59d";
}
.bp-messages-wrap .fa-cart-plus::before {
  content: "\f217";
}
.bp-messages-wrap .fa-cart-shopping::before {
  content: "\f07a";
}
.bp-messages-wrap .fa-shopping-cart::before {
  content: "\f07a";
}
.bp-messages-wrap .fa-cash-register::before {
  content: "\f788";
}
.bp-messages-wrap .fa-cat::before {
  content: "\f6be";
}
.bp-messages-wrap .fa-cedi-sign::before {
  content: "\e0df";
}
.bp-messages-wrap .fa-cent-sign::before {
  content: "\e3f5";
}
.bp-messages-wrap .fa-certificate::before {
  content: "\f0a3";
}
.bp-messages-wrap .fa-chair::before {
  content: "\f6c0";
}
.bp-messages-wrap .fa-chalkboard::before {
  content: "\f51b";
}
.bp-messages-wrap .fa-blackboard::before {
  content: "\f51b";
}
.bp-messages-wrap .fa-chalkboard-user::before {
  content: "\f51c";
}
.bp-messages-wrap .fa-chalkboard-teacher::before {
  content: "\f51c";
}
.bp-messages-wrap .fa-champagne-glasses::before {
  content: "\f79f";
}
.bp-messages-wrap .fa-glass-cheers::before {
  content: "\f79f";
}
.bp-messages-wrap .fa-charging-station::before {
  content: "\f5e7";
}
.bp-messages-wrap .fa-chart-area::before {
  content: "\f1fe";
}
.bp-messages-wrap .fa-area-chart::before {
  content: "\f1fe";
}
.bp-messages-wrap .fa-chart-bar::before {
  content: "\f080";
}
.bp-messages-wrap .fa-bar-chart::before {
  content: "\f080";
}
.bp-messages-wrap .fa-chart-column::before {
  content: "\e0e3";
}
.bp-messages-wrap .fa-chart-gantt::before {
  content: "\e0e4";
}
.bp-messages-wrap .fa-chart-line::before {
  content: "\f201";
}
.bp-messages-wrap .fa-line-chart::before {
  content: "\f201";
}
.bp-messages-wrap .fa-chart-pie::before {
  content: "\f200";
}
.bp-messages-wrap .fa-pie-chart::before {
  content: "\f200";
}
.bp-messages-wrap .fa-chart-simple::before {
  content: "\e473";
}
.bp-messages-wrap .fa-check::before {
  content: "\f00c";
}
.bp-messages-wrap .fa-check-double::before {
  content: "\f560";
}
.bp-messages-wrap .fa-check-to-slot::before {
  content: "\f772";
}
.bp-messages-wrap .fa-vote-yea::before {
  content: "\f772";
}
.bp-messages-wrap .fa-cheese::before {
  content: "\f7ef";
}
.bp-messages-wrap .fa-chess::before {
  content: "\f439";
}
.bp-messages-wrap .fa-chess-bishop::before {
  content: "\f43a";
}
.bp-messages-wrap .fa-chess-board::before {
  content: "\f43c";
}
.bp-messages-wrap .fa-chess-king::before {
  content: "\f43f";
}
.bp-messages-wrap .fa-chess-knight::before {
  content: "\f441";
}
.bp-messages-wrap .fa-chess-pawn::before {
  content: "\f443";
}
.bp-messages-wrap .fa-chess-queen::before {
  content: "\f445";
}
.bp-messages-wrap .fa-chess-rook::before {
  content: "\f447";
}
.bp-messages-wrap .fa-chevron-down::before {
  content: "\f078";
}
.bp-messages-wrap .fa-chevron-left::before {
  content: "\f053";
}
.bp-messages-wrap .fa-chevron-right::before {
  content: "\f054";
}
.bp-messages-wrap .fa-chevron-up::before {
  content: "\f077";
}
.bp-messages-wrap .fa-child::before {
  content: "\f1ae";
}
.bp-messages-wrap .fa-child-dress::before {
  content: "\e59c";
}
.bp-messages-wrap .fa-child-reaching::before {
  content: "\e59d";
}
.bp-messages-wrap .fa-child-rifle::before {
  content: "\e4e0";
}
.bp-messages-wrap .fa-children::before {
  content: "\e4e1";
}
.bp-messages-wrap .fa-church::before {
  content: "\f51d";
}
.bp-messages-wrap .fa-circle::before {
  content: "\f111";
}
.bp-messages-wrap .fa-circle-arrow-down::before {
  content: "\f0ab";
}
.bp-messages-wrap .fa-arrow-circle-down::before {
  content: "\f0ab";
}
.bp-messages-wrap .fa-circle-arrow-left::before {
  content: "\f0a8";
}
.bp-messages-wrap .fa-arrow-circle-left::before {
  content: "\f0a8";
}
.bp-messages-wrap .fa-circle-arrow-right::before {
  content: "\f0a9";
}
.bp-messages-wrap .fa-arrow-circle-right::before {
  content: "\f0a9";
}
.bp-messages-wrap .fa-circle-arrow-up::before {
  content: "\f0aa";
}
.bp-messages-wrap .fa-arrow-circle-up::before {
  content: "\f0aa";
}
.bp-messages-wrap .fa-circle-check::before {
  content: "\f058";
}
.bp-messages-wrap .fa-check-circle::before {
  content: "\f058";
}
.bp-messages-wrap .fa-circle-chevron-down::before {
  content: "\f13a";
}
.bp-messages-wrap .fa-chevron-circle-down::before {
  content: "\f13a";
}
.bp-messages-wrap .fa-circle-chevron-left::before {
  content: "\f137";
}
.bp-messages-wrap .fa-chevron-circle-left::before {
  content: "\f137";
}
.bp-messages-wrap .fa-circle-chevron-right::before {
  content: "\f138";
}
.bp-messages-wrap .fa-chevron-circle-right::before {
  content: "\f138";
}
.bp-messages-wrap .fa-circle-chevron-up::before {
  content: "\f139";
}
.bp-messages-wrap .fa-chevron-circle-up::before {
  content: "\f139";
}
.bp-messages-wrap .fa-circle-dollar-to-slot::before {
  content: "\f4b9";
}
.bp-messages-wrap .fa-donate::before {
  content: "\f4b9";
}
.bp-messages-wrap .fa-circle-dot::before {
  content: "\f192";
}
.bp-messages-wrap .fa-dot-circle::before {
  content: "\f192";
}
.bp-messages-wrap .fa-circle-down::before {
  content: "\f358";
}
.bp-messages-wrap .fa-arrow-alt-circle-down::before {
  content: "\f358";
}
.bp-messages-wrap .fa-circle-exclamation::before {
  content: "\f06a";
}
.bp-messages-wrap .fa-exclamation-circle::before {
  content: "\f06a";
}
.bp-messages-wrap .fa-circle-h::before {
  content: "\f47e";
}
.bp-messages-wrap .fa-hospital-symbol::before {
  content: "\f47e";
}
.bp-messages-wrap .fa-circle-half-stroke::before {
  content: "\f042";
}
.bp-messages-wrap .fa-adjust::before {
  content: "\f042";
}
.bp-messages-wrap .fa-circle-info::before {
  content: "\f05a";
}
.bp-messages-wrap .fa-info-circle::before {
  content: "\f05a";
}
.bp-messages-wrap .fa-circle-left::before {
  content: "\f359";
}
.bp-messages-wrap .fa-arrow-alt-circle-left::before {
  content: "\f359";
}
.bp-messages-wrap .fa-circle-minus::before {
  content: "\f056";
}
.bp-messages-wrap .fa-minus-circle::before {
  content: "\f056";
}
.bp-messages-wrap .fa-circle-nodes::before {
  content: "\e4e2";
}
.bp-messages-wrap .fa-circle-notch::before {
  content: "\f1ce";
}
.bp-messages-wrap .fa-circle-pause::before {
  content: "\f28b";
}
.bp-messages-wrap .fa-pause-circle::before {
  content: "\f28b";
}
.bp-messages-wrap .fa-circle-play::before {
  content: "\f144";
}
.bp-messages-wrap .fa-play-circle::before {
  content: "\f144";
}
.bp-messages-wrap .fa-circle-plus::before {
  content: "\f055";
}
.bp-messages-wrap .fa-plus-circle::before {
  content: "\f055";
}
.bp-messages-wrap .fa-circle-question::before {
  content: "\f059";
}
.bp-messages-wrap .fa-question-circle::before {
  content: "\f059";
}
.bp-messages-wrap .fa-circle-radiation::before {
  content: "\f7ba";
}
.bp-messages-wrap .fa-radiation-alt::before {
  content: "\f7ba";
}
.bp-messages-wrap .fa-circle-right::before {
  content: "\f35a";
}
.bp-messages-wrap .fa-arrow-alt-circle-right::before {
  content: "\f35a";
}
.bp-messages-wrap .fa-circle-stop::before {
  content: "\f28d";
}
.bp-messages-wrap .fa-stop-circle::before {
  content: "\f28d";
}
.bp-messages-wrap .fa-circle-up::before {
  content: "\f35b";
}
.bp-messages-wrap .fa-arrow-alt-circle-up::before {
  content: "\f35b";
}
.bp-messages-wrap .fa-circle-user::before {
  content: "\f2bd";
}
.bp-messages-wrap .fa-user-circle::before {
  content: "\f2bd";
}
.bp-messages-wrap .fa-circle-xmark::before {
  content: "\f057";
}
.bp-messages-wrap .fa-times-circle::before {
  content: "\f057";
}
.bp-messages-wrap .fa-xmark-circle::before {
  content: "\f057";
}
.bp-messages-wrap .fa-city::before {
  content: "\f64f";
}
.bp-messages-wrap .fa-clapperboard::before {
  content: "\e131";
}
.bp-messages-wrap .fa-clipboard::before {
  content: "\f328";
}
.bp-messages-wrap .fa-clipboard-check::before {
  content: "\f46c";
}
.bp-messages-wrap .fa-clipboard-list::before {
  content: "\f46d";
}
.bp-messages-wrap .fa-clipboard-question::before {
  content: "\e4e3";
}
.bp-messages-wrap .fa-clipboard-user::before {
  content: "\f7f3";
}
.bp-messages-wrap .fa-clock::before {
  content: "\f017";
}
.bp-messages-wrap .fa-clock-four::before {
  content: "\f017";
}
.bp-messages-wrap .fa-clock-rotate-left::before {
  content: "\f1da";
}
.bp-messages-wrap .fa-history::before {
  content: "\f1da";
}
.bp-messages-wrap .fa-clone::before {
  content: "\f24d";
}
.bp-messages-wrap .fa-closed-captioning::before {
  content: "\f20a";
}
.bp-messages-wrap .fa-cloud::before {
  content: "\f0c2";
}
.bp-messages-wrap .fa-cloud-arrow-down::before {
  content: "\f0ed";
}
.bp-messages-wrap .fa-cloud-download::before {
  content: "\f0ed";
}
.bp-messages-wrap .fa-cloud-download-alt::before {
  content: "\f0ed";
}
.bp-messages-wrap .fa-cloud-arrow-up::before {
  content: "\f0ee";
}
.bp-messages-wrap .fa-cloud-upload::before {
  content: "\f0ee";
}
.bp-messages-wrap .fa-cloud-upload-alt::before {
  content: "\f0ee";
}
.bp-messages-wrap .fa-cloud-bolt::before {
  content: "\f76c";
}
.bp-messages-wrap .fa-thunderstorm::before {
  content: "\f76c";
}
.bp-messages-wrap .fa-cloud-meatball::before {
  content: "\f73b";
}
.bp-messages-wrap .fa-cloud-moon::before {
  content: "\f6c3";
}
.bp-messages-wrap .fa-cloud-moon-rain::before {
  content: "\f73c";
}
.bp-messages-wrap .fa-cloud-rain::before {
  content: "\f73d";
}
.bp-messages-wrap .fa-cloud-showers-heavy::before {
  content: "\f740";
}
.bp-messages-wrap .fa-cloud-showers-water::before {
  content: "\e4e4";
}
.bp-messages-wrap .fa-cloud-sun::before {
  content: "\f6c4";
}
.bp-messages-wrap .fa-cloud-sun-rain::before {
  content: "\f743";
}
.bp-messages-wrap .fa-clover::before {
  content: "\e139";
}
.bp-messages-wrap .fa-code::before {
  content: "\f121";
}
.bp-messages-wrap .fa-code-branch::before {
  content: "\f126";
}
.bp-messages-wrap .fa-code-commit::before {
  content: "\f386";
}
.bp-messages-wrap .fa-code-compare::before {
  content: "\e13a";
}
.bp-messages-wrap .fa-code-fork::before {
  content: "\e13b";
}
.bp-messages-wrap .fa-code-merge::before {
  content: "\f387";
}
.bp-messages-wrap .fa-code-pull-request::before {
  content: "\e13c";
}
.bp-messages-wrap .fa-coins::before {
  content: "\f51e";
}
.bp-messages-wrap .fa-colon-sign::before {
  content: "\e140";
}
.bp-messages-wrap .fa-comment::before {
  content: "\f075";
}
.bp-messages-wrap .fa-comment-dollar::before {
  content: "\f651";
}
.bp-messages-wrap .fa-comment-dots::before {
  content: "\f4ad";
}
.bp-messages-wrap .fa-commenting::before {
  content: "\f4ad";
}
.bp-messages-wrap .fa-comment-medical::before {
  content: "\f7f5";
}
.bp-messages-wrap .fa-comment-slash::before {
  content: "\f4b3";
}
.bp-messages-wrap .fa-comment-sms::before {
  content: "\f7cd";
}
.bp-messages-wrap .fa-sms::before {
  content: "\f7cd";
}
.bp-messages-wrap .fa-comments::before {
  content: "\f086";
}
.bp-messages-wrap .fa-comments-dollar::before {
  content: "\f653";
}
.bp-messages-wrap .fa-compact-disc::before {
  content: "\f51f";
}
.bp-messages-wrap .fa-compass::before {
  content: "\f14e";
}
.bp-messages-wrap .fa-compass-drafting::before {
  content: "\f568";
}
.bp-messages-wrap .fa-drafting-compass::before {
  content: "\f568";
}
.bp-messages-wrap .fa-compress::before {
  content: "\f066";
}
.bp-messages-wrap .fa-computer::before {
  content: "\e4e5";
}
.bp-messages-wrap .fa-computer-mouse::before {
  content: "\f8cc";
}
.bp-messages-wrap .fa-mouse::before {
  content: "\f8cc";
}
.bp-messages-wrap .fa-cookie::before {
  content: "\f563";
}
.bp-messages-wrap .fa-cookie-bite::before {
  content: "\f564";
}
.bp-messages-wrap .fa-copy::before {
  content: "\f0c5";
}
.bp-messages-wrap .fa-copyright::before {
  content: "\f1f9";
}
.bp-messages-wrap .fa-couch::before {
  content: "\f4b8";
}
.bp-messages-wrap .fa-cow::before {
  content: "\f6c8";
}
.bp-messages-wrap .fa-credit-card::before {
  content: "\f09d";
}
.bp-messages-wrap .fa-credit-card-alt::before {
  content: "\f09d";
}
.bp-messages-wrap .fa-crop::before {
  content: "\f125";
}
.bp-messages-wrap .fa-crop-simple::before {
  content: "\f565";
}
.bp-messages-wrap .fa-crop-alt::before {
  content: "\f565";
}
.bp-messages-wrap .fa-cross::before {
  content: "\f654";
}
.bp-messages-wrap .fa-crosshairs::before {
  content: "\f05b";
}
.bp-messages-wrap .fa-crow::before {
  content: "\f520";
}
.bp-messages-wrap .fa-crown::before {
  content: "\f521";
}
.bp-messages-wrap .fa-crutch::before {
  content: "\f7f7";
}
.bp-messages-wrap .fa-cruzeiro-sign::before {
  content: "\e152";
}
.bp-messages-wrap .fa-cube::before {
  content: "\f1b2";
}
.bp-messages-wrap .fa-cubes::before {
  content: "\f1b3";
}
.bp-messages-wrap .fa-cubes-stacked::before {
  content: "\e4e6";
}
.bp-messages-wrap .fa-d::before {
  content: "D";
}
.bp-messages-wrap .fa-database::before {
  content: "\f1c0";
}
.bp-messages-wrap .fa-delete-left::before {
  content: "\f55a";
}
.bp-messages-wrap .fa-backspace::before {
  content: "\f55a";
}
.bp-messages-wrap .fa-democrat::before {
  content: "\f747";
}
.bp-messages-wrap .fa-desktop::before {
  content: "\f390";
}
.bp-messages-wrap .fa-desktop-alt::before {
  content: "\f390";
}
.bp-messages-wrap .fa-dharmachakra::before {
  content: "\f655";
}
.bp-messages-wrap .fa-diagram-next::before {
  content: "\e476";
}
.bp-messages-wrap .fa-diagram-predecessor::before {
  content: "\e477";
}
.bp-messages-wrap .fa-diagram-project::before {
  content: "\f542";
}
.bp-messages-wrap .fa-project-diagram::before {
  content: "\f542";
}
.bp-messages-wrap .fa-diagram-successor::before {
  content: "\e47a";
}
.bp-messages-wrap .fa-diamond::before {
  content: "\f219";
}
.bp-messages-wrap .fa-diamond-turn-right::before {
  content: "\f5eb";
}
.bp-messages-wrap .fa-directions::before {
  content: "\f5eb";
}
.bp-messages-wrap .fa-dice::before {
  content: "\f522";
}
.bp-messages-wrap .fa-dice-d20::before {
  content: "\f6cf";
}
.bp-messages-wrap .fa-dice-d6::before {
  content: "\f6d1";
}
.bp-messages-wrap .fa-dice-five::before {
  content: "\f523";
}
.bp-messages-wrap .fa-dice-four::before {
  content: "\f524";
}
.bp-messages-wrap .fa-dice-one::before {
  content: "\f525";
}
.bp-messages-wrap .fa-dice-six::before {
  content: "\f526";
}
.bp-messages-wrap .fa-dice-three::before {
  content: "\f527";
}
.bp-messages-wrap .fa-dice-two::before {
  content: "\f528";
}
.bp-messages-wrap .fa-disease::before {
  content: "\f7fa";
}
.bp-messages-wrap .fa-display::before {
  content: "\e163";
}
.bp-messages-wrap .fa-divide::before {
  content: "\f529";
}
.bp-messages-wrap .fa-dna::before {
  content: "\f471";
}
.bp-messages-wrap .fa-dog::before {
  content: "\f6d3";
}
.bp-messages-wrap .fa-dollar-sign::before {
  content: "$";
}
.bp-messages-wrap .fa-dollar::before {
  content: "$";
}
.bp-messages-wrap .fa-usd::before {
  content: "$";
}
.bp-messages-wrap .fa-dolly::before {
  content: "\f472";
}
.bp-messages-wrap .fa-dolly-box::before {
  content: "\f472";
}
.bp-messages-wrap .fa-dong-sign::before {
  content: "\e169";
}
.bp-messages-wrap .fa-door-closed::before {
  content: "\f52a";
}
.bp-messages-wrap .fa-door-open::before {
  content: "\f52b";
}
.bp-messages-wrap .fa-dove::before {
  content: "\f4ba";
}
.bp-messages-wrap .fa-down-left-and-up-right-to-center::before {
  content: "\f422";
}
.bp-messages-wrap .fa-compress-alt::before {
  content: "\f422";
}
.bp-messages-wrap .fa-down-long::before {
  content: "\f309";
}
.bp-messages-wrap .fa-long-arrow-alt-down::before {
  content: "\f309";
}
.bp-messages-wrap .fa-download::before {
  content: "\f019";
}
.bp-messages-wrap .fa-dragon::before {
  content: "\f6d5";
}
.bp-messages-wrap .fa-draw-polygon::before {
  content: "\f5ee";
}
.bp-messages-wrap .fa-droplet::before {
  content: "\f043";
}
.bp-messages-wrap .fa-tint::before {
  content: "\f043";
}
.bp-messages-wrap .fa-droplet-slash::before {
  content: "\f5c7";
}
.bp-messages-wrap .fa-tint-slash::before {
  content: "\f5c7";
}
.bp-messages-wrap .fa-drum::before {
  content: "\f569";
}
.bp-messages-wrap .fa-drum-steelpan::before {
  content: "\f56a";
}
.bp-messages-wrap .fa-drumstick-bite::before {
  content: "\f6d7";
}
.bp-messages-wrap .fa-dumbbell::before {
  content: "\f44b";
}
.bp-messages-wrap .fa-dumpster::before {
  content: "\f793";
}
.bp-messages-wrap .fa-dumpster-fire::before {
  content: "\f794";
}
.bp-messages-wrap .fa-dungeon::before {
  content: "\f6d9";
}
.bp-messages-wrap .fa-e::before {
  content: "E";
}
.bp-messages-wrap .fa-ear-deaf::before {
  content: "\f2a4";
}
.bp-messages-wrap .fa-deaf::before {
  content: "\f2a4";
}
.bp-messages-wrap .fa-deafness::before {
  content: "\f2a4";
}
.bp-messages-wrap .fa-hard-of-hearing::before {
  content: "\f2a4";
}
.bp-messages-wrap .fa-ear-listen::before {
  content: "\f2a2";
}
.bp-messages-wrap .fa-assistive-listening-systems::before {
  content: "\f2a2";
}
.bp-messages-wrap .fa-earth-africa::before {
  content: "\f57c";
}
.bp-messages-wrap .fa-globe-africa::before {
  content: "\f57c";
}
.bp-messages-wrap .fa-earth-americas::before {
  content: "\f57d";
}
.bp-messages-wrap .fa-earth::before {
  content: "\f57d";
}
.bp-messages-wrap .fa-earth-america::before {
  content: "\f57d";
}
.bp-messages-wrap .fa-globe-americas::before {
  content: "\f57d";
}
.bp-messages-wrap .fa-earth-asia::before {
  content: "\f57e";
}
.bp-messages-wrap .fa-globe-asia::before {
  content: "\f57e";
}
.bp-messages-wrap .fa-earth-europe::before {
  content: "\f7a2";
}
.bp-messages-wrap .fa-globe-europe::before {
  content: "\f7a2";
}
.bp-messages-wrap .fa-earth-oceania::before {
  content: "\e47b";
}
.bp-messages-wrap .fa-globe-oceania::before {
  content: "\e47b";
}
.bp-messages-wrap .fa-egg::before {
  content: "\f7fb";
}
.bp-messages-wrap .fa-eject::before {
  content: "\f052";
}
.bp-messages-wrap .fa-elevator::before {
  content: "\e16d";
}
.bp-messages-wrap .fa-ellipsis::before {
  content: "\f141";
}
.bp-messages-wrap .fa-ellipsis-h::before {
  content: "\f141";
}
.bp-messages-wrap .fa-ellipsis-vertical::before {
  content: "\f142";
}
.bp-messages-wrap .fa-ellipsis-v::before {
  content: "\f142";
}
.bp-messages-wrap .fa-envelope::before {
  content: "\f0e0";
}
.bp-messages-wrap .fa-envelope-circle-check::before {
  content: "\e4e8";
}
.bp-messages-wrap .fa-envelope-open::before {
  content: "\f2b6";
}
.bp-messages-wrap .fa-envelope-open-text::before {
  content: "\f658";
}
.bp-messages-wrap .fa-envelopes-bulk::before {
  content: "\f674";
}
.bp-messages-wrap .fa-mail-bulk::before {
  content: "\f674";
}
.bp-messages-wrap .fa-equals::before {
  content: "=";
}
.bp-messages-wrap .fa-eraser::before {
  content: "\f12d";
}
.bp-messages-wrap .fa-ethernet::before {
  content: "\f796";
}
.bp-messages-wrap .fa-euro-sign::before {
  content: "\f153";
}
.bp-messages-wrap .fa-eur::before {
  content: "\f153";
}
.bp-messages-wrap .fa-euro::before {
  content: "\f153";
}
.bp-messages-wrap .fa-exclamation::before {
  content: "!";
}
.bp-messages-wrap .fa-expand::before {
  content: "\f065";
}
.bp-messages-wrap .fa-explosion::before {
  content: "\e4e9";
}
.bp-messages-wrap .fa-eye::before {
  content: "\f06e";
}
.bp-messages-wrap .fa-eye-dropper::before {
  content: "\f1fb";
}
.bp-messages-wrap .fa-eye-dropper-empty::before {
  content: "\f1fb";
}
.bp-messages-wrap .fa-eyedropper::before {
  content: "\f1fb";
}
.bp-messages-wrap .fa-eye-low-vision::before {
  content: "\f2a8";
}
.bp-messages-wrap .fa-low-vision::before {
  content: "\f2a8";
}
.bp-messages-wrap .fa-eye-slash::before {
  content: "\f070";
}
.bp-messages-wrap .fa-f::before {
  content: "F";
}
.bp-messages-wrap .fa-face-angry::before {
  content: "\f556";
}
.bp-messages-wrap .fa-angry::before {
  content: "\f556";
}
.bp-messages-wrap .fa-face-dizzy::before {
  content: "\f567";
}
.bp-messages-wrap .fa-dizzy::before {
  content: "\f567";
}
.bp-messages-wrap .fa-face-flushed::before {
  content: "\f579";
}
.bp-messages-wrap .fa-flushed::before {
  content: "\f579";
}
.bp-messages-wrap .fa-face-frown::before {
  content: "\f119";
}
.bp-messages-wrap .fa-frown::before {
  content: "\f119";
}
.bp-messages-wrap .fa-face-frown-open::before {
  content: "\f57a";
}
.bp-messages-wrap .fa-frown-open::before {
  content: "\f57a";
}
.bp-messages-wrap .fa-face-grimace::before {
  content: "\f57f";
}
.bp-messages-wrap .fa-grimace::before {
  content: "\f57f";
}
.bp-messages-wrap .fa-face-grin::before {
  content: "\f580";
}
.bp-messages-wrap .fa-grin::before {
  content: "\f580";
}
.bp-messages-wrap .fa-face-grin-beam::before {
  content: "\f582";
}
.bp-messages-wrap .fa-grin-beam::before {
  content: "\f582";
}
.bp-messages-wrap .fa-face-grin-beam-sweat::before {
  content: "\f583";
}
.bp-messages-wrap .fa-grin-beam-sweat::before {
  content: "\f583";
}
.bp-messages-wrap .fa-face-grin-hearts::before {
  content: "\f584";
}
.bp-messages-wrap .fa-grin-hearts::before {
  content: "\f584";
}
.bp-messages-wrap .fa-face-grin-squint::before {
  content: "\f585";
}
.bp-messages-wrap .fa-grin-squint::before {
  content: "\f585";
}
.bp-messages-wrap .fa-face-grin-squint-tears::before {
  content: "\f586";
}
.bp-messages-wrap .fa-grin-squint-tears::before {
  content: "\f586";
}
.bp-messages-wrap .fa-face-grin-stars::before {
  content: "\f587";
}
.bp-messages-wrap .fa-grin-stars::before {
  content: "\f587";
}
.bp-messages-wrap .fa-face-grin-tears::before {
  content: "\f588";
}
.bp-messages-wrap .fa-grin-tears::before {
  content: "\f588";
}
.bp-messages-wrap .fa-face-grin-tongue::before {
  content: "\f589";
}
.bp-messages-wrap .fa-grin-tongue::before {
  content: "\f589";
}
.bp-messages-wrap .fa-face-grin-tongue-squint::before {
  content: "\f58a";
}
.bp-messages-wrap .fa-grin-tongue-squint::before {
  content: "\f58a";
}
.bp-messages-wrap .fa-face-grin-tongue-wink::before {
  content: "\f58b";
}
.bp-messages-wrap .fa-grin-tongue-wink::before {
  content: "\f58b";
}
.bp-messages-wrap .fa-face-grin-wide::before {
  content: "\f581";
}
.bp-messages-wrap .fa-grin-alt::before {
  content: "\f581";
}
.bp-messages-wrap .fa-face-grin-wink::before {
  content: "\f58c";
}
.bp-messages-wrap .fa-grin-wink::before {
  content: "\f58c";
}
.bp-messages-wrap .fa-face-kiss::before {
  content: "\f596";
}
.bp-messages-wrap .fa-kiss::before {
  content: "\f596";
}
.bp-messages-wrap .fa-face-kiss-beam::before {
  content: "\f597";
}
.bp-messages-wrap .fa-kiss-beam::before {
  content: "\f597";
}
.bp-messages-wrap .fa-face-kiss-wink-heart::before {
  content: "\f598";
}
.bp-messages-wrap .fa-kiss-wink-heart::before {
  content: "\f598";
}
.bp-messages-wrap .fa-face-laugh::before {
  content: "\f599";
}
.bp-messages-wrap .fa-laugh::before {
  content: "\f599";
}
.bp-messages-wrap .fa-face-laugh-beam::before {
  content: "\f59a";
}
.bp-messages-wrap .fa-laugh-beam::before {
  content: "\f59a";
}
.bp-messages-wrap .fa-face-laugh-squint::before {
  content: "\f59b";
}
.bp-messages-wrap .fa-laugh-squint::before {
  content: "\f59b";
}
.bp-messages-wrap .fa-face-laugh-wink::before {
  content: "\f59c";
}
.bp-messages-wrap .fa-laugh-wink::before {
  content: "\f59c";
}
.bp-messages-wrap .fa-face-meh::before {
  content: "\f11a";
}
.bp-messages-wrap .fa-meh::before {
  content: "\f11a";
}
.bp-messages-wrap .fa-face-meh-blank::before {
  content: "\f5a4";
}
.bp-messages-wrap .fa-meh-blank::before {
  content: "\f5a4";
}
.bp-messages-wrap .fa-face-rolling-eyes::before {
  content: "\f5a5";
}
.bp-messages-wrap .fa-meh-rolling-eyes::before {
  content: "\f5a5";
}
.bp-messages-wrap .fa-face-sad-cry::before {
  content: "\f5b3";
}
.bp-messages-wrap .fa-sad-cry::before {
  content: "\f5b3";
}
.bp-messages-wrap .fa-face-sad-tear::before {
  content: "\f5b4";
}
.bp-messages-wrap .fa-sad-tear::before {
  content: "\f5b4";
}
.bp-messages-wrap .fa-face-smile::before {
  content: "\f118";
}
.bp-messages-wrap .fa-smile::before {
  content: "\f118";
}
.bp-messages-wrap .fa-face-smile-beam::before {
  content: "\f5b8";
}
.bp-messages-wrap .fa-smile-beam::before {
  content: "\f5b8";
}
.bp-messages-wrap .fa-face-smile-wink::before {
  content: "\f4da";
}
.bp-messages-wrap .fa-smile-wink::before {
  content: "\f4da";
}
.bp-messages-wrap .fa-face-surprise::before {
  content: "\f5c2";
}
.bp-messages-wrap .fa-surprise::before {
  content: "\f5c2";
}
.bp-messages-wrap .fa-face-tired::before {
  content: "\f5c8";
}
.bp-messages-wrap .fa-tired::before {
  content: "\f5c8";
}
.bp-messages-wrap .fa-fan::before {
  content: "\f863";
}
.bp-messages-wrap .fa-faucet::before {
  content: "\e005";
}
.bp-messages-wrap .fa-faucet-drip::before {
  content: "\e006";
}
.bp-messages-wrap .fa-fax::before {
  content: "\f1ac";
}
.bp-messages-wrap .fa-feather::before {
  content: "\f52d";
}
.bp-messages-wrap .fa-feather-pointed::before {
  content: "\f56b";
}
.bp-messages-wrap .fa-feather-alt::before {
  content: "\f56b";
}
.bp-messages-wrap .fa-ferry::before {
  content: "\e4ea";
}
.bp-messages-wrap .fa-file::before {
  content: "\f15b";
}
.bp-messages-wrap .fa-file-arrow-down::before {
  content: "\f56d";
}
.bp-messages-wrap .fa-file-download::before {
  content: "\f56d";
}
.bp-messages-wrap .fa-file-arrow-up::before {
  content: "\f574";
}
.bp-messages-wrap .fa-file-upload::before {
  content: "\f574";
}
.bp-messages-wrap .fa-file-audio::before {
  content: "\f1c7";
}
.bp-messages-wrap .fa-file-circle-check::before {
  content: "\e493";
}
.bp-messages-wrap .fa-file-circle-exclamation::before {
  content: "\e4eb";
}
.bp-messages-wrap .fa-file-circle-minus::before {
  content: "\e4ed";
}
.bp-messages-wrap .fa-file-circle-plus::before {
  content: "\e4ee";
}
.bp-messages-wrap .fa-file-circle-question::before {
  content: "\e4ef";
}
.bp-messages-wrap .fa-file-circle-xmark::before {
  content: "\e494";
}
.bp-messages-wrap .fa-file-code::before {
  content: "\f1c9";
}
.bp-messages-wrap .fa-file-contract::before {
  content: "\f56c";
}
.bp-messages-wrap .fa-file-csv::before {
  content: "\f6dd";
}
.bp-messages-wrap .fa-file-excel::before {
  content: "\f1c3";
}
.bp-messages-wrap .fa-file-export::before {
  content: "\f56e";
}
.bp-messages-wrap .fa-arrow-right-from-file::before {
  content: "\f56e";
}
.bp-messages-wrap .fa-file-image::before {
  content: "\f1c5";
}
.bp-messages-wrap .fa-file-import::before {
  content: "\f56f";
}
.bp-messages-wrap .fa-arrow-right-to-file::before {
  content: "\f56f";
}
.bp-messages-wrap .fa-file-invoice::before {
  content: "\f570";
}
.bp-messages-wrap .fa-file-invoice-dollar::before {
  content: "\f571";
}
.bp-messages-wrap .fa-file-lines::before {
  content: "\f15c";
}
.bp-messages-wrap .fa-file-alt::before {
  content: "\f15c";
}
.bp-messages-wrap .fa-file-text::before {
  content: "\f15c";
}
.bp-messages-wrap .fa-file-medical::before {
  content: "\f477";
}
.bp-messages-wrap .fa-file-pdf::before {
  content: "\f1c1";
}
.bp-messages-wrap .fa-file-pen::before {
  content: "\f31c";
}
.bp-messages-wrap .fa-file-edit::before {
  content: "\f31c";
}
.bp-messages-wrap .fa-file-powerpoint::before {
  content: "\f1c4";
}
.bp-messages-wrap .fa-file-prescription::before {
  content: "\f572";
}
.bp-messages-wrap .fa-file-shield::before {
  content: "\e4f0";
}
.bp-messages-wrap .fa-file-signature::before {
  content: "\f573";
}
.bp-messages-wrap .fa-file-video::before {
  content: "\f1c8";
}
.bp-messages-wrap .fa-file-waveform::before {
  content: "\f478";
}
.bp-messages-wrap .fa-file-medical-alt::before {
  content: "\f478";
}
.bp-messages-wrap .fa-file-word::before {
  content: "\f1c2";
}
.bp-messages-wrap .fa-file-zipper::before {
  content: "\f1c6";
}
.bp-messages-wrap .fa-file-archive::before {
  content: "\f1c6";
}
.bp-messages-wrap .fa-fill::before {
  content: "\f575";
}
.bp-messages-wrap .fa-fill-drip::before {
  content: "\f576";
}
.bp-messages-wrap .fa-film::before {
  content: "\f008";
}
.bp-messages-wrap .fa-filter::before {
  content: "\f0b0";
}
.bp-messages-wrap .fa-filter-circle-dollar::before {
  content: "\f662";
}
.bp-messages-wrap .fa-funnel-dollar::before {
  content: "\f662";
}
.bp-messages-wrap .fa-filter-circle-xmark::before {
  content: "\e17b";
}
.bp-messages-wrap .fa-fingerprint::before {
  content: "\f577";
}
.bp-messages-wrap .fa-fire::before {
  content: "\f06d";
}
.bp-messages-wrap .fa-fire-burner::before {
  content: "\e4f1";
}
.bp-messages-wrap .fa-fire-extinguisher::before {
  content: "\f134";
}
.bp-messages-wrap .fa-fire-flame-curved::before {
  content: "\f7e4";
}
.bp-messages-wrap .fa-fire-alt::before {
  content: "\f7e4";
}
.bp-messages-wrap .fa-fire-flame-simple::before {
  content: "\f46a";
}
.bp-messages-wrap .fa-burn::before {
  content: "\f46a";
}
.bp-messages-wrap .fa-fish::before {
  content: "\f578";
}
.bp-messages-wrap .fa-fish-fins::before {
  content: "\e4f2";
}
.bp-messages-wrap .fa-flag::before {
  content: "\f024";
}
.bp-messages-wrap .fa-flag-checkered::before {
  content: "\f11e";
}
.bp-messages-wrap .fa-flag-usa::before {
  content: "\f74d";
}
.bp-messages-wrap .fa-flask::before {
  content: "\f0c3";
}
.bp-messages-wrap .fa-flask-vial::before {
  content: "\e4f3";
}
.bp-messages-wrap .fa-floppy-disk::before {
  content: "\f0c7";
}
.bp-messages-wrap .fa-save::before {
  content: "\f0c7";
}
.bp-messages-wrap .fa-florin-sign::before {
  content: "\e184";
}
.bp-messages-wrap .fa-folder::before {
  content: "\f07b";
}
.bp-messages-wrap .fa-folder-blank::before {
  content: "\f07b";
}
.bp-messages-wrap .fa-folder-closed::before {
  content: "\e185";
}
.bp-messages-wrap .fa-folder-minus::before {
  content: "\f65d";
}
.bp-messages-wrap .fa-folder-open::before {
  content: "\f07c";
}
.bp-messages-wrap .fa-folder-plus::before {
  content: "\f65e";
}
.bp-messages-wrap .fa-folder-tree::before {
  content: "\f802";
}
.bp-messages-wrap .fa-font::before {
  content: "\f031";
}
.bp-messages-wrap .fa-football::before {
  content: "\f44e";
}
.bp-messages-wrap .fa-football-ball::before {
  content: "\f44e";
}
.bp-messages-wrap .fa-forward::before {
  content: "\f04e";
}
.bp-messages-wrap .fa-forward-fast::before {
  content: "\f050";
}
.bp-messages-wrap .fa-fast-forward::before {
  content: "\f050";
}
.bp-messages-wrap .fa-forward-step::before {
  content: "\f051";
}
.bp-messages-wrap .fa-step-forward::before {
  content: "\f051";
}
.bp-messages-wrap .fa-franc-sign::before {
  content: "\e18f";
}
.bp-messages-wrap .fa-frog::before {
  content: "\f52e";
}
.bp-messages-wrap .fa-futbol::before {
  content: "\f1e3";
}
.bp-messages-wrap .fa-futbol-ball::before {
  content: "\f1e3";
}
.bp-messages-wrap .fa-soccer-ball::before {
  content: "\f1e3";
}
.bp-messages-wrap .fa-g::before {
  content: "G";
}
.bp-messages-wrap .fa-gamepad::before {
  content: "\f11b";
}
.bp-messages-wrap .fa-gas-pump::before {
  content: "\f52f";
}
.bp-messages-wrap .fa-gauge::before {
  content: "\f624";
}
.bp-messages-wrap .fa-dashboard::before {
  content: "\f624";
}
.bp-messages-wrap .fa-gauge-med::before {
  content: "\f624";
}
.bp-messages-wrap .fa-tachometer-alt-average::before {
  content: "\f624";
}
.bp-messages-wrap .fa-gauge-high::before {
  content: "\f625";
}
.bp-messages-wrap .fa-tachometer-alt::before {
  content: "\f625";
}
.bp-messages-wrap .fa-tachometer-alt-fast::before {
  content: "\f625";
}
.bp-messages-wrap .fa-gauge-simple::before {
  content: "\f629";
}
.bp-messages-wrap .fa-gauge-simple-med::before {
  content: "\f629";
}
.bp-messages-wrap .fa-tachometer-average::before {
  content: "\f629";
}
.bp-messages-wrap .fa-gauge-simple-high::before {
  content: "\f62a";
}
.bp-messages-wrap .fa-tachometer::before {
  content: "\f62a";
}
.bp-messages-wrap .fa-tachometer-fast::before {
  content: "\f62a";
}
.bp-messages-wrap .fa-gavel::before {
  content: "\f0e3";
}
.bp-messages-wrap .fa-legal::before {
  content: "\f0e3";
}
.bp-messages-wrap .fa-gear::before {
  content: "\f013";
}
.bp-messages-wrap .fa-cog::before {
  content: "\f013";
}
.bp-messages-wrap .fa-gears::before {
  content: "\f085";
}
.bp-messages-wrap .fa-cogs::before {
  content: "\f085";
}
.bp-messages-wrap .fa-gem::before {
  content: "\f3a5";
}
.bp-messages-wrap .fa-genderless::before {
  content: "\f22d";
}
.bp-messages-wrap .fa-ghost::before {
  content: "\f6e2";
}
.bp-messages-wrap .fa-gift::before {
  content: "\f06b";
}
.bp-messages-wrap .fa-gifts::before {
  content: "\f79c";
}
.bp-messages-wrap .fa-glass-water::before {
  content: "\e4f4";
}
.bp-messages-wrap .fa-glass-water-droplet::before {
  content: "\e4f5";
}
.bp-messages-wrap .fa-glasses::before {
  content: "\f530";
}
.bp-messages-wrap .fa-globe::before {
  content: "\f0ac";
}
.bp-messages-wrap .fa-golf-ball-tee::before {
  content: "\f450";
}
.bp-messages-wrap .fa-golf-ball::before {
  content: "\f450";
}
.bp-messages-wrap .fa-gopuram::before {
  content: "\f664";
}
.bp-messages-wrap .fa-graduation-cap::before {
  content: "\f19d";
}
.bp-messages-wrap .fa-mortar-board::before {
  content: "\f19d";
}
.bp-messages-wrap .fa-greater-than::before {
  content: ">";
}
.bp-messages-wrap .fa-greater-than-equal::before {
  content: "\f532";
}
.bp-messages-wrap .fa-grip::before {
  content: "\f58d";
}
.bp-messages-wrap .fa-grip-horizontal::before {
  content: "\f58d";
}
.bp-messages-wrap .fa-grip-lines::before {
  content: "\f7a4";
}
.bp-messages-wrap .fa-grip-lines-vertical::before {
  content: "\f7a5";
}
.bp-messages-wrap .fa-grip-vertical::before {
  content: "\f58e";
}
.bp-messages-wrap .fa-group-arrows-rotate::before {
  content: "\e4f6";
}
.bp-messages-wrap .fa-guarani-sign::before {
  content: "\e19a";
}
.bp-messages-wrap .fa-guitar::before {
  content: "\f7a6";
}
.bp-messages-wrap .fa-gun::before {
  content: "\e19b";
}
.bp-messages-wrap .fa-h::before {
  content: "H";
}
.bp-messages-wrap .fa-hammer::before {
  content: "\f6e3";
}
.bp-messages-wrap .fa-hamsa::before {
  content: "\f665";
}
.bp-messages-wrap .fa-hand::before {
  content: "\f256";
}
.bp-messages-wrap .fa-hand-paper::before {
  content: "\f256";
}
.bp-messages-wrap .fa-hand-back-fist::before {
  content: "\f255";
}
.bp-messages-wrap .fa-hand-rock::before {
  content: "\f255";
}
.bp-messages-wrap .fa-hand-dots::before {
  content: "\f461";
}
.bp-messages-wrap .fa-allergies::before {
  content: "\f461";
}
.bp-messages-wrap .fa-hand-fist::before {
  content: "\f6de";
}
.bp-messages-wrap .fa-fist-raised::before {
  content: "\f6de";
}
.bp-messages-wrap .fa-hand-holding::before {
  content: "\f4bd";
}
.bp-messages-wrap .fa-hand-holding-dollar::before {
  content: "\f4c0";
}
.bp-messages-wrap .fa-hand-holding-usd::before {
  content: "\f4c0";
}
.bp-messages-wrap .fa-hand-holding-droplet::before {
  content: "\f4c1";
}
.bp-messages-wrap .fa-hand-holding-water::before {
  content: "\f4c1";
}
.bp-messages-wrap .fa-hand-holding-hand::before {
  content: "\e4f7";
}
.bp-messages-wrap .fa-hand-holding-heart::before {
  content: "\f4be";
}
.bp-messages-wrap .fa-hand-holding-medical::before {
  content: "\e05c";
}
.bp-messages-wrap .fa-hand-lizard::before {
  content: "\f258";
}
.bp-messages-wrap .fa-hand-middle-finger::before {
  content: "\f806";
}
.bp-messages-wrap .fa-hand-peace::before {
  content: "\f25b";
}
.bp-messages-wrap .fa-hand-point-down::before {
  content: "\f0a7";
}
.bp-messages-wrap .fa-hand-point-left::before {
  content: "\f0a5";
}
.bp-messages-wrap .fa-hand-point-right::before {
  content: "\f0a4";
}
.bp-messages-wrap .fa-hand-point-up::before {
  content: "\f0a6";
}
.bp-messages-wrap .fa-hand-pointer::before {
  content: "\f25a";
}
.bp-messages-wrap .fa-hand-scissors::before {
  content: "\f257";
}
.bp-messages-wrap .fa-hand-sparkles::before {
  content: "\e05d";
}
.bp-messages-wrap .fa-hand-spock::before {
  content: "\f259";
}
.bp-messages-wrap .fa-handcuffs::before {
  content: "\e4f8";
}
.bp-messages-wrap .fa-hands::before {
  content: "\f2a7";
}
.bp-messages-wrap .fa-sign-language::before {
  content: "\f2a7";
}
.bp-messages-wrap .fa-signing::before {
  content: "\f2a7";
}
.bp-messages-wrap .fa-hands-asl-interpreting::before {
  content: "\f2a3";
}
.bp-messages-wrap .fa-american-sign-language-interpreting::before {
  content: "\f2a3";
}
.bp-messages-wrap .fa-asl-interpreting::before {
  content: "\f2a3";
}
.bp-messages-wrap .fa-hands-american-sign-language-interpreting::before {
  content: "\f2a3";
}
.bp-messages-wrap .fa-hands-bound::before {
  content: "\e4f9";
}
.bp-messages-wrap .fa-hands-bubbles::before {
  content: "\e05e";
}
.bp-messages-wrap .fa-hands-wash::before {
  content: "\e05e";
}
.bp-messages-wrap .fa-hands-clapping::before {
  content: "\e1a8";
}
.bp-messages-wrap .fa-hands-holding::before {
  content: "\f4c2";
}
.bp-messages-wrap .fa-hands-holding-child::before {
  content: "\e4fa";
}
.bp-messages-wrap .fa-hands-holding-circle::before {
  content: "\e4fb";
}
.bp-messages-wrap .fa-hands-praying::before {
  content: "\f684";
}
.bp-messages-wrap .fa-praying-hands::before {
  content: "\f684";
}
.bp-messages-wrap .fa-handshake::before {
  content: "\f2b5";
}
.bp-messages-wrap .fa-handshake-angle::before {
  content: "\f4c4";
}
.bp-messages-wrap .fa-hands-helping::before {
  content: "\f4c4";
}
.bp-messages-wrap .fa-handshake-simple::before {
  content: "\f4c6";
}
.bp-messages-wrap .fa-handshake-alt::before {
  content: "\f4c6";
}
.bp-messages-wrap .fa-handshake-simple-slash::before {
  content: "\e05f";
}
.bp-messages-wrap .fa-handshake-alt-slash::before {
  content: "\e05f";
}
.bp-messages-wrap .fa-handshake-slash::before {
  content: "\e060";
}
.bp-messages-wrap .fa-hanukiah::before {
  content: "\f6e6";
}
.bp-messages-wrap .fa-hard-drive::before {
  content: "\f0a0";
}
.bp-messages-wrap .fa-hdd::before {
  content: "\f0a0";
}
.bp-messages-wrap .fa-hashtag::before {
  content: "#";
}
.bp-messages-wrap .fa-hat-cowboy::before {
  content: "\f8c0";
}
.bp-messages-wrap .fa-hat-cowboy-side::before {
  content: "\f8c1";
}
.bp-messages-wrap .fa-hat-wizard::before {
  content: "\f6e8";
}
.bp-messages-wrap .fa-head-side-cough::before {
  content: "\e061";
}
.bp-messages-wrap .fa-head-side-cough-slash::before {
  content: "\e062";
}
.bp-messages-wrap .fa-head-side-mask::before {
  content: "\e063";
}
.bp-messages-wrap .fa-head-side-virus::before {
  content: "\e064";
}
.bp-messages-wrap .fa-heading::before {
  content: "\f1dc";
}
.bp-messages-wrap .fa-header::before {
  content: "\f1dc";
}
.bp-messages-wrap .fa-headphones::before {
  content: "\f025";
}
.bp-messages-wrap .fa-headphones-simple::before {
  content: "\f58f";
}
.bp-messages-wrap .fa-headphones-alt::before {
  content: "\f58f";
}
.bp-messages-wrap .fa-headset::before {
  content: "\f590";
}
.bp-messages-wrap .fa-heart::before {
  content: "\f004";
}
.bp-messages-wrap .fa-heart-circle-bolt::before {
  content: "\e4fc";
}
.bp-messages-wrap .fa-heart-circle-check::before {
  content: "\e4fd";
}
.bp-messages-wrap .fa-heart-circle-exclamation::before {
  content: "\e4fe";
}
.bp-messages-wrap .fa-heart-circle-minus::before {
  content: "\e4ff";
}
.bp-messages-wrap .fa-heart-circle-plus::before {
  content: "\e500";
}
.bp-messages-wrap .fa-heart-circle-xmark::before {
  content: "\e501";
}
.bp-messages-wrap .fa-heart-crack::before {
  content: "\f7a9";
}
.bp-messages-wrap .fa-heart-broken::before {
  content: "\f7a9";
}
.bp-messages-wrap .fa-heart-pulse::before {
  content: "\f21e";
}
.bp-messages-wrap .fa-heartbeat::before {
  content: "\f21e";
}
.bp-messages-wrap .fa-helicopter::before {
  content: "\f533";
}
.bp-messages-wrap .fa-helicopter-symbol::before {
  content: "\e502";
}
.bp-messages-wrap .fa-helmet-safety::before {
  content: "\f807";
}
.bp-messages-wrap .fa-hard-hat::before {
  content: "\f807";
}
.bp-messages-wrap .fa-hat-hard::before {
  content: "\f807";
}
.bp-messages-wrap .fa-helmet-un::before {
  content: "\e503";
}
.bp-messages-wrap .fa-highlighter::before {
  content: "\f591";
}
.bp-messages-wrap .fa-hill-avalanche::before {
  content: "\e507";
}
.bp-messages-wrap .fa-hill-rockslide::before {
  content: "\e508";
}
.bp-messages-wrap .fa-hippo::before {
  content: "\f6ed";
}
.bp-messages-wrap .fa-hockey-puck::before {
  content: "\f453";
}
.bp-messages-wrap .fa-holly-berry::before {
  content: "\f7aa";
}
.bp-messages-wrap .fa-horse::before {
  content: "\f6f0";
}
.bp-messages-wrap .fa-horse-head::before {
  content: "\f7ab";
}
.bp-messages-wrap .fa-hospital::before {
  content: "\f0f8";
}
.bp-messages-wrap .fa-hospital-alt::before {
  content: "\f0f8";
}
.bp-messages-wrap .fa-hospital-wide::before {
  content: "\f0f8";
}
.bp-messages-wrap .fa-hospital-user::before {
  content: "\f80d";
}
.bp-messages-wrap .fa-hot-tub-person::before {
  content: "\f593";
}
.bp-messages-wrap .fa-hot-tub::before {
  content: "\f593";
}
.bp-messages-wrap .fa-hotdog::before {
  content: "\f80f";
}
.bp-messages-wrap .fa-hotel::before {
  content: "\f594";
}
.bp-messages-wrap .fa-hourglass::before {
  content: "\f254";
}
.bp-messages-wrap .fa-hourglass-2::before {
  content: "\f254";
}
.bp-messages-wrap .fa-hourglass-half::before {
  content: "\f254";
}
.bp-messages-wrap .fa-hourglass-empty::before {
  content: "\f252";
}
.bp-messages-wrap .fa-hourglass-end::before {
  content: "\f253";
}
.bp-messages-wrap .fa-hourglass-3::before {
  content: "\f253";
}
.bp-messages-wrap .fa-hourglass-start::before {
  content: "\f251";
}
.bp-messages-wrap .fa-hourglass-1::before {
  content: "\f251";
}
.bp-messages-wrap .fa-house::before {
  content: "\f015";
}
.bp-messages-wrap .fa-home::before {
  content: "\f015";
}
.bp-messages-wrap .fa-home-alt::before {
  content: "\f015";
}
.bp-messages-wrap .fa-home-lg-alt::before {
  content: "\f015";
}
.bp-messages-wrap .fa-house-chimney::before {
  content: "\e3af";
}
.bp-messages-wrap .fa-home-lg::before {
  content: "\e3af";
}
.bp-messages-wrap .fa-house-chimney-crack::before {
  content: "\f6f1";
}
.bp-messages-wrap .fa-house-damage::before {
  content: "\f6f1";
}
.bp-messages-wrap .fa-house-chimney-medical::before {
  content: "\f7f2";
}
.bp-messages-wrap .fa-clinic-medical::before {
  content: "\f7f2";
}
.bp-messages-wrap .fa-house-chimney-user::before {
  content: "\e065";
}
.bp-messages-wrap .fa-house-chimney-window::before {
  content: "\e00d";
}
.bp-messages-wrap .fa-house-circle-check::before {
  content: "\e509";
}
.bp-messages-wrap .fa-house-circle-exclamation::before {
  content: "\e50a";
}
.bp-messages-wrap .fa-house-circle-xmark::before {
  content: "\e50b";
}
.bp-messages-wrap .fa-house-crack::before {
  content: "\e3b1";
}
.bp-messages-wrap .fa-house-fire::before {
  content: "\e50c";
}
.bp-messages-wrap .fa-house-flag::before {
  content: "\e50d";
}
.bp-messages-wrap .fa-house-flood-water::before {
  content: "\e50e";
}
.bp-messages-wrap .fa-house-flood-water-circle-arrow-right::before {
  content: "\e50f";
}
.bp-messages-wrap .fa-house-laptop::before {
  content: "\e066";
}
.bp-messages-wrap .fa-laptop-house::before {
  content: "\e066";
}
.bp-messages-wrap .fa-house-lock::before {
  content: "\e510";
}
.bp-messages-wrap .fa-house-medical::before {
  content: "\e3b2";
}
.bp-messages-wrap .fa-house-medical-circle-check::before {
  content: "\e511";
}
.bp-messages-wrap .fa-house-medical-circle-exclamation::before {
  content: "\e512";
}
.bp-messages-wrap .fa-house-medical-circle-xmark::before {
  content: "\e513";
}
.bp-messages-wrap .fa-house-medical-flag::before {
  content: "\e514";
}
.bp-messages-wrap .fa-house-signal::before {
  content: "\e012";
}
.bp-messages-wrap .fa-house-tsunami::before {
  content: "\e515";
}
.bp-messages-wrap .fa-house-user::before {
  content: "\e1b0";
}
.bp-messages-wrap .fa-home-user::before {
  content: "\e1b0";
}
.bp-messages-wrap .fa-hryvnia-sign::before {
  content: "\f6f2";
}
.bp-messages-wrap .fa-hryvnia::before {
  content: "\f6f2";
}
.bp-messages-wrap .fa-hurricane::before {
  content: "\f751";
}
.bp-messages-wrap .fa-i::before {
  content: "I";
}
.bp-messages-wrap .fa-i-cursor::before {
  content: "\f246";
}
.bp-messages-wrap .fa-ice-cream::before {
  content: "\f810";
}
.bp-messages-wrap .fa-icicles::before {
  content: "\f7ad";
}
.bp-messages-wrap .fa-icons::before {
  content: "\f86d";
}
.bp-messages-wrap .fa-heart-music-camera-bolt::before {
  content: "\f86d";
}
.bp-messages-wrap .fa-id-badge::before {
  content: "\f2c1";
}
.bp-messages-wrap .fa-id-card::before {
  content: "\f2c2";
}
.bp-messages-wrap .fa-drivers-license::before {
  content: "\f2c2";
}
.bp-messages-wrap .fa-id-card-clip::before {
  content: "\f47f";
}
.bp-messages-wrap .fa-id-card-alt::before {
  content: "\f47f";
}
.bp-messages-wrap .fa-igloo::before {
  content: "\f7ae";
}
.bp-messages-wrap .fa-image::before {
  content: "\f03e";
}
.bp-messages-wrap .fa-image-portrait::before {
  content: "\f3e0";
}
.bp-messages-wrap .fa-portrait::before {
  content: "\f3e0";
}
.bp-messages-wrap .fa-images::before {
  content: "\f302";
}
.bp-messages-wrap .fa-inbox::before {
  content: "\f01c";
}
.bp-messages-wrap .fa-indent::before {
  content: "\f03c";
}
.bp-messages-wrap .fa-indian-rupee-sign::before {
  content: "\e1bc";
}
.bp-messages-wrap .fa-indian-rupee::before {
  content: "\e1bc";
}
.bp-messages-wrap .fa-inr::before {
  content: "\e1bc";
}
.bp-messages-wrap .fa-industry::before {
  content: "\f275";
}
.bp-messages-wrap .fa-infinity::before {
  content: "\f534";
}
.bp-messages-wrap .fa-info::before {
  content: "\f129";
}
.bp-messages-wrap .fa-italic::before {
  content: "\f033";
}
.bp-messages-wrap .fa-j::before {
  content: "J";
}
.bp-messages-wrap .fa-jar::before {
  content: "\e516";
}
.bp-messages-wrap .fa-jar-wheat::before {
  content: "\e517";
}
.bp-messages-wrap .fa-jedi::before {
  content: "\f669";
}
.bp-messages-wrap .fa-jet-fighter::before {
  content: "\f0fb";
}
.bp-messages-wrap .fa-fighter-jet::before {
  content: "\f0fb";
}
.bp-messages-wrap .fa-jet-fighter-up::before {
  content: "\e518";
}
.bp-messages-wrap .fa-joint::before {
  content: "\f595";
}
.bp-messages-wrap .fa-jug-detergent::before {
  content: "\e519";
}
.bp-messages-wrap .fa-k::before {
  content: "K";
}
.bp-messages-wrap .fa-kaaba::before {
  content: "\f66b";
}
.bp-messages-wrap .fa-key::before {
  content: "\f084";
}
.bp-messages-wrap .fa-keyboard::before {
  content: "\f11c";
}
.bp-messages-wrap .fa-khanda::before {
  content: "\f66d";
}
.bp-messages-wrap .fa-kip-sign::before {
  content: "\e1c4";
}
.bp-messages-wrap .fa-kit-medical::before {
  content: "\f479";
}
.bp-messages-wrap .fa-first-aid::before {
  content: "\f479";
}
.bp-messages-wrap .fa-kitchen-set::before {
  content: "\e51a";
}
.bp-messages-wrap .fa-kiwi-bird::before {
  content: "\f535";
}
.bp-messages-wrap .fa-l::before {
  content: "L";
}
.bp-messages-wrap .fa-land-mine-on::before {
  content: "\e51b";
}
.bp-messages-wrap .fa-landmark::before {
  content: "\f66f";
}
.bp-messages-wrap .fa-landmark-dome::before {
  content: "\f752";
}
.bp-messages-wrap .fa-landmark-alt::before {
  content: "\f752";
}
.bp-messages-wrap .fa-landmark-flag::before {
  content: "\e51c";
}
.bp-messages-wrap .fa-language::before {
  content: "\f1ab";
}
.bp-messages-wrap .fa-laptop::before {
  content: "\f109";
}
.bp-messages-wrap .fa-laptop-code::before {
  content: "\f5fc";
}
.bp-messages-wrap .fa-laptop-file::before {
  content: "\e51d";
}
.bp-messages-wrap .fa-laptop-medical::before {
  content: "\f812";
}
.bp-messages-wrap .fa-lari-sign::before {
  content: "\e1c8";
}
.bp-messages-wrap .fa-layer-group::before {
  content: "\f5fd";
}
.bp-messages-wrap .fa-leaf::before {
  content: "\f06c";
}
.bp-messages-wrap .fa-left-long::before {
  content: "\f30a";
}
.bp-messages-wrap .fa-long-arrow-alt-left::before {
  content: "\f30a";
}
.bp-messages-wrap .fa-left-right::before {
  content: "\f337";
}
.bp-messages-wrap .fa-arrows-alt-h::before {
  content: "\f337";
}
.bp-messages-wrap .fa-lemon::before {
  content: "\f094";
}
.bp-messages-wrap .fa-less-than::before {
  content: "<";
}
.bp-messages-wrap .fa-less-than-equal::before {
  content: "\f537";
}
.bp-messages-wrap .fa-life-ring::before {
  content: "\f1cd";
}
.bp-messages-wrap .fa-lightbulb::before {
  content: "\f0eb";
}
.bp-messages-wrap .fa-lines-leaning::before {
  content: "\e51e";
}
.bp-messages-wrap .fa-link::before {
  content: "\f0c1";
}
.bp-messages-wrap .fa-chain::before {
  content: "\f0c1";
}
.bp-messages-wrap .fa-link-slash::before {
  content: "\f127";
}
.bp-messages-wrap .fa-chain-broken::before {
  content: "\f127";
}
.bp-messages-wrap .fa-chain-slash::before {
  content: "\f127";
}
.bp-messages-wrap .fa-unlink::before {
  content: "\f127";
}
.bp-messages-wrap .fa-lira-sign::before {
  content: "\f195";
}
.bp-messages-wrap .fa-list::before {
  content: "\f03a";
}
.bp-messages-wrap .fa-list-squares::before {
  content: "\f03a";
}
.bp-messages-wrap .fa-list-check::before {
  content: "\f0ae";
}
.bp-messages-wrap .fa-tasks::before {
  content: "\f0ae";
}
.bp-messages-wrap .fa-list-ol::before {
  content: "\f0cb";
}
.bp-messages-wrap .fa-list-1-2::before {
  content: "\f0cb";
}
.bp-messages-wrap .fa-list-numeric::before {
  content: "\f0cb";
}
.bp-messages-wrap .fa-list-ul::before {
  content: "\f0ca";
}
.bp-messages-wrap .fa-list-dots::before {
  content: "\f0ca";
}
.bp-messages-wrap .fa-litecoin-sign::before {
  content: "\e1d3";
}
.bp-messages-wrap .fa-location-arrow::before {
  content: "\f124";
}
.bp-messages-wrap .fa-location-crosshairs::before {
  content: "\f601";
}
.bp-messages-wrap .fa-location::before {
  content: "\f601";
}
.bp-messages-wrap .fa-location-dot::before {
  content: "\f3c5";
}
.bp-messages-wrap .fa-map-marker-alt::before {
  content: "\f3c5";
}
.bp-messages-wrap .fa-location-pin::before {
  content: "\f041";
}
.bp-messages-wrap .fa-map-marker::before {
  content: "\f041";
}
.bp-messages-wrap .fa-location-pin-lock::before {
  content: "\e51f";
}
.bp-messages-wrap .fa-lock::before {
  content: "\f023";
}
.bp-messages-wrap .fa-lock-open::before {
  content: "\f3c1";
}
.bp-messages-wrap .fa-locust::before {
  content: "\e520";
}
.bp-messages-wrap .fa-lungs::before {
  content: "\f604";
}
.bp-messages-wrap .fa-lungs-virus::before {
  content: "\e067";
}
.bp-messages-wrap .fa-m::before {
  content: "M";
}
.bp-messages-wrap .fa-magnet::before {
  content: "\f076";
}
.bp-messages-wrap .fa-magnifying-glass::before {
  content: "\f002";
}
.bp-messages-wrap .fa-search::before {
  content: "\f002";
}
.bp-messages-wrap .fa-magnifying-glass-arrow-right::before {
  content: "\e521";
}
.bp-messages-wrap .fa-magnifying-glass-chart::before {
  content: "\e522";
}
.bp-messages-wrap .fa-magnifying-glass-dollar::before {
  content: "\f688";
}
.bp-messages-wrap .fa-search-dollar::before {
  content: "\f688";
}
.bp-messages-wrap .fa-magnifying-glass-location::before {
  content: "\f689";
}
.bp-messages-wrap .fa-search-location::before {
  content: "\f689";
}
.bp-messages-wrap .fa-magnifying-glass-minus::before {
  content: "\f010";
}
.bp-messages-wrap .fa-search-minus::before {
  content: "\f010";
}
.bp-messages-wrap .fa-magnifying-glass-plus::before {
  content: "\f00e";
}
.bp-messages-wrap .fa-search-plus::before {
  content: "\f00e";
}
.bp-messages-wrap .fa-manat-sign::before {
  content: "\e1d5";
}
.bp-messages-wrap .fa-map::before {
  content: "\f279";
}
.bp-messages-wrap .fa-map-location::before {
  content: "\f59f";
}
.bp-messages-wrap .fa-map-marked::before {
  content: "\f59f";
}
.bp-messages-wrap .fa-map-location-dot::before {
  content: "\f5a0";
}
.bp-messages-wrap .fa-map-marked-alt::before {
  content: "\f5a0";
}
.bp-messages-wrap .fa-map-pin::before {
  content: "\f276";
}
.bp-messages-wrap .fa-marker::before {
  content: "\f5a1";
}
.bp-messages-wrap .fa-mars::before {
  content: "\f222";
}
.bp-messages-wrap .fa-mars-and-venus::before {
  content: "\f224";
}
.bp-messages-wrap .fa-mars-and-venus-burst::before {
  content: "\e523";
}
.bp-messages-wrap .fa-mars-double::before {
  content: "\f227";
}
.bp-messages-wrap .fa-mars-stroke::before {
  content: "\f229";
}
.bp-messages-wrap .fa-mars-stroke-right::before {
  content: "\f22b";
}
.bp-messages-wrap .fa-mars-stroke-h::before {
  content: "\f22b";
}
.bp-messages-wrap .fa-mars-stroke-up::before {
  content: "\f22a";
}
.bp-messages-wrap .fa-mars-stroke-v::before {
  content: "\f22a";
}
.bp-messages-wrap .fa-martini-glass::before {
  content: "\f57b";
}
.bp-messages-wrap .fa-glass-martini-alt::before {
  content: "\f57b";
}
.bp-messages-wrap .fa-martini-glass-citrus::before {
  content: "\f561";
}
.bp-messages-wrap .fa-cocktail::before {
  content: "\f561";
}
.bp-messages-wrap .fa-martini-glass-empty::before {
  content: "\f000";
}
.bp-messages-wrap .fa-glass-martini::before {
  content: "\f000";
}
.bp-messages-wrap .fa-mask::before {
  content: "\f6fa";
}
.bp-messages-wrap .fa-mask-face::before {
  content: "\e1d7";
}
.bp-messages-wrap .fa-mask-ventilator::before {
  content: "\e524";
}
.bp-messages-wrap .fa-masks-theater::before {
  content: "\f630";
}
.bp-messages-wrap .fa-theater-masks::before {
  content: "\f630";
}
.bp-messages-wrap .fa-mattress-pillow::before {
  content: "\e525";
}
.bp-messages-wrap .fa-maximize::before {
  content: "\f31e";
}
.bp-messages-wrap .fa-expand-arrows-alt::before {
  content: "\f31e";
}
.bp-messages-wrap .fa-medal::before {
  content: "\f5a2";
}
.bp-messages-wrap .fa-memory::before {
  content: "\f538";
}
.bp-messages-wrap .fa-menorah::before {
  content: "\f676";
}
.bp-messages-wrap .fa-mercury::before {
  content: "\f223";
}
.bp-messages-wrap .fa-message::before {
  content: "\f27a";
}
.bp-messages-wrap .fa-comment-alt::before {
  content: "\f27a";
}
.bp-messages-wrap .fa-meteor::before {
  content: "\f753";
}
.bp-messages-wrap .fa-microchip::before {
  content: "\f2db";
}
.bp-messages-wrap .fa-microphone::before {
  content: "\f130";
}
.bp-messages-wrap .fa-microphone-lines::before {
  content: "\f3c9";
}
.bp-messages-wrap .fa-microphone-alt::before {
  content: "\f3c9";
}
.bp-messages-wrap .fa-microphone-lines-slash::before {
  content: "\f539";
}
.bp-messages-wrap .fa-microphone-alt-slash::before {
  content: "\f539";
}
.bp-messages-wrap .fa-microphone-slash::before {
  content: "\f131";
}
.bp-messages-wrap .fa-microscope::before {
  content: "\f610";
}
.bp-messages-wrap .fa-mill-sign::before {
  content: "\e1ed";
}
.bp-messages-wrap .fa-minimize::before {
  content: "\f78c";
}
.bp-messages-wrap .fa-compress-arrows-alt::before {
  content: "\f78c";
}
.bp-messages-wrap .fa-minus::before {
  content: "\f068";
}
.bp-messages-wrap .fa-subtract::before {
  content: "\f068";
}
.bp-messages-wrap .fa-mitten::before {
  content: "\f7b5";
}
.bp-messages-wrap .fa-mobile::before {
  content: "\f3ce";
}
.bp-messages-wrap .fa-mobile-android::before {
  content: "\f3ce";
}
.bp-messages-wrap .fa-mobile-phone::before {
  content: "\f3ce";
}
.bp-messages-wrap .fa-mobile-button::before {
  content: "\f10b";
}
.bp-messages-wrap .fa-mobile-retro::before {
  content: "\e527";
}
.bp-messages-wrap .fa-mobile-screen::before {
  content: "\f3cf";
}
.bp-messages-wrap .fa-mobile-android-alt::before {
  content: "\f3cf";
}
.bp-messages-wrap .fa-mobile-screen-button::before {
  content: "\f3cd";
}
.bp-messages-wrap .fa-mobile-alt::before {
  content: "\f3cd";
}
.bp-messages-wrap .fa-money-bill::before {
  content: "\f0d6";
}
.bp-messages-wrap .fa-money-bill-1::before {
  content: "\f3d1";
}
.bp-messages-wrap .fa-money-bill-alt::before {
  content: "\f3d1";
}
.bp-messages-wrap .fa-money-bill-1-wave::before {
  content: "\f53b";
}
.bp-messages-wrap .fa-money-bill-wave-alt::before {
  content: "\f53b";
}
.bp-messages-wrap .fa-money-bill-transfer::before {
  content: "\e528";
}
.bp-messages-wrap .fa-money-bill-trend-up::before {
  content: "\e529";
}
.bp-messages-wrap .fa-money-bill-wave::before {
  content: "\f53a";
}
.bp-messages-wrap .fa-money-bill-wheat::before {
  content: "\e52a";
}
.bp-messages-wrap .fa-money-bills::before {
  content: "\e1f3";
}
.bp-messages-wrap .fa-money-check::before {
  content: "\f53c";
}
.bp-messages-wrap .fa-money-check-dollar::before {
  content: "\f53d";
}
.bp-messages-wrap .fa-money-check-alt::before {
  content: "\f53d";
}
.bp-messages-wrap .fa-monument::before {
  content: "\f5a6";
}
.bp-messages-wrap .fa-moon::before {
  content: "\f186";
}
.bp-messages-wrap .fa-mortar-pestle::before {
  content: "\f5a7";
}
.bp-messages-wrap .fa-mosque::before {
  content: "\f678";
}
.bp-messages-wrap .fa-mosquito::before {
  content: "\e52b";
}
.bp-messages-wrap .fa-mosquito-net::before {
  content: "\e52c";
}
.bp-messages-wrap .fa-motorcycle::before {
  content: "\f21c";
}
.bp-messages-wrap .fa-mound::before {
  content: "\e52d";
}
.bp-messages-wrap .fa-mountain::before {
  content: "\f6fc";
}
.bp-messages-wrap .fa-mountain-city::before {
  content: "\e52e";
}
.bp-messages-wrap .fa-mountain-sun::before {
  content: "\e52f";
}
.bp-messages-wrap .fa-mug-hot::before {
  content: "\f7b6";
}
.bp-messages-wrap .fa-mug-saucer::before {
  content: "\f0f4";
}
.bp-messages-wrap .fa-coffee::before {
  content: "\f0f4";
}
.bp-messages-wrap .fa-music::before {
  content: "\f001";
}
.bp-messages-wrap .fa-n::before {
  content: "N";
}
.bp-messages-wrap .fa-naira-sign::before {
  content: "\e1f6";
}
.bp-messages-wrap .fa-network-wired::before {
  content: "\f6ff";
}
.bp-messages-wrap .fa-neuter::before {
  content: "\f22c";
}
.bp-messages-wrap .fa-newspaper::before {
  content: "\f1ea";
}
.bp-messages-wrap .fa-not-equal::before {
  content: "\f53e";
}
.bp-messages-wrap .fa-note-sticky::before {
  content: "\f249";
}
.bp-messages-wrap .fa-sticky-note::before {
  content: "\f249";
}
.bp-messages-wrap .fa-notes-medical::before {
  content: "\f481";
}
.bp-messages-wrap .fa-o::before {
  content: "O";
}
.bp-messages-wrap .fa-object-group::before {
  content: "\f247";
}
.bp-messages-wrap .fa-object-ungroup::before {
  content: "\f248";
}
.bp-messages-wrap .fa-oil-can::before {
  content: "\f613";
}
.bp-messages-wrap .fa-oil-well::before {
  content: "\e532";
}
.bp-messages-wrap .fa-om::before {
  content: "\f679";
}
.bp-messages-wrap .fa-otter::before {
  content: "\f700";
}
.bp-messages-wrap .fa-outdent::before {
  content: "\f03b";
}
.bp-messages-wrap .fa-dedent::before {
  content: "\f03b";
}
.bp-messages-wrap .fa-p::before {
  content: "P";
}
.bp-messages-wrap .fa-pager::before {
  content: "\f815";
}
.bp-messages-wrap .fa-paint-roller::before {
  content: "\f5aa";
}
.bp-messages-wrap .fa-paintbrush::before {
  content: "\f1fc";
}
.bp-messages-wrap .fa-paint-brush::before {
  content: "\f1fc";
}
.bp-messages-wrap .fa-palette::before {
  content: "\f53f";
}
.bp-messages-wrap .fa-pallet::before {
  content: "\f482";
}
.bp-messages-wrap .fa-panorama::before {
  content: "\e209";
}
.bp-messages-wrap .fa-paper-plane::before {
  content: "\f1d8";
}
.bp-messages-wrap .fa-paperclip::before {
  content: "\f0c6";
}
.bp-messages-wrap .fa-parachute-box::before {
  content: "\f4cd";
}
.bp-messages-wrap .fa-paragraph::before {
  content: "\f1dd";
}
.bp-messages-wrap .fa-passport::before {
  content: "\f5ab";
}
.bp-messages-wrap .fa-paste::before {
  content: "\f0ea";
}
.bp-messages-wrap .fa-file-clipboard::before {
  content: "\f0ea";
}
.bp-messages-wrap .fa-pause::before {
  content: "\f04c";
}
.bp-messages-wrap .fa-paw::before {
  content: "\f1b0";
}
.bp-messages-wrap .fa-peace::before {
  content: "\f67c";
}
.bp-messages-wrap .fa-pen::before {
  content: "\f304";
}
.bp-messages-wrap .fa-pen-clip::before {
  content: "\f305";
}
.bp-messages-wrap .fa-pen-alt::before {
  content: "\f305";
}
.bp-messages-wrap .fa-pen-fancy::before {
  content: "\f5ac";
}
.bp-messages-wrap .fa-pen-nib::before {
  content: "\f5ad";
}
.bp-messages-wrap .fa-pen-ruler::before {
  content: "\f5ae";
}
.bp-messages-wrap .fa-pencil-ruler::before {
  content: "\f5ae";
}
.bp-messages-wrap .fa-pen-to-square::before {
  content: "\f044";
}
.bp-messages-wrap .fa-edit::before {
  content: "\f044";
}
.bp-messages-wrap .fa-pencil::before {
  content: "\f303";
}
.bp-messages-wrap .fa-pencil-alt::before {
  content: "\f303";
}
.bp-messages-wrap .fa-people-arrows-left-right::before {
  content: "\e068";
}
.bp-messages-wrap .fa-people-arrows::before {
  content: "\e068";
}
.bp-messages-wrap .fa-people-carry-box::before {
  content: "\f4ce";
}
.bp-messages-wrap .fa-people-carry::before {
  content: "\f4ce";
}
.bp-messages-wrap .fa-people-group::before {
  content: "\e533";
}
.bp-messages-wrap .fa-people-line::before {
  content: "\e534";
}
.bp-messages-wrap .fa-people-pulling::before {
  content: "\e535";
}
.bp-messages-wrap .fa-people-robbery::before {
  content: "\e536";
}
.bp-messages-wrap .fa-people-roof::before {
  content: "\e537";
}
.bp-messages-wrap .fa-pepper-hot::before {
  content: "\f816";
}
.bp-messages-wrap .fa-percent::before {
  content: "%";
}
.bp-messages-wrap .fa-percentage::before {
  content: "%";
}
.bp-messages-wrap .fa-person::before {
  content: "\f183";
}
.bp-messages-wrap .fa-male::before {
  content: "\f183";
}
.bp-messages-wrap .fa-person-arrow-down-to-line::before {
  content: "\e538";
}
.bp-messages-wrap .fa-person-arrow-up-from-line::before {
  content: "\e539";
}
.bp-messages-wrap .fa-person-biking::before {
  content: "\f84a";
}
.bp-messages-wrap .fa-biking::before {
  content: "\f84a";
}
.bp-messages-wrap .fa-person-booth::before {
  content: "\f756";
}
.bp-messages-wrap .fa-person-breastfeeding::before {
  content: "\e53a";
}
.bp-messages-wrap .fa-person-burst::before {
  content: "\e53b";
}
.bp-messages-wrap .fa-person-cane::before {
  content: "\e53c";
}
.bp-messages-wrap .fa-person-chalkboard::before {
  content: "\e53d";
}
.bp-messages-wrap .fa-person-circle-check::before {
  content: "\e53e";
}
.bp-messages-wrap .fa-person-circle-exclamation::before {
  content: "\e53f";
}
.bp-messages-wrap .fa-person-circle-minus::before {
  content: "\e540";
}
.bp-messages-wrap .fa-person-circle-plus::before {
  content: "\e541";
}
.bp-messages-wrap .fa-person-circle-question::before {
  content: "\e542";
}
.bp-messages-wrap .fa-person-circle-xmark::before {
  content: "\e543";
}
.bp-messages-wrap .fa-person-digging::before {
  content: "\f85e";
}
.bp-messages-wrap .fa-digging::before {
  content: "\f85e";
}
.bp-messages-wrap .fa-person-dots-from-line::before {
  content: "\f470";
}
.bp-messages-wrap .fa-diagnoses::before {
  content: "\f470";
}
.bp-messages-wrap .fa-person-dress::before {
  content: "\f182";
}
.bp-messages-wrap .fa-female::before {
  content: "\f182";
}
.bp-messages-wrap .fa-person-dress-burst::before {
  content: "\e544";
}
.bp-messages-wrap .fa-person-drowning::before {
  content: "\e545";
}
.bp-messages-wrap .fa-person-falling::before {
  content: "\e546";
}
.bp-messages-wrap .fa-person-falling-burst::before {
  content: "\e547";
}
.bp-messages-wrap .fa-person-half-dress::before {
  content: "\e548";
}
.bp-messages-wrap .fa-person-harassing::before {
  content: "\e549";
}
.bp-messages-wrap .fa-person-hiking::before {
  content: "\f6ec";
}
.bp-messages-wrap .fa-hiking::before {
  content: "\f6ec";
}
.bp-messages-wrap .fa-person-military-pointing::before {
  content: "\e54a";
}
.bp-messages-wrap .fa-person-military-rifle::before {
  content: "\e54b";
}
.bp-messages-wrap .fa-person-military-to-person::before {
  content: "\e54c";
}
.bp-messages-wrap .fa-person-praying::before {
  content: "\f683";
}
.bp-messages-wrap .fa-pray::before {
  content: "\f683";
}
.bp-messages-wrap .fa-person-pregnant::before {
  content: "\e31e";
}
.bp-messages-wrap .fa-person-rays::before {
  content: "\e54d";
}
.bp-messages-wrap .fa-person-rifle::before {
  content: "\e54e";
}
.bp-messages-wrap .fa-person-running::before {
  content: "\f70c";
}
.bp-messages-wrap .fa-running::before {
  content: "\f70c";
}
.bp-messages-wrap .fa-person-shelter::before {
  content: "\e54f";
}
.bp-messages-wrap .fa-person-skating::before {
  content: "\f7c5";
}
.bp-messages-wrap .fa-skating::before {
  content: "\f7c5";
}
.bp-messages-wrap .fa-person-skiing::before {
  content: "\f7c9";
}
.bp-messages-wrap .fa-skiing::before {
  content: "\f7c9";
}
.bp-messages-wrap .fa-person-skiing-nordic::before {
  content: "\f7ca";
}
.bp-messages-wrap .fa-skiing-nordic::before {
  content: "\f7ca";
}
.bp-messages-wrap .fa-person-snowboarding::before {
  content: "\f7ce";
}
.bp-messages-wrap .fa-snowboarding::before {
  content: "\f7ce";
}
.bp-messages-wrap .fa-person-swimming::before {
  content: "\f5c4";
}
.bp-messages-wrap .fa-swimmer::before {
  content: "\f5c4";
}
.bp-messages-wrap .fa-person-through-window::before {
  content: "\e433";
}
.bp-messages-wrap .fa-person-walking::before {
  content: "\f554";
}
.bp-messages-wrap .fa-walking::before {
  content: "\f554";
}
.bp-messages-wrap .fa-person-walking-arrow-loop-left::before {
  content: "\e551";
}
.bp-messages-wrap .fa-person-walking-arrow-right::before {
  content: "\e552";
}
.bp-messages-wrap .fa-person-walking-dashed-line-arrow-right::before {
  content: "\e553";
}
.bp-messages-wrap .fa-person-walking-luggage::before {
  content: "\e554";
}
.bp-messages-wrap .fa-person-walking-with-cane::before {
  content: "\f29d";
}
.bp-messages-wrap .fa-blind::before {
  content: "\f29d";
}
.bp-messages-wrap .fa-peseta-sign::before {
  content: "\e221";
}
.bp-messages-wrap .fa-peso-sign::before {
  content: "\e222";
}
.bp-messages-wrap .fa-phone::before {
  content: "\f095";
}
.bp-messages-wrap .fa-phone-flip::before {
  content: "\f879";
}
.bp-messages-wrap .fa-phone-alt::before {
  content: "\f879";
}
.bp-messages-wrap .fa-phone-slash::before {
  content: "\f3dd";
}
.bp-messages-wrap .fa-phone-volume::before {
  content: "\f2a0";
}
.bp-messages-wrap .fa-volume-control-phone::before {
  content: "\f2a0";
}
.bp-messages-wrap .fa-photo-film::before {
  content: "\f87c";
}
.bp-messages-wrap .fa-photo-video::before {
  content: "\f87c";
}
.bp-messages-wrap .fa-piggy-bank::before {
  content: "\f4d3";
}
.bp-messages-wrap .fa-pills::before {
  content: "\f484";
}
.bp-messages-wrap .fa-pizza-slice::before {
  content: "\f818";
}
.bp-messages-wrap .fa-place-of-worship::before {
  content: "\f67f";
}
.bp-messages-wrap .fa-plane::before {
  content: "\f072";
}
.bp-messages-wrap .fa-plane-arrival::before {
  content: "\f5af";
}
.bp-messages-wrap .fa-plane-circle-check::before {
  content: "\e555";
}
.bp-messages-wrap .fa-plane-circle-exclamation::before {
  content: "\e556";
}
.bp-messages-wrap .fa-plane-circle-xmark::before {
  content: "\e557";
}
.bp-messages-wrap .fa-plane-departure::before {
  content: "\f5b0";
}
.bp-messages-wrap .fa-plane-lock::before {
  content: "\e558";
}
.bp-messages-wrap .fa-plane-slash::before {
  content: "\e069";
}
.bp-messages-wrap .fa-plane-up::before {
  content: "\e22d";
}
.bp-messages-wrap .fa-plant-wilt::before {
  content: "\e43b";
}
.bp-messages-wrap .fa-plate-wheat::before {
  content: "\e55a";
}
.bp-messages-wrap .fa-play::before {
  content: "\f04b";
}
.bp-messages-wrap .fa-plug::before {
  content: "\f1e6";
}
.bp-messages-wrap .fa-plug-circle-bolt::before {
  content: "\e55b";
}
.bp-messages-wrap .fa-plug-circle-check::before {
  content: "\e55c";
}
.bp-messages-wrap .fa-plug-circle-exclamation::before {
  content: "\e55d";
}
.bp-messages-wrap .fa-plug-circle-minus::before {
  content: "\e55e";
}
.bp-messages-wrap .fa-plug-circle-plus::before {
  content: "\e55f";
}
.bp-messages-wrap .fa-plug-circle-xmark::before {
  content: "\e560";
}
.bp-messages-wrap .fa-plus::before {
  content: "+";
}
.bp-messages-wrap .fa-add::before {
  content: "+";
}
.bp-messages-wrap .fa-plus-minus::before {
  content: "\e43c";
}
.bp-messages-wrap .fa-podcast::before {
  content: "\f2ce";
}
.bp-messages-wrap .fa-poo::before {
  content: "\f2fe";
}
.bp-messages-wrap .fa-poo-storm::before {
  content: "\f75a";
}
.bp-messages-wrap .fa-poo-bolt::before {
  content: "\f75a";
}
.bp-messages-wrap .fa-poop::before {
  content: "\f619";
}
.bp-messages-wrap .fa-power-off::before {
  content: "\f011";
}
.bp-messages-wrap .fa-prescription::before {
  content: "\f5b1";
}
.bp-messages-wrap .fa-prescription-bottle::before {
  content: "\f485";
}
.bp-messages-wrap .fa-prescription-bottle-medical::before {
  content: "\f486";
}
.bp-messages-wrap .fa-prescription-bottle-alt::before {
  content: "\f486";
}
.bp-messages-wrap .fa-print::before {
  content: "\f02f";
}
.bp-messages-wrap .fa-pump-medical::before {
  content: "\e06a";
}
.bp-messages-wrap .fa-pump-soap::before {
  content: "\e06b";
}
.bp-messages-wrap .fa-puzzle-piece::before {
  content: "\f12e";
}
.bp-messages-wrap .fa-q::before {
  content: "Q";
}
.bp-messages-wrap .fa-qrcode::before {
  content: "\f029";
}
.bp-messages-wrap .fa-question::before {
  content: "?";
}
.bp-messages-wrap .fa-quote-left::before {
  content: "\f10d";
}
.bp-messages-wrap .fa-quote-left-alt::before {
  content: "\f10d";
}
.bp-messages-wrap .fa-quote-right::before {
  content: "\f10e";
}
.bp-messages-wrap .fa-quote-right-alt::before {
  content: "\f10e";
}
.bp-messages-wrap .fa-r::before {
  content: "R";
}
.bp-messages-wrap .fa-radiation::before {
  content: "\f7b9";
}
.bp-messages-wrap .fa-radio::before {
  content: "\f8d7";
}
.bp-messages-wrap .fa-rainbow::before {
  content: "\f75b";
}
.bp-messages-wrap .fa-ranking-star::before {
  content: "\e561";
}
.bp-messages-wrap .fa-receipt::before {
  content: "\f543";
}
.bp-messages-wrap .fa-record-vinyl::before {
  content: "\f8d9";
}
.bp-messages-wrap .fa-rectangle-ad::before {
  content: "\f641";
}
.bp-messages-wrap .fa-ad::before {
  content: "\f641";
}
.bp-messages-wrap .fa-rectangle-list::before {
  content: "\f022";
}
.bp-messages-wrap .fa-list-alt::before {
  content: "\f022";
}
.bp-messages-wrap .fa-rectangle-xmark::before {
  content: "\f410";
}
.bp-messages-wrap .fa-rectangle-times::before {
  content: "\f410";
}
.bp-messages-wrap .fa-times-rectangle::before {
  content: "\f410";
}
.bp-messages-wrap .fa-window-close::before {
  content: "\f410";
}
.bp-messages-wrap .fa-recycle::before {
  content: "\f1b8";
}
.bp-messages-wrap .fa-registered::before {
  content: "\f25d";
}
.bp-messages-wrap .fa-repeat::before {
  content: "\f363";
}
.bp-messages-wrap .fa-reply::before {
  content: "\f3e5";
}
.bp-messages-wrap .fa-mail-reply::before {
  content: "\f3e5";
}
.bp-messages-wrap .fa-reply-all::before {
  content: "\f122";
}
.bp-messages-wrap .fa-mail-reply-all::before {
  content: "\f122";
}
.bp-messages-wrap .fa-republican::before {
  content: "\f75e";
}
.bp-messages-wrap .fa-restroom::before {
  content: "\f7bd";
}
.bp-messages-wrap .fa-retweet::before {
  content: "\f079";
}
.bp-messages-wrap .fa-ribbon::before {
  content: "\f4d6";
}
.bp-messages-wrap .fa-right-from-bracket::before {
  content: "\f2f5";
}
.bp-messages-wrap .fa-sign-out-alt::before {
  content: "\f2f5";
}
.bp-messages-wrap .fa-right-left::before {
  content: "\f362";
}
.bp-messages-wrap .fa-exchange-alt::before {
  content: "\f362";
}
.bp-messages-wrap .fa-right-long::before {
  content: "\f30b";
}
.bp-messages-wrap .fa-long-arrow-alt-right::before {
  content: "\f30b";
}
.bp-messages-wrap .fa-right-to-bracket::before {
  content: "\f2f6";
}
.bp-messages-wrap .fa-sign-in-alt::before {
  content: "\f2f6";
}
.bp-messages-wrap .fa-ring::before {
  content: "\f70b";
}
.bp-messages-wrap .fa-road::before {
  content: "\f018";
}
.bp-messages-wrap .fa-road-barrier::before {
  content: "\e562";
}
.bp-messages-wrap .fa-road-bridge::before {
  content: "\e563";
}
.bp-messages-wrap .fa-road-circle-check::before {
  content: "\e564";
}
.bp-messages-wrap .fa-road-circle-exclamation::before {
  content: "\e565";
}
.bp-messages-wrap .fa-road-circle-xmark::before {
  content: "\e566";
}
.bp-messages-wrap .fa-road-lock::before {
  content: "\e567";
}
.bp-messages-wrap .fa-road-spikes::before {
  content: "\e568";
}
.bp-messages-wrap .fa-robot::before {
  content: "\f544";
}
.bp-messages-wrap .fa-rocket::before {
  content: "\f135";
}
.bp-messages-wrap .fa-rotate::before {
  content: "\f2f1";
}
.bp-messages-wrap .fa-sync-alt::before {
  content: "\f2f1";
}
.bp-messages-wrap .fa-rotate-left::before {
  content: "\f2ea";
}
.bp-messages-wrap .fa-rotate-back::before {
  content: "\f2ea";
}
.bp-messages-wrap .fa-rotate-backward::before {
  content: "\f2ea";
}
.bp-messages-wrap .fa-undo-alt::before {
  content: "\f2ea";
}
.bp-messages-wrap .fa-rotate-right::before {
  content: "\f2f9";
}
.bp-messages-wrap .fa-redo-alt::before {
  content: "\f2f9";
}
.bp-messages-wrap .fa-rotate-forward::before {
  content: "\f2f9";
}
.bp-messages-wrap .fa-route::before {
  content: "\f4d7";
}
.bp-messages-wrap .fa-rss::before {
  content: "\f09e";
}
.bp-messages-wrap .fa-feed::before {
  content: "\f09e";
}
.bp-messages-wrap .fa-ruble-sign::before {
  content: "\f158";
}
.bp-messages-wrap .fa-rouble::before {
  content: "\f158";
}
.bp-messages-wrap .fa-rub::before {
  content: "\f158";
}
.bp-messages-wrap .fa-ruble::before {
  content: "\f158";
}
.bp-messages-wrap .fa-rug::before {
  content: "\e569";
}
.bp-messages-wrap .fa-ruler::before {
  content: "\f545";
}
.bp-messages-wrap .fa-ruler-combined::before {
  content: "\f546";
}
.bp-messages-wrap .fa-ruler-horizontal::before {
  content: "\f547";
}
.bp-messages-wrap .fa-ruler-vertical::before {
  content: "\f548";
}
.bp-messages-wrap .fa-rupee-sign::before {
  content: "\f156";
}
.bp-messages-wrap .fa-rupee::before {
  content: "\f156";
}
.bp-messages-wrap .fa-rupiah-sign::before {
  content: "\e23d";
}
.bp-messages-wrap .fa-s::before {
  content: "S";
}
.bp-messages-wrap .fa-sack-dollar::before {
  content: "\f81d";
}
.bp-messages-wrap .fa-sack-xmark::before {
  content: "\e56a";
}
.bp-messages-wrap .fa-sailboat::before {
  content: "\e445";
}
.bp-messages-wrap .fa-satellite::before {
  content: "\f7bf";
}
.bp-messages-wrap .fa-satellite-dish::before {
  content: "\f7c0";
}
.bp-messages-wrap .fa-scale-balanced::before {
  content: "\f24e";
}
.bp-messages-wrap .fa-balance-scale::before {
  content: "\f24e";
}
.bp-messages-wrap .fa-scale-unbalanced::before {
  content: "\f515";
}
.bp-messages-wrap .fa-balance-scale-left::before {
  content: "\f515";
}
.bp-messages-wrap .fa-scale-unbalanced-flip::before {
  content: "\f516";
}
.bp-messages-wrap .fa-balance-scale-right::before {
  content: "\f516";
}
.bp-messages-wrap .fa-school::before {
  content: "\f549";
}
.bp-messages-wrap .fa-school-circle-check::before {
  content: "\e56b";
}
.bp-messages-wrap .fa-school-circle-exclamation::before {
  content: "\e56c";
}
.bp-messages-wrap .fa-school-circle-xmark::before {
  content: "\e56d";
}
.bp-messages-wrap .fa-school-flag::before {
  content: "\e56e";
}
.bp-messages-wrap .fa-school-lock::before {
  content: "\e56f";
}
.bp-messages-wrap .fa-scissors::before {
  content: "\f0c4";
}
.bp-messages-wrap .fa-cut::before {
  content: "\f0c4";
}
.bp-messages-wrap .fa-screwdriver::before {
  content: "\f54a";
}
.bp-messages-wrap .fa-screwdriver-wrench::before {
  content: "\f7d9";
}
.bp-messages-wrap .fa-tools::before {
  content: "\f7d9";
}
.bp-messages-wrap .fa-scroll::before {
  content: "\f70e";
}
.bp-messages-wrap .fa-scroll-torah::before {
  content: "\f6a0";
}
.bp-messages-wrap .fa-torah::before {
  content: "\f6a0";
}
.bp-messages-wrap .fa-sd-card::before {
  content: "\f7c2";
}
.bp-messages-wrap .fa-section::before {
  content: "\e447";
}
.bp-messages-wrap .fa-seedling::before {
  content: "\f4d8";
}
.bp-messages-wrap .fa-sprout::before {
  content: "\f4d8";
}
.bp-messages-wrap .fa-server::before {
  content: "\f233";
}
.bp-messages-wrap .fa-shapes::before {
  content: "\f61f";
}
.bp-messages-wrap .fa-triangle-circle-square::before {
  content: "\f61f";
}
.bp-messages-wrap .fa-share::before {
  content: "\f064";
}
.bp-messages-wrap .fa-arrow-turn-right::before {
  content: "\f064";
}
.bp-messages-wrap .fa-mail-forward::before {
  content: "\f064";
}
.bp-messages-wrap .fa-share-from-square::before {
  content: "\f14d";
}
.bp-messages-wrap .fa-share-square::before {
  content: "\f14d";
}
.bp-messages-wrap .fa-share-nodes::before {
  content: "\f1e0";
}
.bp-messages-wrap .fa-share-alt::before {
  content: "\f1e0";
}
.bp-messages-wrap .fa-sheet-plastic::before {
  content: "\e571";
}
.bp-messages-wrap .fa-shekel-sign::before {
  content: "\f20b";
}
.bp-messages-wrap .fa-ils::before {
  content: "\f20b";
}
.bp-messages-wrap .fa-shekel::before {
  content: "\f20b";
}
.bp-messages-wrap .fa-sheqel::before {
  content: "\f20b";
}
.bp-messages-wrap .fa-sheqel-sign::before {
  content: "\f20b";
}
.bp-messages-wrap .fa-shield::before {
  content: "\f132";
}
.bp-messages-wrap .fa-shield-blank::before {
  content: "\f132";
}
.bp-messages-wrap .fa-shield-cat::before {
  content: "\e572";
}
.bp-messages-wrap .fa-shield-dog::before {
  content: "\e573";
}
.bp-messages-wrap .fa-shield-halved::before {
  content: "\f3ed";
}
.bp-messages-wrap .fa-shield-alt::before {
  content: "\f3ed";
}
.bp-messages-wrap .fa-shield-heart::before {
  content: "\e574";
}
.bp-messages-wrap .fa-shield-virus::before {
  content: "\e06c";
}
.bp-messages-wrap .fa-ship::before {
  content: "\f21a";
}
.bp-messages-wrap .fa-shirt::before {
  content: "\f553";
}
.bp-messages-wrap .fa-t-shirt::before {
  content: "\f553";
}
.bp-messages-wrap .fa-tshirt::before {
  content: "\f553";
}
.bp-messages-wrap .fa-shoe-prints::before {
  content: "\f54b";
}
.bp-messages-wrap .fa-shop::before {
  content: "\f54f";
}
.bp-messages-wrap .fa-store-alt::before {
  content: "\f54f";
}
.bp-messages-wrap .fa-shop-lock::before {
  content: "\e4a5";
}
.bp-messages-wrap .fa-shop-slash::before {
  content: "\e070";
}
.bp-messages-wrap .fa-store-alt-slash::before {
  content: "\e070";
}
.bp-messages-wrap .fa-shower::before {
  content: "\f2cc";
}
.bp-messages-wrap .fa-shrimp::before {
  content: "\e448";
}
.bp-messages-wrap .fa-shuffle::before {
  content: "\f074";
}
.bp-messages-wrap .fa-random::before {
  content: "\f074";
}
.bp-messages-wrap .fa-shuttle-space::before {
  content: "\f197";
}
.bp-messages-wrap .fa-space-shuttle::before {
  content: "\f197";
}
.bp-messages-wrap .fa-sign-hanging::before {
  content: "\f4d9";
}
.bp-messages-wrap .fa-sign::before {
  content: "\f4d9";
}
.bp-messages-wrap .fa-signal::before {
  content: "\f012";
}
.bp-messages-wrap .fa-signal-5::before {
  content: "\f012";
}
.bp-messages-wrap .fa-signal-perfect::before {
  content: "\f012";
}
.bp-messages-wrap .fa-signature::before {
  content: "\f5b7";
}
.bp-messages-wrap .fa-signs-post::before {
  content: "\f277";
}
.bp-messages-wrap .fa-map-signs::before {
  content: "\f277";
}
.bp-messages-wrap .fa-sim-card::before {
  content: "\f7c4";
}
.bp-messages-wrap .fa-sink::before {
  content: "\e06d";
}
.bp-messages-wrap .fa-sitemap::before {
  content: "\f0e8";
}
.bp-messages-wrap .fa-skull::before {
  content: "\f54c";
}
.bp-messages-wrap .fa-skull-crossbones::before {
  content: "\f714";
}
.bp-messages-wrap .fa-slash::before {
  content: "\f715";
}
.bp-messages-wrap .fa-sleigh::before {
  content: "\f7cc";
}
.bp-messages-wrap .fa-sliders::before {
  content: "\f1de";
}
.bp-messages-wrap .fa-sliders-h::before {
  content: "\f1de";
}
.bp-messages-wrap .fa-smog::before {
  content: "\f75f";
}
.bp-messages-wrap .fa-smoking::before {
  content: "\f48d";
}
.bp-messages-wrap .fa-snowflake::before {
  content: "\f2dc";
}
.bp-messages-wrap .fa-snowman::before {
  content: "\f7d0";
}
.bp-messages-wrap .fa-snowplow::before {
  content: "\f7d2";
}
.bp-messages-wrap .fa-soap::before {
  content: "\e06e";
}
.bp-messages-wrap .fa-socks::before {
  content: "\f696";
}
.bp-messages-wrap .fa-solar-panel::before {
  content: "\f5ba";
}
.bp-messages-wrap .fa-sort::before {
  content: "\f0dc";
}
.bp-messages-wrap .fa-unsorted::before {
  content: "\f0dc";
}
.bp-messages-wrap .fa-sort-down::before {
  content: "\f0dd";
}
.bp-messages-wrap .fa-sort-desc::before {
  content: "\f0dd";
}
.bp-messages-wrap .fa-sort-up::before {
  content: "\f0de";
}
.bp-messages-wrap .fa-sort-asc::before {
  content: "\f0de";
}
.bp-messages-wrap .fa-spa::before {
  content: "\f5bb";
}
.bp-messages-wrap .fa-spaghetti-monster-flying::before {
  content: "\f67b";
}
.bp-messages-wrap .fa-pastafarianism::before {
  content: "\f67b";
}
.bp-messages-wrap .fa-spell-check::before {
  content: "\f891";
}
.bp-messages-wrap .fa-spider::before {
  content: "\f717";
}
.bp-messages-wrap .fa-spinner::before {
  content: "\f110";
}
.bp-messages-wrap .fa-splotch::before {
  content: "\f5bc";
}
.bp-messages-wrap .fa-spoon::before {
  content: "\f2e5";
}
.bp-messages-wrap .fa-utensil-spoon::before {
  content: "\f2e5";
}
.bp-messages-wrap .fa-spray-can::before {
  content: "\f5bd";
}
.bp-messages-wrap .fa-spray-can-sparkles::before {
  content: "\f5d0";
}
.bp-messages-wrap .fa-air-freshener::before {
  content: "\f5d0";
}
.bp-messages-wrap .fa-square::before {
  content: "\f0c8";
}
.bp-messages-wrap .fa-square-arrow-up-right::before {
  content: "\f14c";
}
.bp-messages-wrap .fa-external-link-square::before {
  content: "\f14c";
}
.bp-messages-wrap .fa-square-caret-down::before {
  content: "\f150";
}
.bp-messages-wrap .fa-caret-square-down::before {
  content: "\f150";
}
.bp-messages-wrap .fa-square-caret-left::before {
  content: "\f191";
}
.bp-messages-wrap .fa-caret-square-left::before {
  content: "\f191";
}
.bp-messages-wrap .fa-square-caret-right::before {
  content: "\f152";
}
.bp-messages-wrap .fa-caret-square-right::before {
  content: "\f152";
}
.bp-messages-wrap .fa-square-caret-up::before {
  content: "\f151";
}
.bp-messages-wrap .fa-caret-square-up::before {
  content: "\f151";
}
.bp-messages-wrap .fa-square-check::before {
  content: "\f14a";
}
.bp-messages-wrap .fa-check-square::before {
  content: "\f14a";
}
.bp-messages-wrap .fa-square-envelope::before {
  content: "\f199";
}
.bp-messages-wrap .fa-envelope-square::before {
  content: "\f199";
}
.bp-messages-wrap .fa-square-full::before {
  content: "\f45c";
}
.bp-messages-wrap .fa-square-h::before {
  content: "\f0fd";
}
.bp-messages-wrap .fa-h-square::before {
  content: "\f0fd";
}
.bp-messages-wrap .fa-square-minus::before {
  content: "\f146";
}
.bp-messages-wrap .fa-minus-square::before {
  content: "\f146";
}
.bp-messages-wrap .fa-square-nfi::before {
  content: "\e576";
}
.bp-messages-wrap .fa-square-parking::before {
  content: "\f540";
}
.bp-messages-wrap .fa-parking::before {
  content: "\f540";
}
.bp-messages-wrap .fa-square-pen::before {
  content: "\f14b";
}
.bp-messages-wrap .fa-pen-square::before {
  content: "\f14b";
}
.bp-messages-wrap .fa-pencil-square::before {
  content: "\f14b";
}
.bp-messages-wrap .fa-square-person-confined::before {
  content: "\e577";
}
.bp-messages-wrap .fa-square-phone::before {
  content: "\f098";
}
.bp-messages-wrap .fa-phone-square::before {
  content: "\f098";
}
.bp-messages-wrap .fa-square-phone-flip::before {
  content: "\f87b";
}
.bp-messages-wrap .fa-phone-square-alt::before {
  content: "\f87b";
}
.bp-messages-wrap .fa-square-plus::before {
  content: "\f0fe";
}
.bp-messages-wrap .fa-plus-square::before {
  content: "\f0fe";
}
.bp-messages-wrap .fa-square-poll-horizontal::before {
  content: "\f682";
}
.bp-messages-wrap .fa-poll-h::before {
  content: "\f682";
}
.bp-messages-wrap .fa-square-poll-vertical::before {
  content: "\f681";
}
.bp-messages-wrap .fa-poll::before {
  content: "\f681";
}
.bp-messages-wrap .fa-square-root-variable::before {
  content: "\f698";
}
.bp-messages-wrap .fa-square-root-alt::before {
  content: "\f698";
}
.bp-messages-wrap .fa-square-rss::before {
  content: "\f143";
}
.bp-messages-wrap .fa-rss-square::before {
  content: "\f143";
}
.bp-messages-wrap .fa-square-share-nodes::before {
  content: "\f1e1";
}
.bp-messages-wrap .fa-share-alt-square::before {
  content: "\f1e1";
}
.bp-messages-wrap .fa-square-up-right::before {
  content: "\f360";
}
.bp-messages-wrap .fa-external-link-square-alt::before {
  content: "\f360";
}
.bp-messages-wrap .fa-square-virus::before {
  content: "\e578";
}
.bp-messages-wrap .fa-square-xmark::before {
  content: "\f2d3";
}
.bp-messages-wrap .fa-times-square::before {
  content: "\f2d3";
}
.bp-messages-wrap .fa-xmark-square::before {
  content: "\f2d3";
}
.bp-messages-wrap .fa-staff-aesculapius::before {
  content: "\e579";
}
.bp-messages-wrap .fa-rod-asclepius::before {
  content: "\e579";
}
.bp-messages-wrap .fa-rod-snake::before {
  content: "\e579";
}
.bp-messages-wrap .fa-staff-snake::before {
  content: "\e579";
}
.bp-messages-wrap .fa-stairs::before {
  content: "\e289";
}
.bp-messages-wrap .fa-stamp::before {
  content: "\f5bf";
}
.bp-messages-wrap .fa-star::before {
  content: "\f005";
}
.bp-messages-wrap .fa-star-and-crescent::before {
  content: "\f699";
}
.bp-messages-wrap .fa-star-half::before {
  content: "\f089";
}
.bp-messages-wrap .fa-star-half-stroke::before {
  content: "\f5c0";
}
.bp-messages-wrap .fa-star-half-alt::before {
  content: "\f5c0";
}
.bp-messages-wrap .fa-star-of-david::before {
  content: "\f69a";
}
.bp-messages-wrap .fa-star-of-life::before {
  content: "\f621";
}
.bp-messages-wrap .fa-sterling-sign::before {
  content: "\f154";
}
.bp-messages-wrap .fa-gbp::before {
  content: "\f154";
}
.bp-messages-wrap .fa-pound-sign::before {
  content: "\f154";
}
.bp-messages-wrap .fa-stethoscope::before {
  content: "\f0f1";
}
.bp-messages-wrap .fa-stop::before {
  content: "\f04d";
}
.bp-messages-wrap .fa-stopwatch::before {
  content: "\f2f2";
}
.bp-messages-wrap .fa-stopwatch-20::before {
  content: "\e06f";
}
.bp-messages-wrap .fa-store::before {
  content: "\f54e";
}
.bp-messages-wrap .fa-store-slash::before {
  content: "\e071";
}
.bp-messages-wrap .fa-street-view::before {
  content: "\f21d";
}
.bp-messages-wrap .fa-strikethrough::before {
  content: "\f0cc";
}
.bp-messages-wrap .fa-stroopwafel::before {
  content: "\f551";
}
.bp-messages-wrap .fa-subscript::before {
  content: "\f12c";
}
.bp-messages-wrap .fa-suitcase::before {
  content: "\f0f2";
}
.bp-messages-wrap .fa-suitcase-medical::before {
  content: "\f0fa";
}
.bp-messages-wrap .fa-medkit::before {
  content: "\f0fa";
}
.bp-messages-wrap .fa-suitcase-rolling::before {
  content: "\f5c1";
}
.bp-messages-wrap .fa-sun::before {
  content: "\f185";
}
.bp-messages-wrap .fa-sun-plant-wilt::before {
  content: "\e57a";
}
.bp-messages-wrap .fa-superscript::before {
  content: "\f12b";
}
.bp-messages-wrap .fa-swatchbook::before {
  content: "\f5c3";
}
.bp-messages-wrap .fa-synagogue::before {
  content: "\f69b";
}
.bp-messages-wrap .fa-syringe::before {
  content: "\f48e";
}
.bp-messages-wrap .fa-t::before {
  content: "T";
}
.bp-messages-wrap .fa-table::before {
  content: "\f0ce";
}
.bp-messages-wrap .fa-table-cells::before {
  content: "\f00a";
}
.bp-messages-wrap .fa-th::before {
  content: "\f00a";
}
.bp-messages-wrap .fa-table-cells-large::before {
  content: "\f009";
}
.bp-messages-wrap .fa-th-large::before {
  content: "\f009";
}
.bp-messages-wrap .fa-table-columns::before {
  content: "\f0db";
}
.bp-messages-wrap .fa-columns::before {
  content: "\f0db";
}
.bp-messages-wrap .fa-table-list::before {
  content: "\f00b";
}
.bp-messages-wrap .fa-th-list::before {
  content: "\f00b";
}
.bp-messages-wrap .fa-table-tennis-paddle-ball::before {
  content: "\f45d";
}
.bp-messages-wrap .fa-ping-pong-paddle-ball::before {
  content: "\f45d";
}
.bp-messages-wrap .fa-table-tennis::before {
  content: "\f45d";
}
.bp-messages-wrap .fa-tablet::before {
  content: "\f3fb";
}
.bp-messages-wrap .fa-tablet-android::before {
  content: "\f3fb";
}
.bp-messages-wrap .fa-tablet-button::before {
  content: "\f10a";
}
.bp-messages-wrap .fa-tablet-screen-button::before {
  content: "\f3fa";
}
.bp-messages-wrap .fa-tablet-alt::before {
  content: "\f3fa";
}
.bp-messages-wrap .fa-tablets::before {
  content: "\f490";
}
.bp-messages-wrap .fa-tachograph-digital::before {
  content: "\f566";
}
.bp-messages-wrap .fa-digital-tachograph::before {
  content: "\f566";
}
.bp-messages-wrap .fa-tag::before {
  content: "\f02b";
}
.bp-messages-wrap .fa-tags::before {
  content: "\f02c";
}
.bp-messages-wrap .fa-tape::before {
  content: "\f4db";
}
.bp-messages-wrap .fa-tarp::before {
  content: "\e57b";
}
.bp-messages-wrap .fa-tarp-droplet::before {
  content: "\e57c";
}
.bp-messages-wrap .fa-taxi::before {
  content: "\f1ba";
}
.bp-messages-wrap .fa-cab::before {
  content: "\f1ba";
}
.bp-messages-wrap .fa-teeth::before {
  content: "\f62e";
}
.bp-messages-wrap .fa-teeth-open::before {
  content: "\f62f";
}
.bp-messages-wrap .fa-temperature-arrow-down::before {
  content: "\e03f";
}
.bp-messages-wrap .fa-temperature-down::before {
  content: "\e03f";
}
.bp-messages-wrap .fa-temperature-arrow-up::before {
  content: "\e040";
}
.bp-messages-wrap .fa-temperature-up::before {
  content: "\e040";
}
.bp-messages-wrap .fa-temperature-empty::before {
  content: "\f2cb";
}
.bp-messages-wrap .fa-temperature-0::before {
  content: "\f2cb";
}
.bp-messages-wrap .fa-thermometer-0::before {
  content: "\f2cb";
}
.bp-messages-wrap .fa-thermometer-empty::before {
  content: "\f2cb";
}
.bp-messages-wrap .fa-temperature-full::before {
  content: "\f2c7";
}
.bp-messages-wrap .fa-temperature-4::before {
  content: "\f2c7";
}
.bp-messages-wrap .fa-thermometer-4::before {
  content: "\f2c7";
}
.bp-messages-wrap .fa-thermometer-full::before {
  content: "\f2c7";
}
.bp-messages-wrap .fa-temperature-half::before {
  content: "\f2c9";
}
.bp-messages-wrap .fa-temperature-2::before {
  content: "\f2c9";
}
.bp-messages-wrap .fa-thermometer-2::before {
  content: "\f2c9";
}
.bp-messages-wrap .fa-thermometer-half::before {
  content: "\f2c9";
}
.bp-messages-wrap .fa-temperature-high::before {
  content: "\f769";
}
.bp-messages-wrap .fa-temperature-low::before {
  content: "\f76b";
}
.bp-messages-wrap .fa-temperature-quarter::before {
  content: "\f2ca";
}
.bp-messages-wrap .fa-temperature-1::before {
  content: "\f2ca";
}
.bp-messages-wrap .fa-thermometer-1::before {
  content: "\f2ca";
}
.bp-messages-wrap .fa-thermometer-quarter::before {
  content: "\f2ca";
}
.bp-messages-wrap .fa-temperature-three-quarters::before {
  content: "\f2c8";
}
.bp-messages-wrap .fa-temperature-3::before {
  content: "\f2c8";
}
.bp-messages-wrap .fa-thermometer-3::before {
  content: "\f2c8";
}
.bp-messages-wrap .fa-thermometer-three-quarters::before {
  content: "\f2c8";
}
.bp-messages-wrap .fa-tenge-sign::before {
  content: "\f7d7";
}
.bp-messages-wrap .fa-tenge::before {
  content: "\f7d7";
}
.bp-messages-wrap .fa-tent::before {
  content: "\e57d";
}
.bp-messages-wrap .fa-tent-arrow-down-to-line::before {
  content: "\e57e";
}
.bp-messages-wrap .fa-tent-arrow-left-right::before {
  content: "\e57f";
}
.bp-messages-wrap .fa-tent-arrow-turn-left::before {
  content: "\e580";
}
.bp-messages-wrap .fa-tent-arrows-down::before {
  content: "\e581";
}
.bp-messages-wrap .fa-tents::before {
  content: "\e582";
}
.bp-messages-wrap .fa-terminal::before {
  content: "\f120";
}
.bp-messages-wrap .fa-text-height::before {
  content: "\f034";
}
.bp-messages-wrap .fa-text-slash::before {
  content: "\f87d";
}
.bp-messages-wrap .fa-remove-format::before {
  content: "\f87d";
}
.bp-messages-wrap .fa-text-width::before {
  content: "\f035";
}
.bp-messages-wrap .fa-thermometer::before {
  content: "\f491";
}
.bp-messages-wrap .fa-thumbs-down::before {
  content: "\f165";
}
.bp-messages-wrap .fa-thumbs-up::before {
  content: "\f164";
}
.bp-messages-wrap .fa-thumbtack::before {
  content: "\f08d";
}
.bp-messages-wrap .fa-thumb-tack::before {
  content: "\f08d";
}
.bp-messages-wrap .fa-ticket::before {
  content: "\f145";
}
.bp-messages-wrap .fa-ticket-simple::before {
  content: "\f3ff";
}
.bp-messages-wrap .fa-ticket-alt::before {
  content: "\f3ff";
}
.bp-messages-wrap .fa-timeline::before {
  content: "\e29c";
}
.bp-messages-wrap .fa-toggle-off::before {
  content: "\f204";
}
.bp-messages-wrap .fa-toggle-on::before {
  content: "\f205";
}
.bp-messages-wrap .fa-toilet::before {
  content: "\f7d8";
}
.bp-messages-wrap .fa-toilet-paper::before {
  content: "\f71e";
}
.bp-messages-wrap .fa-toilet-paper-slash::before {
  content: "\e072";
}
.bp-messages-wrap .fa-toilet-portable::before {
  content: "\e583";
}
.bp-messages-wrap .fa-toilets-portable::before {
  content: "\e584";
}
.bp-messages-wrap .fa-toolbox::before {
  content: "\f552";
}
.bp-messages-wrap .fa-tooth::before {
  content: "\f5c9";
}
.bp-messages-wrap .fa-torii-gate::before {
  content: "\f6a1";
}
.bp-messages-wrap .fa-tornado::before {
  content: "\f76f";
}
.bp-messages-wrap .fa-tower-broadcast::before {
  content: "\f519";
}
.bp-messages-wrap .fa-broadcast-tower::before {
  content: "\f519";
}
.bp-messages-wrap .fa-tower-cell::before {
  content: "\e585";
}
.bp-messages-wrap .fa-tower-observation::before {
  content: "\e586";
}
.bp-messages-wrap .fa-tractor::before {
  content: "\f722";
}
.bp-messages-wrap .fa-trademark::before {
  content: "\f25c";
}
.bp-messages-wrap .fa-traffic-light::before {
  content: "\f637";
}
.bp-messages-wrap .fa-trailer::before {
  content: "\e041";
}
.bp-messages-wrap .fa-train::before {
  content: "\f238";
}
.bp-messages-wrap .fa-train-subway::before {
  content: "\f239";
}
.bp-messages-wrap .fa-subway::before {
  content: "\f239";
}
.bp-messages-wrap .fa-train-tram::before {
  content: "\f7da";
}
.bp-messages-wrap .fa-tram::before {
  content: "\f7da";
}
.bp-messages-wrap .fa-transgender::before {
  content: "\f225";
}
.bp-messages-wrap .fa-transgender-alt::before {
  content: "\f225";
}
.bp-messages-wrap .fa-trash::before {
  content: "\f1f8";
}
.bp-messages-wrap .fa-trash-arrow-up::before {
  content: "\f829";
}
.bp-messages-wrap .fa-trash-restore::before {
  content: "\f829";
}
.bp-messages-wrap .fa-trash-can::before {
  content: "\f2ed";
}
.bp-messages-wrap .fa-trash-alt::before {
  content: "\f2ed";
}
.bp-messages-wrap .fa-trash-can-arrow-up::before {
  content: "\f82a";
}
.bp-messages-wrap .fa-trash-restore-alt::before {
  content: "\f82a";
}
.bp-messages-wrap .fa-tree::before {
  content: "\f1bb";
}
.bp-messages-wrap .fa-tree-city::before {
  content: "\e587";
}
.bp-messages-wrap .fa-triangle-exclamation::before {
  content: "\f071";
}
.bp-messages-wrap .fa-exclamation-triangle::before {
  content: "\f071";
}
.bp-messages-wrap .fa-warning::before {
  content: "\f071";
}
.bp-messages-wrap .fa-trophy::before {
  content: "\f091";
}
.bp-messages-wrap .fa-trowel::before {
  content: "\e589";
}
.bp-messages-wrap .fa-trowel-bricks::before {
  content: "\e58a";
}
.bp-messages-wrap .fa-truck::before {
  content: "\f0d1";
}
.bp-messages-wrap .fa-truck-arrow-right::before {
  content: "\e58b";
}
.bp-messages-wrap .fa-truck-droplet::before {
  content: "\e58c";
}
.bp-messages-wrap .fa-truck-fast::before {
  content: "\f48b";
}
.bp-messages-wrap .fa-shipping-fast::before {
  content: "\f48b";
}
.bp-messages-wrap .fa-truck-field::before {
  content: "\e58d";
}
.bp-messages-wrap .fa-truck-field-un::before {
  content: "\e58e";
}
.bp-messages-wrap .fa-truck-front::before {
  content: "\e2b7";
}
.bp-messages-wrap .fa-truck-medical::before {
  content: "\f0f9";
}
.bp-messages-wrap .fa-ambulance::before {
  content: "\f0f9";
}
.bp-messages-wrap .fa-truck-monster::before {
  content: "\f63b";
}
.bp-messages-wrap .fa-truck-moving::before {
  content: "\f4df";
}
.bp-messages-wrap .fa-truck-pickup::before {
  content: "\f63c";
}
.bp-messages-wrap .fa-truck-plane::before {
  content: "\e58f";
}
.bp-messages-wrap .fa-truck-ramp-box::before {
  content: "\f4de";
}
.bp-messages-wrap .fa-truck-loading::before {
  content: "\f4de";
}
.bp-messages-wrap .fa-tty::before {
  content: "\f1e4";
}
.bp-messages-wrap .fa-teletype::before {
  content: "\f1e4";
}
.bp-messages-wrap .fa-turkish-lira-sign::before {
  content: "\e2bb";
}
.bp-messages-wrap .fa-try::before {
  content: "\e2bb";
}
.bp-messages-wrap .fa-turkish-lira::before {
  content: "\e2bb";
}
.bp-messages-wrap .fa-turn-down::before {
  content: "\f3be";
}
.bp-messages-wrap .fa-level-down-alt::before {
  content: "\f3be";
}
.bp-messages-wrap .fa-turn-up::before {
  content: "\f3bf";
}
.bp-messages-wrap .fa-level-up-alt::before {
  content: "\f3bf";
}
.bp-messages-wrap .fa-tv::before {
  content: "\f26c";
}
.bp-messages-wrap .fa-television::before {
  content: "\f26c";
}
.bp-messages-wrap .fa-tv-alt::before {
  content: "\f26c";
}
.bp-messages-wrap .fa-u::before {
  content: "U";
}
.bp-messages-wrap .fa-umbrella::before {
  content: "\f0e9";
}
.bp-messages-wrap .fa-umbrella-beach::before {
  content: "\f5ca";
}
.bp-messages-wrap .fa-underline::before {
  content: "\f0cd";
}
.bp-messages-wrap .fa-universal-access::before {
  content: "\f29a";
}
.bp-messages-wrap .fa-unlock::before {
  content: "\f09c";
}
.bp-messages-wrap .fa-unlock-keyhole::before {
  content: "\f13e";
}
.bp-messages-wrap .fa-unlock-alt::before {
  content: "\f13e";
}
.bp-messages-wrap .fa-up-down::before {
  content: "\f338";
}
.bp-messages-wrap .fa-arrows-alt-v::before {
  content: "\f338";
}
.bp-messages-wrap .fa-up-down-left-right::before {
  content: "\f0b2";
}
.bp-messages-wrap .fa-arrows-alt::before {
  content: "\f0b2";
}
.bp-messages-wrap .fa-up-long::before {
  content: "\f30c";
}
.bp-messages-wrap .fa-long-arrow-alt-up::before {
  content: "\f30c";
}
.bp-messages-wrap .fa-up-right-and-down-left-from-center::before {
  content: "\f424";
}
.bp-messages-wrap .fa-expand-alt::before {
  content: "\f424";
}
.bp-messages-wrap .fa-up-right-from-square::before {
  content: "\f35d";
}
.bp-messages-wrap .fa-external-link-alt::before {
  content: "\f35d";
}
.bp-messages-wrap .fa-upload::before {
  content: "\f093";
}
.bp-messages-wrap .fa-user::before {
  content: "\f007";
}
.bp-messages-wrap .fa-user-astronaut::before {
  content: "\f4fb";
}
.bp-messages-wrap .fa-user-check::before {
  content: "\f4fc";
}
.bp-messages-wrap .fa-user-clock::before {
  content: "\f4fd";
}
.bp-messages-wrap .fa-user-doctor::before {
  content: "\f0f0";
}
.bp-messages-wrap .fa-user-md::before {
  content: "\f0f0";
}
.bp-messages-wrap .fa-user-gear::before {
  content: "\f4fe";
}
.bp-messages-wrap .fa-user-cog::before {
  content: "\f4fe";
}
.bp-messages-wrap .fa-user-graduate::before {
  content: "\f501";
}
.bp-messages-wrap .fa-user-group::before {
  content: "\f500";
}
.bp-messages-wrap .fa-user-friends::before {
  content: "\f500";
}
.bp-messages-wrap .fa-user-injured::before {
  content: "\f728";
}
.bp-messages-wrap .fa-user-large::before {
  content: "\f406";
}
.bp-messages-wrap .fa-user-alt::before {
  content: "\f406";
}
.bp-messages-wrap .fa-user-large-slash::before {
  content: "\f4fa";
}
.bp-messages-wrap .fa-user-alt-slash::before {
  content: "\f4fa";
}
.bp-messages-wrap .fa-user-lock::before {
  content: "\f502";
}
.bp-messages-wrap .fa-user-minus::before {
  content: "\f503";
}
.bp-messages-wrap .fa-user-ninja::before {
  content: "\f504";
}
.bp-messages-wrap .fa-user-nurse::before {
  content: "\f82f";
}
.bp-messages-wrap .fa-user-pen::before {
  content: "\f4ff";
}
.bp-messages-wrap .fa-user-edit::before {
  content: "\f4ff";
}
.bp-messages-wrap .fa-user-plus::before {
  content: "\f234";
}
.bp-messages-wrap .fa-user-secret::before {
  content: "\f21b";
}
.bp-messages-wrap .fa-user-shield::before {
  content: "\f505";
}
.bp-messages-wrap .fa-user-slash::before {
  content: "\f506";
}
.bp-messages-wrap .fa-user-tag::before {
  content: "\f507";
}
.bp-messages-wrap .fa-user-tie::before {
  content: "\f508";
}
.bp-messages-wrap .fa-user-xmark::before {
  content: "\f235";
}
.bp-messages-wrap .fa-user-times::before {
  content: "\f235";
}
.bp-messages-wrap .fa-users::before {
  content: "\f0c0";
}
.bp-messages-wrap .fa-users-between-lines::before {
  content: "\e591";
}
.bp-messages-wrap .fa-users-gear::before {
  content: "\f509";
}
.bp-messages-wrap .fa-users-cog::before {
  content: "\f509";
}
.bp-messages-wrap .fa-users-line::before {
  content: "\e592";
}
.bp-messages-wrap .fa-users-rays::before {
  content: "\e593";
}
.bp-messages-wrap .fa-users-rectangle::before {
  content: "\e594";
}
.bp-messages-wrap .fa-users-slash::before {
  content: "\e073";
}
.bp-messages-wrap .fa-users-viewfinder::before {
  content: "\e595";
}
.bp-messages-wrap .fa-utensils::before {
  content: "\f2e7";
}
.bp-messages-wrap .fa-cutlery::before {
  content: "\f2e7";
}
.bp-messages-wrap .fa-v::before {
  content: "V";
}
.bp-messages-wrap .fa-van-shuttle::before {
  content: "\f5b6";
}
.bp-messages-wrap .fa-shuttle-van::before {
  content: "\f5b6";
}
.bp-messages-wrap .fa-vault::before {
  content: "\e2c5";
}
.bp-messages-wrap .fa-vector-square::before {
  content: "\f5cb";
}
.bp-messages-wrap .fa-venus::before {
  content: "\f221";
}
.bp-messages-wrap .fa-venus-double::before {
  content: "\f226";
}
.bp-messages-wrap .fa-venus-mars::before {
  content: "\f228";
}
.bp-messages-wrap .fa-vest::before {
  content: "\e085";
}
.bp-messages-wrap .fa-vest-patches::before {
  content: "\e086";
}
.bp-messages-wrap .fa-vial::before {
  content: "\f492";
}
.bp-messages-wrap .fa-vial-circle-check::before {
  content: "\e596";
}
.bp-messages-wrap .fa-vial-virus::before {
  content: "\e597";
}
.bp-messages-wrap .fa-vials::before {
  content: "\f493";
}
.bp-messages-wrap .fa-video::before {
  content: "\f03d";
}
.bp-messages-wrap .fa-video-camera::before {
  content: "\f03d";
}
.bp-messages-wrap .fa-video-slash::before {
  content: "\f4e2";
}
.bp-messages-wrap .fa-vihara::before {
  content: "\f6a7";
}
.bp-messages-wrap .fa-virus::before {
  content: "\e074";
}
.bp-messages-wrap .fa-virus-covid::before {
  content: "\e4a8";
}
.bp-messages-wrap .fa-virus-covid-slash::before {
  content: "\e4a9";
}
.bp-messages-wrap .fa-virus-slash::before {
  content: "\e075";
}
.bp-messages-wrap .fa-viruses::before {
  content: "\e076";
}
.bp-messages-wrap .fa-voicemail::before {
  content: "\f897";
}
.bp-messages-wrap .fa-volcano::before {
  content: "\f770";
}
.bp-messages-wrap .fa-volleyball::before {
  content: "\f45f";
}
.bp-messages-wrap .fa-volleyball-ball::before {
  content: "\f45f";
}
.bp-messages-wrap .fa-volume-high::before {
  content: "\f028";
}
.bp-messages-wrap .fa-volume-up::before {
  content: "\f028";
}
.bp-messages-wrap .fa-volume-low::before {
  content: "\f027";
}
.bp-messages-wrap .fa-volume-down::before {
  content: "\f027";
}
.bp-messages-wrap .fa-volume-off::before {
  content: "\f026";
}
.bp-messages-wrap .fa-volume-xmark::before {
  content: "\f6a9";
}
.bp-messages-wrap .fa-volume-mute::before {
  content: "\f6a9";
}
.bp-messages-wrap .fa-volume-times::before {
  content: "\f6a9";
}
.bp-messages-wrap .fa-vr-cardboard::before {
  content: "\f729";
}
.bp-messages-wrap .fa-w::before {
  content: "W";
}
.bp-messages-wrap .fa-walkie-talkie::before {
  content: "\f8ef";
}
.bp-messages-wrap .fa-wallet::before {
  content: "\f555";
}
.bp-messages-wrap .fa-wand-magic::before {
  content: "\f0d0";
}
.bp-messages-wrap .fa-magic::before {
  content: "\f0d0";
}
.bp-messages-wrap .fa-wand-magic-sparkles::before {
  content: "\e2ca";
}
.bp-messages-wrap .fa-magic-wand-sparkles::before {
  content: "\e2ca";
}
.bp-messages-wrap .fa-wand-sparkles::before {
  content: "\f72b";
}
.bp-messages-wrap .fa-warehouse::before {
  content: "\f494";
}
.bp-messages-wrap .fa-water::before {
  content: "\f773";
}
.bp-messages-wrap .fa-water-ladder::before {
  content: "\f5c5";
}
.bp-messages-wrap .fa-ladder-water::before {
  content: "\f5c5";
}
.bp-messages-wrap .fa-swimming-pool::before {
  content: "\f5c5";
}
.bp-messages-wrap .fa-wave-square::before {
  content: "\f83e";
}
.bp-messages-wrap .fa-weight-hanging::before {
  content: "\f5cd";
}
.bp-messages-wrap .fa-weight-scale::before {
  content: "\f496";
}
.bp-messages-wrap .fa-weight::before {
  content: "\f496";
}
.bp-messages-wrap .fa-wheat-awn::before {
  content: "\e2cd";
}
.bp-messages-wrap .fa-wheat-alt::before {
  content: "\e2cd";
}
.bp-messages-wrap .fa-wheat-awn-circle-exclamation::before {
  content: "\e598";
}
.bp-messages-wrap .fa-wheelchair::before {
  content: "\f193";
}
.bp-messages-wrap .fa-wheelchair-move::before {
  content: "\e2ce";
}
.bp-messages-wrap .fa-wheelchair-alt::before {
  content: "\e2ce";
}
.bp-messages-wrap .fa-whiskey-glass::before {
  content: "\f7a0";
}
.bp-messages-wrap .fa-glass-whiskey::before {
  content: "\f7a0";
}
.bp-messages-wrap .fa-wifi::before {
  content: "\f1eb";
}
.bp-messages-wrap .fa-wifi-3::before {
  content: "\f1eb";
}
.bp-messages-wrap .fa-wifi-strong::before {
  content: "\f1eb";
}
.bp-messages-wrap .fa-wind::before {
  content: "\f72e";
}
.bp-messages-wrap .fa-window-maximize::before {
  content: "\f2d0";
}
.bp-messages-wrap .fa-window-minimize::before {
  content: "\f2d1";
}
.bp-messages-wrap .fa-window-restore::before {
  content: "\f2d2";
}
.bp-messages-wrap .fa-wine-bottle::before {
  content: "\f72f";
}
.bp-messages-wrap .fa-wine-glass::before {
  content: "\f4e3";
}
.bp-messages-wrap .fa-wine-glass-empty::before {
  content: "\f5ce";
}
.bp-messages-wrap .fa-wine-glass-alt::before {
  content: "\f5ce";
}
.bp-messages-wrap .fa-won-sign::before {
  content: "\f159";
}
.bp-messages-wrap .fa-krw::before {
  content: "\f159";
}
.bp-messages-wrap .fa-won::before {
  content: "\f159";
}
.bp-messages-wrap .fa-worm::before {
  content: "\e599";
}
.bp-messages-wrap .fa-wrench::before {
  content: "\f0ad";
}
.bp-messages-wrap .fa-x::before {
  content: "X";
}
.bp-messages-wrap .fa-x-ray::before {
  content: "\f497";
}
.bp-messages-wrap .fa-xmark::before {
  content: "\f00d";
}
.bp-messages-wrap .fa-close::before {
  content: "\f00d";
}
.bp-messages-wrap .fa-multiply::before {
  content: "\f00d";
}
.bp-messages-wrap .fa-remove::before {
  content: "\f00d";
}
.bp-messages-wrap .fa-times::before {
  content: "\f00d";
}
.bp-messages-wrap .fa-xmarks-lines::before {
  content: "\e59a";
}
.bp-messages-wrap .fa-y::before {
  content: "Y";
}
.bp-messages-wrap .fa-yen-sign::before {
  content: "\f157";
}
.bp-messages-wrap .fa-cny::before {
  content: "\f157";
}
.bp-messages-wrap .fa-jpy::before {
  content: "\f157";
}
.bp-messages-wrap .fa-rmb::before {
  content: "\f157";
}
.bp-messages-wrap .fa-yen::before {
  content: "\f157";
}
.bp-messages-wrap .fa-yin-yang::before {
  content: "\f6ad";
}
.bp-messages-wrap .fa-z::before {
  content: "Z";
}
.bp-messages-wrap .sr-only,
.bp-messages-wrap .fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.bp-messages-wrap .sr-only-focusable:not(:focus),
.bp-messages-wrap .fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.bp-messages-wrap :root, .bp-messages-wrap :host {
  --fa-font-brands: normal 400 1em/1 "BM Font Awesome 6 Brands";
}
@font-face {
  .bp-messages-wrap {
    font-family: "BM Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.ttf") format("truetype");
  }
}
.bp-messages-wrap .fab,
.bp-messages-wrap .fa-brands {
  font-family: "BM Font Awesome 6 Brands";
  font-weight: 400;
}
.bp-messages-wrap .fa-42-group:before {
  content: "\e080";
}
.bp-messages-wrap .fa-innosoft:before {
  content: "\e080";
}
.bp-messages-wrap .fa-500px:before {
  content: "\f26e";
}
.bp-messages-wrap .fa-accessible-icon:before {
  content: "\f368";
}
.bp-messages-wrap .fa-accusoft:before {
  content: "\f369";
}
.bp-messages-wrap .fa-adn:before {
  content: "\f170";
}
.bp-messages-wrap .fa-adversal:before {
  content: "\f36a";
}
.bp-messages-wrap .fa-affiliatetheme:before {
  content: "\f36b";
}
.bp-messages-wrap .fa-airbnb:before {
  content: "\f834";
}
.bp-messages-wrap .fa-algolia:before {
  content: "\f36c";
}
.bp-messages-wrap .fa-alipay:before {
  content: "\f642";
}
.bp-messages-wrap .fa-amazon:before {
  content: "\f270";
}
.bp-messages-wrap .fa-amazon-pay:before {
  content: "\f42c";
}
.bp-messages-wrap .fa-amilia:before {
  content: "\f36d";
}
.bp-messages-wrap .fa-android:before {
  content: "\f17b";
}
.bp-messages-wrap .fa-angellist:before {
  content: "\f209";
}
.bp-messages-wrap .fa-angrycreative:before {
  content: "\f36e";
}
.bp-messages-wrap .fa-angular:before {
  content: "\f420";
}
.bp-messages-wrap .fa-app-store:before {
  content: "\f36f";
}
.bp-messages-wrap .fa-app-store-ios:before {
  content: "\f370";
}
.bp-messages-wrap .fa-apper:before {
  content: "\f371";
}
.bp-messages-wrap .fa-apple:before {
  content: "\f179";
}
.bp-messages-wrap .fa-apple-pay:before {
  content: "\f415";
}
.bp-messages-wrap .fa-artstation:before {
  content: "\f77a";
}
.bp-messages-wrap .fa-asymmetrik:before {
  content: "\f372";
}
.bp-messages-wrap .fa-atlassian:before {
  content: "\f77b";
}
.bp-messages-wrap .fa-audible:before {
  content: "\f373";
}
.bp-messages-wrap .fa-autoprefixer:before {
  content: "\f41c";
}
.bp-messages-wrap .fa-avianex:before {
  content: "\f374";
}
.bp-messages-wrap .fa-aviato:before {
  content: "\f421";
}
.bp-messages-wrap .fa-aws:before {
  content: "\f375";
}
.bp-messages-wrap .fa-bandcamp:before {
  content: "\f2d5";
}
.bp-messages-wrap .fa-battle-net:before {
  content: "\f835";
}
.bp-messages-wrap .fa-behance:before {
  content: "\f1b4";
}
.bp-messages-wrap .fa-behance-square:before {
  content: "\f1b5";
}
.bp-messages-wrap .fa-bilibili:before {
  content: "\e3d9";
}
.bp-messages-wrap .fa-bimobject:before {
  content: "\f378";
}
.bp-messages-wrap .fa-bitbucket:before {
  content: "\f171";
}
.bp-messages-wrap .fa-bitcoin:before {
  content: "\f379";
}
.bp-messages-wrap .fa-bity:before {
  content: "\f37a";
}
.bp-messages-wrap .fa-black-tie:before {
  content: "\f27e";
}
.bp-messages-wrap .fa-blackberry:before {
  content: "\f37b";
}
.bp-messages-wrap .fa-blogger:before {
  content: "\f37c";
}
.bp-messages-wrap .fa-blogger-b:before {
  content: "\f37d";
}
.bp-messages-wrap .fa-bluetooth:before {
  content: "\f293";
}
.bp-messages-wrap .fa-bluetooth-b:before {
  content: "\f294";
}
.bp-messages-wrap .fa-bootstrap:before {
  content: "\f836";
}
.bp-messages-wrap .fa-bots:before {
  content: "\e340";
}
.bp-messages-wrap .fa-btc:before {
  content: "\f15a";
}
.bp-messages-wrap .fa-buffer:before {
  content: "\f837";
}
.bp-messages-wrap .fa-buromobelexperte:before {
  content: "\f37f";
}
.bp-messages-wrap .fa-buy-n-large:before {
  content: "\f8a6";
}
.bp-messages-wrap .fa-buysellads:before {
  content: "\f20d";
}
.bp-messages-wrap .fa-canadian-maple-leaf:before {
  content: "\f785";
}
.bp-messages-wrap .fa-cc-amazon-pay:before {
  content: "\f42d";
}
.bp-messages-wrap .fa-cc-amex:before {
  content: "\f1f3";
}
.bp-messages-wrap .fa-cc-apple-pay:before {
  content: "\f416";
}
.bp-messages-wrap .fa-cc-diners-club:before {
  content: "\f24c";
}
.bp-messages-wrap .fa-cc-discover:before {
  content: "\f1f2";
}
.bp-messages-wrap .fa-cc-jcb:before {
  content: "\f24b";
}
.bp-messages-wrap .fa-cc-mastercard:before {
  content: "\f1f1";
}
.bp-messages-wrap .fa-cc-paypal:before {
  content: "\f1f4";
}
.bp-messages-wrap .fa-cc-stripe:before {
  content: "\f1f5";
}
.bp-messages-wrap .fa-cc-visa:before {
  content: "\f1f0";
}
.bp-messages-wrap .fa-centercode:before {
  content: "\f380";
}
.bp-messages-wrap .fa-centos:before {
  content: "\f789";
}
.bp-messages-wrap .fa-chrome:before {
  content: "\f268";
}
.bp-messages-wrap .fa-chromecast:before {
  content: "\f838";
}
.bp-messages-wrap .fa-cloudflare:before {
  content: "\e07d";
}
.bp-messages-wrap .fa-cloudscale:before {
  content: "\f383";
}
.bp-messages-wrap .fa-cloudsmith:before {
  content: "\f384";
}
.bp-messages-wrap .fa-cloudversify:before {
  content: "\f385";
}
.bp-messages-wrap .fa-cmplid:before {
  content: "\e360";
}
.bp-messages-wrap .fa-codepen:before {
  content: "\f1cb";
}
.bp-messages-wrap .fa-codiepie:before {
  content: "\f284";
}
.bp-messages-wrap .fa-confluence:before {
  content: "\f78d";
}
.bp-messages-wrap .fa-connectdevelop:before {
  content: "\f20e";
}
.bp-messages-wrap .fa-contao:before {
  content: "\f26d";
}
.bp-messages-wrap .fa-cotton-bureau:before {
  content: "\f89e";
}
.bp-messages-wrap .fa-cpanel:before {
  content: "\f388";
}
.bp-messages-wrap .fa-creative-commons:before {
  content: "\f25e";
}
.bp-messages-wrap .fa-creative-commons-by:before {
  content: "\f4e7";
}
.bp-messages-wrap .fa-creative-commons-nc:before {
  content: "\f4e8";
}
.bp-messages-wrap .fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}
.bp-messages-wrap .fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}
.bp-messages-wrap .fa-creative-commons-nd:before {
  content: "\f4eb";
}
.bp-messages-wrap .fa-creative-commons-pd:before {
  content: "\f4ec";
}
.bp-messages-wrap .fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}
.bp-messages-wrap .fa-creative-commons-remix:before {
  content: "\f4ee";
}
.bp-messages-wrap .fa-creative-commons-sa:before {
  content: "\f4ef";
}
.bp-messages-wrap .fa-creative-commons-sampling:before {
  content: "\f4f0";
}
.bp-messages-wrap .fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}
.bp-messages-wrap .fa-creative-commons-share:before {
  content: "\f4f2";
}
.bp-messages-wrap .fa-creative-commons-zero:before {
  content: "\f4f3";
}
.bp-messages-wrap .fa-critical-role:before {
  content: "\f6c9";
}
.bp-messages-wrap .fa-css3:before {
  content: "\f13c";
}
.bp-messages-wrap .fa-css3-alt:before {
  content: "\f38b";
}
.bp-messages-wrap .fa-cuttlefish:before {
  content: "\f38c";
}
.bp-messages-wrap .fa-d-and-d:before {
  content: "\f38d";
}
.bp-messages-wrap .fa-d-and-d-beyond:before {
  content: "\f6ca";
}
.bp-messages-wrap .fa-dailymotion:before {
  content: "\e052";
}
.bp-messages-wrap .fa-dashcube:before {
  content: "\f210";
}
.bp-messages-wrap .fa-deezer:before {
  content: "\e077";
}
.bp-messages-wrap .fa-delicious:before {
  content: "\f1a5";
}
.bp-messages-wrap .fa-deploydog:before {
  content: "\f38e";
}
.bp-messages-wrap .fa-deskpro:before {
  content: "\f38f";
}
.bp-messages-wrap .fa-dev:before {
  content: "\f6cc";
}
.bp-messages-wrap .fa-deviantart:before {
  content: "\f1bd";
}
.bp-messages-wrap .fa-dhl:before {
  content: "\f790";
}
.bp-messages-wrap .fa-diaspora:before {
  content: "\f791";
}
.bp-messages-wrap .fa-digg:before {
  content: "\f1a6";
}
.bp-messages-wrap .fa-digital-ocean:before {
  content: "\f391";
}
.bp-messages-wrap .fa-discord:before {
  content: "\f392";
}
.bp-messages-wrap .fa-discourse:before {
  content: "\f393";
}
.bp-messages-wrap .fa-dochub:before {
  content: "\f394";
}
.bp-messages-wrap .fa-docker:before {
  content: "\f395";
}
.bp-messages-wrap .fa-draft2digital:before {
  content: "\f396";
}
.bp-messages-wrap .fa-dribbble:before {
  content: "\f17d";
}
.bp-messages-wrap .fa-dribbble-square:before {
  content: "\f397";
}
.bp-messages-wrap .fa-dropbox:before {
  content: "\f16b";
}
.bp-messages-wrap .fa-drupal:before {
  content: "\f1a9";
}
.bp-messages-wrap .fa-dyalog:before {
  content: "\f399";
}
.bp-messages-wrap .fa-earlybirds:before {
  content: "\f39a";
}
.bp-messages-wrap .fa-ebay:before {
  content: "\f4f4";
}
.bp-messages-wrap .fa-edge:before {
  content: "\f282";
}
.bp-messages-wrap .fa-edge-legacy:before {
  content: "\e078";
}
.bp-messages-wrap .fa-elementor:before {
  content: "\f430";
}
.bp-messages-wrap .fa-ello:before {
  content: "\f5f1";
}
.bp-messages-wrap .fa-ember:before {
  content: "\f423";
}
.bp-messages-wrap .fa-empire:before {
  content: "\f1d1";
}
.bp-messages-wrap .fa-envira:before {
  content: "\f299";
}
.bp-messages-wrap .fa-erlang:before {
  content: "\f39d";
}
.bp-messages-wrap .fa-ethereum:before {
  content: "\f42e";
}
.bp-messages-wrap .fa-etsy:before {
  content: "\f2d7";
}
.bp-messages-wrap .fa-evernote:before {
  content: "\f839";
}
.bp-messages-wrap .fa-expeditedssl:before {
  content: "\f23e";
}
.bp-messages-wrap .fa-facebook:before {
  content: "\f09a";
}
.bp-messages-wrap .fa-facebook-f:before {
  content: "\f39e";
}
.bp-messages-wrap .fa-facebook-messenger:before {
  content: "\f39f";
}
.bp-messages-wrap .fa-facebook-square:before {
  content: "\f082";
}
.bp-messages-wrap .fa-fantasy-flight-games:before {
  content: "\f6dc";
}
.bp-messages-wrap .fa-fedex:before {
  content: "\f797";
}
.bp-messages-wrap .fa-fedora:before {
  content: "\f798";
}
.bp-messages-wrap .fa-figma:before {
  content: "\f799";
}
.bp-messages-wrap .fa-firefox:before {
  content: "\f269";
}
.bp-messages-wrap .fa-firefox-browser:before {
  content: "\e007";
}
.bp-messages-wrap .fa-first-order:before {
  content: "\f2b0";
}
.bp-messages-wrap .fa-first-order-alt:before {
  content: "\f50a";
}
.bp-messages-wrap .fa-firstdraft:before {
  content: "\f3a1";
}
.bp-messages-wrap .fa-flickr:before {
  content: "\f16e";
}
.bp-messages-wrap .fa-flipboard:before {
  content: "\f44d";
}
.bp-messages-wrap .fa-fly:before {
  content: "\f417";
}
.bp-messages-wrap .fa-font-awesome:before {
  content: "\f2b4";
}
.bp-messages-wrap .fa-font-awesome-flag:before {
  content: "\f2b4";
}
.bp-messages-wrap .fa-font-awesome-logo-full:before {
  content: "\f2b4";
}
.bp-messages-wrap .fa-fonticons:before {
  content: "\f280";
}
.bp-messages-wrap .fa-fonticons-fi:before {
  content: "\f3a2";
}
.bp-messages-wrap .fa-fort-awesome:before {
  content: "\f286";
}
.bp-messages-wrap .fa-fort-awesome-alt:before {
  content: "\f3a3";
}
.bp-messages-wrap .fa-forumbee:before {
  content: "\f211";
}
.bp-messages-wrap .fa-foursquare:before {
  content: "\f180";
}
.bp-messages-wrap .fa-free-code-camp:before {
  content: "\f2c5";
}
.bp-messages-wrap .fa-freebsd:before {
  content: "\f3a4";
}
.bp-messages-wrap .fa-fulcrum:before {
  content: "\f50b";
}
.bp-messages-wrap .fa-galactic-republic:before {
  content: "\f50c";
}
.bp-messages-wrap .fa-galactic-senate:before {
  content: "\f50d";
}
.bp-messages-wrap .fa-get-pocket:before {
  content: "\f265";
}
.bp-messages-wrap .fa-gg:before {
  content: "\f260";
}
.bp-messages-wrap .fa-gg-circle:before {
  content: "\f261";
}
.bp-messages-wrap .fa-git:before {
  content: "\f1d3";
}
.bp-messages-wrap .fa-git-alt:before {
  content: "\f841";
}
.bp-messages-wrap .fa-git-square:before {
  content: "\f1d2";
}
.bp-messages-wrap .fa-github:before {
  content: "\f09b";
}
.bp-messages-wrap .fa-github-alt:before {
  content: "\f113";
}
.bp-messages-wrap .fa-github-square:before {
  content: "\f092";
}
.bp-messages-wrap .fa-gitkraken:before {
  content: "\f3a6";
}
.bp-messages-wrap .fa-gitlab:before {
  content: "\f296";
}
.bp-messages-wrap .fa-gitter:before {
  content: "\f426";
}
.bp-messages-wrap .fa-glide:before {
  content: "\f2a5";
}
.bp-messages-wrap .fa-glide-g:before {
  content: "\f2a6";
}
.bp-messages-wrap .fa-gofore:before {
  content: "\f3a7";
}
.bp-messages-wrap .fa-golang:before {
  content: "\e40f";
}
.bp-messages-wrap .fa-goodreads:before {
  content: "\f3a8";
}
.bp-messages-wrap .fa-goodreads-g:before {
  content: "\f3a9";
}
.bp-messages-wrap .fa-google:before {
  content: "\f1a0";
}
.bp-messages-wrap .fa-google-drive:before {
  content: "\f3aa";
}
.bp-messages-wrap .fa-google-pay:before {
  content: "\e079";
}
.bp-messages-wrap .fa-google-play:before {
  content: "\f3ab";
}
.bp-messages-wrap .fa-google-plus:before {
  content: "\f2b3";
}
.bp-messages-wrap .fa-google-plus-g:before {
  content: "\f0d5";
}
.bp-messages-wrap .fa-google-plus-square:before {
  content: "\f0d4";
}
.bp-messages-wrap .fa-google-wallet:before {
  content: "\f1ee";
}
.bp-messages-wrap .fa-gratipay:before {
  content: "\f184";
}
.bp-messages-wrap .fa-grav:before {
  content: "\f2d6";
}
.bp-messages-wrap .fa-gripfire:before {
  content: "\f3ac";
}
.bp-messages-wrap .fa-grunt:before {
  content: "\f3ad";
}
.bp-messages-wrap .fa-guilded:before {
  content: "\e07e";
}
.bp-messages-wrap .fa-gulp:before {
  content: "\f3ae";
}
.bp-messages-wrap .fa-hacker-news:before {
  content: "\f1d4";
}
.bp-messages-wrap .fa-hacker-news-square:before {
  content: "\f3af";
}
.bp-messages-wrap .fa-hackerrank:before {
  content: "\f5f7";
}
.bp-messages-wrap .fa-hashnode:before {
  content: "\e499";
}
.bp-messages-wrap .fa-hips:before {
  content: "\f452";
}
.bp-messages-wrap .fa-hire-a-helper:before {
  content: "\f3b0";
}
.bp-messages-wrap .fa-hive:before {
  content: "\e07f";
}
.bp-messages-wrap .fa-hooli:before {
  content: "\f427";
}
.bp-messages-wrap .fa-hornbill:before {
  content: "\f592";
}
.bp-messages-wrap .fa-hotjar:before {
  content: "\f3b1";
}
.bp-messages-wrap .fa-houzz:before {
  content: "\f27c";
}
.bp-messages-wrap .fa-html5:before {
  content: "\f13b";
}
.bp-messages-wrap .fa-hubspot:before {
  content: "\f3b2";
}
.bp-messages-wrap .fa-ideal:before {
  content: "\e013";
}
.bp-messages-wrap .fa-imdb:before {
  content: "\f2d8";
}
.bp-messages-wrap .fa-instagram:before {
  content: "\f16d";
}
.bp-messages-wrap .fa-instagram-square:before {
  content: "\e055";
}
.bp-messages-wrap .fa-instalod:before {
  content: "\e081";
}
.bp-messages-wrap .fa-intercom:before {
  content: "\f7af";
}
.bp-messages-wrap .fa-internet-explorer:before {
  content: "\f26b";
}
.bp-messages-wrap .fa-invision:before {
  content: "\f7b0";
}
.bp-messages-wrap .fa-ioxhost:before {
  content: "\f208";
}
.bp-messages-wrap .fa-itch-io:before {
  content: "\f83a";
}
.bp-messages-wrap .fa-itunes:before {
  content: "\f3b4";
}
.bp-messages-wrap .fa-itunes-note:before {
  content: "\f3b5";
}
.bp-messages-wrap .fa-java:before {
  content: "\f4e4";
}
.bp-messages-wrap .fa-jedi-order:before {
  content: "\f50e";
}
.bp-messages-wrap .fa-jenkins:before {
  content: "\f3b6";
}
.bp-messages-wrap .fa-jira:before {
  content: "\f7b1";
}
.bp-messages-wrap .fa-joget:before {
  content: "\f3b7";
}
.bp-messages-wrap .fa-joomla:before {
  content: "\f1aa";
}
.bp-messages-wrap .fa-js:before {
  content: "\f3b8";
}
.bp-messages-wrap .fa-js-square:before {
  content: "\f3b9";
}
.bp-messages-wrap .fa-jsfiddle:before {
  content: "\f1cc";
}
.bp-messages-wrap .fa-kaggle:before {
  content: "\f5fa";
}
.bp-messages-wrap .fa-keybase:before {
  content: "\f4f5";
}
.bp-messages-wrap .fa-keycdn:before {
  content: "\f3ba";
}
.bp-messages-wrap .fa-kickstarter:before {
  content: "\f3bb";
}
.bp-messages-wrap .fa-kickstarter-k:before {
  content: "\f3bc";
}
.bp-messages-wrap .fa-korvue:before {
  content: "\f42f";
}
.bp-messages-wrap .fa-laravel:before {
  content: "\f3bd";
}
.bp-messages-wrap .fa-lastfm:before {
  content: "\f202";
}
.bp-messages-wrap .fa-lastfm-square:before {
  content: "\f203";
}
.bp-messages-wrap .fa-leanpub:before {
  content: "\f212";
}
.bp-messages-wrap .fa-less:before {
  content: "\f41d";
}
.bp-messages-wrap .fa-line:before {
  content: "\f3c0";
}
.bp-messages-wrap .fa-linkedin:before {
  content: "\f08c";
}
.bp-messages-wrap .fa-linkedin-in:before {
  content: "\f0e1";
}
.bp-messages-wrap .fa-linode:before {
  content: "\f2b8";
}
.bp-messages-wrap .fa-linux:before {
  content: "\f17c";
}
.bp-messages-wrap .fa-lyft:before {
  content: "\f3c3";
}
.bp-messages-wrap .fa-magento:before {
  content: "\f3c4";
}
.bp-messages-wrap .fa-mailchimp:before {
  content: "\f59e";
}
.bp-messages-wrap .fa-mandalorian:before {
  content: "\f50f";
}
.bp-messages-wrap .fa-markdown:before {
  content: "\f60f";
}
.bp-messages-wrap .fa-mastodon:before {
  content: "\f4f6";
}
.bp-messages-wrap .fa-maxcdn:before {
  content: "\f136";
}
.bp-messages-wrap .fa-mdb:before {
  content: "\f8ca";
}
.bp-messages-wrap .fa-medapps:before {
  content: "\f3c6";
}
.bp-messages-wrap .fa-medium:before {
  content: "\f23a";
}
.bp-messages-wrap .fa-medium-m:before {
  content: "\f23a";
}
.bp-messages-wrap .fa-medrt:before {
  content: "\f3c8";
}
.bp-messages-wrap .fa-meetup:before {
  content: "\f2e0";
}
.bp-messages-wrap .fa-megaport:before {
  content: "\f5a3";
}
.bp-messages-wrap .fa-mendeley:before {
  content: "\f7b3";
}
.bp-messages-wrap .fa-microblog:before {
  content: "\e01a";
}
.bp-messages-wrap .fa-microsoft:before {
  content: "\f3ca";
}
.bp-messages-wrap .fa-mix:before {
  content: "\f3cb";
}
.bp-messages-wrap .fa-mixcloud:before {
  content: "\f289";
}
.bp-messages-wrap .fa-mixer:before {
  content: "\e056";
}
.bp-messages-wrap .fa-mizuni:before {
  content: "\f3cc";
}
.bp-messages-wrap .fa-modx:before {
  content: "\f285";
}
.bp-messages-wrap .fa-monero:before {
  content: "\f3d0";
}
.bp-messages-wrap .fa-napster:before {
  content: "\f3d2";
}
.bp-messages-wrap .fa-neos:before {
  content: "\f612";
}
.bp-messages-wrap .fa-nfc-directional:before {
  content: "\e530";
}
.bp-messages-wrap .fa-nfc-symbol:before {
  content: "\e531";
}
.bp-messages-wrap .fa-nimblr:before {
  content: "\f5a8";
}
.bp-messages-wrap .fa-node:before {
  content: "\f419";
}
.bp-messages-wrap .fa-node-js:before {
  content: "\f3d3";
}
.bp-messages-wrap .fa-npm:before {
  content: "\f3d4";
}
.bp-messages-wrap .fa-ns8:before {
  content: "\f3d5";
}
.bp-messages-wrap .fa-nutritionix:before {
  content: "\f3d6";
}
.bp-messages-wrap .fa-octopus-deploy:before {
  content: "\e082";
}
.bp-messages-wrap .fa-odnoklassniki:before {
  content: "\f263";
}
.bp-messages-wrap .fa-odnoklassniki-square:before {
  content: "\f264";
}
.bp-messages-wrap .fa-old-republic:before {
  content: "\f510";
}
.bp-messages-wrap .fa-opencart:before {
  content: "\f23d";
}
.bp-messages-wrap .fa-openid:before {
  content: "\f19b";
}
.bp-messages-wrap .fa-opera:before {
  content: "\f26a";
}
.bp-messages-wrap .fa-optin-monster:before {
  content: "\f23c";
}
.bp-messages-wrap .fa-orcid:before {
  content: "\f8d2";
}
.bp-messages-wrap .fa-osi:before {
  content: "\f41a";
}
.bp-messages-wrap .fa-padlet:before {
  content: "\e4a0";
}
.bp-messages-wrap .fa-page4:before {
  content: "\f3d7";
}
.bp-messages-wrap .fa-pagelines:before {
  content: "\f18c";
}
.bp-messages-wrap .fa-palfed:before {
  content: "\f3d8";
}
.bp-messages-wrap .fa-patreon:before {
  content: "\f3d9";
}
.bp-messages-wrap .fa-paypal:before {
  content: "\f1ed";
}
.bp-messages-wrap .fa-perbyte:before {
  content: "\e083";
}
.bp-messages-wrap .fa-periscope:before {
  content: "\f3da";
}
.bp-messages-wrap .fa-phabricator:before {
  content: "\f3db";
}
.bp-messages-wrap .fa-phoenix-framework:before {
  content: "\f3dc";
}
.bp-messages-wrap .fa-phoenix-squadron:before {
  content: "\f511";
}
.bp-messages-wrap .fa-php:before {
  content: "\f457";
}
.bp-messages-wrap .fa-pied-piper:before {
  content: "\f2ae";
}
.bp-messages-wrap .fa-pied-piper-alt:before {
  content: "\f1a8";
}
.bp-messages-wrap .fa-pied-piper-hat:before {
  content: "\f4e5";
}
.bp-messages-wrap .fa-pied-piper-pp:before {
  content: "\f1a7";
}
.bp-messages-wrap .fa-pied-piper-square:before {
  content: "\e01e";
}
.bp-messages-wrap .fa-pinterest:before {
  content: "\f0d2";
}
.bp-messages-wrap .fa-pinterest-p:before {
  content: "\f231";
}
.bp-messages-wrap .fa-pinterest-square:before {
  content: "\f0d3";
}
.bp-messages-wrap .fa-pix:before {
  content: "\e43a";
}
.bp-messages-wrap .fa-playstation:before {
  content: "\f3df";
}
.bp-messages-wrap .fa-product-hunt:before {
  content: "\f288";
}
.bp-messages-wrap .fa-pushed:before {
  content: "\f3e1";
}
.bp-messages-wrap .fa-python:before {
  content: "\f3e2";
}
.bp-messages-wrap .fa-qq:before {
  content: "\f1d6";
}
.bp-messages-wrap .fa-quinscape:before {
  content: "\f459";
}
.bp-messages-wrap .fa-quora:before {
  content: "\f2c4";
}
.bp-messages-wrap .fa-r-project:before {
  content: "\f4f7";
}
.bp-messages-wrap .fa-raspberry-pi:before {
  content: "\f7bb";
}
.bp-messages-wrap .fa-ravelry:before {
  content: "\f2d9";
}
.bp-messages-wrap .fa-react:before {
  content: "\f41b";
}
.bp-messages-wrap .fa-reacteurope:before {
  content: "\f75d";
}
.bp-messages-wrap .fa-readme:before {
  content: "\f4d5";
}
.bp-messages-wrap .fa-rebel:before {
  content: "\f1d0";
}
.bp-messages-wrap .fa-red-river:before {
  content: "\f3e3";
}
.bp-messages-wrap .fa-reddit:before {
  content: "\f1a1";
}
.bp-messages-wrap .fa-reddit-alien:before {
  content: "\f281";
}
.bp-messages-wrap .fa-reddit-square:before {
  content: "\f1a2";
}
.bp-messages-wrap .fa-redhat:before {
  content: "\f7bc";
}
.bp-messages-wrap .fa-renren:before {
  content: "\f18b";
}
.bp-messages-wrap .fa-replyd:before {
  content: "\f3e6";
}
.bp-messages-wrap .fa-researchgate:before {
  content: "\f4f8";
}
.bp-messages-wrap .fa-resolving:before {
  content: "\f3e7";
}
.bp-messages-wrap .fa-rev:before {
  content: "\f5b2";
}
.bp-messages-wrap .fa-rocketchat:before {
  content: "\f3e8";
}
.bp-messages-wrap .fa-rockrms:before {
  content: "\f3e9";
}
.bp-messages-wrap .fa-rust:before {
  content: "\e07a";
}
.bp-messages-wrap .fa-safari:before {
  content: "\f267";
}
.bp-messages-wrap .fa-salesforce:before {
  content: "\f83b";
}
.bp-messages-wrap .fa-sass:before {
  content: "\f41e";
}
.bp-messages-wrap .fa-schlix:before {
  content: "\f3ea";
}
.bp-messages-wrap .fa-screenpal:before {
  content: "\e570";
}
.bp-messages-wrap .fa-scribd:before {
  content: "\f28a";
}
.bp-messages-wrap .fa-searchengin:before {
  content: "\f3eb";
}
.bp-messages-wrap .fa-sellcast:before {
  content: "\f2da";
}
.bp-messages-wrap .fa-sellsy:before {
  content: "\f213";
}
.bp-messages-wrap .fa-servicestack:before {
  content: "\f3ec";
}
.bp-messages-wrap .fa-shirtsinbulk:before {
  content: "\f214";
}
.bp-messages-wrap .fa-shopify:before {
  content: "\e057";
}
.bp-messages-wrap .fa-shopware:before {
  content: "\f5b5";
}
.bp-messages-wrap .fa-simplybuilt:before {
  content: "\f215";
}
.bp-messages-wrap .fa-sistrix:before {
  content: "\f3ee";
}
.bp-messages-wrap .fa-sith:before {
  content: "\f512";
}
.bp-messages-wrap .fa-sitrox:before {
  content: "\e44a";
}
.bp-messages-wrap .fa-sketch:before {
  content: "\f7c6";
}
.bp-messages-wrap .fa-skyatlas:before {
  content: "\f216";
}
.bp-messages-wrap .fa-skype:before {
  content: "\f17e";
}
.bp-messages-wrap .fa-slack:before {
  content: "\f198";
}
.bp-messages-wrap .fa-slack-hash:before {
  content: "\f198";
}
.bp-messages-wrap .fa-slideshare:before {
  content: "\f1e7";
}
.bp-messages-wrap .fa-snapchat:before {
  content: "\f2ab";
}
.bp-messages-wrap .fa-snapchat-ghost:before {
  content: "\f2ab";
}
.bp-messages-wrap .fa-snapchat-square:before {
  content: "\f2ad";
}
.bp-messages-wrap .fa-soundcloud:before {
  content: "\f1be";
}
.bp-messages-wrap .fa-sourcetree:before {
  content: "\f7d3";
}
.bp-messages-wrap .fa-speakap:before {
  content: "\f3f3";
}
.bp-messages-wrap .fa-speaker-deck:before {
  content: "\f83c";
}
.bp-messages-wrap .fa-spotify:before {
  content: "\f1bc";
}
.bp-messages-wrap .fa-square-font-awesome:before {
  content: "\f425";
}
.bp-messages-wrap .fa-square-font-awesome-stroke:before {
  content: "\f35c";
}
.bp-messages-wrap .fa-font-awesome-alt:before {
  content: "\f35c";
}
.bp-messages-wrap .fa-squarespace:before {
  content: "\f5be";
}
.bp-messages-wrap .fa-stack-exchange:before {
  content: "\f18d";
}
.bp-messages-wrap .fa-stack-overflow:before {
  content: "\f16c";
}
.bp-messages-wrap .fa-stackpath:before {
  content: "\f842";
}
.bp-messages-wrap .fa-staylinked:before {
  content: "\f3f5";
}
.bp-messages-wrap .fa-steam:before {
  content: "\f1b6";
}
.bp-messages-wrap .fa-steam-square:before {
  content: "\f1b7";
}
.bp-messages-wrap .fa-steam-symbol:before {
  content: "\f3f6";
}
.bp-messages-wrap .fa-sticker-mule:before {
  content: "\f3f7";
}
.bp-messages-wrap .fa-strava:before {
  content: "\f428";
}
.bp-messages-wrap .fa-stripe:before {
  content: "\f429";
}
.bp-messages-wrap .fa-stripe-s:before {
  content: "\f42a";
}
.bp-messages-wrap .fa-studiovinari:before {
  content: "\f3f8";
}
.bp-messages-wrap .fa-stumbleupon:before {
  content: "\f1a4";
}
.bp-messages-wrap .fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.bp-messages-wrap .fa-superpowers:before {
  content: "\f2dd";
}
.bp-messages-wrap .fa-supple:before {
  content: "\f3f9";
}
.bp-messages-wrap .fa-suse:before {
  content: "\f7d6";
}
.bp-messages-wrap .fa-swift:before {
  content: "\f8e1";
}
.bp-messages-wrap .fa-symfony:before {
  content: "\f83d";
}
.bp-messages-wrap .fa-teamspeak:before {
  content: "\f4f9";
}
.bp-messages-wrap .fa-telegram:before {
  content: "\f2c6";
}
.bp-messages-wrap .fa-telegram-plane:before {
  content: "\f2c6";
}
.bp-messages-wrap .fa-tencent-weibo:before {
  content: "\f1d5";
}
.bp-messages-wrap .fa-the-red-yeti:before {
  content: "\f69d";
}
.bp-messages-wrap .fa-themeco:before {
  content: "\f5c6";
}
.bp-messages-wrap .fa-themeisle:before {
  content: "\f2b2";
}
.bp-messages-wrap .fa-think-peaks:before {
  content: "\f731";
}
.bp-messages-wrap .fa-tiktok:before {
  content: "\e07b";
}
.bp-messages-wrap .fa-trade-federation:before {
  content: "\f513";
}
.bp-messages-wrap .fa-trello:before {
  content: "\f181";
}
.bp-messages-wrap .fa-tumblr:before {
  content: "\f173";
}
.bp-messages-wrap .fa-tumblr-square:before {
  content: "\f174";
}
.bp-messages-wrap .fa-twitch:before {
  content: "\f1e8";
}
.bp-messages-wrap .fa-twitter:before {
  content: "\f099";
}
.bp-messages-wrap .fa-twitter-square:before {
  content: "\f081";
}
.bp-messages-wrap .fa-typo3:before {
  content: "\f42b";
}
.bp-messages-wrap .fa-uber:before {
  content: "\f402";
}
.bp-messages-wrap .fa-ubuntu:before {
  content: "\f7df";
}
.bp-messages-wrap .fa-uikit:before {
  content: "\f403";
}
.bp-messages-wrap .fa-umbraco:before {
  content: "\f8e8";
}
.bp-messages-wrap .fa-uncharted:before {
  content: "\e084";
}
.bp-messages-wrap .fa-uniregistry:before {
  content: "\f404";
}
.bp-messages-wrap .fa-unity:before {
  content: "\e049";
}
.bp-messages-wrap .fa-unsplash:before {
  content: "\e07c";
}
.bp-messages-wrap .fa-untappd:before {
  content: "\f405";
}
.bp-messages-wrap .fa-ups:before {
  content: "\f7e0";
}
.bp-messages-wrap .fa-usb:before {
  content: "\f287";
}
.bp-messages-wrap .fa-usps:before {
  content: "\f7e1";
}
.bp-messages-wrap .fa-ussunnah:before {
  content: "\f407";
}
.bp-messages-wrap .fa-vaadin:before {
  content: "\f408";
}
.bp-messages-wrap .fa-viacoin:before {
  content: "\f237";
}
.bp-messages-wrap .fa-viadeo:before {
  content: "\f2a9";
}
.bp-messages-wrap .fa-viadeo-square:before {
  content: "\f2aa";
}
.bp-messages-wrap .fa-viber:before {
  content: "\f409";
}
.bp-messages-wrap .fa-vimeo:before {
  content: "\f40a";
}
.bp-messages-wrap .fa-vimeo-square:before {
  content: "\f194";
}
.bp-messages-wrap .fa-vimeo-v:before {
  content: "\f27d";
}
.bp-messages-wrap .fa-vine:before {
  content: "\f1ca";
}
.bp-messages-wrap .fa-vk:before {
  content: "\f189";
}
.bp-messages-wrap .fa-vnv:before {
  content: "\f40b";
}
.bp-messages-wrap .fa-vuejs:before {
  content: "\f41f";
}
.bp-messages-wrap .fa-watchman-monitoring:before {
  content: "\e087";
}
.bp-messages-wrap .fa-waze:before {
  content: "\f83f";
}
.bp-messages-wrap .fa-weebly:before {
  content: "\f5cc";
}
.bp-messages-wrap .fa-weibo:before {
  content: "\f18a";
}
.bp-messages-wrap .fa-weixin:before {
  content: "\f1d7";
}
.bp-messages-wrap .fa-whatsapp:before {
  content: "\f232";
}
.bp-messages-wrap .fa-whatsapp-square:before {
  content: "\f40c";
}
.bp-messages-wrap .fa-whmcs:before {
  content: "\f40d";
}
.bp-messages-wrap .fa-wikipedia-w:before {
  content: "\f266";
}
.bp-messages-wrap .fa-windows:before {
  content: "\f17a";
}
.bp-messages-wrap .fa-wirsindhandwerk:before {
  content: "\e2d0";
}
.bp-messages-wrap .fa-wsh:before {
  content: "\e2d0";
}
.bp-messages-wrap .fa-wix:before {
  content: "\f5cf";
}
.bp-messages-wrap .fa-wizards-of-the-coast:before {
  content: "\f730";
}
.bp-messages-wrap .fa-wodu:before {
  content: "\e088";
}
.bp-messages-wrap .fa-wolf-pack-battalion:before {
  content: "\f514";
}
.bp-messages-wrap .fa-wordpress:before {
  content: "\f19a";
}
.bp-messages-wrap .fa-wordpress-simple:before {
  content: "\f411";
}
.bp-messages-wrap .fa-wpbeginner:before {
  content: "\f297";
}
.bp-messages-wrap .fa-wpexplorer:before {
  content: "\f2de";
}
.bp-messages-wrap .fa-wpforms:before {
  content: "\f298";
}
.bp-messages-wrap .fa-wpressr:before {
  content: "\f3e4";
}
.bp-messages-wrap .fa-xbox:before {
  content: "\f412";
}
.bp-messages-wrap .fa-xing:before {
  content: "\f168";
}
.bp-messages-wrap .fa-xing-square:before {
  content: "\f169";
}
.bp-messages-wrap .fa-y-combinator:before {
  content: "\f23b";
}
.bp-messages-wrap .fa-yahoo:before {
  content: "\f19e";
}
.bp-messages-wrap .fa-yammer:before {
  content: "\f840";
}
.bp-messages-wrap .fa-yandex:before {
  content: "\f413";
}
.bp-messages-wrap .fa-yandex-international:before {
  content: "\f414";
}
.bp-messages-wrap .fa-yarn:before {
  content: "\f7e3";
}
.bp-messages-wrap .fa-yelp:before {
  content: "\f1e9";
}
.bp-messages-wrap .fa-yoast:before {
  content: "\f2b1";
}
.bp-messages-wrap .fa-youtube:before {
  content: "\f167";
}
.bp-messages-wrap .fa-youtube-square:before {
  content: "\f431";
}
.bp-messages-wrap .fa-zhihu:before {
  content: "\f63f";
}

@font-face {
  font-family: "BM Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.ttf") format("truetype");
}
.far,
.fa-regular {
  font-family: "BM Font Awesome 6 Free";
  font-weight: 400;
}

:root, :host {
  --fa-font-solid: normal 900 1em/1 "BM Font Awesome 6 Free";
}

@font-face {
  font-family: "BM Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.ttf") format("truetype");
}
.fas,
.fa-solid {
  font-family: "BM Font Awesome 6 Free";
  font-weight: 900;
}

@font-face {
  font-family: "BM Font Awesome 5 Brands";
  font-display: block;
  font-weight: 400;
  src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: "BM Font Awesome 5 Free";
  font-display: block;
  font-weight: 900;
  src: url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "BM Font Awesome 5 Free";
  font-display: block;
  font-weight: 400;
  src: url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.ttf") format("truetype");
  unicode-range: U+F003, U+F006, U+F014, U+F016-F017, U+F01A-F01B, U+F01D, U+F022, U+F03E, U+F044, U+F046, U+F05C-F05D, U+F06E, U+F070, U+F087-F088, U+F08A, U+F094, U+F096-F097, U+F09D, U+F0A0, U+F0A2, U+F0A4-F0A7, U+F0C5, U+F0C7, U+F0E5-F0E6, U+F0EB, U+F0F6-F0F8, U+F10C, U+F114-F115, U+F118-F11A, U+F11C-F11D, U+F133, U+F147, U+F14E, U+F150-F152, U+F185-F186, U+F18E, U+F190-F192, U+F196, U+F1C1-F1C9, U+F1D9, U+F1DB, U+F1E3, U+F1EA, U+F1F7, U+F1F9, U+F20A, U+F247-F248, U+F24A, U+F24D, U+F255-F25B, U+F25D, U+F271-F274, U+F278, U+F27B, U+F28C, U+F28E, U+F29C, U+F2B5, U+F2B7, U+F2BA, U+F2BC, U+F2BE, U+F2C0-F2C1, U+F2C3, U+F2D0, U+F2D2, U+F2D4, U+F2DC;
}
@font-face {
  font-family: "FontAwesome";
  font-display: block;
  src: url("../fonts/fa-v4compatibility.woff2") format("woff2"), url("../fonts/fa-v4compatibility.ttf") format("truetype");
  unicode-range: U+F041, U+F047, U+F065-F066, U+F07D-F07E, U+F080, U+F08B, U+F08E, U+F090, U+F09A, U+F0AC, U+F0AE, U+F0B2, U+F0D0, U+F0D6, U+F0E4, U+F0EC, U+F10A-F10B, U+F123, U+F13E, U+F148-F149, U+F14C, U+F156, U+F15E, U+F160-F161, U+F163, U+F175-F178, U+F195, U+F1F8, U+F219, U+F250, U+F252, U+F27A;
}
:root {
  --main-bm-color: #21759b;
  --main-bm-color-75: rgba(33, 117, 155, 0.75);
  --main-bm-color-60: rgba(33, 117, 155, 0.60);
  --main-bm-color-50: rgba(33, 117, 155, 0.50);
  --main-bm-color-25: rgba(33, 117, 155, 0.25);
  --main-bm-color-075: rgba(33, 117, 155, 0.075);
  --main-bm-color-003: rgba(33, 117, 155, 0.03);
  --main-bm-bg-color: #fff;
  --bm-mini-widgets-offset: 70px;
  --bm-mini-widgets-width: 320px;
  --bm-mini-chats-offset: calc(var( --bm-mini-widgets-width ) + var( --bm-mini-widgets-offset ) + 10px);
  --bm-mini-chats-width: 300px;
}

.bp-messages-wrap {
  padding: 0;
  border-radius: 3px;
  border: 1px solid rgba(215, 216, 219, 0.6196078431);
  position: relative;
  background: var(--main-bm-bg-color);
  clear: both;
  box-sizing: border-box !important;
  color: #3f3f3f;
  text-align: left;
}
.bp-messages-wrap .bpbm-display-none {
  display: none !important;
}
.bp-messages-wrap.bm-threads-list {
  border: 0;
  box-shadow: none;
}
.bp-messages-wrap.amaran-wrapper {
  position: fixed;
  border: 0;
  background: none;
  box-shadow: none;
}
.bp-messages-wrap * {
  box-sizing: border-box !important;
}
.bp-messages-wrap .bm-medium-editor-mention-at {
  color: var(--main-bm-color);
  font-weight: 400;
}
.bp-messages-wrap .react-resizable {
  position: relative;
}
.bp-messages-wrap .react-resizable-handle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2IDYiIHN0eWxlPSJiYWNrZ3JvdW5kLWNvbG9yOiNmZmZmZmYwMCIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iNnB4Ij48ZyBvcGFjaXR5PSIwLjMwMiI+PHBhdGggZD0iTSA2IDYgTCAwIDYgTCAwIDQuMiBMIDQgNC4yIEwgNC4yIDQuMiBMIDQuMiAwIEwgNiAwIEwgNiA2IEwgNiA2IFoiIGZpbGw9IiMwMDAwMDAiLz48L2c+PC9zdmc+");
  background-position: bottom right;
  padding: 0 3px 3px 0;
}
.bp-messages-wrap .react-resizable-handle-sw {
  bottom: 0;
  left: 0;
  cursor: sw-resize;
  transform: rotate(90deg);
}
.bp-messages-wrap .react-resizable-handle-se {
  bottom: 0;
  right: 0;
  cursor: se-resize;
}
.bp-messages-wrap .react-resizable-handle-nw {
  top: 0;
  left: 0;
  cursor: nw-resize;
  transform: rotate(180deg);
}
.bp-messages-wrap .react-resizable-handle-ne {
  top: 0;
  right: 0;
  cursor: ne-resize;
  transform: rotate(270deg);
}
.bp-messages-wrap .react-resizable-handle-w,
.bp-messages-wrap .react-resizable-handle-e {
  top: 50%;
  margin-top: -10px;
  cursor: ew-resize;
}
.bp-messages-wrap .react-resizable-handle-w {
  left: 0;
  transform: rotate(135deg);
}
.bp-messages-wrap .react-resizable-handle-e {
  right: 0;
  transform: rotate(315deg);
}
.bp-messages-wrap .react-resizable-handle-n,
.bp-messages-wrap .react-resizable-handle-s {
  left: 50%;
  margin-left: -10px;
  cursor: ns-resize;
}
.bp-messages-wrap .react-resizable-handle-n {
  top: 0;
  transform: rotate(225deg);
}
.bp-messages-wrap .react-resizable-handle-s {
  bottom: 0;
  transform: rotate(45deg);
}
.bp-messages-wrap .react-draggable > video {
  cursor: grab;
}
.bp-messages-wrap .bm-messages-list {
  height: 100%;
}

.bm-medium-editor-mention-panel {
  font-size: 16px;
  left: 0;
  line-height: 1.4;
  min-width: 100px;
  position: absolute;
  text-align: center;
  top: 0;
  word-break: break-all;
  word-wrap: break-word;
  visibility: hidden;
  overflow: hidden;
  z-index: 2000;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  max-height: 160px;
  overflow-y: auto !important;
}
.bm-medium-editor-mention-panel ul {
  list-style: none;
  padding: 2px 0;
  margin: 0;
}
.bm-medium-editor-mention-panel ul li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding: 3px 5px;
  cursor: pointer;
}
.bm-medium-editor-mention-panel ul li:hover {
  background: #f6f6f6;
}
.bm-medium-editor-mention-panel ul li img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.bm-medium-editor-mention-panel-active {
  visibility: visible;
  overflow: visible;
}

.bp-messages-wrap .preloader {
  position: absolute;
  display: none;
  top: 44px;
  width: 100%;
  height: 100%;
  height: calc(100% - 44px);
  background: rgba(250, 251, 252, 0.45);
  z-index: 10;
}

.bp-messages-wrap .chat-header {
  position: relative;
  height: 44px;
  min-height: 44px;
  background: #fafbfc;
  border-bottom: 1px solid #f1f1f1;
  line-height: 42px;
  box-sizing: border-box;
  /* overflow: hidden; */
}

.bp-messages-wrap .chat-header > strong {
  font-size: 13px;
  vertical-align: top;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 200px;
  overflow: hidden;
  display: inline-block;
  text-align: left;
}

.bp-messages-wrap .chat-header > strong:first-child {
  padding-left: 20px;
}

.bp-messages-wrap .chat-header > a {
  display: inline-block;
  font-size: 13px;
  vertical-align: top;
  line-height: inherit;
  color: var(--main-bm-color) !important;
  text-decoration: none !important;
  border: none;
}

.bp-messages-wrap .chat-header .mobileClose {
  display: none;
}

.bp-messages-wrap .chat-header h3 {
  margin: 0 0 0 20px;
}

.bp-messages-wrap .chat-header .new-message,
.bp-messages-wrap .chat-footer .new-message {
  /* float: right; */
  width: 50px;
  height: 42px;
  text-align: center;
}
.bp-messages-wrap .chat-header .new-message > i,
.bp-messages-wrap .chat-footer .new-message > i {
  font-weight: bold;
}

.bp-messages-wrap .chat-header .block-user {
  float: right;
  width: 50px;
  text-align: center;
}

.bp-messages-wrap .chat-header .mini-chat {
  float: right;
  width: 50px;
  text-align: center;
}

.bp-messages-wrap .chat-header .video-call {
  float: right;
  width: 50px;
  text-align: center;
}

.bp-messages-wrap .chat-header .bpbm-maximize,
.bp-messages-wrap .chat-header .bpbm-minimize {
  float: right;
  width: 50px;
  text-align: center;
}

.bp-messages-wrap .chat-header .group-call,
.bp-messages-wrap .chat-header .group-audio-call {
  width: 50px;
  text-align: center;
  float: right;
}

.bp-messages-wrap .chat-header .audio-call {
  float: right;
  width: 50px;
  text-align: center;
}

.bp-messages-wrap .chat-header .mass-message {
  float: right;
  width: 50px;
  text-align: center;
}

.bp-messages-wrap .chat-header .fas {
  color: var(--main-bm-color);
  line-height: 42px;
}

.bp-messages-wrap .chat-header .starred-messages {
  /* float: right; */
  width: 50px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
}

.bp-messages-wrap .chat-header .push-notifications {
  float: right;
  width: 50px;
  display: inline-block;
  height: 42px;
  line-height: 42px;
  text-align: center;
  vertical-align: top;
  outline: none;
  font-size: 13px;
  cursor: pointer;
  display: none;
}

.bp-messages-wrap .chat-header .bpbm-search {
  float: right;
  text-align: center;
  height: 44px;
  line-height: 44px;
  text-decoration: none;
}

.bp-messages-wrap .chat-header .bpbm-search form {
  display: inline-block;
  position: relative;
  margin: 7px 8px 7px 0 !important;
  height: 30px;
  line-height: 30px;
}

.bp-messages-wrap .chat-header .bpbm-search form .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  cursor: pointer;
  margin: auto;
  bottom: 0;
  width: 27px;
}

.bp-messages-wrap .chat-header .bpbm-search form .close i {
  line-height: 30px !important;
}

.bp-messages-wrap .chat-header .bpbm-search form input[type=text] {
  max-height: 30px !important;
  min-height: 30px !important;
  display: inline-block;
  background: #ffffff;
  border-radius: 3px;
  border-width: 1px;
  max-width: 200px;
  box-sizing: border-box;
  padding: 10px 25px 10px 10px;
  font-size: 13px;
}

.bp-messages-wrap .chat-header .bpbm-search form input:focus {
  border-color: var(--main-bm-color);
  outline: 0;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
}

.bp-messages-wrap .chat-header .bpbm-search a {
  width: 50px;
  display: inline-block;
  height: 42px;
  line-height: 42px;
  vertical-align: top;
  outline: none;
  font-size: 13px;
  border: none;
}

.bp-messages-wrap .chat-header .participants {
  float: right;
  min-width: 50px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
}

.bp-messages-wrap .chat-header .participants + .participants {
  display: none !important;
}

.bp-messages-wrap .chat-header .bpbm-unmute-thread,
.bp-messages-wrap .chat-header .bpbm-mute-thread {
  float: right;
  width: 50px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
}

.bp-messages-wrap .chat-header .bpbm-leave-thread {
  float: right;
  width: 50px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
}

.bp-messages-wrap .empty {
  text-align: center;
  margin: 30px 0 30px;
  color: gray;
}

.bp-messages-wrap .threads-list .empty {
  padding: 30px 0 20px;
}

.bp-messages-wrap .threads-list .empty .bpbm-empty-icon {
  font-size: 50px;
  margin: 10px auto;
}

.bp-messages-wrap .threads-list .empty .bpbm-empty-icon i {
  font-size: 50px;
}

.bp-messages-wrap .threads-list .empty .bpbm-empty-message {
  margin: 10px auto;
}

.bp-messages-wrap .threads-list .empty .bpbm-empty-link {
  margin: 10px auto;
}

.bp-messages-wrap .thread-not-selected .empty {
  padding: 20px 0 20px;
}

.bp-messages-wrap .thread-not-selected .empty .bpbm-empty-icon {
  font-size: 50px;
  margin: 10px auto;
}

.bp-messages-wrap .thread-not-selected .empty .bpbm-empty-icon i {
  font-size: 50px;
}

.bp-messages-wrap .thread-not-selected .empty .bpbm-empty-message {
  margin: 10px auto;
}

.bp-messages-wrap .thread-not-selected .empty .bpbm-empty-or {
  margin: 0px auto;
}

.bp-messages-wrap .thread-not-selected .empty .bpbm-empty-link {
  margin: 10px auto;
}

.bp-messages-wrap .bpbm-favorite-empty {
  padding: 30px 0 20px;
}

.bp-messages-wrap .bpbm-favorite-empty .bpbm-empty-icon {
  font-size: 50px;
  margin: 10px auto;
}

.bp-messages-wrap .bpbm-favorite-empty .bpbm-empty-icon i {
  font-size: 50px;
}

.bp-messages-wrap .bpbm-favorite-empty .bpbm-empty-message {
  margin: 10px auto;
}

.bp-messages-wrap .bpbm-search-empty {
  padding: 30px 0 20px;
}

.bp-messages-wrap .bpbm-search-empty .bpbm-empty-icon {
  font-size: 50px;
  margin: 10px auto;
}

.bp-messages-wrap .bpbm-search-empty .bpbm-empty-icon i {
  font-size: 50px;
}

.bp-messages-wrap .bpbm-search-empty .bpbm-empty-message {
  margin: 10px auto;
}

.bp-messages-wrap .chat-header .back {
  width: 42px;
  text-align: center;
  height: 100%;
}

.bp-messages-wrap .chat-header .user {
  line-height: 42px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  vertical-align: top;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bp-messages-wrap .chat-header span.avatar {
  vertical-align: middle;
  margin-right: 5px !important;
  display: inline-block;
  line-height: initial;
}

.bp-messages-wrap .scroller {
  overflow: hidden;
  overflow-y: auto;
  width: auto;
  width: 100%;
  height: 100%;
  text-align: initial;
  vertical-align: initial;
  float: none;
  margin: 0;
  cursor: initial;
  z-index: initial !important;
  position: relative;
}
.bp-messages-wrap .scroller .bpbm-scroll-down {
  display: block;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  line-height: 28px;
  background: white;
  border: 2px solid var(--main-bm-color);
  color: var(--main-bm-color);
  font-size: 13px;
  border-radius: 100%;
  z-index: 2;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.bp-messages-wrap .scroller .bpbm-scroll-down.bpbm-shown {
  opacity: 0.7;
  pointer-events: initial;
}
.bp-messages-wrap .scroller .bpbm-scroll-down:hover {
  opacity: 1;
}

.bp-messages-wrap.bp-messages-mobile .scroller {
  max-height: 100%;
  max-height: calc(100% - 44px);
}

.bp-messages-wrap.bp-messages-mobile .new-message form > div input,
.bp-messages-wrap.bp-messages-mobile .new-message form > div textarea,
.bp-messages-wrap.bp-messages-mobile input,
.bp-messages-wrap.bp-messages-mobile textarea,
.bp-messages-wrap.bp-messages-mobile .new-message form > div input,
.bp-messages-wrap.bp-messages-mobile .new-message form > div .taggle_input[type=text] {
  font-size: 16px !important;
  line-height: 20px !important;
}

.bp-messages-wrap .list {
  display: table;
  width: 100%;
  margin: 35px 0 10px;
  table-layout: fixed;
}

.bp-messages-wrap .list .messages-stack {
  display: table-row;
  max-width: 100%;
}

.bp-messages-wrap.bp-better-messages-mini .list .messages-stack .pic {
  /* display: none; */
  padding-left: 12px;
}

.bp-messages-wrap.bp-better-messages-mini .list .messages-stack .content .messages-list {
  margin-bottom: 10px !important;
}

.bp-messages-wrap .list .messages-stack .pic {
  display: table-cell;
  width: 40px;
  height: 40px;
  box-sizing: content-box !important;
  padding-left: 20px;
  vertical-align: top;
  opacity: 1;
  position: relative;
}

.bp-messages-wrap .list .messages-stack .pic img {
  height: 40px;
  width: 40px;
}

.bp-messages-wrap .list .messages-stack .content {
  display: table-cell;
  vertical-align: top;
  padding-left: 5px;
  padding-right: 20px;
  padding-bottom: 0;
  padding-top: 0;
  width: auto;
  float: none;
  min-width: auto;
}

.bp-messages-wrap .list .messages-stack .content .info {
  line-height: 14px;
  margin-bottom: 0;
  padding: 0;
  padding-left: 10px;
  background: none;
}

.bp-messages-wrap .list .messages-stack .content .info > * {
  display: inline-block;
  vertical-align: middle;
  line-height: inherit;
}

.bp-messages-wrap .list .messages-stack .content .info .name {
  vertical-align: bottom;
}

.bp-messages-wrap.bp-better-messages-mini .list .messages-stack .content .info .time {
  display: none;
}

.bp-messages-wrap .list .messages-stack .content .info .time {
  margin: 0px 0 0 5px;
  font-size: 11px;
  vertical-align: bottom;
}

.bp-messages-wrap .list .messages-stack .content .info .name a,
.bp-messages-wrap .list .messages-stack .content .info .name span {
  font-weight: bold;
  text-decoration: none;
  font-size: 13px;
  border: none;
  color: var(--main-bm-color);
}

.bp-messages-wrap .list .messages-stack .content .info .name a:hover {
  text-decoration: underline;
}

.bp-messages-wrap .list .messages-stack .content .messages-list {
  list-style: none;
  padding: 0;
  border: 0;
  margin: 6px 0 15px 0 !important;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li {
  position: relative;
  padding: 3px 50px 3px 0px;
  margin: 0;
  border: 0;
  vertical-align: middle;
  padding-left: 11px;
  font-size: 13px;
  line-height: 18px;
  border-radius: 3px;
  list-style: none;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions {
  display: flex;
  margin-top: 4px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions .bm-reaction {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  margin-right: 5px;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions .bm-reaction img {
  height: 13px !important;
  width: 13px !important;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions .bm-reaction .bm-reaction-count {
  font-size: 11px;
  margin-left: 2px;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li:hover .bm-reactions-selector {
  visibility: visible;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .reply-enabled .bm-reactions-selector {
  right: 25px;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions-selector {
  position: absolute;
  bottom: calc(100% - 20px);
  right: 0;
  background: white;
  padding: 1px 5px;
  border-radius: 15px;
  border: 1px solid #d8d8d8;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  visibility: hidden;
  z-index: 20;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions-selector:hover .bm-reaction-icon {
  display: inline-block;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions-selector:hover .bm-reaction-icon img {
  height: 22px !important;
  width: 22px !important;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions-selector .bm-reaction-icon {
  margin-top: 3px;
  margin-bottom: 3px;
  cursor: pointer;
  display: none;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions-selector .bm-reaction-icon:last-child {
  display: inline-block;
}
.bp-messages-wrap .list .messages-stack .content .messages-list > li .bm-reactions-selector .bm-reaction-icon img {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  height: 12px !important;
  width: 12px !important;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li ul,
.bp-messages-wrap .list .messages-stack .content .messages-list > li ol {
  list-style-position: inside;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .bp-messages-iframe-container {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 10px 0 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .bp-messages-iframe-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content {
  display: block;
  position: relative;
  word-break: break-word;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content.reply-enabled {
  padding-right: 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content.reply-enabled .bpbm-attachments {
  max-width: calc(100% - 30px);
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content iframe {
  max-width: 100%;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.sent .status {
  display: inline-block;
  width: 17px;
  height: 11px;
  position: absolute;
  right: 6px;
  top: 7px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li:not(.my) {
  padding-right: 35px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li:not(.my) .favorite {
  right: 9px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.delivered .status {
  display: inline-block;
  width: 17px;
  height: 11px;
  position: absolute;
  right: 5px;
  top: 7px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.seen .status {
  display: inline-block;
  width: 17px;
  height: 11px;
  position: absolute;
  right: 5px;
  top: 7px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .status svg {
  display: block;
  width: 100%;
  height: auto;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.unread {
  background: #fafbfc;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .images {
  padding: 10px 0;
  margin: 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .images.images-1 > a {
  max-width: 100%;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .images a {
  max-width: 49%;
  display: inline-block;
  width: 200px;
  height: 0;
  background-size: cover;
  background-position: center;
  padding-bottom: 15%;
  margin-right: 0.4%;
  border: 1px solid #fafbfc;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .images a img {
  display: none;
}

.bp-messages-wrap.bp-better-messages-mini .list .messages-stack .content .messages-list > li .images a {
  max-width: 100%;
  width: auto;
  background: none;
  height: auto;
  padding: 0;
  margin: 0;
}

.bp-messages-wrap.bp-better-messages-mini .list .messages-stack .content .messages-list > li .images a img {
  display: block;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .files {
  margin: 5px 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .audios {
  padding: 5px 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .audios audio {
  visibility: visible;
  display: block;
  max-width: 100%;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .videos {
  margin: 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .videos .video {
  padding: 5px 0;
  width: 100%;
  position: relative;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .videos .video .bpbm-video-container video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 300px;
  display: block;
  background: #e8e8e8;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .files .file {
  border: 1px solid #fafbfc;
  overflow: hidden;
  border-radius: 4px;
  -moz-transition: border-color 0.2s ease-in-out, -moz-box-shadow 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-transition: border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: block;
  width: 100%;
  text-decoration: none;
  margin: 2px 0;
  padding: 5px 12px;
  outline: 0;
  color: inherit !important;
  box-sizing: border-box;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .files .file .size {
  color: gray;
  margin-left: 10px;
  font-size: 80%;
  vertical-align: baseline;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .files .file i {
  margin-right: 10px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .files .file:hover {
  -moz-box-shadow: 0 0 4px rgb(220, 220, 220);
  -webkit-box-shadow: 0 0 4px rgb(220, 220, 220);
  box-shadow: 0 0 4px rgb(220, 220, 220);
  border-color: rgb(220, 220, 220);
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .images img {
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0;
  display: block;
  max-width: 100%;
  width: auto;
}

.bp-messages-wrap .starred .list, .bp-messages-wrap .search .list {
  margin-top: 20px;
}

.bp-messages-wrap .starred .list .messages-stack .content .messages-list > li, .bp-messages-wrap .search .list .messages-stack .content .messages-list > li {
  cursor: pointer;
}

.bp-messages-wrap .starred .list .messages-stack .content .messages-list > li:hover, .bp-messages-wrap .search .list .messages-stack .content .messages-list > li:hover {
  background: #fafbfc;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.selected {
  background: #fafbfc;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.selected.first {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.selected.last {
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite {
  display: none;
  position: absolute;
  right: 30px;
  top: 6px;
  line-height: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  font-size: 13px;
  color: #fdae00 !important;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i {
  color: #fdae00 !important;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .bpbm-reply {
  display: inline-block;
  line-height: inherit;
  width: 13px;
  height: 13px;
  font-size: 13px;
  color: #898989 !important;
  float: right;
  cursor: pointer;
  opacity: 0;
  position: relative;
  z-index: 2;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .bpbm-reply i {
  color: #898989 !important;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .content .messages-list > li .bpbm-reply {
  margin-right: 5px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li:hover .bpbm-reply {
  opacity: 1;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li:not(.seen):not(.sent):not(.delivered) .favorite {
  right: 10px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite {
  float: right;
  display: none;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i:before {
  content: "\f005";
  font-weight: 400;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite.active, .bp-messages-wrap .list .messages-stack .content .messages-list > li:hover .favorite {
  display: block;
  cursor: pointer;
}

body.bp-messages-mobile .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite.active + .status {
  display: none;
}

body.bp-messages-mobile *:not(input, textarea) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.bp-messages-mobile .bm-medium-editor-mention-panel {
  z-index: 100001;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .status {
  display: none;
  color: var(--main-bm-color);
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li.delivered .status,
.bp-messages-wrap .list .messages-stack .content .messages-list > li.sent .status {
  color: #898989;
}

.bp-messages-wrap .list .messages-stack .content .info .status {
  display: inline-block;
  margin-left: 3px;
  position: relative;
  line-height: 12px;
  font-size: 8.5px;
  color: gray;
  vertical-align: bottom;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite.active i:before {
  font-weight: bold;
}

.amaran.user.message .emoji, .amaran.user.message .emojione, .bp-messages-wrap .list .messages-stack .content .messages-list > li .emoji, .bp-messages-wrap .list .messages-stack .content .messages-list > li .emojione {
  height: auto !important;
  width: 20px !important;
  vertical-align: middle !important;
  border-radius: 0 !important;
}

.bp-messages-wrap .reply {
  width: 100%;
  box-sizing: border-box;
  background: #fafbfc;
  padding: 12px;
  border-top: 1px solid #f1f1f1;
  position: relative;
  float: none;
  margin: 0 !important;
}

.bp-messages-wrap .reply form {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.bp-messages-wrap .reply .message {
  width: 90%;
  width: calc(100% - 90px);
  padding: 0;
  margin: 0;
  float: left;
  position: relative;
  background: none;
}

.bp-messages-wrap .reply .message.media-messages-enabled {
  margin-right: 2%;
  width: 85%;
}

.bp-messages-wrap .reply .message.file-uploader-enabled .bp-emojionearea .bp-emojionearea-editor {
  padding-right: 50px;
}

.bp-messages-wrap.mobile-ready:not(.bp-messages-mobile, .bp-better-messages-mini) .message .upload-btn,
.bp-messages-wrap.mobile-ready:not(.bp-messages-mobile, .bp-better-messages-mini) .new-message .bp-emojionearea .upload-btn {
  display: none !important;
}

.bp-messages-wrap .message .upload-btn,
.bp-messages-wrap .new-message .bp-emojionearea .upload-btn {
  z-index: 5;
  position: absolute;
  right: 7px;
  top: 4px;
  padding-right: 4px;
  height: 24px;
  text-align: center;
  font-size: 15px !important;
  line-height: 24px;
  cursor: pointer;
  color: #cbcbcb;
}

.bp-messages-wrap .bp-emoji-enabled .message .upload-btn,
.bp-messages-wrap .bp-emoji-enabled .new-message .bp-emojionearea .upload-btn {
  right: 28px;
}

.bp-messages-wrap .message .upload-btn i,
.bp-messages-wrap .new-message .bp-emojionearea .upload-btn i {
  line-height: 24px;
}

.bp-messages-wrap .message .bp-emojionearea-button,
.bp-messages-wrap .new-message .bp-emojionearea .bp-emojionearea-button {
  color: #cbcbcb;
}

.bp-messages-wrap.bp-messages-mobile .message .upload-btn,
.bp-messages-wrap.bp-messages-mobile .new-message .bp-emojionearea .upload-btn {
  right: 5px;
}

.bp-messages-wrap .message .upload-btn .count,
.bp-messages-wrap .new-message .bp-emojionearea .upload-btn .count {
  margin-left: 5px;
}

.bp-messages-wrap .message .upload-btn .count.count-0,
.bp-messages-wrap .new-message .bp-emojionearea .upload-btn .count.count-0 {
  display: none;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .time {
  display: table-cell !important;
  padding-right: 0;
  padding-left: 0;
  width: 1px;
  margin-right: 0;
  vertical-align: top;
  padding-top: 10px;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .unread-count {
  padding-right: 8px;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .time .delete {
  display: block !important;
  position: relative;
  top: 0;
  right: 0px;
  padding-right: 0px;
}

.bp-messages-wrap .reply .message textarea {
  display: block;
  outline: 0;
  width: 100%;
  resize: none;
  box-sizing: border-box;
  border: 1px solid #f1f1f1;
  -webkit-appearance: none;
}
.bp-messages-wrap .reply .message textarea.bpbm-medium-editor-hidden {
  display: none;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .content .messages-list > li .images a {
  padding-bottom: 35%;
}

.bp-messages-wrap.bp-messages-mobile .reply .message textarea {
  font-size: 16px;
  padding: 10px;
  height: 4em;
  min-height: 4em;
}

.bp-messages-wrap.bp-messages-mobile .reply .message .bpbm-medium-editor-element {
  outline: 0;
  width: 100%;
  resize: none;
  box-sizing: border-box;
  background: white;
  border: 1px solid #f1f1f1;
  -webkit-appearance: none;
  font-size: 16px;
  padding: 10px;
  height: 4em;
  min-height: 4em;
  overflow: auto;
  font-size: 16px !important;
  line-height: 20px !important;
  -webkit-user-select: text;
  user-select: text;
  color: black;
}
.bp-messages-wrap.bp-messages-mobile .reply .message .bpbm-medium-editor-element * {
  -webkit-user-select: text;
  user-select: text;
}
.bp-messages-wrap.bp-messages-mobile .reply .message .bpbm-medium-editor-element p {
  margin: 0;
}

.bp-messages-wrap.bp-messages-mobile .bp-emojionearea .bp-emojionearea-editor {
  height: 4em;
  font-size: 16px;
}

.bp-messages-wrap .reply .bp-media-buttons {
  width: 8%;
  text-align: center;
}

.bp-messages-wrap .reply .send .bp-audio-message {
  background: none !important;
  border: 0 !important;
  font-size: 20px;
  display: inline-block;
  color: var(--main-bm-color);
  margin: 0 0;
  padding: 0 !important;
  width: 100%;
  outline: 0 !important;
  box-shadow: none;
}

.bp-messages-wrap .reply .send .bp-audio-message + button[type=submit] {
  display: none;
}

.bp-messages-wrap .reply .send {
  width: 90px;
  padding-left: 10px;
  text-align: center;
}

.bp-messages-wrap .reply .send button[type=submit] {
  background: none !important;
  border: 0 !important;
  font-size: 20px;
  display: inline-block;
  color: var(--main-bm-color);
  margin: 0 0;
  padding: 0 !important;
  width: 100%;
  outline: 0 !important;
  min-height: 40px;
  box-shadow: none;
  cursor: pointer;
}

.bp-messages-wrap .reply .send button[type=submit] > i {
  font-size: inherit;
}

.bp-messages-wrap .clearfix::before, .bp-messages-wrap .clearfix::after {
  content: "";
  display: table;
}

.bp-messages-wrap .clearfix::after {
  clear: both;
}

.bp-messages-wrap .clearfix {
  zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

.bp-messages-wrap .threads-list {
  position: relative;
  display: table;
  width: 100%;
  table-layout: auto;
  padding-bottom: 50px;
}

.bp-messages-wrap .threads-list.empty {
  padding-bottom: 0;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list {
  height: auto;
}

.bp-messages-wrap .threads-list .thread {
  display: table-row;
  vertical-align: top;
  /* position: relative; */
}

.bp-messages-wrap .threads-list .thread.no-avatars > .info {
  padding-left: 15px;
}

.bp-messages-wrap .threads-list .thread .deleted {
  display: none;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  text-align: center;
  background: #fff6f6 !important;
  z-index: 2;
  padding: 0;
}

.bp-messages-wrap .threads-list .thread.bp-messages-active-thread {
  background: var(--main-bm-color-003);
}

.bp-messages-wrap .threads-list .thread.unread {
  background: #fdfdfd;
  background: rgba(253, 253, 253, 0.4);
}

.bp-messages-wrap .threads-list .thread:hover > * {
  background: #fafbfc;
  cursor: pointer;
}

.bp-messages-wrap .threads-list .thread:last-child > * {
  border-bottom: 0;
}

.bp-messages-wrap .threads-list .thread > * {
  display: table-cell;
  vertical-align: top;
  padding-bottom: 15px;
  padding-top: 15px;
  background: none;
  border: none;
  border-bottom: 1px solid #fafbfc;
}

.bp-messages-wrap .threads-list .thread .pic {
  padding-left: 15px;
  width: 50px;
  height: 50px;
  padding-right: 15px;
  text-align: left;
  box-sizing: content-box !important;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.bp-messages-wrap .threads-list .thread .pic.group {
  vertical-align: middle;
  text-align: left;
  line-height: 0;
  width: 55px;
  height: 55px;
  box-sizing: content-box !important;
}

.bp-messages-wrap .avatar {
  border: 0 !important;
}

.bp-messages-wrap .threads-list .thread .pic img {
  display: block;
  vertical-align: top;
  /* width: 100%; */
}

.bp-messages-wrap .threads-list .thread .pic.group > * {
  margin: 0.5px 0.5px !important;
  width: 25px !important;
  height: 25px !important;
  border: 0 !important;
  display: inline-block;
  box-sizing: border-box;
}

.bp-messages-wrap .threads-list .thread .pic.group > * .avatar {
  width: 25px !important;
  height: 25px !important;
}

.no-count.bp-better-messages-unread {
  display: none !important;
}

.bp-messages-wrap .threads-list .thread .info .name {
  display: block;
  font-size: 13px;
  line-height: 13px;
  margin-bottom: 6px;
  padding: 0;
}

.bp-messages-wrap .threads-list .thread .info .name + h4 {
  font-size: 10px;
  margin: 0px 0px 4px;
  text-transform: none;
  font-weight: normal;
  line-height: 12px;
}

.bp-messages-wrap .threads-list .thread .info h4 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: initial;
}

.bp-messages-wrap .threads-list .thread .info p {
  margin: 0;
  font-size: 11px;
  /* IE 5.5-7 */
  /* Firefox 1.0-2.0 */
  /* current browsers */
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all; /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all; /* Instead use this non-standard one: */
  word-break: break-word; /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  line-height: 15px;
  padding: 0;
}

.bp-messages-wrap .threads-list .thread .info .bm-live-chat-online {
  display: flex;
  font-size: 11px;
  align-items: center;
  margin-top: 2px;
}
.bp-messages-wrap .threads-list .thread .info .bm-live-chat-online .bm-live-chat-online-indicator {
  background: #28B62C;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-animation: pulse-animation 2s infinite linear;
  margin-right: 5px;
}
@-webkit-keyframes pulse-animation {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

.bp-messages-wrap .threads-list .thread .info p .avatar {
  vertical-align: middle;
  margin-right: 5px !important;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.bp-messages-wrap .threads-list .thread .info p .avatar img {
  display: block;
}

.bp-messages-wrap .threads-list .thread .info p .bpbm-gifs-icon {
  vertical-align: middle;
}

.bp-messages-wrap .threads-list .thread .time {
  padding-left: 10px;
  position: relative;
  padding-right: 30px;
  text-align: center;
  width: 1px;
  font-size: 12px;
  white-space: nowrap;
}

.bp-messages-wrap .threads-list .thread .time .delete {
  display: none;
  position: absolute;
  right: 13px;
  top: 13px;
  font-size: 12px;
  color: #cacaca;
}
.bp-messages-wrap .threads-list .thread .time .delete i {
  font-size: 12px;
}

.bp-messages-wrap .threads-list .thread:hover .time .delete {
  display: block;
}

.bp-messages-wrap .threads-list .thread .unread-count {
  font-weight: bold;
  padding: 5px 5px;
  line-height: 15px;
  font-size: 15px;
  display: block;
}

.bp-messages-wrap .threads-list .thread .info .user {
  line-height: 14px;
  margin-bottom: 4px;
}

.bp-messages-wrap .threads-list .thread .info .user a {
  text-decoration: none;
}

.bp-messages-wrap div.new-message {
  padding: 20px 20px;
  overflow: auto;
  height: 100%;
}
.bp-messages-wrap div.new-message h4 {
  margin: 0 0 1em;
}

.bp-messages-wrap div.new-message form {
  margin: 0;
}

.bp-messages-wrap div.new-message .bp-emojionearea .bp-emojionearea-editor {
  min-height: 8em;
}

.bp-messages-wrap #send-to .ui-autocomplete {
  width: 100% !important;
  padding-top: 3px;
  padding-bottom: 3px;
  list-style: none;
  z-index: 100;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid var(--main-bm-color);
  border-top: 0;
  outline: 0;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  box-shadow: inset 0px 0px 0px rgba(0, 0, 0, 0), 0px 3px 3px var(--main-bm-color-60);
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.bp-messages-wrap #send-to .ui-autocomplete li {
  color: black;
  padding: 2px 12px;
  box-sizing: border-box;
  display: flex;
  cursor: pointer;
  align-items: center;
}

#send-to-bmselectized {
  border: 0 !important;
  box-shadow: none !important;
  padding-left: 4px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.bmselectize-control.multi .bmselectize-input.has-items #send-to-bmselectized {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.bmselectize-input {
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  -moz-transition: border-color 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out !important;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}
.bmselectize-input > div {
  display: inline-flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  vertical-align: middle;
}
.bmselectize-input > div > .bpbm-avatar {
  margin-right: 10px;
}
.bmselectize-input > div > .bpbm-avatar img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.bmselectize-input > div > .bpbm-name {
  vertical-align: middle;
  font-size: 13px;
  margin-right: 10px;
  padding: 0.9px 0;
}
.bmselectize-input.input-active, .bmselectize-input.focus {
  border-color: var(--main-bm-color) !important;
  outline: 0 !important;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60) !important;
}

.bmselectize-dropdown {
  border-color: var(--main-bm-color) !important;
  outline: 0 !important;
  box-shadow: 0 3px 3px var(--main-bm-color-60) !important;
  border-radius: 0 0 3px 3px !important;
}
.bmselectize-dropdown .bmselectize-dropdown-content > div {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  padding-left: 10px;
  color: black;
}
.bmselectize-dropdown .bmselectize-dropdown-content > div.active {
  background: var(--main-bm-color-003);
}
.bmselectize-dropdown .bmselectize-dropdown-content > div .bpbm-avatar {
  margin-right: 10px;
}
.bmselectize-dropdown .bmselectize-dropdown-content > div .bpbm-avatar img {
  width: 30px;
  height: 30px;
}

.bp-messages-wrap .new-message form > div {
  margin-bottom: 20px;
  position: relative;
}

.bp-messages-wrap .new-message form > div label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

.bp-messages-wrap .new-message form > div textarea {
  min-height: 80px;
  padding-top: 10px !important;
}

.bp-messages-wrap .new-message form > div input, .bp-messages-wrap .new-message form > div textarea {
  display: block;
  width: 100% !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  border: 1px solid #ccc !important;
  -moz-border-radius: 3px !important;
  -webkit-border-radius: 3px !important;
  border-radius: 3px !important;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  -moz-transition: border-color 0.15s ease-in-out, -moz-box-shadow 0.15s ease-in-out !important;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
  font-size: 14px !important;
  padding-left: 12px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  line-height: 12px !important;
  height: initial !important;
  min-height: 10px !important;
}

.bp-messages-wrap .new-message form > div textarea {
  min-height: 5em !important;
  outline: none;
}

.bp-messages-wrap .new-message form > div input:focus {
  border-color: var(--main-bm-color) !important;
  outline: 0 !important;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60) !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60) !important;
}

.bp-messages-wrap .writing {
  position: absolute;
  bottom: 82px;
  left: 0;
  height: 30px;
  line-height: 30px;
  padding-left: 78px;
  font-size: 10px;
  box-sizing: border-box;
  width: 100%;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(250, 251, 252) 100%);
  background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(250, 251, 252) 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(250, 251, 252) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#fafbfc",GradientType=1);
  z-index: 4;
}

.bp-messages-wrap.bp-better-messages-mini .writing {
  padding-left: 12px;
}

.bp-messages-wrap .active .taggle_list {
  border-color: var(--main-bm-color);
  outline: 0;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--main-bm-color-60);
}

.bp-messages-wrap .taggle_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 !important;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  font-size: 14px;
  padding-left: 12px !important;
  margin-bottom: 0 !important;
  height: auto !important;
  overflow: hidden;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  line-height: 12px;
}

.bp-messages-wrap .taggle_list input.taggle_input[type=text],
.bp-messages-wrap .taggle_list input.taggle_input[type=text]:focus {
  border: none !important;
  outline: none !important;
  height: auto !important;
  font-size: 16px;
  font-weight: 300;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 10px;
}

.bp-messages-wrap .taggle_list li {
  float: left;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
  margin-bottom: 0px;
  margin-left: 0 !important;
}

.bp-messages-wrap .taggle_list .taggle {
  margin-right: 8px;
  background: #E2E1DF;
  padding: 1px 10px;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  font-size: 12px;
  margin-top: 3px;
  margin-bottom: 3px;
  padding-top: 0px;
  padding-bottom: 0px;
  min-height: 30px;
  line-height: 30px;
}

.bp-messages-wrap .taggle_list .taggle_hot {
  background: #cac8c4;
}

.bp-messages-wrap .taggle_list .taggle .close:active {
  background: none !important;
  background-image: none !important;
  background-color: none !important;
}

.bp-messages-wrap .taggle_list .taggle .close {
  font-size: 1.1rem;
  position: absolute;
  top: 0;
  right: 2px;
  bottom: 0;
  text-decoration: none;
  padding-left: 2px;
  padding-top: 3px;
  padding-right: 2px;
  background-image: none !important;
  line-height: 0.5;
  color: #ccc;
  color: rgba(0, 0, 0, 0.2);
  padding-bottom: 4px;
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
  outline: 0;
}

.bp-messages-wrap .taggle_list .taggle:hover {
  /* padding: 5px; */
  padding-right: 25px;
  background: #ccc;
  transition: all 0.3s;
}

.bp-messages-wrap .taggle_list .taggle:hover > .close {
  display: inline-block;
  width: 20px;
}

.bp-messages-wrap .taggle_list .taggle .close:hover {
  color: #990033;
}

.bp-messages-wrap .taggle_placeholder {
  position: absolute;
  color: #CCC;
  top: 12px;
  left: 8px;
  transition: opacity, 0.25s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#wcfm-main-contentainer input.taggle_input[type=text],
.bp-messages-wrap .new-message form > div .taggle_input[type=text] {
  padding: 0px !important;
  padding-left: 0;
  float: left;
  background: none;
  width: 100%;
  max-width: 100%;
  font-size: 14px !important;
  margin: 0;
  border: 0 !important;
  box-shadow: none !important;
}

.bp-messages-wrap .taggle_sizer {
  padding: 0;
  margin: 0;
  position: absolute;
  top: -500px;
  z-index: -1;
  visibility: hidden;
}

/*container styles*/
.bp-messages-wrap textarea.input, .bp-messages-wrap .textarea.input {
  border: 0;
  background: #FDFDFD;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(255, 255, 255, 0.7);
  min-height: 60px;
  padding: 8px;
  border-radius: 3px;
  color: #555;
  transition: all 0.25s;
  cursor: text;
  margin-bottom: 10px;
  position: relative;
}

.bp-messages-wrap .textarea.input:focus, .bp-messages-wrap .textarea.input.active, .bp-messages-wrap textarea.input:focus, .bp-messages-wrap textarea.input.active {
  background: #fff;
  transition: all 0.25s;
}

.bp-messages-wrap .textarea.input, textarea.input {
  height: auto;
}

.bp-messages-wrap .textarea.tags {
  position: relative;
}

.bp-messages-wrap .textarea.tags * {
  box-sizing: content-box !important;
}

.bp-messages-wrap .placeholder_input {
  position: relative;
}

.bp-messages-wrap .placeholder_input span {
  position: absolute;
  color: #AAA;
  top: 50%;
  margin-top: -11px;
  left: 10px;
}

.bp-messages-wrap .placeholder_input input {
  width: 120px;
}

.bp-messages-wrap .ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
}

.bp-messages-wrap .ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}

.bp-messages-wrap .ui-widget-content {
  background: #fff;
  color: #990033;
}

.bp-messages-wrap .ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
}

.bp-messages-wrap .ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  min-height: 0;
  font-weight: normal;
  color: #8a8a8a;
  cursor: pointer;
}

.bp-messages-wrap .ui-menu .ui-menu-item a:hover {
  color: #fff;
  background: #990033;
}

.bp-messages-wrap .ui-state-hover, .bp-messages-wrap .ui-widget-content .ui-state-hover, .bp-messages-wrap .ui-widget-header .ui-state-hover, .bp-messages-wrap .ui-state-focus, .bp-messages-wrap .ui-widget-content .ui-state-focus, .bp-messages-wrap .ui-widget-header .ui-state-focus {
  background: #fafbfc;
  cursor: pointer;
}

.bp-messages-wrap .ui-state-hover a, .bp-messages-wrap .ui-state-hover a:hover, .bp-messages-wrap .ui-state-hover a:link, .bp-messages-wrap .ui-state-hover a:visited {
  color: #fff;
}

.bp-messages-wrap .ui-state-active, .bp-messages-wrap .ui-widget-content .ui-state-active, .bp-messages-wrap .ui-widget-header .ui-state-active {
  /* border: 1px solid #aaaaaa; */
  background: #ffffff;
  font-weight: normal;
  color: #212121;
}

.bp-messages-wrap .ui-helper-hidden {
  display: none;
}

.bp-messages-wrap .ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.bp-messages-wrap .autocomplete {
  max-height: 200px;
  overflow: scroll;
  position: absolute;
  top: 66px;
  background: white;
  width: 99.5%;
  left: 0.25%;
  z-index: 2;
}

.bp-messages-wrap .autocomplete ul li {
  display: block;
  padding: 6px 8px;
}

.bp-messages-wrap .autocomplete ul li.selected, .autocomplete ul li:hover {
  background: #ff6633;
  color: #fff;
  cursor: pointer;
}

.bp-messages-wrap .ui-autocomplete {
  max-height: 200px;
  overflow: scroll;
  width: 99% !important;
}

.bp-messages-wrap .content .messages-list > li .url-wrap {
  border: 1px solid #fafbfc !important;
  overflow: hidden;
  border-radius: 4px;
  -moz-transition: border-color 0.2s ease-in-out, -moz-box-shadow 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  -webkit-transition: border-color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: block;
  width: 100%;
  text-decoration: none;
  margin: 5px 0;
  outline: 0;
}

.bp-messages-wrap .content .messages-list > li .url-wrap + br {
  display: none;
}

.bp-messages-wrap .content .messages-list > li .url-wrap:hover {
  -moz-box-shadow: 0 0 4px rgb(220, 220, 220);
  -webkit-box-shadow: 0 0 4px rgb(220, 220, 220);
  box-shadow: 0 0 4px rgb(220, 220, 220);
  border-color: rgb(220, 220, 220);
}

.bp-messages-wrap .content .messages-list > li .url-wrap .url-image {
  display: block;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  display: block;
  height: 150px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.bp-messages-wrap .messages-list > li .url-wrap .url-image + .url-description {
  border-top: 1px solid #fafbfc;
}

.bp-messages-wrap .messages-list > li .url-wrap .url-description {
  padding: 15px;
  display: block;
}

.bp-messages-wrap .messages-list > li .url-wrap .url-description .url-title {
  display: block;
  color: black !important;
  font-size: 120%;
  line-height: 100%;
}

.bp-messages-wrap.bp-better-messages-mini .messages-list > li .url-wrap .url-description {
  padding: 10px;
}

.bp-messages-wrap.bp-better-messages-mini .messages-list > li .url-wrap .url-description .url-title {
  font-size: 80%;
  line-height: 15px;
}

.bp-messages-wrap.bp-better-messages-mini .messages-list > li .url-wrap .url-description .url-site {
  font-size: 70%;
}

.bp-messages-wrap .messages-list > li .url-wrap .url-description .url-title i {
  font-size: 75%;
}

.bp-messages-wrap .messages-list > li .url-wrap .url-description .url-site {
  display: block;
  font-size: 80%;
  margin: 6px 0 0px;
}

.bbpm-avatar {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  padding: 0 !important;
  overflow: initial !important;
  color: #8ac176;
  transition: color 0.5s ease;
}

.bbpm-avatar::before {
  display: block;
  opacity: 0;
  position: absolute;
  content: "";
  background-color: currentColor;
  border-radius: 50%;
  bottom: -1px;
  right: -1px;
  border: 1px solid #fff;
  height: 20%;
  width: 20%;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
  z-index: 2;
}

.bbpm-avatar.online::before {
  opacity: 1;
}

.bp-messages-wrap .jFiler .jFiler-input-text h3 {
  margin: 0;
}

.bp-messages-wrap .jFiler ul {
  margin: 0 !important;
}

.bp-messages-wrap .jFiler-input-dragDrop .jFiler-input-icon {
  line-height: 48px;
}

.bp-messages-wrap .jFiler-input-text span {
  margin: 0 0 10px !important;
}

.bp-messages-wrap .jFiler ul.list-inline li {
  margin: 0;
}

.bp-messages-wrap .jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb {
  margin-right: 0;
  width: 100%;
  height: 120px;
}

.bp-messages-wrap .jFiler-items-grid .jFiler-item {
  display: inline-block;
  margin-left: 0;
  float: none; /* width: 32%; */
  margin-right: 7px;
}

.bp-messages-wrap .jFiler-input-dragDrop {
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  background: #fafbfc;
  float: none;
}

.bp-messages-wrap .jFiler-items-grid .jFiler-item .jFiler-item-container {
  margin-bottom: 10px;
  margin-right: 0;
}

.bp-messages-wrap a {
  box-shadow: none !important;
  border: none !important;
}

.bp-messages-wrap .jFiler-items-list.jFiler-items-grid {
  margin-bottom: 0;
  width: 90%;
}

.bp-messages-wrap .jFiler-item .jFiler-item-container .jFiler-item-thumb img {
  width: 100%;
}

.bp-messages-wrap .jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb span.jFiler-icon-file {
  margin-top: 18px;
}

.bp-messages-wrap .jFiler-items {
  margin-top: 10px;
}

.bp-messages-wrap img.wp-smiley, .bp-messages-wrap img.emoji, .bp-messages-wrap .emojione {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
  top: initial !important;
  text-indent: initial !important;
  line-height: initial !important;
}

.amaran.user.message {
  background: rgba(0, 0, 0, 0.77);
  color: white;
  box-shadow: none;
  min-height: 70px;
  overflow: hidden;
  padding: 10px 10px;
  border-radius: 3px;
}

.amaran.user.message .icon {
  width: 50px;
  height: 50px;
}

.amaran.user.message .info {
  padding-left: 60px;
  padding-top: 0;
}

.amaran.user.message .info b {
  font-size: 14px;
  font-weight: bold;
  line-height: initial;
}

.amaran-close {
  text-align: center;
  width: 12px;
  height: 12px;
  top: 5px;
  right: 5px;
}

.threads-list-wrapper {
  position: relative;
}

.threads-list-wrapper.all-loaded .threads-list {
  padding-bottom: 0;
}

.threads-list-wrapper .loading-messages {
  top: auto;
  bottom: 10px;
}

.loading-messages {
  margin: 0 auto 0;
  width: 70px;
  text-align: center;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
}

.loading-messages > div {
  width: 10px;
  height: 10px;
  background-color: #8b8b8b;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loading-messages .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loading-messages .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.bp-better-messages-mini {
  position: fixed;
  bottom: 0;
  right: 70px;
  box-shadow: none !important;
  border: 0 !important;
  overflow: unset;
  z-index: 800;
  pointer-events: none;
  background: none !important;
}

.bp-better-messages-mini .chats {
  display: block;
}

.bp-better-messages-mini .chats .chat {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  margin: 0 10px;
  width: var(--bm-mini-chats-width);
  max-width: 100%;
  background: white;
  box-shadow: 0 0 3px 1px #d7d8db;
  pointer-events: auto;
  bottom: 0;
  transition: bottom 0.5s linear;
}

.bp-better-messages-mini .chats .chat:not(.open) > * {
  display: none !important;
}

.bp-better-messages-mini .chats .chat:not(.open) span.writing {
  display: none !important;
}

.bp-better-messages-mini .chats .chat .head {
  position: relative;
  z-index: 1;
  padding: 5px 10px 5px 15px;
  height: 35px;
  border-radius: 0;
  background: #fafbfc;
  cursor: pointer;
  border-bottom: 1px solid #dbdbdb;
  display: flex !important;
  font-size: 13px;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.bp-better-messages-mini .chats .chat .head .title {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bp-better-messages-mini .chats .chat .head .title strong {
  font-weight: normal;
}

.bp-better-messages-mini .chats .chat .head.blink {
  background: #f1f1f1;
}

.bp-better-messages-mini .chats .chat .head .unread-count,
.bp-better-messages-list .tabs > div[data-tab=messages] .unread-count {
  background: var(--main-bm-color);
  border-radius: 100%;
  color: white;
  font-size: 10px;
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  vertical-align: middle;
  text-align: center;
  margin-right: 6px;
}

.bp-better-messages-mini .chats .chat .head .unread-count:after,
.bp-better-messages-list .tabs > div[data-tab=messages] .unread-count:after,
.bp-better-messages-mini .chats .chat .head .unread-count:before,
.bp-better-messages-list .tabs > div[data-tab=messages] .unread-count:before {
  display: none;
}

.bp-better-messages-mini .chats .chat .head .unread-count.count-0 {
  display: none;
}

.bp-better-messages-mini .chats .chat .head .controls {
  line-height: 0;
  text-align: right;
  margin-left: auto;
}

.bp-better-messages-mini .chats .chat .head .controls > span,
.bp-better-messages-mini .chats .chat .head .controls > a {
  position: relative;
  margin-left: 7px;
  font-size: 14px;
  vertical-align: middle;
  float: none;
  min-height: 0;
  min-width: 0;
  line-height: 14px;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  color: var(--main-bm-color);
  opacity: 1;
  display: inline-block;
}

.bp-better-messages-mini .chats .chat .head .controls > div {
  margin-left: 7px;
  font-size: 14px;
  vertical-align: middle;
  float: none;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  color: var(--main-bm-color);
  opacity: 1;
  display: inline-block;
}

.bp-better-messages-mini .chats .chat .head .controls div > i,
.bp-better-messages-mini .chats .chat .head .controls span > i,
.bp-better-messages-mini .chats .chat .head .controls a > i {
  vertical-align: top;
}

.bp-better-messages-mini .chats .chat .head .controls .bpbm-dropdown-menu div > i,
.bp-better-messages-mini .chats .chat .head .controls .bpbm-dropdown-menu span > i,
.bp-better-messages-mini .chats .chat .head .controls .bpbm-dropdown-menu a > i {
  vertical-align: middle;
}

.bp-better-messages-mini .chats .chat .head .controls span.close {
  margin-left: 5px;
}

.bp-better-messages-mini .chats .chat .head .controls .video-call i {
  font-size: 12px;
  line-height: 14px;
}

.bp-better-messages-mini .chats .chat .head .controls .audio-call i {
  font-size: 11.5px;
  line-height: 14px;
}

.bp-better-messages-mini .chats .chat .head .controls span.open i {
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.bp-better-messages-mini .chats .chat .reply .bp-emojionearea {
  padding-left: 7px;
}
.bp-better-messages-mini .chats .chat .reply .bp-emojionearea .bp-emojionearea-button {
  margin-right: 0 !important;
}
.bp-better-messages-mini .chats .chat .reply .bp-emojionearea .bp-emojionearea-editor {
  max-height: 90px;
  overflow: hidden;
  padding-left: 5px;
}

.bp-better-messages-mini .chats .chat.enter-disabled .message,
.bp-better-messages-mini .chats .chat.voice-enabled .message {
  max-width: calc(100% - 50px);
}
.bp-better-messages-mini .chats .chat.enter-disabled .reply,
.bp-better-messages-mini .chats .chat.voice-enabled .reply {
  padding-right: 10px;
}
.bp-better-messages-mini .chats .chat.enter-disabled .reply .send,
.bp-better-messages-mini .chats .chat.voice-enabled .reply .send {
  display: block;
  width: 50px;
}
.bp-better-messages-mini .chats .chat.enter-disabled[data-thread="0"] .message,
.bp-better-messages-mini .chats .chat.voice-enabled[data-thread="0"] .message {
  max-width: 100%;
}

.bp-better-messages-mini .chats .chat .reply.voice-message-recording .message {
  display: none;
}
.bp-better-messages-mini .chats .chat .reply.voice-message-recording .send {
  width: 100%;
  text-align: center;
}

.bp-messages-wrap.bp-better-messages-list .messages .scroller {
  max-height: 351px !important;
  height: 9999px;
}

/** +40px **/
.bp-messages-wrap.bp-better-messages-list .messages.no-chat-footer .scroller {
  max-height: 351px !important;
}

.bp-messages-wrap.bp-better-messages-list .friends .scroller,
.bp-messages-wrap.bp-better-messages-list .um-friends .scroller,
.bp-messages-wrap.bp-better-messages-list .ps-friends .scroller,
.bp-messages-wrap.bp-better-messages-list .bpbm-groups .scroller,
.bp-messages-wrap.bp-better-messages-list .ps-groups .scroller,
.bp-messages-wrap.bp-better-messages-list .bmum-groups .scroller {
  max-height: 351px !important;
  height: 9999px;
}

.bp-messages-wrap.bp-better-messages-mini .bp-messages-threads-wrapper {
  max-height: 395px;
}

.bp-messages-wrap.bp-better-messages-mini .reply .message {
  width: 100%;
}

.bp-messages-wrap.bp-better-messages-mini .reply .send {
  display: none;
}

#bp-better-messages-mini-mobile-open {
  display: none;
}

#bp-better-messages-mini-mobile-open .count {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 12px;
  line-height: 14px;
  padding: 2px 4px;
  height: 17px;
  background: red;
  border-radius: 2px;
  box-sizing: border-box;
}

#bp-better-messages-mini-mobile-container,
#bp-better-messages-mobile-view-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  background: white;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
#bp-better-messages-mini-mobile-container .chat-footer,
#bp-better-messages-mobile-view-container .chat-footer {
  height: calc(44px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
}

@media screen and (max-width: 800px) {
  .bp-messages-wrap .chat-header .mini-chat,
.bp-better-messages-mini,
.bp-better-messages-list {
    display: none;
  }
  #bp-better-messages-mini-mobile-open {
    display: block;
    position: fixed;
    background: var(--main-bm-color);
    color: white;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
    border-radius: 2px;
    box-shadow: none;
    border: none;
    z-index: 10;
  }
  #bp-better-messages-mini-mobile-open i {
    line-height: 50px;
  }
  #bp-better-messages-mini-mobile-open.bpbm-mobile-open-left {
    left: 20px;
    right: auto;
  }
}
.bp-messages-wrap i {
  font-size: inherit;
}

.bp-messages-wrap .pic {
  width: 50px;
  height: 50px;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.bp-messages-wrap .pic img {
  height: 50px;
  width: 50px;
}

.bp-messages-wrap .pic.group img {
  height: 23px;
}

.bp-messages-wrap .chat-header .avatar,
.bp-messages-wrap .chat-header .useravatar {
  width: 20px;
  height: 20px;
  vertical-align: sub;
  margin-right: 5px !important;
  display: inline-block;
  box-shadow: none;
}

.bp-messages-wrap .chat-header .bbpm-avatar .avatar {
  display: block;
}

/* @media screen and (max-width: 700px) { */
.bp-messages-wrap.bp-messages-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: white;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  margin: 0 !important;
  max-width: 100% !important;
}

.bp-messages-wrap.bp-messages-mobile .chat-header .mobileClose {
  display: inline-block;
  float: right;
  width: 45px;
  text-align: center;
}

.bp-messages-wrap .chat-header .expandingButtons {
  display: inline-block;
  /* position: relative; */
  float: right;
  width: 45px;
  text-align: center;
  cursor: pointer;
  font-size: 17px;
}

.bp-messages-wrap .expandingButtons .bpbm-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 1000;
  /* display: none; */
  min-width: 10rem;
  padding: 0.2rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgb(241, 241, 241);
  border-radius: 0;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.bp-messages-wrap .expandingButtons.expandingButtonsOpen .bpbm-dropdown-menu {
  display: block;
}

.bp-messages-wrap.bp-better-messages-mini .expandingButtons.expandingButtonsOpen .bpbm-dropdown-menu {
  right: 12px;
}

.bp-messages-wrap .expandingButtons .bpbm-dropdown-menu .bpbm-dropdown-item {
  display: block;
  width: 100%;
  padding: 0 10px;
  clear: both;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  height: 40px;
  line-height: 40px;
  color: #212529;
  text-align: left;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  box-sizing: border-box;
}

.bp-messages-wrap .expandingButtons .bpbm-dropdown-menu .bpbm-dropdown-item i {
  margin-right: 5px;
  line-height: 40px;
  width: 30px;
  text-align: center;
}

.bp-messages-wrap .expandingButtons .bpbm-dropdown-menu .bpbm-dropdown-item:hover {
  background: var(--main-bm-color-003);
}

.bp-messages-wrap.bp-messages-mobile .chat-header .bpbm-search {
  display: inline-block;
  float: none;
}

.bp-messages-wrap.bp-messages-mobile .chat-header .bpbm-search a {
  height: 44px;
  line-height: 44px;
}

.bp-messages-wrap.bp-messages-mobile .reply form {
  display: block;
}

.bp-messages-wrap .new-message .message {
  position: relative;
  background: none;
  padding: 0;
  margin: 0;
}

.bp-messages-wrap.bp-messages-mobile .reply .message,
.bp-messages-wrap.bp-messages-mobile .new-message .message {
  float: none;
  width: 100%;
}

.bp-messages-wrap.bp-messages-mobile .reply .send {
  float: none;
  width: 100%;
  padding: 0;
}

.bp-messages-wrap.bp-messages-mobile .reply .send button[type=submit] {
  background: var(--main-bm-color) !important;
  color: white;
  width: 100%;
  display: block;
  max-width: 100%;
  margin-top: 5px;
  font-size: 16px;
  line-height: 38px;
  min-height: 40px;
}

.bp-messages-wrap .reply .send button {
  color: var(--main-bm-color) !important;
}

.bp-messages-wrap.bp-messages-mobile .reply .send button,
.bp-messages-wrap.bp-messages-mobile .reply .send button.bpbm-record-voice-button {
  color: white !important;
  background-color: var(--main-bm-color) !important;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .pic.group {
  width: 55px;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .pic {
  padding-left: 15px !important;
  padding-right: 5px !important;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .pic {
  padding-left: 15px !important;
  padding-right: 15px !important;
  opacity: 1;
  position: relative;
  z-index: 1;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread:not(.unread) .time {
  display: none;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .time span:not(.unread-count, .bpbm-thread-muted) {
  display: none;
}

.bp-messages-wrap.bp-messages-mobile .threads-list .thread .time {
  padding-left: 5px;
  padding-right: 15px;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .content .info {
  padding-left: 5px;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .content .messages-list > li {
  padding-left: 5px;
  padding-right: 18px;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .content .messages-list > li .favorite {
  right: 3px !important;
}

.bp-messages-wrap.bp-messages-mobile .list .messages-stack .content .messages-list > li .status {
  right: 0 !important;
}

.bp-messages-wrap.bp-messages-mobile:not(.bpbm-template-modern) .list .messages-stack .content .messages-list > li:hover .status {
  display: none;
}

/*}*/
.bp-better-messages-list {
  position: fixed;
  bottom: 0;
  right: var(--bm-mini-widgets-offset);
  border: 0 !important;
  overflow: unset;
  z-index: 800;
  width: var(--bm-mini-widgets-width);
  max-width: 100%;
  background: white;
  box-shadow: 0 0 3px 1px #d7d8db;
}

.bp-better-messages-list + .bp-better-messages-mini {
  right: var(--bm-mini-chats-offset);
}

.bp-better-messages-list .tabs {
  padding: 0;
  margin: 0 !important;
  line-height: 35px;
  height: 35px;
  border-radius: 5px 5px 0 0;
  background: #fafbfc;
  border-bottom: 1px solid #dbdbdb;
  font-size: 13px;
  box-sizing: content-box !important;
  /* box-shadow: 0 0 3px 1px #d7d8db; */
  display: flex;
}

.bp-better-messages-list .tabs > div {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
}

.bp-better-messages-list .tabs > div.active {
  background: #eeeff1;
}

.bp-better-messages-list .tabs > div[data-tab=bpbm-close] {
  display: none;
  width: 40px;
  min-width: 40px;
  padding: 0 5px 0 5px;
}

.bp-better-messages-list .tabs-content > div {
  display: none;
}

.bp-better-messages-list .tabs-content > div.active {
  display: block;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .pic img {
  width: 29px;
  height: 29px;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .pic.group > * {
  width: 12px !important;
  height: 12px !important;
  vertical-align: top;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .pic.group > * .avatar {
  width: 12px !important;
  height: 12px !important;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .pic {
  width: 25px;
  padding-left: 15px;
  padding-right: 10px;
  height: 25px;
  opacity: initial;
  position: relative;
  z-index: 1;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .pic.group {
  width: 30px;
  vertical-align: top;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .time {
  padding-left: 0;
  padding-top: 20px;
  padding-right: 10px;
  width: 50px;
  text-align: left;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .time .unread-count {
  padding-left: 0;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .time .delete {
  font-size: 10px;
}

.bp-messages-wrap.bp-better-messages-list .threads-list .thread .time .time-wrapper {
  display: none;
}

.bp-messages-wrap.bp-better-messages-list .chat-header {
  border-top: 1px solid #f1f1f1;
  border-bottom: none;
  height: 40px;
  line-height: 37px;
}

.bp-messages-wrap .threads-list .thread .loading {
  margin: 0 auto 0;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: white;
  z-index: 2;
}

.bp-messages-wrap .threads-list .thread.loading .loading {
  display: block;
}

.bp-messages-wrap .threads-list .thread .loading > div {
  width: 10px;
  height: 10px;
  background-color: #8b8b8b;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.bp-messages-wrap .threads-list .thread .loading .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.bp-messages-wrap .threads-list .thread .loading .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.bp-messages-wrap .list .empty-thread {
  text-align: center;
  margin: 20px 0 40px;
}

.bp-messages-wrap .list .empty-thread i {
  display: block;
  font-size: 50px !important;
  color: #9d9d9d;
}

.bp-messages-wrap .list .empty-thread span {
  display: block;
  margin-top: 20px;
  color: gray;
}

.bp-messages-user-list {
  position: relative;
  display: table;
  width: 100%;
  padding: 0;
  background: white;
}
.bp-messages-user-list .bpbm-loader-icon {
  text-align: center;
  font-size: 24px;
  margin-top: 40px;
}

.bm-load-more-participants-div {
  display: block;
  text-align: center;
  padding: 0 0 10px;
}
.bm-load-more-participants-div .bm-load-more-participants {
  display: inline-block;
  padding: 5px 15px;
  background: var(--main-bm-color);
  color: var(--main-bm-bg-color);
  white-space: nowrap;
  cursor: pointer;
}

.bp-messages-user-list .bp-messages-user-list-loader {
  text-align: left;
  font-size: 28px;
  padding: 10px !important;
}

.bp-messages-user-list .user {
  display: table-row;
  background: none !important;
  cursor: default !important;
}

.bp-messages-user-list .user:hover {
  background: #fafbfc;
  cursor: pointer;
}

.bp-messages-user-list .user > * {
  padding-top: 5px;
  padding-bottom: 5px;
}

.bp-messages-user-list .user:first-child > * {
  padding-top: 10px;
}

.bp-messages-user-list .user:last-child > * {
  padding-bottom: 10px;
}

.bp-messages-user-list .user .pic {
  display: table-cell;
  width: 30px;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  box-sizing: content-box !important;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.bp-messages-user-list .user .pic img {
  width: 30px;
  height: 30px;
}

.bp-messages-user-list .user .name {
  display: table-cell;
  vertical-align: middle;
  font-size: 13px;
  word-break: break-word;
}

.bp-messages-user-list .user .actions {
  vertical-align: middle;
  display: table-cell;
  width: 1px;
  padding: 5px 15px;
  white-space: nowrap;
}

.bp-messages-user-list .user .actions > a {
  padding: 10px 3px;
  display: inline-block;
  color: #444444;
  font-size: 12px;
}

.bp-messages-user-list .user .loading {
  margin: 0 auto 0;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: white;
  z-index: 2;
}

.bp-messages-user-list .user.loading .loading {
  display: block;
}

.bp-messages-user-list .user .loading > div {
  width: 10px;
  height: 10px;
  background-color: #8b8b8b;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.bp-messages-user-list .user .loading .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.bp-messages-user-list .user .loading .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.bp-messages-group-list {
  position: relative;
  display: table;
  width: 100%;
  padding: 0;
  background: white;
}
.bp-messages-group-list .bpbm-loader-icon {
  text-align: center;
  font-size: 24px;
  margin-top: 40px;
}

.bp-messages-group-list .group {
  display: table-row;
  background: none !important;
  cursor: default !important;
}

.bp-messages-group-list .group:hover {
  background: #fafbfc;
  cursor: pointer;
}

.bp-messages-group-list .group > * {
  padding-top: 5px;
  padding-bottom: 5px;
}

.bp-messages-group-list .group:first-child > * {
  padding-top: 10px;
}

.bp-messages-group-list .group:last-child > * {
  padding-bottom: 10px;
}

.bp-messages-group-list .group .pic {
  display: table-cell;
  width: 30px;
  height: 30px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  box-sizing: content-box !important;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.bp-messages-group-list .group .pic img {
  width: 30px;
  height: 30px;
}

.bp-messages-group-list .group .name {
  display: table-cell;
  vertical-align: middle;
  font-size: 13px;
  word-break: break-word;
}

.bp-messages-group-list .group .actions {
  vertical-align: middle;
  display: table-cell;
  width: 1px;
  padding: 5px 15px;
  white-space: nowrap;
}

.bp-messages-group-list .group .actions > a {
  padding: 10px 3px;
  display: inline-block;
  color: #444444;
  font-size: 12px;
}

.bp-messages-group-list .group .loading {
  margin: 0 auto 0;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  text-align: center;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: white;
  z-index: 2;
}

.bp-messages-group-list .group.loading .loading {
  display: block;
}

.bp-messages-group-list .group .loading > div {
  width: 10px;
  height: 10px;
  background-color: #8b8b8b;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.bp-messages-group-list .group .loading .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.bp-messages-group-list .group .loading .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.bp-messages-wrap .chat-controls {
  position: absolute;
  background: #fafbfc;
  padding: 9px 15px;
  border-bottom: 1px solid #f1f1f1;
  display: none;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  bottom: 0;
}

.bp-messages-wrap .chat-controls .edit-message {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 15px;
  width: 100%;
  height: 100%;
  background: inherit;
}

.bp-messages-wrap .chat-controls .edit-message .bpbm-edit-cancel {
  float: right;
}

.bp-messages-wrap .chat-controls a {
  text-decoration: none;
  background: #427a9b;
  color: white !important;
  font-size: 11px;
  padding: 2px 10px;
  vertical-align: top;
  display: inline-block;
  border-radius: 2px;
  line-height: 20px;
  user-select: none;
}

.bp-messages-wrap .chat-controls a .fas {
  color: white;
  line-height: 20px;
}

.bp-messages-wrap .chat-controls a.bpbm-fave {
  background: #dc9f19;
}

.bp-messages-wrap .chat-controls a.bpbm-delete {
  float: right;
  background: #ad1f1f !important;
  color: white !important;
  text-decoration: none !important;
}

.bp-messages-wrap .chat-controls a.bpbm-delete i {
  color: white !important;
}

.bp-messages-wrap.bp-better-messages-mini .chat-controls a {
  padding-top: 4px;
  padding-bottom: 4px;
}

.bp-messages-wrap .chat-controls a i {
  font-size: 9px;
  vertical-align: middle;
}

.bp-messages-wrap .participants-panel {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: auto;
  padding: 10px;
  background: var(--main-bm-bg-color);
}

.bp-messages-wrap .participants-panel h4 {
  margin: 0 !important;
  padding: 10px 10px !important;
}

.bp-messages-wrap .participants-panel .add-user {
  padding: 5px 10px 10px;
}

.bp-messages-wrap .participants-panel .add-user p {
  margin: 0 0 5px;
  font-weight: bold;
}

.bp-messages-wrap .participants-panel .add-user > button {
  margin-top: 8px;
}

.bp-messages-wrap .participants-panel.open {
  display: block;
}

.bp-messages-wrap .participants-panel.open + .scroller,
.bp-messages-wrap .participants-panel.open + .scroller + .writing + .reply {
  display: none;
}

.bp-messages-wrap .add-user-panel {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: auto;
  padding: 20px 10px;
  background: var(--main-bm-bg-color);
}

.bp-messages-wrap .add-user-panel.open {
  display: block;
}

.bp-messages-wrap .add-user-panel h4 {
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.bp-messages-wrap .add-user-panel .buttons {
  margin-top: 20px;
}

.bp-messages-wrap .add-user-panel .buttons button {
  margin-right: 10px;
  cursor: pointer;
  display: inline-block;
  color: white;
  background: var(--main-bm-color);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  user-select: none;
  vertical-align: top;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 #cccccc;
  font-size: 14px !important;
  line-height: 17px;
}

.bp-messages-wrap.bp-better-messages-mini .list .messages-stack .content .messages-list > li .files .file {
  font-size: 11px;
}

.bp-messages-mobile-tap {
  display: none;
}

.bp-messages-wrap.mobile-ready:not(.bp-messages-mobile) .bp-messages-mobile-tap {
  display: block;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.6196078431);
  box-sizing: border-box;
  color: #216f95;
  z-index: 10;
}

body.bp-messages-mobile #wpadminbar {
  display: none;
}

/**
* Youzer
*/
.bpbm-youzify-btn a {
  color: #898989;
  border: 1px solid #eee;
  background-color: transparent;
  font-size: 13px;
  height: initial;
  min-width: 110px;
  font-weight: 600;
  line-height: 22px;
  padding: 12px 20px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}
.bpbm-youzify-btn a i {
  font-weight: 600;
  margin-right: 8px;
  font-size: 14px;
}

body.bp-messages-mobile #yz-profile-header,
body.bp-messages-mobile .yz-sidebar-column,
body.bp-messages-mobile footer,
body.bp-messages-mobile #yz-profile-navmenu {
  display: none !important;
}

.bp-messages-wrap .bpbm-user-option-title {
  margin: 0 0 10px !important;
  font-size: 18px;
}

.bp-messages-wrap .bpbm-user-options .BPBMenablePushNotificationsControls {
  margin: 10px 0 0;
}

.bp-messages-wrap .bpbm-user-options {
  padding: 20px;
  font-size: 16px;
}
.bp-messages-wrap .bpbm-user-options button {
  cursor: pointer;
  display: inline-block;
  color: white;
  background: var(--main-bm-color);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  user-select: none;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 #cccccc;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-option {
  margin: 0 0 10px;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-option-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-option-toggle label {
  display: inline;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-option-toggle input[type=checkbox] {
  display: none;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-option-description {
  color: #616161;
  font-size: 90%;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist {
  margin: 10px 0;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist table {
  border: none;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist table td {
  border: 1px solid #e4e4e4;
  padding: 5px 10px;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist table + .bpbm-user-blacklist-empty {
  display: none;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist .bpbm-user-blacklist-empty {
  text-align: center;
  padding: 30px 0;
  border: 1px solid #e4e4e4;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist .bpbm-user-blacklist-empty i {
  display: block;
  font-size: 36px;
  margin: 10px 0;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist ul {
  list-style: none;
  padding: 0px 10px;
  margin: 5px 0 5px;
  border: 1px solid #dedfe1;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-blacklist ul li {
  list-style: none;
  border: 1px solid #dedfe1;
  padding: 2px 10px;
  margin: 10px 0;
}

.bp-messages-wrap .bpbm-user-options {
  padding: 20px;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-thread-options {
  padding: 0 10px;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-thread-options .bpbm-thread-option {
  margin: 0 0 10px;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-thread-options .bpbm-thread-option-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-thread-options .bpbm-thread-option-toggle label {
  display: inline;
  font-size: 16px;
}

.bp-messages-wrap .bpbm-thread-options .bpbm-thread-option-toggle input[type=checkbox] {
  margin-right: 5px;
}

.bp-messages-wrap .bpbm-thread-options .bpbm-thread-option-toggle input[type=text] {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
}

.bp-messages-wrap .bpbm-thread-options .bpbm-thread-option-description {
  color: #616161;
  font-size: 90%;
}

.bp-better-messages-restrict-send-message {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

.bp-messages-wrap .bp-messages-video-container {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 200px;
  z-index: 5;
}
.bp-messages-wrap .bp-messages-video-container .bm-video-containvideo, .bp-messages-wrap .bp-messages-video-container .bm-video-contain video {
  object-fit: contain !important;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-video {
  background: #d4d4d4;
  width: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  margin: 0;
  position: relative;
  height: 100%;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-video > video {
  width: 100%;
  height: 100%;
  /* max-height: 550px; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  padding: 0;
  display: block;
  object-fit: contain;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video {
  height: auto;
  position: absolute;
  max-width: 50%;
  max-height: 50%;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  z-index: 9;
  min-width: 50px;
  min-height: 50px;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video > video {
  margin: 0;
  padding: 0;
  max-width: 100%;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video-2 {
  height: auto;
  position: absolute;
  max-width: 50%;
  max-height: 50%;
  bottom: 10px;
  left: 10px;
  overflow: hidden;
  z-index: 9;
  min-width: 50px;
  min-height: 50px;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video-2 .bm-switch-videos {
  color: white;
  position: absolute;
  bottom: 2px;
  font-size: 10px;
  left: 2px;
  padding: 0;
  display: block;
  z-index: 3;
  cursor: pointer;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video-2 .bm-switch-videos > i {
  background: rgba(0, 0, 0, 0.4196078431);
  display: inline-block;
  padding: 4px;
  border-radius: 100%;
  cursor: pointer;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video-2 > video {
  margin: 0;
  padding: 0;
  max-width: 100%;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video-3 {
  position: absolute;
  height: auto;
  max-width: 50%;
  max-height: 50%;
  top: 10px;
  right: 10px;
  overflow: hidden;
  z-index: 9;
  min-width: 50px;
  min-height: 50px;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-small-video-3 > video {
  margin: 0;
  padding: 0;
  max-width: 100%;
  vertical-align: middle;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.bp-messages-wrap .bp-messages-audio-container {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 200px;
  z-index: 5;
}

.bp-messages-group-call-controls-v2 {
  position: absolute;
  z-index: 2;
  background: #fafbfc;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  border-top: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bp-messages-group-call-controls-v2 .bm-connection-control .bm-connection-quality {
  display: block !important;
}
.bp-messages-group-call-controls-v2 .bp-messages-group-call-controls-buttons > span {
  position: relative;
  display: inline-block;
  padding: 0;
  height: 34px;
  width: 34px;
  font-size: 13px;
  line-height: 33px;
  color: black;
  background: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  border: 1px solid #e3e3e3;
  vertical-align: middle;
}
.bp-messages-group-call-controls-v2 .bp-messages-group-call-controls-buttons .bpbm-exit-room {
  background: red;
  color: white;
}
.bp-messages-group-call-controls-v2 .bpbm-call-settings {
  height: auto;
  margin-bottom: 10px;
}

.bp-messages-group-call-input-video-inner .bp-messages-group-call-controls {
  position: relative;
  line-height: 28px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 2;
}
.bp-messages-group-call-input-video-inner .bp-messages-group-call-controls .bpbm-call-settings {
  height: auto;
  margin-bottom: 10px;
}
.bp-messages-group-call-input-video-inner .bp-messages-group-call-controls .bpbm-call-in-progress > span {
  height: 34px;
  width: 34px;
  font-size: 16px;
  line-height: 34px;
}

.bp-messages-private-call .bp-messages-call-controls {
  transition: bottom 0.5s ease-in-out;
}
.bp-messages-private-call .bp-messages-call-controls.show-on-hover {
  bottom: -999px;
}
.bp-messages-private-call .bp-messages-call-controls.show-on-tap {
  bottom: -999px;
}
.bp-messages-private-call:hover .bp-messages-call-controls.show-on-hover {
  bottom: 0;
}
.bp-messages-private-call.bpbm-tapped .bp-messages-call-controls.show-on-tap {
  bottom: 0;
}

.bp-messages-call-controls .bpbm-call-buttons > * {
  pointer-events: auto;
}

.bp-messages-group-call-controls > * {
  pointer-events: auto;
}

.bp-messages-call-controls,
.bp-messages-group-call-controls {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 10;
  text-align: center;
  line-height: 82px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.bp-messages-call-controls .bpbm-call-buttons > *,
.bp-messages-group-call-controls .bpbm-call-buttons > * {
  pointer-events: auto;
}
.bp-messages-call-controls .bpbm-answer,
.bp-messages-group-call-controls .bpbm-answer {
  background: green;
  display: inline-block;
  padding: 12px 12px;
  font-size: 20px;
  line-height: 19px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  vertical-align: middle;
}
.bp-messages-call-controls .bpbm-reject,
.bp-messages-group-call-controls .bpbm-reject {
  background: red;
  display: inline-block;
  padding: 12px 12px;
  font-size: 20px;
  line-height: 19px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  vertical-align: middle;
}
.bp-messages-call-controls .bpbm-reject i,
.bp-messages-group-call-controls .bpbm-reject i {
  transform: rotate(135deg);
}
.bp-messages-call-controls .bpbm-cancel,
.bp-messages-group-call-controls .bpbm-cancel {
  background: red;
  display: inline-block;
  padding: 12px 12px;
  font-size: 20px;
  line-height: 19px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  vertical-align: middle;
}
.bp-messages-call-controls .bpbm-disable-mic,
.bp-messages-call-controls .bpbm-enable-mic,
.bp-messages-call-controls .bpbm-pic-in-pic,
.bp-messages-group-call-controls .bpbm-disable-mic,
.bp-messages-group-call-controls .bpbm-enable-mic,
.bp-messages-group-call-controls .bpbm-pic-in-pic {
  position: relative;
  background: white;
  display: inline-block;
  padding: 0;
  height: 44px;
  width: 44px;
  font-size: 20px;
  line-height: 44px;
  color: black;
  box-sizing: border-box;
  border-radius: 53px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  vertical-align: middle;
}
.bp-messages-call-controls .bp-messages-full-screen-call,
.bp-messages-group-call-controls .bp-messages-full-screen-call {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
.bp-messages-call-controls .bpbm-configure-call,
.bp-messages-call-controls .bpbm-switch-full-screen,
.bp-messages-call-controls .bpbm-switch-share-screen,
.bp-messages-call-controls .bpbm-fs-enable,
.bp-messages-call-controls .bpbm-fs-disable,
.bp-messages-call-controls .bpbm-switch-camera-video,
.bp-messages-call-controls .bpbm-disable-video,
.bp-messages-call-controls .bpbm-enable-video,
.bp-messages-group-call-controls .bpbm-configure-call,
.bp-messages-group-call-controls .bpbm-switch-full-screen,
.bp-messages-group-call-controls .bpbm-switch-share-screen,
.bp-messages-group-call-controls .bpbm-fs-enable,
.bp-messages-group-call-controls .bpbm-fs-disable,
.bp-messages-group-call-controls .bpbm-switch-camera-video,
.bp-messages-group-call-controls .bpbm-disable-video,
.bp-messages-group-call-controls .bpbm-enable-video {
  background: white;
  display: inline-block;
  padding: 0;
  height: 44px;
  width: 44px;
  font-size: 20px;
  line-height: 44px;
  color: black;
  box-sizing: border-box;
  border-radius: 53px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
}
.bp-messages-call-controls .bpbm-cancel i,
.bp-messages-group-call-controls .bpbm-cancel i {
  transform: rotate(135deg);
}
.bp-messages-call-controls .bpbm-call-end,
.bp-messages-group-call-controls .bpbm-call-end {
  background: red;
  display: inline-block;
  padding: 0;
  height: 44px;
  width: 44px;
  font-size: 20px;
  line-height: 44px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  vertical-align: middle;
}
.bp-messages-call-controls .bpbm-call-end i,
.bp-messages-group-call-controls .bpbm-call-end i {
  transform: rotate(135deg);
}

.bpbm-call-settings {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  line-height: initial;
  height: 60px;
  color: black;
}
.bpbm-call-settings > .bpbm-call-setting {
  width: 30%;
  max-width: 300px;
  padding: 0 1%;
  flex: 1 1 0px;
}
.bpbm-call-settings > .bpbm-call-setting label {
  display: inline-block;
  margin-bottom: 5px;
  color: white;
  background: rgba(0, 0, 0, 0.4588235294);
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 15px;
}

.bpbm-switch-camera-select-wrap,
.bpbm-switch-audio-select-wrap,
.bpbm-switch-mic-select-wrap {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  max-width: 100%;
  border: 1px solid #777;
  border-radius: 0.25em;
  padding: 1px 8px 1px 8px;
  font-size: 12px;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
  pointer-events: auto;
}
.bpbm-switch-camera-select-wrap select, .bpbm-switch-camera-select-wrap::after,
.bpbm-switch-audio-select-wrap select,
.bpbm-switch-audio-select-wrap::after,
.bpbm-switch-mic-select-wrap select,
.bpbm-switch-mic-select-wrap::after {
  grid-area: select;
}
.bpbm-switch-camera-select-wrap:not(.select--multiple)::after,
.bpbm-switch-audio-select-wrap:not(.select--multiple)::after,
.bpbm-switch-mic-select-wrap:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: #777;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}
.bpbm-switch-camera-select-wrap select,
.bpbm-switch-audio-select-wrap select,
.bpbm-switch-mic-select-wrap select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0.8em 1em 0.8em 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
  background: none;
}
.bpbm-switch-camera-select-wrap select::-ms-expand,
.bpbm-switch-audio-select-wrap select::-ms-expand,
.bpbm-switch-mic-select-wrap select::-ms-expand {
  display: none;
}

.bp-messages-wrap.bp-messages-popup .bpbm-answer {
  background: green;
  display: inline-block;
  padding: 0;
  height: 35px;
  width: 35px;
  font-size: 15px;
  line-height: 35px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  text-align: center;
}

.bp-messages-wrap.bp-messages-popup .bpbm-reject {
  background: red;
  display: inline-block;
  padding: 0;
  height: 35px;
  width: 35px;
  font-size: 15px;
  line-height: 35px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  text-transform: uppercase;
  margin-left: 5px;
  cursor: pointer;
  text-align: center;
}

.bp-messages-wrap.bp-messages-popup .bpbm-answer i,
.bp-messages-wrap.bp-messages-popup .bpbm-reject i {
  vertical-align: middle;
}

.bp-messages-wrap.bp-messages-popup .bpbm-reject i {
  transform: rotate(135deg);
}

.bp-messages-wrap.bp-messages-popup {
  box-shadow: none;
  background: none;
  border: none;
  clear: none;
}

.bp-messages-call-popup {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
}

.bp-messages-wrap.bp-messages-popup .bpbm-call-in {
  white-space: nowrap;
  text-align: right;
}

.bp-messages-call-popup > * {
  vertical-align: middle;
}

.bp-messages-call-popup > .caller-name {
  padding: 0 5px;
  font-size: 12px;
  line-height: 14px;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder {
  background: gray;
  width: 100%;
  height: 100%;
  display: block;
  min-height: 400px;
  padding: 0;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-no-access-message {
  color: white;
  text-align: center;
  margin: 30px auto 10px;
  background: #bd1616;
  padding: 10px 10px 15px;
  border-radius: 10px;
  max-width: 90%;
  width: 100%;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-no-access-message .bp-messages-placeholder-no-access-message-icon {
  font-size: 30px;
}
.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-no-access-message .bp-messages-placeholder-no-access-message-text {
  margin-top: 5px;
  font-size: 18px;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-call-animation {
  background: #fff;
  width: 100px;
  height: 100px;
  position: relative;
  margin: 30px auto 0;
  border-radius: 100% !important;
  /* border: solid 5px #fff; */
  animation: bp-messages-call-play 2s ease infinite;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-call-animation.bp-messages-animation-pause {
  animation: none;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-call-animation img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-message {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 20px;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-messages-wrap .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder {
  background: gray;
  width: 100%;
  height: 100%;
  display: block;
  min-height: 400px;
  padding: 0;
  overflow: hidden;
  margin: 0;
  position: relative;
}
.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder .bp-messages-placeholder-no-access-message {
  display: none;
  color: white;
  text-align: center;
  margin: 30px auto 10px;
  background: #bd1616;
  padding: 10px 10px 15px;
  border-radius: 10px;
  max-width: 90%;
  width: 100%;
}
.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder .bp-messages-placeholder-no-access-message .bp-messages-placeholder-no-access-message-icon {
  font-size: 30px;
}
.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder .bp-messages-placeholder-no-access-message .bp-messages-placeholder-no-access-message-text {
  margin-top: 5px;
  font-size: 18px;
}

.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder .bp-messages-call-animation {
  background: #fff;
  width: 100px;
  height: 100px;
  position: relative;
  margin: 30px auto 0;
  border-radius: 100% !important;
  /* border: solid 5px #fff; */
  animation: bp-messages-call-play 2s ease infinite;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder .bp-messages-call-animation img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.bp-messages-wrap .bp-messages-audio-container .bp-messages-main-placeholder .bp-messages-placeholder-message {
  position: relative;
  text-align: center;
  color: white;
  margin-top: 20px;
}

@keyframes bp-messages-call-play {
  0% {
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.4);
  }
  25% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4), 0 0 0 20px rgba(255, 255, 255, 0.2);
  }
  25% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.4), 0 0 0 30px rgba(255, 255, 255, 0.2);
  }
}
/**
    RTL Optimization
 */
html[dir=rtl] .bp-messages-wrap .chat-controls a.bpbm-delete,
html[dir=rtl] .bp-messages-wrap .chat-header .mass-message,
html[dir=rtl] .bp-messages-wrap .chat-header .bpbm-search,
html[dir=rtl] .bp-messages-wrap .chat-header .settings,
html[dir=rtl] .bp-messages-wrap .chat-header .participants,
html[dir=rtl] .bp-messages-wrap .chat-header .bpbm-mute-thread,
html[dir=rtl] .bp-messages-wrap .chat-header .bpbm-unmute-thread,
html[dir=rtl] .bp-messages-wrap .chat-header .bpbm-leave-thread,
html[dir=rtl] .bp-messages-wrap .chat-header .video-call,
html[dir=rtl] .bp-messages-wrap .chat-header .audio-call,
html[dir=rtl] .bp-messages-wrap .chat-header .mini-chat,
html[dir=rtl] .bp-messages-wrap .chat-header .expandingButtons,
html[dir=rtl] .bp-messages-wrap .reply .send {
  float: left;
}

html[dir=rtl] .bp-messages-wrap .chat-header .expandingButtons.expandingButtonsOpen .bpbm-dropdown-menu {
  right: auto;
  left: 0px;
}

html[dir=rtl] .bp-messages-wrap .chat-header .expandingButtons .bpbm-dropdown-menu .bpbm-dropdown-item {
  text-align: right;
}

html[dir=rtl] .bp-messages-wrap .chat-header > strong:first-child {
  padding-left: 0;
  padding-right: 20px;
}

html[dir=rtl] .bp-messages-wrap .threads-list .thread .time {
  padding-left: 30px;
  padding-right: 10px;
}

html[dir=rtl] .bp-messages-wrap .chat-header span.avatar {
  margin-right: 0 !important;
  margin-left: 5px !important;
}

html[dir=rtl] .bp-better-messages-mini .chats .chat .head {
  padding: 5px 15px 5px 10px;
}

html[dir=rtl] .bp-messages-wrap .bpbm-user-options .bpbm-user-option-toggle input[type=checkbox] {
  margin-right: 0;
  margin-left: 5px;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call.missed:before {
  float: right;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call-video.call-accepted:before,
html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call-video.call-incoming:before {
  float: right;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call-audio.call-accepted:before,
html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call-audio.call-incoming:before {
  float: right;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .info .time {
  margin: 0 5px 0 0;
}

html[dir=rtl] .bp-messages-wrap .reply .send {
  padding-left: 0;
  padding-right: 2%;
}

html[dir=rtl] .bp-messages-wrap .chat-header .back i {
  transform: rotate(180deg);
}

html[dir=rtl] .bp-better-messages-mini .chats .chat .head .controls {
  float: left;
}

html[dir=rtl] .bp-messages-wrap .taggle_list .taggle .bpbm-avatar {
  margin-right: 0;
  margin-left: 10px;
}

html[dir=rtl] .bp-messages-wrap .taggle_list li,
html[dir=rtl] .bp-messages-wrap .reply .message {
  float: right;
}

html[dir=rtl] .bp-messages-wrap .taggle_list {
  padding-right: 12px !important;
  padding-left: inherit;
}

html[dir=rtl] .bp-messages-wrap .new-message form > div input {
  padding-right: 12px !important;
}

html[dir=rtl] .bp-messages-wrap .bp-emojionearea .bp-emojionearea-editor {
  padding-left: 24px;
  padding-right: 0 !important;
}

html[dir=rtl] .bp-emojionearea, .bp-emojionearea.form-control {
  padding: 6px 12px 6px 24px;
}

html[dir=rtl] .bp-messages-wrap .reply .message.file-uploader-enabled .bp-emojionearea .bp-emojionearea-editor {
  /* padding: 6px 12px 6px 50px; */
}

html[dir=rtl] .bp-messages-wrap .message .upload-btn,
html[dir=rtl] .bp-messages-wrap .new-message .bp-emojionearea .upload-btn {
  right: auto;
  left: 28px;
}

html[dir=rtl] .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button {
  right: auto;
  left: 3px;
}

html[dir=rtl] .bp-messages-wrap .threads-list .thread .time .delete {
  left: 15px;
  right: auto;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .pic {
  padding-left: 0;
  padding-right: 20px;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li {
  padding: 3px 0 3px 50px;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite {
  left: 30px;
  right: auto !important;
}

html[dir=rtl] .bp-messages-wrap .list .messages-stack .content .messages-list > li.seen .status {
  left: 5px;
  right: auto;
}

html[dir=rtl] .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button.active + .bp-emojionearea-picker-position-top {
  left: 0;
  right: auto;
}

html[dir=rtl] .bp-emojionearea .bp-emojionearea-picker.bp-emojionearea-picker-position-top {
  left: 0px;
  right: auto;
}

html[dir=rtl] .bp-messages-wrap .bp-emojionearea .bp-emojionearea-picker.bp-emojionearea-picker-position-top .bp-emojionearea-wrapper:after {
  left: 20px;
  right: auto;
}

html[dir=rtl] .bp-emojionearea .bp-emojionearea-picker .bp-emojionearea-scroll-area .bp-emojionearea-category-title {
  padding: 7px 6px 5px 0;
}

/**
    Side threads list
*/
.bp-messages-threads-wrapper {
  display: flex;
  width: 100%;
  height: 650px;
}

.bp-messages-column {
  width: calc(100% - 320px);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease-in-out;
}

body.bp-messages-mobile .bp-messages-threads-wrapper .bp-messages-column {
  width: 100%;
}

.bp-messages-threads-wrapper.threads-hidden .bp-messages-column {
  width: 100%;
}

.bp-messages-threads-wrapper .bp-messages-column .preloader {
  top: 0;
  height: 100%;
}

.bp-messages-wrap .bp-messages-side-threads {
  display: none;
  width: 320px;
  border-right: 1px solid #f1f1f1;
  flex-direction: column;
  justify-content: space-between;
  transition: width 0.3s ease-in-out;
}

.bp-messages-wrap .bp-messages-threads-wrapper:not(.threads-hidden) .bp-messages-side-threads {
  display: flex;
}

.bp-messages-wrap .bp-messages-side-threads > * {
  width: 320px;
}

.bp-messages-wrap .bp-messages-side-threads > .scroller {
  max-height: 100% !important;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .pic {
  width: 30px;
  height: 30px;
  position: relative;
  opacity: 1;
  z-index: 1;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .pic img {
  width: 30px;
  height: 30px;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .pic.group {
  width: 35px;
  height: 35px;
  text-align: left;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .pic.group > * {
  width: 14px !important;
  height: 14px !important;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .pic.group > * .avatar {
  width: 14px !important;
  height: 14px !important;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .time {
  padding-right: 22px;
}

.bp-messages-wrap .bp-messages-side-threads .threads-list .thread .time .time-wrapper {
  /*display: none;*/
  top: -5px;
  font-size: 9px;
  position: relative;
}

.bp-messages-wrap.mobile-ready .bp-messages-side-threads {
  display: none !important;
}

.bp-messages-wrap.mobile-ready:not(.bp-better-messages-mini) {
  overflow: hidden;
}

.bp-messages-wrap.mobile-ready:not(.bp-better-messages-mini) .scroller {
  min-height: 200px;
}

.bp-messages-wrap.mobile-ready .bp-messages-threads-wrapper {
  display: flex;
}

body.bp-messages-mobile .bp-messages-wrap .bp-messages-threads-wrapper {
  height: 100% !important;
  max-height: 100% !important;
}

.bp-messages-wrap.mobile-ready .bp-messages-threads-wrapper .bp-messages-column {
  display: flex;
}

body.bp-messages .bp-navs.bp-subnavs {
  display: none !important;
}

body.bp-messages-mobile .bp-messages-hide-on-full-screen,
body.bp-messages-full-screen .bp-messages-hide-on-full-screen {
  display: none !important;
}

body.bp-messages-mobile .chat-header .bpbm-maximize,
.bp-messages-wrap.mobile-ready .chat-header .bpbm-maximize {
  display: none !important;
}
body.bp-messages-mobile .chat-header .bpbm-minimize,
.bp-messages-wrap.mobile-ready .chat-header .bpbm-minimize {
  display: none !important;
}

body.bp-messages-full-screen #wpadminbar {
  display: none !important;
}
body.bp-messages-full-screen .bp-messages-threads-wrapper {
  height: 100% !important;
  max-height: 100% !important;
}
body.bp-messages-full-screen .amaran-wrapper {
  z-index: 10000003 !important;
}
body.bp-messages-full-screen .uppy-Dashboard--modal .uppy-Dashboard-overlay {
  z-index: 10000001;
}
body.bp-messages-full-screen .uppy-Dashboard--modal .uppy-Dashboard-inner {
  z-index: 10000002;
}
body.bp-messages-full-screen .bpbmmfp-bg {
  z-index: 10000001;
}
body.bp-messages-full-screen .bpbmmfp-wrap {
  z-index: 10000002;
}
body.bp-messages-full-screen .chat-header .mini-chat,
body.bp-messages-full-screen .chat-header .bpbm-maximize {
  display: none;
}
body.bp-messages-full-screen .chat-header .bpbm-minimize {
  display: block !important;
}
body.bp-messages-full-screen .bp-better-messages-mini,
body.bp-messages-full-screen .bp-better-messages-list {
  display: none;
}

.bpbm-browser-push-proposal .bpbm-browser-push-proposal-text {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}

.bpbm-browser-push-proposal-controls {
  user-select: none;
  display: block;
}

.bpbm-browser-push-proposal .bpbm-browser-push-proposal-controls {
  display: block;
}

.bpbm-browser-push-proposal .bpbm-browser-push-proposal-controls .BPBMenablePushNotifications {
  display: inline-block;
  margin: 0 10px 0 0;
  outline: 0;
  padding: 10px;
  font-size: 12px;
  background: green;
  color: white;
}

.bpbm-browser-push-proposal .bpbm-browser-push-proposal-controls .BPBMdismissPushProposal {
  display: inline-block;
  margin: 0;
  outline: 0;
  padding: 10px;
  font-size: 12px;
  background: black;
  color: white;
}

.bpbm-private-message-link-buddypress {
  display: block;
  text-decoration: none;
  color: initial;
  margin: 10px 0 0;
  font-size: 12px;
}

.bp-messages-wrap.mobile-ready .bp-messages-side-threads {
  display: none !important;
}

.bp-messages-wrap.mobile-ready .bp-messages-threads-wrapper .bp-messages-column {
  height: 100%;
}

.bp-messages-wrap.mobile-ready .bp-messages-threads-wrapper .bp-messages-column {
  width: 100%;
}

.bp-emojionearea-editor p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: initial;
  text-transform: none;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content p {
  margin: 0;
  padding: 0;
  line-height: initial;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content b,
.bp-messages-wrap .bp-emojionearea .bp-emojionearea-editor b {
  font-weight: bold;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content i,
.bp-messages-wrap .bp-emojionearea .bp-emojionearea-editor i {
  font-style: italic;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content u,
.bp-messages-wrap .bp-emojionearea .bp-emojionearea-editor u {
  text-decoration: underline;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content strike,
.bp-messages-wrap .bp-emojionearea .bp-emojionearea-editor strike {
  text-decoration: line-through;
}

body.bp-messages-mobile {
  overflow: hidden !important;
  overscroll-behavior-x: none;
}

.bpbm-deleted-user-link {
  cursor: default !important;
  text-decoration: none !important;
  background: none !important;
}

.bp-messages-wrap.bp-messages-mobile form.bp-emoji-enabled .upload-btn {
  right: 25px !important;
}

.bp-messages-wrap.bp-messages-mobile .bp-emojionearea .bp-emojionearea-picker {
  width: 100% !important;
  max-width: 100% !important;
  right: 0 !important;
  left: 0 !important;
}

.bp-messages-wrap.bp-messages-mobile .bp-emojionearea-wrapper {
  width: 100% !important;
}

.bp-messages-wrap .chat-header .bp-verified-badge {
  height: 17px;
  width: 17px;
}

.bp-messages-wrap .bp-verified-badge {
  background-color: var(--main-bm-color) !important;
}

.bp-messages-wrap .chat-header .bp-verified-badge-tooltip {
  display: none !important;
}

.bp-messages-wrap .threads-list .thread .info .name .bp-verified-badge,
.bp-better-messages-mini .chats .chat .head .bp-verified-badge {
  height: 12px;
  width: 12px;
  background-size: 6px;
}

.bp-messages-wrap .mejs-button > button {
  background: transparent url(../../../../../wp-includes/js/mediaelement/mejs-controls.svg) !important;
  border: 0 !important;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  margin: 10px 6px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-decoration: none;
  width: 20px;
}

.bp-messages-wrap .mejs-mute > button {
  background-position: -60px 0 !important;
}

.bp-messages-wrap .mejs-fullscreen-button > button {
  background-position: -80px 0 !important;
}

.bp-messages-wrap .mejs-unmute > button {
  background-position: -40px 0 !important;
}

.bp-messages-wrap .mejs-pause > button {
  background-position: -20px 0 !important;
}

.bp-messages-wrap .reports {
  overflow: auto;
  font-size: 12px;
}

.bp-messages-wrap .bulk-message ul {
  padding: 0;
  margin: 0;
}

body.bp-messages-mobile .bp-better-messages-list,
body.bp-messages-mobile .bp-better-messages-mini {
  display: none;
}

/*!
 * OverlayScrollbars
 * https://github.com/KingSora/OverlayScrollbars
 *
 * Version: 1.13.0
 *
 * Copyright KingSora | Rene Haas.
 * https://github.com/KingSora
 *
 * Released under the MIT license.
 * Date: 02.08.2020
 */
/*
OVERLAY SCROLLBARS CORE:
*/
html.bpbm-os-html,
html.bpbm-os-html > .bpbm-os-host {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  height: 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  position: absolute !important; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
}

html.bpbm-os-html > .bpbm-os-host > .bpbm-os-padding {
  position: absolute; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
}

body.bpbm-os-dragging,
body.bpbm-os-dragging * {
  cursor: default;
}

.bpbm-os-host,
.bpbm-os-host-textarea {
  position: relative;
  overflow: visible !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}

.bpbm-os-host-flexbox {
  overflow: hidden !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bpbm-os-host-flexbox > .bpbm-os-size-auto-observer {
  height: inherit !important;
}

.bpbm-os-host-flexbox > .bpbm-os-content-glue {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.bpbm-os-host-flexbox > .bpbm-os-size-auto-observer,
.bpbm-os-host-flexbox > .bpbm-os-content-glue {
  min-height: 0;
  min-width: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

#bpbm-os-dummy-scrollbar-size {
  position: fixed;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
  overflow: scroll;
  height: 500px;
  width: 500px;
}

#bpbm-os-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

/* fix restricted measuring */
#bpbm-os-dummy-scrollbar-size:before,
#bpbm-os-dummy-scrollbar-size:after,
.bpbm-os-content:before,
.bpbm-os-content:after {
  content: "";
  display: table;
  width: 0.01px;
  height: 0.01px;
  line-height: 0;
  font-size: 0;
  flex-grow: 0;
  flex-shrink: 0;
  visibility: hidden;
}

#bpbm-os-dummy-scrollbar-size,
.bpbm-os-viewport {
  -ms-overflow-style: scrollbar !important;
}

.bpbm-os-viewport-native-scrollbars-invisible#bpbm-os-dummy-scrollbar-size,
.bpbm-os-viewport-native-scrollbars-invisible.bpbm-os-viewport {
  scrollbar-width: none !important;
}

.bpbm-os-viewport-native-scrollbars-invisible#bpbm-os-dummy-scrollbar-size::-webkit-scrollbar,
.bpbm-os-viewport-native-scrollbars-invisible.bpbm-os-viewport::-webkit-scrollbar,
.bpbm-os-viewport-native-scrollbars-invisible#bpbm-os-dummy-scrollbar-size::-webkit-scrollbar-corner,
.bpbm-os-viewport-native-scrollbars-invisible.bpbm-os-viewport::-webkit-scrollbar-corner {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  background: transparent !important;
}

.bpbm-os-content-glue {
  box-sizing: inherit;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.bpbm-os-padding {
  box-sizing: inherit;
  direction: inherit;
  position: absolute;
  overflow: visible;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.bpbm-os-host-overflow > .bpbm-os-padding {
  overflow: hidden;
}

.bpbm-os-viewport {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  outline: none !important;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.bpbm-os-content-arrange {
  position: absolute;
  z-index: -1;
  min-height: 1px;
  min-width: 1px;
  pointer-events: none;
}

.bpbm-os-content {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  height: 100%;
  width: 100%;
  visibility: visible;
}

.bpbm-os-content > .bpbm-os-textarea {
  box-sizing: border-box !important;
  direction: inherit !important;
  background: transparent !important;
  outline: 0px none transparent !important;
  overflow: hidden !important;
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border-radius: 0px !important;
  float: none !important;
  -webkit-filter: none !important;
  filter: none !important;
  border: none !important;
  resize: none !important;
  -webkit-transform: none !important;
  transform: none !important;
  max-width: none !important;
  max-height: none !important;
  box-shadow: none !important;
  -webkit-perspective: none !important;
  perspective: none !important;
  opacity: 1 !important;
  z-index: 1 !important;
  clip: auto !important;
  vertical-align: baseline !important;
  padding: 0px;
}

.bpbm-os-host-rtl > .bpbm-os-padding > .bpbm-os-viewport > .bpbm-os-content > .bpbm-os-textarea {
  right: 0 !important;
}

.bpbm-os-content > .bpbm-os-textarea-cover {
  z-index: -1;
  pointer-events: none;
}

.bpbm-os-content > .bpbm-os-textarea[wrap=off] {
  white-space: pre !important;
  margin: 0px !important;
}

.bpbm-os-text-inherit {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-transform: inherit;
  text-decoration: inherit;
  text-indent: inherit;
  text-align: inherit;
  text-shadow: inherit;
  text-overflow: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  line-height: inherit;
  unicode-bidi: inherit;
  direction: inherit;
  color: inherit;
  cursor: text;
}

.bpbm-os-resize-observer,
.bpbm-os-resize-observer-host {
  box-sizing: inherit;
  display: block;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.bpbm-os-resize-observer-host {
  padding: inherit;
  border: inherit;
  border-color: transparent;
  border-style: solid;
  box-sizing: border-box;
}

.bpbm-os-resize-observer-host.observed {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.bpbm-os-resize-observer-host > .bpbm-os-resize-observer,
.bpbm-os-resize-observer-host.observed > .bpbm-os-resize-observer {
  height: 200%;
  width: 200%;
  padding: inherit;
  border: inherit;
  margin: 0;
  display: block;
  box-sizing: content-box !important;
}

.bpbm-os-resize-observer-host.observed > .bpbm-os-resize-observer,
.bpbm-os-resize-observer-host.observed > .bpbm-os-resize-observer:before {
  display: flex;
  position: relative;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  box-sizing: border-box;
}

.bpbm-os-resize-observer-host.observed > .bpbm-os-resize-observer:before {
  content: "";
  box-sizing: content-box !important;
  padding: inherit;
  border: inherit;
  margin: 0;
}

.bpbm-os-size-auto-observer {
  box-sizing: inherit !important;
  height: 100%;
  width: inherit;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.bpbm-os-size-auto-observer > .bpbm-os-resize-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}

.bpbm-os-resize-observer-item {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  direction: ltr !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}

.bpbm-os-resize-observer-item-final {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-box-flex: 0 !important;
  -ms-flex: none !important;
  flex: none !important;
}

.bpbm-os-resize-observer {
  -webkit-animation-duration: 0.001s;
  animation-duration: 0.001s;
  -webkit-animation-name: bpbm-os-resize-observer-dummy-animation;
  animation-name: bpbm-os-resize-observer-dummy-animation;
}

object.bpbm-os-resize-observer {
  box-sizing: border-box !important;
}

@-webkit-keyframes bpbm-os-resize-observer-dummy-animation {
  from {
    z-index: 0;
  }
  to {
    z-index: -1;
  }
}
@keyframes bpbm-os-resize-observer-dummy-animation {
  from {
    z-index: 0;
  }
  to {
    z-index: -1;
  }
}
/*
CUSTOM SCROLLBARS AND CORNER CORE:
*/
.bpbm-os-host-transition > .bpbm-os-scrollbar,
.bpbm-os-host-transition > .bpbm-os-scrollbar-corner {
  -webkit-transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}

html.bpbm-os-html > .bpbm-os-host > .bpbm-os-scrollbar {
  position: absolute; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
  z-index: 999999; /* highest z-index of the page */
}

.bpbm-os-scrollbar,
.bpbm-os-scrollbar-corner {
  position: absolute;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  z-index: 1;
}

.bpbm-os-scrollbar-corner {
  bottom: 0;
  right: 0;
}

.bpbm-os-scrollbar {
  pointer-events: none;
}

.bpbm-os-scrollbar-track {
  pointer-events: auto;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  border: none !important;
}

.bpbm-os-scrollbar-handle {
  pointer-events: auto;
  position: absolute;
  width: 100%;
  height: 100%;
}

.bpbm-os-scrollbar-handle-off,
.bpbm-os-scrollbar-track-off {
  pointer-events: none;
}

.bpbm-os-scrollbar.bpbm-os-scrollbar-unusable,
.bpbm-os-scrollbar.bpbm-os-scrollbar-unusable * {
  pointer-events: none !important;
}

.bpbm-os-scrollbar.bpbm-os-scrollbar-unusable .bpbm-os-scrollbar-handle {
  opacity: 0 !important;
}

.bpbm-os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.bpbm-os-scrollbar-vertical {
  top: 0;
  right: 0;
  z-index: 3;
}

.bpbm-os-host-rtl > .bpbm-os-scrollbar-horizontal {
  right: 0;
}

.bpbm-os-host-rtl > .bpbm-os-scrollbar-vertical {
  right: auto;
  left: 0;
}

.bpbm-os-host-rtl > .bpbm-os-scrollbar-corner {
  right: auto;
  left: 0;
}

.bpbm-os-scrollbar-auto-hidden,
.bpbm-os-padding + .bpbm-os-scrollbar-corner,
.bpbm-os-host-resize-disabled.bpbm-os-host-scrollbar-horizontal-hidden > .bpbm-os-scrollbar-corner,
.bpbm-os-host-scrollbar-horizontal-hidden > .bpbm-os-scrollbar-horizontal,
.bpbm-os-host-resize-disabled.bpbm-os-host-scrollbar-vertical-hidden > .bpbm-os-scrollbar-corner,
.bpbm-os-host-scrollbar-vertical-hidden > .bpbm-os-scrollbar-vertical,
.bpbm-os-scrollbar-horizontal.bpbm-os-scrollbar-auto-hidden + .bpbm-os-scrollbar-vertical + .bpbm-os-scrollbar-corner,
.bpbm-os-scrollbar-horizontal + .bpbm-os-scrollbar-vertical.bpbm-os-scrollbar-auto-hidden + .bpbm-os-scrollbar-corner,
.bpbm-os-scrollbar-horizontal.bpbm-os-scrollbar-auto-hidden + .bpbm-os-scrollbar-vertical.bpbm-os-scrollbar-auto-hidden + .bpbm-os-scrollbar-corner {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bpbm-os-scrollbar-corner-resize-both {
  cursor: nwse-resize;
}

.bpbm-os-host-rtl > .bpbm-os-scrollbar-corner-resize-both {
  cursor: nesw-resize;
}

.bpbm-os-scrollbar-corner-resize-horizontal {
  cursor: ew-resize;
}

.bpbm-os-scrollbar-corner-resize-vertical {
  cursor: ns-resize;
}

.bpbm-os-dragging .bpbm-os-scrollbar-corner.bpbm-os-scrollbar-corner-resize {
  cursor: default;
}

.bpbm-os-host-resize-disabled.bpbm-os-host-scrollbar-horizontal-hidden > .bpbm-os-scrollbar-vertical {
  top: 0;
  bottom: 0;
}

.bpbm-os-host-resize-disabled.bpbm-os-host-scrollbar-vertical-hidden > .bpbm-os-scrollbar-horizontal,
.bpbm-os-host-rtl.bpbm-os-host-resize-disabled.bpbm-os-host-scrollbar-vertical-hidden > .bpbm-os-scrollbar-horizontal {
  right: 0;
  left: 0;
}

.bpbm-os-scrollbar:hover,
.bpbm-os-scrollbar-corner.bpbm-os-scrollbar-corner-resize {
  opacity: 1 !important;
  visibility: visible !important;
}

.bpbm-os-scrollbar-corner.bpbm-os-scrollbar-corner-resize {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB3aWR0aD0iMTAiICAgaGVpZ2h0PSIxMCIgICB2ZXJzaW9uPSIxLjEiPiAgPGcgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwNDIuMzYyMikiICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eTowLjQ5NDExNzY1O2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDcuNDI0MjE4NywxMDQyLjM2MjIgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjYgLTEuMzEwMTU2MiwxLjMxMDIgMCwwLjI5OSAwLjEwNDM0MTksMC41NzEgMC4yNzI5NDkyLDAuNzkxNSAwLjIwOTEwMjQsMC4xNDEzIDAuNDY1NjIwNiwwLjIxODQgMC43MzY5NjI5LDAuMjE4NCAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NiAxLjMxMDE1NjMsLTEuMzEwMiAwLC0wLjI3MTMgLTAuMDc3MDkzLC0wLjUyNzggLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0MSwtMC4xNjg2IC0wLjQ5MjU0NDMsLTAuMjcyOSAtMC43OTE1NTI4LC0wLjI3MjkgeiBtIDAsMy4wODQzIGMgLTAuNzIzNTc5MiwwIC0xLjMxMDE1NjIsMC41ODY2IC0xLjMxMDE1NjIsMS4zMTAyIDAsMC4yOTkgMC4xMDQzNDE5LDAuNTcxIDAuMjcyOTQ5MiwwLjc5MTUgMC4yMDkxMDI0LDAuMTQxMyAwLjQ2NTYyMDYsMC4yMTg0IDAuNzM2OTYyOSwwLjIxODQgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjYgMS4zMTAxNTYzLC0xLjMxMDIgMCwtMC4yNzEzIC0wLjA3NzA5MywtMC41Mjc4IC0wLjIxODM1OTQsLTAuNzM2OSAtMC4yMjA0OTQxLC0wLjE2ODYgLTAuNDkyNTQ0MywtMC4yNzMgLTAuNzkxNTUyOCwtMC4yNzMgeiBtIC0zLjA4NDMyNjEsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NiAtMS4zMTAxNTYzLDEuMzEwMiAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MSAwLjI3Mjk0OTIsMC43OTE1IDAuMjA5MTAyNCwwLjE0MTMgMC40NjU2MjA3LDAuMjE4NCAwLjczNjk2MjksMC4yMTg0IDAuNzIzNTc5MywwIDEuMzEwMTU2MywtMC41ODY2IDEuMzEwMTU2MywtMS4zMTAyIDAsLTAuMjcxMyAtMC4wNzcwOTMsLTAuNTI3OCAtMC4yMTgzNTk0LC0wLjczNjkgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzMgLTAuNzkxNTUyNywtMC4yNzMgeiBtIC0zLjAyOTczNjQsMy4wMjk4IEMgMC41ODY1NzY5MywxMDQ4LjQ3NjMgMCwxMDQ5LjA2MjggMCwxMDQ5Ljc4NjQgYyAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyMiwwLjc5MTYgMC4yMDkxMDIyOSwwLjE0MTIgMC40NjU2MjA2NSwwLjIxODMgMC43MzY5NjI4OCwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHogbSAzLjAyOTczNjQsMCBjIC0wLjcyMzU3OTMsMCAtMS4zMTAxNTYzLDAuNTg2NSAtMS4zMTAxNTYzLDEuMzEwMSAwLDAuMjk5IDAuMTA0MzQxOSwwLjU3MTEgMC4yNzI5NDkyLDAuNzkxNiAwLjIwOTEwMjQsMC4xNDEyIDAuNDY1NjIwNywwLjIxODMgMC43MzY5NjI5LDAuMjE4MyAwLjcyMzU3OTMsMCAxLjMxMDE1NjMsLTAuNTg2NSAxLjMxMDE1NjMsLTEuMzEwMSAwLC0wLjI3MTQgLTAuMDc3MDkzLC0wLjUyNzkgLTAuMjE4MzU5NCwtMC43MzcgLTAuMjIwNDk0LC0wLjE2ODYgLTAuNDkyNTQ0MiwtMC4yNzI5IC0wLjc5MTU1MjcsLTAuMjcyOSB6IG0gMy4wODQzMjYxLDAgYyAtMC43MjM1NzkyLDAgLTEuMzEwMTU2MiwwLjU4NjUgLTEuMzEwMTU2MiwxLjMxMDEgMCwwLjI5OSAwLjEwNDM0MTksMC41NzExIDAuMjcyOTQ5MiwwLjc5MTYgMC4yMDkxMDI0LDAuMTQxMiAwLjQ2NTYyMDYsMC4yMTgzIDAuNzM2OTYyOSwwLjIxODMgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjUgMS4zMTAxNTYzLC0xLjMxMDEgMCwtMC4yNzE0IC0wLjA3NzA5MywtMC41Mjc5IC0wLjIxODM1OTQsLTAuNzM3IC0wLjIyMDQ5NDEsLTAuMTY4NiAtMC40OTI1NDQzLC0wLjI3MjkgLTAuNzkxNTUyOCwtMC4yNzI5IHoiLz4gIDwvZz4gIDxnICAgICBzdHlsZT0iZGlzcGxheTppbmxpbmUiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lIiAgICAgICBkPSJtIDguMjE1NzcxNSwwLjI3Mjk0OTIyIGMgMC4xNDEyNjY3LDAuMjA5MTAyMjkgMC4yMTgzNTk0LDAuNDY1NjIwNjUgMC4yMTgzNTk0LDAuNzM2OTYyODggMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDc2IC0wLjIwNTUxNzYsLTAuNzk3Nzk2NTkgLTAuNTE4NjAzNSwtMS4wMzcyMDY5OCB6IG0gMCwzLjA4NDMyNjE4IGMgMC4xNDEyNjY3LDAuMjA5MTAyMyAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MiAtMS4zMTAxNTYzLDEuMzEwMTU2MiAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTkzIDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAtMy4wODQzMjYyLDAgYyAwLjE0MTI2NjcsMC4yMDkxMDIzIDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYyIC0xLjMxMDE1NjMsMS4zMTAxNTYyIC0wLjI3MTM0MjIsMCAtMC41Mjc4NjA1LC0wLjA3NzA5MyAtMC43MzY5NjI5LC0wLjIxODM1OTMgMC4yMzk0MTA0LDAuMzEzMDg1OSAwLjYxMjYzNjMsMC41MTg2MDM1IDEuMDM3MjA3MSwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYyLC0wLjU4NjU3NyAxLjMxMDE1NjIsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NSwtMC43OTc3OTY3IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogTSAyLjEwMTcwOSw2LjM4NzAxMTcgYyAwLjE0MTI2NjcsMC4yMDkxMDI0IDAuMjE4MzU5NCwwLjQ2NTYyMDYgMC4yMTgzNTk0LDAuNzM2OTYyOSAwLDAuNzIzNTc5MyAtMC41ODY1NzcsMS4zMTAxNTYzIC0xLjMxMDE1NjMsMS4zMTAxNTYzIC0wLjI3MTM0MjIzLDAgLTAuNTI3ODYwNTksLTAuMDc3MDkzIC0wLjczNjk2Mjg4LC0wLjIxODM1OTQgMC4yMzk0MTAzOSwwLjMxMzA4NTkgMC42MTI2MzYyMiwwLjUxODYwMzUgMS4wMzcyMDY5OCwwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHogbSAzLjAyOTczNjMsMCBjIDAuMTQxMjY2NywwLjIwOTEwMjQgMC4yMTgzNTk0LDAuNDY1NjIwNiAwLjIxODM1OTQsMC43MzY5NjI5IDAsMC43MjM1NzkzIC0wLjU4NjU3NywxLjMxMDE1NjMgLTEuMzEwMTU2MywxLjMxMDE1NjMgLTAuMjcxMzQyMiwwIC0wLjUyNzg2MDUsLTAuMDc3MDkzIC0wLjczNjk2MjksLTAuMjE4MzU5NCAwLjIzOTQxMDQsMC4zMTMwODU5IDAuNjEyNjM2MywwLjUxODYwMzUgMS4wMzcyMDcxLDAuNTE4NjAzNSAwLjcyMzU3OTMsMCAxLjMxMDE1NjIsLTAuNTg2NTc3IDEuMzEwMTU2MiwtMS4zMTAxNTYzIDAsLTAuNDI0NTcwOCAtMC4yMDU1MTc1LC0wLjc5Nzc5NjYgLTAuNTE4NjAzNSwtMS4wMzcyMDcgeiBtIDMuMDg0MzI2MiwwIGMgMC4xNDEyNjY3LDAuMjA5MTAyNCAwLjIxODM1OTQsMC40NjU2MjA2IDAuMjE4MzU5NCwwLjczNjk2MjkgMCwwLjcyMzU3OTMgLTAuNTg2NTc3LDEuMzEwMTU2MyAtMS4zMTAxNTYzLDEuMzEwMTU2MyAtMC4yNzEzNDIzLDAgLTAuNTI3ODYwNSwtMC4wNzcwOTMgLTAuNzM2OTYyOSwtMC4yMTgzNTk0IDAuMjM5NDEwNCwwLjMxMzA4NTkgMC42MTI2MzYyLDAuNTE4NjAzNSAxLjAzNzIwNywwLjUxODYwMzUgMC43MjM1NzkzLDAgMS4zMTAxNTYzLC0wLjU4NjU3NyAxLjMxMDE1NjMsLTEuMzEwMTU2MyAwLC0wLjQyNDU3MDggLTAuMjA1NTE3NiwtMC43OTc3OTY2IC0wLjUxODYwMzUsLTEuMDM3MjA3IHoiIC8+ICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  pointer-events: auto !important;
}

.bpbm-os-host-rtl > .bpbm-os-scrollbar-corner.bpbm-os-scrollbar-corner-resize {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.bpbm-os-host-overflow {
  overflow: hidden !important;
}

/*
THEMES:
*/
/* NONE THEME: */
.bpbm-os-theme-none > .bpbm-os-scrollbar-horizontal,
.bpbm-os-theme-none > .bpbm-os-scrollbar-vertical,
.bpbm-os-theme-none > .bpbm-os-scrollbar-corner {
  display: none !important;
}

.bpbm-os-theme-none > .bpbm-os-scrollbar-corner-resize {
  display: block !important;
  min-width: 10px;
  min-height: 10px;
}

/* DARK & LIGHT THEME: */
.bpbm-os-theme-dark > .bpbm-os-scrollbar-horizontal,
.bpbm-os-theme-light > .bpbm-os-scrollbar-horizontal {
  right: 10px;
  height: 10px;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-vertical,
.bpbm-os-theme-light > .bpbm-os-scrollbar-vertical {
  bottom: 10px;
  width: 10px;
}

.bpbm-os-theme-dark.bpbm-os-host-rtl > .bpbm-os-scrollbar-horizontal,
.bpbm-os-theme-light.bpbm-os-host-rtl > .bpbm-os-scrollbar-horizontal {
  left: 10px;
  right: 0;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-corner,
.bpbm-os-theme-light > .bpbm-os-scrollbar-corner {
  height: 10px;
  width: 10px;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-corner,
.bpbm-os-theme-light > .bpbm-os-scrollbar-corner {
  background-color: transparent;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar,
.bpbm-os-theme-light > .bpbm-os-scrollbar {
  padding: 2px;
  box-sizing: border-box;
  background: transparent;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar.bpbm-os-scrollbar-unusable,
.bpbm-os-theme-light > .bpbm-os-scrollbar.bpbm-os-scrollbar-unusable {
  background: transparent;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track,
.bpbm-os-theme-light > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track {
  background: #f3f3f3;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-horizontal > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle,
.bpbm-os-theme-light > .bpbm-os-scrollbar-horizontal > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  min-width: 30px;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-vertical > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle,
.bpbm-os-theme-light > .bpbm-os-scrollbar-vertical > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  min-height: 30px;
}

.bpbm-os-theme-dark.bpbm-os-host-transition > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle,
.bpbm-os-theme-light.bpbm-os-host-transition > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle,
.bpbm-os-theme-light > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle,
.bpbm-os-theme-dark > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track,
.bpbm-os-theme-light > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track {
  border-radius: 10px;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  background: #e4e4e4;
}

.bpbm-os-theme-light > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.4);
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar:hover > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  background: rgba(0, 0, 0, 0.55);
}

.bpbm-os-theme-light > .bpbm-os-scrollbar:hover > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle {
  background: rgba(255, 255, 255, 0.55);
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle.active {
  background: rgba(0, 0, 0, 0.7);
}

.bpbm-os-theme-light > .bpbm-os-scrollbar > .bpbm-os-scrollbar-track > .bpbm-os-scrollbar-handle.active {
  background: rgba(255, 255, 255, 0.7);
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-horizontal .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-dark > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-light > .bpbm-os-scrollbar-horizontal .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-light > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.bpbm-os-theme-dark.bpbm-os-host-scrollbar-horizontal-hidden > .bpbm-os-scrollbar-horizontal .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-dark.bpbm-os-host-scrollbar-vertical-hidden > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-light.bpbm-os-host-scrollbar-horizontal-hidden > .bpbm-os-scrollbar-horizontal .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-light.bpbm-os-host-scrollbar-vertical-hidden > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before {
  display: none;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-horizontal .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-light > .bpbm-os-scrollbar-horizontal .bpbm-os-scrollbar-handle:before {
  top: -6px;
  bottom: -2px;
}

.bpbm-os-theme-dark > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before,
.bpbm-os-theme-light > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before {
  left: -6px;
  right: -2px;
}

.bpbm-os-host-rtl.bpbm-os-theme-dark > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before,
.bpbm-os-host-rtl.bpbm-os-theme-light > .bpbm-os-scrollbar-vertical .bpbm-os-scrollbar-handle:before {
  right: -6px;
  left: -2px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-sticker {
  max-width: 200px;
  width: 100%;
  display: block;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-sticker img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

.bpbm-stickers-selector {
  display: none;
  margin: 0;
  border-top: 1px solid #f1f1f1;
  user-select: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fafbfc;
  z-index: 15;
}

.bpbm-stickers-selector .bpbm-stickers-head {
  display: flex;
  margin: 0;
  align-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  padding: 0 1px 0px 1px;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs {
  width: 100%;
  display: block;
  height: 45px;
  /* padding-bottom: 10px; */
  max-width: calc(100% - 40px);
  white-space: nowrap;
  /* overflow-x: auto; */
  position: relative;
  border-right: 1px solid #f1f1f1;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs.bpbm-os-host-scrollbar-horizontal-hidden {
  height: 40px;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs > .bpbm-os-scrollbar {
  padding: 5px 0 0px;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs span {
  height: 40px;
  display: inline-block;
  width: 40px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-close {
  height: 40px;
  display: block;
  width: 40px;
  padding: 0;
  cursor: pointer;
  text-align: center;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-close > i {
  font-size: 18px;
  line-height: 30px;
  padding: 5px 10px;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs span:hover,
.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs span.bpbm-stickers-tabs-active {
  background: rgba(0, 0, 0, 0.0392156863);
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs span img {
  display: block;
  cursor: pointer;
  padding: 5px;
  max-height: 100%;
  margin: 0;
  max-width: 100%;
}

.bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-tabs span .fas {
  font-size: 18px;
  line-height: 30px;
  padding: 5px 10px;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-container {
  display: block;
  height: 160px;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list {
  overflow: auto;
  padding: 0 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list .bpbm-os-content {
  padding: 0 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list:after,
.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list .bpbm-os-content:after {
  content: "";
  flex: auto;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list .bpbm-stickers-selector-empty {
  width: 100%;
  text-align: center;
  line-height: 150px;
  font-size: 13px;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list .bpbm-stickers-selector-sticker {
  margin: 5px;
  height: 70px;
  width: 70px;
  cursor: pointer;
  border-radius: 3px;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list .bpbm-stickers-selector-sticker:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list .bpbm-stickers-selector-sticker img {
  max-width: 100%;
  height: auto;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-container .loading-messages {
  display: block;
  position: relative;
  height: 160px;
  top: 0;
  line-height: 160px;
  width: 100%;
}

.bpbm-stickers-selector .bpbm-stickers-search {
  padding: 5px 10px;
  height: 40px;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

.bpbm-stickers-selector .bpbm-stickers-selector-sticker-list {
  height: 160px;
}

.bpbm-stickers-selector .bpbm-stickers-search + .bpbm-stickers-selector-sticker-list {
  height: 120px;
}

.bpbm-stickers-selector .bpbm-stickers-search + .bpbm-stickers-selector-sticker-list .bpbm-stickers-selector-empty {
  line-height: 120px;
}

.bpbm-stickers-selector .bpbm-stickers-search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px 8px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  width: 100%;
  outline: 0 !important;
  border: 1px solid #e9eaec;
  background: #ffffff;
}

.bpbm-gifs-selector {
  display: none;
  margin: 0;
  border-top: 1px solid #f1f1f1;
  user-select: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fafbfc;
  z-index: 15;
}

.bpbm-gifs-selector .bpbm-gifs-head {
  display: flex;
  margin: 0;
  align-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  padding: 0 1px 0px 1px;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs {
  width: 100%;
  display: block;
  height: 40px;
  /* padding-bottom: 10px; */
  max-width: calc(100% - 40px);
  white-space: nowrap;
  /* overflow-x: auto; */
  position: relative;
  border-right: 1px solid #f1f1f1;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs.bpbm-os-host-scrollbar-horizontal-hidden {
  height: 40px;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs > .bpbm-os-scrollbar {
  padding: 5px 0 0px;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span {
  height: 40px;
  display: inline-block;
  padding-bottom: 10px;
  width: 40px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span[data-package-id=search] {
  float: right;
  width: 100%;
  max-width: calc(100% - 50px);
  background: none !important;
  margin: 2.5px 5px 2.5px 0px;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span[data-package-id=search] input {
  outline: none;
  border: 1px solid #f1f1f1;
  padding: 0 0 0 5px;
  margin: 0;
  box-sizing: border-box;
  line-height: 35px;
  font-size: 13px;
  height: 35px;
  min-height: 35px;
  width: 100%;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-close {
  height: 40px;
  display: block;
  width: 40px;
  padding: 0;
  cursor: pointer;
  text-align: center;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-close > i {
  font-size: 18px;
  line-height: 30px;
  padding: 5px 10px;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span:hover,
.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span.bpbm-gifs-tabs-active {
  background: rgba(0, 0, 0, 0.0392156863);
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span img {
  display: block;
  cursor: pointer;
  padding: 5px;
  max-height: 100%;
  margin: 0;
  max-width: 100%;
}

.bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-tabs span .fas {
  font-size: 18px;
  line-height: 30px;
  padding: 5px 10px;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-container {
  display: block;
  height: 160px;
  overflow: auto;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list {
  padding: 0 10px;
  min-height: 160px;
  margin: 0;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list .bpbm-os-content {
  padding: 0 10px;
  /* display: flex; */
  /* flex-flow: row wrap; */
  /* justify-content: space-between; */
  padding: 0;
  column-width: 150px;
  column-count: auto;
  column-gap: 0px;
  margin-top: 10px;
  height: 160px;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list:after,
.bpbm-gifs-selector .bpbm-gifs-selector-gif-list .bpbm-os-content:after {
  content: "";
  flex: auto;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list .bpbm-gifs-selector-empty {
  width: 100%;
  text-align: center;
  line-height: 160px;
  font-size: 13px;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list .bpbm-gifs-selector-gif {
  margin: 0 5px 10px; /* height: 70px; */ /* width: 70px; */
  cursor: pointer;
  border-radius: 3px; /* vertical-align: top; */
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list .bpbm-gifs-selector-gif:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list .bpbm-gifs-selector-gif img {
  max-width: 100%;
  height: auto;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-container .loading-messages {
  display: block;
  position: relative;
  height: 160px;
  top: 0;
  line-height: 160px;
  width: 100%;
}

.bpbm-gifs-selector .bpbm-gifs-search {
  padding: 5px 10px;
  height: 40px;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

.bpbm-gifs-selector .bpbm-gifs-selector-gif-list:not(.empty) {
  /* height: 160px; */
  /* overflow: auto; */
  padding: 0;
  column-width: 150px;
  column-count: auto;
  column-gap: 0px;
  margin-top: 10px;
}

.bp-better-messages-mini .chats .chat .bpbm-gifs-selector .bpbm-gifs-selector-gif-list:not(.empty) {
  column-width: 130px;
}

.bpbm-gifs-selector .bpbm-gifs-search + .bpbm-gifs-selector-gif-list {
  height: 120px;
}

.bpbm-gifs-selector .bpbm-gifs-search + .bpbm-gifs-selector-gif-list .bpbm-gifs-selector-empty {
  line-height: 120px;
}

.bpbm-gifs-selector .bpbm-gifs-search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px 8px;
  height: 30px;
  min-height: 30px;
  max-height: 30px;
  width: 100%;
  outline: 0 !important;
  border: 1px solid #e9eaec;
  background: #ffffff;
}

.bp-messages-wrap .message .bpbm-stickers-btn {
  z-index: 5;
  display: block;
  position: absolute;
  right: 5px;
  top: 30px;
  padding-right: 4px;
  height: 24px;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  color: #cbcbcb;
}

.bp-messages-wrap .message .bpbm-stickers-btn i {
  font-weight: 400;
}

.bp-messages-wrap .message .bpbm-stickers-btn + .bpbm-gifs-btn {
  right: 25px;
}

.bp-messages-wrap .message .bpbm-gifs-btn {
  z-index: 5;
  display: block;
  position: absolute;
  right: 5px;
  top: 30px;
  padding-right: 4px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  color: #cbcbcb;
  width: 24px;
  font-size: initial;
}

.bp-messages-wrap .message .bpbm-gifs-btn i {
  /* display: inline-block; */
  /* width: 10px; */
  /* height: 10px; */
  /* background-image: url("data:image/svg+xml,%3Csvg width='32px' height='32px' viewBox='0 0 32 32' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg fill='currentColor'%3E%3Cpath d='M8.00684834,10 C6.34621185,10 5,11.3422643 5,12.9987856 L5,20.0012144 C5,21.6573979 6.33599155,23 8.00684834,23 L24.9931517,23 C26.6537881,23 28,21.6577357 28,20.0012144 L28,12.9987856 C28,11.3426021 26.6640085,10 24.9931517,10 L8.00684834,10 L8.00684834,10 Z M7.99456145,11 C6.89299558,11 6,11.9001762 6,12.992017 L6,20.007983 C6,21.1081436 6.90234375,22 7.99456145,22 L25.0054385,22 C26.1070044,22 27,21.0998238 27,20.007983 L27,12.992017 C27,11.8918564 26.0976562,11 25.0054385,11 L7.99456145,11 L7.99456145,11 Z M13,17 L13,19 L10.9998075,19 C10.4437166,19 10,18.5523709 10,18.0001925 L10,14.9998075 C10,14.4437166 10.4476291,14 10.9998075,14 L14,14 L14,13 L11.0048815,13 C9.89761602,13 9,13.8865548 9,15.0059191 L9,17.9940809 C9,19.1019194 9.8938998,20 11.0048815,20 L14,20 L14,19.25 L14,19.25 L14,17 L14,16 L11,16 L11,17 L13,17 L13,17 Z M16,14 L16,19 L15,19 L15,20 L18,20 L18,19 L17,19 L17,14 L18,14 L18,13 L15,13 L15,14 L16,14 L16,14 Z M20,16 L20,14 L24,14 L24,13 L19,13 L19,20 L20,20 L20,17 L23,17 L23,16 L20,16 L20,16 Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}

.bp-messages-wrap .threads-list .thread .time .bpbm-counter-row {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.bp-messages-wrap .threads-list .thread .time .bpbm-counter-row .bpbm-thread-muted {
  display: block;
}

.bpbm-video-popup {
  position: fixed;
  background: rgba(0, 0, 0, 0.3411764706);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.bpbm-video-popup .bpbm-popup-content {
  height: 80%;
  width: 80%;
  max-height: 80%;
  max-width: 80%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  border: 1px solid rgba(234, 234, 234, 0.568627451);
  box-shadow: 0 0 3px 1px rgba(234, 234, 234, 0.568627451);
  border-radius: 1%;
  overflow: hidden;
}

.bpbm-video-popup .bpbm-popup-content .bp-messages-video-container {
  height: 100% !important;
}

.bpbm-video-popup .bpbm-popup-content .bp-messages-video-container .bp-messages-main-placeholder {
  height: 100% !important;
}

.bpbm-video-popup .bpbm-popup-content .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-video {
  width: auto;
}

.bpbm-video-popup .bpbm-popup-content .bp-messages-video-container .bp-messages-main-placeholder .bp-messages-placeholder-video video {
  object-fit: contain;
  width: auto;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call {
  display: block;
  padding: 4px 0;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call.missed:before {
  position: relative;
  width: 20px;
  display: block;
  font-family: "BM Font Awesome 6 Free";
  font-weight: 900;
  content: "\f3dd";
  float: left;
  margin-right: 5px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call.bpbm-call-video.missed:before {
  content: "\f4e2";
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call-video.call-accepted:before,
.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call-video.call-incoming:before {
  position: relative;
  width: 20px;
  display: block;
  font-family: "BM Font Awesome 6 Free";
  font-weight: 900;
  content: "\f03d";
  float: left;
  margin-right: 5px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call.bpbm-call-audio.call-accepted:before,
.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content .bpbm-call.bpbm-call-audio.call-incoming:before {
  position: relative;
  width: 20px;
  display: block;
  font-family: "BM Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  float: left;
  margin-right: 5px;
}

.bp-messages-wrap video {
  visibility: visible;
}

.bpbmuc {
  background: var(--main-bm-color);
  border-radius: 100%;
  color: white;
  font-size: 10px;
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  vertical-align: middle;
  text-align: center;
  margin-right: 6px;
}

.bpbmuc.bpbmuc-hide-when-null.bpbmuc-preserve-space[data-count="0"] {
  visibility: hidden;
}

.bpbmuc.bpbmuc-hide-when-null:not(.bpbmuc-preserve-space)[data-count="0"] {
  display: none;
}

.bpbm-notice {
  position: relative;
  padding: 0.75rem 1.25rem !important;
  margin-bottom: 1rem;
  border: 1px solid #ffeeba;
  border-radius: 0.25rem;
  color: #856404;
  background-color: #fff3cd;
}

.bpbm-gif {
  position: relative;
  display: inline-block;
}

body.bp-messages-mobile .message-content > .bpbm-gif {
  max-width: 90%;
}

.bpbm-gif video {
  display: block;
  max-width: 100%;
  max-height: 300px;
  margin: 0;
  padding: 0;
}

.bpbm-gif .bpbm-gif-play {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5215686275);
  cursor: pointer;
  z-index: 2;
}

.bpbm-gif .bpbm-gif-play i {
  display: inline-block;
  position: absolute;
  font-style: normal !important;
  width: 45px;
  height: 45px;
  font-size: 45px;
  color: white;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}

.bpbm-gifs-icon {
  max-width: 20px;
  max-height: 20px;
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: baseline;
}

.bpbm-gifs-icon svg {
  display: block;
}

a.bpbm-pm-button,
a.bpbm-pm-button:hover,
a.bpbm-pm-button:focus {
  display: inline-block;
  color: white;
  background: var(--main-bm-color);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bpbm-join-to-chat-button,
.bpbm-join-to-chat-button:hover {
  cursor: pointer;
  display: inline-block;
  color: white;
  background: var(--main-bm-color);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  margin-top: 8px;
  user-select: none;
}

.bpbm-preview-message {
  border-top: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  background: white;
  position: relative;
  z-index: 5;
}

.bpbm-preview-message .bpbm-preview-message-cancel {
  cursor: pointer;
  display: block;
  color: var(--main-bm-color);
  font-size: 18px;
  padding: 6px 6px;
  text-align: center;
}

.bpbm-preview-message .bpbm-preview-message-content {
  overflow: hidden;
  padding: 10px 10px;
  user-select: none;
}

.bpbm-preview-message .bpbm-preview-message-content .bpbm-preview-message-text {
  font-size: 12px;
  line-height: 13px;
  overflow: hidden;
  /* height: 35px; */
  padding: 0;
  margin: 0;
  width: 100%;
  /* padding: 10px 10px; */
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bpbm-preview-message .bpbm-preview-message-content .bpbm-preview-message-text .bpbm-preview-desc {
  display: block;
  margin-top: 2px;
}

.bpbm-preview-message .bpbm-preview-message-content .bpbm-preview-message-name {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: var(--main-bm-color);
  padding: 0;
  margin: 0;
}

.bpbm-replied-message {
  display: block;
  background: var(--main-bm-color-003);
  padding: 5px 10px 5px 10px;
  font-size: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 95%;
  max-width: calc(100% - 30px);
  border-left: 2px solid var(--main-bm-color);
  margin-bottom: 5px;
  user-select: none;
}

.bpbm-replied-message .bpbm-replied-message-text .bpbm-call {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.bpbm-replied-message .bpbm-replied-message-name {
  display: block;
  color: var(--main-bm-color);
  font-weight: bold;
  margin-bottom: 5px;
}

.bpbm-replied-message video {
  max-height: 130px !important;
}

.bpbm-replied-message .bpbm-sticker img {
  max-height: 130px;
  width: auto !important;
}

.bpbm-replied-message .videos .video,
.bpbm-replied-message .images {
  padding: 0 !important;
}

.message-content.reply-enabled > .bpbm-gif,
.message-content.reply-enabled > .images,
.message-content.reply-enabled > .videos video {
  max-width: calc(100% - 30px);
}

.bp-messages-wrap .bpbm-search-in-list {
  width: 100%;
  padding: 8px 12px;
  margin: 0;
}

.bp-messages-wrap .bpbm-os-host-overflow-y .bpbm-search-in-list {
  padding-right: 20px;
}

.bp-messages-wrap .bpbm-search-in-list > input {
  width: 100%;
  margin: 0;
  line-height: initial;
  font-size: 15px;
  padding: 8px 8px;
  min-height: 14px;
  display: block;
  outline: none !important;
}

/** **/
.bp-messages-wrap.bpbm-template-modern .list {
  display: block;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list {
  margin-top: 10px !important;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li {
  display: flex;
  width: auto;
  margin-bottom: 10px;
  margin-left: 5px;
  padding: 0 70px 0 0 !important;
  max-width: 100%;
  background: none;
}

.bp-messages-wrap.bpbm-template-modern.bp-better-messages-mini .list .messages-stack .content .messages-list > li {
  padding: 0 65px 0 0 !important;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .message-content {
  background: #e8e8e8;
  color: black;
  padding: 7px 12px !important;
  border-radius: 2px;
}

.bp-messages-wrap .list .messages-stack .content .messages-list > li .message-content a:not(.url-wrap) {
  text-decoration: underline !important;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li.selected {
  background: none;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li.selected .message-content {
  background: #d6d6d6;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .status {
  right: -25px !important;
  top: 9px !important;
  bottom: auto !important;
  /* display: inline-block !important; */
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .favorite {
  right: -25px !important;
  top: 9px;
  bottom: auto;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .status + .favorite {
  right: -50px !important;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .info {
  display: flex;
  align-items: center;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content {
  padding-left: 5px;
  padding-right: 5px;
}

.bp-messages-wrap.bpbm-template-modern .bpbm-replied-message .bpbm-replied-message-text .bpbm-call,
.bp-messages-wrap.bpbm-template-modern .message-content.reply-enabled > .bpbm-gif,
.bp-messages-wrap.bpbm-template-modern .message-content.reply-enabled > .images,
.bp-messages-wrap.bpbm-template-modern .message-content.reply-enabled > .videos video,
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .message-content .bpbm-attachments,
.bp-messages-wrap.bpbm-template-modern .bpbm-replied-message {
  max-width: 100% !important;
  white-space: normal;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack.incoming .bpbm-replied-message {
  border-color: white;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack.incoming .bpbm-replied-message .bpbm-replied-message-name {
  color: white;
}

.bp-messages-wrap.bpbm-template-modern .messages-stack.incoming li .files .file .size,
.bp-messages-wrap.bpbm-template-modern .messages-stack.incoming li a,
.bp-messages-wrap.bpbm-template-modern .messages-stack.incoming li .url-wrap,
.bp-messages-wrap.bpbm-template-modern .messages-stack.incoming li .url-wrap .url-description .url-title {
  color: white !important;
  border-color: white !important;
}

.bp-messages-wrap.bpbm-template-modern .messages-stack.outgoing li .files .file .size,
.bp-messages-wrap.bpbm-template-modern .messages-stack.outgoing li a,
.bp-messages-wrap.bpbm-template-modern .messages-stack.outgoing li .url-wrap,
.bp-messages-wrap.bpbm-template-modern .messages-stack.outgoing li .url-wrap .url-description .url-title {
  color: black !important;
  border-color: black !important;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack.incoming .content .messages-list > li .message-content {
  background: var(--main-bm-color);
  color: #fff;
  position: relative;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack.incoming .content .messages-list > li .message-content::selection {
  background: white;
  color: black;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack.incoming .content .messages-list > li .message-content *:not(.bpbm-reply, .favorite) {
  color: #fff;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack.incoming .content .messages-list > li.selected .message-content:before {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.1411764706);
  border-radius: 2px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .info {
  padding-left: 5px;
}

/** My Messages Left **/
.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .messages-list > li {
  flex-direction: row-reverse;
  padding: 0 0 0 70px !important;
  max-width: 100%;
  margin-right: 5px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left.bp-better-messages-mini .list .messages-stack.incoming .content .messages-list > li {
  padding: 0 0 0 65px !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming {
  display: flex;
  flex-direction: row-reverse;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .pic {
  padding-left: 0;
  padding-right: 20px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .messages-list > li .bpbm-reply {
  position: absolute;
  left: -25px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .messages-list > li .favorite {
  right: auto !important;
  left: -25px;
  top: 9px;
  bottom: auto;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .messages-list > li .bpbm-reply + .favorite {
  left: -50px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .info {
  flex-direction: row-reverse;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .info .time {
  margin: 0 5px 0 0 !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left.bp-messages-mobile .list .messages-stack.incoming .pic {
  padding-left: 5px !important;
  padding-right: 15px !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-left .list .messages-stack.incoming .content .info {
  padding-left: 0;
  padding-right: 5px;
  text-align: right;
}

/** My Messages Right **/
.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.outgoing .content .messages-list > li {
  flex-direction: row-reverse;
  padding: 0 0 0 70px !important;
  max-width: 100%;
  margin-right: 5px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right.bp-better-messages-mini .list .messages-stack.outgoing .content .messages-list > li {
  padding: 0 0 0 65px !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.outgoing {
  display: flex;
  flex-direction: row-reverse;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.outgoing .pic {
  padding-left: 0;
  padding-right: 20px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.incoming .content .messages-list > li .bpbm-reply {
  position: absolute;
  right: -25px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.incoming .content .messages-list > li .favorite {
  right: -25px !important;
  left: auto !important;
  top: 9px;
  bottom: auto;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.incoming .content .messages-list > li .bpbm-reply + .favorite {
  right: -50px !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.outgoing .content .info {
  flex-direction: row-reverse;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.outgoing .content .info .time {
  margin: 0 5px 0 0 !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right.bp-messages-mobile .list .messages-stack.outgoing .pic {
  padding-left: 5px !important;
  padding-right: 15px !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack.outgoing .content .info {
  padding-left: 0;
  padding-right: 5px;
  text-align: right;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack .content .messages-list > li .status {
  left: -25px !important;
  top: 9px !important;
  bottom: auto !important;
  /* display: inline-block !important; */
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack .content .messages-list > li .favorite {
  left: -25px !important;
  right: auto !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-right .list .messages-stack .content .messages-list > li .status + .favorite {
  left: -50px !important;
  right: auto !important;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-leftAll .list .messages-stack.incoming .content .messages-list > li .bpbm-reply {
  position: absolute;
  right: -25px;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-leftAll .list .messages-stack.incoming .content .messages-list > li .favorite {
  right: -25px !important;
  left: auto !important;
  top: 9px;
  bottom: auto;
}

.bp-messages-wrap.bpbm-template-modern.bpbm-template-modern-leftAll .list .messages-stack.incoming .content .messages-list > li .bpbm-reply + .favorite {
  right: -50px !important;
}

.bp-messages-wrap a, .bp-messages-wrap a:active, .bp-messages-wrap a:hover, .bp-messages-wrap a:focus {
  text-decoration: none !important;
}
.bp-messages-wrap.bpbm-call-view .bp-messages-side-threads {
  width: 0;
  overflow: hidden;
}
.bp-messages-wrap.bpbm-call-view .bp-messages-column {
  width: 100%;
}
.bp-messages-wrap.bpbm-call-view .bpbm-chat-main .bpbm-pinned-message .bpbm-group-call-in-progress {
  display: none !important;
}
.bp-messages-wrap.bp-messages-full-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10000000;
}
.bp-messages-wrap .bpbm-search-results {
  display: none;
  width: calc(100% - 1px);
}
.bp-messages-wrap .bpbm-search-results .loading-messages {
  display: block;
  top: 50px;
}
.bp-messages-wrap .bpbm-search-results .threads-list {
  padding-bottom: 0;
}
.bp-messages-wrap .bpbm-search-results .bpbm-search-results-section + .bpbm-search-results-section .bpbm-search-results-header {
  border-top: 1px solid #f1f1f1;
}
.bp-messages-wrap .bpbm-search-results .bpbm-search-results-section .bpbm-search-results-header {
  margin: 0;
  padding: 6px 10px 6px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  background: #fafbfc;
}
.bp-messages-wrap.bp-better-messages-list .chat-footer .bpbm-user-me .bpbm-user-me-avatar .avatar {
  width: 25px;
  height: 25px;
}
.bp-messages-wrap .threads-list-index + .thread-not-selected {
  display: none;
}
.bp-messages-wrap .bp-messages-threads-wrapper.no-threads .bp-messages-side-threads {
  display: none !important;
}
.bp-messages-wrap .bp-messages-threads-wrapper.no-threads .bp-messages-side-threads + .bp-messages-column {
  width: 100%;
}
.bp-messages-wrap:not(.bp-messages-mobile, .mobile-ready) .bp-messages-threads-wrapper:not(.threads-hidden, .no-threads) .chat-header.bpbm-index .new-message {
  display: none;
}
.bp-messages-wrap:not(.bp-messages-mobile, .mobile-ready) .bp-messages-threads-wrapper:not(.threads-hidden, .no-threads) .chat-header.bpbm-index .bpbm-search {
  display: none;
}
.bp-messages-wrap:not(.bp-messages-mobile, .mobile-ready) .bp-messages-threads-wrapper:not(.threads-hidden, .no-threads) .chat-header.bpbm-index .starred-messages {
  float: right;
}
.bp-messages-wrap:not(.bp-messages-mobile, .mobile-ready) .bp-messages-threads-wrapper:not(.threads-hidden, .no-threads) .threads-list-index {
  display: none;
}
.bp-messages-wrap:not(.bp-messages-mobile, .mobile-ready) .bp-messages-threads-wrapper:not(.threads-hidden, .no-threads) .threads-list-index + .thread-not-selected {
  display: flex;
  height: auto;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.bp-messages-wrap:not(.bp-messages-mobile, .mobile-ready) .bp-messages-threads-wrapper:not(.threads-hidden, .no-threads) .threads-list-index + .thread-not-selected + .chat-footer {
  display: none;
}
.bp-messages-wrap .chat-header.side-header {
  display: flex;
  justify-content: flex-start;
}
.bp-messages-wrap .chat-header.side-header .new-message + .bpbm-search {
  padding-left: 0;
  width: calc(100% - 50px);
}
.bp-messages-wrap .chat-header.side-header .bpbm-search {
  width: 100%;
  line-height: initial;
  padding-right: 10px;
  padding-left: 10px;
}
.bp-messages-wrap .chat-header.side-header .bpbm-search form {
  width: 100%;
}
.bp-messages-wrap .chat-header.side-header .bpbm-search form .close {
  display: none;
}
.bp-messages-wrap .chat-header.side-header .bpbm-search form input {
  width: 100%;
  max-width: 100%;
  border-width: 1px;
  text-align: left;
}
.bp-messages-wrap .chat-header .settings {
  display: none;
  width: 50px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
  float: right;
}
.bp-messages-wrap.bp-messages-mobile .chat-header .settings {
  display: block;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content {
  flex-direction: column-reverse;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-view.bpbm-hide-chat .bpbm-chat-main, .bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-audio-view.bpbm-hide-chat .bpbm-chat-main {
  height: 0;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-view.bpbm-hide-chat .bp-messages-call-wrap, .bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-audio-view.bpbm-hide-chat .bp-messages-call-wrap {
  height: 100%;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-view .bpbm-chat-main, .bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-audio-view .bpbm-chat-main {
  height: 60%;
  max-width: 100%;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-view .bp-messages-call-wrap, .bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-call-audio-view .bp-messages-call-wrap {
  height: 40%;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content .bpbm-chat-main {
  width: 100% !important;
  max-width: 100%;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content.bpbm-hide-chat .bp-messages-call-wrap .bpbm-switch-chat i {
  transform: rotate(90deg);
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content .bp-messages-call-wrap {
  height: 0;
  width: 100%;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content .bp-messages-call-wrap .bpbm-switch-chat {
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  opacity: 0.5;
  height: 18px;
  width: 40px;
  line-height: 18px;
  border-radius: 4px 4px 0px 0;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-chat-content .bp-messages-call-wrap .bpbm-switch-chat i {
  transform: rotate(270deg);
}
.bp-messages-wrap .bpbm-chat-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
}
.bp-messages-wrap .bpbm-chat-content > * {
  transition: width 0.3s ease-in-out, max-width 0.3s ease-in-out, height 0.3s ease-in-out, max-height 0.3s ease-in-out;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-call-view .bpbm-chat-main {
  max-width: 350px;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-call-view .bp-messages-call-wrap {
  background: #f9f9f9;
  width: 100%;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-call-view.bpbm-hide-chat .bpbm-chat-main {
  width: 0;
  overflow: hidden;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-call-audio-view .bp-messages-call-wrap {
  width: 100%;
  max-width: 350px;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-call-audio-view.bpbm-hide-chat .bpbm-chat-main {
  width: 0;
  overflow: hidden;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-call-audio-view.bpbm-hide-chat .bp-messages-call-wrap {
  max-width: 100%;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main {
  position: relative;
  max-width: 100%;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message {
  position: relative;
  z-index: 1;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-group-call-in-progress {
  padding: 0 20px;
  background: var(--main-bm-color);
  color: white;
  font-size: 15px;
  line-height: 40px;
  overflow: hidden;
  text-align: center;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-group-call-in-progress .bpbm-group-call-in-progress-join {
  margin-left: 5px;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-group-call-in-progress .bpbm-group-call-in-progress-join button {
  display: inline-block;
  background: green !important;
  border: 1px solid white !important;
  font-size: 14px;
  color: white;
  margin: 0 0;
  padding: 1px 21px !important;
  outline: 0 !important;
  box-shadow: none;
  cursor: pointer;
  text-align: center;
  border-radius: 3px;
  text-transform: uppercase;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-top-pinned-message {
  display: flex;
  padding: 8px 10px 8px 20px;
  background: var(--main-bm-color);
  color: white;
  text-align: center;
  align-items: flex-start;
  max-height: 48px;
  overflow: hidden;
  cursor: default;
  border-radius: 0 !important;
  position: absolute;
  z-index: 2;
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-top-pinned-message:hover {
  max-height: none;
  opacity: 1;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-top-pinned-message .bpbm-top-pinned-message-icon {
  padding-right: 10px;
  line-height: 24px;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-top-pinned-message .bpbm-top-pinned-message-content {
  font-size: 12px;
  line-height: 18px;
}
.bp-messages-wrap .bpbm-chat-content .bpbm-chat-main .bpbm-pinned-message .bpbm-top-pinned-message .bpbm-top-pinned-message-content p {
  margin: 0;
}
.bp-messages-wrap .bpbm-chat-content.bpbm-hide-chat .bpbm-switch-chat i {
  transform: rotate(180deg);
}
.bp-messages-wrap .bpbm-chat-content .bp-messages-call-wrap {
  position: relative;
  width: 0;
  height: 100%;
  overflow: hidden;
}
.bp-messages-wrap .bpbm-chat-content .bp-messages-call-wrap:hover > .bpbm-switch-chat {
  opacity: 0.5;
}
.bp-messages-wrap .bpbm-chat-content .bp-messages-call-wrap > .bpbm-switch-chat {
  opacity: 0;
  position: absolute;
  z-index: 10;
  background: black;
  color: white;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.bp-messages-wrap .bpbm-chat-content .bp-messages-call-wrap > .bpbm-switch-chat:hover {
  opacity: 1;
}
.bp-messages-wrap .bbpm-avatar img {
  display: block;
  transition: none;
}
.bp-messages-wrap img.avatar {
  transition: none;
}
.bp-messages-wrap .chat-footer {
  position: relative;
  height: 44px;
  line-height: 42px;
  box-sizing: border-box;
  border-bottom: none;
  border-top: 1px solid #f1f1f1;
}
.bp-messages-wrap .chat-footer > a {
  display: inline-block;
  font-size: 13px;
  vertical-align: top;
  line-height: inherit;
  color: var(--main-bm-color) !important;
  text-decoration: none !important;
  border: none;
}
.bp-messages-wrap .chat-footer .settings {
  width: 50px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  text-decoration: none;
}
.bp-messages-wrap .chat-footer .new-message {
  width: 50px;
  height: 42px;
  text-align: center;
}
.bp-messages-wrap .chat-footer .bpbm-user-me {
  position: relative;
  display: flex;
  line-height: initial;
  float: right;
  padding: 6px 8px;
  cursor: pointer;
  user-select: none;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.bp-messages-wrap .chat-footer .bpbm-user-me.bpbm-open, .bp-messages-wrap .chat-footer .bpbm-user-me:hover {
  background: rgba(0, 0, 0, 0.0588235294);
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-avatar {
  margin-right: 10px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-avatar .avatar {
  display: block;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-name {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-status {
  display: block;
  font-size: 12px;
  margin-top: 2px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-status .current-status {
  display: flex;
  align-items: center;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-status .current-status i {
  display: inline-block;
  border-radius: 10px;
  color: #3da512 !important;
  margin-right: 5px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me.bpbm-open .bpbm-user-me-popup {
  display: block;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup {
  display: none;
  position: absolute;
  bottom: 50px;
  right: 0;
  min-width: 100%;
  z-index: 10;
  background: white;
  box-sizing: border-box;
  border: 1px solid #dddee0;
  padding: 0;
  border-radius: 3px;
  box-shadow: 0 1px 1px 0 #d7d8db;
  cursor: default;
  white-space: nowrap;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list {
  display: block;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-item {
  display: block;
  padding: 10px;
  cursor: pointer;
  font-size: 13px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-item:hover {
  background: rgba(0, 0, 0, 0.0588235294);
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-item .bpbm-user-me-popup-list-item-title {
  display: block;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-item .bpbm-user-me-popup-list-item-title > i {
  margin-right: 5px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-item .bpbm-user-me-popup-list-item-desc {
  display: block;
  font-size: 80%;
  opacity: 0.8;
  margin-top: 8px;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-item + .bpbm-user-me-popup-list-hr {
  display: block;
  border-bottom: 1px solid #dddee0;
}
.bp-messages-wrap .chat-footer .bpbm-user-me .bpbm-user-me-popup .bpbm-user-me-popup-list .bpbm-user-me-popup-list-hr {
  display: none;
}
.bp-messages-wrap.bpbm-not-logged-in .list .messages-stack .content .messages-list > li .favorite,
.bp-messages-wrap.bpbm-not-logged-in .list .messages-stack .content .messages-list > li .bpbm-reply {
  display: none !important;
}
.bp-messages-wrap .bm-connection-control .bm-connection-quality {
  display: inline;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 9px;
  opacity: 0.4;
  color: white;
  background: #eda703;
  cursor: default;
  transition: opacity 0.2s ease-in-out;
  text-align: center;
}
.bp-messages-wrap .bm-connection-control .bm-connection-quality:hover, .bp-messages-wrap .bm-connection-control .bm-connection-quality.bm-opacity {
  opacity: 1;
}
.bp-messages-wrap .bm-connection-control .bm-connection-quality.bm-state-connected {
  color: white;
  background: #007528;
}
.bp-messages-wrap .bm-connection-control .bm-connection-quality.bm-state-disconnected {
  color: white;
  background: darkred;
}
.bp-messages-wrap .bm-connection-control .bm-connection-quality > span {
  text-transform: capitalize;
  margin-left: 4px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container {
  height: 100%;
  max-height: calc(100% - 44px);
  overflow: auto;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bpbm-call-settings {
  position: absolute;
  bottom: 55px;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid {
  position: relative;
  box-sizing: border-box;
  padding: 5px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio {
  position: absolute;
  display: block;
  z-index: 1;
  width: calc(100% - 10px);
  margin: 5px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-screen .bp-messages-group-call-input-audio-screen-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background: gray;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-screen .bp-messages-group-call-input-audio-screen-wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner {
  padding: 0px;
  box-shadow: 0 1px 5px 1px #ccc;
  display: block;
  background: white;
  color: black;
  border-radius: 3px;
  overflow: hidden;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info {
  padding: 5px;
  display: block;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info {
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-info-avatar {
  padding-right: 10px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-info-avatar .avatar {
  display: block;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-info-avatar img {
  display: block;
  height: 45px;
  border-radius: 3px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-info-name {
  font-size: 15px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-caller-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-right: 10px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-caller-actions > .bpbm-admin-controls {
  display: flex;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-caller-actions > .bpbm-admin-controls .bpbm-unmute {
  display: none;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-caller-actions > .bpbm-admin-controls > span {
  display: block;
  background: #e9e9e9;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  cursor: pointer;
  margin-right: 10px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-caller-actions > .bpbm-admin-controls > span.bpbm-kick {
  background: #d62020;
  color: white;
  font-size: 11px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-grid > .bp-messages-group-call-input-audio .bp-messages-group-call-input-audio-inner .bp-messages-group-call-input-audio-inner-info .bpbm-caller-info .bpbm-caller-actions .bpbm-mic-status > i {
  display: block;
  background: #e9e9e9;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control {
  position: absolute;
  bottom: 0;
  background: #fafbfc;
  width: 100%;
  padding: 10px;
  border-top: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control {
  display: flex;
  align-items: center;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .microphone-control-selector {
  width: 100%;
  max-width: 200px;
  margin-right: 10px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .microphone-control-selector label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .microphone-control-selector .bpbm-switch-mic-select {
  max-width: 100%;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .speaker-control-selector {
  width: 100%;
  max-width: 200px;
  margin-right: 10px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .speaker-control-selector label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .speaker-control-selector .bpbm-switch-audio-select {
  max-width: 100%;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .bm-audio-chat-additional-controls {
  margin-left: auto;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .bm-audio-chat-control-group {
  text-align: right;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .bpbm-switch-mic-switcher {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .bpbm-switch-mic-switcher > span {
  cursor: pointer;
  display: inline-block;
  background: var(--main-bm-color);
  color: var(--main-bm-bg-color);
  height: 39px;
  width: 100px;
  font-size: 13px;
  text-align: center;
  line-height: 39px;
  border-radius: 3px 0 0 3px;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .bpbm-switch-mic-switcher > span[aria-disabled=true] {
  background: gray;
  cursor: not-allowed;
}
.bp-messages-wrap .bp-messages-group-audio-call-container .bp-messages-group-call-audios-control .bm-audio-chat-control .bpbm-switch-mic-switcher .bm-end-call {
  display: inline-block;
  border-radius: 0px 3px 3px 0px;
  font-size: 13px;
  color: white;
  background: #c92e2e;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  width: 45px;
  text-align: center;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid {
  position: relative;
  box-sizing: border-box;
  padding: 5px;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video {
  display: block;
  position: absolute;
  z-index: 1;
  color: #fff;
  width: 300px;
  height: 300px;
  overflow: hidden;
  padding: 2.5px;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video.bpbm-cover-video > .bp-messages-group-call-input-video-inner video {
  object-fit: cover;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: gray;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  transition: box-shadow 0.15s ease-in-out;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-media-container {
  transform: translate3d(0, 0, 0);
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-media-container.bpbm-screen-shared video[datatype=camera] {
  position: absolute;
  bottom: 5px;
  right: 5px;
  max-height: 60px;
  opacity: 0.7;
  transition: opacity 0.15s ease-in-out;
  cursor: grab;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-media-container.bpbm-screen-shared video[datatype=camera]:hover {
  opacity: 1;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner video {
  position: relative;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  object-fit: contain;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner audio {
  display: none !important;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner:hover .bpbm-admin-controls {
  display: flex !important;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner.bp-messages-group-call-video-secondary:hover .bpbm-caller-status {
  display: none !important;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner.bp-messages-group-call-video-secondary .bpbm-info-name .bpbm-name {
  display: none !important;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner.bp-messages-group-call-video-secondary .bpbm-info-name .bpbm-admin-controls {
  margin-left: 0 !important;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info {
  transform: translate3d(0, 0, 0);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  background: rgba(0, 0, 0, 0.1098039216);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-info-avatar {
  display: none;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info {
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info > * {
  padding: 5px 0;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info .bpbm-info-name {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info .bpbm-admin-controls {
  display: none;
  margin-left: 5px;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info .bpbm-admin-controls > span {
  text-align: center;
  position: relative;
  display: block;
  cursor: pointer;
  margin-right: 5px;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info .bpbm-caller-status {
  text-align: right;
}
.bp-messages-wrap .bp-messages-group-call-container .bp-messages-group-call-videos-grid > .bp-messages-group-call-input-video > .bp-messages-group-call-input-video-inner .bpbm-group-call-input-video-inner-info .bpbm-caller-info .bpbm-caller-status > span {
  margin-left: 5px;
}
.bp-messages-wrap .bp-messages-group-call-container .bpbm-call-settings {
  position: absolute;
  bottom: 55px;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
}
.bp-messages-wrap.bpbm-template-standard .list .messages-stack .content .messages-list > li .videos .video > .bpbm-video-container {
  position: relative;
  height: auto;
  padding: 0;
  margin: 0;
}
.bp-messages-wrap.bpbm-template-standard .list .messages-stack .content .messages-list > li .videos .video + .video {
  margin-top: 5px;
}

.bp-messages-wrap.bpbm-template-modern .list .messages-stack {
  display: flex;
  flex-direction: row;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content {
  width: 100%;
  max-width: calc(100% - 60px);
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li {
  flex-direction: row;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li:hover {
  background: none;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .bp-messages-iframe-container {
  margin-top: 3px;
  margin-bottom: 3px;
  border-radius: 2px;
  overflow: hidden;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .message-content.has-iframe {
  width: 100%;
  max-width: 600px;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .message-content .bm-reactions-selector {
  right: -7px;
  bottom: -7px;
  padding: 1px 4px;
  border: none;
  box-shadow: 0 1px 3px 0 #b0b0b0;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .bpbm-gif {
  display: block;
  border-radius: 2px;
  overflow: hidden;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .bpbm-attachments {
  margin: 4px 0;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .bpbm-attachments > * + * {
  margin-top: 5px;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .videos .video {
  padding: 0;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .videos .video video {
  border-radius: 2px;
  overflow: hidden;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .videos .video + .video {
  margin-top: 5px;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .images {
  padding: 3px 0;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .images a {
  display: block;
  width: auto;
  height: auto;
  background: none !important;
  padding-bottom: 0;
  border: 0;
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  max-width: 300px;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .images a + a {
  margin-top: 10px;
}
.bp-messages-wrap.bpbm-template-modern .list .messages-stack .content .messages-list > li .images a img {
  display: block !important;
}
.bp-messages-wrap.bpbm-template-modern .writing {
  padding-left: 30px;
}

.tippy-box[data-theme=bpbmtheme][data-animation=fade][data-state=hidden] {
  opacity: 0;
}

.tippy-box[data-theme=bpbmtheme] {
  position: relative;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  outline: 0;
  transition-property: transform, visibility, opacity;
}
.tippy-box[data-theme=bpbmtheme] .tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333;
}
.tippy-box[data-theme=bpbmtheme] .tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tippy-box[data-theme=bpbmtheme] .tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=top] > .tippy-arrow {
  bottom: 0;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=top] > .tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=bottom] > .tippy-arrow {
  top: 0;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=bottom] > .tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=left] > .tippy-arrow {
  right: 0;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=left] > .tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=right] > .tippy-arrow {
  left: 0;
}

.tippy-box[data-theme=bpbmtheme][data-placement^=right] > .tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right;
}

.tippy-box[data-theme=bpbmtheme][data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.bpbm-send-files {
  display: none !important;
  position: relative;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: var(--main-bm-color);
  text-align: center;
  cursor: pointer;
}
.bpbm-send-files.bpbm-has-files {
  display: block !important;
}

.new-message button[type=submit] {
  cursor: pointer;
  display: inline-block;
  color: white;
  background: var(--main-bm-color);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  user-select: none;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 1px 3px 0 #cccccc;
  margin-bottom: 20px;
}

.woocommerce-MyAccount-navigation-link--bp-messages .bp-better-messages-unread {
  margin-left: 5px;
}

#buddypress #profile-header #item-buttons > #bpbm-audio-call.generic-button > .grimlock-btn.bpbm-audio-call:before {
  font-family: var(--grimlock-icon-phone-font-family) !important;
  content: var(--grimlock-icon-phone) !important;
  font-weight: 100;
  font-style: normal;
}
#buddypress #profile-header #item-buttons > #bpbm-video-call.generic-button > .grimlock-btn.bpbm-video-call:before {
  font-family: var(--grimlock-icon-video-font-family) !important;
  content: var(--grimlock-icon-video) !important;
  font-weight: 100;
  font-style: normal;
}
#buddypress #profile-header #item-buttons .dropdown-menu > #bpbm-audio-call.generic-button > .grimlock-btn.bpbm-audio-call:before {
  min-width: 22px;
  margin-right: 0.5rem;
  color: inherit !important;
  opacity: 0.7;
  font-size: 1rem !important;
  display: inline-flex;
  min-height: 22px;
  line-height: 0;
  justify-content: center;
  align-items: center;
  top: -0.1em;
  position: relative;
  font-family: var(--grimlock-icon-phone-font-family) !important;
  content: var(--grimlock-icon-phone) !important;
  font-weight: 100;
  font-style: normal;
}
#buddypress #profile-header #item-buttons .dropdown-menu > #bpbm-video-call.generic-button > .grimlock-btn.bpbm-video-call:before {
  min-width: 22px;
  margin-right: 0.5rem;
  color: inherit !important;
  opacity: 0.7;
  font-size: 1rem !important;
  display: inline-flex;
  min-height: 22px;
  line-height: 0;
  justify-content: center;
  align-items: center;
  top: -0.1em;
  position: relative;
  font-family: var(--grimlock-icon-video-font-family) !important;
  content: var(--grimlock-icon-video) !important;
  font-weight: 100;
  font-style: normal;
}

/**
    Ultimate Member
 */
.um-profile-body.messages.messages-default {
  max-width: 100% !important;
}

.um-profile .um-messaging-btn {
  float: right;
  margin: 0;
}

.um-members-grid .um-member-card .um-members-bpbm-btn {
  margin: 2px 0;
}
.um-members-grid .um-member-card .um-members-bpbm-btn .um-button {
  padding: 10px 15px !important;
  transition: none !important;
  display: inline-block !important;
  margin: 0 auto !important;
  min-width: 110px;
  width: auto;
  text-align: center;
  font-size: 13px;
}

.um-members-list .um-member-card-footer .um-members-bpbm-btn {
  margin: 2px 0;
}
.um-members-list .um-member-card-footer .um-members-bpbm-btn .um-button {
  padding: 10.4px 15px !important;
  transition: none !important;
  display: inline-block !important;
  margin: 0 auto !important;
  min-width: 110px;
  width: auto;
  text-align: center;
  font-size: 13px;
}

.bpbm-users-avatars-list {
  display: block;
  width: 100%;
  max-width: 100%;
  padding-bottom: 10px;
  position: relative;
  margin: 0 0;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: hidden;
  user-select: none;
}
.bpbm-users-avatars-list .bpbm-users-avatars-list-item {
  display: inline-block;
  text-align: center;
  margin: 0 10px 0 0;
  width: 70px;
  overflow: hidden;
  vertical-align: top;
  cursor: pointer;
}
.bpbm-users-avatars-list .bpbm-users-avatars-list-item .bpbm-users-avatars-list-item-avatar {
  display: block;
  padding: 0 5px;
  text-align: center;
}
.bpbm-users-avatars-list .bpbm-users-avatars-list-item .bpbm-users-avatars-list-item-avatar img {
  margin: 0 auto !important;
  border-radius: 100%;
}
.bpbm-users-avatars-list .bpbm-users-avatars-list-item .bpbm-users-avatars-list-item-name {
  display: block;
  white-space: normal;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 5px;
  max-height: 30px;
  font-size: 11px;
  line-height: 15px;
}

.bp-messages-wrap .chat-tabs {
  padding: 0;
  margin: 0 !important;
  line-height: 35px;
  height: 35px;
  border-radius: 0;
  background: #ffffff;
  font-size: 13px;
  box-sizing: content-box !important;
  display: flex;
  width: 100%;
  user-select: none;
}
.bp-messages-wrap .chat-tabs.bpbm-mobile-only {
  height: auto;
  line-height: 37px;
  font-size: 14px;
}
.bp-messages-wrap .chat-tabs.bpbm-mobile-only.chat-tabs-border-top > div {
  border-top: 3px solid #f5f5f5;
  padding-bottom: 3px;
  padding-bottom: env(safe-area-inset-bottom);
}
.bp-messages-wrap .chat-tabs.bpbm-mobile-only.chat-tabs-border-top > div.active {
  border-top: 3px solid #dadada;
}
.bp-messages-wrap .chat-tabs > div {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.bp-messages-wrap .chat-tabs > div.active {
  background: #fafbfc;
}
.bp-messages-wrap .chat-tabs.chat-tabs-border-top > div {
  border-top: 1px solid #f5f5f5;
}
.bp-messages-wrap .chat-tabs.chat-tabs-border-top > div.active {
  border-top: 1px solid #dadada;
}
.bp-messages-wrap .chat-tabs.chat-tabs-border-bottom > div {
  border-bottom: 1px solid #f5f5f5;
}
.bp-messages-wrap .chat-tabs.chat-tabs-border-bottom > div.active {
  border-bottom: 1px solid #dadada;
}

.bp-messages-wrap .bpbm-mobile-only {
  display: none;
}
.bp-messages-wrap .bpbm-mobile-only.chat-footer .settings {
  display: none;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-mobile-only {
  display: block;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-mobile-only.chat-tabs {
  display: flex;
}
.bp-messages-wrap .bpbm-desktop-only {
  display: block;
}
.bp-messages-wrap.bp-messages-mobile .bpbm-desktop-only {
  display: none;
}
.bp-messages-wrap .bp-messages-side-threads .bpbm-friends-list, .bp-messages-wrap .bp-messages-side-threads .bpbm-um-friends-list, .bp-messages-wrap .bp-messages-side-threads .bpbm-ps-friends-list, .bp-messages-wrap .bp-messages-side-threads .bpbm-groups-list, .bp-messages-wrap .bp-messages-side-threads .bpbm-ps-groups-list, .bp-messages-wrap .bp-messages-side-threads .bpbm-bmum-groups-list,
.bp-messages-wrap .bp-messages-column .bpbm-friends-list,
.bp-messages-wrap .bp-messages-column .bpbm-um-friends-list,
.bp-messages-wrap .bp-messages-column .bpbm-ps-friends-list,
.bp-messages-wrap .bp-messages-column .bpbm-groups-list,
.bp-messages-wrap .bp-messages-column .bpbm-ps-groups-list,
.bp-messages-wrap .bp-messages-column .bpbm-bmum-groups-list {
  width: calc(100% - 1px);
}
.bp-messages-wrap .bp-messages-side-threads .bpbm-friends-list .bpbm-loader-icon, .bp-messages-wrap .bp-messages-side-threads .bpbm-um-friends-list .bpbm-loader-icon, .bp-messages-wrap .bp-messages-side-threads .bpbm-ps-friends-list .bpbm-loader-icon, .bp-messages-wrap .bp-messages-side-threads .bpbm-groups-list .bpbm-loader-icon, .bp-messages-wrap .bp-messages-side-threads .bpbm-ps-groups-list .bpbm-loader-icon, .bp-messages-wrap .bp-messages-side-threads .bpbm-bmum-groups-list .bpbm-loader-icon,
.bp-messages-wrap .bp-messages-column .bpbm-friends-list .bpbm-loader-icon,
.bp-messages-wrap .bp-messages-column .bpbm-um-friends-list .bpbm-loader-icon,
.bp-messages-wrap .bp-messages-column .bpbm-ps-friends-list .bpbm-loader-icon,
.bp-messages-wrap .bp-messages-column .bpbm-groups-list .bpbm-loader-icon,
.bp-messages-wrap .bp-messages-column .bpbm-ps-groups-list .bpbm-loader-icon,
.bp-messages-wrap .bp-messages-column .bpbm-bmum-groups-list .bpbm-loader-icon {
  text-align: center;
  font-size: 24px;
  margin-top: 40px;
}
.bp-messages-wrap .bpbm-empty-icon {
  font-size: 24px;
}
.bp-messages-wrap .bpbm-empty-text {
  font-size: 16px;
  margin: 10px 0;
}

.bp-messages-wrap .bpbm-user-options .bpbm-user-mobile-devices {
  margin: 10px 0;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-mobile-devices table {
  border: none;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-mobile-devices table td {
  border: 1px solid #e4e4e4;
  padding: 5px 10px;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-mobile-devices table + .bpbm-user-mobile-devices-empty {
  display: none;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-mobile-devices .bpbm-user-mobile-devices-empty {
  text-align: center;
  padding: 30px 0;
  border: 1px solid #e4e4e4;
}
.bp-messages-wrap .bpbm-user-options .bpbm-user-mobile-devices .bpbm-user-mobile-devices-empty i {
  display: block;
  font-size: 36px;
  margin: 10px 0;
}

body.beehive #bpbm-video-call.generic-button a:before {
  content: "\ec27" !important;
}
body.beehive #bpbm-audio-call.generic-button a:before {
  content: "\eb15" !important;
}

body.buddyboss-theme #header-messages-dropdown-elem:not(.selected) .bm-notification-list {
  display: none;
}

span.bm-user .avatar, a.bm-user .avatar {
  margin-right: 5px;
}
span.bm-user > *, a.bm-user > * {
  vertical-align: middle;
}

/**
    BuddyBoss v1.* Icons
 */
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .expandingButtons {
  font-size: 14px !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap:not(.amaran-wrapper, .bp-messages-popup) {
  border: 1px solid var(--bb-content-border-color);
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap.bp-messages-wrap-main {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1294117647);
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bmselectize-input {
  box-shadow: none !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .reply {
  background: white;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-emojionearea {
  box-shadow: none;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) #buddypress .bb_more_options .bb_more_options_list a.bpbm-audio-call:before {
  content: "\e91b";
  font-family: "bb-icons" !important;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  vertical-align: middle;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) #buddypress .bb_more_options .bb_more_options_list a.bpbm-video-call:before {
  content: "\e93f";
  font-family: "bb-icons" !important;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  vertical-align: middle;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap {
  /* i.fas.fa-paper-plane{
      font: normal normal normal 14px/1 "bb-icons" !important;
      font-size: 1.6em !important;


      &::before {
          content: '\e840';
      }
  } */
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-star {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-star::before {
  content: "\e90b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-cog {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-cog::before {
  content: "\e92a";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bpbm-configure-call i.fas.fa-cog {
  font-size: 20px;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .fas.fa-chevron-left {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .fas.fa-chevron-left::before {
  content: "\e87a";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.far.fa-edit {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.far.fa-edit::before {
  content: "\e89b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-expand-alt {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-expand-alt::before {
  content: "\e88b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-compress-alt {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-compress-alt::before {
  content: "\e8af";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-ellipsis-v {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-ellipsis-v::before {
  content: "\e81b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-ellipsis-h {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-ellipsis-h::before {
  content: "\e81a";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-window-maximize {
  font: normal normal normal 1em/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-window-maximize::before {
  content: "\e88b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-window-minimize {
  font: normal normal normal 1.3em/3em "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-window-minimize::before {
  content: "\e919";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) i.fas.fa-comments {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) i.fas.fa-comments::before {
  content: "\e97a";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-times {
  font: normal normal normal 1.6em/1.6em "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-times::before {
  content: "\e828";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .threads-list .thread .time .delete {
  right: 8px;
  top: 0;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap.bp-messages-mobile .chat-header .expandingButtons .fas.fa-ellipsis-v {
  line-height: 42px;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .new-message i.fas.fa-times {
  line-height: 40px !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-close > i,
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-close > i {
  line-height: 1.3em;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .controls span.close {
  margin-left: 0px;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .controls span.close i {
  letter-spacing: -5px;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .controls > div.expandingButtons {
  margin-left: 0;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .fas.fa-video,
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .fas.fa-video {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .fas.fa-video::before,
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .fas.fa-video::before {
  content: "\e93f";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .fas.fa-phone,
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .fas.fa-phone {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .fas.fa-phone::before,
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chats .chat .head .fas.fa-phone::before {
  content: "\e91b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-video {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-video::before {
  content: "\e93f";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-phone {
  font: normal normal normal 13px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-phone::before {
  content: "\e91b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .fas.fa-bell {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .fas.fa-bell::before {
  content: "\e86d";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-plus {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-plus::before {
  content: "\e922";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-ban {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-ban::before {
  content: "\e8c9";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-trash {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-trash::before {
  content: "\e937";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-bell-slash {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-bell-slash::before {
  content: "\e86a";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-user-circle {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-user-circle::before {
  content: "\e825";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-open::after {
  font: normal normal normal 1.3em/1.5em "bb-icons" !important;
  content: "\e821";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-close::after {
  font: normal normal normal 1.3em/1.5em "bb-icons" !important;
  content: "\e80a";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .message .bpbm-gifs-btn > i {
  font: normal normal normal 1.1em/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .message .bpbm-gifs-btn > i::before {
  content: "\e811";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .message .bpbm-gifs-btn > i > svg {
  display: none !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .message .bpbm-stickers-btn {
  top: 29px;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .message .bpbm-stickers-btn > i {
  font-size: 0.9em;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-paperclip {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-paperclip::before {
  content: "\e904";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-users {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-users::before {
  content: "\e96b";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-user-friends {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-user-friends::before {
  content: "\e93d";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-user {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-user::before {
  content: "\e825";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .fas.fa-home {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .fas.fa-home::before {
  content: "\e897";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-search {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap i.fas.fa-search::before {
  content: "\e81f";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .chat-header .mobileClose .fas.fa-window-close {
  line-height: 40px;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i {
  font: normal normal normal 14px/1 "bb-icons" !important;
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i:before {
  font-weight: normal;
  content: "\e8cd";
}
body.buddyboss-theme:not(.bb-template-v1):not(.bb-template-v2) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite.active i::before {
  content: "\e90b";
}

body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) #buddypress .bb_more_options .bb_more_options_list a.bpbm-audio-call:before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) #buddypress .bb_more_options .bb_more_options_list a.bpbm-audio-call:before {
  content: "\eeef";
  font-family: "bb-icons" !important;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  vertical-align: middle;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) #buddypress .bb_more_options .bb_more_options_list a.bpbm-video-call:before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) #buddypress .bb_more_options .bb_more_options_list a.bpbm-video-call:before {
  content: "\ef65";
  font-family: "bb-icons" !important;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  vertical-align: middle;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap {
  /* i.fas.fa-paper-plane{
      font: normal normal normal 14px/1 "bb-icons" !important;
      font-size: 1.6em !important;


      &::before {
          content: '\e840';
      }
  } */
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .expandingButtons, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .expandingButtons {
  font-size: 14px !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap:not(.amaran-wrapper, .bp-messages-popup), body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap:not(.amaran-wrapper, .bp-messages-popup) {
  background: var(--bb-content-background-color);
  border: 1px solid var(--bb-content-border-color);
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap.bp-messages-wrap-main, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap.bp-messages-wrap-main {
  box-shadow: none;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bmselectize-input, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bmselectize-input {
  box-shadow: none !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header {
  background: var(--bb-content-background-color);
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .reply, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .reply {
  background: var(--bb-content-background-color);
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-emojionearea, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-emojionearea {
  box-shadow: none;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-group-call-controls-v2 .bp-messages-group-call-controls-buttons > span > i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-group-call-controls-v2 .bp-messages-group-call-controls-buttons > span > i {
  line-height: 34px !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-star, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-star {
  font: normal normal 300 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-star::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-star::before {
  content: "\ef32";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-cog, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-cog {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-cog::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-cog::before {
  content: "\ee27";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bpbm-configure-call i.fas.fa-cog, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bpbm-configure-call i.fas.fa-cog {
  font-size: 20px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-chevron-left, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-chevron-left {
  font: normal normal normal 1.6em/1 "bb-icons" !important;
  position: relative;
  top: 2px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-chevron-left::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-chevron-left::before {
  content: "\e8ab";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.far.fa-edit, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.far.fa-edit {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.far.fa-edit::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.far.fa-edit::before {
  content: "\ee5a";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-expand-alt, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-expand-alt {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-expand-alt::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-expand-alt::before {
  content: "\ee67";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-compress-alt, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-compress-alt {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-compress-alt::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-compress-alt::before {
  content: "\eed5";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-v, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-v {
  font: normal normal 300 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-v::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-v::before {
  content: "\ee5d";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-h, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-h {
  font: normal normal 300 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-h::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ellipsis-h::before {
  content: "\ee5c";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-maximize, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-maximize {
  font: normal normal normal 1.2em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-maximize::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-maximize::before {
  content: "\eed3";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-minimize, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-minimize {
  font: normal normal 500 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-minimize::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-window-minimize::before {
  content: "\eed8";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) i.fas.fa-comments, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) i.fas.fa-comments {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) i.fas.fa-comments::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) i.fas.fa-comments::before {
  content: "\ee31";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) .empty-thread i.fas.fa-comments, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) .empty-thread i.fas.fa-comments {
  font: normal normal normal 50px/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) .empty-thread i.fas.fa-comments::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap:not(#bp-better-messages-mini-mobile-open) .empty-thread i.fas.fa-comments::before {
  content: "\ee31";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .thread-not-selected .empty .bpbm-empty-icon i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .thread-not-selected .empty .bpbm-empty-icon i {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .thread-not-selected .empty .bpbm-empty-icon i::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .thread-not-selected .empty .bpbm-empty-icon i::before {
  content: "\ee31";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-times, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-times {
  font: normal normal normal 1.6em/1.6em "bb-icons" !important;
  margin-top: 1.2px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-times::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-times::before {
  content: "\e828";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .amaran-close i.fas.fa-times, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .amaran-close i.fas.fa-times {
  font-size: 1.3em !important;
  line-height: 1.3em !important;
  margin-top: 0 !important;
  top: -3px !important;
  position: relative;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .threads-list .thread .time .delete, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .threads-list .thread .time .delete {
  right: 8px;
  top: 0;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap.bp-messages-mobile .chat-header .expandingButtons .fas.fa-ellipsis-v, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap.bp-messages-mobile .chat-header .expandingButtons .fas.fa-ellipsis-v {
  line-height: 42px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .new-message i.fas.fa-times, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .new-message i.fas.fa-times {
  line-height: 40px !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-close > i,
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-close > i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bpbm-gifs-selector .bpbm-gifs-head .bpbm-gifs-close > i,
body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bpbm-stickers-selector .bpbm-stickers-head .bpbm-stickers-close > i {
  line-height: 1.3em;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .controls span.close, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .controls span.close {
  margin-left: 0;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .controls span.close i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .controls span.close i {
  letter-spacing: -5px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .controls > div.expandingButtons, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .controls > div.expandingButtons {
  margin-left: 0;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-video, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-video {
  font: normal normal normal 1.4em/1 "bb-icons" !important;
  position: relative;
  top: 1px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-video::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-video::before {
  content: "\ef65";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-phone, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-phone {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
  position: relative;
  top: 1px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-phone::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .fas.fa-phone::before {
  content: "\eeef";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-video, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-video {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-video::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-video::before {
  content: "\ef65";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-phone, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-phone {
  font: normal normal normal 1.1em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-phone::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chats .chat .head .fas.fa-phone::before {
  content: "\eeef";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-video, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-video {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-video::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-video::before {
  content: "\ef65";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-phone, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-phone {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-phone::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-messages-user-list .user .actions .fas.fa-phone::before {
  content: "\eeef";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-bell, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-bell {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-bell::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-bell::before {
  content: "\e86d";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-plus, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-plus {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-plus::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-plus::before {
  content: "\eef9";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ban, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ban {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ban::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-ban::before {
  content: "\ee08";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-trash, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-trash {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-trash::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-trash::before {
  content: "\ef48";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-bell-slash, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-bell-slash {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-bell-slash::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-bell-slash::before {
  content: "\e86a";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-circle, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-circle {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-circle::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-circle::before {
  content: "\ef53";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-open::after, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-open::after {
  font: normal normal normal 1.3em/1.5em "bb-icons" !important;
  content: "\ee5f";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-close::after, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .bp-emojionearea .bp-emojionearea-button > div.bp-emojionearea-button-close::after {
  font: normal normal normal 1.3em/1.5em "bb-icons" !important;
  content: "\e828";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-gifs-btn > i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-gifs-btn > i {
  font: normal normal normal 1.1em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-gifs-btn > i::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-gifs-btn > i::before {
  content: "\eea8";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-gifs-btn > i > svg, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-gifs-btn > i > svg {
  display: none !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-stickers-btn, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-stickers-btn {
  top: 29px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-stickers-btn > i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .message .bpbm-stickers-btn > i {
  font-size: 0.9em;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-paperclip, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-paperclip {
  font: normal normal normal 1.2em/1 "bb-icons" !important;
  position: relative;
  top: 1px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-paperclip::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-paperclip::before {
  content: "\eee6";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-users, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-users {
  font: normal normal normal 1.5em/1 "bb-icons" !important;
  position: relative;
  top: 2px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-users::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-users::before {
  content: "\e95d";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-friends, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-friends {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-friends::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user-friends::before {
  content: "\ef5b";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-user::before {
  content: "\ef52";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-home, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-home {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-home::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-home::before {
  content: "\eeb3";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-paper-plane, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-paper-plane {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-paper-plane::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .fas.fa-paper-plane::before {
  content: "\eee7";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-search, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-search {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-search::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap i.fas.fa-search::before {
  content: "\ef10";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .mobileClose .fas.fa-window-close, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .chat-header .mobileClose .fas.fa-window-close {
  line-height: 40px;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i {
  font: normal normal normal 1.3em/1 "bb-icons" !important;
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i:before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite i:before {
  font-weight: normal;
  content: "\ef32";
}
body.buddyboss-theme.bb-template-v1:not(.wcfm-dashboard-page) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite.active i::before, body.buddyboss-theme.bb-template-v2:not(.wcfm-dashboard-page) .bp-messages-wrap .list .messages-stack .content .messages-list > li .favorite.active i::before {
  font-weight: 300;
  content: "\ef32";
}

.bpbm-checkbox {
  position: absolute !important;
  z-index: -1 !important;
  opacity: 0 !important;
}
.bpbm-checkbox + label {
  display: inline-flex !important;
  align-items: center !important;
  user-select: none !important;
  padding: 0 !important;
}
.bpbm-checkbox + label::after {
  content: none !important;
}
.bpbm-checkbox + label::before {
  content: "";
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  border: 1px solid #adb5bd !important;
  border-radius: 0.25em !important;
  margin-right: 0.5em !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 50% 50% !important;
  transform: none !important;
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
}
.bpbm-checkbox:checked + label::before {
  border-color: var(--main-bm-color) !important;
  background-color: var(--main-bm-color) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e") !important;
}
.bpbm-checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: var(--main-bm-color) !important;
}
.bpbm-checkbox:not(:disabled):active + label::before {
  background-color: var(--main-bm-color) !important;
  border-color: var(--main-bm-color) !important;
}
.bpbm-checkbox:focus + label::before {
  box-shadow: 0 0 0 0.2rem var(--main-bm-color-25) !important;
}
.bpbm-checkbox:focus:not(:checked) + label::before {
  border-color: var(--main-bm-color) !important;
}
.bpbm-checkbox:disabled + label::before {
  background-color: #e9ecef !important;
}

.bm-loading {
  display: flex;
  text-align: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.bm-loading .bm-loading-icon {
  display: block;
  font-size: 2rem;
}
.bm-loading .bm-loading-text {
  display: block;
  font-size: 1rem;
  padding-top: 1rem;
}

/*# sourceMappingURL=bp-messages.min.css.map */
