@charset "UTF-8";
.snackbar-container {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transition-property: top, right, bottom, left, opacity;
  transition-property: top, right, bottom, left, opacity;
  position: fixed;
  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;
  color: white;
  padding: 0.75rem 1.25rem;
  bottom: -100px;
  top: -100px;
  opacity: 0;
  z-index: 9999;
}

@media (min-width: 640px) {
  .snackbar-container.bottom-left--logout {
    min-width: 100px;
    margin: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (max-width: 640px) {
  .snackbar-container.bottom-left--logout {
    width: 92% !important;
  }
}

.snackbar-container .action {
  background: none;
  display: inline-block;
  border: none;
  font-size: inherit;
  text-transform: uppercase;
  color: #4caf50;
  margin: 0 0 0 24px;
  padding: 0;
  min-width: 50px;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  cursor: pointer;
}

.snackbar--error,
.snackbar--info,
.snackbar--success,
.snackbar--warning {
  border-radius: 6px;
}

.snackbar--success {
  border: 1px solid #c3e6cb;
  -webkit-box-shadow: 0 8px 6px -6px rgba(21, 87, 36, 0.2);
          box-shadow: 0 8px 6px -6px rgba(21, 87, 36, 0.2);
}

.snackbar--info {
  border: 1px solid #bee5eb;
  -webkit-box-shadow: 0 8px 6px -6px rgba(209, 236, 241, 0.2);
          box-shadow: 0 8px 6px -6px rgba(209, 236, 241, 0.2);
}

.snackbar--error {
  border: 1px solid #f5c6cb;
  -webkit-box-shadow: 0 8px 6px -6px rgba(248, 215, 218, 0.2);
          box-shadow: 0 8px 6px -6px rgba(248, 215, 218, 0.2);
}

.snackbar--warning {
  border: 1px solid #fbd24a;
  -webkit-box-shadow: 0 8px 6px -6px rgba(248, 215, 218, 0.2);
          box-shadow: 0 8px 6px -6px rgba(248, 215, 218, 0.2);
}

@media (min-width: 640px) {
  .snackbar-container {
    min-width: 288px;
    max-width: 568px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 6px;
    margin: 24px;
  }
}

@media (max-width: 640px) {
  .snackbar-container {
    left: 0;
    right: 0;
    width: 100%;
  }
}

.snackbar-pos.bottom-center {
  top: auto !important;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.snackbar-pos.bottom-left {
  top: auto !important;
  bottom: 0;
  left: 0;
}

.snackbar-pos.bottom-left--logout {
  top: auto !important;
  bottom: 15px;
  left: 75px;
}

@media (min-width: 1200px) {
  .snackbar-pos.bottom-left--logout {
    left: 220px;
  }
}

@media (max-width: 1023px) {
  .snackbar-pos.bottom-left--logout {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.sidebar--open .snackbar-pos.bottom-left--logout {
  left: 220px;
}

.snackbar-pos.bottom-right {
  top: auto !important;
  bottom: 0;
  right: 0;
}

.snackbar-pos.top-left {
  bottom: auto !important;
  top: 0;
  left: 0;
}

.snackbar-pos.top-center {
  bottom: auto !important;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.snackbar-pos.top-right {
  bottom: auto !important;
  top: 0;
  right: 0;
}

@media (max-width: 640px) {
  .snackbar-pos.bottom-center,
  .snackbar-pos.top-center {
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}

.pika-single:before, .pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both;
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}

.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  color: #333;
  background-color: #fff;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}

.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.pika-button {
  cursor: pointer;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.is-today .pika-button {
  color: #33aaff;
  font-weight: bold;
}

.is-selected .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  -webkit-box-shadow: inset 0 1px 3px #178fe5;
          box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
  color: #999;
  opacity: .3;
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
}

.pika-button:hover {
  color: #fff;
  background: #ff8000;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
}

.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-inrange .pika-button {
  color: #666;
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
}

/* Primary colors from logo */
/* add all flexbox prefixes */
body {
  background-color: #f3f3f3;
  margin: 0;
  overflow-x: hidden;
}

label.required::after {
  content: "*";
  color: #FBAF3F;
  margin-left: 2px;
}

fieldset {
  border: none;
}

.wrapper main {
  width: 100vw;
}

/* montserrat-regular - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.svg#Montserrat") format("svg");
}

/* montserrat-500 - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.svg#Montserrat") format("svg");
}

/* montserrat-500italic - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Medium Italic"), local("Montserrat-MediumItalic"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.svg#Montserrat") format("svg");
}

/* montserrat-600 - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.svg#Montserrat") format("svg");
}

/* montserrat-600italic - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat SemiBold Italic"), local("Montserrat-SemiBoldItalic"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.svg#Montserrat") format("svg");
}

/* montserrat-700 - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.svg#Montserrat") format("svg");
}

/* montserrat-700italic - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.svg#Montserrat") format("svg");
}

/* asap-regular - latin-ext_latin */
@font-face {
  font-family: 'Asap';
  font-style: normal;
  font-weight: 400;
  src: url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Asap Regular"), local("Asap-Regular"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.svg#Asap") format("svg");
}

/* asap-700 - latin-ext_latin */
@font-face {
  font-family: 'Asap';
  font-style: normal;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Asap Bold"), local("Asap-Bold"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.svg#Asap") format("svg");
}

/* asap-700italic - latin-ext_latin */
@font-face {
  font-family: 'Asap';
  font-style: italic;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Asap Bold Italic"), local("Asap-BoldItalic"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.svg#Asap") format("svg");
}

/* montserrat-regular - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-regular.svg#Montserrat") format("svg");
}

/* montserrat-500 - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500.svg#Montserrat") format("svg");
}

/* montserrat-500italic - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 500;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Medium Italic"), local("Montserrat-MediumItalic"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-500italic.svg#Montserrat") format("svg");
}

/* montserrat-600 - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600.svg#Montserrat") format("svg");
}

/* montserrat-600italic - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 600;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat SemiBold Italic"), local("Montserrat-SemiBoldItalic"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-600italic.svg#Montserrat") format("svg");
}

/* montserrat-700 - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700.svg#Montserrat") format("svg");
}

/* montserrat-700italic - latin-ext_latin */
@font-face {
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Montserrat Bold Italic"), local("Montserrat-BoldItalic"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/montserrat-v14-latin-ext_latin-700italic.svg#Montserrat") format("svg");
}

/* asap-regular - latin-ext_latin */
@font-face {
  font-family: 'Asap';
  font-style: normal;
  font-weight: 400;
  src: url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Asap Regular"), local("Asap-Regular"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-regular.svg#Asap") format("svg");
}

/* asap-700 - latin-ext_latin */
@font-face {
  font-family: 'Asap';
  font-style: normal;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Asap Bold"), local("Asap-Bold"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700.svg#Asap") format("svg");
}

/* asap-700italic - latin-ext_latin */
@font-face {
  font-family: 'Asap';
  font-style: italic;
  font-weight: 700;
  src: url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Asap Bold Italic"), local("Asap-BoldItalic"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.eot?#iefix") format("embedded-opentype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.woff2") format("woff2"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.woff") format("woff"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.ttf") format("truetype"), url("https://hosted.justathought.co.nz/assets/fonts/asap-v11-latin-ext_latin-700italic.svg#Asap") format("svg");
}

.snackbar-container, a,
body,
input,
p,
td,
textarea, .btn,
button {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 500;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
legend,
th,
table caption, .card .card__headline, .stories__lesson .main__content .sv-action.nav-button .sv-action__content .nav-input {
  font-family: 'Asap', sans-serif;
  font-weight: 700;
  font-style: normal;
}

a,
body,
input,
p,
td,
textarea {
  color: #585170;
}

h1,
h2,
h3,
h4,
h5,
h6,
legend,
th,
table caption {
  color: #4E4B6D;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 2.3703703686em;
}

h2 {
  font-size: 1.7777777769em;
}

h3 {
  font-size: 1.333333333em;
}

legend {
  font-size: 24px;
  padding-left: 0;
  padding-bottom: 8px;
}

th, table caption {
  padding: 0;
  text-align: left;
}

p {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.4em;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  font-weight: 500;
  color: #5261ae;
}

a:hover {
  color: #313a69;
  border: #313a69;
  text-decoration: underline;
}

.terms {
  font-weight: 400;
  font-size: 12px;
  color: #6b6a6a;
  line-height: 18px;
  padding-bottom: 24px;
}

.btn,
button {
  font-weight: 500;
  -ms-flex-item-align: center;
      align-self: center;
}

.whiteText {
  color: #F3F3F3 !important;
}

.terms--color {
  color: #6b6a6a;
}

.heading--large {
  display: block;
  font-size: 2.625rem;
}

.heading--medium {
  display: block;
  font-size: 1.784rem;
}

.heading--small {
  display: block;
  font-size: 1.471rem;
}

.heading--xsmall {
  display: block;
  font-size: 1.125rem;
}

@media print {
  @page {
    size: A4;
    margin: 1cm 5mm 1cm 0;
  }
  .freshdesk, .lesson__buttons, .breadcrumbs, .lesson__intro {
    display: none !important;
  }
  body,
  html {
    width: auto;
    border: 0;
    margin: 0;
    padding: 0;
    height: auto;
    background: #fff;
    float: none !important;
    page-break-after: avoid;
  }
  li a[href] {
    word-wrap: break-word;
  }
  li a[href]::after {
    content: " (" attr(href) ") ";
  }
  li {
    page-break-inside: avoid;
  }
  .page {
    display: block !important;
    overflow: auto;
    padding: 0 !important;
  }
  p {
    orphans: 6;
  }
  .stories__lesson .main__content .page .radio_group {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  nav {
    display: none !important;
  }
  img {
    display: none !important;
  }
  .popup-modal {
    display: none !important;
  }
  .aside.sidebar {
    display: none !important;
  }
  select {
    display: none !important;
  }
  body:last-child {
    page-break-after: auto;
  }
  .formfield {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .table__data-none {
    background: #fff !important;
    color: #738dae !important;
  }
  .input.textarea {
    width: 100%;
  }
  input,
  ol,
  table,
  textarea,
  ul {
    page-break-inside: auto;
  }
  table {
    width: 100%;
    page-break-before: avoid;
  }
  table th {
    background: #fff !important;
    color: #738dae !important;
  }
  th,
  tr {
    page-break-inside: avoid;
  }
  .summary__buttons {
    display: none !important;
  }
  .summary__intro {
    margin-bottom: 16px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .summary__intro--close {
    display: none;
  }
  td::before {
    background: none !important;
    color: #738dae !important;
  }
  .main__header {
    display: block !important;
    padding: 0 !important;
  }
  .main__header--help {
    display: none !important;
  }
  .main__header--logo {
    display: block !important;
  }
  .main__header--logo img {
    display: block !important;
  }
  .main__container {
    position: none !important;
    left: 0 !important;
    width: calc(100% - 4em) !important;
    background-color: #fff;
    padding: 2em !important;
  }
  .print__pagebreak {
    page-break-after: always;
  }
  .print__opacity--hide {
    opacity: 0;
  }
  .print__display--show {
    display: block !important;
  }
  .print__display--hide {
    display: none !important;
  }
  .print__display--force {
    -webkit-print-color-adjust: exact;
  }
  .print__display--inline {
    display: inline-block !important;
  }
  .print__display--block {
    display: block !important;
  }
  .print__width--100 {
    width: 100% !important;
  }
  .print__radio--show {
    opacity: 1 !important;
    position: relative !important;
    width: 12px !important;
  }
  .print__radio--label-hide-styles {
    border: none !important;
    background-color: #fff !important;
    color: #6371b6 !important;
  }
  .print__radio--flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .print__radio--group-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .print__list--horizontal {
    display: inline-block !important;
    width: 49% !important;
    vertical-align: middle !important;
  }
  .print__text-input--height-5 {
    height: 5em !important;
  }
  .print__text-input--height-75 {
    height: 7.5em !important;
  }
  .print__text-input--height-10 {
    height: 10em !important;
  }
  .print__card {
    -webkit-print-color-adjust: exact !important;
  }
  .print__card--hide-styles {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    text-align: left !important;
  }
  .print__lesson-image {
    width: auto;
    height: 100vh;
  }
  .print__padding--none {
    padding: 0 !important;
  }
  .print__padding--top-bottom {
    padding: 50px 0;
  }
  .print__textarea--days {
    height: 13.28vh;
  }
  .print__td--white {
    -webkit-print-color-adjust: exact;
  }
  .print__td--25 {
    width: 25% !important;
    display: inline-block !important;
  }
  .print__td--50 {
    width: 50% !important;
    display: inline-block !important;
  }
  .print__td--75 {
    width: 75% !important;
    display: inline-block !important;
  }
}

label {
  font-weight: 600;
  padding-bottom: 4px;
}

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
input[type='number'],
textarea {
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  padding: 8px 24px 8px 16px;
  margin-bottom: 16px;
  background-image: none;
  border: 1px solid #c0c0c0;
  -webkit-transition: all 0.30s ease-in-out;
  transition: all 0.30s ease-in-out;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type='text']::-webkit-input-placeholder, input[type='tel']::-webkit-input-placeholder, input[type='email']::-webkit-input-placeholder, input[type='password']::-webkit-input-placeholder, input[type='number']::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.52);
}

input[type='text']::-moz-placeholder, input[type='tel']::-moz-placeholder, input[type='email']::-moz-placeholder, input[type='password']::-moz-placeholder, input[type='number']::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.52);
}

input[type='text']:-ms-input-placeholder, input[type='tel']:-ms-input-placeholder, input[type='email']:-ms-input-placeholder, input[type='password']:-ms-input-placeholder, input[type='number']:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.52);
}

input[type='text']::-ms-input-placeholder, input[type='tel']::-ms-input-placeholder, input[type='email']::-ms-input-placeholder, input[type='password']::-ms-input-placeholder, input[type='number']::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.52);
}

input[type='text']::placeholder,
input[type='tel']::placeholder,
input[type='email']::placeholder,
input[type='password']::placeholder,
input[type='number']::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 0, 0.52);
}

input[type='text']:focus,
input[type='tel']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus,
textarea:focus {
  outline: #6371B6;
  -webkit-box-shadow: 0 0 5px #6371b6;
          box-shadow: 0 0 5px #6371b6;
  border: 1px solid #6371b6;
}

input[type='text'].form-error,
input[type='tel'].form-error,
input[type='email'].form-error,
input[type='password'].form-error,
input[type='number'].form-error,
textarea.form-error {
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

input[type='text'].form-error[aria-invalid=false],
input[type='tel'].form-error[aria-invalid=false],
input[type='email'].form-error[aria-invalid=false],
input[type='password'].form-error[aria-invalid=false],
input[type='number'].form-error[aria-invalid=false],
textarea.form-error[aria-invalid=false] {
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type='text'][readonly],
input[type='tel'][readonly],
input[type='email'][readonly],
input[type='password'][readonly],
input[type='number'][readonly],
textarea[readonly] {
  background-color: #eee !important;
  cursor: not-allowed;
}

.select2-search__field:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

input#ethnicity.form-error + .checkbox-container > div.checkbox > input[type=checkbox] {
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

.input-container.error > input, .form-group .input-container.error > select, .input-container.error > textarea {
  color: #de2e39;
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

.form-group .input-container.error > select:invalid {
  color: #de2e39;
}

input[type='checkbox'].error {
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

.select2-selection.select2-selection--multiple.error {
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

.select2-selection.select2-selection--multiple {
  overflow-x: auto;
}

.select2-selection__choice__display {
  word-break: break-all;
}

select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  -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,-webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 16px;
}

select:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

select.labelBelow {
  margin-bottom: 0;
}

select:focus {
  outline: #6371B6;
  -webkit-box-shadow: 0 0 5px #6371b6;
          box-shadow: 0 0 5px #6371b6;
  border: 1px solid #6371b6 !important;
}

select.form-error {
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

label {
  padding-top: 8px;
  padding-bottom: 4px;
  text-align: left;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input p.terms {
  font-size: 13px;
  color: #767676;
  padding: 0;
}

.input.password, .input.select, .input.tel, .input.number, .input.text {
  margin-bottom: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.input.password.error input, .input.select.error input, .input.tel.error input, .input.number.error input, .input.text.error input {
  border: 2px solid #de2e39;
}

.input.password .error-message, .input.select .error-message, .input.tel .error-message, .input.number .error-message, .input.text .error-message {
  color: #de2e39;
  font-size: 13px;
}

.input.password label, .input.select label, .input.tel label, .input.number label, .input.text label {
  padding-top: 8px;
  padding-bottom: 4px;
  text-align: left;
}

.input.checkbox {
  padding-bottom: 16px;
}

.input.checkbox .error-message {
  color: #de2e39;
  font-size: 13px;
  display: none;
}

.input.checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  /* Baseline centering */
}

.input[disabled] {
  cursor: not-allowed;
  background-color: #eee;
}

.input.select {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 8px;
}

.input.select select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  -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,-webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 16px;
}

.input.select select:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

.input.select select.labelBelow {
  margin-bottom: 0;
}

.input.select select:focus {
  outline: #6371B6;
  -webkit-box-shadow: 0 0 5px #6371b6;
          box-shadow: 0 0 5px #6371b6;
  border: 1px solid #6371b6 !important;
}

.input.select select:invalid {
  color: rgba(0, 0, 0, 0.52);
}

.input.password label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.input.error label {
  color: #de2e39;
}

.input.error select {
  border: 2px solid #de2e39;
}

.input.error .terms {
  color: #de2e39;
}

.input.error .error-message {
  display: none;
}

.input.textarea textarea {
  height: 80px;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.input:focus {
  outline: #6371B6;
  -webkit-box-shadow: 0 0 5px #6371b6;
          box-shadow: 0 0 5px #6371b6;
  border: 1px solid #6371b6;
}

input[type="checkbox"] {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 8px;
}

#filtersMyPatientsForm select {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  -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,-webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 16px;
  margin-right: 20px !important;
}

#filtersMyPatientsForm select:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

@media (min-width: 1024px) {
  .settings .input {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .settings .input.checkbox,
  .settings .input.password,
  .settings .input.select,
  .settings .input.tel,
  .settings .input.number,
  .settings .input.text {
    width: 46%;
    margin-right: 30px;
  }
  .settings .passwordShow__icon {
    margin-top: -6px;
  }
  .settings .twoLinesLabel {
    height: 37px;
  }
  .settings .input.text ul {
    margin-bottom: 0;
  }
}

abbr.fieldRequired {
  color: #de2e39;
  text-decoration: none;
}

#UserLoginForm abbr.fieldRequired {
  visibility: hidden;
}

#UserPatientRegistrationForm .ethnicity-form-group .input-container {
  gap: 10px;
}

.form-group i.status-icon {
  margin-left: 0;
}

.form-group .input-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-group .ethnicity-form-group .input-container {
  gap: 10px;
}

.form-group .status-icon.success-icon {
  position: absolute;
  right: 5px;
  top: 7px;
  visibility: visible;
}

.form-group .status-icon.success-icon:after {
  content: url("/img/success-icon.svg");
}

.form-group .status-icon.error-icon {
  position: absolute;
  right: 5px;
  top: 7px;
  visibility: visible;
}

.form-group .status-icon.error-icon:after {
  content: url("/img/error-icon.svg");
}

.form-group .multi-select-container .status-icon {
  right: 30px;
  top: 8px;
}

.form-group .error-message {
  margin: 2px 0px 1rem 5px;
  display: block;
  font-size: 13px;
  color: #de2e39;
  text-decoration: none;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.login .form-group .error-message {
  margin-top: -8px;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .passwordShow__icon,
  .password__label {
    display: inline-block;
  }
  .passwordShow__icon {
    float: right;
  }
  .form-group i.status-icon {
    visibility: hidden;
    margin-left: 5px;
  }
  .form-group i.status-icon:after {
    content: url("/img/error-icon.svg");
  }
  .form-group i.status-icon.error-icon, .form-group i.status-icon.success-icon {
    position: relative;
    right: 0;
    visibility: visible;
  }
  .form-group select + .status-icon.error-icon, .form-group select + .status-icon.success-icon {
    position: relative;
    right: 0;
    visibility: visible;
  }
  .form-group input[type='text'],
  .form-group input[type='tel'],
  .form-group input[type='email'],
  .form-group input[type='password'],
  .form-group input[type='number'],
  .form-group textarea,
  .form-group select {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.registration input[type=checkbox], .referral-form input[type=checkbox] {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

html *:focus {
  outline: 2px solid #6371B6 !important;
  outline: 1px auto #6371B6 !important;
}

html *:focus:not(:focus-visible) {
  outline: none !important;
}

html *:focus-visible {
  outline: 1px auto #6371B6 !important;
}

html.ie *:focus {
  outline: 2px solid #6371B6 !important;
}

.sv-root-modern .sv-selectbase .sv-item__control:focus + .sv-item__decorator {
  outline: 2px solid #6371B6 !important;
}

a.skip-link {
  background: #6371B6;
  width: 150px;
  color: #fff;
  font-weight: 700;
  left: calc(50% - 75px);
  text-align: center;
  padding: 6px;
  position: absolute;
  border-radius: 0 0 4px 4px;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 1234;
  top: 0;
}

a.skip-link:focus {
  top: 0;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

html.ie body {
  position: initial;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.simple .wrapper main {
  width: auto;
}

.simple .main__container {
  left: 0;
  width: 100vw;
}

.simple .main__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-height: 88px;
}

.simple .main__header .main__header--help {
  display: none;
}

@media (min-width: 480px) {
  .simple .main__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .simple .main__header .main__header--help {
    display: block;
  }
}

@media (min-width: 1024px) {
  .simple .main__header {
    -webkit-box-sizing: auto;
            box-sizing: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .simple .main__header .main__header--help {
    display: block;
  }
}

.simple #content {
  margin: auto 8px;
}

@media (min-width: 1024px) {
  .simple #content {
    margin: 0;
  }
}

.simple .nav-help a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  padding: 8px 0 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  width: auto;
  margin: 0 auto 0;
  text-align: center;
  border: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #5261ae;
}

.simple .nav-help a:hover, .simple .nav-help a:focus, .simple .nav-help a:active {
  color: #007e84;
  text-decoration: none;
}

.simple .nav-help a.bang-after {
  padding-right: 45px;
}

.simple .nav-help a.bang-after::after {
  position: absolute;
  display: block;
  top: calc(50% - .7em);
  content: '!';
  border: 3px solid currentColor;
  border-radius: 30px;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 0 9.5px;
  line-height: 25px;
  top: calc(50% - .8em);
  right: 5px;
}

.simple .feedback-thanks {
  text-align: center;
  width: 100%;
  padding: 0 8px;
}

@media (min-width: 1024px) {
  .simple .feedback-thanks {
    max-width: 600px;
    text-align: left;
    margin-top: 32px;
  }
}

.main__container {
  overflow: auto;
  padding: 24px 24px 24px 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  position: relative;
  left: 0;
  -webkit-transition: 0.2s ease-in-out left;
  transition: 0.2s ease-in-out left;
  -webkit-transition: 0.1s linear width;
  transition: 0.1s linear width;
  z-index: 5;
  background: #F3F3F3;
  background: #f8f8fe;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*
  @include respond-to('s') {
    padding: 0 14*$spacing 0 5*$spacing;
    // margin-left: 10*$spacing;
    overflow: hidden;
    left: 8*$spacing + 6;
    align-items: center;
  }
  */
}

@media (min-width: 1024px) {
  .main__container {
    -webkit-box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 16px 4px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    left: 70px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100vw - 70px);
  }
}

@media (min-width: 1200px) {
  .main__container {
    padding: 0;
    width: calc(100vw - 210px);
    left: 210px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main__content {
  width: 100%;
}

@media (min-width: 1024px) {
  .main__content {
    width: 920px;
    padding-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .main__content {
    width: 960px;
  }
}

.main__content h1 {
  text-align: center;
}

@media (min-width: 1024px) {
  .main__content h1 {
    text-align: left;
  }
}

.patientDashboard .main__content {
  width: 100%;
}

@media (min-width: 1024px) {
  .patientDashboard .main__content {
    width: 920px;
    padding-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .patientDashboard .main__content {
    width: 960px;
  }
}

.settings__title {
  font-weight: bold;
  margin: 40px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.settings__title .settings__titleBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.settings__form__column {
  width: 45%;
  display: inline-block;
  margin-right: 30px;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .wrapper {
    display: block;
  }
  .main__container {
    padding: 0 !important;
  }
  .main__content h2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
  }
  .main__content #step {
    margin: 0 20px;
  }
  .main__content #buttons {
    text-align: center;
    margin-bottom: 20px;
  }
  .main__content .healthRecord {
    margin-left: 20px;
    margin-right: 20px;
  }
  .settings__title {
    margin: 40px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sidebar {
  left: 0;
  position: fixed;
  top: 0;
  padding-top: 50px;
  color: #585170;
  -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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  -webkit-transition: 0.2s ease-in-out width;
  transition: 0.2s ease-in-out width;
  z-index: 10;
  width: 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .sidebar {
    background-color: #fff;
    color: #585170;
    width: 100vw;
    bottom: 0;
    padding: 22px 22px 22px 0px;
    z-index: 1;
    margin-right: 48px;
    overflow: auto;
  }
}

.sidebar .brand {
  color: #f48e8f;
  background-color: #F3F3F3;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 32px;
}

@media (min-width: 767px) {
  .sidebar .brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sidebar div.sidebar__name {
  display: none;
  padding: 0 0 24px;
  margin-left: 22px;
}

@media (min-width: 1200px) {
  .sidebar div.sidebar__name {
    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;
    margin-top: 75px;
    font-weight: 600;
  }
}

.sidebar div.sidebar__name i {
  font-size: 40px;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .sidebar div.sidebar__name i {
    margin-bottom: 8px;
  }
}

.sidebar div.sidebar__name img {
  padding: 0 0 8px;
  width: 40px;
}

.sidebar div.sidebar__name span {
  font-size: 14px;
  max-width: 160px;
}

.sidebar div.top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 88px;
}

@media (min-width: 767px) {
  .sidebar div.top {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 88px;
  }
}

@media (min-width: 1200px) {
  .sidebar div.top {
    margin-top: 0;
  }
}

.sidebar div.bottom {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 200px;
  margin-top: 16px;
  position: absolute;
  bottom: 0;
}

@media (min-width: 767px) {
  .sidebar div.bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: none;
  }
}

@supports (display: flex) {
  .sidebar div.bottom {
    bottom: unset;
    position: unset;
  }
}

.sidebar nav {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
}

@supports (display: flex) {
  .sidebar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sidebar nav .sidebar__getHelp {
  display: list-item;
}

@media (min-width: 1024px) {
  .sidebar nav .sidebar__getHelp {
    display: none;
  }
}

.sidebar nav .active {
  font-weight: bold;
  -webkit-filter: invert(34%) sepia(99%) saturate(501%) hue-rotate(136deg) brightness(70%) contrast(94%);
          filter: invert(34%) sepia(99%) saturate(501%) hue-rotate(136deg) brightness(70%) contrast(94%);
  border-left: 6px solid #585170;
  padding-left: 16px;
  margin-left: 0;
}

.sidebar nav .inactive {
  text-decoration: none;
}

.sidebar nav a {
  color: #F3F3F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-decoration: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 22px;
}

.sidebar nav a .sidebar__icon {
  display: none;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 24px;
  height: auto;
  text-shadow: 1px 1px 2px rgba(37, 37, 37, 0.2), 0 0 1em rgba(37, 37, 37, 0.2), 0 0 0.2em rgba(37, 37, 37, 0.2);
}

@media (min-width: 767px) {
  .sidebar nav a .sidebar__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sidebar nav a .sidebar__icon img {
  width: 100%;
  height: 100%;
}

.sidebar nav a .sidebar__label {
  font-size: 14px;
  padding-left: 8px;
  color: #585170;
  font-weight: 600;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -ms-flex-item-align: center;
      align-self: center;
}

@media (min-width: 767px) {
  .sidebar nav a .sidebar__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1200px) {
  .sidebar nav a .sidebar__label {
    opacity: 1;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.sidebar nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sidebar nav ul li {
  padding: 24px 0 0;
  margin: 0;
}

.sidebar nav ul li i {
  font-size: 40px;
  margin-bottom: 0;
}

.sidebar nav ul li i img {
  padding: 0 0 8px;
  width: 40px;
}

.sidebar nav ul li i span {
  font-size: 13px;
}

.sidebar__mobile-only-item {
  display: none;
}

/* Open menu */
.sidebar--open .wrapper {
  overflow: hidden;
}

.sidebar--open .sidebar {
  height: 100vh;
  background-color: #fff;
  width: 100vw;
  color: #FFFFFF;
  -webkit-transition: 0.2s ease-in-out width;
  transition: 0.2s ease-in-out width;
  padding: 22px 22px 22px 0;
  z-index: 1;
}

@media (min-width: 767px) {
  .sidebar--open .sidebar {
    height: auto;
    z-index: 1;
  }
}

.sidebar--open .sidebar nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sidebar--open .sidebar nav a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #F3F3F3;
}

@media (min-width: 767px) {
  .sidebar--open .sidebar nav a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.sidebar--open .sidebar nav a .sidebar__icon,
.sidebar--open .sidebar nav a .sidebar__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sidebar--open .sidebar nav a .sidebar__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -ms-flex-item-align: center;
      align-self: center;
}

.sidebar--open .sidebar .bottom {
  border-top: 2px solid #fff;
  position: relative;
}

@media (min-width: 767px) {
  .sidebar--open .sidebar .bottom {
    border-top: none;
    position: relative;
  }
}

@media (min-width: 1024px) {
  .sidebar--open .sidebar .bottom {
    position: absolute;
  }
  @supports (display: flex) {
    .sidebar--open .sidebar .bottom {
      position: relative;
    }
  }
}

.sidebar--open .sidebar .brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0 24px;
}

@media (min-width: 767px) {
  .sidebar--open .sidebar .brand {
    margin: 0 auto 32px;
  }
}

@media (min-width: 1024px) {
  .sidebar--open .main__container {
    left: 210px;
  }
}

.sidebar--open__backToCourse {
  display: none;
}

/*  hide mobile menu on login screen */
.login .sidebar nav.sidebar__menu a.menu-toggle {
  color: rgba(88, 81, 112, 0);
  pointer-events: none;
  background-color: rgba(243, 243, 243, 0);
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Sidebar menu toggle/close */
nav.sidebar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #585170;
  z-index: 20;
}

@media (min-width: 1024px) {
  nav.sidebar__menu {
    top: 66px;
  }
}

nav.sidebar__menu a {
  cursor: pointer;
}

nav.sidebar__menu a.menu-toggle {
  color: #585170;
  padding: 16px 10px;
  border-radius: 100%;
}

@media (min-width: 767px) {
  nav.sidebar__menu a.menu-toggle {
    color: #f3f3f3;
    padding: 16px;
  }
}

@media (min-width: 1200px) {
  nav.sidebar__menu a.menu-toggle {
    color: rgba(88, 81, 112, 0);
    pointer-events: none;
    background-color: rgba(243, 243, 243, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
    display: none;
  }
}

nav.sidebar__menu a.menu-close {
  pointer-events: none;
  display: none;
}

.sidebar--open nav.sidebar__menu a {
  text-decoration: none;
}

.sidebar--open nav.sidebar__menu a.menu-toggle {
  color: rgba(88, 81, 112, 0);
  pointer-events: none;
  background-color: rgba(243, 243, 243, 0);
  -webkit-box-shadow: none;
          box-shadow: none;
  display: none;
}

.sidebar--open nav.sidebar__menu a.menu-close {
  color: #f3f3f3;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .sidebar--open nav.sidebar__menu a.menu-close {
    color: rgba(88, 81, 112, 0);
    pointer-events: none;
    background-color: rgba(243, 243, 243, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
    display: none;
  }
}

#sidebar__icon--menu {
  fill: #6371B6;
  fill: #585170;
}

@media (min-width: 767px) {
  #sidebar__icon--menu {
    fill: #F3F3F3;
    fill: #585170;
  }
}

.sidebar__icon--menuSVG {
  fill: #4E4B6D;
}

@media (min-width: 1024px) {
  .sidebar__icon--menuSVG {
    fill: #FFF;
    fill: #585170;
  }
}

.story__page .backToCourse {
  display: none;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  nav.sidebar__menu {
    width: 100%;
    position: relative;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
    background: url("/img/JT_logo_horizontal.svg") no-repeat center #FFF;
  }
  nav.sidebar__menu a.menu-toggle {
    padding: 16px;
  }
  .sidebar {
    display: block;
    -webkit-transition: 0.2s ease-in-out height;
    transition: 0.2s ease-in-out height;
  }
  .sidebar nav .top {
    margin-top: 0;
  }
  .sidebar nav .bottom {
    margin-top: 0;
    width: 100%;
  }
  .sidebar__mobile-only-item {
    display: block;
  }
  .sidebar--open .sidebar {
    height: auto;
    position: relative;
    padding: 0;
    background: #FFF;
    -webkit-transition: 0.2s ease-in-out height;
    transition: 0.2s ease-in-out height;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  .sidebar--open .sidebar nav ul {
    width: 100%;
  }
  .sidebar--open .sidebar nav ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .sidebar--open .sidebar nav ul li a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
  }
  .sidebar--open .sidebar nav ul li a i {
    display: none !important;
  }
  .sidebar--open .sidebar nav ul li a .sidebar__label {
    padding: 0;
    font-size: 18px;
    color: #4E4B6D;
    text-shadow: none;
    font-weight: bold;
    margin: 0 auto;
  }
  .sidebar--open .sidebar .bottom {
    border-top: 0 !important;
  }
  .main__container {
    position: static;
    padding: 24px;
  }
  .cls-1,
  .cls-2,
  .cls-3 {
    fill: #4E4B6D;
  }
  .story__page {
    background-color: #FFFFFF;
  }
  .story__page .story {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .story__page .story .swiper-slide img {
    background-color: #FFFFFF;
  }
  .story__page nav.sidebar__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    background: none;
    border-bottom: 0;
  }
  .story__page .main__container {
    position: relative;
    background-color: #FFFFFF;
  }
  .story__page.sidebar--open .sidebar {
    position: fixed;
    height: 100vh;
  }
  .story__page.sidebar--open .sidebar nav.top {
    margin-top: 64px;
  }
  .story__page.sidebar--open .sidebar nav a {
    display: inline;
  }
  .story__page.sidebar--open .sidebar nav ul li {
    padding-left: 22px;
  }
  .story__page .backToCourse {
    display: block;
    position: absolute;
    bottom: 0;
    padding-bottom: 10px;
  }
  .story__page .backToCourse a {
    font-size: 18px;
    color: #4E4B6D;
    font-weight: bold;
    padding-left: 22px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .story__page .backToCourse a:active,
  .story__page .backToCourse a:focus,
  .story__page .backToCourse a:hover {
    text-decoration: none;
  }
}

.main__header {
  display: none;
  max-height: 88px;
}

@media (min-width: 1024px) {
  .main__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 8px;
  }
}

.main__header .main__header--logo img {
  height: 50px;
  width: 180px;
}

.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 1024px) {
  .header__button {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.header__button .btn {
  margin-right: 8px;
  margin-left: 0;
  margin-top: 0;
  font-size: .825em;
}

@media (min-width: 1024px) {
  .header__button .btn {
    margin-right: 0;
    margin-left: 8px;
  }
}

.story__page .main__header {
  display: none;
}

@media (min-width: 1024px) {
  .story__page .main__header {
    display: block;
  }
}

.breadcrumbs {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 16px 0;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.breadcrumbs img {
  -webkit-filter: invert(0.85);
          filter: invert(0.85);
  display: block;
  margin-bottom: 2px;
}

.topbar {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  z-index: 999;
  height: 30px;
  padding: 16px 0 0;
}

@media (min-width: 1024px) {
  .topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.topbar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topbar__logo {
  width: 68px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0px;
  padding: 16px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1200px) {
  .topbar__logo {
    min-width: 210px;
    padding-left: 22px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.topbar__logo--divider {
  width: 100%;
  border-width: 1px;
  border-style: solid;
  color: #eceaea;
  margin-top: 8px;
}

.topbar__logo--image {
  margin: auto;
}

.topbar__logo--image.small {
  display: none;
  width: 36px;
  height: 26px;
  margin: 17px;
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .topbar__logo--image.small {
    display: block;
  }
}

@media (min-width: 1200px) {
  .topbar__logo--image.small {
    display: none;
  }
}

.topbar__logo--image.large {
  display: none;
}

@media (min-width: 1200px) {
  .topbar__logo--image.large {
    display: block;
    margin: 0;
    width: 130px;
    height: 36px;
    padding: 8px;
    padding-left: 0;
  }
}

.topbar .nav-help,
.topbar .guide-help {
  justify-self: flex-end;
  text-align: center;
}

.topbar .nav-help a,
.topbar .guide-help a {
  display: inline-block;
  position: relative;
  font-size: 14px;
  padding: 8px 0 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  width: auto;
  margin: 0 auto 0;
  text-align: center;
  border: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #5261ae;
}

.topbar .nav-help a:hover, .topbar .nav-help a:focus, .topbar .nav-help a:active,
.topbar .guide-help a:hover,
.topbar .guide-help a:focus,
.topbar .guide-help a:active {
  color: #007e84;
  text-decoration: none;
}

.topbar .nav-help a.bang-after,
.topbar .guide-help a.bang-after {
  padding-right: 45px;
}

.topbar .nav-help a.bang-after::after,
.topbar .guide-help a.bang-after::after {
  position: absolute;
  display: block;
  top: calc(50% - .7em);
  content: '!';
  border: 3px solid currentColor;
  border-radius: 30px;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 0 9.5px;
  line-height: 25px;
  top: calc(50% - .8em);
  right: 5px;
}

.topbar .guide-help a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.topbar .guide-help a .icon {
  height: 30px;
  width: 30px;
  fill: #5261ae;
  padding-left: 4px;
}

.topbar .guide-help a:hover .icon {
  fill: #007e84;
}

@media (min-width: 1024px) {
  .sidebar--open .topbar__logo {
    min-width: 210px;
  }
  .sidebar--open .topbar__logo--image.small {
    display: none;
  }
  .sidebar--open .topbar__logo--image.large {
    display: block;
  }
}

.audio-card {
  max-width: 400px;
  margin: 0 auto 32px auto;
  border-radius: 24px;
  background: #fff;
  padding: 24px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #f0f0f7;
}

.audio-card__container {
  width: 100%;
  position: relative;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.audio-card__image {
  width: 132px;
  height: 132px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}

.audio-card__title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-60%);
      -ms-transform: translateY(-60%);
          transform: translateY(-60%);
  left: 50%;
  right: 0;
  font-size: 1.2em;
  margin: 8px;
  margin-right: 32px;
  text-align: center;
  color: #fff;
}

.audio-card__player {
  width: 100%;
  margin: 8px;
  accent-color: #35b551;
  background: #d7f1f7;
  border-radius: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(30, 36, 61, 0.05);
          box-shadow: 0 2px 6px rgba(30, 36, 61, 0.05);
}

.audio-card__player::-webkit-media-controls-panel {
  background: #d7f1f7 !important;
  border-radius: 18px;
}

/*
  Create btn and hover state using color and name
*/
input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.btn,
button {
  border-radius: 48px;
  padding: 8px 32px;
  font-size: 16px;
  text-decoration: none;
  margin: 20px 20px 0 0;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  border-color: transparent;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.1s;
}

.btn:focus,
button:focus {
  outline: 0;
}

a.btn {
  text-decoration: none;
}

.btn-primary {
  background-color: #c9467f;
}

.btn-primary.btn--disabled:active,
.btn-primary.btn--disabled:focus,
.btn-primary.btn--disabled:hover {
  background-color: #c9467f !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #c9467f !important;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.btn-primary.btn--selected,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus:active,
.btn-primary:hover {
  background-color: #be3772;
  border-color: transparent;
  color: #FFFFFF;
}

.btn-primary--outline {
  border: 2px solid #c9467f;
  color: #c9467f;
  background-color: white;
}

.btn-primary--outline.btn--selected,
.btn-primary--outline:focus,
.btn-primary--outline:focus:active,
.btn-primary--outline:hover {
  background-color: #be3772;
  color: white;
  outline-color: #be3772;
  border: 2px solid #be3772;
}

.btn-primary--outline.btn--disabled:focus,
.btn-primary--outline.btn--disabled:focus:active,
.btn-primary--outline.btn--disabled:hover {
  border: 2px solid #c9467f !important;
  background-color: white !important;
  color: #c9467f !important;
  cursor: default !important;
}

.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:active:hover {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  background-color: #aa3266;
  border-color: #aa3266;
  outline-color: #aa3266;
}

.btn--disabled,
.btn--disabled:active,
.btn--disabled:focus,
.btn--disabled:hover {
  background-color: rgba(153, 153, 153, 0.5) !important;
  cursor: default;
  pointer-events: none;
}

.btn-secondary {
  background-color: #6371B6;
}

.btn-secondary.btn--disabled:active,
.btn-secondary.btn--disabled:focus,
.btn-secondary.btn--disabled:hover {
  background-color: #6371B6 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #6371B6 !important;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.btn-secondary.btn--selected,
.btn-secondary:active,
.btn-secondary:focus,
.btn-secondary:focus:active,
.btn-secondary:hover {
  background-color: #5261ae;
  border-color: transparent;
  color: #FFFFFF;
}

.btn-secondary--outline {
  border: 2px solid #6371B6;
  color: #6371B6;
  background-color: white;
}

.btn-secondary--outline.btn--selected,
.btn-secondary--outline:focus,
.btn-secondary--outline:focus:active,
.btn-secondary--outline:hover {
  background-color: #5261ae;
  color: white;
  outline-color: #5261ae;
  border: 2px solid #5261ae;
}

.btn-secondary--outline.btn--disabled:focus,
.btn-secondary--outline.btn--disabled:focus:active,
.btn-secondary--outline.btn--disabled:hover {
  border: 2px solid #6371B6 !important;
  background-color: white !important;
  color: #6371B6 !important;
  cursor: default !important;
}

.btn-secondary:active,
.btn-secondary:active:focus,
.btn-secondary:active:hover {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  background-color: #49579d;
  border-color: #49579d;
  outline-color: #49579d;
}

.btn--disabled,
.btn--disabled:active,
.btn--disabled:focus,
.btn--disabled:hover {
  background-color: rgba(153, 153, 153, 0.5) !important;
  cursor: default;
  pointer-events: none;
}

.btn-info {
  background-color: #007e84;
}

.btn-info.btn--disabled:active,
.btn-info.btn--disabled:focus,
.btn-info.btn--disabled:hover {
  background-color: #007e84 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #007e84 !important;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.btn-info.btn--selected,
.btn-info:active,
.btn-info:focus,
.btn-info:focus:active,
.btn-info:hover {
  background-color: #00666b;
  border-color: transparent;
  color: #FFFFFF;
}

.btn-info--outline {
  border: 2px solid #007e84;
  color: #007e84;
  background-color: white;
}

.btn-info--outline.btn--selected,
.btn-info--outline:focus,
.btn-info--outline:focus:active,
.btn-info--outline:hover {
  background-color: #00666b;
  color: white;
  outline-color: #00666b;
  border: 2px solid #00666b;
}

.btn-info--outline.btn--disabled:focus,
.btn-info--outline.btn--disabled:focus:active,
.btn-info--outline.btn--disabled:hover {
  border: 2px solid #007e84 !important;
  background-color: white !important;
  color: #007e84 !important;
  cursor: default !important;
}

.btn-info:active,
.btn-info:active:focus,
.btn-info:active:hover {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  background-color: #004d51;
  border-color: #004d51;
  outline-color: #004d51;
}

.btn--disabled,
.btn--disabled:active,
.btn--disabled:focus,
.btn--disabled:hover {
  background-color: rgba(153, 153, 153, 0.5) !important;
  cursor: default;
  pointer-events: none;
}

.btn-purple {
  background-color: #6371B6;
}

.btn-purple.btn--disabled:active,
.btn-purple.btn--disabled:focus,
.btn-purple.btn--disabled:hover {
  background-color: #6371B6 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #6371B6 !important;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.btn-purple.btn--selected,
.btn-purple:active,
.btn-purple:focus,
.btn-purple:focus:active,
.btn-purple:hover {
  background-color: #5261ae;
  border-color: transparent;
  color: #FFFFFF;
}

.btn-purple--outline {
  border: 2px solid #6371B6;
  color: #6371B6;
  background-color: white;
}

.btn-purple--outline.btn--selected,
.btn-purple--outline:focus,
.btn-purple--outline:focus:active,
.btn-purple--outline:hover {
  background-color: #5261ae;
  color: white;
  outline-color: #5261ae;
  border: 2px solid #5261ae;
}

.btn-purple--outline.btn--disabled:focus,
.btn-purple--outline.btn--disabled:focus:active,
.btn-purple--outline.btn--disabled:hover {
  border: 2px solid #6371B6 !important;
  background-color: white !important;
  color: #6371B6 !important;
  cursor: default !important;
}

.btn-purple:active,
.btn-purple:active:focus,
.btn-purple:active:hover {
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  background-color: #49579d;
  border-color: #49579d;
  outline-color: #49579d;
}

.btn--disabled,
.btn--disabled:active,
.btn--disabled:focus,
.btn--disabled:hover {
  background-color: rgba(153, 153, 153, 0.5) !important;
  cursor: default;
  pointer-events: none;
}

.btn-small {
  border-radius: 10px;
  padding: 4px 16px;
  font-size: 14px;
  text-decoration: none;
  margin: 10px 10px 10px 0;
}

.btn_container {
  padding-bottom: 16px;
}

.btn--right {
  margin-right: 0;
}

.btn--hidden {
  display: none;
  opacity: 0;
  border: none;
}

.btn--noMarginTop {
  margin-top: 0;
}

.continue--btn .submit {
  margin-top: 6px;
}

@media (max-width: 480px) {
  .continue--btn .submit input {
    padding: 8px;
  }
}

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 8px 0 16px;
  border-radius: 4px;
}

.btn-group label.btn.btn-primary {
  font-size: 12px;
  border-radius: 0;
  padding: 8px;
  background-color: transparent;
  margin-top: 0;
  color: #6371B6;
  border-left: 1px solid #6371B6;
}

.btn-group label.btn.btn-primary.active {
  color: #F3F3F3;
  background-color: #6371B6;
}

.btn-group label.btn.btn-primary:first-child {
  border: none;
}

.btn-group label.btn.btn-primary:user-select {
  background-color: none;
}

.btn-group input[type='radio'] {
  display: none;
}

#backToCourse {
  margin-right: 0;
}

.sql__dump--close {
  cursor: pointer;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .btn_container {
    text-align: center;
  }
}

.video-js button {
  padding: 0;
  margin: 0;
}

.aod__slides .story__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.aod__videos .storyVideo__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card {
  background: #FFFFFF;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: .625rem 1.625rem;
  width: auto;
  margin-bottom: 1.625rem;
  overflow: hidden;
}

.card.registration {
  overflow: visible;
}

.card .card__headline {
  color: #007e84;
  margin-top: 1rem;
}

.card .card__copy {
  width: 66%;
  text-align: center;
}

.card.empty {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px dashed lightgrey;
  text-align: center;
}

.card .card__icon {
  width: 33%;
}

.card__image {
  position: relative;
}

@media (min-width: 1024px) {
  .card__image {
    position: absolute;
    right: 0;
  }
}

.card__image::before {
  height: 360px;
  width: 100px;
  content: "";
  position: absolute;
  display: block;
}

.card__image img {
  height: 360px;
}

.card__image img.signing_hands--topLeft {
  position: absolute;
  width: auto !important;
  height: 40% !important;
  image-rendering: none !important;
  top: 0;
  left: 0;
  border-radius: 8px 0 0 0;
}

.card__image-courses {
  position: static;
  max-height: 100%;
  overflow: visible;
}

.card__image-courses img {
  height: 400px;
  -webkit-mask: url("/img/storywave_dashboard.png") center center/cover;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
}

.card__image-courses img.card__image-signing-hands {
  height: auto;
  position: absolute;
  z-index: 1;
  -webkit-mask: none;
  width: 25%;
  min-width: 125px;
  border-radius: 16px 0 0 0;
}

@media (min-width: 767px) {
  .card__image-courses img.card__image-signing-hands {
    width: 175px;
  }
}

.card__image-courses img.card__image-signing-hands:hover {
  cursor: pointer;
}

.card__image-courses::before {
  height: 400px;
  width: 100%;
  content: "";
  position: absolute;
  margin-left: 310px;
  display: none;
  background: url("/img/storywave_dashboard_invert.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .card {
    padding: 0;
    padding-bottom: 20px;
  }
  .card h3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card__image img {
    width: 100%;
    height: auto;
  }
  .card__image::before {
    width: 100%;
    content: "";
    position: absolute;
    top: 90%;
    display: block;
  }
  .card__image-courses {
    position: static;
    max-height: 500px;
    overflow: hidden;
  }
  .card__image-courses img {
    width: 100%;
    height: auto;
    -webkit-mask: none;
  }
}

/* -----------
Responsive sizes variables

$breakpoints: (
	'xs':  480px,
	's':  767px,
	'm': 1024px,
	'l':  1200px
) !default;
-------------*/
/*
// large desktop
@include respond-to('m') {
	$width: 900;
	$height: 500; // 500
	$topMargin: 6*$spacing;
}

// desktop
@include respond-to('s') {
	$width: 690;
	$height: 384; //
	$topMargin: 3*$spacing;
}

// tablet
@include respond-to('xs') {
	$width: 488;
	$height: 254; // 271
	$topMargin: $spacing;
}
*/
/* Bubbles */
.swiper-slide--bubbleContainer {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 8px;
  width: 486px;
  height: 254px;
  font-size: 14px;
}

@media (min-width: 767px) {
  .swiper-slide--bubbleContainer {
    top: 16px;
    width: 688px;
    height: 366px;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubbleContainer {
    top: 16px;
    width: 880px;
    height: 482px;
  }
}

.swiper-slide--bubbleContainer .bubble__order {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  height: 100%;
}

.swiper-slide--bubbleContainer .bubble__order .bubble__flexParent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 486px;
  height: 254px;
  position: absolute;
}

@media (min-width: 767px) {
  .swiper-slide--bubbleContainer .bubble__order .bubble__flexParent {
    width: 688px;
    height: 366px;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubbleContainer .bubble__order .bubble__flexParent {
    width: 880px;
    height: 482px;
  }
}

.swiper-slide--bubbleContainer .bubble__order .bubble__flexParent--testimonial {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 767px) {
  .swiper-slide--bubbleContainer {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubbleContainer {
    font-size: 16px;
  }
}

.swiper-slide--bubbleContainer p {
  font-size: 14px;
  line-height: 1.2em;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

@media (min-width: 767px) {
  .swiper-slide--bubbleContainer p {
    font-size: 16px;
    line-height: 1.325em;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubbleContainer p {
    font-size: 16px;
    line-height: 1.325em;
  }
}

.swiper-slide--bubbleContainer ol,
.swiper-slide--bubbleContainer ul {
  font-size: 14px;
  margin: 0 0 0 1em;
  padding: 0;
}

@media (min-width: 767px) {
  .swiper-slide--bubbleContainer ol,
  .swiper-slide--bubbleContainer ul {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubbleContainer ol,
  .swiper-slide--bubbleContainer ul {
    font-size: 16px;
  }
}

.swiper-slide--bubble {
  position: relative;
  text-align: center;
  background-color: #F3F3F3;
  border-radius: 3px;
  border: 2px solid #252525;
  -webkit-transition: 0.4s -webkit-transform ease-in-out;
  transition: 0.4s -webkit-transform ease-in-out;
  transition: 0.4s transform ease-in-out;
  transition: 0.4s transform ease-in-out, 0.4s -webkit-transform ease-in-out;
  margin: 5px 18px;
  /* Off Slide */
}

@media (min-width: 767px) {
  .swiper-slide--bubble {
    margin: 10px 25px;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubble {
    margin: 20px 25px;
  }
}

.swiper-slide--bubble.offSlideRight {
  position: absolute;
  -webkit-transform: translate(100vw, 0px);
      -ms-transform: translate(100vw, 0px);
          transform: translate(100vw, 0px);
}

.swiper-slide--bubble.offSlideLeft {
  position: absolute;
  -webkit-transform: translate(-100vw, 0px);
      -ms-transform: translate(-100vw, 0px);
          transform: translate(-100vw, 0px);
}

.swiper-slide--bubble.hide {
  display: none;
}

.swiper-slide--bubble > ol li,
.swiper-slide--bubble > ul li {
  text-align: left;
}

.swiper-slide--bubble blockquote {
  font-style: italic;
  padding: 0.5em;
  border: none;
  margin-bottom: 0;
  font-size: 1.25em;
}

.swiper-slide--bubble blockquote::before {
  content: '\201C';
  font-size: 1em;
  font-weight: bold;
}

.swiper-slide--bubble blockquote::after {
  content: '\201D';
  font-size: 1em;
  font-weight: bold;
}

.swiper-slide--bubble:after, .swiper-slide--bubble:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
}

.swiper-slide--bubble .bubble__content {
  padding: 12px 16px;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.2em;
  text-rendering: optimizeLegibility;
  width: auto;
}

@media (min-width: 767px) {
  .swiper-slide--bubble .bubble__content {
    padding: 14px 17.6px;
  }
}

@media (min-width: 1024px) {
  .swiper-slide--bubble .bubble__content {
    padding: 16px 20px;
  }
}

.swiper-slide--bubble .bubble__content > ol li,
.swiper-slide--bubble .bubble__content > ul li {
  text-align: left;
}

/* -----------
Bubble Type
==============
@type:
thought
speech
narration
testimonial
card
hide
-------------*/
.bubble__type--thought {
  border-radius: 80px;
}

.bubble__type--thought .bubble__content {
  padding: 14px 20px;
}

.bubble__type--speech {
  border-radius: 12px;
}

.bubble__type--speech,
.bubble__type--thought {
  margin: 12px 18px;
}

@media (min-width: 767px) {
  .bubble__type--speech,
  .bubble__type--thought {
    margin: 15px 25px;
  }
}

@media (min-width: 1024px) {
  .bubble__type--speech,
  .bubble__type--thought {
    margin: 25px;
  }
}

.bubble__type--narration {
  border-radius: 3px;
}

.bubble__type--narration p {
  margin-bottom: 0;
}

.bubble__type--testimonial {
  border: none;
  background-color: transparent;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  width: 70%;
  right: 10px;
  text-align: justify;
}

.bubble__type--testimonial p {
  color: #252525;
}

@media (min-width: 767px) {
  .bubble__type--testimonial {
    width: 66%;
    right: 5%;
  }
}

@media (min-width: 1024px) {
  .bubble__type--testimonial {
    width: 50%;
    right: 20%;
  }
  .bubble__type--testimonial p {
    font-size: 1.1em;
  }
}

.bubble__type--card {
  margin: 15%;
  border: none;
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
}

.bubble__type--hide {
  display: none;
}

.bubble__type--sms-sent {
  border-radius: 20px 20px 4px 20px;
  max-width: 70%;
  margin: 5px 10px;
  position: relative;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #007AFF;
  color: #fff;
  border: none;
  overflow: visible;
}

.bubble__type--sms-sent .bubble__content {
  padding: 8px 12px;
}

.bubble__type--sms-sent .bubble__content p {
  color: #fff;
}

@media (min-width: 767px) {
  .bubble__type--sms-sent .bubble__content {
    padding: 10px 14px;
  }
}

@media (min-width: 1024px) {
  .bubble__type--sms-sent .bubble__content {
    padding: 12px 16px;
  }
}

.bubble__type--sms-received {
  border-radius: 20px 20px 20px 4px;
  max-width: 70%;
  margin: 5px 10px;
  position: relative;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #e9e9eb;
  color: #000;
  border: none;
  overflow: visible;
}

.bubble__type--sms-received .bubble__content {
  padding: 8px 12px;
}

.bubble__type--sms-received .bubble__content p {
  color: #000;
}

@media (min-width: 767px) {
  .bubble__type--sms-received .bubble__content {
    padding: 10px 14px;
  }
}

@media (min-width: 1024px) {
  .bubble__type--sms-received .bubble__content {
    padding: 12px 16px;
  }
}

.bubble__flexParent--sms-sent {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.bubble__flexParent--sms-received {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* -----------
Bubble Position
==============
@position:
topLeft
top
topRight
left
center
right
bottomLeft
bottom
bottomRight
-------------*/
.bubble__position--topLeft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bubble__position--top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bubble__position--topRight {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bubble__position--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bubble__position--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bubble__position--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bubble__position--bottomLeft {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.bubble__position--bottom {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.bubble__position--bottomRight {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* -----------
SMS Bubble Dynamic Stacking
==============
CSS classes for JavaScript to apply dynamic stacking
-------------*/
.bubble__flexParent {
  position: absolute;
  z-index: 1;
}

.bubble__sms-stack {
  z-index: 2;
}

/* -----------
Bubble Size
==============
@size:
auto
small
medium
large
full

width: 960px
$width: 488; // 960px
@include respond-to('m') {
	$width: 900;
}
@include respond-to('s') {
	$width: 690;
}
-------------*/
@media (min-width: 767px) {
  top: 16px;
  width: 688px;
  height: 366px;
}

@media (min-width: 1024px) {
  top: 16px;
  width: 880px;
  height: 482px;
}

.bubble__size--auto {
  width: auto;
}

.bubble__size--small {
  width: 144px;
}

@media (min-width: 767px) {
  .bubble__size--small {
    width: 204.333333333px;
  }
}

@media (min-width: 1024px) {
  .bubble__size--small {
    width: 266.333333333px;
  }
}

.bubble__size--medium {
  width: 219px;
}

@media (min-width: 767px) {
  .bubble__size--medium {
    width: 312px;
  }
}

@media (min-width: 1024px) {
  .bubble__size--medium {
    width: 406px;
  }
}

.bubble__size--large {
  width: 294px;
}

@media (min-width: 767px) {
  .bubble__size--large {
    width: 418.666666667px;
  }
}

@media (min-width: 1024px) {
  .bubble__size--large {
    width: 544.666666667px;
  }
}

.bubble__size--full {
  width: 100%;
  left: 0;
}

/* swiper */
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #f48e8f !important;
}

.swiper__nextBtn,
.swiper__prevBtn {
  position: absolute;
  top: calc(50% - 33px);
  width: 40px;
  height: 40px;
  padding: 20px 0;
  z-index: 10;
  outline: none;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  color: #f48e8f;
}

.swiper__nextBtn.swiper-button-disabled,
.swiper__prevBtn.swiper-button-disabled {
  color: #999;
  cursor: not-allowed;
  display: inline-block !important;
  pointer-events: none;
}

.swiper__nextBtn.swiper-redirect,
.swiper__prevBtn.swiper-redirect {
  color: #f48e8f;
  cursor: pointer;
  display: inline-block !important;
  pointer-events: auto;
}

.swiper__nextBtn .fa-3x.fa-angle-left,
.swiper__nextBtn .fa-3x.fa-angle-right,
.swiper__prevBtn .fa-3x.fa-angle-left,
.swiper__prevBtn .fa-3x.fa-angle-right {
  font-size: 2em;
}

@media (min-width: 767px) {
  .swiper__nextBtn .fa-3x.fa-angle-left,
  .swiper__nextBtn .fa-3x.fa-angle-right,
  .swiper__prevBtn .fa-3x.fa-angle-left,
  .swiper__prevBtn .fa-3x.fa-angle-right {
    font-size: 2.5em;
  }
}

.swiper__prevBtn {
  left: 0;
  right: auto;
  -moz-text-align-last: left;
       text-align-last: left;
}

.swiper__nextBtn {
  right: 0;
  left: auto;
  text-align: right;
}

/*--------
ticks style
===========

---------*/
.swiper-slide--bubble .bubble__circle {
  width: 20px;
  height: 20px;
  position: absolute;
  background-color: #F3F3F3;
  border-radius: 50%;
  border: 2px solid #252525;
  left: calc(50% - 10px);
  top: -29px;
}

.swiper-slide--bubble .bubble__circle .bubble__circle--small {
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #F3F3F3;
  border-radius: 50%;
  border: 2px solid #252525;
  top: calc(-16.6666666667px - 2px);
  left: calc(4.4444444444px - 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-slide--bubble .bubble__tick {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 20px 12px;
  border-color: transparent transparent #252525 transparent;
  top: calc(0px - 22px);
  left: calc(50% - 12px);
}

.swiper-slide--bubble .bubble__tick::before {
  z-index: 1;
  position: absolute;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 20px 12px;
  border-color: transparent transparent #F3F3F3 transparent;
  top: 4px;
  left: calc(50% - 12px);
}

/*--------
MIXIN for ticks
===========

@inputs
type: speech, thought
rotation: 0 - 360 (multiples of 10 ex: 0,10,20,30,40....)

---------*/
/* -----------
Generate thought/speech styles
==============

-------------*/
.bubble__circle.bubble__type--thought-10 {
  left: calc(60% - 10px);
  top: -29px;
  -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
          transform: rotate(10deg);
}

.bubble__tick.bubble__type--speech-10 {
  left: calc(60% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-20 {
  left: calc(70% - 10px);
  top: -29px;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
}

.bubble__tick.bubble__type--speech-20 {
  left: calc(70% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-30 {
  left: calc(80% - 10px);
  top: -29px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}

.bubble__tick.bubble__type--speech-30 {
  left: calc(80% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-40 {
  left: calc(90% - 10px);
  top: -29px;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.bubble__tick.bubble__type--speech-40 {
  left: calc(90% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-50 {
  left: calc(100% + 6px);
  top: calc(10% - 10px);
  -webkit-transform: rotate(50deg);
      -ms-transform: rotate(50deg);
          transform: rotate(50deg);
}

.bubble__tick.bubble__type--speech-50 {
  left: calc(100% + 2px - 2px);
  top: calc(10% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-60 {
  left: calc(100% + 6px);
  top: calc(20% - 10px);
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}

.bubble__tick.bubble__type--speech-60 {
  left: calc(100% + 2px - 2px);
  top: calc(20% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-70 {
  left: calc(100% + 6px);
  top: calc(30% - 10px);
  -webkit-transform: rotate(70deg);
      -ms-transform: rotate(70deg);
          transform: rotate(70deg);
}

.bubble__tick.bubble__type--speech-70 {
  left: calc(100% + 2px - 2px);
  top: calc(30% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-80 {
  left: calc(100% + 6px);
  top: calc(40% - 10px);
  -webkit-transform: rotate(80deg);
      -ms-transform: rotate(80deg);
          transform: rotate(80deg);
}

.bubble__tick.bubble__type--speech-80 {
  left: calc(100% + 2px - 2px);
  top: calc(40% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-90 {
  left: calc(100% + 6px);
  top: calc(50% - 10px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.bubble__tick.bubble__type--speech-90 {
  left: calc(100% + 2px - 2px);
  top: calc(50% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-100 {
  left: calc(100% + 6px);
  top: calc(60% - 10px);
  -webkit-transform: rotate(100deg);
      -ms-transform: rotate(100deg);
          transform: rotate(100deg);
}

.bubble__tick.bubble__type--speech-100 {
  left: calc(100% + 2px - 2px);
  top: calc(60% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-110 {
  left: calc(100% + 6px);
  top: calc(70% - 10px);
  -webkit-transform: rotate(110deg);
      -ms-transform: rotate(110deg);
          transform: rotate(110deg);
}

.bubble__tick.bubble__type--speech-110 {
  left: calc(100% + 2px - 2px);
  top: calc(70% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-120 {
  left: calc(100% + 6px);
  top: calc(80% - 10px);
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}

.bubble__tick.bubble__type--speech-120 {
  left: calc(100% + 2px - 2px);
  top: calc(80% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-130 {
  left: calc(100% + 6px);
  top: calc(90% - 10px);
  -webkit-transform: rotate(130deg);
      -ms-transform: rotate(130deg);
          transform: rotate(130deg);
}

.bubble__tick.bubble__type--speech-130 {
  left: calc(100% + 2px - 2px);
  top: calc(90% - 12px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-140 {
  left: calc(90% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(140deg);
      -ms-transform: rotate(140deg);
          transform: rotate(140deg);
}

.bubble__tick.bubble__type--speech-140 {
  left: calc(90% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-150 {
  left: calc(80% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}

.bubble__tick.bubble__type--speech-150 {
  left: calc(80% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-160 {
  left: calc(70% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(160deg);
      -ms-transform: rotate(160deg);
          transform: rotate(160deg);
}

.bubble__tick.bubble__type--speech-160 {
  left: calc(70% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-170 {
  left: calc(60% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(170deg);
      -ms-transform: rotate(170deg);
          transform: rotate(170deg);
}

.bubble__tick.bubble__type--speech-170 {
  left: calc(60% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-180 {
  left: calc(50% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.bubble__tick.bubble__type--speech-180 {
  left: calc(50% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-190 {
  left: calc(40% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(190deg);
      -ms-transform: rotate(190deg);
          transform: rotate(190deg);
}

.bubble__tick.bubble__type--speech-190 {
  left: calc(40% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-200 {
  left: calc(30% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(200deg);
      -ms-transform: rotate(200deg);
          transform: rotate(200deg);
}

.bubble__tick.bubble__type--speech-200 {
  left: calc(30% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-210 {
  left: calc(20% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}

.bubble__tick.bubble__type--speech-210 {
  left: calc(20% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-220 {
  left: calc(10% - 10px);
  top: calc(100% + 6px);
  -webkit-transform: rotate(220deg);
      -ms-transform: rotate(220deg);
          transform: rotate(220deg);
}

.bubble__tick.bubble__type--speech-220 {
  left: calc(10% - 12px);
  top: calc(100% + 2px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-230 {
  left: -29px;
  top: calc(90% - 10px);
  -webkit-transform: rotate(230deg);
      -ms-transform: rotate(230deg);
          transform: rotate(230deg);
}

.bubble__tick.bubble__type--speech-230 {
  left: calc(0px - 22px - 2px);
  top: calc(90% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-240 {
  left: -29px;
  top: calc(80% - 10px);
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}

.bubble__tick.bubble__type--speech-240 {
  left: calc(0px - 22px - 2px);
  top: calc(80% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-250 {
  left: -29px;
  top: calc(70% - 10px);
  -webkit-transform: rotate(250deg);
      -ms-transform: rotate(250deg);
          transform: rotate(250deg);
}

.bubble__tick.bubble__type--speech-250 {
  left: calc(0px - 22px - 2px);
  top: calc(70% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-260 {
  left: -29px;
  top: calc(60% - 10px);
  -webkit-transform: rotate(260deg);
      -ms-transform: rotate(260deg);
          transform: rotate(260deg);
}

.bubble__tick.bubble__type--speech-260 {
  left: calc(0px - 22px - 2px);
  top: calc(60% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-270 {
  left: -29px;
  top: calc(50% - 10px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}

.bubble__tick.bubble__type--speech-270 {
  left: calc(0px - 22px - 2px);
  top: calc(50% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-280 {
  left: -29px;
  top: calc(40% - 10px);
  -webkit-transform: rotate(280deg);
      -ms-transform: rotate(280deg);
          transform: rotate(280deg);
}

.bubble__tick.bubble__type--speech-280 {
  left: calc(0px - 22px - 2px);
  top: calc(40% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-290 {
  left: -29px;
  top: calc(30% - 10px);
  -webkit-transform: rotate(290deg);
      -ms-transform: rotate(290deg);
          transform: rotate(290deg);
}

.bubble__tick.bubble__type--speech-290 {
  left: calc(0px - 22px - 2px);
  top: calc(30% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-300 {
  left: -29px;
  top: calc(20% - 10px);
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg);
}

.bubble__tick.bubble__type--speech-300 {
  left: calc(0px - 22px - 2px);
  top: calc(20% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-310 {
  left: -29px;
  top: calc(10% - 10px);
  -webkit-transform: rotate(310deg);
      -ms-transform: rotate(310deg);
          transform: rotate(310deg);
}

.bubble__tick.bubble__type--speech-310 {
  left: calc(0px - 22px - 2px);
  top: calc(10% - 12px);
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-320 {
  left: calc(0% - 10px);
  top: -29px;
  -webkit-transform: rotate(320deg);
      -ms-transform: rotate(320deg);
          transform: rotate(320deg);
}

.bubble__tick.bubble__type--speech-320 {
  left: calc(0% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-330 {
  left: calc(10% - 10px);
  top: -29px;
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg);
}

.bubble__tick.bubble__type--speech-330 {
  left: calc(10% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-340 {
  left: calc(20% - 10px);
  top: -29px;
  -webkit-transform: rotate(340deg);
      -ms-transform: rotate(340deg);
          transform: rotate(340deg);
}

.bubble__tick.bubble__type--speech-340 {
  left: calc(20% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-350 {
  left: calc(30% - 10px);
  top: -29px;
  -webkit-transform: rotate(350deg);
      -ms-transform: rotate(350deg);
          transform: rotate(350deg);
}

.bubble__tick.bubble__type--speech-350 {
  left: calc(30% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

.bubble__circle.bubble__type--thought-360 {
  left: calc(40% - 10px);
  top: -29px;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.bubble__tick.bubble__type--speech-360 {
  left: calc(40% - 12px);
  top: calc(0px - 22px);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 2;
}

.bubble__type--sms-sent-270 {
  position: absolute;
  bottom: 0;
  right: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #007AFF;
  border-right: 9px solid transparent;
}

.bubble__type--sms-received-270 {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #e9e9eb;
  border-left: 9px solid transparent;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .wrapper {
    display: block;
  }
  .course_list .swiper-wrapper {
    display: block !important;
    max-width: 746px;
    margin: 0 auto;
  }
  .swiper-slide--bubbleContainer .bubble__order .bubble__flexParent {
    max-height: 355px;
  }
  .swiper-pagination {
    position: relative !important;
    margin-top: 20px !important;
  }
}

@media only screen and (min-width: 767px) and (max-height: 424px) {
  /* Bubbles */
  .swiper-slide--bubbleContainer {
    top: 8px;
    width: 486px;
    height: 254px;
  }
  .swiper-slide--bubbleContainer .bubble__order .bubble__flexParent {
    width: 486px;
    height: 254px;
  }
  .swiper-slide--bubbleContainer p {
    font-size: 14px;
    line-height: 1.2em;
  }
  .swiper-slide--bubbleContainer ol,
  .swiper-slide--bubbleContainer ul {
    font-size: 14px;
  }
  .swiper-slide--bubble {
    margin: 5px 18px;
  }
  .swiper-slide--bubble .bubble__content {
    padding: 12px 16px;
  }
  /* -----------
	Bubble Type
	==============
	-------------*/
  .bubble__type--speech,
  .bubble__type--thought {
    margin: 12px 18px;
  }
  .bubble__type--testimonial {
    width: 70%;
    right: 10px;
  }
  .bubble__type--testimonial p {
    color: #252525;
  }
  /* -----------
	Bubble Position
	==============
	-------------*/
  .bubble__size--small {
    width: 144px;
  }
  .bubble__size--medium {
    width: 219px;
  }
  .bubble__size--large {
    width: 294px;
  }
  .swiper__nextBtn .fa-3x.fa-angle-left,
  .swiper__nextBtn .fa-3x.fa-angle-right,
  .swiper__prevBtn .fa-3x.fa-angle-left,
  .swiper__prevBtn .fa-3x.fa-angle-right {
    font-size: 2em;
  }
}

/*== start of code for tooltips ==*/
.tool {
  cursor: pointer;
  position: relative;
}

/*== common styles for both parts of tool tip ==*/
.tool::before,
.tool::after {
  left: 50%;
  opacity: 0;
  position: absolute;
  z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
  opacity: 1;
  -webkit-transform: scale(1.01) translateY(0);
      -ms-transform: scale(1.01) translateY(0);
          transform: scale(1.01) translateY(0);
  z-index: 100;
}

/*== pointer tip ==*/
.tool::before {
  border-style: solid;
  border-width: 1em 0.75em 0 0.75em;
  border-color: #6371B6 transparent transparent transparent;
  bottom: 100%;
  content: "";
  margin-left: -0.5em;
  -webkit-transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26), opacity 0.65s 0.5s;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26), opacity 0.65s 0.5s;
  -webkit-transform: scale(0.6) translateY(-90%);
      -ms-transform: scale(0.6) translateY(-90%);
          transform: scale(0.6) translateY(-90%);
}

.tool:hover::before,
.tool:focus::before {
  -webkit-transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
}

/*== speech bubble ==*/
.tool::after {
  background: #6371B6;
  border-radius: .25em;
  bottom: 180%;
  color: #EDEFF0;
  content: attr(data-tip);
  margin-left: -8.75em;
  padding: 1em;
  -webkit-transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
  -webkit-transform: scale(0.6) translateY(50%);
      -ms-transform: scale(0.6) translateY(50%);
          transform: scale(0.6) translateY(50%);
  width: 17.5em;
}

.tool:hover::after,
.tool:focus::after {
  -webkit-transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26);
  transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26);
}

@media (max-width: 760px) {
  .tool::after {
    font-size: .75em;
    margin-left: -5em;
    width: 10em;
  }
}

.passwordShow__icon {
  font-size: 20px;
  cursor: pointer;
}

#autoComplete_wrapper {
  position: relative;
  display: inline-block;
}

#autoComplete {
  position: relative;
  padding: 0 2rem 0 3.5rem;
  height: 2.1rem;
  width: 6rem;
  font-size: 1.2rem;
  outline: none;
  border-radius: 50rem;
  border: 0.05rem solid #ff7a7a;
  caret-color: #ff7a7a;
  color: rgba(255, 255, 255, 0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all -webkit-transform 0.4s ease;
  text-overflow: ellipsis;
}

#autoComplete::-webkit-input-placeholder {
  color: rgba(255, 122, 122, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#autoComplete::-moz-placeholder {
  color: rgba(255, 122, 122, 0);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#autoComplete:-ms-input-placeholder {
  color: rgba(255, 122, 122, 0);
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#autoComplete::-ms-input-placeholder {
  color: rgba(255, 122, 122, 0);
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#autoComplete::placeholder {
  color: rgba(255, 122, 122, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#autoComplete:hover::-webkit-input-placeholder {
  color: rgba(255, 122, 122, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:hover::-moz-placeholder {
  color: rgba(255, 122, 122, 0.3);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:hover:-ms-input-placeholder {
  color: rgba(255, 122, 122, 0.3);
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:hover::-ms-input-placeholder {
  color: rgba(255, 122, 122, 0.3);
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:hover::placeholder {
  color: rgba(255, 122, 122, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus::-webkit-input-placeholder {
  padding: 1rem 0.5rem;
  font-size: 1rem;
  color: rgba(255, 122, 122, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus::-moz-placeholder {
  padding: 1rem 0.5rem;
  font-size: 1rem;
  color: rgba(255, 122, 122, 0.3);
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus:-ms-input-placeholder {
  padding: 1rem 0.5rem;
  font-size: 1rem;
  color: rgba(255, 122, 122, 0.3);
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus::-ms-input-placeholder {
  padding: 1rem 0.5rem;
  font-size: 1rem;
  color: rgba(255, 122, 122, 0.3);
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus::placeholder {
  padding: 1rem 0.5rem;
  font-size: 1rem;
  color: rgba(255, 122, 122, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete::-moz-selection {
  color: transparent;
}

#autoComplete::selection {
  color: transparent;
}

#autoComplete:focus::-moz-selection {
  color: #fff;
  background-color: #ff7a7a;
}

#autoComplete:focus::selection {
  color: #fff;
  background-color: #ff7a7a;
}

#autoComplete:hover {
  padding: 0 2rem 0 3.5rem;
  color: #ff7a7a;
  height: 3rem;
  width: 16.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all -webkit-transform 0.3s ease;
}

#autoComplete:focus {
  padding: 0 2rem 0 3.5rem;
  color: #ff7a7a;
  height: 3rem;
  width: 16.5rem;
  border: 0.05rem solid #ff7a7a;
  -webkit-box-shadow: rgba(255, 122, 122, 0.1) 0px 0px 20px 5px;
          box-shadow: rgba(255, 122, 122, 0.1) 0px 0px 20px 5px;
}

#autoComplete_results_list {
  position: fixed;
  height: 45vh;
  overflow: auto;
  z-index: 1000;
  padding: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  width: 18rem;
  overflow: hidden;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-transition: all -webkit-transform 0.1s ease;
}

.autoComplete_result {
  margin: 0.15rem auto;
  padding: 0.6rem;
  max-width: 280px;
  border: 0.05rem solid #e3e3e3;
  list-style: none;
  text-align: left;
  font-size: 1.1rem;
  color: #7b7b7b;
  text-transform: capitalize;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  background-color: #fff;
  /* white-space: normal; */
}

.autoComplete_result::-moz-selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_result::selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_result:last-child {
  border-radius: 0 0 1rem 1rem;
}

.autoComplete_result:hover {
  cursor: pointer;
  background-color: rgba(255, 248, 248, 0.9);
  border-left: 2px solid #ff7a7a;
  border-right: 2px solid #ff7a7a;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.autoComplete_result:focus {
  outline: none;
  background-color: rgba(255, 248, 248, 0.9);
  border-left: 2px solid #ff7a7a;
  border-right: 2px solid #ff7a7a;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}

.autoComplete_highlighted {
  opacity: 1;
  color: #ff7a7a;
  font-weight: bold;
}

.autoComplete_highlighted::-moz-selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

.autoComplete_highlighted::selection {
  color: rgba(255, 255, 255, 0);
  background-color: rgba(255, 255, 255, 0);
}

@media only screen and (max-width: 600px) {
  #autoComplete {
    width: 5rem;
    background: url("./images/magnifier.svg") no-repeat center/25% 1.5rem;
  }
  #autoComplete:focus {
    width: 11rem;
    background: url("./images/magnifier.svg") no-repeat left/25% 1.5rem;
  }
  .autoComplete_result:first-child {
    border-radius: 1rem 1rem 0 0;
  }
  .autoComplete_result:last-child {
    border-radius: 0 0 1rem 1rem;
  }
  .autoComplete_result:only-child {
    border-radius: 1rem;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #autoComplete {
    border-width: 1px;
  }
  #autoComplete:hover {
    border-width: 1px;
  }
  #autoComplete:focus {
    border-width: 1px;
  }
}

@-moz-document url-prefix() {
  #autoComplete {
    border-width: 1px;
    background: url("./images/magnifier.svg") no-repeat center;
    background-size: 10%;
  }
  #autoComplete:hover {
    border-width: 1px;
    background: url("./images/magnifier.svg") no-repeat left;
    background-position: 4%;
    background-size: 7.5%;
  }
  #autoComplete:focus {
    border-width: 1px;
    background: url("./images/magnifier.svg") no-repeat left/10% 2rem;
    background-position: 4%;
    background-size: 6.5%;
  }
}

/* Just a Thought styles */
.input.text #suburb_input:before {
  font-family: "Font Awesome 5 Free";
  content: "\f002";
  display: inline-block;
  padding-left: 14px;
  padding-top: 11px;
  vertical-align: middle;
  font-weight: 900;
  position: absolute;
}

.input.text input[type='text'].autoComplete {
  margin-bottom: 0;
}

.input.text ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 16px;
}

.input.text ul li.autoComplete_result {
  max-width: none;
  margin: 0 .15rem auto;
  font-size: .825rem;
  border: none;
  border-right: 1px solid #c0c0c0;
  border-left: 1px solid #c0c0c0;
  padding: 0.6rem 0.6rem 0.6rem 16px;
}

.input.text ul li.autoComplete_result:last-child {
  border-radius: 0;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid #c0c0c0;
}

.input.text ul li.autoComplete_result:hover {
  cursor: pointer;
  background-color: rgba(0, 126, 132, 0.2);
}

.input.text ul li.autoComplete_result .autoComplete_highlighted {
  opacity: 1;
  color: #007e84;
  font-weight: 700;
}

table thead tr th, table thead tr td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

table thead tr.table-header-autosize th {
  width: auto;
}

/* tables */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
  background-color: transparent;
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: top;
}

.table thead th {
  vertical-align: bottom;
  width: 14%;
}

.table.table-striped {
  border-spacing: 0;
}

.table.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(192, 192, 192, 0.2);
}

@media (min-width: 1024px) {
  .table.table-striped {
    padding: 0;
  }
}

.patientStories_table_mobile {
  display: none;
}

.scoreExplanation {
  width: 40%;
}

@media (min-width: 1024px) {
  .healthRecord table td {
    padding: 0;
  }
}

@media (max-width: 766px) {
  .responsive-card-table {
    width: 100%;
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  .responsive-card-table .td-text-right {
    text-align: right;
  }
  .responsive-card-table td, .responsive-card-table tr {
    display: block;
  }
  .responsive-card-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .responsive-card-table td {
    /* make like a "row" */
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: relative;
    padding-left: 50%;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
  }
  .responsive-card-table td:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  .responsive-card-table td:last-of-type {
    border-bottom: 0px;
  }
  .responsive-card-table tr:nth-child(odd) td {
    border-bottom: 1px solid #FFFFFF;
  }
  .responsive-card-table td:before {
    content: attr(data-label);
    display: inline-block;
    margin-left: -100%;
    width: 100%;
    word-break: break-all;
    padding-right: 20px;
    float: left;
  }
  .responsive-card-table td:after {
    content: "";
    display: block;
    clear: both;
  }
  .responsive-card-table td.table__data-none {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
  .responsive-card-table .td-full-width {
    padding-left: 0%;
    padding-right: 0;
  }
  .responsive-card-table .td-full-width .td-text-right {
    text-align: left;
    padding-left: 12px;
  }
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .patientStories_table_desktop {
    display: none;
  }
  .patientStories_table_mobile {
    display: block;
  }
  .patientStories_table_mobile .responsive-card-table {
    margin-top: 10px;
  }
  .patientStories_table_mobile .responsive-card-table td:nth-child(even) {
    background-color: #FFFFFF;
  }
  td.scoreExplanation:before .td-text-right,
  td.scoreExplanation:after .td-text-right,
  td.scoreExplanation .td-text-right {
    padding-right: 12px;
  }
  .scoreExplanation {
    width: 100%;
  }
  .scoreExplanation li,
  .scoreExplanation .hint {
    word-break: break-word;
  }
}

.badge {
  display: inline-block;
  padding: .4em .6em .25em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge--primary {
  color: #fff;
  background-color: #007bff;
}

.badge--danger {
  color: #fff;
  background-color: #dc3545;
}

.badge--highDistressScore {
  color: #212529;
  background-color: #ff9800;
  white-space: normal;
}

.badge--warning {
  color: #212529;
  background-color: #ffc107;
}

.badge__close {
  font-weight: 700;
  color: #212529;
  padding-left: 8px;
}

.badge__close:hover {
  color: #212529;
  text-decoration: none;
}

.badge__table {
  font-size: 100%;
}

.badge__table > a {
  font-weight: 700;
  color: #212529;
}

.infoTooltip {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  /* Positions */
}

.infoTooltip__text {
  position: absolute;
  /* vertically center */
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  /* move to right */
  left: 100%;
  margin-left: 15px;
  /* and add a small left margin */
  /* basic styles */
  width: 420px;
  padding: 16px;
  border-radius: 10px;
  background: #cde4ff;
  color: #585170;
  -webkit-box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.25);
  display: none;
  /* hide by default */
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  z-index: 10;
  word-break: normal;
  text-align: left;
}

.infoTooltip__text li {
  font-weight: 400;
}

.infoTooltip__text:after {
  content: "";
  position: absolute;
  /* position tooltip correctly */
  right: 100%;
  margin-left: -5px;
  /* vertically center */
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  /* the arrow */
  border: 10px solid #cde4ff;
  border-color: transparent #cde4ff transparent transparent;
  display: none;
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  z-index: 10;
}

.infoTooltip:hover .infoTooltip__text, .infoTooltip:hover .infoTooltip__text:after {
  display: block;
  opacity: 1;
}

.infoTooltip.left .infoTooltip__text {
  /* reset defaults */
  left: initial;
  margin: initial;
  /* set new values */
  right: 100%;
  margin-right: 15px;
}

.infoTooltip.left .infoTooltip__text:after {
  /* reset defaults */
  left: initial;
  margin: initial;
  /* set new values */
  left: 100%;
  margin-right: -5px;
  border-color: transparent transparent transparent #cde4ff;
}

ol.ol--step {
  list-style: none;
  counter-reset: my-awesome-counter;
}

ol.ol--step li {
  counter-increment: my-awesome-counter;
}

ol.ol--step li::before {
  content: "Step " counter(my-awesome-counter) ". ";
  font-weight: bold;
}

.list_striped > li, .list_striped > div {
  background: #fff;
}

.list_striped > li:nth-of-type(odd), .list_striped > div:nth-of-type(odd) {
  background-color: #F3F3F3;
}

.freshdesk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 200;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1020;
  width: 100%;
  pointer-events: none;
  max-height: 100%;
  max-height: calc(100% - 40px);
}

@media (min-width: 767px) {
  .freshdesk {
    width: inherit;
    right: 5px;
    margin: 0;
    bottom: 5px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .freshdesk .modal__freshdesk {
    max-height: calc(100vh - 120px);
  }
}

.freshdesk .modal__freshdesk.modal__freshdesk--close {
  display: none;
}

.freshdesk .modal__freshdesk.modal__freshdesk--open {
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.625rem 1.625rem;
  margin: 0 5%;
  border-radius: 0;
  pointer-events: all;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 767px) {
  .freshdesk .modal__freshdesk.modal__freshdesk--open {
    border-radius: 16px;
    margin-bottom: 8px;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
            box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  }
}

.freshdesk .modal__freshdesk.modal__freshdesk--open.modal__freshdesk--thankYou .freshdesk__form {
  display: none;
}

.freshdesk .modal__freshdesk.modal__freshdesk--open.modal__freshdesk--thankYou .freshdesk__thankYou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.freshdesk .modal__freshdesk.modal__freshdesk--open form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.freshdesk .modal__freshdesk.modal__freshdesk--open .freshdesk__thankYou {
  display: none;
}

.freshdesk .modal__freshdesk.modal__freshdesk--open .freshdesk__thankYou p {
  margin-bottom: 56px;
}

.freshdesk .modal__freshdesk .modal__freshdesk--headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.freshdesk .modal__freshdesk .modal__freshdesk--headline h3 {
  margin-bottom: 0;
}

.freshdesk .modal__freshdesk .freshdesk__form p,
.freshdesk .modal__freshdesk .freshdesk__thankYou p {
  margin-top: 4px;
  text-align: center;
}

.freshdesk .modal__freshdesk .freshdesk__form i,
.freshdesk .modal__freshdesk .freshdesk__thankYou i {
  font-size: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.freshdesk .modal__freshdesk .freshdesk__form .form-group i.status-icon,
.freshdesk .modal__freshdesk .freshdesk__thankYou .form-group i.status-icon {
  display: none;
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .freshdesk .modal__freshdesk .freshdesk__form .form-group i.status-icon,
  .freshdesk .modal__freshdesk .freshdesk__thankYou .form-group i.status-icon {
    display: block;
  }
}

.freshdesk .modal__freshdesk .freshdesk__form .input-container.textarea textarea,
.freshdesk .modal__freshdesk .freshdesk__thankYou .input-container.textarea textarea {
  height: 80px;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@media (min-width: 767px) {
  .freshdesk .modal__freshdesk .freshdesk__form .input-container.textarea textarea,
  .freshdesk .modal__freshdesk .freshdesk__thankYou .input-container.textarea textarea {
    height: 160px;
  }
}

.freshdesk .modal__freshdesk .freshdesk__form .input-container input[id='freshdesk__subject'],
.freshdesk .modal__freshdesk .freshdesk__thankYou .input-container input[id='freshdesk__subject'] {
  margin-bottom: 0;
}

.freshdesk .modal__freshdesk .freshdesk__form #sendTicket,
.freshdesk .modal__freshdesk .freshdesk__thankYou #sendTicket {
  -ms-flex-item-align: center;
      align-self: center;
}

@media (min-width: 480px) {
  .freshdesk .modal__freshdesk .freshdesk__form #sendTicket,
  .freshdesk .modal__freshdesk .freshdesk__thankYou #sendTicket {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.freshdesk .modal__freshdesk .freshdesk__form #sendTicket.loading,
.freshdesk .modal__freshdesk .freshdesk__thankYou #sendTicket.loading {
  padding: 8px 20px;
}

.freshdesk .freshdesk__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.freshdesk .freshdesk__button .btn__freshdesk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #5261ae;
  color: #FFFFFF;
  padding: 8px;
  width: 15px;
  height: 15px;
  border-radius: 23px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.1s width;
  transition: 0.1s width;
  margin: 0;
  pointer-events: all;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media (min-width: 767px) {
  .freshdesk .freshdesk__button .btn__freshdesk {
    padding: 16px;
    border-radius: 26px;
  }
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open .btn__freshdesk--text {
  opacity: 0;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open .btn__freshdesk--text::after {
  content: '';
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open .fa-times {
  display: none;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open .fa-question {
  display: block;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open:hover {
  background-color: #5261ae;
  width: 176px;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open:hover .btn__freshdesk--text {
  opacity: 100%;
  -webkit-transition: opacity 0.1s 0.15s;
  transition: opacity 0.1s 0.15s;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open:hover .btn__freshdesk--text::after {
  content: 'Technical support ';
  padding-right: 4px;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--close .btn__freshdesk--text {
  opacity: 0;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--close .btn__freshdesk--text::after {
  content: '';
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--close .fa-times {
  display: block;
}

.freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--close .fa-question {
  display: none;
}

.error .freshdesk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  bottom: 0;
  right: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .error .freshdesk .modal__freshdesk {
    max-height: 100%;
  }
}

.error .freshdesk .modal__freshdesk.modal__freshdesk--close {
  display: none;
}

.error .freshdesk .modal__freshdesk.modal__freshdesk--open {
  overflow-y: scroll;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0;
  pointer-events: all;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (min-width: 767px) {
  .error .freshdesk .modal__freshdesk.modal__freshdesk--open {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0.625rem 1.625rem;
  }
}

.error .freshdesk .modal__freshdesk .freshdesk__form p.freshdesk__form-info,
.error .freshdesk .modal__freshdesk .freshdesk__thankYou p.freshdesk__form-info {
  margin-top: 4px;
  text-align: center;
  margin-bottom: 16px;
}

.error .freshdesk .modal__freshdesk .freshdesk__form i,
.error .freshdesk .modal__freshdesk .freshdesk__thankYou i {
  font-size: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.error .freshdesk .modal__freshdesk .freshdesk__form .input-container.textarea textarea,
.error .freshdesk .modal__freshdesk .freshdesk__thankYou .input-container.textarea textarea {
  height: 80px;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@media (min-width: 767px) {
  .error .freshdesk .modal__freshdesk .freshdesk__form .input-container.textarea textarea,
  .error .freshdesk .modal__freshdesk .freshdesk__thankYou .input-container.textarea textarea {
    height: 160px;
  }
}

.error .freshdesk .modal__freshdesk .freshdesk__form .input-container input[id='freshdesk__subject'], .error .freshdesk .modal__freshdesk .freshdesk__form .input-container input[id='freshdesk__description'], .error .freshdesk .modal__freshdesk .freshdesk__form .input-container input[id='email'],
.error .freshdesk .modal__freshdesk .freshdesk__thankYou .input-container input[id='freshdesk__subject'],
.error .freshdesk .modal__freshdesk .freshdesk__thankYou .input-container input[id='freshdesk__description'],
.error .freshdesk .modal__freshdesk .freshdesk__thankYou .input-container input[id='email'] {
  margin-bottom: 0;
}

.error .freshdesk .freshdesk__button {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.error .freshdesk .freshdesk__button .btn__freshdesk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #5261ae;
  color: #FFFFFF;
  width: auto;
  padding: 8px 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0 0;
  pointer-events: all;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media (min-width: 767px) {
  .error .freshdesk .freshdesk__button .btn__freshdesk {
    padding: 8px 32px;
    border-radius: 26px;
  }
}

.error .freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open::after {
  content: 'Report an error';
}

.error .freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--open:hover {
  background-color: #4a579d;
  width: auto;
}

.error .freshdesk .freshdesk__button .btn__freshdesk.btn__freshdesk--close::after {
  content: 'X Close';
}

.breadcrumbs {
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a {
  color: #5261ae;
}

.breadcrumbs a:hover {
  color: #007e84;
  text-decoration: none;
}

.breadcrumbs--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-left: 24px;
}

@media (min-width: 1024px) {
  .breadcrumbs--mobile {
    display: none;
    margin-left: 0;
  }
}

.breadcrumbs a:visited {
  color: #5261ae;
}

.breadcrumbs a:visited:hover {
  color: #007e84;
}

.breadcrumbs .breadcrumbs__courses, .breadcrumbs .breadcrumbs__dashboard, .breadcrumbs .breadcrumbs__resources, .breadcrumbs .breadcrumbs__settings, .breadcrumbs .breadcrumbs__homework {
  color: transparent;
  font-size: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-decoration: none;
}

.breadcrumbs .breadcrumbs__courses:visited, .breadcrumbs .breadcrumbs__dashboard:visited, .breadcrumbs .breadcrumbs__resources:visited, .breadcrumbs .breadcrumbs__settings:visited, .breadcrumbs .breadcrumbs__homework:visited {
  color: #5261ae;
}

.breadcrumbs .breadcrumbs__courses:visited:hover, .breadcrumbs .breadcrumbs__dashboard:visited:hover, .breadcrumbs .breadcrumbs__resources:visited:hover, .breadcrumbs .breadcrumbs__settings:visited:hover, .breadcrumbs .breadcrumbs__homework:visited:hover {
  color: #007e84;
}

.breadcrumbs .breadcrumbs__courses::before, .breadcrumbs .breadcrumbs__dashboard::before, .breadcrumbs .breadcrumbs__resources::before, .breadcrumbs .breadcrumbs__settings::before, .breadcrumbs .breadcrumbs__homework::before {
  margin-right: 6px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  background-position: bottom;
  display: inline-block;
}

@media (min-width: 767px) {
  .breadcrumbs .breadcrumbs__courses::before, .breadcrumbs .breadcrumbs__dashboard::before, .breadcrumbs .breadcrumbs__resources::before, .breadcrumbs .breadcrumbs__settings::before, .breadcrumbs .breadcrumbs__homework::before {
    background-position: center;
  }
}

@media (min-width: 1024px) {
  .breadcrumbs .breadcrumbs__courses, .breadcrumbs .breadcrumbs__dashboard, .breadcrumbs .breadcrumbs__resources, .breadcrumbs .breadcrumbs__settings, .breadcrumbs .breadcrumbs__homework {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    color: #585170;
  }
}

.breadcrumbs .breadcrumbs__dashboard::before {
  content: " ";
  background-image: url("/img/home.svg");
}

.breadcrumbs .breadcrumbs__courses::before {
  content: " ";
  background-image: url("/img/courses.svg");
}

.breadcrumbs .breadcrumbs__resources::before {
  content: " ";
  background-image: url("/img/resources.svg");
}

.breadcrumbs .breadcrumbs__settings::before {
  content: " ";
  background-image: url("/img/settings.svg");
}

.breadcrumbs .breadcrumbs__homework::before {
  content: " ";
  background-image: url("/img/Healthrecord.svg");
}

.StoryPage .breadcrumbs--mobile {
  margin-left: 0;
}

.patientDashboard .breadcrumbs > a, .clinicianDashboard .breadcrumbs > a, .viewMyCourses .breadcrumbs > a, .patientUpdateMyDetails .breadcrumbs > a, .clinicianUpdateMyDetails .breadcrumbs > a, .patientViewMyHealthRecord .breadcrumbs > a, .clinicianResources .breadcrumbs > a {
  font-size: 14px;
  color: #5261ae;
  text-decoration: none;
}

.patientDashboard .breadcrumbs > a::before, .clinicianDashboard .breadcrumbs > a::before, .viewMyCourses .breadcrumbs > a::before, .patientUpdateMyDetails .breadcrumbs > a::before, .clinicianUpdateMyDetails .breadcrumbs > a::before, .patientViewMyHealthRecord .breadcrumbs > a::before, .clinicianResources .breadcrumbs > a::before {
  top: 10px;
}

@media (min-width: 767px) {
  .patientDashboard .breadcrumbs > a::before, .clinicianDashboard .breadcrumbs > a::before, .viewMyCourses .breadcrumbs > a::before, .patientUpdateMyDetails .breadcrumbs > a::before, .clinicianUpdateMyDetails .breadcrumbs > a::before, .patientViewMyHealthRecord .breadcrumbs > a::before, .clinicianResources .breadcrumbs > a::before {
    top: 0;
  }
}

.patientDashboard .breadcrumbs > a:only-child, .clinicianDashboard .breadcrumbs > a:only-child, .viewMyCourses .breadcrumbs > a:only-child, .patientUpdateMyDetails .breadcrumbs > a:only-child, .clinicianUpdateMyDetails .breadcrumbs > a:only-child, .patientViewMyHealthRecord .breadcrumbs > a:only-child, .clinicianResources .breadcrumbs > a:only-child {
  color: #585170;
  font-weight: 600;
}

.announcement {
  font-size: 15px;
  color: #155723;
  background-color: #d3ecda;
  border: 1px solid #c2e6ca;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
}

.announcement--blue {
  background-color: #cde4ff;
  border: 1px solid #b8daff;
  color: #585170;
}

.announcement--blue p {
  color: #585170;
}

.announcement__content {
  width: 100%;
}

.announcement__content--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #4E4B6D;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .announcement__content--head {
    -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;
  }
}

.announcement__content--copy {
  margin-right: 32px;
}

@media (min-width: 1024px) {
  .announcement__content--copy {
    margin-right: 16px;
  }
}

.announcement__content p {
  margin: 0;
}

.announcement__close {
  min-width: 56px;
  cursor: pointer;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media (min-width: 1024px) {
  .announcement__close {
    -ms-flex-item-align: auto;
        align-self: auto;
  }
}

@media (min-width: 767px) {
  .announcement {
    margin: 0 auto 32px;
  }
}

@media (min-width: 1024px) {
  .announcement {
    margin: 0;
    max-width: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.announcement.hide {
  display: none !important;
}

.story__page .announcement {
  display: none;
}

.referrals_container {
  padding: 20px 16px;
  margin: 0 20px 24px;
  -webkit-box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.15);
}

@media (min-width: 767px) {
  .referrals_container {
    padding: 20px inherit;
    margin: inherit;
    margin-bottom: 24px;
  }
}

.referrals_container h2 {
  margin-top: 0;
}

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

.referrals_list_item {
  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: 1rem;
  padding: 8px 8px 16px 8px;
}

@media (min-width: 767px) {
  .referrals_list_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 8px;
    font-size: 16px;
  }
}

.referrals_list_item__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 767px) {
  .referrals_list_item__action {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.referrals_list_item__delete {
  background-color: transparent;
  color: #6884AA;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  margin-right: 8px;
  border: none;
}

.referrals_list_item__delete.hide {
  display: none;
}

.referrals_list_item__accept, .referrals_list_item__decline {
  margin: 0 4px;
  font-size: 14px;
  padding: 6px 16px;
}

.referralsListCourse {
  margin-bottom: 24px;
}

.referralsListCourse .referrals_list_item__copy p {
  margin: 8px 0;
}

.referralsListCourse .card {
  margin-bottom: 16px;
}

.switch {
  position: relative;
  display: inline-block;
}

.switch-input {
  display: none;
}

.switch-label {
  display: block;
  width: 64px;
  height: 26px;
  text-indent: 36px;
  clip: rect(0 0 0 0);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  padding: 0;
}

.switch-value::after {
  content: "OFF";
  position: absolute;
  height: 100%;
  width: 100%;
  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;
  top: 0;
  left: 0;
  text-indent: 20px;
  font-weight: 600;
  font-size: 12px;
  color: #FFF;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  pointer-events: none;
  -webkit-transition: text-indent 0.25s ease;
  transition: text-indent 0.25s ease;
}

.switch-value {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  pointer-events: none;
}

.switch-label::before,
.switch-label::after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}

.switch-label::before {
  width: 100%;
  height: 100%;
  background-color: #c0c0c0;
  border-radius: 9999em;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.switch-label::after {
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.45);
  -webkit-transition: left 0.25s ease;
  transition: left 0.25s ease;
}

.switch-input:checked + .switch-label::before {
  background-color: #6371B6;
}

.switch-input:checked + .switch-label::after {
  left: 41px;
}

.switch-input:checked ~ .switch-value::after {
  content: "ON";
  text-indent: -20px;
}

.switch_list_item .loading-icon {
  display: inline-block;
  -webkit-filter: invert(44%) sepia(13%) saturate(1684%) hue-rotate(193deg) brightness(99%) contrast(93%);
          filter: invert(44%) sepia(13%) saturate(1684%) hue-rotate(193deg) brightness(99%) contrast(93%);
  vertical-align: middle;
  margin-right: 8px;
  visibility: hidden;
  width: 0;
}

@media (min-width: 767px) {
  .switch_list_item .loading-icon {
    width: auto;
  }
}

.switch_list_item.loading .switch-label::before {
  background-color: #c0c0c0;
}

.switch_list_item.loading .loading-icon {
  visibility: visible;
}

.body-blackout {
  position: absolute;
  z-index: 1010;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
}

.body-blackout.is-blacked-out {
  display: block;
}

.body-blackout.is-greyed-out {
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
}

.body-blackout.is-whited-out {
  display: block;
  background-color: #FFFFFF;
  height: 2000px;
}

@media (min-width: 767px) {
  .body-blackout.is-whited-out {
    background-color: rgba(0, 0, 0, 0.25);
  }
}

.stop-scroll {
  position: sticky;
  overflow: hidden;
}

.popup-trigger {
  display: inline-block;
}

.popup-modal {
  height: 300px;
  width: 320px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 45px 0 96px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  z-index: 1011;
}

@media (min-width: 1024px) {
  .popup-modal {
    padding: 45px 45px 72px;
  }
}

.popup-modal h3 {
  margin-bottom: 0;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .popup-modal h3 {
    padding: 0;
  }
}

.popup-modal p {
  margin-top: 8px;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .popup-modal p {
    padding: 0;
  }
}

.popup-modal.is--visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.popup-modal__close {
  margin: 0 0 20px;
}

.popup-modal .popup-modal__content {
  text-align: center;
  overflow: auto;
}

.popup-modal .popup-modal__content .swiper-container {
  width: 100%;
  height: 100%;
}

.popup-modal .popup-modal__content .popup-modal__image {
  height: auto;
  width: 100px;
  display: block;
  margin: 0 auto;
}

.popup-modal .popup-modal__content .popup-modal__headline {
  margin-top: 8px;
  padding: 0 24px;
}

.popup-modal .popup-modal__content .swiper-slide {
  text-align: center;
  font-size: 15px;
  background: #fff;
  /* Center slide text vertically */
  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;
}

.popup-modal .popup-modal__content .swiper-slide img {
  width: 138px;
  height: auto;
}

.popup-modal .popup-modal__content .swiper-slide .btn {
  margin: 0;
}

.popup-modal .popup-modal__content .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 24px;
  margin-top: 48px !important;
}

@media (min-width: 1024px) {
  .popup-modal .popup-modal__content .swiper-container-horizontal > .swiper-pagination-bullets {
    margin-top: 20px !important;
  }
}

.popup-modal.modal__newTerms {
  width: 100%;
  height: 100%;
  margin: 0;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .popup-modal.modal__newTerms {
    width: 800px;
    height: 600px;
    padding-bottom: 40px;
  }
}

.popup-modal.modal__newTerms .popup-modal__content .popup-modal__image {
  height: auto;
  width: 100px;
  display: none;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .popup-modal.modal__newTerms .popup-modal__content .popup-modal__image {
    display: block;
  }
}

.popup-modal.modal__newTerms form {
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .popup-modal.modal__newTerms form {
    padding: 0;
  }
}

.popup-modal.modal__newTerms h3,
.popup-modal.modal__newTerms li,
.popup-modal.modal__newTerms p {
  text-align: left;
}

.popup-modal.modal__newTerms li {
  padding-bottom: 8px;
}

.popup-modal.modal__newTerms.popup-modal--shortHeight {
  width: 90%;
  height: auto;
  margin: 0;
  padding-bottom: 0;
}

.popup-modal.modal__newTerms.popup-modal--shortHeight .popup-modal__content {
  padding: 16px;
}

.popup-modal.modal__newTerms.popup-modal--shortHeight .popup-modal__content .popup-modal__image {
  display: none;
}

.timeout-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  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;
}

.timeout-modal-container.hide {
  opacity: 0;
  pointer-events: none;
}

.timeout-modal {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% - 32px);
}

@media (min-width: 767px) {
  .timeout-modal {
    width: 350px;
  }
}

.timeout-modal p {
  margin: 1rem 0;
  text-align: center;
}

.timeout-modal h3 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
}

.timeout-modal.hide {
  opacity: 0;
  pointer-events: none;
}

.timeout-modal.expired {
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.timeout-modal .timeout-modal-image {
  padding: 0 48px;
}

.timeout-modal .timeout-modal-image img {
  width: 100%;
}

.timeout-timer {
  font-size: 24px;
  margin: 10px 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;
  gap: 20px;
}

.timeout-timer div {
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

.timeout-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.timeout-buttons button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin: 20px 0 0 0;
}

.timeout-buttons button.timeout-renew {
  background-color: #c9467f;
  color: white;
}

.timeout-buttons button.timeout-renew:hover {
  background-color: #be3772;
}

.timeout-buttons button.timeout-logout {
  background-color: #6371B6;
  color: white;
}

.timeout-buttons button.timeout-logout:hover {
  background-color: #5261ae;
}

.timeout-buttons button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.timeout-buttons button.loading {
  position: relative;
  color: transparent !important;
}

.timeout-buttons button.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-right-color: transparent;
  -webkit-animation: button-loading-spinner 0.75s linear infinite;
          animation: button-loading-spinner 0.75s linear infinite;
}

@-webkit-keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.timeout-login-form {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.timeout-login-form .form-group {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 16rem;
  width: 100%;
}

.timeout-login-form .form-group .input-container {
  width: 100%;
}

.timeout-login-form .form-group input {
  width: 100%;
}

.timeout-login-form .loading-animation {
  text-align: center;
  padding: 2rem;
  opacity: 0;
  -webkit-animation: fadeIn 0.3s ease-out forwards;
          animation: fadeIn 0.3s ease-out forwards;
}

.timeout-login-form .loading-animation .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#timeout-login-form h3 {
  margin-bottom: 1rem;
}

#timeout-login-form .form-error-message {
  display: none;
  color: #de2e39;
  margin: 2px 0px 1rem 0;
  font-size: 13px;
  text-decoration: none;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

#timeout-login-form .timeout-buttons {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#timeout-login-form .timeout-buttons button {
  width: 100%;
  margin: 10px 0;
}

#timeout-login-form .timeout-buttons button:first-child {
  margin-top: 8px;
  background-color: #c9467f;
  color: white;
}

#timeout-login-form .timeout-buttons button:first-child:hover {
  background-color: #be3772;
}

#timeout-login-form .timeout-buttons button:last-child {
  margin-bottom: 0;
  background-color: #6371B6;
  color: white;
}

#timeout-login-form .timeout-buttons button:last-child:hover {
  background-color: #5261ae;
}

body.blur {
  overflow-y: hidden;
}

body.blur .wrapper {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  height: 100%;
}

body.blur .freshdesk {
  opacity: 0;
}

.form-group .input-container .multi-select-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-group .input-container .multi-select-container .selected-items {
  min-height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  -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, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  margin-bottom: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding-right: 30px;
  position: relative;
  width: 100%;
}

.form-group .input-container .multi-select-container .selected-items::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  width: 24px;
  background: url("../img/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.form-group .input-container .multi-select-container .selected-items.active::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.form-group .input-container .multi-select-container .selected-items:hover {
  border-color: #c0c0c0;
}

.form-group .input-container .multi-select-container .selected-items:focus {
  outline: #6371B6;
  -webkit-box-shadow: 0 0 5px #6371b6;
          box-shadow: 0 0 5px #6371b6;
  border: 1px solid #6371b6 !important;
}

.form-group .input-container .multi-select-container .selected-items.form-error {
  -webkit-box-shadow: 0 0 0px 2px #de2e39;
          box-shadow: 0 0 0px 2px #de2e39;
}

.form-group .input-container .multi-select-container .selected-items:empty:before {
  color: rgba(0, 0, 0, 0.52);
}

.form-group .input-container .multi-select-container .tag {
  background: #e9ecef;
  border-radius: 4px;
  padding: 1px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13px;
  border: 1px solid #c0c0c0;
  color: #495057;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form-group .input-container .multi-select-container .tag:hover {
  background: #c0c0c0;
}

.form-group .input-container .multi-select-container .tag .remove {
  cursor: pointer;
  color: #495057;
  font-size: 20px;
  line-height: 1;
  padding: 0 2px;
  margin-left: 2px;
}

.form-group .input-container .multi-select-container .tag .remove:hover {
  color: #dc3545;
}

.form-group .input-container .multi-select-container .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  width: calc(100% - 20px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1024px) {
  .form-group .input-container .multi-select-container .dropdown {
    width: 100%;
  }
}

.form-group .input-container .multi-select-container .dropdown.show {
  display: block;
}

.form-group .input-container .multi-select-container .dropdown::-webkit-scrollbar {
  width: 8px;
}

.form-group .input-container .multi-select-container .dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.form-group .input-container .multi-select-container .dropdown::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.form-group .input-container .multi-select-container .dropdown::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.form-group .input-container .multi-select-container .dropdown-item {
  padding: 8px 12px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #212529;
  font-size: 14px;
}

.form-group .input-container .multi-select-container .dropdown-item:hover {
  background: #e9ecef;
  color: #000;
}

.form-group .input-container .multi-select-container .dropdown-item.selected {
  background: #e9ecef;
  color: #495057;
  position: relative;
}

.form-group .input-container .multi-select-container .dropdown-item.selected:after {
  content: '✓';
  position: absolute;
  right: 12px;
  color: #198754;
}

.form-group .input-container .multi-select-container select {
  display: none;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #212529;
}

.landscapeCover {
  background-color: #f3f3f3;
  position: absolute;
  width: 100%;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  top: 0;
  padding-left: 0;
  padding: 24px 0 48px;
}

.landscapeCover.openCover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.landscapeCover .landscapeCover__content {
  text-align: center;
}

.landscapeCover .landscapeCover__content i {
  color: #f48e8f;
}

.landscapeCover .landscapeCover__content .landscapeCover__copy {
  font-size: 16px;
}

@media (min-width: 767px) {
  .landscapeCover .landscapeCover__content .landscapeCover__copy {
    font-size: 30px;
  }
}

.video-modal-btn.video-js .vjs-big-play-button, .video-no-modal.video-js .vjs-big-play-button {
  background: #c9467f;
  border-radius: 75px;
  width: 75px;
  height: 75px;
  line-height: 75px;
  top: calc(50% - 37.5px);
  left: calc(50% - 37.5px);
  font-size: 50px;
  opacity: 0.9;
  border: none;
  margin: 0;
}

.video-modal-btn.video-js .vjs-big-play-button:hover, .video-modal-btn.video-js .vjs-big-play-button:focus, .video-no-modal.video-js .vjs-big-play-button:hover, .video-no-modal.video-js .vjs-big-play-button:focus {
  opacity: 0.85;
  background: #c9467f;
}

@media (min-width: 1024px) {
  .video-modal-btn.video-js .vjs-big-play-button, .video-no-modal.video-js .vjs-big-play-button {
    border-radius: 100px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    font-size: 70px;
  }
}

.video-modal-btn.video-js:hover .vjs-big-play-button, .video-no-modal.video-js:hover .vjs-big-play-button {
  background: #c9467f;
}

.story {
  margin: 0 auto;
}

.story .video-container {
  margin-top: 48px;
  width: 100%;
}

@media (min-width: 1024px) {
  .story .video-container {
    margin-top: 20px;
  }
}

.story .swiper-container {
  margin-top: 8px;
  width: 100%;
}

.story .swiper-slide {
  overflow: hidden;
  text-align: center;
  /* Center slide text vertically */
  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;
}

.story .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 767px) {
  .story {
    margin: 0 auto;
  }
}

.story .story__header {
  display: none;
}

@media (min-width: 1024px) {
  .story .story__header {
    display: block;
  }
}

.story .story__header h1.story__courseTitle {
  text-align: left;
}

.story .card {
  margin-bottom: 2.625rem;
  padding: 1.625rem 2.625rem;
}

.story .card .img-wrapper {
  display: none;
}

h3.story__title {
  text-transform: uppercase;
  font-size: 0.825em;
  margin-bottom: 0;
  color: #007e84;
}

.story__description {
  font-size: 1.333333333em;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .story__description {
    margin-bottom: 0;
  }
}

h5.list_header {
  margin-top: 48px;
}

.story-block-buttons {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1024px) {
  .story-block-buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.story-block-buttons__buttons {
  float: left;
}

@media (min-width: 1024px) {
  .backToCourse__btn {
    display: inline-block;
  }
}

.StoryPage #footer,
.StoryPage .alert, .storyPage #footer,
.storyPage .alert, .story__page #footer,
.story__page .alert {
  display: none;
}

@media (min-width: 767px) {
  .StoryPage #footer,
  .StoryPage .alert, .storyPage #footer,
  .storyPage .alert, .story__page #footer,
  .story__page .alert {
    display: block;
  }
}

.StoryPage .backToCourse__btn.btn, .StoryPage .continueToHomework.btn, .storyPage .backToCourse__btn.btn, .storyPage .continueToHomework.btn, .story__page .backToCourse__btn.btn, .story__page .continueToHomework.btn {
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 11px;
  text-decoration: none;
  margin: 0px auto;
  border: 2px solid #c9467f;
  scale: 130%;
}

@media (min-width: 767px) {
  .StoryPage .backToCourse__btn.btn, .StoryPage .continueToHomework.btn, .storyPage .backToCourse__btn.btn, .storyPage .continueToHomework.btn, .story__page .backToCourse__btn.btn, .story__page .continueToHomework.btn {
    border-radius: 48px;
    padding: 8px 16px;
    font-size: 13px;
    text-decoration: none;
  }
}

@media (min-width: 1024px) {
  .StoryPage .backToCourse__btn.btn, .StoryPage .continueToHomework.btn, .storyPage .backToCourse__btn.btn, .storyPage .continueToHomework.btn, .story__page .backToCourse__btn.btn, .story__page .continueToHomework.btn {
    scale: 140%;
  }
}

@media (min-width: 1200px) {
  .StoryPage .backToCourse__btn.btn, .StoryPage .continueToHomework.btn, .storyPage .backToCourse__btn.btn, .storyPage .continueToHomework.btn, .story__page .backToCourse__btn.btn, .story__page .continueToHomework.btn {
    scale: 150%;
  }
}

.StoryPage .main__content.slides, .storyPage .main__content.slides, .story__page .main__content.slides {
  width: 488px;
}

@media (min-width: 767px) {
  .StoryPage .main__content.slides, .storyPage .main__content.slides, .story__page .main__content.slides {
    width: 690px;
  }
}

@media (min-width: 1024px) {
  .StoryPage .main__content.slides, .storyPage .main__content.slides, .story__page .main__content.slides {
    width: 900px;
  }
}

.StoryPage .main__content.video, .storyPage .main__content.video, .story__page .main__content.video {
  width: 95%;
  padding-bottom: 8px;
}

@media (min-width: 480px) {
  .StoryPage .main__content.video, .storyPage .main__content.video, .story__page .main__content.video {
    width: 76.25%;
  }
}

@media (min-width: 1024px) {
  .StoryPage .main__content.video, .storyPage .main__content.video, .story__page .main__content.video {
    width: 900px;
  }
}

.StoryPage .main__content .story__buttons, .storyPage .main__content .story__buttons, .story__page .main__content .story__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 71%;
  z-index: 1;
  width: 100%;
}

@media (min-width: 767px) {
  .StoryPage .main__content .story__buttons, .storyPage .main__content .story__buttons, .story__page .main__content .story__buttons {
    top: 72%;
  }
}

@media (min-width: 1024px) {
  .StoryPage .main__content .story__buttons, .storyPage .main__content .story__buttons, .story__page .main__content .story__buttons {
    top: 75%;
  }
}

.StoryPage .main__content .clinician__story__buttons, .storyPage .main__content .clinician__story__buttons, .story__page .main__content .clinician__story__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.StoryPage .main__content .storyVideo__buttons, .storyPage .main__content .storyVideo__buttons, .story__page .main__content .storyVideo__buttons {
  margin-top: 20px;
  scale: 100%;
}

.stories__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .stories__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.complete {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2ab27b;
  margin-top: 15px;
  height: auto;
}

.complete i {
  -ms-flex-item-align: center;
      align-self: center;
}

.complete p {
  margin-left: 8px;
  font-weight: 700;
  -ms-flex-item-align: end;
      align-self: flex-end;
  color: #2ab27b;
}

/* view available stories */
.stories .card {
  width: calc(100% - 48px);
  height: auto;
  margin: 0 24px 32px;
  padding-bottom: 0;
}

@media (min-width: 767px) {
  .stories .card {
    width: 746px;
    margin: 0 auto 32px;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .stories .card {
    width: 900px;
    height: 360px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1200px) {
  .stories .card {
    width: 960px;
  }
}

.stories .card .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  background-position: -10000px;
  background-size: contain;
  border-radius: 16px;
  background-repeat: no-repeat;
}

@media (min-width: 1024px) {
  .stories .card .block {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .stories .card .block {
    background-position: left center;
  }
}

.stories .card .block.disabled {
  opacity: 0.5;
}

.stories .card .block .card__copy {
  margin-left: 24px;
  width: 100%;
  text-align: left;
  padding: 0 24px 0 8px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.stories .card .block .card__copy .teaching_lesson {
  text-align: left;
  padding: 16px 0;
  color: #008851;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stories .card .block .card__copy .teaching_lesson div {
  padding-left: 16px;
}

.stories .card .block .card__copy .caption h4 {
  color: #007e84;
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 0;
}

.stories .card .block .card__copy .caption p {
  font-size: 18px;
  margin-top: 0;
}

.stories .card .block .card__copy .story-block-buttons .btn {
  margin: 10px 4px 10px 0;
}

@media (min-width: 1024px) {
  .stories .card .block .card__copy .story-block-buttons .btn {
    margin: 10px 2px 16px 0;
    font-size: 14px;
    padding: 6px 20px;
  }
}

@media (min-width: 1200px) {
  .stories .card .block .card__copy .story-block-buttons .btn {
    margin: 10px 8px 10px 0;
    padding: 8px 24px;
    font-size: 15px;
  }
}

.stories .card .block .card__copy .story-block-buttons .btn:last-child {
  margin-right: 0;
}

/* Responsive Style */
@media only screen and (max-width: 459px) {
  .stories h2 {
    width: 300px;
  }
}

@media only screen and (max-width: 1023px) {
  .stories h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .stories__header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .stories__header--right .btn-info--outline {
    display: none;
  }
  .stories__header--right .btn {
    margin-right: 0;
    font-size: 16px;
    padding: 15px 30px;
  }
  .stories .card .block {
    display: block;
  }
  .stories .card .block .card__copy {
    width: 100%;
    padding: 0;
    margin-left: 0;
  }
  .stories .card .block .card__copy .card_copyContent {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
  }
  .stories .card .block .card__copy .card_copyContent .teaching_lesson {
    font-size: 16px;
  }
  .stories .card .block .card__copy .caption.greyout.bold {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stories .card .block .card__copy .caption h4 {
    font-size: 18px;
    margin: 10px;
  }
  .stories .card .block .card__copy .caption p {
    font-size: 21px;
    text-align: center;
  }
  .stories .card .block .card__copy .story-block-buttons__buttons {
    float: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stories .card .block .card__copy .story-block-buttons .btn {
    margin: 10px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .stories .card .block .card__copy .story-block-buttons .complete {
    float: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .StoryPage .story, .storyPage .story {
    display: block;
  }
}

h1 {
  text-align: center;
}

.pull {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
}

.overlay {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

.iconContainer {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10%;
}

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

.iconContainer .rotationHelp h3 {
  font-size: 18px;
  color: #0FA5B1;
  text-align: center;
  margin: 48px auto 16px;
}

.iconContainer .rotationHelp p {
  font-size: 16px;
  color: #4E4B6D;
}

.iconContainer .rotationHelp a {
  border-radius: 48px;
  font-size: 14px;
  padding: 8px 24px;
  margin: 16px;
}

.iconContainer p {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 20px;
  opacity: 1;
}

.phone {
  position: relative;
  left: 50%;
  margin-left: -50px;
  width: 0;
  height: 0;
  border: 0 solid #000;
  background: #a9a9a9;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.phone i {
  text-align: center;
  width: 100%;
  line-height: 120px;
  font-size: 50px;
  color: #454545;
  opacity: 0;
}

@media only screen and (max-width: 1023px) {
  .overlay {
    display: block;
  }
  .overlay .phone {
    -webkit-animation: sizeIncrease 0.5s forwards ease, borderIncrease 0.5s 0.5s forwards ease, rotateRight 0.7s 1s forwards ease;
            animation: sizeIncrease 0.5s forwards ease, borderIncrease 0.5s 0.5s forwards ease, rotateRight 0.7s 1s forwards ease;
  }
  .overlay .phone i {
    -webkit-animation: fadeIn 0.5s 0.8s forwards ease;
            animation: fadeIn 0.5s 0.8s forwards ease;
  }
}

@media only screen and (min-width: 767px) and (max-height: 424px) {
  .StoryPage .main__content.slides, .storyPage .main__content.slides {
    width: 488px;
  }
}

@media only screen and (max-width: 1023px) {
  .StoryPage .main__content, .storyPage .main__content {
    margin: 0 auto;
  }
  .StoryPage nav.sidebar__menu, .storyPage nav.sidebar__menu {
    display: none;
  }
  .StoryPage .story__buttons, .storyPage .story__buttons {
    position: absolute;
    top: 0;
    z-index: 100;
    width: calc(100vw - 16px);
  }
}

/* KEYFRAMES
------------------------------------------- */
/* Animate width + height */
@-webkit-keyframes sizeIncrease {
  0% {
    width: 0;
    height: 10px;
  }
  50% {
    width: 100px;
    height: 10px;
  }
  100% {
    width: 100px;
    height: 160px;
  }
}
@keyframes sizeIncrease {
  0% {
    width: 0;
    height: 10px;
  }
  50% {
    width: 100px;
    height: 10px;
  }
  100% {
    width: 100px;
    height: 160px;
  }
}

/* Add borders */
@-webkit-keyframes borderIncrease {
  100% {
    border-width: 20px 10px;
  }
}
@keyframes borderIncrease {
  100% {
    border-width: 20px 10px;
  }
}

/* fade-in  */
@keyframes fadeIn {
  100% {
    color: #000;
    opacity: 1;
  }
}

/* Rotate device */
@-webkit-keyframes rotateRight {
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@keyframes rotateRight {
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.stories__lesson .main__content #survey__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 48px;
  padding: 0 16px;
  gap: 16px;
}

@media (min-width: 480px) {
  .stories__lesson .main__content #survey__navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

@media (min-width: 767px) {
  .stories__lesson .main__content #survey__navigation {
    margin-bottom: 56px;
  }
}

@media (min-width: 1024px) {
  .stories__lesson .main__content #survey__navigation {
    margin-bottom: 48px;
    padding: 0;
  }
}

.stories__lesson .main__content #survey__pagination {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 12px;
}

@media (min-width: 767px) {
  .stories__lesson .main__content #survey__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 2rem;
  }
}

.stories__lesson .main__content .page-count__text {
  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;
}

@media (min-width: 767px) {
  .stories__lesson .main__content .page-count__text {
    display: none;
  }
}

.stories__lesson .main__content .sv-action.nav-button .sv-action__content .nav-input {
  background-color: rgba(0, 0, 0, 0);
  width: 32px;
  height: 32px;
  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-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
  border: 2px solid #007e84;
  color: #007e84;
}

.stories__lesson .main__content .sv-action.nav-button .sv-action__content .nav-input:hover {
  color: white;
  background-color: #007e84;
}

.stories__lesson .main__content .sv-action.nav-button.sv-action--active .sv-action__content .nav-input {
  color: white;
  background-color: #007e84;
}

@media screen and (min-width: 1024px) {
  .stories__lesson .main__content .sv-action.page-index {
    display: none;
  }
}

.stories__lesson .main__content .sv-action.page-index .page-count-text {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.stories__lesson .main__content .sv-checkbox__svg, .stories__lesson .main__content .sv-dropdown {
  background-color: #fff;
}

.stories__lesson .main__content .sv-dropdown .sv-dropdown__select {
  background-color: #fff;
}

.stories__lesson .main__content .sv-dropdown input[type="text"][readonly] {
  background-color: rgba(0, 0, 0, 0) !important;
}

.stories__lesson .main__content .sv-checkbox--checked .sv-checkbox__svg {
  background: #0075ff;
}

.stories__lesson .main__content .sv-item--disabled .sv-checkbox__svg {
  background-color: #eee !important;
  cursor: not-allowed;
  border: none;
}

.stories__lesson .main__content .sv-item--disabled .sv-checkbox__svg use {
  fill: #000;
}

.stories__lesson .main__content .panel--plain {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 8px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0 !important;
}

.stories__lesson .main__content .label-w--auto {
  width: auto !important;
}

.stories__lesson .main__content .padding-r--0 {
  padding-right: 0 !important;
}

.stories__lesson .main__content .padding-r--10 {
  padding-right: 10px !important;
}

.stories__lesson .main__content .label-font-size--small {
  font-size: 16px !important;
}

.stories__lesson .main__content .lesson__intro {
  font-size: 15px;
  background-color: #cce5ff;
  border: 1px solid #b8daff;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px;
}

@media (min-width: 767px) {
  .stories__lesson .main__content .lesson__intro {
    margin: 20px auto 32px;
    max-width: 750px;
  }
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .lesson__intro {
    margin: 0 auto 32px;
    max-width: none;
  }
}

.stories__lesson .main__content .lesson__intro .lesson__intro--close {
  font-weight: bold;
  cursor: pointer;
  padding: 16px;
}

.stories__lesson .main__content .lesson__intro .lesson__intro--content {
  padding: 16px 8px 16px 32px;
}

.stories__lesson .main__content .lesson__intro .lesson__intro--content ol,
.stories__lesson .main__content .lesson__intro .lesson__intro--content ul {
  padding-left: 18px;
}

.stories__lesson .main__content .lesson__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
  margin-top: 40px;
  padding: 16px;
}

.stories__lesson .main__content .lesson__buttons .pagination {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.stories__lesson .main__content .lesson__buttons .btn {
  margin: 0 0 16px 0;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .lesson__buttons {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .stories__lesson .main__content .lesson__buttons .pagination {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
  .stories__lesson .main__content .lesson__buttons .btn {
    margin: 0;
  }
}

.stories__lesson .main__content .btn {
  margin: 0;
}

.stories__lesson .main__content .page {
  padding: 16px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* label */
  /* cards */
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page {
    padding: 0;
  }
}

.stories__lesson .main__content .page.page--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stories__lesson .main__content .page .video-container {
  margin: 1.625rem 0.825rem;
}

.stories__lesson .main__content .page .input.checkbox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0;
}

.stories__lesson .main__content .page .input.checkbox label {
  margin: 0 0 1em;
}

.stories__lesson .main__content .page .input.checkbox span {
  font-weight: 400;
}

.stories__lesson .main__content .page .input.textarea textarea {
  width: 100%;
}

.stories__lesson .main__content .page td[data-label='Tasks'] textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.stories__lesson .main__content .page .input.select {
  display: block;
}

.stories__lesson .main__content .page .radio_group {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 8px 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .radio_group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.stories__lesson .main__content .page .radio_group .radio_group--item {
  padding: 8px;
}

.stories__lesson .main__content .page .radio_group .radio_group--item input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.stories__lesson .main__content .page .radio_group .radio_group--item label {
  border-radius: 48px;
  padding: 8px 32px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  border-color: transparent;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.1s;
  border: 2px solid #6371B6;
  color: #6371B6;
  background-color: white;
}

.stories__lesson .main__content .page .radio_group .radio_group--item label:hover {
  background-color: #5261ae;
  color: white;
  outline-color: #5261ae;
  border: 2px solid #5261ae;
}

.stories__lesson .main__content .page .radio_group .radio_group--item input[type="radio"]:checked + label {
  background-color: #5261ae;
  color: white;
  outline-color: #5261ae;
  border: 2px solid #5261ae;
}

.stories__lesson .main__content .page img {
  width: 100%;
}

.stories__lesson .main__content .page p {
  margin: 0.5em 0;
}

.stories__lesson .main__content .page p.thought {
  color: inherit;
  font-style: italic;
}

.stories__lesson .main__content .page ol.thought,
.stories__lesson .main__content .page ul:not([class*="sv-"]).thought {
  color: inherit;
  font-style: italic;
}

.stories__lesson .main__content .page ol li,
.stories__lesson .main__content .page ul:not([class*="sv-"]) li {
  margin: 0 0 16px;
  font-weight: 400;
}

.stories__lesson .main__content .page ol li.thought,
.stories__lesson .main__content .page ul:not([class*="sv-"]) li.thought {
  color: inherit;
  font-style: italic;
}

.stories__lesson .main__content .page ul:not([class*="sv-"]) {
  list-style: none;
  padding-left: 24px;
}

.stories__lesson .main__content .page ul:not([class*="sv-"]) li::before {
  content: "•";
  color: #5ac7da;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: 700;
}

.stories__lesson .main__content .page ul.vjs-menu-content {
  list-style: none;
  padding-left: 0;
}

.stories__lesson .main__content .page ul.vjs-menu-content li.vjs-menu-item {
  width: auto;
  margin: 0;
}

.stories__lesson .main__content .page ul.vjs-menu-content li.vjs-menu-item::before {
  content: "";
}

.stories__lesson .main__content .page table {
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 2em;
}

.stories__lesson .main__content .page table thead tr th {
  border-bottom: none;
  font-weight: 700;
}

.stories__lesson .main__content .page table tbody {
  font-weight: bold;
}

.stories__lesson .main__content .page table td,
.stories__lesson .main__content .page table th {
  padding: 0;
  text-align: initial;
  line-height: 1.4em;
  font-weight: 400;
}

.stories__lesson .main__content .page table td li,
.stories__lesson .main__content .page table th li {
  text-align: left;
  font-weight: 400;
}

.stories__lesson .main__content .page table tr.hide--mobile {
  display: none;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page table tr.hide--mobile {
    display: inherit;
  }
}

.stories__lesson .main__content .page.table--border thead {
  border: 2px solid #738dae;
  background-color: #738dae;
}

.stories__lesson .main__content .page.table--border thead th {
  color: #ffffff;
  padding: 8px 16px;
}

.stories__lesson .main__content .page.table--border.table--blue tbody,
.stories__lesson .main__content .page.table--border.table--blue thead {
  border: 2px solid #738dae;
  background-color: #54d1df;
}

.stories__lesson .main__content .page.table--border.table--blue tbody th,
.stories__lesson .main__content .page.table--border.table--blue thead th {
  color: #585170;
  padding: 8px 16px;
}

.stories__lesson .main__content .page.table--border.table--blue.table--responsive thead {
  border: none;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page.table--border.table--blue.table--responsive thead {
    border: 2px solid #738dae;
  }
}

.stories__lesson .main__content .page.table--border tbody tr,
.stories__lesson .main__content .page.table--border tbody tr td {
  border: 2px solid #738dae;
  background-color: #ffffff;
}

.stories__lesson .main__content .page.table--border tbody tr td {
  padding: 8px 16px;
}

.stories__lesson .main__content .page.table--border tbody tr th {
  text-align: center;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--grid thead th {
  border-left: 2px solid #738dae;
  border-top: 2px solid #738dae;
  border-right: 2px solid #738dae;
  border-bottom: none;
  background-color: #ffffff;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--grid thead th.th--clear {
  border: none;
  background-color: transparent;
}

.stories__lesson .main__content .page .table--grid tbody td.td--blue, .stories__lesson .main__content .page .table--grid tbody td.sv-table__cell--row-text {
  background-color: #738dae;
  color: #FFFFFF;
  font-weight: 700;
}

.stories__lesson .main__content .page .table--striped thead {
  background-color: #738dae;
}

.stories__lesson .main__content .page .table--striped thead th {
  color: #ffffff;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--striped.table--blue thead {
  background-color: #54d1df;
}

.stories__lesson .main__content .page .table--striped.table--blue thead th {
  color: #585170;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--striped tbody tr,
.stories__lesson .main__content .page .table--striped thead tr {
  border: 2px solid #738dae;
}

.stories__lesson .main__content .page .table--striped tbody tr td,
.stories__lesson .main__content .page .table--striped thead tr td {
  border: none;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--striped tbody tr {
  background-color: #ffffff;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--responsive {
  width: 100%;
  /* Hide table headers (but not display: none;, for accessibility) */
}

.stories__lesson .main__content .page .table--responsive.step-table tr td {
  border: none;
  background-color: transparent;
}

.stories__lesson .main__content .page .table--responsive.step-table p.empty-line, .stories__lesson .main__content .page .table--responsive.step-table td.empty-line {
  display: none;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .table--responsive.step-table p.empty-line, .stories__lesson .main__content .page .table--responsive.step-table td.empty-line {
    display: block;
  }
}

.stories__lesson .main__content .page .table--responsive.step-table tr:last-of-type {
  border-bottom: none;
}

@media only screen and (max-width: 1023px) {
  .stories__lesson .main__content .page .table--responsive.step-table tr td {
    width: auto !important;
  }
}

.stories__lesson .main__content .page .table--responsive .td-text-right {
  text-align: right;
}

.stories__lesson .main__content .page .table--responsive td,
.stories__lesson .main__content .page .table--responsive tr {
  display: block;
}

.stories__lesson .main__content .page .table--responsive thead {
  border: none;
}

.stories__lesson .main__content .page .table--responsive thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.stories__lesson .main__content .page .table--responsive thead.thead--show tr {
  position: static;
  top: auto;
  left: auto;
}

.stories__lesson .main__content .page .table--responsive tbody tr {
  padding: 0;
  border: none;
}

.stories__lesson .main__content .page .table--responsive tbody tr:last-of-type {
  border-bottom: 2px solid #738dae;
}

.stories__lesson .main__content .page .table--responsive tbody tr td {
  border-left: 2px solid #738dae;
  border-top: 2px solid #738dae;
  border-right: 2px solid #738dae;
  border-bottom: none;
  background-color: #ffffff;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--responsive tbody tr td[data-label] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .table--responsive tbody tr td[data-label] {
    display: table-cell;
  }
}

.stories__lesson .main__content .page .table--responsive tbody tr th {
  text-align: center;
  padding: 8px 16px;
}

.stories__lesson .main__content .page .table--responsive.table--clear tbody tr td {
  border: none;
  background-color: transparent;
}

.stories__lesson .main__content .page .table--responsive.table--clear tbody tr:last-of-type {
  border-bottom: none;
}

.stories__lesson .main__content .page .table--responsive td {
  /* make like a "row" */
  border: none;
  position: relative;
  text-align: left;
}

.stories__lesson .main__content .page .table--responsive td:before {
  content: attr(data-label);
  display: inline-block;
  width: 100%;
  font-weight: 700;
  padding-right: 20px;
  float: left;
}

.stories__lesson .main__content .page .table--responsive.table--blue td {
  padding: 0;
}

.stories__lesson .main__content .page .table--responsive.table--blue td p {
  padding: 8px 20px;
  margin: 0;
}

.stories__lesson .main__content .page .table--responsive.table--blue td ul {
  margin: 0 20px;
  padding: 8px 20px;
}

.stories__lesson .main__content .page .table--responsive.table--blue td:before {
  display: block;
  width: auto;
  padding: 8px 20px;
  float: none;
  background-color: #54d1df;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .table--responsive.table--blue td:before {
    display: none;
  }
}

.stories__lesson .main__content .page .table--responsive td:after {
  content: "";
  display: block;
  clear: both;
}

.stories__lesson .main__content .page .table--responsive td.table__data-none {
  padding-left: 0;
  text-align: center;
  background-color: #738dae;
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

.stories__lesson .main__content .page .table--responsive .td-full-width {
  padding-left: 0;
  padding-right: 0;
}

.stories__lesson .main__content .page .table--responsive .td-full-width .td-text-right {
  text-align: left;
  padding-left: 12px;
}

.stories__lesson .main__content .page .table--responsive td.td__image {
  width: 100%;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .table--responsive {
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  .stories__lesson .main__content .page .table--responsive tbody tr,
  .stories__lesson .main__content .page .table--responsive thead tr {
    position: static;
    top: auto;
    left: auto;
    display: table-row;
  }
  .stories__lesson .main__content .page .table--responsive td {
    display: table-cell;
  }
  .stories__lesson .main__content .page .table--responsive td.td__image {
    width: 25%;
  }
  .stories__lesson .main__content .page .table--responsive td:before {
    content: "";
    display: none;
  }
  .stories__lesson .main__content .page .table--responsive td:after {
    content: "";
    display: none;
  }
  .stories__lesson .main__content .page .table--responsive td.table__data-none {
    padding-left: 16px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0);
    color: inherit;
    font-weight: 400;
  }
}

.stories__lesson .main__content .page .table--image td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.stories__lesson .main__content .page .table--image td img {
  width: 100%;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .table--image td img {
    width: auto;
    max-width: 960px;
  }
}

.stories__lesson .main__content .page .align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.stories__lesson .main__content .page .row {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .row {
    -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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.stories__lesson .main__content .page .row.row--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stories__lesson .main__content .page .row .row__image {
  max-width: 800px;
}

.stories__lesson .main__content .page .row .row__image img {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .row .row__image img {
    width: auto;
  }
}

.stories__lesson .main__content .page .row.row--pink {
  color: #f06292;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
}

.stories__lesson .main__content .page .row.row--pink i {
  padding-left: 4px;
}

.stories__lesson .main__content .page .arrow {
  text-align: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .arrow {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.stories__lesson .main__content .page .hide--mobile {
  display: none;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .hide--mobile {
    display: inherit;
  }
}

.stories__lesson .main__content .page .label--edit {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0 8px;
}

.stories__lesson .main__content .page .label--edit:before {
  display: none;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .label--edit:before {
    content: "";
    background: url("https://hosted.justathought.co.nz/justathoughtnz-files/microservice/assets/write.png");
    width: 60px;
    height: 52px;
    display: block;
    margin-right: 12px;
  }
}

.stories__lesson .main__content .page .sections .sv-panel__content .sv-row:first-child .section {
  border-top: 2px solid #b6b3d4;
  border-bottom: 2px solid #b6b3d4;
}

.stories__lesson .main__content .page .sections .sv-panel__content .sv-row:not(:first-child) .section {
  border-bottom: 2px solid #b6b3d4;
}

.stories__lesson .main__content .page .card {
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  margin: 1.625rem 0.825rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.stories__lesson .main__content .page .card ol li,
.stories__lesson .main__content .page .card ul li {
  text-align: left;
  margin: 8px auto;
}

.stories__lesson .main__content .page .card.card--yellow {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fed64c;
}

.stories__lesson .main__content .page .card.card--yellow ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--blue {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #c4e9fb;
}

.stories__lesson .main__content .page .card.card--blue ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--green {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #52ba70;
  color: #ffffff;
}

.stories__lesson .main__content .page .card.card--green h2,
.stories__lesson .main__content .page .card.card--green h3,
.stories__lesson .main__content .page .card.card--green p,
.stories__lesson .main__content .page .card.card--green strong {
  color: #ffffff;
}

.stories__lesson .main__content .page .card.card--aqua {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #388f99;
  color: #ffffff;
}

.stories__lesson .main__content .page .card.card--aqua ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--aqua h2,
.stories__lesson .main__content .page .card.card--aqua h3,
.stories__lesson .main__content .page .card.card--aqua p,
.stories__lesson .main__content .page .card.card--aqua strong {
  color: #ffffff;
}

.stories__lesson .main__content .page .card.card--purple {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #6782a6;
  color: #ffffff;
}

.stories__lesson .main__content .page .card.card--purple ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--purple h2,
.stories__lesson .main__content .page .card.card--purple h3,
.stories__lesson .main__content .page .card.card--purple p,
.stories__lesson .main__content .page .card.card--purple strong {
  color: #ffffff;
}

.stories__lesson .main__content .page .card.card--spiritual {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #b4d9844d;
  border: 2px solid #b4d984;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--spiritual ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--spiritual h2,
.stories__lesson .main__content .page .card.card--spiritual h3,
.stories__lesson .main__content .page .card.card--spiritual p,
.stories__lesson .main__content .page .card.card--spiritual strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--spiritual .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--emotional {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #c4ceee4d;
  border: 2px solid #c4ceee;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--emotional ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--emotional h2,
.stories__lesson .main__content .page .card.card--emotional h3,
.stories__lesson .main__content .page .card.card--emotional p,
.stories__lesson .main__content .page .card.card--emotional strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--emotional .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--physical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f8cb7d4d;
  border: 2px solid #f8cb7d;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--physical ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--physical h2,
.stories__lesson .main__content .page .card.card--physical h3,
.stories__lesson .main__content .page .card.card--physical p,
.stories__lesson .main__content .page .card.card--physical strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--physical .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--family {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #efbbad4d;
  border: 2px solid #efbbad;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--family ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--family h2,
.stories__lesson .main__content .page .card.card--family h3,
.stories__lesson .main__content .page .card.card--family p,
.stories__lesson .main__content .page .card.card--family strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--family .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--environmental {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #b3e4d44d;
  border: 2px solid #b3e4d4;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--environmental ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--environmental h2,
.stories__lesson .main__content .page .card.card--environmental h3,
.stories__lesson .main__content .page .card.card--environmental p,
.stories__lesson .main__content .page .card.card--environmental strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--environmental .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--aggressive {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #e7ae974d;
  border: 2px solid #e7ae97;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--aggressive ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--aggressive h2,
.stories__lesson .main__content .page .card.card--aggressive h3,
.stories__lesson .main__content .page .card.card--aggressive p,
.stories__lesson .main__content .page .card.card--aggressive strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--aggressive .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--passive {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #94b2f14d;
  border: 2px solid #94b2f1;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--passive ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--passive h2,
.stories__lesson .main__content .page .card.card--passive h3,
.stories__lesson .main__content .page .card.card--passive p,
.stories__lesson .main__content .page .card.card--passive strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--passive .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--assertive {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #aec8a14d;
  border: 2px solid #aec8a1;
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--assertive ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--assertive h2,
.stories__lesson .main__content .page .card.card--assertive h3,
.stories__lesson .main__content .page .card.card--assertive p,
.stories__lesson .main__content .page .card.card--assertive strong {
  color: #4E4B6D;
}

.stories__lesson .main__content .page .card.card--assertive .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--teal {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #56d1df;
  color: #4e4b6d;
}

.stories__lesson .main__content .page .card.card--teal ul li::before {
  color: inherit;
}

.stories__lesson .main__content .page .card.card--teal h2,
.stories__lesson .main__content .page .card.card--teal h3,
.stories__lesson .main__content .page .card.card--teal p,
.stories__lesson .main__content .page .card.card--teal strong {
  color: #4e4b6d;
}

.stories__lesson .main__content .page .card.card--left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}

.stories__lesson .main__content .page .card.card--thoughts {
  border: 2px solid #dccdf7;
  background: #dccdf74d;
}

.stories__lesson .main__content .page .card.card--thoughts .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--behaviours {
  border: 2px solid #ffd0b8;
  background: #ffd0b84d;
}

.stories__lesson .main__content .page .card.card--behaviours .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card--emotions-and-physical {
  border: 2px solid #f8f4a8;
  background: #f8f4a84d;
}

.stories__lesson .main__content .page .card.card--emotions-and-physical .sv-panel__content {
  width: 100%;
}

.stories__lesson .main__content .page .card.card__download {
  background-color: #fed64c;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("https://hosted.justathought.co.nz/justathoughtnz-files/microservice%2Fassets%2F1550007985702-Extra+resource%402x.png");
  background-position: center 16px;
  background-repeat: no-repeat;
  background-size: 100px 86px;
  padding-top: 120px;
  padding-bottom: 24px;
  min-height: auto;
}

@media (min-width: 1024px) {
  .stories__lesson .main__content .page .card.card__download {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-position: 24px center;
    padding-left: 140px;
    padding-top: 16px;
    min-height: 86px;
  }
}

.stories__lesson .main__content .page .card strong {
  display: contents;
}

.stories__lesson .main__content .page .card ul {
  margin-top: 0;
  max-width: 100%;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.login {
  margin: 0;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background: #dee9fe;
  background: radial-gradient(circle at top, #bddfff 10%, #dee9fe 30%, rgba(222, 233, 254, 0) 40%), radial-gradient(circle at -30% 60%, rgba(99, 113, 182, 0.8) 0%, rgba(99, 113, 182, 0) 30%), radial-gradient(circle at top right, #fcfafe 10%, #fbe7f7 20%, rgba(251, 231, 247, 0) 40%), linear-gradient(8deg, #d7faff 30%, #e8f9fe 60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: -webkit-fill-available;
  max-height: -moz-available;
  max-height: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login.registration_form {
  display: block;
}

.login.registration_form .container {
  background: #FFFFFF;
}

@media (min-width: 1024px) {
  .login.registration_form .container {
    background: radial-gradient(circle at top, #bddfff 10%, #dee9fe 30%, rgba(222, 233, 254, 0) 40%), radial-gradient(circle at -30% 60%, rgba(99, 113, 182, 0.8) 0%, rgba(99, 113, 182, 0) 30%), radial-gradient(circle at top right, #fcfafe 10%, #fbe7f7 20%, rgba(251, 231, 247, 0) 40%), linear-gradient(8deg, #d7faff 30%, #e8f9fe 60%);
  }
}

.login.auto_height {
  height: auto;
}

.login .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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px 0;
}

.login .container .login__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 8px;
}

.login .container .login__form.forgotPassword {
  padding: 40px 32px;
}

.login .container .login__form .card {
  padding: auto 16px;
}

@media (min-width: 767px) {
  .login .container .login__form .card {
    padding: 16px 56px 40px;
  }
}

.login .container .login__form .card .login__copy {
  text-align: center;
}

.login .container .login__form .card .login__copy p {
  margin: 0;
}

.login .container .login__form .submit {
  text-align: center;
  margin: 32px 0 8px;
}

.login .container .login__form--full {
  width: 320px;
}

@media (min-width: 1024px) {
  .login .container .login__form--full {
    width: 760px;
  }
}

.login .container .login__form--left, .login .container .login__form--right {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  width: 280px;
}

@media (min-width: 1024px) {
  .login .container .login__form--left, .login .container .login__form--right {
    width: 380px;
  }
}

.login .container .login__form--left {
  border-bottom: 2px solid #c0c0c0;
  border-right: none;
  padding: 0 0 32px;
}

@media (min-width: 1024px) {
  .login .container .login__form--left {
    border-right: 2px solid #c0c0c0;
    border-bottom: none;
    padding: 0 40px;
  }
}

.login .container .login__form--right {
  margin: 0 32px;
  padding-bottom: 0;
  text-align: center;
  padding-top: 48px;
}

.login .container .login__form .form-group {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login .container .login__form .btn,
.login .container .login__form button {
  margin: 0;
}

.login .container .login__form h3 {
  margin: 24px 0 8px;
}

.login .container .login__form p,
.login .container .login__form p.terms {
  padding-bottom: 32px;
}

.login .container .login__form p.terms {
  margin: 0 0 0 5px;
}

.login .container .login__form a.btn__text {
  display: block;
  font-size: 14px;
  text-align: center;
  padding-top: 8px;
}

.login .container .login__form.forgotPassword {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 300px;
}

.login .container .login__form.forgotPassword .forgotPassword__copy {
  text-align: left;
}

.login .container .login__form.forgotPassword .forgotPassword__copy p {
  padding-bottom: 8px;
}

.login .container .login__form.registration {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.login .container .login__form.registration .login__form--left {
  border: none;
}

.login .container .login__form.registration .login__form--right {
  width: 440px;
  text-align: left;
  padding-top: 0;
}

.login .container .login__form.registration .login__form--right input[type='password'],
.login .container .login__form.registration .login__form--right input[type='text'],
.login .container .login__form.registration .login__form--right input[type='number'],
.login .container .login__form.registration .login__form--right select {
  width: calc(100% - 30px);
}

.login .container .login__form.registration .login__form--right .submit {
  text-align: center;
  margin: 32px 0 8px;
}

.login .container .login__form.registration .login__form--right .ethnicity-form-group .input-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login .container .login__form.registration .login__form--right .ethnicity-form-group .terms {
  padding-bottom: 0;
}

.login .container .login__form.registration .login__form--right .ethnicity-other-form-group .terms {
  padding-bottom: 0;
}

.login .container .login__form.registration .login__form--right .ethnicity-other-form-group .error-message {
  margin-top: 4px;
}

.login .container .login__form.registration .login__form--right .ethnicity-other-form-group .select2-container {
  width: calc(100% - 30px) !important;
}

.login .container .login__form.registration .login__form--right .ethnicity-other-form-group .select2-selection__choice {
  border: 0;
  border-radius: 12px;
}

.login .container .login__form.registration .login__form--right .ethnicity-other-form-group .select2-selection__choice__display {
  padding-right: 12px;
}

.login .container .login__form.registration .login__form--right .ethnicity-other-form-group .select2-selection__choice__remove {
  margin: 0;
  border: 0;
}

.login .container .login__form.registration .login__logo {
  width: 280px;
}

.login .container .login__form .prescription__toggle label {
  padding-bottom: 0;
}

.login .container .login__form .prescription__toggle .prescription__toggleButtons {
  display: block;
  border-radius: 3px;
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.3);
  height: 34px;
  margin-top: 4px;
  background: #fff;
  position: relative;
  font-weight: 600;
}

.login .container .login__form .prescription__toggle .prescription__toggleButtons .prescription__toggleButton {
  width: 50%;
  text-align: center;
  height: 34px;
  line-height: 34px;
  cursor: pointer;
}

.login .container .login__form .prescription__toggle .prescription__toggleButtons .prescription__toggleButton.prescription__toggleButton--no {
  float: left;
}

.login .container .login__form .prescription__toggle .prescription__toggleButtons .prescription__toggleButton.prescription__toggleButton--yes {
  float: right;
}

.login .container .login__form .prescription__toggle .prescription__toggleButtons .prescription__toggleButton.selected {
  height: 34px;
  width: 50%;
  background: rgba(99, 113, 182, 0.4);
  bottom: 0;
  -webkit-box-shadow: inset 0 1px 3px rgba(99, 113, 182, 0.6);
          box-shadow: inset 0 1px 3px rgba(99, 113, 182, 0.6);
  cursor: not-allowed;
}

.login .container .login__logo {
  width: 200px;
  margin: 24px auto 40px;
  display: block;
}

.login .container .btn_container {
  padding-bottom: 8px;
  text-align: center;
}

.login .container a.btn__text {
  font-size: 14px;
}

.login .container input[type='text'],
.login .container input[type='password'] {
  width: 244px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .login .container input[type='text'],
  .login .container input[type='password'] {
    width: auto;
  }
  .login .container input[type='text']::-webkit-input-placeholder,
  .login .container input[type='password']::-webkit-input-placeholder {
    color: transparent;
  }
  .login .container input[type='text']:-moz-placeholder,
  .login .container input[type='password']:-moz-placeholder {
    /* Firefox 18- */
    color: transparent;
  }
  .login .container input[type='text']::-moz-placeholder,
  .login .container input[type='password']::-moz-placeholder {
    /* Firefox 19+ */
    color: transparent;
  }
  .login .container input[type='text']:-ms-input-placeholder,
  .login .container input[type='password']:-ms-input-placeholder {
    color: transparent;
  }
}

.login .container .input.withTerms input {
  margin-bottom: 0;
}

.login .australia,
.login .new_zealand,
.login .pacific_islands,
.login .rest_of_the_world {
  display: none;
}

.login__nps {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px solid #efefef;
}

.login__nps li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8%;
  text-align: center;
  vertical-align: top;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -10px;
}

.login__nps li input[type=radio] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 0;
}

.login__nps li label {
  width: 100%;
  text-align: center;
}

#UserPatientDateOfBirth {
  margin-bottom: 0;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  select {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .login__logo {
    background: url("/img/JT_logo_horizontal.svg") no-repeat center;
    height: 30px;
    width: 100%;
  }
  .login__logo img {
    display: none;
  }
  .login {
    background: none #FFFFFF;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .login.registration_form {
    height: auto;
  }
  .login .container {
    margin: 0 auto;
    width: 320px !important;
    max-width: 320px;
  }
  .login .container .login__form--full {
    width: 100%;
  }
  .login .container .login__form--left {
    width: 100%;
  }
  .login .container .login__form--right {
    width: 100%;
    margin: 0;
  }
  .login .container .login__form input[type='text'],
  .login .container .login__form input[type='password'] {
    width: auto;
  }
  .login .container .login__form.registration .login__form--left {
    padding: 0;
  }
  .login .container .login__form.registration .login__form--right {
    width: 100%;
    max-width: 440px;
    margin: 0;
  }
  .login .container .login__form.registration .login__form--right input[type='password'],
  .login .container .login__form.registration .login__form--right input[type='text'] {
    width: 100%;
  }
  .login .container .login__form.registration .login__logo {
    width: 200px;
    margin: 24px auto;
    display: block;
  }
  .login .card {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px #cccccc solid;
    border-radius: 0;
    padding: 0 0 16px;
  }
  .login .terms {
    display: block;
    padding-bottom: 0;
  }
  .login .terms_label {
    display: block;
  }
  .login label[for=haveReferralCode] {
    display: block;
  }
}

@media only screen and (max-height: 568px) {
  .login .container .login__form h3 {
    margin-bottom: 10px !important;
  }
  .login .container .login__form--right {
    padding-top: 18px !important;
  }
}

@media only screen and (max-height: 640px) {
  .login {
    display: block;
  }
  .login .question__block {
    margin: auto;
  }
  html {
    height: auto;
  }
}

.clinicianRegistration__list {
  padding-left: 16px;
}

.clinicianRegistration__list li {
  padding-bottom: 8px;
}

body.admin-login {
  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;
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe8e0), color-stop(25%, #f8d7d0), color-stop(50%, #e8d5f0), color-stop(75%, #d8e0f8), to(#e0e8ff));
  background: linear-gradient(180deg, #ffe8e0 0%, #f8d7d0 25%, #e8d5f0 50%, #d8e0f8 75%, #e0e8ff 100%);
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
}

.admin-login-container {
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 400px;
  backdrop-filter: blur(10px);
}

@media screen and (min-width: 768px) {
  .admin-login-container {
    min-width: 300px;
  }
}

.admin-login-container .login-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.admin-login-container .form-group {
  margin-bottom: 24px;
}

.admin-login-container .form-group .fieldRequired {
  display: none;
}

.admin-login-container .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  text-align: left;
}

.admin-login-container .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.admin-login-container .form-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  -webkit-box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
          box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-login-container .form-input::-webkit-input-placeholder {
  color: #a0aec0;
}

.admin-login-container .form-input::-moz-placeholder {
  color: #a0aec0;
}

.admin-login-container .form-input:-ms-input-placeholder {
  color: #a0aec0;
}

.admin-login-container .form-input::-ms-input-placeholder {
  color: #a0aec0;
}

.admin-login-container .form-input::placeholder {
  color: #a0aec0;
}

.admin-login-container .login-button {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.admin-login-container .login-button:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
          box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.admin-login-container .login-button:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.signUp {
  text-align: center;
}

.signUp p {
  font-size: 14px;
}

.signUp .btn {
  margin: 0;
}

.signUp .card {
  border-bottom: none;
  margin-bottom: 0px;
}

@media (min-width: 1024px) {
  .signUp .card {
    margin-bottom: 1.625rem;
  }
}

.signUp .signUp__content.card {
  background-color: #F4F8FF;
  border-radius: 16px;
  width: 240px;
  margin: 0 auto 16px;
  padding: .625rem 1.625rem;
}

.signUp .signUp__content.card .signUp__img {
  width: 80px;
  height: auto;
}

.signUp .signUp__clinician {
  border-radius: 16px;
  width: 280px;
  margin: 0 auto 16px;
  padding: .625rem 1.625rem;
}

.signUp a {
  font-size: 14px;
}

@media only screen and (min-width: 1200px) {
  .dashboard .prescriptionLinkage {
    margin-right: 13px;
    margin-left: 13px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 1024px) {
  .dashboard .prescriptionLinkage {
    margin-right: 5px;
    margin-left: 5px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1024px) {
  .dashboard .prescriptionLinkage {
    /* Your CSS rules for screen sizes between 767px and 1200px */
    margin: 0 calc((50vw - 390px) / 2) 32px;
  }
}

@media screen and (min-width: 613px) and (max-width: 800px) {
  .dashboard .prescriptionLinkage {
    /* Your CSS rules for screen sizes between 767px and 1200px */
    margin: 0 5px 32px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 613px) {
  .dashboard .prescriptionLinkage {
    max-width: 390px;
    margin: 0 auto 32px;
  }
}

@media only screen and (max-width: 400px) {
  .dashboard .prescriptionLinkage {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content {
  padding: 0.625rem 1.25rem;
}

@media (min-width: 1024px) {
  .dashboard .prescriptionLinkage .prescriptionLinkage__content {
    padding: 0;
  }
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content h3 {
  color: #4E4B6D;
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table {
  margin-bottom: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table {
    text-align: left;
  }
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table td {
  padding: 0.25rem 0.5rem 0.75rem;
  border-bottom: none;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table td {
    padding: 0.75rem;
  }
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table td:first-of-type {
  padding: 0.75rem 0.5rem 0.25rem;
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table td:last-child {
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 1024px) {
  .dashboard .prescriptionLinkage .prescriptionLinkage__content table.table.responsive-card-table td:last-child {
    margin-top: 0;
    text-align: right;
  }
}

.dashboard .prescriptionLinkage .prescriptionLinkage__content .btn {
  margin: 0;
}

.dashboard .list_header {
  padding-left: 32px;
}

.dashboard .course_list {
  margin: 32px auto;
  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;
}

@supports (display: grid) {
  .dashboard .course_list {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 480px) {
  .dashboard .course_list {
    margin: 32px auto;
  }
}

@media only screen and (min-width: 614px) {
  .dashboard .course_list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .dashboard .course_list {
    margin: 0 auto;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.dashboard .course_list .select-course {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard .course_list .select-course.card {
  background: #fff;
}

.dashboard .course_list .select-course.card .card__copy {
  display: block;
  height: auto;
  width: auto;
}

.dashboard .course_list .select-course.card .card__copy p {
  margin: 0;
}

.dashboard .course_list .select-course.card .card__image img {
  height: 100px;
  margin: 25px 25px;
  width: auto;
}

.dashboard .course_list .select-course.card .card__image::before {
  background: none;
}

.dashboard .course_list .course_card--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 0 auto;
  max-width: 400px;
  width: 100%;
}

@media only screen and (min-width: 816px) {
  .dashboard .course_list .course_card--container {
    margin: 16px auto 32px 0;
  }
  @supports (display: grid) {
    .dashboard .course_list .course_card--container {
      margin: 15px auto 0 auto;
    }
  }
}

@media (min-width: 1024px) {
  .dashboard .course_list .course_card--container {
    padding: 0 3px;
    max-width: 301px;
  }
}

.dashboard .course_list .card {
  width: 100%;
  height: auto;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@supports (display: flex) {
  .dashboard .course_list .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 767px) {
  .dashboard .course_list .card {
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .dashboard .course_list .card {
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .dashboard .course_list .card .card__image {
    position: relative;
    width: 100%;
  }
  .dashboard .course_list .card .card__image img {
    -webkit-mask: none;
    height: auto;
    width: 100%;
  }
  .dashboard .course_list .card .card__image::before {
    background: none;
  }
}

.dashboard .course_list .card .card__image img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimizeQuality;
}

.dashboard .course_list .card .card__copy {
  width: calc(100% - 40px);
  height: auto;
  padding: 0 24px 24px;
}

@media (min-width: 1024px) {
  .dashboard .course_list .card .card__copy {
    display: inline-block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
    padding-left: 32px;
    padding-top: 0;
  }
  @supports (display: flex) {
    .dashboard .course_list .card .card__copy {
      height: 100%;
    }
  }
  @supports (display: flex) {
    .dashboard .course_list .card .card__copy {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
}

.dashboard .course_list .card .card__copy .btn_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0;
}

.dashboard .course_list .card .card__copy .btn_container .btn {
  margin: 24px 0 0;
}

.dashboard .course_list .card .card__copy .clinicianLink {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .dashboard .course_list .card .card__copy .clinicianLink {
    margin: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.dashboard .course_list .card.empty .card__copy {
  margin: 0 auto;
  text-align: center;
  padding-top: 32px;
}

.dashboard .course_list .card__headline {
  position: relative;
  margin-bottom: 0;
}

.dashboard .course_list .course__nav {
  width: 960px;
  height: 32px;
  z-index: 100;
  top: 200px;
  position: relative;
  left: -30px;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1024px) {
  .dashboard .course_list .course__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1200px) {
  .dashboard .course_list .course__nav {
    width: 1016px;
  }
}

.dashboard .course_list .course__nav .course_list-button-next {
  right: 0;
  display: none;
}

.dashboard .course_list .course__nav .course_list-button-prev {
  left: 0;
  display: none;
}

.dashboard .available_course_list {
  margin: 32px auto;
}

@media (min-width: 1024px) {
  .dashboard .available_course_list {
    margin: 0 auto;
  }
}

.dashboard .available_course_list .card {
  width: calc(100% - 48px);
  height: auto;
  margin: 0 24px 32px;
  padding-bottom: 0;
}

@media (min-width: 767px) {
  .dashboard .available_course_list .card {
    width: 746px;
    margin: 0 auto 32px;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .dashboard .available_course_list .card {
    width: 900px;
    height: 360px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 1200px) {
  .dashboard .available_course_list .card {
    width: 960px;
  }
}

.dashboard .available_course_list .card .card__image img {
  -webkit-mask: none;
}

.dashboard .available_course_list .card .card__copy {
  width: calc(100% - 40px);
  padding: 0 24px 24px;
}

@media (min-width: 1024px) {
  .dashboard .available_course_list .card .card__copy {
    width: calc(60% - 32px);
    text-align: left;
    -ms-flex-item-align: center;
        align-self: center;
    padding-left: 32px;
    padding-top: 0;
  }
}

.dashboard .available_course_list .card .card__copy .btn_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .dashboard .available_course_list .card .card__copy .btn_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.dashboard .available_course_list .card .card__copy .btn_container .btn {
  margin: 24px 0 0;
}

@media (min-width: 1024px) {
  .dashboard .available_course_list .card .card__copy .btn_container .btn {
    margin: 24px 24px 0 0;
  }
}

.dashboard .available_course_list .card .card__copy .clinicianLink {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  margin-top: 8px;
  padding-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .dashboard .available_course_list .card .card__copy .clinicianLink {
    margin: 0;
    margin-top: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.dashboard .available_course_list .card.empty .card__copy {
  margin: 0 auto;
  text-align: center;
  padding-top: 32px;
}

.dashboard .tool_list {
  margin-bottom: 32px;
  margin: 0 24px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@supports (display: grid) {
  .dashboard .tool_list {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 816px) {
  .dashboard .tool_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 614px) {
  @supports (display: grid) {
    .dashboard .tool_list {
      grid-template-columns: 1fr 1fr;
    }
  }
}

.dashboard .tool_list .course_card--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 32px auto;
  max-width: 400px;
  width: 100%;
}

@media only screen and (min-width: 815px) {
  .dashboard .tool_list .course_card--container {
    margin: 0 auto 0 0;
  }
  @supports (display: grid) {
    .dashboard .tool_list .course_card--container {
      margin: 0 auto 0 auto;
    }
  }
}

@media (min-width: 1024px) {
  .dashboard .tool_list .course_card--container {
    max-width: 98%;
  }
}

@media (min-width: 1200px) {
  .dashboard .tool_list .course_card--container {
    padding: 0 5px;
  }
}

.dashboard .tool_list .card {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.625rem 1.25rem;
  margin: 0 auto 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  align-items: center;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 767px) {
  .dashboard .tool_list .card {
    margin: 0 0 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .dashboard .tool_list .card {
    margin: 0 32px 0 0;
  }
}

@media (min-width: 1024px) {
  .dashboard .tool_list .card:last-child {
    margin-right: 0;
  }
}

.dashboard .tool_list .card .btn {
  margin: 0;
}

.dashboard .tool_list .card .card__icon {
  width: 120px;
}

@media (min-width: 1024px) {
  .dashboard .tool_list .card .card__icon {
    width: 33%;
  }
}

.dashboard .tool_list .card .card__copy--column, .dashboard .tool_list .card .card__copy {
  margin: 0 8px 16px;
  width: 100%;
}

#dashboard__intro {
  margin-bottom: 24px;
}

.dashboard__intro {
  font-size: 15px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 20px 20px;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
}

.dashboard__intro.hide {
  display: none !important;
}

.dashboard__intro--blue {
  background-color: #cde4ff;
  border: 1px solid #b8daff;
  color: #495057;
}

.dashboard__intro--blue p {
  color: #495057;
}

.dashboard__intro--green {
  background-color: #D3ECDA;
  border: 1px solid #C2E6CA;
  color: #155723;
}

.dashboard__intro--green p {
  color: #155723;
}

.dashboard__intro .dashboard__intro--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 767px) {
  .dashboard__intro .dashboard__intro--head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.dashboard__intro .dashboard__intro--close {
  font-weight: bold;
  cursor: pointer;
  padding: 8px 0 8px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media (min-width: 767px) {
  .dashboard__intro .dashboard__intro--close {
    -ms-flex-item-align: baseline;
        align-self: baseline;
    padding: 0 0 8px;
  }
}

.dashboard__intro .dashboard__intro--content {
  padding: 16px 32px 24px 32px;
}

.dashboard__intro .dashboard__intro--content ol,
.dashboard__intro .dashboard__intro--content ul {
  padding-left: 18px;
}

.dashboard__intro .dashboard__intro--content ol .vjs-menu-item,
.dashboard__intro .dashboard__intro--content ul .vjs-menu-item {
  padding-left: 0;
}

.dashboard__intro .vjs-texttrack-settings {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .dashboard__patient .dashboard__intro {
    margin-right: 13px;
    margin-left: 13px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 1024px) {
  .dashboard__patient .dashboard__intro {
    margin-right: 5px;
    margin-left: 5px;
  }
}

@media screen and (min-width: 800px) and (max-width: 1024px) {
  .dashboard__patient .dashboard__intro {
    /* Your CSS rules for screen sizes between 767px and 1200px */
    margin: 0 calc((50vw - 390px) / 2) 32px;
  }
}

@media screen and (min-width: 613px) and (max-width: 800px) {
  .dashboard__patient .dashboard__intro {
    /* Your CSS rules for screen sizes between 767px and 1200px */
    margin: 0 5px 32px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 613px) {
  .dashboard__patient .dashboard__intro {
    max-width: 390px;
    margin: 0 auto 32px;
  }
}

@media only screen and (max-width: 400px) {
  .dashboard__patient .dashboard__intro {
    margin-right: 5px;
    margin-left: 5px;
  }
}

.dashboard__patient h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 24px;
  margin-left: 24px;
}

@media (min-width: 1024px) {
  .dashboard__patient h1 {
    margin: revert;
  }
}

.dashboard__patient h1 img {
  height: 56px;
  width: 62.7px;
  margin-right: 8px;
}

.clinicianCourses h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 24px;
  margin-left: 24px;
}

@media (min-width: 1024px) {
  .clinicianCourses h1 {
    margin: revert;
  }
}

.clinicianCourses h1 img {
  height: 56px;
  width: 62.7px;
  margin-right: 8px;
}

.dashboard__clinician {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 767px) {
  .dashboard__clinician .dashboard__intro {
    margin: 0 auto 32px;
    max-width: 750px;
  }
}

@media (min-width: 1024px) {
  .dashboard__clinician .dashboard__intro {
    max-width: none;
  }
}

.dashboard__clinician .blur {
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .dashboard__clinician .blur a, .dashboard__clinician .blur.quickscript-usage-sensitive {
    background-color: currentColor;
  }
}

.dashboard__clinician .dashboard__intro {
  margin-bottom: 32px;
}

.dashboard__clinician .card {
  margin: 0 20px 20px;
  padding: 0 32px 32px;
  margin: 0 24px 32px;
}

@media (min-width: 767px) {
  .dashboard__clinician .card {
    width: 686px;
    margin: 0 auto 32px;
  }
}

@media (min-width: 1024px) {
  .dashboard__clinician .card {
    width: 836px;
  }
}

@media (min-width: 1200px) {
  .dashboard__clinician .card {
    width: 894px;
  }
}

.dashboard__clinician .prescribe__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

@media (min-width: 1024px) {
  .dashboard__clinician .prescribe__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.dashboard__clinician .prescribe__content .form-group {
  width: 100%;
}

@media (min-width: 1024px) {
  .dashboard__clinician .prescribe__content .form-group {
    width: 48%;
  }
}

.dashboard__clinician .prescribe__content .prescribe__email {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 32px;
}

.dashboard__clinician .prescribe__content .prescribe__email label {
  display: block;
}

.dashboard__clinician .prescribe__content .prescribe__email p {
  margin-top: 0;
}

.dashboard__clinician .prescribe__content .prescribe__email form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 767px) {
  .dashboard__clinician .prescribe__content .prescribe__email form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.dashboard__clinician .prescribe__content .prescribe__email form .btn-group {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  margin-top: 16px;
  width: 100%;
  -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;
}

@media (min-width: 480px) {
  .dashboard__clinician .prescribe__content .prescribe__email form .btn-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.dashboard__clinician .prescribe__content .prescribe__email form .btn-group .btn {
  margin-right: 0;
  margin-top: 16px;
}

@media (min-width: 480px) {
  .dashboard__clinician .prescribe__content .prescribe__email form .btn-group .btn {
    margin-top: 0;
  }
}

.dashboard__clinician .prescribe__content .prescribe__email form .row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 767px) {
  .dashboard__clinician .prescribe__content .prescribe__email form .row {
    width: 50%;
    margin-right: 16px;
  }
  .dashboard__clinician .prescribe__content .prescribe__email form .row:last-child {
    margin-right: 0;
    margin-left: 16px;
  }
}

.dashboard__clinician .prescribe__content .prescribe__email form input[type='text'], .dashboard__clinician .prescribe__content .prescribe__email form select {
  margin-bottom: 0;
}

.dashboard__clinician .prescribe__content .prescribe__email form .input.checkbox {
  padding: 0;
}

.dashboard__clinician .patient__progress {
  text-align: right;
}

.dashboard__clinician .dashboard__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .dashboard__clinician .dashboard__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.dashboard__clinician hr {
  border: none;
  height: 1px;
  background-color: #c0c0c0;
}

.dashboard__clinician table {
  font-size: 0.875rem;
}

#myPatients table td div.blur a:hover {
  cursor: default;
  text-decoration: none;
  color: #5261ae;
}

.users__myPatients #hide-scripts {
  display: none;
}

/* Responsive Style */
/*
@media only screen and (max-width: 1023px) {
  .dashboard{
    .course_list{

      .course__nav {
        display: none;
      }

      .card{
        width: 100%;
        height: auto;
        margin: 0 0 20px;
        padding-bottom: 20px;

        .card__copy {
          width: 100%;
          padding-top: calc(100vw - 40px);
          padding-left: 20px;
          padding-right: 20px;

          .btn{
            margin: 20px 0 0 0;
          }

        }

      }
    }

    .tool_list {
      .card {
        padding-bottom: 20px;
        margin: 0 20px 20px 20px;
      }
    }
  }

  .dashboard__clinician{
    .dashboard__largeColumn{
      //display:none;
      margin: 20px;
      padding: 20px;

      .dashboard__header {

        &--left {

        }

        display: block;
        text-align: center;
      }
    }

    .dashboard__smallColumn {
      margin: 20px;
      padding: 20px;
    }

    label {
      display: block;
    }
  }
}

*/
.healthRecord .healthRecordTable ul, .viewQuestionnaireResponses .healthRecordTable ul {
  margin: 0;
  padding-left: 18px;
}

.healthRecord .healthRecordTable .course_results_container, .viewQuestionnaireResponses .healthRecordTable .course_results_container {
  margin-bottom: 32px;
}

.healthRecord .healthRecordTable .course__heading, .healthRecord .healthRecordTable .part__heading, .viewQuestionnaireResponses .healthRecordTable .course__heading, .viewQuestionnaireResponses .healthRecordTable .part__heading {
  color: #007e84;
  font-weight: 600;
  margin: 32px 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.healthRecord .healthRecordTable .part__heading, .viewQuestionnaireResponses .healthRecordTable .part__heading {
  margin-bottom: 0;
  margin-top: 16px;
}

.healthRecord .healthRecordTable .course__heading, .viewQuestionnaireResponses .healthRecordTable .course__heading {
  margin-bottom: 16px;
}

.healthRecord .healthRecordTable table, .viewQuestionnaireResponses .healthRecordTable table {
  border-spacing: 0;
  margin-bottom: 8px;
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table thead tr, .viewQuestionnaireResponses .healthRecordTable table thead tr {
    display: table-row;
    position: relative;
    top: 0;
    left: 0;
  }
}

.healthRecord .healthRecordTable table tbody td, .healthRecord .healthRecordTable table tbody tr, .viewQuestionnaireResponses .healthRecordTable table tbody td, .viewQuestionnaireResponses .healthRecordTable table tbody tr {
  display: block;
}

.healthRecord .healthRecordTable table tbody td, .viewQuestionnaireResponses .healthRecordTable table tbody td {
  font-weight: 600;
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table tbody td, .viewQuestionnaireResponses .healthRecordTable table tbody td {
    display: table-cell;
    padding: 0;
    border-bottom: none;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  .healthRecord .healthRecordTable table tbody td::before, .viewQuestionnaireResponses .healthRecordTable table tbody td::before {
    display: none;
  }
}

.healthRecord .healthRecordTable table tbody td p, .viewQuestionnaireResponses .healthRecordTable table tbody td p {
  margin: 8px 0;
  font-weight: 600;
}

.healthRecord .healthRecordTable table tbody td p .healthRecord__part, .viewQuestionnaireResponses .healthRecordTable table tbody td p .healthRecord__part {
  color: #007e84;
  padding-right: 8px;
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table tbody tr, .viewQuestionnaireResponses .healthRecordTable table tbody tr {
    display: table-row;
    position: relative;
    top: 0;
    left: 0;
  }
}

.healthRecord .healthRecordTable table tbody tr:nth-of-type(odd), .viewQuestionnaireResponses .healthRecordTable table tbody tr:nth-of-type(odd) {
  background-color: rgba(192, 192, 192, 0.2);
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table tbody tr:nth-of-type(odd), .viewQuestionnaireResponses .healthRecordTable table tbody tr:nth-of-type(odd) {
    background-color: transparent;
  }
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table tbody tr td:last-of-type, .viewQuestionnaireResponses .healthRecordTable table tbody tr td:last-of-type {
    display: none;
  }
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table tbody tr td:first-of-type span, .viewQuestionnaireResponses .healthRecordTable table tbody tr td:first-of-type span {
    display: table-cell;
    height: 40px;
    vertical-align: middle;
  }
}

.healthRecord .healthRecordTable table th, .viewQuestionnaireResponses .healthRecordTable table th {
  padding-left: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.healthRecord .healthRecordTable table th:nth-child(1), .viewQuestionnaireResponses .healthRecordTable table th:nth-child(1) {
  width: 25%;
}

.healthRecord .healthRecordTable table th:nth-child(2), .viewQuestionnaireResponses .healthRecordTable table th:nth-child(2) {
  width: 50%;
}

.healthRecord .healthRecordTable table th:nth-child(3), .viewQuestionnaireResponses .healthRecordTable table th:nth-child(3) {
  width: 25%;
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table td[data-label=Outcome], .viewQuestionnaireResponses .healthRecordTable table td[data-label=Outcome] {
    color: #007e84;
    padding: 0 12px 0 0;
  }
  .healthRecord .healthRecordTable table td[data-label=Outcome] .td-text-right, .viewQuestionnaireResponses .healthRecordTable table td[data-label=Outcome] .td-text-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
  }
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table .healthRecord__questionnaire, .viewQuestionnaireResponses .healthRecordTable table .healthRecord__questionnaire {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
  }
}

.healthRecord .healthRecordTable table .healthRecord__questionnaire .infoTooltip, .viewQuestionnaireResponses .healthRecordTable table .healthRecord__questionnaire .infoTooltip {
  display: none;
}

@media (min-width: 767px) {
  .healthRecord .healthRecordTable table .healthRecord__questionnaire .infoTooltip, .viewQuestionnaireResponses .healthRecordTable table .healthRecord__questionnaire .infoTooltip {
    padding-left: 8px;
    display: block;
  }
}

.healthRecord .resultsGraph, .viewQuestionnaireResponses .resultsGraph {
  width: auto;
  height: 400px;
  position: relative;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  padding: 32px 32px 56px 8px;
  border-radius: 16px;
}

.healthRecord .resultsGraph .resultsGraph__empty, .viewQuestionnaireResponses .resultsGraph .resultsGraph__empty {
  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;
  width: 100%;
  color: #6b6a6a;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.healthRecord .resultsGraph .resultsGraph__empty h2, .viewQuestionnaireResponses .resultsGraph .resultsGraph__empty h2 {
  color: #6b6a6a;
  margin-bottom: 16px;
}

.healthRecord .resultsGraph .resultsGraph__empty p, .viewQuestionnaireResponses .resultsGraph .resultsGraph__empty p {
  color: #6b6a6a;
  margin: 0;
}

.healthRecord .resultsGraph .labels, .viewQuestionnaireResponses .resultsGraph .labels {
  float: left;
  width: 100px;
}

.healthRecord .resultsGraph .range, .viewQuestionnaireResponses .resultsGraph .range {
  width: 100%;
  height: auto;
  padding: 4px 0 0 1em;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  text-align: center;
}

.healthRecord .resultsGraph .range img, .viewQuestionnaireResponses .resultsGraph .range img {
  height: 42px;
}

.healthRecord .resultsGraph .range p, .viewQuestionnaireResponses .resultsGraph .range p {
  padding-top: 2px;
  padding-bottom: 32px;
  margin: 0;
}

.healthRecord .resultsGraph .barGraph, .viewQuestionnaireResponses .resultsGraph .barGraph {
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  height: 100%;
  width: 100%;
}

.healthRecord .resultsGraph .results, .viewQuestionnaireResponses .resultsGraph .results {
  color: #323232;
  font-weight: bold;
  font-size: 10px;
  text-align: center;
  width: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.healthRecord .resultsGraph .results.veryHigh, .viewQuestionnaireResponses .resultsGraph .results.veryHigh {
  background-color: #F59187;
}

.healthRecord .resultsGraph .results.results.high, .viewQuestionnaireResponses .resultsGraph .results.results.high {
  background-color: #EED249;
}

.healthRecord .resultsGraph .results.elevated, .viewQuestionnaireResponses .resultsGraph .results.elevated {
  background-color: #B0D67A;
}

.healthRecord .resultsGraph .results.healthy, .viewQuestionnaireResponses .resultsGraph .results.healthy {
  background-color: #6FCAB8;
}

.healthRecord .resultsGraph .results div, .viewQuestionnaireResponses .resultsGraph .results div {
  font-weight: normal;
}

.healthRecord .resultsGraph .completed_at, .viewQuestionnaireResponses .resultsGraph .completed_at {
  position: absolute;
  bottom: -32px;
}

.healthRecord .resultsGraph .completed_at span, .viewQuestionnaireResponses .resultsGraph .completed_at span {
  visibility: hidden;
  display: block;
  width: 0;
  height: 0;
}

.healthRecord .bar-wrapper, .viewQuestionnaireResponses .bar-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  width: 60px;
  margin-left: 10px;
}

.healthRecord .stories__header--left, .viewQuestionnaireResponses .stories__header--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.healthRecord .stories__header--left img, .viewQuestionnaireResponses .stories__header--left img {
  height: 56px;
  margin-right: 8px;
}

.healthRecord .stories__header--left .stories__headerCopy h1, .viewQuestionnaireResponses .stories__header--left .stories__headerCopy h1 {
  margin: 0;
  text-align: left;
}

.healthRecord .stories__header--left .stories__headerCopy p, .viewQuestionnaireResponses .stories__header--left .stories__headerCopy p {
  margin: 2px;
  font-size: 12px;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .healthRecord .resultsGraph, .healthRecord .terms {
    display: none;
  }
}

.error .main__container {
  left: 0;
  width: 100vw;
}

.error .main__container .main__header {
  width: 90%;
}

.error .main__container .main__header .main__header--logo img {
  height: 50px;
}

.error .main__container .main__content {
  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;
  margin-bottom: 88px;
  width: 100%;
}

.error .main__container .main__content .error_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 24px;
}

.error .main__container .main__content .error_content p {
  text-rendering: auto;
  margin: 16px auto 0;
  text-align: center;
}

.error .main__container .main__content .error_content i {
  font-size: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.error .main__container .main__content .error_content .form-group i.status-icon {
  margin-bottom: 0;
}

.error .main__container .main__content .error_content .error__icon {
  width: 80%;
  margin: 0 auto;
}

.error .main__container .main__content .error_content .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.error .main__container .main__content .error_content .input.textarea {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.error .main__container .main__content .error_content .input.textarea textarea {
  height: 180px;
  color: #495057;
}

.error .main__container .main__content .error_content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.error .main__container .main__content .error_content .feedback__thankYou {
  display: none;
}

.error .main__container .main__content .error_content .feedback__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.error .main__container .main__content .error_content.error_content--thankYou .feedback__thankYou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.error .main__container .main__content .error_content.error_content--thankYou .feedback__thankYou i {
  padding-top: 24px;
}

.error .main__container .main__content .error_content.error_content--thankYou .feedback__form {
  display: none;
}

.error iframe#freshwidget-embedded-form {
  width: 90%;
  margin: 0 auto;
}

/* Questionnaire */
.questionnaires__takeQuestionnaire .main__container {
  overflow-y: hidden;
}

.questionnaire {
  background-color: #eeebfe;
  margin: 0;
  background: linear-gradient(217deg, rgba(99, 113, 182, 0.8), rgba(99, 113, 182, 0) 70.71%), linear-gradient(127deg, rgba(90, 199, 218, 0.8), rgba(90, 199, 218, 0) 70.71%), linear-gradient(27deg, rgba(243, 243, 243, 0.8), rgba(243, 243, 243, 0) 70.71%), linear-gradient(336deg, rgba(240, 98, 146, 0.8), rgba(240, 98, 146, 0) 70.71%);
  background-size: contain;
  background-repeat: repeat;
  height: 100vh;
}

#QuestionnaireTakeQuestionnaireForm .submit input[type="submit"] {
  float: right;
  margin-top: 0px;
}

@media (min-width: 767px) {
  #QuestionnaireTakeQuestionnaireForm .submit input[type="submit"] {
    margin-top: 20px;
  }
}

.questionnaire__content {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.questionnaire__content .submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.questionnaire__content .submit .btn {
  margin: 0;
}

div#preview-footer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div#preview-footer-buttons p {
  color: #f06292;
  font-size: 18px;
  font-family: Asap, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2em;
  margin-top: 28px;
  margin-bottom: 0px;
}

.questionnaire__description {
  margin-top: 24px;
  margin-bottom: 20px;
  color: #007e84;
  font-family: 'Asap', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  line-height: 1.2em;
}

.questionnaire__description p em {
  font-family: 'Asap', sans-serif;
  font-style: normal;
}

.question__block {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 40px;
  border-radius: 16px;
  width: 880px;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}

.question__block .preview-buttons {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px;
}

.question__block .preview-buttons .btn-primary {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media (min-width: 767px) {
  .question__block .preview-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .question__block .preview-buttons .btn-primary {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 0;
    margin-right: 16px;
  }
}

@media (min-width: 1024px) {
  .question__block .preview-buttons {
    margin: 0;
  }
}

.question__block .preview-buttons .btn {
  margin-right: 0;
}

.question__block .preview-buttons #QuestionnaireTakeQuestionnaireForm {
  margin: 0;
}

.question__block .question__list {
  padding: 0;
  margin: 0;
  width: 100%;
}

.question__block .question__list .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  height: 0;
  pointer-events: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: -8px;
  /* For large copy questions, make the width auto */
}

.question__block .question__list .question .questionnaire__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

.question__block .question__list .question .questionnaire__buttons .non-answer-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.question__block .question__list .question .questionnaire__buttons a {
  margin: 0 4px;
  font-size: 14px;
  padding: 8px 40px;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  height: 36px;
  vertical-align: middle;
  color: #4E4B6D;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.question__block .question__list .question .questionnaire__buttons a:hover {
  color: #FFFFFF;
}

.question__block .question__list .question .questionnaire__buttons .btn-secondary--outline {
  border-color: #F0F0F0;
  background-color: #F0F0F0;
}

.question__block .question__list .question .questionnaire__buttons .btn-secondary--outline.btn--selected, .question__block .question__list .question .questionnaire__buttons .btn-secondary--outline:hover {
  border-color: #007e84;
  background-color: #007e84;
  color: #FFFFFF;
}

.question__block .question__list .question.question-45 .questionnaire__buttons a, .question__block .question__list .question.question-46 .questionnaire__buttons a, .question__block .question__list .question.question-47 .questionnaire__buttons a, .question__block .question__list .question.question-48 .questionnaire__buttons a, .question__block .question__list .question.question-49 .questionnaire__buttons a, .question__block .question__list .question.question-50 .questionnaire__buttons a, .question__block .question__list .question.question-51 .questionnaire__buttons a, .question__block .question__list .question.question-52 .questionnaire__buttons a, .question__block .question__list .question.question-53 .questionnaire__buttons a {
  width: auto;
}

.question__block .question__list .question.question-98 .questionnaire__buttons, .question__block .question__list .question.question-99 .questionnaire__buttons, .question__block .question__list .question.question-100 .questionnaire__buttons, .question__block .question__list .question.question-101 .questionnaire__buttons, .question__block .question__list .question.question-102 .questionnaire__buttons, .question__block .question__list .question.question-103 .questionnaire__buttons, .question__block .question__list .question.question-104 .questionnaire__buttons, .question__block .question__list .question.question-105 .questionnaire__buttons, .question__block .question__list .question.question-106 .questionnaire__buttons, .question__block .question__list .question.question-107 .questionnaire__buttons, .question__block .question__list .question.question-108 .questionnaire__buttons, .question__block .question__list .question.question-109 .questionnaire__buttons, .question__block .question__list .question.question-110 .questionnaire__buttons, .question__block .question__list .question.question-111 .questionnaire__buttons, .question__block .question__list .question.question-112 .questionnaire__buttons, .question__block .question__list .question.question-113 .questionnaire__buttons, .question__block .question__list .question.question-114 .questionnaire__buttons, .question__block .question__list .question.question-115 .questionnaire__buttons, .question__block .question__list .question.question-116 .questionnaire__buttons, .question__block .question__list .question.question-117 .questionnaire__buttons, .question__block .question__list .question.question-118 .questionnaire__buttons, .question__block .question__list .question.question-119 .questionnaire__buttons, .question__block .question__list .question.question-120 .questionnaire__buttons, .question__block .question__list .question.question-258 .questionnaire__buttons, .question__block .question__list .question.question-259 .questionnaire__buttons, .question__block .question__list .question.question-260 .questionnaire__buttons, .question__block .question__list .question.question-261 .questionnaire__buttons, .question__block .question__list .question.question-262 .questionnaire__buttons {
  display: block;
}

.question__block .question__list .question.question-98 .questionnaire__buttons a, .question__block .question__list .question.question-99 .questionnaire__buttons a, .question__block .question__list .question.question-100 .questionnaire__buttons a, .question__block .question__list .question.question-101 .questionnaire__buttons a, .question__block .question__list .question.question-102 .questionnaire__buttons a, .question__block .question__list .question.question-103 .questionnaire__buttons a, .question__block .question__list .question.question-104 .questionnaire__buttons a, .question__block .question__list .question.question-105 .questionnaire__buttons a, .question__block .question__list .question.question-106 .questionnaire__buttons a, .question__block .question__list .question.question-107 .questionnaire__buttons a, .question__block .question__list .question.question-108 .questionnaire__buttons a, .question__block .question__list .question.question-109 .questionnaire__buttons a, .question__block .question__list .question.question-110 .questionnaire__buttons a, .question__block .question__list .question.question-111 .questionnaire__buttons a, .question__block .question__list .question.question-112 .questionnaire__buttons a, .question__block .question__list .question.question-113 .questionnaire__buttons a, .question__block .question__list .question.question-114 .questionnaire__buttons a, .question__block .question__list .question.question-115 .questionnaire__buttons a, .question__block .question__list .question.question-116 .questionnaire__buttons a, .question__block .question__list .question.question-117 .questionnaire__buttons a, .question__block .question__list .question.question-118 .questionnaire__buttons a, .question__block .question__list .question.question-119 .questionnaire__buttons a, .question__block .question__list .question.question-120 .questionnaire__buttons a, .question__block .question__list .question.question-258 .questionnaire__buttons a, .question__block .question__list .question.question-259 .questionnaire__buttons a, .question__block .question__list .question.question-260 .questionnaire__buttons a, .question__block .question__list .question.question-261 .questionnaire__buttons a, .question__block .question__list .question.question-262 .questionnaire__buttons a {
  width: auto;
}

.question__block .question__list .question--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  pointer-events: auto;
  margin-left: 0px;
  -webkit-transition: opacity 0.3s ease-in-out 0.1s, margin 0.3s ease-out;
  transition: opacity 0.3s ease-in-out 0.1s, margin 0.3s ease-out;
}

.question__block .question__list .question--active.question.question--non-answer {
  margin-bottom: 16px;
}

.question__block .question__list .question--active.question.question--non-answer h2 {
  margin-bottom: 8px;
}

.question__block .question__list p {
  margin: 0;
  padding: 0;
  font-size: 18px;
}

.question__block .question__list h2,
.question__block .question__list .questionnaire__intro {
  margin: 0 0 40px;
  padding: 0;
  font-size: 24px;
  font-family: 'Asap', sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2em;
}

.question__block .question__list h2 b,
.question__block .question__list .questionnaire__intro b {
  padding-bottom: 8px;
  display: block;
}

.question__block .question__list .hidden {
  display: none;
}

/* Questionnaire navigation*/
.questionnaire__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-pack: unset;
  margin-top: 24px;
}

@media (min-width: 767px) {
  .questionnaire__nav {
    margin-top: 0;
  }
}

.questionnaire__nav .questionnaire__progress {
  height: 8px;
  /* Can be anything */
  position: relative;
  background: #d8d8d8;
  border-radius: 4px;
  padding: 0;
  width: 100%;
}

.questionnaire__nav .questionnaire__progress > span {
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: #007e84;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s width ease-in-out;
  transition: 0.5s width ease-in-out;
  width: 0;
}

.questionnaire__nav .questionnaire__pagination {
  margin-top: 30px;
  text-align: center;
  display: none;
}

.questionnaire__nav .questionnaire__pagination--mobile {
  margin-top: 30px;
  text-align: center;
}

@media (min-width: 767px) {
  .questionnaire__nav .questionnaire__pagination--mobile {
    display: none;
  }
  .questionnaire__nav .questionnaire__pagination {
    display: block;
  }
  .questionnaire__nav .questionnaire__navCircle {
    margin-top: 20px;
  }
}

.questionnaire__nav .questionnaire__navCircle {
  border-radius: 50%;
  min-width: 42px;
  min-height: 42px;
  border: 2px solid #6371b6;
  position: relative;
  background-color: transparent;
  cursor: pointer;
}

.questionnaire__nav .questionnaire__navCircle:hover {
  background-color: #97a0ce;
  color: white;
  outline-color: #97a0ce;
  border: 2px solid #97a0ce;
}

.questionnaire__nav .questionnaire__navCircle:hover > .questionnaire__navButtons {
  border: 3px solid #FFFFFF;
  border-left: 0;
  border-bottom: 0;
}

.questionnaire__nav .questionnaire__navCircle .questionnaire__navButtons {
  border: 3px solid #6371b6;
  border-left: 0;
  border-bottom: 0;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 2px;
}

.questionnaire__nav .questionnaire__navCircle .questionnaire__navButtons--prev--text {
  position: absolute;
  left: 55px;
  top: 12px;
  color: #4E4B6D;
  cursor: pointer;
}

.questionnaire__nav .questionnaire__navCircle .questionnaire__navButtons--next--text {
  position: absolute;
  right: 55px;
  top: 12px;
  color: #4E4B6D;
  cursor: pointer;
}

.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--disabled {
  border: 2px solid #d8d8d8;
  cursor: auto;
}

.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--disabled:hover {
  border: 2px solid #d8d8d8;
  background-color: transparent;
}

.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--disabled .questionnaire__navButtons {
  border: 3px solid #d8d8d8;
  border-left: 0;
  border-bottom: 0;
}

.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--disabled .questionnaire__navButtons--next--text,
.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--disabled .questionnaire__navButtons--prev--text {
  color: #d8d8d8;
  cursor: default;
}

.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--prev .questionnaire__navButtons {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
      -ms-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}

.questionnaire__nav .questionnaire__navCircle.questionnaire__navButtons--next .questionnaire__navButtons {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
      -ms-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}

@media (max-width: 360px) {
  .questionnaire__nav .questionnaire__navButtons--next--text,
  .questionnaire__nav .questionnaire__navButtons--prev--text {
    display: none;
  }
}

.column-flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .questionnaire__description {
    margin: 8px 30px 20px;
  }
  .questionnaire__hint {
    margin: 16px 20px 20px;
  }
  .question__block {
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .question__block .question__list .question .questionnaire__buttons {
    display: block;
  }
  .question__block .question__list .question .questionnaire__buttons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }
  .questionnaire__pagination {
    padding-bottom: 12px;
  }
  #QuestionnaireTakeQuestionnaireForm {
    margin: 0 30px 30px;
  }
  #preview-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 16px 0;
  }
}

.takeQuestionnaire .video-container {
  margin-top: 32px;
}

.completeQuestionnaire .preview-buttons {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 30px;
}

.completeQuestionnaire .preview-buttons .btn-primary {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media (min-width: 767px) {
  .completeQuestionnaire .preview-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .completeQuestionnaire .preview-buttons .btn-primary {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 0;
    margin-right: 16px;
  }
}

@media (min-width: 1024px) {
  .completeQuestionnaire .preview-buttons {
    margin: 0;
  }
}

.completeQuestionnaire .preview-buttons .btn {
  margin-right: 0;
}

.completeQuestionnaire .preview-buttons #QuestionnaireTakeQuestionnaireForm {
  margin: 0;
}

.completeQuestionnaire .question__block, .viewPatientQuestionnaire .question__block, .simple .question__block {
  max-width: 1000px;
  padding: 20px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  margin-top: 42px;
}

.completeQuestionnaire .question__block .sv-page, .viewPatientQuestionnaire .question__block .sv-page, .simple .question__block .sv-page {
  margin-top: 0;
}

.completeQuestionnaire .question__block .sv-page .sv-description, .viewPatientQuestionnaire .question__block .sv-page .sv-description, .simple .question__block .sv-page .sv-description {
  font-size: 16px;
}

.completeQuestionnaire .sv-container-modern, .viewPatientQuestionnaire .sv-container-modern, .simple .sv-container-modern {
  background-color: white;
}

.completeQuestionnaire table, .viewPatientQuestionnaire table, .simple table {
  border-collapse: collapse;
}

.completeQuestionnaire table thead,
.completeQuestionnaire table tbody, .viewPatientQuestionnaire table thead,
.viewPatientQuestionnaire table tbody, .simple table thead,
.simple table tbody {
  border: none;
}

@media (min-width: 831px) {
  .completeQuestionnaire table tbody, .viewPatientQuestionnaire table tbody, .simple table tbody {
    background-color: white;
  }
}

.completeQuestionnaire table tbody tr:first-child td, .viewPatientQuestionnaire table tbody tr:first-child td, .simple table tbody tr:first-child td {
  border-top: 2px solid #F8F8FE;
  border-bottom: 2px solid #F8F8FE;
}

.completeQuestionnaire table tbody tr:not(:first-child) td, .viewPatientQuestionnaire table tbody tr:not(:first-child) td, .simple table tbody tr:not(:first-child) td {
  border-bottom: 2px solid #F8F8FE;
}

.completeQuestionnaire table tbody tr, .viewPatientQuestionnaire table tbody tr, .simple table tbody tr {
  font-size: 16px;
  font-weight: 600 !important;
}

.completeQuestionnaire table th, .viewPatientQuestionnaire table th, .simple table th {
  padding: 10px;
  width: auto !important;
}

.completeQuestionnaire table .sv-matrix__cell, .viewPatientQuestionnaire table .sv-matrix__cell, .simple table .sv-matrix__cell {
  min-width: 0;
}

.completeQuestionnaire table .sv-table__cell--header, .viewPatientQuestionnaire table .sv-table__cell--header, .simple table .sv-table__cell--header {
  font-size: 14px;
  color: #007E84;
}

.completeQuestionnaire .sv-container-modern, .viewPatientQuestionnaire .sv-container-modern, .simple .sv-container-modern {
  border-radius: 16px;
}

.completeQuestionnaire .sv-page, .viewPatientQuestionnaire .sv-page, .simple .sv-page {
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 5%;
}

@media (min-width: 831px) {
  .completeQuestionnaire .sv-matrix__cell-responsive-title, .viewPatientQuestionnaire .sv-matrix__cell-responsive-title, .simple .sv-matrix__cell-responsive-title {
    display: none;
  }
}

@media (max-width: 830px) {
  .completeQuestionnaire table tbody tr, .viewPatientQuestionnaire table tbody tr, .simple table tbody tr {
    margin-bottom: 5px;
  }
  .completeQuestionnaire table tbody tr td:first-child, .viewPatientQuestionnaire table tbody tr td:first-child, .simple table tbody tr td:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #007E84;
    padding-left: 10px;
    padding-top: 10px;
  }
  .completeQuestionnaire table tbody tr td, .viewPatientQuestionnaire table tbody tr td, .simple table tbody tr td {
    border: none !important;
  }
  .completeQuestionnaire table tbody tr, .viewPatientQuestionnaire table tbody tr, .simple table tbody tr {
    background-color: white;
  }
  .completeQuestionnaire table tbody .sv-table__cell, .viewPatientQuestionnaire table tbody .sv-table__cell, .simple table tbody .sv-table__cell {
    padding: 8px 0;
  }
  .completeQuestionnaire table tbody .sv-item, .viewPatientQuestionnaire table tbody .sv-item, .simple table tbody .sv-item {
    font-size: 16px;
  }
}

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

@media (min-width: 1024px) {
  .prescription__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.prescription__content .prescription__column {
  width: auto;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .printReady {
    margin: 0 20px 20px 20px;
  }
  .prescription__content .prescription__column .pad-codes {
    width: 100% !important;
  }
  .prescription__content .prescription__column table {
    width: 100% !important;
  }
  .prescription__content .prescription__column ol {
    padding-left: 20px;
  }
  .prescription__content .prescription__column ol li {
    padding-left: 5px;
    line-height: 22px;
  }
}

.patientRecord_card {
  margin-top: 40px;
}

.patientDetails__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.patientDetails__btnGroup {
  margin: 32px 0 2.1em 0;
  float: right;
}

.patientDetails__btnGroup .btn-info:active {
  background-color: #FFFFFF;
}

.patientDetails__btnGroup a {
  margin: 0;
  border-radius: 0;
  font-size: 14px;
  padding: 8px 8px;
  float: left;
  background-color: #FFFFFF;
  color: #4E4B6D !important;
  border: 2px solid #6371B6;
  border-right: 0px;
  font-weight: bold;
  display: block;
}

.patientDetails__btnGroup a:hover {
  background-color: rgba(99, 113, 182, 0.25);
  border: 2px solid #6371B6;
  border-right: 0px;
}

.patientDetails__btnGroup .btnGroup-line1 {
  display: inline-block;
  margin-right: -5px;
}

.patientDetails__btnGroup .btnGroup-line1 .btnGroup-left {
  border-top-left-radius: 48px;
  border-bottom-left-radius: 48px;
  padding-left: 16px;
}

.patientDetails__btnGroup .btnGroup-line2 {
  display: inline-block;
}

.patientDetails__btnGroup .btnGroup-line2 .btnGroup-right {
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
  padding-right: 16px;
  border: 2px solid #6371B6;
}

.patientDetails__userEmail {
  float: left;
}

.patientDetails__userCourse {
  float: right;
}

.patientDetails__userCourse p.highRiskScore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.patientDetails h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.patientDetails h2 img {
  height: 56px;
  margin-right: 8px;
}

.patientDetails h5 {
  font-size: 1.2em;
}

.patientDetails .patientDetails__user {
  display: block;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.patientDetails .patientDetails__user p {
  margin: 8px 0;
}

.patientDetails .patientDetails__user .patientDetails__userButtons .section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.patientDetails .patientDetails__user .patientDetails__userButtons p {
  float: right;
  margin-top: 35px;
}

.patientDetails .patientDetails__progress table td {
  font-size: 14px;
}

.patientDetails .patientDetails__progress table td.col1, .patientDetails .patientDetails__progress table td.col2, .patientDetails .patientDetails__progress table td.col3, .patientDetails .patientDetails__progress table td.col4, .patientDetails .patientDetails__progress table td.col5, .patientDetails .patientDetails__progress table td.col6, .patientDetails .patientDetails__progress table th.col1, .patientDetails .patientDetails__progress table th.col2, .patientDetails .patientDetails__progress table th.col3, .patientDetails .patientDetails__progress table th.col4, .patientDetails .patientDetails__progress table th.col5, .patientDetails .patientDetails__progress table th.col6 {
  text-align: left;
}

.patientDetails .patientDetails__documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 16px 0;
}

.patientDetails .patientDetails__documents .btn {
  font-size: 14px;
  background-color: #FFFFFF;
  color: #4E4B6D !important;
  border: 2px solid #6371B6;
  font-weight: bold;
}

.patientDetails .patientDetails__documents .btn:hover {
  background-color: rgba(99, 113, 182, 0.25);
}

.settings__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}

.settings__title img {
  height: 56px;
  width: 62.7px;
  margin-right: 8px;
}

#notesContainer .actionButtons {
  float: right;
}

.cbtConfidence .cbtConfidence__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cbtConfidence .cbtConfidence__labels p {
  padding-bottom: 0px;
  font-size: 13px;
}

.cbtConfidence .cbtConfidence__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cbtConfidence .radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .patientRecord_card {
    margin-left: 20px;
    margin-right: 20px;
  }
  .patientDetails__user {
    margin: 0 20px;
  }
  .patientDetails__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .patientDetails__userEmail {
    width: 100%;
  }
  .patientDetails__userEmail strong {
    display: block;
  }
  .patientDetails__userCourse {
    width: 100%;
  }
  .patientDetails__userCourse strong {
    display: block;
  }
  .patientDetails__progress {
    margin: 0 20px;
    border-bottom: 0px;
  }
  .patientDetails__notes {
    margin: 0 20px !important;
    text-align: center;
  }
  .patientDetails__notes h5 {
    text-align: left;
  }
  .patientDetails__documentsGrid {
    margin: 0 20px !important;
  }
  .patientDetails .patientDetails__documents {
    margin: 0 !important;
  }
  .patientDetails__btnGroup {
    text-align: center;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .patientDetails__btnGroup a:hover {
    border-right: 2px solid #6371B6;
  }
  .patientDetails__btnGroup .btnGroup-left {
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
    border-top-right-radius: 48px;
    border-bottom-right-radius: 48px;
    border: 2px solid #6371B6;
    padding-left: 16px;
    margin-bottom: 20px;
  }
  .patientDetails__btnGroup .btnGroup-right {
    border-top-right-radius: 48px;
    border-bottom-right-radius: 48px;
    padding-right: 16px;
    border: 2px solid #6371B6;
    margin-bottom: 20px;
  }
  .patientDetails .btn_container {
    display: none;
  }
  #notesContainer .actionButtons {
    float: none;
    text-align: center;
  }
}

@media only screen and (max-width: 367px) {
  .patientDetails__btnGroup a {
    font-size: 12px;
    padding: 4px 4px;
  }
  .patientDetails__btnGroup .btnGroup-left {
    padding-left: 8px !important;
  }
  .patientDetails__btnGroup .btnGroup-right {
    padding-right: 8px !important;
  }
}

.form_buttons--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  float: none;
}

@media (min-width: 767px) {
  .form_buttons--right {
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

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

@media (min-width: 767px) {
  .settings__button-wrapper {
    display: block;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.profile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .profile-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.profile-title {
  width: 100%;
}

@media (max-width: 768px) {
  .profile-title {
    width: auto;
    text-align: center;
  }
}

.resetPassword__button {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .resetPassword__button {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

#settings__title {
  /* Responsive Style */
}

@media only screen and (max-width: 1023px) {
  #settings__title {
    margin-left: 20px;
  }
}

#UserChangePasswordForm {
  margin: 20px;
}

#UserChangePasswordForm .form-group .passwordShow__icon {
  display: inline-block;
}

#UserChangePasswordForm .form-group label {
  font-size: 18px;
}

@media (max-width: 767px) {
  #UserChangePasswordForm .submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#UserPatientUpdateMyDetailsForm, #UserClinicianUpdateMyDetailsForm {
  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;
  margin: 0px;
}

#UserPatientUpdateMyDetailsForm .form-group, #UserClinicianUpdateMyDetailsForm .form-group {
  width: 48%;
  margin-bottom: 10px;
}

#UserPatientUpdateMyDetailsForm .form-group .passwordShow__icon, #UserClinicianUpdateMyDetailsForm .form-group .passwordShow__icon {
  display: inline-block;
}

#UserPatientUpdateMyDetailsForm .form-group label, #UserClinicianUpdateMyDetailsForm .form-group label {
  font-size: 18px;
}

#UserPatientUpdateMyDetailsForm .row, #UserClinicianUpdateMyDetailsForm .row {
  width: 100%;
}

#UserPatientUpdateMyDetailsForm .error-message, #UserClinicianUpdateMyDetailsForm .error-message {
  margin-top: -10px;
  margin-bottom: 5px;
}

#UserPatientUpdateMyDetailsForm .terms, #UserClinicianUpdateMyDetailsForm .terms {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
}

#UserClinicianUpdateMyDetailsForm .input.checkbox {
  width: 100%;
}

#UserClinicianUpdateMyDetailsForm .checkboxArea {
  margin-top: 20px;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  #UserPatientUpdateMyDetailsForm, #UserClinicianUpdateMyDetailsForm {
    margin: 20px;
  }
  #UserPatientUpdateMyDetailsForm .form-group, #UserClinicianUpdateMyDetailsForm .form-group {
    width: 100%;
  }
  #UserPatientUpdateMyDetailsForm label, #UserClinicianUpdateMyDetailsForm label {
    display: inline-block;
  }
  #UserPatientUpdateMyDetailsForm input, #UserClinicianUpdateMyDetailsForm input {
    margin-bottom: 10px;
  }
  #UserPatientUpdateMyDetailsForm ul, #UserClinicianUpdateMyDetailsForm ul {
    margin-bottom: 20px;
  }
  #UserPatientUpdateMyDetailsForm select, #UserClinicianUpdateMyDetailsForm select {
    margin-bottom: 10px;
  }
  #UserPatientUpdateMyDetailsForm #suburb_input, #UserClinicianUpdateMyDetailsForm #suburb_input {
    margin-bottom: 0px !important;
  }
  #UserPatientUpdateMyDetailsForm .autoComplete_result:first-child, #UserClinicianUpdateMyDetailsForm .autoComplete_result:first-child {
    border-radius: 0 !important;
  }
  #UserPatientUpdateMyDetailsForm #home-button, #UserPatientUpdateMyDetailsForm #save-button, #UserClinicianUpdateMyDetailsForm #home-button, #UserClinicianUpdateMyDetailsForm #save-button {
    text-align: center;
  }
  #UserClinicianUpdateMyDetailsForm .checkboxArea {
    margin-top: 0px;
  }
}

#UserPatientUpdateMyDetailsForm .ethnicity-form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

#UserPatientUpdateMyDetailsForm .ethnicity-form-group .form-group {
  width: 100%;
}

#UserPatientUpdateMyDetailsForm .ethnicity-form-group .input-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 580px) {
  #UserPatientUpdateMyDetailsForm .ethnicity-form-group .input-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#UserPatientUpdateMyDetailsForm .ethnicity-form-group .checkbox {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.3333% - 10px);
          flex: 1 1 calc(33.3333% - 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px;
}

#UserPatientUpdateMyDetailsForm .ethnicity-form-group .checkbox input[type="checkbox"] {
  margin-bottom: 1rem;
}

#UserPatientUpdateMyDetailsForm .ethnicity-other-form-group {
  margin-bottom: 30px;
}

#UserPatientUpdateMyDetailsForm .ethnicity-other-form-group .terms {
  padding-bottom: 0;
}

#UserPatientUpdateMyDetailsForm .ethnicity-other-form-group .error-message {
  padding-top: 12px;
}

#UserPatientUpdateMyDetailsForm .ethnicity-other-form-group .select2-container {
  width: 100% !important;
}

#UserPatientUpdateMyDetailsForm .place-holder {
  width: 100%;
}

#UserPatientUpdateMyDetailsForm .select2-selection__choice {
  border: 0;
  border-radius: 12px;
}

#UserPatientUpdateMyDetailsForm .select2-selection__choice__display {
  padding-right: 12px;
}

#UserPatientUpdateMyDetailsForm .select2-selection__choice__remove {
  margin: 0;
  border: 0;
}

.feedback h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feedback h2 img {
  height: 56px;
  width: 62.7px;
  margin-right: 8px;
}

#FeedbackPatientTellMyStoryForm textarea {
  width: 100%;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .feedback {
    margin: 0 20px;
  }
  #FeedbackPatientTellMyStoryForm .input {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 20px;
  }
  #FeedbackPatientTellMyStoryForm .submit {
    text-align: center;
    margin-bottom: 20px;
  }
}

.myPatients__patient_list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.myPatients__quickscripts {
  margin-top: 30px;
}

.patientSelectorWrapper {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  gap: 10px;
}

@media (min-width: 480px) {
  .patientSelectorWrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.patientSelector__line1 {
  display: inline-block;
}

.patientSelector__line2 {
  display: inline-block;
  width: auto;
}

.patientSelector__line2 .input.radio label {
  padding-bottom: 0;
}

.patientSelector__actions {
  display: inline-block;
}

.patientSelector__actions div {
  display: inline-block;
}

.highDistressScore {
  color: #ff9800;
}

.badge--discharged {
  color: #f44336;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  #patientSelector {
    margin: 0 20px;
    text-align: center;
  }
  #patientSelector .formLabel {
    display: inline-block;
  }
  .patientSelector__line1 {
    display: block;
  }
  .patientSelector__line2 {
    display: block;
  }
  .myPatients__patient_list {
    margin: 20px 20px 0px 20px;
  }
  .myPatients__quickscripts {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.clinicianCourses .btn_container {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 24px;
}

.clinicianCourses .btn_container a.btn {
  margin: 20px 0 0 0;
}

.clinicianCourses .course_list .card .card__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

table caption {
  padding: 0.75rem;
}

@media (min-width: 1024px) {
  table caption {
    padding: 0;
  }
}

.tooltipList_card {
  margin-top: 40px;
  padding-bottom: 20px;
}

.tooltipsList__title {
  font-weight: bold;
  font-size: 26px;
}

.tooltipsList #listTooltips td {
  padding: 10px;
  vertical-align: middle;
}

.tooltipsList #listTooltips td .btn {
  border-radius: 10px;
  padding: 4px 16px;
  font-size: 14px;
  text-decoration: none;
  margin: 0 10px 0 0;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .tooltipList_card {
    margin-left: 20px;
    margin-right: 20px;
  }
  .tooltipsList {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }
  .tooltipsList__title {
    text-align: left;
  }
  .tooltipsList #listTooltips tr:nth-child(odd) td {
    border-bottom: none;
  }
  .tooltipsList #listTooltips td {
    border-bottom: none;
  }
  .tooltipsList #listTooltips td:nth-child(2) {
    text-align: center;
  }
  .tooltipsList #listTooltips td:nth-child(2) .btn {
    display: table;
    margin: 10px auto;
    border-radius: 48px;
    padding: 8px 32px;
    font-size: 16px;
  }
}

.tooltips thead tr, .completeCourse thead tr {
  display: none;
}

@media (min-width: 1024px) {
  .tooltips thead tr, .completeCourse thead tr {
    display: table-row;
  }
}

.tooltips tbody tr, .completeCourse tbody tr {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .tooltips tbody tr, .completeCourse tbody tr {
    display: table-row;
  }
}

.tooltips tbody tr td.tooltip__btn, .completeCourse tbody tr td.tooltip__btn {
  text-align: right;
  display: block;
}

.tooltips tbody tr td.tooltip__btn a.btn, .completeCourse tbody tr td.tooltip__btn a.btn {
  margin: 0 4px;
}

@media (min-width: 480px) {
  .tooltips tbody tr td.tooltip__btn a.btn, .completeCourse tbody tr td.tooltip__btn a.btn {
    margin: 0 8px;
  }
}

@media (min-width: 1024px) {
  .tooltips tbody tr td.tooltip__btn a.btn, .completeCourse tbody tr td.tooltip__btn a.btn {
    margin-right: 20px;
  }
}

.tooltips tbody tr td.tooltip__name, .completeCourse tbody tr td.tooltip__name {
  text-align: center;
}

@media (min-width: 1024px) {
  .tooltips tbody tr td.tooltip__name, .completeCourse tbody tr td.tooltip__name {
    text-align: left;
  }
}

.viewPatientQuestionnaireResponse #preview-footer {
  margin-top: 20px;
}

.viewPatientQuestionnaireResponse .scoreDiv {
  float: right;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #FABB4A;
}

.viewPatientQuestionnaireResponse .questionnaire__description {
  width: 80%;
  float: left;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  #questionnaire_description {
    margin-left: 20px;
    margin-right: 20px;
  }
  #QuestionnaireViewPatientQuestionnaireResponseForm {
    margin: 30px 30px 30px 30px;
  }
  .viewPatientQuestionnaireResponse #preview-footer {
    margin: 0px 30px 30px 30px;
    text-align: center;
  }
  .viewPatientQuestionnaireResponse .scoreDiv {
    float: none;
  }
  .viewPatientQuestionnaireResponse .questionnaire__description {
    float: none;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}

.courses__video #content {
  min-height: calc(100vh - (104px + 180px));
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

@media (min-width: 480px) {
  .courses__video #content {
    min-height: calc(100vh - (70px + 180px));
  }
}

@media (min-width: 1024px) {
  .courses__video #content {
    min-height: calc(100vh - (126px + 180px));
  }
}

.courses__video .main__container {
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.courses__video .main__header {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px 0;
  height: 88px;
}

@media (min-width: 480px) {
  .courses__video .main__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    height: 54px;
  }
}

@media (min-width: 480px) {
  .courses__video .main__header > div {
    margin: 0 16px;
  }
}

@media (min-width: 1024px) {
  .courses__video .main__header > div {
    margin: 0;
  }
}

.courses__video .bottom__swish {
  background-image: url(https://www.justathought.co.nz/assets/images/footer.png), linear-gradient(transparent 200px, #4e4b6d 10%);
  height: 180px;
  width: 100%;
  z-index: 6;
  bottom: 0;
}

.completeCourse h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.completeCourse h1 img {
  height: 56px;
  width: 62.7px;
  margin-right: 8px;
}

.completeCourse .card {
  padding: .625rem 1.625rem;
}

.completeCourse .card .datepicker__content {
  margin-top: 8px;
}

.completeCourse .card .datepicker__content .fa-calendar-alt {
  position: relative;
  left: -30px;
}

.completeCourse .completeCourse__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.completeCourse .completeCourse__content .completeCourse__subheader h1 {
  text-align: left;
  display: block;
}

.completeCourse .completeCourse__content .completeCourse__header h2 {
  display: block;
  color: #90D5AC;
}

@media (min-width: 767px) {
  .completeCourse .completeCourse__content .completeCourse__header h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.completeCourse .completeCourse__content .completeCourse__header h2 img {
  height: 56px;
  margin-right: 16px;
}

.completeCourse .completeCourse__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 80px;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
}

/* Responsive Style */
@media only screen and (max-width: 1023px) {
  .completeCourse .card {
    padding: .625rem 1.625rem;
    margin: auto 1rem 1.625rem;
  }
  .completeCourse .completeCourse__content .card_image {
    display: none;
  }
  .completeCourse .completeCourse__content .card_copy .completeCourse__header h1 {
    font-size: 1.75em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #90D5AC;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .completeCourse .completeCourse__content .card_copy .completeCourse__header h1 img {
    height: 42px;
    margin-right: 8px;
  }
  .completeCourse .completeCourse__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .completeCourse .completeCourse__buttons .btn {
    margin-right: 0;
  }
}

.referrals .card {
  padding: 8px;
}

.referrals .referral {
  padding: 8px 16px;
}

.referrals .referral__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.referrals .referral__header h3, .referrals .referral__header h4 {
  margin: 0;
  width: 49%;
}

.referrals .referral__header h4 {
  text-align: right;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.referrals .referral__details > div {
  display: grid;
  grid-template-columns: 1fr 3fr;
  margin-bottom: 8px;
}

.referrals .referral__details > div dd {
  margin: 0;
}

.referrals .referral .action__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.referrals .referral .action__buttons .btn {
  margin: 8px 16px;
}

.viewAvailableLessons .unavailable {
  opacity: 0.5;
  pointer-events: none;
}

@media only screen and (max-width: 1023px) {
  .viewAvailableLessons .lessons-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.viewAvailableLessons .course_banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.viewAvailableLessons .course_banner__content .course_banner__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.viewAvailableLessons .course_banner__content .course_banner__image img {
  width: 100%;
  height: auto;
}

.viewAvailableLessons .course_banner__category {
  font-weight: 600;
  margin-bottom: 0;
}

.viewAvailableLessons .course_banner__title {
  font-size: 2.5em;
  margin: 0;
}

.viewAvailableLessons .lesson-card {
  padding: 0;
}

.viewAvailableLessons .lesson-card .lesson-title {
  margin: 0;
  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;
  overflow: hidden;
  max-height: 100px;
}

.viewAvailableLessons .lesson-card .lesson-title .lesson-title__text {
  color: white;
  margin: 0;
  padding: 20px 30px;
}

.viewAvailableLessons .lesson-card .lesson-title .banner-art {
  opacity: 0.5;
  width: 40%;
  height: auto;
  position: relative;
  top: 8px;
  right: 0;
}

.viewAvailableLessons .lesson-card .lesson-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 1.625rem;
}

.viewAvailableLessons .lesson-card .lesson-actions .progress-container {
  height: 20px;
  border-radius: 14px;
  width: 80%;
  position: relative;
}

.viewAvailableLessons .lesson-card .lesson-actions .progress-container.completed:after {
  content: '';
  position: absolute;
  right: -19px;
  top: -12px;
  width: 45px;
  height: 45px;
  background: url("/img/completed.svg") no-repeat center;
  background-size: contain;
}

.viewAvailableLessons .lesson-card .lesson-actions .progress-container .progress-bar {
  height: 100%;
  border-radius: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.viewAvailableLessons .lesson-card .lesson-actions .progress-container .progress-bar .completed-text {
  color: white;
  font-weight: 600;
  margin-right: 35px;
  margin-left: 10px;
  font-size: 16px;
}

.viewAvailableLessons .lesson-card .lesson-actions .lesson-action {
  margin: 10px 10px 10px 0 !important;
}

.viewAvailableLessons .lesson-card .lesson-content {
  padding: 0.625rem 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.viewAvailableLessons .lesson-card .lesson-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.viewAvailableLessons .lesson-card .lesson-content a img {
  max-width: 30px;
  height: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.viewAvailableLessons .lesson-card .lesson-content .extra-resources-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.viewAvailableLessons .lesson-card .lesson-content .extra-resources-header h3 {
  margin: 10px 0;
}

.viewAvailableLessons .lesson-card .lesson-content .extra-resources-header h3:hover {
  cursor: pointer;
}

.viewAvailableLessons .lesson-card .lesson-content .extra-resources-header .toggle-icon {
  width: 40px;
  height: 40px;
}

.viewAvailableLessons .lesson-card .lesson-content .extra-resources-header .toggle-icon:hover {
  cursor: pointer;
}

.viewAvailableLessons .lesson-card .lesson-content .extra-resources-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 1023px) {
  .stories__slides nav.sidebar__menu {
    display: none;
  }
}

.stories__slides .main__content.slides {
  width: 488px;
}

@media (min-width: 767px) {
  .stories__slides .main__content.slides {
    width: 690px;
  }
}

@media (min-width: 1024px) {
  .stories__slides .main__content.slides {
    width: 900px;
  }
}

.stories__slides .main__content .breadcrumbs {
  margin: 8px;
}

.stories__slides .main__content .swiper-container {
  margin-top: 0px;
}

.stories__slides .main__content .swiper-container .swiper-button-disabled {
  display: block;
}

.stories__slides .main__content .swiper-container .swiper-slide img {
  max-height: 100%;
}

.stories__slides .main__content .swiper-pagination {
  top: -18px;
}

@media (min-width: 767px) {
  .stories__slides .main__content .swiper-pagination {
    top: -44px;
  }
}

@media (min-width: 1024px) {
  .stories__slides .main__content .swiper-pagination {
    top: 0;
  }
}

.stories__slides .main__content .clinician__story__buttons {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stories__slides .main__content .storyVideo__buttons {
  margin-top: 20px;
  scale: 100%;
}

@media only screen and (max-width: 1023px) {
  .stories__videos nav.sidebar__menu {
    display: none;
  }
}

.stories__videos .main__content.video {
  width: 488px;
  max-width: 95vw;
}

@media (min-width: 767px) {
  .stories__videos .main__content.video {
    width: 690px;
  }
}

@media (min-width: 1024px) {
  .stories__videos .main__content.video {
    width: 900px;
  }
}

.stories__videos .main__content .breadcrumbs {
  margin: 8px;
}

@media (max-width: 590px) {
  .stories__videos .main__content .story {
    width: 85%;
  }
}

.stories__videos .main__content .video-container {
  margin: auto;
  position: relative;
}

.stories__videos .main__content .swiper__buttons {
  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;
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.stories__videos .main__content .swiper__buttons .swiper__nextBtn,
.stories__videos .main__content .swiper__buttons .swiper__prevBtn {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 20px 0;
  z-index: 10;
}

.stories__videos .main__content .swiper__buttons .swiper__prevBtn {
  right: auto;
  -moz-text-align-last: left;
       text-align-last: left;
  left: -32px;
}

.stories__videos .main__content .swiper__buttons .swiper__nextBtn {
  left: auto;
  text-align: right;
  right: -32px;
}

.stories__videos .main__content .vjs-poster {
  background-size: cover !important;
}

.stories__lesson .sv-popup__container {
  margin-left: 0;
  margin-right: 0;
}

.stories__lesson .sv-dropdown {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  margin-bottom: 8px;
}

.stories__lesson .sv-dropdown:hover {
  cursor: pointer;
}

.stories__lesson .sv-dropdown_clean-button {
  position: absolute;
  right: 2rem;
  top: calc(50% - 12px);
}

.stories__lesson .sv-dropdown-popup .sv-list__item.sv-list__item--selected > .sv-list__item-body {
  background-color: #cccccc;
}

.stories__lesson .sv-dropdown-popup .sv-list__item:hover > .sv-list__item-body {
  background-color: #e6e5e5;
}

.stories__lesson .card {
  padding: 1.625rem !important;
}

.stories__lesson .example {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 15px);
          flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  background: #e6f3ff;
  padding: 5px 15px;
  border-left: 4px solid #007E84;
}

.stories__lesson .sv-footer {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.stories__lesson .sv-container-modern {
  border-radius: 16px;
}

.stories__lesson .sv-string-viewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.stories__lesson .results-row {
  margin-bottom: 5px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 767px) {
  .stories__lesson .results-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.stories__lesson .results-row p {
  margin: 0;
}

.stories__lesson .expandable-header {
  margin: 0;
}

.stories__lesson .harm, .stories__lesson .connection {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
}

.stories__lesson .harm.Severe {
  background-color: #FF8C00;
  color: white;
}

.stories__lesson .harm.Moderate {
  background-color: #DAA520;
  color: white;
}

.stories__lesson .harm.Low {
  background-color: #2E8B57;
  color: white;
}

.stories__lesson .connectionLevel, .stories__lesson .harmLevel {
  color: white;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 0;
}

.stories__lesson .connectionLevel--wellConnected, .stories__lesson .connectionLevel--low, .stories__lesson .harmLevel--wellConnected, .stories__lesson .harmLevel--low {
  background-color: #2E8B57;
}

.stories__lesson .connectionLevel--lessConnected, .stories__lesson .connectionLevel--moderate, .stories__lesson .harmLevel--lessConnected, .stories__lesson .harmLevel--moderate {
  background-color: #DAA520;
}

.stories__lesson .connectionLevel--disconnected, .stories__lesson .connectionLevel--severe, .stories__lesson .harmLevel--disconnected, .stories__lesson .harmLevel--severe {
  background-color: #FF8C00;
}

.stories__lesson .connection.Disconnected {
  background-color: #FF8C00;
  color: white;
}

.stories__lesson .connection.Less {
  background-color: #DAA520;
  color: white;
}

.stories__lesson .connection.Well {
  background-color: #2E8B57;
  color: white;
}

.vjs-texttrack-settings {
  display: none;
}

.vjs-menu-item.vjs-captions-menu-item li {
  text-transform: capitalize;
}

.hide-mobile {
  display: none;
}

@media (min-width: 767px) {
  .hide-mobile {
    display: inline;
  }
}

#surveyContainer {
  font-family: 'Montserrat', sans-serif;
}

#surveyContainer .noUi-value-horizontal {
  height: 2rem;
}

.surveyjs-block {
  padding: 16px 16px;
  margin-top: 0;
}

@media (min-width: 767px) {
  .surveyjs-block {
    padding: 16px 24px;
    margin-top: 42px;
  }
}

@media (min-width: 1024px) {
  .surveyjs-block {
    padding: 24px 32px;
    margin: 16px auto 40px;
  }
}

.simple .sv-page.sv-body__page {
  margin-top: 0;
}

.question__title {
  color: #007e84;
  margin-bottom: 1rem;
  margin-top: 0px;
}

.question__block-sjs {
  margin-bottom: 40px;
}

.sv-rating > fieldset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 480px) {
  .sv-rating > fieldset {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sv-rating > fieldset .btn {
  width: -webkit-fill-available;
}

@media (min-width: 480px) {
  .sv-rating > fieldset .btn {
    width: auto;
  }
}

.question__title.heading--small {
  font-size: 20px;
}

.sv-question__description {
  font-size: 14px;
}

.sv-item__control-label {
  font-size: 16px;
}

pre.cake-error#sqlDump {
  position: sticky;
  bottom: 0;
  left: 0;
  height: 50vh;
  width: 100vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: scroll;
  padding-top: 0;
}

pre.cake-error#sqlDump .sql__dump--close {
  position: sticky;
  top: 0;
  background: #fff;
}

pre.cake-error#sqlDump caption {
  position: sticky;
  top: 13px;
  background: #fff;
}

pre.cake-error#sqlDump thead {
  position: sticky;
  top: calc(1rem + 13px);
  background-color: #fff;
}

pre.cake-error#sqlDump thead th {
  padding: 0 8px;
}

pre.cake-error#sqlDump tr td {
  text-wrap: balance;
  text-align: center !important;
  padding: 16px 8px;
}

pre.cake-error#sqlDump tr td:nth-child(1), pre.cake-error#sqlDump tr td:nth-child(2) {
  text-align: left !important;
}

pre.cake-error#sqlDump tr:nth-child(2n) {
  background-color: rgba(192, 192, 192, 0.4);
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success .close {
  color: #d4edda;
  background-color: #155724;
}

/* Forms */
.radio input[type="radio"],
.radio-inline input[type="radio"] {
  position: static;
  margin-left: 0;
}

.checkbox label,
.radio label {
  padding-left: 5px;
  padding-right: 20px;
  padding-top: 0;
}

/* courses */
div.courses {
  margin-left: 0;
  margin-right: 0;
}

div.courses .course__card {
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  border-radius: 48px;
  margin-bottom: 1.625rem;
}

div.courses .course__card .course-info {
  width: auto;
}

@media (min-width: 1024px) {
  div.courses .course__card .course-info {
    width: 260px;
  }
}

/* progress bar */
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.progress .bar-success {
  background-color: #2ab27b !important;
}

.progress .lbl.done {
  color: white;
}

/* Start prescription code */
table label {
  padding-left: 10px;
}

/* Progress */
.text-info {
  color: #FBAF3F !important;
}

/* responsive img */
.img-container img,
.img-wrapper img {
  max-width: 100%;
  height: auto;
}

/* form elements */
.control_group {
  margin: 16px 0;
}

.caption.greyout.bold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

span.caption.available-from {
  margin-left: 8px;
}

/* TWU admin */
input .imagePreview.form-control {
  height: auto;
}

h4.debug,
h4.debug--hide {
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  font-size: 12px;
  color: #aaa;
}

h4.debug--hide {
  display: none;
}

/* fancy-checkbox */
#clinician_details_div.disabled,
#course_choice.disabled {
  opacity: 0.5;
}

/* cake error */
pre.cake-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  background: white;
  z-index: 100;
  bottom: 0;
  width: 100vw;
  padding: 24px;
  margin: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #252525;
}

/* questionnaire */
.row.answer.independent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}

.row.answer.independent .btn {
  font-size: 14px;
  padding: 8px 16px;
}

.question_container .input.radio {
  display: none;
}

.question_container li.error-message.question-error {
  position: absolute;
  color: #de2e39;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#questionnaire_description {
  padding-top: 16px;
}

#zeroribbon {
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  #zeroribbon {
    left: 70px;
    width: calc(100vw - 70px);
  }
}

@media (min-width: 1200px) {
  #zeroribbon {
    width: calc(100vw - 210px);
    left: 210px;
  }
}

#zeroalert {
  z-index: 2;
  margin-bottom: 0;
  border-radius: 0;
}

@media (min-width: 1024px) {
  .sidebar--open #zeroribbon {
    left: 210px;
  }
}

.login #zeroribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
}

.courses__video #zeroribbon {
  width: 100vw;
  left: 0;
}
