:root {
  --white: #fff;
  --color-gray-100: #e4e4e5;
  --color-gray-200: #e1e4e9;
  --color-gray-300: #aeb0b2;
  --color-gray-400: #929498;
  --color-gray-500: #5e6063;
  --color-gray-600: #444648;
  --color-gray-700: #2b2b2d;
  --color-gray-800: #111112;
  --color-primary: rgb(0, 132, 209);
  --color-primary--dark: rgb(0, 99, 175);
  --color-primary--darker: rgb(2, 55, 95);
  --color-primary--light: rgb(25, 120, 194);
  --color-primary--lighter: rgb(185, 216, 240);
  --color-secondary: rgb(250, 81, 29);
  --color-secondary--dark: rgb(214, 50, 21);
  --color-secondary--darker: rgb(185, 43, 18);
  --color-secondary--light: rgb(250, 198, 129);
  --color-secondary--lighter: rgb(255, 236, 214);
  --color-success: rgb(3, 196, 83);
  --color-success--light: rgb(228, 255, 239);
  --color-danger: #E61C1C;
  --color-warning: rgb(255, 127, 8);
  --color-info: rgb(8, 185, 255);
  --header-bg: linear-gradient(to right, #003E58 0%, #08538B 100%);
  --header-color: #ffffff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  background: #fff url(../images/bg.svg) no-repeat center top;
  background-size: 100% auto;
  background-attachment: fixed;
  color: #444448;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

p,
dl,
address,
ul,
ol {
  -webkit-font-feature-settings: 'kern' 1, "kern";
          font-feature-settings: 'kern' 1, "kern";
  -webkit-font-kerning: normal;
          font-kerning: normal;
  margin: 0 0 1rem 0;
}

ul {
  list-style-type: none;
}

strong {
  font-weight: 700;
}

a {
  color: inherit;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  -webkit-column-break-before: avoid-column;
     -moz-column-break-before: avoid-column;
          break-before: avoid-column;
  page-break-after: always;
  -webkit-column-break-after: always;
     -moz-column-break-after: always;
          break-after: always;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  color: #111112;
  font-weight: 600;
  line-height: 1.2em;
  font-family: "Montserrat", sans-serif;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong {
  font-weight: 600;
}

.color-primary {
  color: rgb(0, 132, 209);
  color: var(--color-primary);
}

.color-secondary {
  color: rgb(250, 81, 29);
  color: var(--color-secondary);
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@-webkit-keyframes FadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes FadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes FadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes FadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes SlideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes SlideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes SlideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes SlideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes Fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes Fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes FadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes FadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes Slogan {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes Slogan {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.icon {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor !important;
  vertical-align: middle;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.btn {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  border: 0;
  margin: 0;
  outline: none;
  line-height: 1;
  padding: 0 1.4rem;
  height: 2.5rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
}

.btn:not(.btn--link), .btn:not(.btn--text) {
  border-radius: 0.2rem;
  font-weight: 600;
  -webkit-box-shadow: 0 1px 2px 0 rgba(30, 38, 51, 0.02), 0 2px 1px -2px rgba(30, 38, 51, 0.01), 0 1px 3px 0 rgba(30, 38, 51, 0.08);
          box-shadow: 0 1px 2px 0 rgba(30, 38, 51, 0.02), 0 2px 1px -2px rgba(30, 38, 51, 0.01), 0 1px 3px 0 rgba(30, 38, 51, 0.08);
}

.btn:not(.btn--link):hover, .btn:not(.btn--text):hover {
  -webkit-box-shadow: 0 1px 2px 0 rgba(30, 38, 51, 0.02), 0 2px 1px -2px rgba(30, 38, 51, 0.01), 0 1px 3px 0 rgba(30, 38, 51, 0.08);
          box-shadow: 0 1px 2px 0 rgba(30, 38, 51, 0.02), 0 2px 1px -2px rgba(30, 38, 51, 0.01), 0 1px 3px 0 rgba(30, 38, 51, 0.08);
}

.btn:hover:not(.btn--text) {
  text-decoration: none;
}

.btn--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.btn--sm {
  padding: 0 1rem;
  height: 2rem;
  font-size: 0.875rem;
}

.btn--xs {
  padding: 0 0.875rem;
  height: 1.815rem;
  font-size: 0.65rem;
}

.btn--lg {
  padding: 0 2rem;
  height: 2.625rem;
  font-size: 1rem;
}

.btn--primary {
  background: rgb(0, 132, 209);
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: rgb(0, 99, 175);
  background: var(--color-primary--dark);
}

.btn--primary:focus:active {
  background: rgb(2, 55, 95);
  background: var(--color-primary--darker);
}

.btn--secondary {
  background: rgb(250, 81, 29);
  background: var(--color-secondary);
  color: #fff;
}

.btn--secondary:hover {
  background: rgb(214, 50, 21);
  background: var(--color-secondary--dark);
}

.btn--secondary:focus:active {
  background: rgb(185, 43, 18);
  background: var(--color-secondary--darker);
}

.btn--text {
  color: inherit;
}

.modal {
  display: none;
  z-index: 1000;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 19, 19, 0.5);
  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;
  will-change: transform;
  z-index: 1100;
}

.modal__container {
  background-color: #fff;
  color: #444448;
  padding: 1rem;
  max-width: 34rem;
  max-height: calc(100vh - 1rem);
  border-radius: 0.2rem;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  will-change: transform;
  z-index: 1200;
  -webkit-box-shadow: 0 8px 17px 2px rgba(30, 38, 51, 0.08), 0 3px 14px 2px rgba(30, 38, 51, 0.05), 0 5px 5px -3px rgba(30, 38, 51, 0.2);
          box-shadow: 0 8px 17px 2px rgba(30, 38, 51, 0.08), 0 3px 14px 2px rgba(30, 38, 51, 0.05), 0 5px 5px -3px rgba(30, 38, 51, 0.2);
  margin: 1rem;
}

@media screen and (min-width: 540px) {
  .modal__container {
    padding: 1.5rem;
  }
}

.modal__header {
  position: relative;
  margin-bottom: 1rem;
}

@media screen and (min-width: 540px) {
  .modal__header {
    margin-bottom: 1.5rem;
  }
}

.modal__title {
  font-size: 1.2rem;
  text-align: center;
  padding-top: 1.5rem;
}

.modal__title br {
  display: none;
}

@media screen and (min-width: 540px) {
  .modal__title {
    font-size: 1.6rem;
  }
  .modal__title br {
    display: inline-block;
  }
}

.modal__close {
  background: transparent;
  border: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  font-size: 2rem;
  position: absolute;
  right: 0;
  top: -0.5rem;
  padding: 0;
  height: auto;
  opacity: 0.4;
}

.modal__close:hover {
  opacity: 0.7;
}

.modal__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal__footer .btn {
  max-width: 20rem;
}

.modal__media {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 540px) {
  .modal__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.modal__media__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.5rem;
}

.modal__media__image img {
  width: 100%;
  border-radius: 0.2rem;
  max-width: 8rem;
  height: auto;
}

@media screen and (min-width: 540px) {
  .modal__media__image {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  .modal__media__image img {
    max-width: 12.5rem;
  }
}

.modal__media__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.container {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.form-control {
  position: relative;
  min-height: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: 100%;
  display: block;
  background-clip: padding-box;
  outline: 0;
  vertical-align: top;
  padding: 0 1.4rem;
  height: 2.5rem;
  border: 1px solid #e4e4e5;
  border-radius: 0.2rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "PT Serif", serif;
}

.form-control--sm {
  padding: 0 1rem;
  height: 2rem;
}

.form-control--xs {
  padding: 0 0.875rem;
  height: 1.815rem;
  font-size: 0.65rem;
}

.form-control--lg {
  padding: 0 1.4rem;
  height: 2.625rem;
  font-size: 1.125rem;
}

.form-group {
  position: relative;
  margin-bottom: 0.33333rem;
}

.header {
  background: -webkit-gradient(linear, left top, right top, from(#003E58), to(#08538B));
  background: linear-gradient(to right, #003E58 0%, #08538B 100%);
  background: var(--header-bg);
  color: #ffffff;
  color: var(--header-color);
  padding: 1rem 0;
  -webkit-box-shadow: 0 1px 2px 0 rgba(30, 38, 51, 0.02), 0 2px 1px -2px rgba(30, 38, 51, 0.01), 0 1px 3px 0 rgba(30, 38, 51, 0.08);
          box-shadow: 0 1px 2px 0 rgba(30, 38, 51, 0.02), 0 2px 1px -2px rgba(30, 38, 51, 0.01), 0 1px 3px 0 rgba(30, 38, 51, 0.08);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 2.875rem;
}

.header__logo {
  color: inherit;
}

.header__logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
}

.header__logo img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .header__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.header__logo__text {
  line-height: 1;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 0.5rem;
  color: inherit;
}

.header__logo + .header__slogan {
  margin-left: 1rem;
}

.header__menu {
  display: none;
}

@media screen and (min-width: 540px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__menu .btn {
    margin-left: 0.5rem;
  }
}

@media screen and (min-width: 540px) {
  .header__menu-mobile {
    display: none;
  }
}

.section {
  padding: 1rem 0;
}

.section__title {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section__title a {
  color: #E61C1C;
  color: var(--color-danger);
}

@media screen and (min-width: 768px) {
  .section {
    padding: 2rem 0;
  }
}

.section__search {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .section__search {
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section__search .section__title {
    margin-bottom: 0;
  }
  .section__search .search {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}

.section--pb-0 {
  padding-bottom: 0;
}

.chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0 20px 34px 4px rgba(30, 38, 51, 0.08), 0 6px 30px 8px rgba(30, 38, 51, 0.07), 0 10px 16px -7px rgba(30, 38, 51, 0.3);
          box-shadow: 0 20px 34px 4px rgba(30, 38, 51, 0.08), 0 6px 30px 8px rgba(30, 38, 51, 0.07), 0 10px 16px -7px rgba(30, 38, 51, 0.3);
}

@media screen and (min-width: 540px) {
  .chat {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.chat__model {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding: 0.5rem;
  background: #F2F3F6;
  border-radius: 0.2rem 0.2rem 0 0;
}

@media screen and (min-width: 540px) {
  .chat__model {
    margin: 0;
    border-radius: 0.2rem 0 0 0.2rem;
  }
}

@media screen and (min-width: 1024px) {
  .chat__model {
    padding: 1.5rem;
  }
}

.chat__model__header {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.chat__model__header .status {
  font-size: 0.875rem;
}

@media screen and (min-width: 540px) {
  .chat__model__header {
    margin: 0 0 0.7em 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.chat__model__image {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  border-radius: 0.2rem 0.2rem 0 0;
  overflow: hidden;
  margin: -0.5rem -0.5rem 0.5rem -0.5rem;
}

.chat__model__image img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 540px) {
  .chat__model__image {
    border-radius: 0.2rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
}

.chat__model__footer {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  margin: 0.5em 0 1em 0;
}

.chat__model__footer a {
  text-decoration: underline;
}

.chat__model__footer a:hover {
  text-decoration: none;
}

.chat__model__cta {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.chat__model__name {
  font-size: 1.215rem;
}

.chat__model__name a:hover {
  color: rgb(0, 132, 209);
  color: var(--color-primary);
}

.chat__board {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.chat__board__header {
  display: none;
}

@media screen and (min-width: 768px) {
  .chat__board__header {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.4rem;
    border-bottom: 1px solid #e4e4e5;
  }
}

.chat__board__title {
  margin: 0;
}

.chat__board__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.chat__board__scroll {
  overflow: auto;
  max-height: 50vh;
  padding: 1.4rem;
  width: 100%;
}

@media screen and (min-width: 540px) {
  .chat__board__scroll {
    max-height: 18rem;
  }
}

.chat__board__footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e4e4e5;
}

.chat__board__footer[focus-within] .chat__board__submit .btn {
  background: rgb(250, 81, 29);
  background: var(--color-secondary);
  color: #fff;
}

.chat__board__footer:focus-within .chat__board__submit .btn {
  background: rgb(250, 81, 29);
  background: var(--color-secondary);
  color: #fff;
}

.chat__board__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.chat__board__input .form-control {
  border: 0;
  padding-left: 1.4rem;
  padding-right: 0;
  font-size: 1rem;
}

.chat__board__submit .btn {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  border-radius: 0 0 0.2rem 0;
  color: rgb(250, 81, 29);
  color: var(--color-secondary);
}

.chat__board__submit .btn:hover {
  background: rgb(250, 81, 29);
  background: var(--color-secondary);
  color: #fff;
}

.chat__messages-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.chat__message {
  margin-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.chat__message__name {
  font-size: 0.65rem;
}

.chat__message__body {
  background: rgb(255, 236, 214);
  background: var(--color-secondary--lighter);
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  padding: 0.3em 1em;
}

.chat__message--user {
  margin-left: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.chat__message--user .chat__message__body {
  background: #F2F3F6;
  border-radius: 0.5rem 0 0.5rem 0.5rem;
}

.chat__message--typing {
  font-size: 0.65rem;
}

.chat__message--system .chat__message__body {
  background: rgb(255, 127, 8);
  background: var(--color-warning);
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  padding: 1em 1.5em;
  font-weight: 600;
  border: 4px double #fff;
}

.chat__message--system .chat__message__body a {
  text-decoration: underline;
}

.chat__message--system .chat__message__body a:hover {
  text-decoration: none;
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.05rem;
}

@media screen and (min-width: 540px) {
  .list {
    margin: 0 -0.1rem;
  }
}

.list__item {
  padding: 0.05rem;
  margin-bottom: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  max-width: 50%;
  padding: 0 0.1rem;
}

.list__item:hover .list__image img, .list__item:focus .list__image img, .list__item:focus:active .list__image img {
  background: #111112;
  opacity: 1;
}

@media screen and (min-width: 540px) {
  .list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.333%;
            flex: 1 1 33.333%;
    max-width: 33.333%;
    padding: 0 0.1rem;
  }
}

@media screen and (min-width: 768px) {
  .list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 25%;
            flex: 1 1 25%;
    max-width: 25%;
    padding: 0 0.1rem;
  }
}

@media screen and (min-width: 1024px) {
  .list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20%;
            flex: 1 1 20%;
    max-width: 20%;
  }
}

.list__image {
  overflow: hidden;
}

.list__image img {
  width: 100%;
  display: block;
  border-radius: 0.2rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0.9;
}

.list__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.5rem;
}

.list__title {
  margin-right: 0.5rem;
  min-width: 0;
}

.list__name {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.list__meta {
  font-size: 0.65rem;
  margin: 0;
}

.list .status {
  font-size: 0.65rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.list--row {
  padding: 0;
  margin: 0 0 1rem 0;
}

@media screen and (min-width: 540px) {
  .list--row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 1024px) {
  .list--row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.list--row .list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: 0.2rem;
  margin-bottom: 0.2rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  border: 1px solid rgb(185, 216, 240);
  border: 1px solid var(--color-primary--lighter);
}

@media screen and (min-width: 540px) {
  .list--row .list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 0.5rem);
            flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .list--row .list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.333% - 0.5rem);
            flex: 1 1 calc(33.333% - 0.5rem);
    max-width: calc(33.333% - 0.5rem);
  }
}

@media screen and (min-width: 1024px) {
  .list--row .list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 0.2rem;
  }
}

.list--row .list__item:hover, .list--row .list__item:focus, .list--row .list__item:focus:active {
  background: rgb(0, 99, 175);
  background: var(--color-primary--dark);
  border: 1px solid rgb(0, 99, 175);
  border: 1px solid var(--color-primary--dark);
  color: #fff;
}

.list--row .list__item:hover .list__name, .list--row .list__item:focus .list__name, .list--row .list__item:focus:active .list__name {
  color: #fff;
}

.list--row .list__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.33%;
          flex: 0 1 33.33%;
  max-width: 8rem;
  margin-right: 1rem;
}

.list--row .list__image img {
  border-radius: 0.2rem;
}

.list--row .list__body {
  display: block;
  background: transparent;
  padding: 0;
}

.list-cta {
  margin-top: 2rem;
  text-align: center;
}

.footer {
  font-size: 0.875rem;
}

.footer .container {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.footer .container::before {
  content: "";
  display: block;
  margin-bottom: 0.5rem;
  border-top: 1px solid #e4e4e5;
}

.status {
  position: relative;
  display: inline-block;
  border: 1px solid rgb(3, 196, 83);
  border: 1px solid var(--color-success);
  background: rgb(228, 255, 239);
  background: var(--color-success--light);
  color: rgb(3, 196, 83);
  color: var(--color-success);
  border-radius: 2em;
  padding: 0.1em 0.8em;
  font-weight: 600;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
}

.navigation-wrapper {
  margin: 0.5rem 0 -0.5rem 0;
}

@media screen and (min-width: 1024px) {
  .navigation-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.navigation {
  display: none;
}

@media screen and (min-width: 1024px) {
  .navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-weight: 600;
    margin: 0;
    font-size: 0.875rem;
    min-height: 3rem;
    font-family: "Montserrat", sans-serif;
  }
  .navigation__item {
    text-transform: uppercase;
    height: 2.5rem;
    padding: 0.93333rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 0.2rem;
  }
  .navigation__item:hover {
    color: rgb(185, 216, 240);
    color: var(--color-primary--lighter);
  }
  .navigation__item.is-active {
    background: rgba(0, 0, 0, 0.2);
  }
}

.categories {
  font-size: 0.875rem;
}

@media screen and (min-width: 540px) {
  .categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.categories__item.is-active dt {
  color: rgb(250, 81, 29);
  color: var(--color-secondary);
}

.categories__item.is-active dt::before {
  background: rgb(250, 81, 29);
  background: var(--color-secondary);
  width: 10px;
}

@media screen and (min-width: 540px) {
  .categories__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}

@media screen and (min-width: 768px) {
  .categories__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
  }
}

@media screen and (min-width: 1024px) {
  .categories__item {
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.categories dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0.2em 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.categories dt {
  margin: 0;
  color: rgb(0, 132, 209);
  color: var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.categories dt::before {
  content: "";
  background: rgb(0, 132, 209);
  background: var(--color-primary);
  width: 6px;
  height: 2px;
  display: block;
  margin-right: 1rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.categories dd {
  color: #929298;
  margin: 0;
  font-size: 0.65rem;
}

.categories a:hover dt {
  color: rgb(2, 55, 95);
  color: var(--color-primary--darker);
}

.categories a:hover dt::before {
  background: rgb(25, 120, 194);
  background: var(--color-primary--light);
  width: 10px;
}

.content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .content-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-wrap__sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
    padding-left: 2rem;
  }
  .content-wrap__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/*# sourceMappingURL=main.css.map */