@charset "UTF-8";
html {
  box-sizing: border-box; }

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

body:before {
  margin-left: calc(14.70196% + 1em); }

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

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: "";
  content: none; }

q:before, q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@keyframes wobble {
  0% {
    transform: translateX(0%); }
  15% {
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    transform: translateX(20%) rotate(3deg); }
  45% {
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    transform: translateX(10%) rotate(2deg); }
  75% {
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    transform: translateX(0%); } }

@keyframes tada {
  0% {
    transform: scale(1); }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg); }
  100% {
    transform: scale(1) rotate(0); } }

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in; }
  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in; } }

* {
  box-sizing: border-box; }

body {
  font-family: "Roboto";
  color: #505050; }
  body.popup-opened .app__content {
    overflow: hidden;
    max-height: 60vh; }

a {
  color: #3398dc; }

h1 {
  font-size: 1.4rem;
  font-weight: normal; }

.app {
  min-width: 920px;
  min-height: 100vh;
  background: #f7f4f3;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: flex;
  flex-flow: row wrap; }

.app--empty {
  min-width: 0; }

.app--is-starting:after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 9;
  opacity: .7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f4f3; }

.app--is-starting:before {
  z-index: 15;
  color: #B5B5B5;
  font-family: "fontawesome";
  content: "\f110";
  font-size: 2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  animation: fa-spin 1s infinite steps(8); }

.wrapper {
  box-flex: 1;
  -moz-flex: 1;
  flex: 1;
  overflow-x: hidden; }

.breadcrumb {
  background: #f0ece9;
  font-size: .8rem;
  padding: .6rem 2rem .5rem .6rem;
  color: #B5B5B5;
  /*
    &:before {
        font-family: $fontawesome;
        content: "\f015";
    }
    */ }
  .breadcrumb a {
    text-decoration: none;
    color: #B5B5B5;
    margin-left: .7rem;
    padding-left: .7rem; }

.app__content {
  overflow-x: hidden; }

.content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  padding-top: 1em;
  transition: transform 0.4s cubic-bezier(0.4, 0, 1, 1), opacity 0.5s cubic-bezier(0.4, 0, 1, 1);
  transform: translate3d(0, 0, 0);
  min-height: 500px; }
  .content::after {
    clear: both;
    content: "";
    display: table; }

.content--out {
  transform: translate3d(50%, 0, 0);
  opacity: 0; }

.content--in {
  transform: translate3d(0, 0, 0);
  opacity: 0; }

.content__title {
  color: #655b59;
  border-bottom: 1px solid #ebe6e4;
  padding-bottom: .8rem;
  margin-bottom: 1rem; }
  .content__title:before {
    font-family: "fontawesome";
    width: 20px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 1.3rem;
    text-align: center; }

h2.content__title {
  width: 20%;
  color: #a1938f;
  font-size: 1.2rem; }

.content__title--full, h2.content__title--full {
  width: 100%; }

.content__title--dashboard:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "B"; }

.content__title--geolocation:before {
  content: '\f0ac'; }

.content__title--actions:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "A"; }

.content__title--listen:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "C"; }

.content__title--goals:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "E"; }

.content__title--ranking:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "D"; }

/* BEGIN Light */
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Light/Roboto-Light.woff2?v=1.1.0") format("woff2"), url("../fonts/Roboto/Light/Roboto-Light.woff?v=1.1.0") format("woff"), url("../fonts/Roboto/Light/Roboto-Light.ttf?v=1.1.0") format("truetype");
  font-weight: 300;
  font-style: normal; }

/* END Light */
/* BEGIN Regular */
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Regular/Roboto-Regular.woff2?v=1.1.0") format("woff2"), url("../fonts/Roboto/Regular/Roboto-Regular.woff?v=1.1.0") format("woff"), url("../fonts/Roboto/Regular/Roboto-Regular.ttf?v=1.1.0") format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Regular/Roboto-Regular.woff2?v=1.1.0") format("woff2"), url("../fonts/Roboto/Regular/Roboto-Regular.woff?v=1.1.0") format("woff"), url("../fonts/Roboto/Regular/Roboto-Regular.ttf?v=1.1.0") format("truetype");
  font-weight: normal;
  font-style: normal; }

/* END Regular */
/* BEGIN Medium */
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Medium/Roboto-Medium.woff2?v=1.1.0") format("woff2"), url("../fonts/Roboto/Medium/Roboto-Medium.woff?v=1.1.0") format("woff"), url("../fonts/Roboto/Medium/Roboto-Medium.ttf?v=1.1.0") format("truetype");
  font-weight: 500;
  font-style: normal; }

/* END Medium */
/* BEGIN Bold */
@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Bold/Roboto-Bold.woff2?v=1.1.0") format("woff2"), url("../fonts/Roboto/Bold/Roboto-Bold.woff?v=1.1.0") format("woff"), url("../fonts/Roboto/Bold/Roboto-Bold.ttf?v=1.1.0") format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto/Bold/Roboto-Bold.woff2?v=1.1.0") format("woff2"), url("../fonts/Roboto/Bold/Roboto-Bold.woff?v=1.1.0") format("woff"), url("../fonts/Roboto/Bold/Roboto-Bold.ttf?v=1.1.0") format("truetype");
  font-weight: bold;
  font-style: normal; }

/* END Bold */
@font-face {
  font-family: "adjust-font";
  src: url("../fonts/adjust.eot");
  src: url("../fonts/adjust.eot?#iefix") format("embedded-opentype"), url("../fonts/adjust.woff") format("woff"), url("../fonts/adjust.ttf") format("truetype"), url("../fonts/adjust.svg#adjust") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'gemicons';
  src: url("../fonts/gemicons.eot");
  src: url("../fonts/gemicons.eot") format("embedded-opentype"), url("../fonts/gemicons.ttf") format("truetype"), url("../fonts/gemicons.svg") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "adjust-font" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "adjust-font" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-adjust-girafe:before {
  content: "a"; }

.header {
  position: relative;
  height: 4rem;
  background: #ffffff;
  padding: 0;
  font-size: 1em;
  box-shadow: 1px 2px 2px 0px rgba(101, 91, 89, 0.3);
  width: 100%; }

.header__clients {
  float: right;
  width: 300px;
  margin-right: 4rem; }

.header__close {
  position: absolute;
  display: block;
  width: 4rem;
  height: 4rem;
  background: #eae5e2;
  right: 0;
  text-align: center;
  color: #655b59;
  text-decoration: none;
  transition: background 0.5s, color 0.5s; }
  .header__close:after {
    content: '\f011';
    font-family: "fontawesome";
    line-height: 4rem; }
  .header__close:hover {
    background: #e84c3d;
    color: white; }

.header__alert {
  float: left;
  height: 100%;
  width: 200px;
  vertical-align: middle;
  padding: 1.2rem 1.2rem 1.2rem 2rem;
  color: #B5B5B5;
  cursor: pointer; }
  .header__alert span {
    position: relative;
    display: inline-block;
    background: #EFEFEF;
    min-width: 25px;
    height: 20px;
    vertical-align: middle;
    font-size: .7rem;
    padding: .3rem;
    text-align: center; }
    .header__alert span:after {
      right: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(213, 0, 0, 0);
      border-right-color: #EFEFEF;
      border-width: 5px;
      margin-top: -5px; }
  .header__alert:before {
    font-family: "fontawesome";
    content: '\f0a2';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-top: 5px;
    margin-right: .5rem; }
  .header__alert.header__alert--emphasis span {
    background: #e84c3d;
    color: white; }
    .header__alert.header__alert--emphasis span:after {
      border-right-color: #e84c3d; }
  .header__alert.header__alert--emphasis:before {
    color: #505050;
    content: '\f0f3'; }

.main-nav {
  box-flex: 0;
  -moz-flex: 0 0 13em;
  flex: 0 0 13em;
  background: #201b17;
  color: white; }
  .main-nav a {
    color: white; }

.main-nav__logo {
  display: block;
  background: #f2efed;
  height: 4rem;
  color: #505050;
  line-height: 4rem;
  font-size: 1rem;
  font-weight: normal;
  text-transform: uppercase;
  overflow: hidden; }
  .main-nav__logo img {
    width: 70%;
    margin-top: 12px;
    margin-left: 20px; }
  .main-nav__logo span {
    font-size: .8em;
    color: #B5B5B5; }
  .main-nav__logo:before {
    display: none;
    content: 'a';
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    font-size: 2rem;
    font-family: "adjust-font";
    vertical-align: middle;
    margin-left: -7px;
    color: #505050;
    color: #B5B5B5;
    margin-left: -1rem; }

.main-nav__client {
  border-bottom: 1px solid #332c29;
  padding: 1.5rem 1rem 1.5rem 1.4rem;
  text-transform: uppercase;
  vertical-align: top;
  line-height: 1.2rem;
  display: block; }
  .main-nav__client img {
    width: 26px;
    height: 26px;
    float: left;
    margin-right: .5rem;
    margin-top: 15px; }
  .main-nav__client span {
    font-size: .6em;
    text-transform: initial;
    vertical-align: top;
    color: #f9f7f6; }
  .main-nav__client div {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 125px;
    overflow: hidden;
    font-size: .9rem;
    font-weight: bold; }

.main-nav__menu {
  font-size: 0.8rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem; }

.main-nav__menu-item a {
  border-left: 3px solid transparent;
  display: block;
  padding: .5rem .5rem .5rem .7rem;
  padding-left: 1.2rem;
  text-decoration: none;
  color: #a1938f;
  overflow: hidden;
  white-space: nowrap; }
  .main-nav__menu-item a:before {
    font-family: "fontawesome";
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 1.3rem;
    text-align: center;
    color: #655b59; }

.main-nav__menu-item--hassub {
  position: relative; }
  .main-nav__menu-item--hassub > a:after {
    display: none;
    display: inline-block;
    color: #f1543a;
    position: absolute;
    top: .7rem;
    right: 0;
    font-family: "fontawesome";
    content: '\f0d7';
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 15px;
    font-size: .7rem;
    text-align: center; }

.main-nav__menu-item--open .main-nav__menu-sub {
  visibility: visible;
  max-height: 200px; }

.main-nav__menu-item--open .main-nav__menu-sub--long {
  max-height: 300px; }

.main-nav__menu-item--open .main-nav__menu-sub--vlong {
  max-height: 700px; }

.main-nav__menu-item--open > a:after {
  content: '\f0d8'; }

.main-nav__menu-item a:hover, .main-nav__menu-item--active a {
  background: #f7f4f3;
  border-left-color: #f1543a; }

.main-nav__menu-item--dashboard > a:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "B"; }

.main-nav__menu-item--actions > a:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "A"; }

.main-nav__menu-item--listen > a:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "C"; }

.main-nav__menu-item--goals > a:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "E"; }

.main-nav__menu-item--geo > a:before {
  content: '\f0ac'; }

.main-nav__menu-item--ranking > a:before {
  font-family: 'gemicons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "D"; }

.main-nav__menu-item--hidden {
  display: none; }

.main-nav__menu-sub {
  visibility: hidden;
  max-height: 0;
  height: auto;
  overflow-y: hidden;
  transition: visibility 0.5s, max-height 0.5s;
  position: absolute;
  z-index: 9;
  background: #655b59;
  margin-left: 3rem;
  top: 0;
  position: relative;
  top: auto;
  background: none;
  margin-left: 0; }
  .main-nav__menu-sub a {
    padding-top: .4rem;
    padding-bottom: .4rem;
    font-size: .9em; }
  .main-nav__menu-sub a {
    padding-left: 3.5rem; }

.login-form {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  width: 90%;
  margin: 2rem auto;
  text-align: left;
  padding: 1rem;
  height: 275px; }
  @media screen and (min-width: 751px) {
    .login-form {
      width: 30rem;
      margin: 10rem auto; } }
  .login-form input {
    width: 100%;
    margin: .5rem 0;
    padding: .4rem;
    font-size: 1.2rem;
    border: 1px solid #EFEFEF;
    font-weight: 100;
    font-family: "Roboto"; }
  .login-form input[type="submit"] {
    background: #f07e1a;
    border: 0;
    padding: .7rem;
    color: white;
    font-weight: 100;
    font-size: 1rem;
    text-transform: uppercase; }
  .login-form .login-form__logo {
    width: 260px;
    background: url("../images/logo-agency.png");
    background-size: 100% auto;
    height: 68px;
    margin-bottom: .5rem; }

.terms-box {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2); }
  .terms-box .terms-box__logo {
    width: 260px;
    background: url("../images/logo-agency.png");
    background-size: 100% auto;
    height: 68px; }
  .terms-box .terms-box__text {
    height: 40vh;
    overflow-y: scroll; }

.button {
  /* Structure */
  display: inline-block;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 100%;
  padding: 0.5em 1em;
  color: #444;
  /* rgba not supported (IE 8) */
  color: rgba(0, 0, 0, 0.8);
  /* rgba supported */
  border: 1px solid #999;
  /*IE 6/7/8*/
  border: none transparent;
  /*IE9 + everything else*/
  background-color: #E6E6E6;
  text-decoration: none; }

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.button--hover,
.button:hover,
.button:focus {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.1)); }

.button:focus {
  outline: 0; }

.button--active,
.button:active {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset, 0 0 6px rgba(0, 0, 0, 0.2) inset;
  border-color: #000\9; }

.button[disabled],
.button--disabled,
.button--disabled:hover,
.button--disabled:focus,
.button--disabled:active {
  border: none;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  filter: alpha(opacity=40);
  -khtml-opacity: 0.40;
  -moz-opacity: 0.40;
  opacity: 0.40;
  cursor: not-allowed;
  box-shadow: none; }

.button--hidden {
  display: none; }

.button--primary,
.button--selected,
a.button--primary,
a.button--selected {
  background-color: #0078e7;
  color: #fff; }

.heavy-selector {
  display: inline-block;
  color: #505050;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  margin-bottom: 1rem;
  cursor: pointer; }
  .heavy-selector.heavy-selector--open .heavy-selector__choices {
    display: block; }
  .heavy-selector.heavy-selector--right .heavy-selector__choices {
    right: 0;
    left: auto; }
    .heavy-selector.heavy-selector--right .heavy-selector__choices:after, .heavy-selector.heavy-selector--right .heavy-selector__choices:before {
      left: auto;
      right: 20%; }

.heavy-selector__selected {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  padding: 0.9rem;
  padding-right: 1.8rem;
  position: relative;
  overflow-x: hidden;
  text-overflow: ellipsis; }
  .heavy-selector__selected:after {
    content: '\f0d7';
    font-family: "fontawesome";
    position: absolute;
    right: 0.7rem;
    top: 1rem;
    color: #f1543a; }

.heavy-selector__choices {
  display: none;
  position: absolute;
  top: 4em;
  left: 0;
  background: #fff;
  list-style: none;
  z-index: 1;
  margin: 0;
  padding: 0;
  min-width: 100%;
  border: 1px solid #B5B5B5;
  border-top-width: 3px; }
  .heavy-selector__choices li {
    padding: .8rem;
    margin: 0;
    white-space: nowrap;
    width: 198px; }
    .heavy-selector__choices li:hover {
      background: #EFEFEF; }
    .heavy-selector__choices li img {
      vertical-align: middle;
      margin-right: .6rem;
      width: 20px;
      height: 20px; }
    .heavy-selector__choices li label {
      overflow: hidden;
      text-overflow: ellipsis;
      height: 12px;
      width: 100% !important;
      margin-bottom: 0; }
  .heavy-selector__choices a {
    color: #505050;
    text-decoration: none; }
  .heavy-selector__choices:after, .heavy-selector__choices:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .heavy-selector__choices:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #B5B5B5;
    border-width: 10px;
    margin-left: -10px; }
  .heavy-selector__choices:before {
    border-color: rgba(245, 0, 0, 0);
    border-bottom-color: #B5B5B5;
    border-width: 11px;
    margin-left: -11px; }

.heavy-selector__choices--2cols ul {
  width: 400px; }

.heavy-selector__choices--3cols ul {
  width: 600px; }

.heavy-selector__choices--3cols li {
  width: 197px; }

.heavy-selector__choices--4cols ul {
  width: 800px; }

.heavy-selector__choices--4cols li {
  width: 196px; }

.heavy-selector__presets, .heavy-selector__bottom {
  padding: 10px; }

.heavy-selector__presets {
  background: #655b59; }

.heavy-selector__bottom {
  text-align: right; }

.heavy-selector--expand {
  width: 100%; }

.heavy-selector--form {
  margin-bottom: 0;
  vertical-align: middle; }
  .heavy-selector--form label {
    text-align: left !important; }

.heavy-selector--limited-h .checkboxes {
  overflow-y: auto;
  max-height: 260px; }

.heavy-selector--nearleft .heavy-selector__choices:after, .heavy-selector--nearleft .heavy-selector__choices:before {
  left: 10%; }

.heavy-selector--header {
  height: 100%;
  border-left: 1px solid #EFEFEF;
  color: #655b59;
  font-weight: bold; }
  .heavy-selector--header li {
    font-weight: bold;
    width: 100%; }
    .heavy-selector--header li span {
      float: right;
      font-size: .8em;
      margin-top: 3px;
      font-weight: normal;
      font-style: italic; }
  .heavy-selector--header .heavy-selector__selected {
    border: 0;
    box-shadow: none;
    height: 100%;
    padding: 1.4rem;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 2.5rem;
    transition: background 0.5s; }
    .heavy-selector--header .heavy-selector__selected:after {
      color: #505050;
      right: 1.4rem;
      top: 1.5rem; }
    .heavy-selector--header .heavy-selector__selected img {
      vertical-align: middle;
      margin-right: 10px;
      margin-top: -2px;
      width: 20px;
      height: 20px; }
    .heavy-selector--header .heavy-selector__selected:hover {
      background: #f7f4f3; }
  .heavy-selector--header .heavy-selector__choices {
    top: 4.5rem; }

.heavy-selector__selected--dates {
  padding: 0.6rem; }

.heavy-selector--vennfilters .heavy-selector__choices {
  position: static; }

.heavy-selector--datepicker .heavy-selector__choices {
  border: 0;
  border-top-color: #655b59;
  box-shadow: 0px 5px 45px 0px rgba(179, 179, 179, 0.6); }
  .heavy-selector--datepicker .heavy-selector__choices:after {
    border-bottom-color: #655b59; }
  .heavy-selector--datepicker .heavy-selector__choices:before {
    border-bottom-color: #655b59; }

.alert-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
  background: #EBEBEB;
  margin: .5rem;
  padding: .5rem;
  text-align: center;
  font-size: .9rem;
  border: 0; }
  .alert-box:last-child {
    margin-right: 0; }

.alert-box--overview {
  margin: 0;
  border-bottom: 1px solid #ccc; }

.alert-box--error {
  color: #b94a48;
  background: #f2dede;
  border-color: #eed3d7; }

.alert-box--success {
  color: #468847;
  background: #dff0d8;
  border-color: #d6e9c6; }

.alert-box--warning {
  color: #c09853;
  background: #fcf8e3;
  border-color: #fbeed5; }

.alert-box--notice {
  color: #3a87ad;
  background: #d9edf7;
  border-color: #bce8f1; }

.checkboxes {
  margin-bottom: 0 !important; }

.checkboxes--inline {
  margin: 0;
  padding: 0; }
  .checkboxes--inline .checkboxes__cb {
    width: auto; }

.checkboxes__cb {
  font-size: 0.7rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  position: relative;
  margin-right: 20px;
  width: 100%; }
  .checkboxes__cb label {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer; }
    .checkboxes__cb label:before {
      content: "";
      display: inline-block;
      width: 12px;
      height: 12px;
      position: absolute;
      left: 0;
      bottom: 0;
      border: 1px solid #505050;
      border-radius: 3px;
      background: #ffffff; }
  .checkboxes__cb input[type=checkbox] {
    display: none;
    position: relative; }
    .checkboxes__cb input[type=checkbox]:checked + label:before {
      background: #505050; }
    .checkboxes__cb input[type=checkbox]:checked + label:after {
      color: white;
      font-family: "fontawesome";
      content: "\f00c";
      display: block;
      font-size: .6rem;
      width: 12px;
      height: 12px;
      left: 0;
      bottom: 1px;
      line-height: .9rem;
      position: absolute;
      margin: 0;
      text-align: center; }
  .checkboxes__cb.checkboxes__cb--buyer label:before {
    border-color: #f1c40f; }
  .checkboxes__cb.checkboxes__cb--buyer input[type=checkbox]:checked + label:before {
    background: #f1c40f; }
  .checkboxes__cb.checkboxes__cb--fb label:before {
    border-color: #0087ce; }
  .checkboxes__cb.checkboxes__cb--fb input[type=checkbox]:checked + label:before {
    background: #0087ce; }
  .checkboxes__cb.checkboxes__cb--ga label:before {
    border-color: #f07e1a; }
  .checkboxes__cb.checkboxes__cb--ga input[type=checkbox]:checked + label:before {
    background: #f07e1a; }
  .checkboxes__cb.checkboxes__cb--mc label:before, .checkboxes__cb.checkboxes__cb--ma label:before, .checkboxes__cb.checkboxes__cb--ml label:before {
    border-color: #2dcc70; }
  .checkboxes__cb.checkboxes__cb--mc input[type=checkbox]:checked + label:before, .checkboxes__cb.checkboxes__cb--ma input[type=checkbox]:checked + label:before, .checkboxes__cb.checkboxes__cb--ml input[type=checkbox]:checked + label:before {
    background: #2dcc70; }
  .checkboxes__cb.checkboxes__cb--ig label:before {
    border-color: #fdd01a; }
  .checkboxes__cb.checkboxes__cb--ig input[type=checkbox]:checked + label:before {
    background: #fdd01a; }
  .checkboxes__cb.checkboxes__cb--discret {
    opacity: .4; }

.checkboxes__cb--header {
  padding: .5rem .8rem !important;
  font-size: .8em;
  background: #f4f4f4;
  color: #AAA;
  border-bottom: 1px solid #CCC;
  width: 100% !important; }
  .checkboxes__cb--header label:before {
    border-color: #AAA; }
  .checkboxes__cb--header input[type=checkbox]:checked + label:before {
    background: #AAA; }

.tooltip--chart {
  position: static; }

.tooltip {
  position: absolute;
  border: 1px solid #B5B5B5;
  border-bottom-width: 2px;
  padding: 5px 10px;
  max-width: 220px;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.8);
  font-size: .7rem;
  z-index: 99999; }
  .tooltip .tooltip__title {
    color: #505050;
    font-weight: bold;
    margin-bottom: 2px; }
  .tooltip .tooltip__resume {
    list-style: none;
    line-height: 16px;
    font-size: 0.75em;
    padding: 0px;
    margin-bottom: 0; }

.tooltip--cta-pie {
  position: absolute;
  padding: 0;
  left: 50%;
  top: 48%;
  font-size: 0.6rem;
  width: 58px;
  transform: translateX(-50%) translateY(-50%);
  min-width: 0;
  border: 0;
  background: none;
  text-align: center; }

.tooltip--venn {
  opacity: 0;
  top: 0; }

.tooltip--topchart {
  max-width: 320px;
  min-width: 120px; }
  .tooltip--topchart .tooltip__title {
    display: block;
    font-weight: normal;
    white-space: nowrap; }
  .tooltip--topchart .tooltip__date {
    display: block;
    float: left;
    width: 50%;
    font-weight: bold; }
  .tooltip--topchart .tooltip__value {
    display: block;
    float: left;
    width: 50%;
    text-align: right;
    font-weight: bold;
    font-size: 1.2em; }

.info-circle {
  margin-left: .2rem;
  display: inline-block;
  cursor: help; }
  .info-circle:before {
    font-family: "fontawesome";
    content: "\f05a";
    font-size: 12px;
    font-weight: normal;
    color: #655b59; }

.ico-squaredown {
  margin-left: .2rem;
  display: inline-block;
  text-decoration: none; }
  .ico-squaredown:before {
    font-family: "fontawesome";
    content: "\f150";
    font-size: 14px;
    font-weight: normal;
    color: #655b59; }

.popup {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  padding: 100px;
  padding-top: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  height: auto;
  min-height: 100%;
  opacity: 0;
  transition: opacity .4s linear; }
  .popup header, .popup main {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .popup header::after, .popup main::after {
      clear: both;
      content: "";
      display: table; }

.popup--open {
  opacity: 1; }
  .popup--open .popup__wrapper {
    animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

.popup__wrapper {
  background: #f6f6f6;
  padding: 1rem;
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards; }

.popup__close-btn {
  color: #FFF;
  font-size: 1em;
  position: absolute;
  right: 35px;
  top: 25px;
  text-decoration: none;
  transition: transform .2s linear;
  cursor: pointer; }
  .popup__close-btn:before {
    font-family: "fontawesome";
    content: '\f00d';
    display: block;
    width: 100%;
    height: 100%; }
  .popup__close-btn:hover {
    transform: rotate(90deg) scale(1.5); }

.popup__main-title {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  padding: 10px;
  margin-bottom: 25px;
  margin-top: 0px;
  font-size: 1.2em;
  font-weight: 200;
  text-transform: none; }
  .popup__main-title:last-child {
    margin-right: 0; }

.popup__dates {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%; }
  .popup__dates:last-child {
    margin-right: 0; }

.popup__loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fcfcfc;
  text-align: center; }
  .popup__loader:after {
    content: " ";
    position: absolute;
    display: block;
    width: 55px;
    height: 60px;
    top: -100%;
    left: 50%;
    transform-origin: center;
    margin-left: -28px;
    margin-top: -30px;
    transition: top .5s ease-in;
    background-image: url("../images/logo-girafe.png");
    background-size: 100% 100%; }
  .popup__loader.animate:after {
    top: 50%; }
  .popup__loader.spinit:after {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-name: wobble; }

.popup__topchart {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  margin-bottom: 1rem; }

.popup__datas {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%; }
  .popup__datas:last-child {
    margin-right: 0; }

.popup__chart {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%; }
  .popup__chart:last-child {
    margin-right: 0; }

.popup__tile {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  padding: 20px; }

.popup__tile--engagement {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%; }
  .popup__tile--engagement:last-child {
    margin-right: 0; }

.popup__tile--reach {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  margin-right: 0; }
  .popup__tile--reach:last-child {
    margin-right: 0; }

.popup__aside {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%; }
  .popup__aside:last-child {
    margin-right: 0; }

.popup__timeline {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%; }
  .popup__timeline:last-child {
    margin-right: 0; }

.popup--message .popup__main-title:before {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-right: 1em; }

.popup--lead .popup__wrapper {
  padding-right: 3rem; }

.popup--lead .popup__main-title {
  display: none; }

.popup--actions-scenarios .overview__top {
  display: none; }

.fatalerror {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: auto;
  min-height: 100%;
  transition: opacity .4s;
  opacity: 0; }
  .fatalerror header, .fatalerror main {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .fatalerror header::after, .fatalerror main::after {
      clear: both;
      content: "";
      display: table; }

.fatalerror--show {
  opacity: 1; }
  .fatalerror--show .fatalerror__msg {
    transform: translate3d(0, 0, 0); }

.fatalerror__msg {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #e84c3d;
  height: 150px;
  color: white;
  padding: 25px 50px 0 50px;
  font-weight: 100;
  transition: transform .5s ease .3s;
  transform: translate3d(0, 100%, 0); }
  .fatalerror__msg a {
    color: white; }

.fatalerror__title {
  margin-bottom: 10px;
  font-weight: 400; }

.fatalerror__code {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  padding-top: 15px; }
  .fatalerror__code code {
    display: block;
    margin-top: 5px;
    font-size: 10px;
    font-family: monospace;
    opacity: .5; }

.fatalerror__text {
  font-style: italic;
  margin-bottom: 10px; }

@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(-1000px);
    opacity: 0; }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1; } }

@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1; }
  100% {
    transform: scale(0.8) translateY(-1000px);
    opacity: 0; } }

.simple-tile {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  position: relative;
  margin-bottom: 10px;
  background: #fbfbfb; }
  .simple-tile:last-child {
    margin-right: 0; }
  .simple-tile:nth-child(3n) {
    margin-right: 0; }
  .simple-tile:nth-child(3n+1) {
    clear: left; }

.simple-tile--action {
  min-height: 470px; }

.simple-tile--full {
  width: 100%; }

.simple-tile--selected .simple-tile__top {
  background: #824109; }

.simple-tile__top {
  background: #655b59;
  border-bottom: 1px solid #ececec; }
  .simple-tile__top h4 {
    text-transform: uppercase;
    position: relative;
    font-weight: normal;
    font-size: .8em;
    margin: 0;
    padding: .8rem;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: white; }
    .simple-tile__top h4:after, .simple-tile__top h4:before {
      transition: opacity .5s, visibility .5s;
      font-family: "fontawesome";
      position: absolute;
      right: .5rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      color: #B5B5B5; }
    .simple-tile__top h4:before {
      visibility: visible;
      opacity: 1; }

.simple-tile__dates {
  background: #EFEFEF;
  font-size: .8rem;
  padding: .4rem .8rem;
  vertical-align: top; }
  .simple-tile__dates i {
    font-size: .7em;
    vertical-align: top;
    margin-top: 2px; }

.simple-tile__content {
  padding: .4rem .8rem; }

.simple-tile__list {
  margin-bottom: 0px;
  font-size: .8rem;
  line-height: 1.2rem; }
  .simple-tile__list li {
    list-style-type: none;
    border-bottom: 1px solid #EFEFEF;
    padding: .3rem 0; }
    .simple-tile__list li .list-label {
      font-weight: bold; }
    .simple-tile__list li .list-value {
      float: right;
      margin-bottom: 0px; }
    .simple-tile__list li .list-value--important {
      font-weight: bold; }
    .simple-tile__list li .list-value--over {
      color: #e84c3d; }
    .simple-tile__list li:last-child {
      border-bottom: 0; }

.simple-tile__block-list {
  margin-bottom: 0px;
  font-size: .8rem;
  text-align: center; }
  .simple-tile__block-list li {
    width: 55px;
    display: inline-block;
    list-style-type: none;
    padding: .3rem;
    margin: 1px;
    background: #EFEFEF; }
    .simple-tile__block-list li .list-label {
      font-weight: bold; }
    .simple-tile__block-list li .list-value {
      float: right;
      margin-bottom: 0px; }
    .simple-tile__block-list li .list-value--over {
      color: #e84c3d; }
    .simple-tile__block-list li.list-item--dateval .list-label {
      font-size: .8em;
      display: block;
      font-weight: normal; }
    .simple-tile__block-list li.list-item--dateval .list-value {
      font-size: .8em;
      display: block;
      font-weight: bold;
      float: none; }

.simple-tile--clickable, .simple-tile--expendable {
  cursor: pointer; }
  .simple-tile--clickable:after, .simple-tile--expendable:after {
    transition: opacity 0.5s, visibility 0.5s;
    content: "";
    position: absolute;
    background: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden; }
  .simple-tile--clickable:hover .simple-tile__top h4:after, .simple-tile--expendable:hover .simple-tile__top h4:after {
    content: '\f18e';
    visibility: visible;
    opacity: 1; }
  .simple-tile--clickable:hover .simple-tile__top h4:before, .simple-tile--expendable:hover .simple-tile__top h4:before {
    visibility: hidden;
    opacity: 0; }
  .simple-tile--clickable:hover:after, .simple-tile--expendable:hover:after {
    opacity: .2;
    visibility: visible; }

.simple-tile--clickable:hover .simple-tile__top h4:after {
  content: '\f18e'; }

.simple-tile--expendable:hover .simple-tile__top h4:after {
  content: '\f055'; }

.simple-tile--report .simple-tile__top h4:before {
  content: '\f0f6'; }

.simple-tile--light .simple-tile__top {
  background: #807371; }
  .simple-tile--light .simple-tile__top h4 {
    text-transform: none; }

.number-tile {
  margin: 1rem; }
  .number-tile dt {
    color: #B5B5B5; }
  .number-tile dd {
    font-size: 2rem; }

.small-tile {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  padding: 0.6rem; }

.daterange-displayer {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  .daterange-displayer::after {
    clear: both;
    content: "";
    display: table; }
  .daterange-displayer:before {
    font-family: "fontawesome";
    content: '\f133';
    position: absolute;
    left: .5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #B5B5B5; }

.daterange-displayer__date {
  font-size: .7rem;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  position: relative; }
  .daterange-displayer__date:last-child {
    margin-right: 0; }

.daterange-displayer__date--from {
  margin-left: 17.05961%; }
  .daterange-displayer__date--from:after {
    font-family: "fontawesome";
    content: '\f105';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #B5B5B5; }

.daterange-displayer__day {
  line-height: .9em;
  font-size: 2.3em;
  float: left;
  font-weight: lighter;
  margin-right: .2rem; }

.daterange-displayer__month {
  display: block;
  font-weight: bold; }

.daterange-displayer__year {
  display: block; }

table.light-table {
  background: none;
  border: 0px solid;
  border-collapse: collapse;
  width: 100% !important;
  font-size: .8rem; }
  table.light-table.dataTable {
    margin-top: 1rem;
    clear: both; }
  table.light-table .text-center {
    text-align: center; }
  table.light-table td, table.light-table th {
    transition: background .5s;
    border-collapse: collapse;
    border-bottom: 1px solid #ececec;
    padding: 12px 5px;
    line-height: 0.9em;
    color: #505050;
    background: transparent;
    text-align: left; }
    table.light-table td.light-table__cell--btns, table.light-table th.light-table__cell--btns {
      text-align: right; }
  table.light-table thead th {
    color: #505050;
    background: #f1f1f1;
    border-top: 1px solid #ececec;
    font-weight: bold; }
  table.light-table tfoot.sum {
    display: table-header-group; }
    table.light-table tfoot.sum th {
      color: #749E96;
      border-bottom: 1px solid #ececec;
      border-top: 1px solid #ececec;
      background: #fbfbfb; }
  table.light-table tbody th {
    font-weight: bold; }
  table.light-table tr.highlight th, table.light-table tr.highlight td {
    background: #fbdcc2; }
  table.light-table.light-table--zebra tr:nth-child(even) {
    background: #f5f2f0; }
  table.light-table tr.even, table.light-table tr.alt, table.light-table tr:nth-of-type(even) {
    background: none;
    border-top: 1px solid #505050; }
  table.light-table.light-table--clickable tbody tr:hover th, table.light-table.light-table--clickable tbody tr:hover td {
    background: #e84c3d;
    color: white;
    cursor: pointer; }

.light-table--dashboard-ranking {
  margin-bottom: 0; }

.light-table--geotop {
  margin: 1rem 0; }

.light-table--paidorganic thead tr:first-child th {
  background: #ececec; }

.light-table--paidorganic thead tr:first-child th:nth-child(2), .light-table--paidorganic thead tr:first-child th:nth-child(3), .light-table--paidorganic thead tr:first-child th:nth-child(4) {
  border-right: 1px solid #b9b9b9; }

.light-table--paidorganic thead tr:nth-child(2) th:nth-child(2), .light-table--paidorganic thead tr:nth-child(2) th:nth-child(6), .light-table--paidorganic thead tr:nth-child(2) th:nth-child(11) {
  border-right: 1px solid #b9b9b9; }

.light-table--paidorganic thead tr:nth-child(2) th {
  white-space: nowrap; }

.light-table--paidorganic td:nth-child(2), .light-table--paidorganic td:nth-child(6), .light-table--paidorganic td:nth-child(11) {
  border-right: 1px solid #b9b9b9; }

.light-table--paidorganic tfoot tr th {
  background: #ececec; }

.light-table--paidorganic tbody td {
  text-align: center; }
  .light-table--paidorganic tbody td:first-child, .light-table--paidorganic tbody td:nth-child(2) {
    text-align: left; }

.buyer-star {
  color: #f1c40f; }

.lead-star {
  color: #B5B5B5; }

/*
 * Table styles
 */
table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
     * Header and footer styles
     */
  /*
     * Body styles
     */ }
  table.dataTable thead th,
  table.dataTable tfoot th {
    font-weight: bold; }
  table.dataTable thead th,
  table.dataTable thead td {
    padding: 10px 18px;
    border-bottom: 1px solid #B5B5B5; }
    table.dataTable thead th:active,
    table.dataTable thead td:active {
      outline: none; }
  table.dataTable tfoot th,
  table.dataTable tfoot td {
    padding: 10px 18px 6px 18px;
    border-top: 1px solid #B5B5B5; }
  table.dataTable thead .sorting,
  table.dataTable thead .sorting_asc,
  table.dataTable thead .sorting_desc {
    cursor: pointer;
    *cursor: hand; }
  table.dataTable thead .sorting,
  table.dataTable thead .sorting_asc,
  table.dataTable thead .sorting_desc,
  table.dataTable thead .sorting_asc_disabled,
  table.dataTable thead .sorting_desc_disabled {
    position: relative; }
    table.dataTable thead .sorting:after,
    table.dataTable thead .sorting_asc:after,
    table.dataTable thead .sorting_desc:after,
    table.dataTable thead .sorting_asc_disabled:after,
    table.dataTable thead .sorting_desc_disabled:after {
      font-family: "fontawesome";
      position: absolute;
      right: .5rem; }
  table.dataTable thead .sorting:after {
    color: gray;
    content: '\f0dc'; }
  table.dataTable thead .sorting_asc:after {
    color: black;
    content: '\f0de'; }
  table.dataTable thead .sorting_desc:after {
    color: black;
    content: '\f0dd'; }
  table.dataTable thead .sorting_asc_disabled {
    color: gray; }
  table.dataTable thead .sorting_desc_disabled {
    color: gray; }
  table.dataTable tbody tr {
    background-color: #ffffff; }
    table.dataTable tbody tr.selected {
      background-color: #b0bed9; }
  table.dataTable tbody th,
  table.dataTable tbody td {
    padding: 8px 10px; }
  table.dataTable.row-border tbody th, table.dataTable.row-border tbody td,
  table.dataTable.display tbody th,
  table.dataTable.display tbody td {
    border-top: 1px solid #B5B5B5; }
  table.dataTable.row-border tbody tr:first-child th,
  table.dataTable.row-border tbody tr:first-child td,
  table.dataTable.display tbody tr:first-child th,
  table.dataTable.display tbody tr:first-child td {
    border-top: none; }
  table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
    border-top: 1px solid #B5B5B5;
    border-right: 1px solid #B5B5B5; }
  table.dataTable.cell-border tbody tr th:first-child,
  table.dataTable.cell-border tbody tr td:first-child {
    border-left: 1px solid #B5B5B5; }
  table.dataTable.cell-border tbody tr:first-child th,
  table.dataTable.cell-border tbody tr:first-child td {
    border-top: none; }
  table.dataTable.stripe tbody tr.odd,
  table.dataTable.display tbody tr.odd {
    background-color: #f9f9f9; }
    table.dataTable.stripe tbody tr.odd.selected,
    table.dataTable.display tbody tr.odd.selected {
      background-color: #acbad4; }
  table.dataTable.hover tbody tr:hover,
  table.dataTable.display tbody tr:hover {
    background-color: #f6f6f6; }
    table.dataTable.hover tbody tr:hover.selected,
    table.dataTable.display tbody tr:hover.selected {
      background-color: #aab7d1; }
  table.dataTable.order-column tbody tr > .sorting_1,
  table.dataTable.order-column tbody tr > .sorting_2,
  table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
  table.dataTable.display tbody tr > .sorting_2,
  table.dataTable.display tbody tr > .sorting_3 {
    background-color: #fafafa; }
  table.dataTable.order-column tbody tr.selected > .sorting_1,
  table.dataTable.order-column tbody tr.selected > .sorting_2,
  table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
  table.dataTable.display tbody tr.selected > .sorting_2,
  table.dataTable.display tbody tr.selected > .sorting_3 {
    background-color: #acbad5; }
  table.dataTable.display tbody tr.odd > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: #f1f1f1; }
  table.dataTable.display tbody tr.odd > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
    background-color: #f3f3f3; }
  table.dataTable.display tbody tr.odd > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
    background-color: whitesmoke; }
  table.dataTable.display tbody tr.odd.selected > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
    background-color: #a6b4cd; }
  table.dataTable.display tbody tr.odd.selected > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
    background-color: #a8b5cf; }
  table.dataTable.display tbody tr.odd.selected > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
    background-color: #a9b7d1; }
  table.dataTable.display tbody tr.even > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: #fafafa; }
  table.dataTable.display tbody tr.even > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
    background-color: #fcfcfc; }
  table.dataTable.display tbody tr.even > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
    background-color: #fefefe; }
  table.dataTable.display tbody tr.even.selected > .sorting_1,
  table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
    background-color: #acbad5; }
  table.dataTable.display tbody tr.even.selected > .sorting_2,
  table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
    background-color: #aebcd6; }
  table.dataTable.display tbody tr.even.selected > .sorting_3,
  table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
    background-color: #afbdd8; }
  table.dataTable.display tbody tr:hover > .sorting_1,
  table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
    background-color: #eaeaea; }
  table.dataTable.display tbody tr:hover > .sorting_2,
  table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
    background-color: #ececec; }
  table.dataTable.display tbody tr:hover > .sorting_3,
  table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
    background-color: #efefef; }
  table.dataTable.display tbody tr:hover.selected > .sorting_1,
  table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
    background-color: #a2aec7; }
  table.dataTable.display tbody tr:hover.selected > .sorting_2,
  table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
    background-color: #a3b0c9; }
  table.dataTable.display tbody tr:hover.selected > .sorting_3,
  table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
    background-color: #a5b2cb; }
  table.dataTable.no-footer {
    border-bottom: 1px solid #B5B5B5; }
  table.dataTable.nowrap th, table.dataTable.nowrap td {
    white-space: nowrap; }
  table.dataTable.compact thead th,
  table.dataTable.compact thead td {
    padding: 4px 17px 4px 4px; }
  table.dataTable.compact tfoot th,
  table.dataTable.compact tfoot td {
    padding: 4px; }
  table.dataTable.compact tbody th,
  table.dataTable.compact tbody td {
    padding: 4px; }
  table.dataTable th.dt-left,
  table.dataTable td.dt-left {
    text-align: left; }
  table.dataTable th.dt-center,
  table.dataTable td.dt-center,
  table.dataTable td.dataTables_empty {
    text-align: center; }
  table.dataTable th.dt-right,
  table.dataTable td.dt-right {
    text-align: right; }
  table.dataTable th.dt-justify,
  table.dataTable td.dt-justify {
    text-align: justify; }
  table.dataTable th.dt-nowrap,
  table.dataTable td.dt-nowrap {
    white-space: nowrap; }
  table.dataTable thead th.dt-head-left,
  table.dataTable thead td.dt-head-left,
  table.dataTable tfoot th.dt-head-left,
  table.dataTable tfoot td.dt-head-left {
    text-align: left; }
  table.dataTable thead th.dt-head-center,
  table.dataTable thead td.dt-head-center,
  table.dataTable tfoot th.dt-head-center,
  table.dataTable tfoot td.dt-head-center {
    text-align: center; }
  table.dataTable thead th.dt-head-right,
  table.dataTable thead td.dt-head-right,
  table.dataTable tfoot th.dt-head-right,
  table.dataTable tfoot td.dt-head-right {
    text-align: right; }
  table.dataTable thead th.dt-head-justify,
  table.dataTable thead td.dt-head-justify,
  table.dataTable tfoot th.dt-head-justify,
  table.dataTable tfoot td.dt-head-justify {
    text-align: justify; }
  table.dataTable thead th.dt-head-nowrap,
  table.dataTable thead td.dt-head-nowrap,
  table.dataTable tfoot th.dt-head-nowrap,
  table.dataTable tfoot td.dt-head-nowrap {
    white-space: nowrap; }
  table.dataTable tbody th.dt-body-left,
  table.dataTable tbody td.dt-body-left {
    text-align: left; }
  table.dataTable tbody th.dt-body-center,
  table.dataTable tbody td.dt-body-center {
    text-align: center; }
  table.dataTable tbody th.dt-body-right,
  table.dataTable tbody td.dt-body-right {
    text-align: right; }
  table.dataTable tbody th.dt-body-justify,
  table.dataTable tbody td.dt-body-justify {
    text-align: justify; }
  table.dataTable tbody th.dt-body-nowrap,
  table.dataTable tbody td.dt-body-nowrap {
    white-space: nowrap; }

table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box; }

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  font-size: .8rem;
  zoom: 1; }
  .dataTables_wrapper .dataTables_length {
    float: left; }
  .dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right; }
    .dataTables_wrapper .dataTables_filter input {
      margin-left: 0.5em; }
  .dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    padding-top: 0.755em; }
  .dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 0.25em; }
    .dataTables_wrapper .dataTables_paginate .paginate_button {
      box-sizing: border-box;
      display: inline-block;
      min-width: 1.5em;
      padding: 0.5em 1em;
      margin-left: 2px;
      text-align: center;
      text-decoration: none !important;
      cursor: pointer;
      *cursor: hand;
      color: #333333 !important;
      border: 1px solid transparent;
      border-radius: 2px; }
      .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
        color: #333333 !important;
        border: 1px solid #979797;
        background-color: white;
        /* Chrome,Safari4+ */
        /* Chrome10+,Safari5.1+ */
        /* FF3.6+ */
        /* IE10+ */
        /* Opera 11.10+ */
        background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
        /* W3C */ }
      .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
        cursor: default;
        color: #666 !important;
        border: 1px solid transparent;
        background: transparent;
        box-shadow: none; }
      .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: white !important;
        border: 1px solid #111111;
        background-color: #585858;
        /* Chrome,Safari4+ */
        /* Chrome10+,Safari5.1+ */
        /* FF3.6+ */
        /* IE10+ */
        /* Opera 11.10+ */
        background: linear-gradient(to bottom, #585858 0%, #111111 100%);
        /* W3C */ }
      .dataTables_wrapper .dataTables_paginate .paginate_button:active {
        outline: none;
        background-color: #2b2b2b;
        /* Chrome,Safari4+ */
        /* Chrome10+,Safari5.1+ */
        /* FF3.6+ */
        /* IE10+ */
        /* Opera 11.10+ */
        background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
        /* W3C */
        box-shadow: inset 0 0 3px #111; }
    .dataTables_wrapper .dataTables_paginate .ellipsis {
      padding: 0 1em; }
  .dataTables_wrapper .dataTables_processing {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    text-align: center;
    font-size: 1.2em;
    background-color: rgba(255, 255, 255, 0.7); }
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter,
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_processing,
  .dataTables_wrapper .dataTables_paginate {
    color: #333333;
    margin-bottom: 0.5rem; }
  .dataTables_wrapper .dataTables_scroll {
    clear: both; }
    .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
      *margin-top: -1px;
      -webkit-overflow-scrolling: touch; }
      .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th > div.dataTables_sizing,
      .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td > div.dataTables_sizing {
        height: 0;
        overflow: hidden;
        margin: 0 !important;
        padding: 0 !important; }
  .dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #B5B5B5; }
  .dataTables_wrapper.no-footer div.dataTables_scrollHead table,
  .dataTables_wrapper.no-footer div.dataTables_scrollBody table {
    border-bottom: none; }
  .dataTables_wrapper:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0; }

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center; }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em; } }

@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center; }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em; } }

.reach-chart:after {
  content: " ";
  display: block;
  clear: both; }

.reach-value {
  text-align: center;
  font-weight: bold; }

.reach-split__bars, .reach-split__titles, .reach-split__values {
  font-size: .8em; }
  .reach-split__bars span, .reach-split__titles span, .reach-split__values span {
    width: 50%;
    display: block;
    float: left; }

.reach-split__bars {
  margin-bottom: .2rem;
  background: #CCC; }
  .reach-split__bars:after {
    content: " ";
    clear: both;
    display: block; }
  .reach-split__bars span {
    height: 5px; }
    .reach-split__bars span.reach-organic {
      background: #91C0DD; }
    .reach-split__bars span.reach-paid {
      background: #F58A48; }

.reach-split__titles span.reach-organic, .reach-split__values span.reach-organic {
  text-align: left; }

.reach-split__titles span.reach-paid, .reach-split__values span.reach-paid {
  text-align: right; }

.fb-posts {
  font-weight: normal;
  width: 420px; }

.fb-posts__thumb {
  width: 70px;
  height: 70px;
  float: left;
  margin-right: 10px;
  border: 1px solid #ececec; }
  .fb-posts__thumb img {
    width: 100%;
    height: 100%; }

.fb-posts__date {
  font-style: italic;
  padding-top: 5px;
  margin-bottom: 10px;
  margin-left: 80px; }

.fb-posts__text {
  margin-bottom: 10px;
  margin-left: 80px;
  line-height: 1.2em; }

.fb-posts_reactions {
  margin-bottom: 10px;
  margin-left: 80px;
  line-height: 1.2em; }

.fb-posts_reactions--comments {
  margin-bottom: 3px; }

.fb-posts_reach {
  margin-left: 80px;
  line-height: 1.2em; }
  .fb-posts_reach .reach-chart {
    clear: both; }

.fb-reaction {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  margin-right: 5px;
  cursor: default;
  width: 45px; }
  .fb-reaction:before {
    background-image: url(../images/sprite-fb-reactions.png);
    content: " ";
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px; }

.fb-reaction--anger:before {
  background-position: 0 0; }

.fb-reaction--like:before {
  background-position: 0 88px; }

.fb-reaction--love:before {
  background-position: 0 76px; }

.fb-reaction--wow:before {
  background-position: 0 176px; }

.fb-reaction--sorry:before {
  background-position: 0 312px; }

.fb-reaction--haha:before {
  background-position: 0 224px; }

.fb-reaction--comment:before {
  background-position: 0 26px; }

.fb-reaction--share:before {
  background-position: 0 12px; }

.date-picker {
  width: 170px;
  height: 25px;
  padding: 0;
  border: 0;
  line-height: 25px;
  padding-left: 10px;
  font-size: 12px;
  font-family: Arial;
  font-weight: bold;
  cursor: pointer;
  color: #303030;
  position: relative;
  z-index: 2; }

.date-picker-wrapper {
  position: absolute;
  z-index: 1;
  padding: 5px 12px;
  font-size: 12px;
  line-height: 20px;
  color: #aaa;
  font-family: Arial;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  box-sizing: initial; }

.date-picker-wrapper.inline-wrapper {
  position: relative;
  box-shadow: none;
  display: inline-block; }

.date-picker-wrapper.single-date {
  width: auto;
  background-color: #fff; }

.date-picker-wrapper.single-date .month-wrapper {
  min-width: 190px; }

.date-picker-wrapper.no-shortcuts {
  padding-bottom: 12px; }

.date-picker-wrapper.no-topbar {
  padding-top: 12px; }

.date-picker-wrapper .footer {
  font-size: 11px;
  padding-top: 3px; }

.date-picker-wrapper b {
  color: #666;
  font-weight: 700; }

.date-picker-wrapper a {
  color: #6bb4d6;
  text-decoration: underline; }

.date-picker-wrapper .month-name {
  text-transform: uppercase; }

.date-picker-wrapper .month-wrapper {
  border-bottom: 1px solid #EFEFEF;
  background-color: #fff;
  padding: 5px;
  cursor: default;
  position: relative;
  min-width: 425px;
  _overflow: hidden; }

.date-picker-wrapper .month-wrapper table {
  width: 190px;
  float: left; }

.date-picker-wrapper .month-wrapper table.month2 {
  width: 190px;
  float: left; }

.date-picker-wrapper .month-wrapper table th,
.date-picker-wrapper .month-wrapper table td {
  vertical-align: middle;
  text-align: center;
  line-height: 14px;
  margin: 0px;
  padding: 0px; }

.date-picker-wrapper .month-wrapper table .day {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #ccc;
  cursor: default; }

.date-picker-wrapper .month-wrapper table div.day.lastMonth,
.date-picker-wrapper .month-wrapper table div.day.nextMonth {
  color: #999;
  cursor: default; }

.date-picker-wrapper .month-wrapper table .day.checked {
  background-color: #fad0ac; }

.date-picker-wrapper .month-wrapper table .week-name {
  height: 20px;
  line-height: 20px;
  font-weight: 100;
  text-transform: uppercase; }

.date-picker-wrapper .month-wrapper table .day.has-tooltip {
  cursor: help !important; }

.date-picker-wrapper .time label {
  white-space: nowrap; }

.date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  color: #333;
  cursor: pointer; }

.date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  background-color: #EFEFEF; }

.date-picker-wrapper .month-wrapper table .day.nextMonth,
.date-picker-wrapper .month-wrapper table .day.lastMonth {
  display: none; }

.date-picker-wrapper .month-wrapper table .day.real-today {
  background-color: #ffe684; }

.date-picker-wrapper .month-wrapper table .day.real-today.checked,
.date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  background-color: #ffe684; }

.date-picker-wrapper table .caption {
  height: 40px; }

.date-picker-wrapper table .caption .next,
.date-picker-wrapper table .caption .prev {
  padding: 0 5px;
  cursor: pointer; }

.date-picker-wrapper table .caption .next:hover,
.date-picker-wrapper table .caption .prev:hover {
  background-color: #ccc;
  color: white; }

.date-picker-wrapper .gap {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 100%;
  height: 185px !important;
  background-color: red;
  font-size: 0;
  line-height: 0;
  float: left;
  top: -5px;
  margin: 0 10px -10px;
  visibility: hidden;
  height: 0; }

.date-picker-wrapper .gap .gap-lines {
  height: 100%;
  overflow: hidden; }

.date-picker-wrapper .gap .gap-line {
  height: 15px;
  width: 15px;
  position: relative; }

.date-picker-wrapper .gap .gap-line .gap-1 {
  z-index: 1;
  height: 0;
  border-left: 8px solid white;
  border-top: 8px solid #eee;
  border-bottom: 8px solid #eee; }

.date-picker-wrapper .gap .gap-line .gap-2 {
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-top: 8px solid white; }

.date-picker-wrapper .gap .gap-line .gap-3 {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 2;
  height: 0;
  border-left: 8px solid transparent;
  border-bottom: 8px solid white; }

.date-picker-wrapper .gap .gap-top-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 1px;
  background-color: #eee;
  z-index: 3; }

.date-picker-wrapper .gap .gap-bottom-mask {
  width: 6px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 7px;
  background-color: #eee;
  z-index: 3; }

.date-picker-wrapper .selected-days {
  display: none; }

.date-picker-wrapper .drp_top-bar {
  line-height: 1.4;
  position: relative;
  padding: 10px 40px 10px 0; }

.date-picker-wrapper .drp_top-bar .error-top {
  display: none; }

.date-picker-wrapper .drp_top-bar .normal-top {
  display: none; }

.date-picker-wrapper .drp_top-bar .default-top {
  display: block; }

.date-picker-wrapper .drp_top-bar.error .default-top {
  display: none; }

.date-picker-wrapper .drp_top-bar.error .error-top {
  display: block;
  color: red; }

.date-picker-wrapper .drp_top-bar.normal .default-top {
  display: none; }

.date-picker-wrapper .drp_top-bar.normal .normal-top {
  display: block; }

.date-picker-wrapper .drp_top-bar .apply-btn {
  position: absolute;
  right: 0px;
  top: 6px;
  padding: 3px 5px;
  margin: 0;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  color: #d9eef7;
  border: solid 1px #0076a3;
  background: #0095cd;
  background: -moz-linear-gradient(top, #00adee, #0078a5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
  color: white;
  line-height: initial; }

.date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  cursor: pointer;
  color: #606060;
  border: solid 1px #b7b7b7;
  background: #fff;
  background: -moz-linear-gradient(top, #fff, #ededed);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); }

/*time styling*/
.date-picker-wrapper .time {
  position: relative; }

.date-picker-wrapper.single-month .time {
  display: none; }

.date-picker-wrapper .time input[type=range] {
  vertical-align: middle;
  width: 129px;
  padding: 0;
  margin: 0;
  height: 20px; }

.date-picker-wrapper .time1, .time2 {
  width: 180px;
  padding: 0 5px;
  text-align: center; }

.date-picker-wrapper .time1 {
  float: left; }

.date-picker-wrapper .time2 {
  float: right; }

.date-picker-wrapper .hour, .minute {
  text-align: right; }

.date-picker-wrapper .hide {
  display: none; }

.date-picker-wrapper .first-date-selected {
  background-color: #f38d35 !important;
  color: white !important; }

.date-picker-wrapper .last-date-selected {
  background-color: #f38d35 !important;
  color: white !important; }

.date-picker-wrapper .date-range-length-tip {
  position: absolute;
  margin-top: -4px;
  margin-left: -8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  display: none;
  background-color: yellow;
  padding: 0 6px;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); }

.date-picker-wrapper .date-range-length-tip:after {
  content: '';
  position: absolute;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid yellow;
  left: 50%;
  margin-left: -4px;
  bottom: -4px; }

.date-picker-wrapper.two-months.no-gap .month1 .next,
.date-picker-wrapper.two-months.no-gap .month2 .prev {
  display: none; }

.date-picker-wrapper .week-number {
  padding: 5px 0;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 1px;
  color: #999;
  cursor: pointer; }

.date-picker-wrapper .week-number.week-number-selected {
  color: #4499EE;
  font-weight: bold; }

.overlay-loader {
  position: absolute;
  z-index: 9;
  opacity: .7;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f4f3; }
  .overlay-loader:before {
    color: #B5B5B5;
    font-family: "fontawesome";
    content: "\f110";
    font-size: 2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    animation: fa-spin 1s infinite steps(8); }

.venn-area--left {
  position: relative; }
  .venn-area--left:after {
    content: " ";
    top: 0;
    right: -.8rem;
    bottom: 0;
    position: absolute;
    width: 1px;
    border-right: 1px dashed #B5B5B5; }

.venn-area__top, .venn-area__bottom {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem; }
  .venn-area__top::after, .venn-area__bottom::after {
    clear: both;
    content: "";
    display: table; }

.venn-area__dates {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%; }
  .venn-area__dates:last-child {
    margin-right: 0; }

.venn-area__filters {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%; }
  .venn-area__filters:last-child {
    margin-right: 0; }

.venn-area__type, .venn-area__db {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%; }
  .venn-area__type:last-child, .venn-area__db:last-child {
    margin-right: 0; }

.venn-area__chart-container {
  text-align: center; }

.venn-area__chart {
  margin: auto; }

.venn-area__bottom-right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  margin-left: 51.17883%;
  text-align: right; }
  .venn-area__bottom-right:last-child {
    margin-right: 0; }

.venn-area__export {
  display: block;
  clear: both; }

.venn-area__export--open .venn-area__export-content {
  display: block; }

.venn-area__export-btn {
  display: block;
  color: white;
  margin: auto;
  text-decoration: none;
  border-radius: 50%;
  text-align: center;
  padding: 1rem .5rem .5rem .5rem;
  font-size: .9rem;
  background: #86c2ea;
  width: 80px;
  height: 80px;
  text-transform: uppercase; }
  .venn-area__export-btn:before {
    font-family: "fontawesome";
    content: '\f14c';
    font-size: 1.4rem;
    display: block;
    margin: 0rem auto .5rem auto; }

.venn-area__export-content {
  display: none;
  margin-top: 1rem; }

.export-panel {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  max-width: none; }
  .export-panel::after {
    clear: both;
    content: "";
    display: table; }

.export-panel__includes, .export-panel__excludes {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%; }
  .export-panel__includes:last-child, .export-panel__excludes:last-child {
    margin-right: 0; }
  .export-panel__includes:nth-child(2n), .export-panel__excludes:nth-child(2n) {
    margin-right: 0; }
  .export-panel__includes:nth-child(2n+1), .export-panel__excludes:nth-child(2n+1) {
    clear: left; }

.export-panel__radios, .export-panel__input {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%; }
  .export-panel__radios:last-child, .export-panel__input:last-child {
    margin-right: 0; }
  .export-panel__radios:nth-child(2n), .export-panel__input:nth-child(2n) {
    margin-right: 0; }
  .export-panel__radios:nth-child(2n+1), .export-panel__input:nth-child(2n+1) {
    clear: left; }

.export-panel__input input {
  padding: 5px;
  width: 100%; }

.export-panel__btn {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  text-align: center;
  margin-top: 1rem; }
  .export-panel__btn:last-child {
    margin-right: 0; }

.export-panel--venn {
  position: relative;
  width: 500px;
  background: #fff;
  z-index: 999;
  border: 1px solid #B5B5B5;
  border-top-width: 3px; }
  .export-panel--venn:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    transform: translateX(-50%); }
  .export-panel--venn:before {
    border-color: rgba(245, 0, 0, 0);
    border-bottom-color: #B5B5B5;
    border-width: 11px; }

.user-rating {
  display: inline-block;
  background: #f1c40f;
  font-size: .8rem;
  font-weight: bold;
  color: white;
  padding: .4rem .8rem;
  border-radius: 1rem;
  margin-left: 1rem; }
  .user-rating:before {
    display: inline-block;
    font: normal normal normal 14px/1 "fontawesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    margin-right: .5rem; }

.timeline {
  list-style: none;
  position: relative;
  margin-left: 2rem; }
  .timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #EFEFEF;
    left: 0; }

.timeline--listen:before {
  left: 5rem; }

.timeline--listen .timeline__item {
  margin-left: 5rem; }

.timeline__item {
  position: relative;
  margin-bottom: 2rem; }

.timeline__label {
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  margin: 0 0 15px 4rem;
  padding: 10px 15px;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.4;
  position: relative; }
  .timeline__label:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: white;
    border-width: 10px;
    top: 10px; }
  .timeline__label h2 {
    font-size: 1em;
    color: #505050;
    margin: 0px;
    margin-bottom: 5px;
    text-transform: none; }
  .timeline__label p {
    margin: 0px;
    font-size: 1rem; }
    .timeline__label p span i.fa-star {
      color: #f1c40f; }

/* The icons */
.timeline__bullet {
  width: 14px;
  height: 14px;
  position: absolute;
  background: #B5B5B5;
  border-radius: 50%;
  border: 3px solid #EFEFEF;
  left: 19px;
  top: 15px;
  margin: 0 0 0 -25px; }

/* The date/time */
.timeline__time {
  display: inline;
  position: absolute;
  white-space: nowrap;
  font-size: .7rem;
  transform: translateX(-50%);
  top: 20px;
  left: 4px;
  padding: .3rem;
  background: #EFEFEF;
  color: #B5B5B5; }
  .timeline__time span {
    display: block;
    text-align: center; }

.timeline__author {
  position: absolute;
  left: -100px; }
  .timeline__author img {
    display: block;
    max-width: 48px;
    max-height: 48px;
    border: 1px solid #505050; }

.timeline__bullet--social {
  width: 28px;
  height: 28px;
  left: 12px;
  top: 10px; }
  .timeline__bullet--social:after {
    margin-left: 4px;
    margin-top: 3px; }
  .timeline__bullet--social .timeline__time {
    top: 30px;
    left: 10px; }

.timeline__bullet--tweet:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.timeline__bullet--flickr:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.timeline__bullet--facebook:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-left: 6px; }

.timeline__bullet--google-alert:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-left: 5px;
  margin-top: 4px; }

.timeline__bullet--instagram:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.timeline__bullet--wordpress:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-left: 3px; }

.timeline__bullet--youtube:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  margin-left: 3px; }

/*
@media screen and (max-width: 65.375em) {

	.cbp_tmtimeline > li .cbp_tmtime span:last-child {
		font-size: 1.5em;
	}
}

@media screen and (max-width: 47.2em) {
	.cbp_tmtimeline:before {
		display: none;
	}

	.cbp_tmtimeline > li .cbp_tmtime {
		width: 100%;
		position: relative;
		padding: 0 0 20px 0;
	}

	.cbp_tmtimeline > li .cbp_tmtime span {
		text-align: left;
	}

	.cbp_tmtimeline > li .cbp_tmlabel {
		margin: 0 0 30px 0;
		padding: 1em;
		font-weight: 400;
		font-size: 95%;
	}

	.cbp_tmtimeline > li .cbp_tmlabel:after {
		right: auto;
		left: 20px;
		border-right-color: transparent;
		border-bottom-color: #3594cb;
		top: -20px;
	}

	.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
		border-right-color: transparent;
		border-bottom-color: #6cbfee;
	}

	.cbp_tmtimeline > li .cbp_tmicon {
		position: relative;
		float: right;
		left: auto;
		margin: -55px 5px 0 0px;
	}	
}
*/
.data-list li {
  margin-bottom: .5rem;
  line-height: 1.1rem; }

.data-list label {
  display: block;
  font-style: italic;
  font-size: .8rem;
  color: #B5B5B5; }

.simple-list {
  margin-bottom: 0px;
  font-size: .8rem;
  line-height: 1.2rem; }
  .simple-list li {
    list-style-type: none; }
    .simple-list li.list-total {
      border-bottom: 1px solid #B5B5B5; }
    .simple-list li.list-spaced {
      margin-bottom: 25px; }
    .simple-list li .list-label {
      font-weight: bold; }
    .simple-list li .list-value {
      float: right;
      margin-bottom: 0px; }
    .simple-list li .list-value--over {
      color: #e84c3d; }

.messages {
  font-size: .8em; }

.messages__item {
  border-bottom: 1px solid #B5B5B5;
  background: #EFEFEF;
  cursor: pointer;
  transition: background 0.8s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .messages__item::after {
    clear: both;
    content: "";
    display: table; }
  .messages__item:hover {
    background: #fbdcc2; }
  .messages__item:first-child {
    border-top: 1px solid #B5B5B5; }

.messages__item--unread {
  background: white; }

.messages__item--opened {
  background: white; }
  .messages__item--opened:hover {
    background: white; }

.messages__user, .messages__preview, .messages__date {
  display: block;
  float: left; }

.messages__user {
  width: 20%; }

.messages__preview {
  width: 70%;
  margin-top: .1em; }

.messages__date {
  width: 10%;
  padding: 1em;
  text-align: center;
  color: #B5B5B5;
  font-size: .8em; }

.message-preview {
  padding: 1em; }

.message-preview--unread .message-preview__subject {
  font-weight: bold;
  position: relative;
  margin-bottom: 5px; }
  .message-preview--unread .message-preview__subject:before {
    content: '';
    position: absolute;
    top: 1px;
    left: -20px;
    background: #f1543a;
    width: 12px;
    height: 12px;
    border-radius: 50%; }

.message-preview--inbox {
  padding-right: 10em; }

.message-preview--opened .message-preview__txt-preview {
  display: none; }

.message-preview--opened .message-preview__txt {
  display: block; }

.message-preview--opened .message-preview__subject:before {
  content: '';
  position: absolute;
  top: 1px;
  left: -20px;
  background: #B5B5B5;
  width: 12px;
  height: 12px;
  border-radius: 50%; }

.message-preview--opened .message-preview__subject:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.message-preview__subject, .message-preview__txt-preview, .message-preview__txt {
  margin-left: 20px; }

.message-preview__subject {
  font-weight: bold;
  position: relative;
  margin-bottom: 5px; }
  .message-preview__subject:after {
    display: inline-block;
    font: normal normal normal 14px/1 "fontawesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    color: #f1543a;
    margin-left: 1em; }

.message-preview__txt-preview {
  color: #B5B5B5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 600px; }

.message-preview__txt {
  display: none;
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: text; }

.user {
  padding: 1em; }
  .user::after {
    clear: both;
    content: "";
    display: table; }

.user--important .user__avatar:after, .user--tech .user__avatar:after, .user--data .user__avatar:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "a";
  color: black;
  display: block;
  text-align: center;
  font-family: "adjust-font" !important;
  font-size: 40px;
  padding-top: 4px;
  margin-left: -3px; }

.user--important .user__avatar {
  background: #fbdfdd;
  border: 1px solid #ed766b; }
  .user--important .user__avatar:after {
    color: #e84c3d; }

.user--tech .user__avatar {
  background: #bbf0d2;
  border: 1px solid #53d98b; }
  .user--tech .user__avatar:after {
    color: #2dcc70; }

.user--data .user__avatar {
  background: #cbe5f6;
  border: 1px solid #5faee3; }
  .user--data .user__avatar:after {
    color: #3398dc; }

.user__avatar {
  background: #CCC;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  float: left;
  margin-right: 1em; }

.user__name, .user__caption {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.user__name {
  margin-top: 8px; }

.user__caption {
  margin-top: 3px;
  font-size: .8em;
  color: #B5B5B5; }

.section {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-bottom: 2rem;
  position: relative; }
  .section:last-child {
    margin-right: 0; }

.section__content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .section__content::after {
    clear: both;
    content: "";
    display: table; }

.section__content--2cols .section__col {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%; }
  .section__content--2cols .section__col:last-child {
    margin-right: 0; }
  .section__content--2cols .section__col:nth-child(2n) {
    margin-right: 0; }
  .section__content--2cols .section__col:nth-child(2n+1) {
    clear: left; }

.section__content--2cols .section__col--full {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%; }
  .section__content--2cols .section__col--full:last-child {
    margin-right: 0; }

.section__top {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .section__top::after {
    clear: both;
    content: "";
    display: table; }

.section__selector {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%; }
  .section__selector:last-child {
    margin-right: 0; }
  @media screen and (min-width: 751px) {
    .section__selector {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 31.76157%; }
      .section__selector:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 1025px) {
    .section__selector {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 14.70196%; }
      .section__selector:last-child {
        margin-right: 0; } }

@media screen and (min-width: 751px) {
  .section__selector--large {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    .section__selector--large:last-child {
      margin-right: 0; } }

@media screen and (min-width: 1025px) {
  .section__selector--large {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    .section__selector--large:last-child {
      margin-right: 0; } }

.section__selector--checkbox {
  padding-top: 12px;
  text-align: right; }

.section__selector--disabled {
  opacity: .5;
  pointer-events: none; }

.section__dates {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%; }
  .section__dates:last-child {
    margin-right: 0; }
  @media screen and (min-width: 751px) {
    .section__dates {
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 100%; }
      .section__dates:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 1025px) {
    .section__dates {
      margin-left: 51.17883%;
      float: left;
      display: block;
      margin-right: 2.35765%;
      width: 31.76157%; }
      .section__dates:last-child {
        margin-right: 0; } }

.overview {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-bottom: 2rem;
  position: relative; }
  .overview:last-child {
    margin-right: 0; }

.overview__content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2); }
  .overview__content::after {
    clear: both;
    content: "";
    display: table; }

.overview__content--4cols .overview__col {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%; }
  .overview__content--4cols .overview__col:last-child {
    margin-right: 0; }
  .overview__content--4cols .overview__col:nth-child(4n) {
    margin-right: 0; }
  .overview__content--4cols .overview__col:nth-child(4n+1) {
    clear: left; }

.overview__content--4cols .overview__col--full {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%; }
  .overview__content--4cols .overview__col--full:last-child {
    margin-right: 0; }

.overview__top {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .overview__top::after {
    clear: both;
    content: "";
    display: table; }

.overview__streams {
  /*
        @include span-columns(12);
        @include media($small) { @include span-columns(4); }
        @include media($medium) { @include span-columns(2); }
        */
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 14.70196%; }
  .overview__streams:last-child {
    margin-right: 0; }

.overview__services-selector {
  padding: 0.7rem;
  /*
        @include span-columns(12);
        @include media($small) { @include span-columns(8); @include omega();  }
        @include media($medium) { @include span-columns(6); }
        */
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%; }
  .overview__services-selector:last-child {
    margin-right: 0; }

.overview__dates {
  /*
        @include span-columns(12);
        @include media($small) { @include span-columns(12); }
        @include media($medium) { @include span-columns(4); }
        */
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%; }
  .overview__dates:last-child {
    margin-right: 0; }

.overview__dates--alone {
  margin-left: 68.23843%; }

.overview__left {
  padding-top: 1em;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 57.35098%; }
  .overview__left:last-child {
    margin-right: 0; }

.overview__map {
  margin-left: 1rem;
  margin-bottom: 1rem; }

.overview__right {
  padding-right: 1em;
  padding-left: 0;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%; }
  .overview__right:last-child {
    margin-right: 0; }

.overview__pie {
  float: left;
  width: 150px;
  margin-top: 1rem;
  margin-right: 1rem; }

.overview__pie-chart {
  position: relative;
  width: 150px;
  height: 150px; }

.overview__pie-chart-value {
  position: absolute;
  left: 50%;
  top: 48%;
  font-size: 1.2rem;
  width: 80px;
  transform: translateX(-50%) translateY(-50%);
  min-width: 0;
  border: 0;
  background: none;
  text-align: center;
  cursor: pointer; }
  .overview__pie-chart-value span {
    display: block;
    text-align: center;
    font-size: 0.6rem; }

.overview__numbers {
  margin-top: 1rem; }
  .overview__numbers h4 {
    font-weight: lighter;
    margin-bottom: .4rem; }

.overview__pie-legend {
  float: left;
  margin-top: 2rem;
  width: calc(100% - 150px - 1rem); }

.overview__table {
  margin-top: 2rem; }

.pie-legend {
  list-style: none;
  font-size: 0.7rem;
  padding-left: 1rem;
  color: #505050; }

.pie-legend__title {
  margin-bottom: .3rem; }
  .pie-legend__title:before {
    content: ' ';
    background: gray;
    display: inline-block;
    height: 13px;
    width: 13px;
    margin-right: 5px;
    border-radius: 3px;
    vertical-align: middle;
    margin-top: -2px; }

.pie-legend__list {
  margin-left: 1.15rem;
  list-style: disc;
  margin-bottom: .5rem; }

.pie-legend__item {
  line-height: .7rem;
  padding: .2rem;
  position: relative;
  cursor: pointer;
  padding-right: 1rem;
  transition: background .5s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
  .pie-legend__item:hover, .pie-legend__item.pie-legend__item--active {
    background: #EFEFEF; }
    .pie-legend__item:hover:after, .pie-legend__item.pie-legend__item--active:after {
      opacity: 1; }

.pie-legend__item--inactive {
  opacity: .5; }

.pie-legend__item--clickable:after {
  font-family: "fontawesome";
  content: '\f067';
  position: absolute;
  top: 50%;
  right: .4rem;
  transform: translateY(-50%);
  font-size: .5rem;
  opacity: 0;
  transition: opacity .5s;
  color: #505050; }

.pie-legend__title--ga:before {
  background: #f07e1a; }

.pie-legend__title--fb:before {
  background: #0087ce; }

.pie-legend__title--mc:before {
  background: #2dcc70; }

.pie-legend__title--ma:before {
  background: #2dcc70; }

.pie-legend__title--ml:before {
  background: #2dcc70; }

.pie-legend__title--ig:before {
  background: #fdd01a; }

.overview-tile {
  position: relative; }
  .overview-tile .bar-container {
    width: 100%;
    height: 5px;
    transition: background .5s;
    background: #EFEFEF; }
    .overview-tile .bar-container span.bar {
      position: relative;
      height: 5px;
      width: 40%;
      margin: 6px 0;
      display: block;
      background: #B5B5B5; }
      .overview-tile .bar-container span.bar span {
        transition: opacity .5s;
        opacity: 0;
        position: absolute;
        width: 30px;
        height: 15px;
        text-align: center;
        color: #505050;
        top: -5px;
        right: -30px;
        font-size: .6em;
        z-index: 1; }

.overview-tile--fb span.bar {
  background: #0087ce !important; }

.overview-tile--ga span.bar {
  background: #f07e1a !important; }

.overview-tile--ig span.bar {
  background: #fdd01a !important; }

.overview-tile--ml span.bar, .overview-tile--ma span.bar, .overview-tile--mc span.bar {
  background: #2dcc70 !important; }

.overview-tile--gs span.bar {
  background: #f1543a !important; }

.overview-tile__top {
  position: relative; }
  .overview-tile__top h4 {
    color: #505050;
    font-weight: normal;
    font-size: .8em;
    margin: 0;
    padding: 7px 10px 5px 0px;
    line-height: .9em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .overview-tile__top .progression, .overview-tile__top .date {
    position: absolute;
    right: 0;
    bottom: 0; }

.overview-tile__total {
  transition: color .5s;
  font-weight: lighter;
  color: #505050;
  font-size: 2.5rem; }
  .overview-tile__total small {
    color: #B5B5B5;
    font-size: .7rem;
    line-height: 1rem;
    display: block;
    text-align: right; }

.overview-tile__pct {
  font-size: .8em;
  color: #505050;
  margin-top: .3rem; }

.overview-tile__progress {
  margin-bottom: 1rem;
  margin-top: .6rem; }

.overview__tile--engagement, .overview__tile--reach {
  background: #f7f4f3;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  margin-bottom: 1rem; }
  .overview__tile--engagement::after, .overview__tile--reach::after {
    clear: both;
    content: "";
    display: table; }
  .overview__tile--engagement .overview-tile__content, .overview__tile--reach .overview-tile__content {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%; }
    .overview__tile--engagement .overview-tile__content:last-child, .overview__tile--reach .overview-tile__content:last-child {
      margin-right: 0; }
  .overview__tile--engagement .overview-tile__total, .overview__tile--reach .overview-tile__total {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
    text-align: right; }
    .overview__tile--engagement .overview-tile__total:last-child, .overview__tile--reach .overview-tile__total:last-child {
      margin-right: 0; }

.overview__tile--engagement .overview-tile__total {
  padding-top: .7rem; }

.overview__tile--reach .overview-tile__content {
  padding-top: .4rem; }

.progression {
  font-size: 1.1rem;
  font-weight: lighter;
  color: #505050;
  background: #EFEFEF;
  padding: .6rem; }
  .progression:after {
    font-size: 1em;
    font-family: "fontawesome";
    content: "\f062";
    font-weight: normal;
    margin-left: 5px;
    float: right; }

.progression--up:after {
  color: #2dcc70;
  content: "\f062"; }

.progression--down:after {
  color: #e84c3d;
  content: "\f063"; }

.progression--none {
  font-size: 0.7rem; }
  .progression--none:after {
    display: none; }

.reporting {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%; }
  .reporting:last-child {
    margin-right: 0; }

.report-tile {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  position: relative;
  margin-bottom: 10px;
  background: #fbfbfb;
  cursor: pointer; }
  .report-tile:last-child {
    margin-right: 0; }
  .report-tile:nth-child(4n) {
    margin-right: 0; }
  .report-tile:nth-child(4n+1) {
    clear: left; }
  .report-tile:hover .report-tile__top h4:before {
    visibility: visible;
    opacity: 1; }
  .report-tile:hover .report-tile__top h4:after {
    visibility: hidden;
    opacity: 0; }

.report-tile__top {
  background: #505050;
  border-bottom: 1px solid #ececec; }
  .report-tile__top h4 {
    position: relative;
    font-weight: normal;
    font-size: .8em;
    margin: 0;
    padding: 12px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: white; }
    .report-tile__top h4:after, .report-tile__top h4:before {
      transition: opacity .5s, visibility .5s;
      font-family: "fontawesome";
      position: absolute;
      right: .5rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.2rem;
      color: #B5B5B5; }
    .report-tile__top h4:after {
      content: '\f0f6'; }
    .report-tile__top h4:before {
      content: '\f18e';
      opacity: 0;
      visibility: hidden; }

.report-tile__dates {
  background: #EFEFEF;
  color: #505050;
  font-weight: bold;
  font-size: .8rem;
  padding: .3rem;
  vertical-align: top; }
  .report-tile__dates i {
    font-size: .7em;
    vertical-align: top;
    margin-top: 2px; }

.report-tile__content {
  padding: 10px; }

.report-tile__list {
  margin-bottom: 0px;
  font-size: .8rem;
  line-height: 1.2rem; }
  .report-tile__list li {
    list-style-type: none; }
    .report-tile__list li .list-label {
      font-weight: bold; }
    .report-tile__list li .list-value {
      float: right;
      margin-bottom: 0px; }
    .report-tile__list li .list-value--over {
      color: #e84c3d; }

.c3 .tick {
  fill: #B5B5B5; }

.c3 .c3-axis-x path, .c3 .c3-axis-x line {
  stroke: #B5B5B5; }

.c3 .c3-axis-y path, .c3 .c3-axis-y line {
  stroke: #B5B5B5; }

.c3 .c3-grid line {
  stroke: #B5B5B5; }

.c3--no-yaxis .c3-axis-y {
  visibility: hidden !important; }

.report-description {
  margin: 1rem;
  font-size: .8em;
  font-style: italic; }

.report-more-infos {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  background: #fff;
  padding: 25px 35px;
  margin-bottom: 25px;
  position: relative; }
  .report-more-infos:last-child {
    margin-right: 0; }
  .report-more-infos:before {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 18.5px 20px 18.5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -17px;
    left: 48%; }
  .report-more-infos h5 {
    margin-bottom: 20px;
    border-bottom: 1px solid #EFEFEF; }
  .report-more-infos table {
    min-width: 100%;
    border: 1px solid #EFEFEF; }
    .report-more-infos table thead tr th:first-child.large,
    .report-more-infos table tbody tr td:first-child.large {
      width: 40%; }

.scenario {
  padding: 1rem;
  margin-bottom: 2rem; }

.scenario__title {
  font-weight: bold;
  margin-bottom: 1rem; }

.scenario__description {
  font-style: italic;
  margin-bottom: 1rem; }

.scenario__steps {
  display: flex; }

.scenario__item {
  text-align: center;
  position: relative;
  order: 0;
  flex: 1 1 0;
  -ms-grid-row-align: auto;
  align-self: auto; }
  .scenario__item:after {
    font-family: "fontawesome";
    font-size: 2rem;
    color: #CCCCCC;
    content: "\f061";
    display: block;
    position: absolute;
    top: 30%;
    right: -10px;
    width: 30px;
    height: 30px; }
  .scenario__item:last-child:after {
    display: none; }

.scenario__item-graph {
  margin: 1rem auto;
  max-width: 165px; }

.scenario__item-total {
  margin: 1rem 0;
  text-align: center;
  font-weight: bold; }

.scenario__item-caption {
  margin: 1rem 0;
  text-align: center; }

.lead-modal {
  display: block; }
  .lead-modal::after {
    clear: both;
    content: "";
    display: table; }

.lead-modal__left {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%; }
  .lead-modal__left:last-child {
    margin-right: 0; }

.lead-modal__right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%; }
  .lead-modal__right:last-child {
    margin-right: 0; }

.lead-profile {
  padding: 1rem;
  margin-bottom: 2rem;
  background: white;
  box-shadow: 0px 1px 5px 0px rgba(179, 179, 179, 0.6);
  text-align: center; }

.lead-profile__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: .5rem; }

.lead-profile__email {
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1.5rem;
  font-size: .8rem; }

.lead-profile__stars .fa {
  color: #B5B5B5; }

.lead-profile__stars .fa--buyer {
  color: #f1c40f; }

.lead-profile__label {
  font-size: .7rem;
  font-weight: bold; }

.lead-profile__info {
  font-size: .7rem;
  margin-bottom: 5px; }
  .lead-profile__info li {
    margin-bottom: 3px; }

.buyer-box {
  position: relative;
  padding: 2rem;
  margin-left: 2rem;
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
  border-bottom: 1px solid #DFDFDF;
  background: #FFFFFF; }
  .buyer-box:before {
    display: inline-block;
    font: normal normal normal 14px/1 "fontawesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    z-index: 1;
    position: absolute;
    top: 15px;
    left: -20px;
    background: #f1c40f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 37px; }

.buyer-box--user, .buyer-box--infos, .buyer-box--optin, .buyer-box--optout {
  background: #EBEBEB;
  padding-top: 2rem; }
  .buyer-box--user:before, .buyer-box--infos:before, .buyer-box--optin:before, .buyer-box--optout:before {
    display: inline-block;
    font: normal normal normal 14px/1 "fontawesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    background: #e84c3d;
    line-height: 35px;
    top: 20px; }

.buyer-box--user {
  border-bottom: 1px solid #DFDFDF;
  margin-top: -1rem; }
  .buyer-box--user:before {
    content: "\f007"; }

.buyer-box--optin {
  border-bottom: 1px solid #DFDFDF; }
  .buyer-box--optin:before {
    content: "\f00c";
    background: #2dcc70; }

.buyer-box--optout {
  border-bottom: 1px solid #DFDFDF; }
  .buyer-box--optout:before {
    content: "\f00d";
    background: #f07e1a; }

.buyer-box--infos {
  border-bottom: 5px solid #DFDFDF; }
  .buyer-box--infos:after {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 0;
    height: 0;
    left: 12px;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #DFDFDF transparent transparent transparent;
    z-index: 1; }
  .buyer-box--infos:before {
    content: "\f0f6"; }

.buyer-box__title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 1rem; }

.buyer-box__date {
  color: #B5B5B5;
  font-style: italic;
  text-transform: uppercase;
  margin-top: 10px; }

.lead-timeline {
  position: relative; }
  .lead-timeline:before {
    content: "";
    position: absolute;
    top: -1rem;
    bottom: -1rem;
    left: calc(50% - 1px);
    width: 2px;
    background: rgba(179, 179, 179, 0.3); }

.lead-timeline__item {
  position: relative;
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 50px; }
  .lead-timeline__item:not(:first-child) {
    margin-top: -70px; }
  .lead-timeline__item:after {
    position: absolute;
    content: "";
    top: 15px;
    width: 10px;
    height: 10px;
    background: #e84c3d;
    border-radius: 50%;
    transition: background .8s; }
  .lead-timeline__item:before {
    position: absolute;
    content: "";
    top: 10px;
    width: 0;
    height: 0;
    border-style: solid; }
  .lead-timeline__item:nth-child(even) {
    margin-right: calc(50% + 30px); }
    .lead-timeline__item:nth-child(even):after {
      right: -30px;
      transform: translateX(50%); }
    .lead-timeline__item:nth-child(even):before {
      right: -10px;
      border-width: 10px 0 10px 10px;
      border-color: transparent transparent transparent #e84c3d;
      transition: border-color .8s; }
  .lead-timeline__item:nth-child(odd) {
    margin-left: calc(50% + 30px); }
    .lead-timeline__item:nth-child(odd):after {
      left: -30px;
      transform: translateX(-50%); }
    .lead-timeline__item:nth-child(odd):before {
      left: -10px;
      border-width: 10px 10px 10px 0;
      border-color: transparent #e84c3d transparent transparent;
      transition: border-color .8s; }
  .lead-timeline__item p.text {
    margin: 1rem; }
  .lead-timeline__item p.date {
    margin: 1rem;
    margin-bottom: 0;
    font-style: italic;
    color: #B5B5B5;
    font-size: 12px; }

.lead-timeline__event-text {
  color: #828282;
  font-size: 12px; }

.lead-timeline__item--buyer:after {
  background: #f1c40f; }

.lead-timeline__item--buyer:nth-child(even):before {
  border-color: transparent transparent transparent #f1c40f; }

.lead-timeline__item--buyer:nth-child(odd):before {
  border-color: transparent #f1c40f transparent transparent; }

.lead-timeline__item--buyer .lead-timeline__title {
  background: #f1c40f; }

.lead-timeline__item--buyer .lead-timeline__hours {
  display: none; }

.lead-timeline__item--buyer.lead-timeline__item--highlight:after {
  background: #ad6e06; }

.lead-timeline__item--buyer.lead-timeline__item--highlight:nth-child(even):before {
  border-color: transparent transparent transparent #ad6e06; }

.lead-timeline__item--buyer.lead-timeline__item--highlight:nth-child(odd):before {
  border-color: transparent #ad6e06 transparent transparent; }

.lead-timeline__item--buyer.lead-timeline__item--highlight .lead-timeline__title {
  background: #ad6e06; }

.lead-timeline__title {
  position: relative;
  padding: .5rem;
  background: #e84c3d;
  transition: background .8s;
  color: white;
  padding-right: 3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: .7rem; }

.lead-timeline__title-num {
  line-height: .9em;
  font-size: 2.3em;
  float: left;
  font-weight: lighter;
  margin-right: .5rem; }

.lead-timeline__title-action, .lead-timeline__title-product {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis; }

.lead-timeline__title-action {
  font-weight: bold; }

.lead-timeline__title-icon {
  position: absolute;
  top: .5rem;
  right: .5rem;
  width: 23px;
  height: 23px;
  font-size: 21px; }

.lead-timeline__title-icon--website_visit:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--website_return:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--website_form_fill:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--engaged_action:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--bought_product:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--email_click:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--email_sent:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--email_open:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__title-icon--email_unsubsc:after {
  display: inline-block;
  font: normal normal normal 14px/1 "fontawesome";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: ""; }

.lead-timeline__item--highlight:after {
  background: #861409; }

.lead-timeline__item--highlight:nth-child(even):before {
  border-color: transparent transparent transparent #861409; }

.lead-timeline__item--highlight:nth-child(odd):before {
  border-color: transparent #861409 transparent transparent; }

.lead-timeline__item--highlight .lead-timeline__title {
  background: #861409; }

.simple-box {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 10rem; }

.simple-box--scrollable {
  height: 500px;
  overflow-y: scroll; }

.simple-box__title {
  margin-bottom: 1rem; }

.simple-box__title-btns {
  float: right; }

.toolbar__item {
  display: inline-block;
  border-top: 1px solid rgba(161, 147, 143, 0.3);
  border-bottom: 1px solid rgba(161, 147, 143, 0.3);
  border-right: 1px solid rgba(161, 147, 143, 0.2); }
  .toolbar__item:first-child {
    border-left: 1px solid rgba(161, 147, 143, 0.3); }
  .toolbar__item:last-child {
    margin-right: 0;
    border-right: 1px solid rgba(161, 147, 143, 0.3); }

.toolbar__btn {
  display: block;
  padding: .6rem .8rem;
  font-size: .6rem;
  font-weight: 500;
  color: #a1938f;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08rem;
  line-height: 1;
  background: rgba(161, 147, 143, 0.1);
  transition: background .4s, color .4s; }
  .toolbar__btn:hover {
    background: rgba(161, 147, 143, 0.3); }

.field-alone {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  background-color: #FFF;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  display: block;
  font-family: inherit;
  font-size: .875rem;
  height: 2.3125rem;
  margin: 0 0 1rem;
  padding: .5rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s linear,background .15s linear; }
  .field-alone:focus {
    background: #fafafa;
    border-color: #999;
    outline: 0; }

.simple-datepicker {
  position: relative;
  display: inline-block;
  color: #505050;
  background: white;
  box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2); }
  .simple-datepicker:after {
    content: '\f0d7';
    font-family: "fontawesome";
    font-size: 12px;
    position: absolute;
    right: 0.7rem;
    top: 1rem;
    color: #f1543a; }

.simple-datepicker__field {
  color: #505050;
  outline: none;
  border: 0;
  padding: .7rem;
  font-size: 1rem;
  cursor: pointer; }

/*!
Pure v0.6.2
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
/*csslint box-model:false*/
/*
Box-model set to false because we're setting a height on select elements, which
also have border and padding. This is done because some browsers don't render
the padding. We explicitly set the box-model for select elements to border-box,
so we can ignore the csslint warning.
*/
.pure-form input[type="text"],
.pure-form input[type="password"],
.pure-form input[type="email"],
.pure-form input[type="url"],
.pure-form input[type="date"],
.pure-form input[type="month"],
.pure-form input[type="time"],
.pure-form input[type="datetime"],
.pure-form input[type="datetime-local"],
.pure-form input[type="week"],
.pure-form input[type="number"],
.pure-form input[type="search"],
.pure-form input[type="tel"],
.pure-form input[type="color"],
.pure-form select,
.pure-form textarea {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 0;
  font-size: 1rem;
  vertical-align: middle;
  box-sizing: border-box; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]) {
  padding: 0.5em 0.6em;
  display: inline-block;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 0;
  box-sizing: border-box; }

/* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
/* May be able to remove this tweak as color inputs become more standardized across browsers. */
.pure-form input[type="color"] {
  padding: 0.2em 0.5em; }

.pure-form input[type="text"]:focus,
.pure-form input[type="password"]:focus,
.pure-form input[type="email"]:focus,
.pure-form input[type="url"]:focus,
.pure-form input[type="date"]:focus,
.pure-form input[type="month"]:focus,
.pure-form input[type="time"]:focus,
.pure-form input[type="datetime"]:focus,
.pure-form input[type="datetime-local"]:focus,
.pure-form input[type="week"]:focus,
.pure-form input[type="number"]:focus,
.pure-form input[type="search"]:focus,
.pure-form input[type="tel"]:focus,
.pure-form input[type="color"]:focus,
.pure-form select:focus,
.pure-form textarea:focus {
  outline: 0;
  border-color: #749E96; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type]):focus {
  outline: 0;
  border-color: #749E96; }

.pure-form input[type="file"]:focus,
.pure-form input[type="radio"]:focus,
.pure-form input[type="checkbox"]:focus {
  outline: thin solid #749E96;
  outline: 1px auto #749E96; }

.pure-form .pure-checkbox,
.pure-form .pure-radio {
  margin: 0.5em 0;
  display: block; }

.pure-form input[type="text"][disabled],
.pure-form input[type="password"][disabled],
.pure-form input[type="email"][disabled],
.pure-form input[type="url"][disabled],
.pure-form input[type="date"][disabled],
.pure-form input[type="month"][disabled],
.pure-form input[type="time"][disabled],
.pure-form input[type="datetime"][disabled],
.pure-form input[type="datetime-local"][disabled],
.pure-form input[type="week"][disabled],
.pure-form input[type="number"][disabled],
.pure-form input[type="search"][disabled],
.pure-form input[type="tel"][disabled],
.pure-form input[type="color"][disabled],
.pure-form select[disabled],
.pure-form textarea[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form input:not([type])[disabled] {
  cursor: not-allowed;
  background-color: #eaeded;
  color: #cad2d3; }

.pure-form input[readonly],
.pure-form select[readonly],
.pure-form textarea[readonly] {
  background-color: #eee;
  /* menu hover bg color */
  color: #777;
  /* menu text color */
  border-color: #ccc; }

.pure-form input:focus:invalid,
.pure-form textarea:focus:invalid,
.pure-form select:focus:invalid {
  color: #b94a48;
  border-color: #e9322d; }

.pure-form input[type="file"]:focus:invalid:focus,
.pure-form input[type="radio"]:focus:invalid:focus,
.pure-form input[type="checkbox"]:focus:invalid:focus {
  outline-color: #e9322d; }

.pure-form select {
  /* Normalizes the height; padding is not sufficient. */
  height: 2.25em;
  border: 1px solid #ccc;
  background-color: white;
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

.pure-form select[multiple] {
  height: auto; }

.pure-form label {
  margin: 0.5em 0 0.2em; }

.pure-form fieldset {
  margin: 0;
  padding: 0.35em 0 0.75em;
  border: 0; }

.pure-form legend {
  display: block;
  width: 100%;
  padding: 0.3em 0;
  margin-bottom: 0.3em;
  color: #333;
  border-bottom: 1px solid #e5e5e5; }

.pure-form-stacked input[type="text"],
.pure-form-stacked input[type="password"],
.pure-form-stacked input[type="email"],
.pure-form-stacked input[type="url"],
.pure-form-stacked input[type="date"],
.pure-form-stacked input[type="month"],
.pure-form-stacked input[type="time"],
.pure-form-stacked input[type="datetime"],
.pure-form-stacked input[type="datetime-local"],
.pure-form-stacked input[type="week"],
.pure-form-stacked input[type="number"],
.pure-form-stacked input[type="search"],
.pure-form-stacked input[type="tel"],
.pure-form-stacked input[type="color"],
.pure-form-stacked input[type="file"],
.pure-form-stacked select,
.pure-form-stacked label,
.pure-form-stacked textarea {
  display: block;
  margin: 0.25em 0; }

/*
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
since IE8 won't execute CSS that contains a CSS3 selector.
*/
.pure-form-stacked input:not([type]) {
  display: block;
  margin: 0.25em 0; }

.pure-form-aligned input,
.pure-form-aligned textarea,
.pure-form-aligned select,
.pure-form-aligned .pure-help-inline,
.pure-form-message-inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle; }

.pure-form-aligned textarea {
  vertical-align: top; }

/* Aligned Forms */
.pure-form-aligned .pure-control-group {
  margin-bottom: 0.5em; }

.pure-form-aligned .pure-control-group label {
  text-align: right;
  display: inline-block;
  vertical-align: middle;
  width: 10em;
  margin: 0 1em 0 0; }

.pure-form-aligned .pure-controls {
  margin: 1.5em 0 0 11em; }

/* Rounded Inputs */
.pure-form input.pure-input-rounded,
.pure-form .pure-input-rounded {
  border-radius: 2em;
  padding: 0.5em 1em; }

/* Grouped Inputs */
.pure-form .pure-group fieldset {
  margin-bottom: 10px; }

.pure-form .pure-group input,
.pure-form .pure-group textarea {
  display: block;
  padding: 10px;
  margin: 0 0 -1px;
  border-radius: 0;
  position: relative;
  top: -1px; }

.pure-form .pure-group input:focus,
.pure-form .pure-group textarea:focus {
  z-index: 3; }

.pure-form .pure-group input:first-child,
.pure-form .pure-group textarea:first-child {
  top: 1px;
  border-radius: 4px 4px 0 0;
  margin: 0; }

.pure-form .pure-group input:first-child:last-child,
.pure-form .pure-group textarea:first-child:last-child {
  top: 1px;
  border-radius: 4px;
  margin: 0; }

.pure-form .pure-group input:last-child,
.pure-form .pure-group textarea:last-child {
  top: -2px;
  border-radius: 0 0 4px 4px;
  margin: 0; }

.pure-form .pure-group button {
  margin: 0.35em 0; }

.pure-form .pure-input-1 {
  width: 100%; }

.pure-form .pure-input-3-4 {
  width: 75%; }

.pure-form .pure-input-2-3 {
  width: 66%; }

.pure-form .pure-input-1-2 {
  width: 50%; }

.pure-form .pure-input-1-3 {
  width: 33%; }

.pure-form .pure-input-1-4 {
  width: 25%; }

/* Inline help for forms */
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
.pure-form .pure-help-inline,
.pure-form-message-inline {
  display: inline-block;
  padding-left: 0.3em;
  color: #666;
  vertical-align: middle;
  font-size: 0.875em; }

/* Block help for forms */
.pure-form-message {
  display: block;
  color: #666;
  font-size: 0.875em; }

@media only screen and (max-width: 480px) {
  .pure-form button[type="submit"] {
    margin: 0.7em 0 0; }
  .pure-form input:not([type]),
  .pure-form input[type="text"],
  .pure-form input[type="password"],
  .pure-form input[type="email"],
  .pure-form input[type="url"],
  .pure-form input[type="date"],
  .pure-form input[type="month"],
  .pure-form input[type="time"],
  .pure-form input[type="datetime"],
  .pure-form input[type="datetime-local"],
  .pure-form input[type="week"],
  .pure-form input[type="number"],
  .pure-form input[type="search"],
  .pure-form input[type="tel"],
  .pure-form input[type="color"],
  .pure-form label {
    margin-bottom: 0.3em;
    display: block; }
  .pure-group input:not([type]),
  .pure-group input[type="text"],
  .pure-group input[type="password"],
  .pure-group input[type="email"],
  .pure-group input[type="url"],
  .pure-group input[type="date"],
  .pure-group input[type="month"],
  .pure-group input[type="time"],
  .pure-group input[type="datetime"],
  .pure-group input[type="datetime-local"],
  .pure-group input[type="week"],
  .pure-group input[type="number"],
  .pure-group input[type="search"],
  .pure-group input[type="tel"],
  .pure-group input[type="color"] {
    margin-bottom: 0; }
  .pure-form-aligned .pure-control-group label {
    margin-bottom: 0.3em;
    text-align: left;
    display: block;
    width: 100%; }
  .pure-form-aligned .pure-controls {
    margin: 1.5em 0 0 0; }
  /* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
  .pure-form .pure-help-inline,
  .pure-form-message-inline,
  .pure-form-message {
    display: block;
    font-size: 0.75em;
    /* Increased bottom padding to make it group with its related input element. */
    padding: 0.2em 0 0.8em; } }

.bs {
  /*!
 * Bootstrap v4.0.0-beta.2 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */ }
  .bs :root {
    --blue: #3398dc;
    --indigo: #6610f2;
    --purple: #9b58b5;
    --pink: #EF488D;
    --red: #e84c3d;
    --orange: #f07e1a;
    --yellow: #f1c40f;
    --green: #2dcc70;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #868e96;
    --gray-dark: #343a40;
    --primary: #3398dc;
    --secondary: #868e96;
    --success: #2dcc70;
    --info: #17a2b8;
    --warning: #f1c40f;
    --danger: #e84c3d;
    --light: #f8f9fa;
    --dark: #343a40;
    --orange: #f07e1a;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: Roboto;
    --font-family-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  @media print {
    .bs *,
    .bs *::before,
    .bs *::after {
      text-shadow: none !important;
      box-shadow: none !important; }
    .bs a,
    .bs a:visited {
      text-decoration: underline; }
    .bs abbr[title]::after {
      content: " (" attr(title) ")"; }
    .bs pre {
      white-space: pre-wrap !important; }
    .bs pre,
    .bs blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    .bs thead {
      display: table-header-group; }
    .bs tr,
    .bs img {
      page-break-inside: avoid; }
    .bs p,
    .bs h2,
    .bs h3 {
      orphans: 3;
      widows: 3; }
    .bs h2,
    .bs h3 {
      page-break-after: avoid; }
    .bs .navbar {
      display: none; }
    .bs .badge {
      border: 1px solid #000; }
    .bs .table {
      border-collapse: collapse !important; }
      .bs .table td,
      .bs .table th {
        background-color: #fff !important; }
    .bs .table-bordered th,
    .bs .table-bordered td {
      border: 1px solid #ddd !important; } }
  .bs *,
  .bs *::before,
  .bs *::after {
    box-sizing: border-box; }
  .bs html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent; }

@-ms-viewport {
  width: device-width; }
  .bs article, .bs aside, .bs dialog, .bs figcaption, .bs figure, .bs footer, .bs header, .bs hgroup, .bs main, .bs nav, .bs section {
    display: block; }
  .bs {
    margin: 0;
    font-family: Roboto;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #505050;
    text-align: left; }
  .bs [tabindex="-1"]:focus {
    outline: none !important; }
  .bs hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible; }
  .bs h1, .bs h2, .bs h3, .bs h4, .bs h5, .bs h6 {
    margin-top: 0;
    margin-bottom: 0.5rem; }
  .bs p {
    margin-top: 0;
    margin-bottom: 1rem; }
  .bs abbr[title],
  .bs abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0; }
  .bs address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit; }
  .bs ol,
  .bs ul,
  .bs dl {
    margin-top: 0;
    margin-bottom: 1rem; }
  .bs ol ol,
  .bs ul ul,
  .bs ol ul,
  .bs ul ol {
    margin-bottom: 0; }
  .bs dt {
    font-weight: 700; }
  .bs dd {
    margin-bottom: .5rem;
    margin-left: 0; }
  .bs blockquote {
    margin: 0 0 1rem; }
  .bs dfn {
    font-style: italic; }
  .bs b,
  .bs strong {
    font-weight: bolder; }
  .bs small {
    font-size: 80%; }
  .bs sub,
  .bs sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline; }
  .bs sub {
    bottom: -.25em; }
  .bs sup {
    top: -.5em; }
  .bs a {
    color: #3398dc;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects; }
    .bs a:hover {
      color: #1c6fa6;
      text-decoration: underline; }
  .bs a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none; }
    .bs a:not([href]):not([tabindex]):focus, .bs a:not([href]):not([tabindex]):hover {
      color: inherit;
      text-decoration: none; }
    .bs a:not([href]):not([tabindex]):focus {
      outline: 0; }
  .bs pre,
  .bs code,
  .bs kbd,
  .bs samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  .bs pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar; }
  .bs figure {
    margin: 0 0 1rem; }
  .bs img {
    vertical-align: middle;
    border-style: none; }
  .bs svg:not(:root) {
    overflow: hidden; }
  .bs a,
  .bs area,
  .bs button,
  .bs [role="button"],
  .bs input:not([type="range"]),
  .bs label,
  .bs select,
  .bs summary,
  .bs textarea {
    touch-action: manipulation; }
  .bs table {
    border-collapse: collapse; }
  .bs caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #868e96;
    text-align: left;
    caption-side: bottom; }
  .bs th {
    text-align: inherit; }
  .bs label {
    display: inline-block;
    margin-bottom: .5rem; }
  .bs button {
    border-radius: 0; }
  .bs button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color; }
  .bs input,
  .bs button,
  .bs select,
  .bs optgroup,
  .bs textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  .bs button,
  .bs input {
    overflow: visible; }
  .bs button,
  .bs select {
    text-transform: none; }
  .bs button,
  .bs html [type="button"],
  .bs [type="reset"],
  .bs [type="submit"] {
    -webkit-appearance: button; }
  .bs button::-moz-focus-inner,
  .bs [type="button"]::-moz-focus-inner,
  .bs [type="reset"]::-moz-focus-inner,
  .bs [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none; }
  .bs input[type="radio"],
  .bs input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0; }
  .bs input[type="date"],
  .bs input[type="time"],
  .bs input[type="datetime-local"],
  .bs input[type="month"] {
    -webkit-appearance: listbox; }
  .bs textarea {
    overflow: auto;
    resize: vertical; }
  .bs fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0; }
  .bs legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal; }
  .bs progress {
    vertical-align: baseline; }
  .bs [type="number"]::-webkit-inner-spin-button,
  .bs [type="number"]::-webkit-outer-spin-button {
    height: auto; }
  .bs [type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none; }
  .bs [type="search"]::-webkit-search-cancel-button,
  .bs [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  .bs ::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button; }
  .bs output {
    display: inline-block; }
  .bs summary {
    display: list-item; }
  .bs template {
    display: none; }
  .bs [hidden] {
    display: none !important; }
  .bs h1, .bs h2, .bs h3, .bs h4, .bs h5, .bs h6,
  .bs .h1, .bs .h2, .bs .h3, .bs .h4, .bs .h5, .bs .h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit; }
  .bs h1, .bs .h1 {
    font-size: 2.5rem; }
  .bs h2, .bs .h2 {
    font-size: 2rem; }
  .bs h3, .bs .h3 {
    font-size: 1.75rem; }
  .bs h4, .bs .h4 {
    font-size: 1.5rem; }
  .bs h5, .bs .h5 {
    font-size: 1.25rem; }
  .bs h6, .bs .h6 {
    font-size: 1rem; }
  .bs .lead {
    font-size: 1.25rem;
    font-weight: 300; }
  .bs .display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2; }
  .bs .display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2; }
  .bs .display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2; }
  .bs .display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2; }
  .bs hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .bs small,
  .bs .small {
    font-size: 80%;
    font-weight: 400; }
  .bs mark,
  .bs .mark {
    padding: 0.2em;
    background-color: #fcf8e3; }
  .bs .list-unstyled {
    padding-left: 0;
    list-style: none; }
  .bs .list-inline {
    padding-left: 0;
    list-style: none; }
  .bs .list-inline-item {
    display: inline-block; }
    .bs .list-inline-item:not(:last-child) {
      margin-right: 5px; }
  .bs .initialism {
    font-size: 90%;
    text-transform: uppercase; }
  .bs .blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem; }
  .bs .blockquote-footer {
    display: block;
    font-size: 80%;
    color: #868e96; }
    .bs .blockquote-footer::before {
      content: "\2014 \00A0"; }
  .bs .img-fluid {
    max-width: 100%;
    height: auto; }
  .bs .img-thumbnail {
    padding: 0.25rem;
    background-color: #f7f4f3;
    border: 1px solid #ddd;
    border-radius: 0;
    transition: all 0.2s ease-in-out;
    max-width: 100%;
    height: auto; }
  .bs .figure {
    display: inline-block; }
  .bs .figure-img {
    margin-bottom: 0.5rem;
    line-height: 1; }
  .bs .figure-caption {
    font-size: 90%;
    color: #868e96; }
  .bs code,
  .bs kbd,
  .bs pre,
  .bs samp {
    font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  .bs code {
    padding: 0.2rem 0.4rem;
    font-size: 90%;
    color: #bd4147;
    background-color: #f8f9fa;
    border-radius: 0; }
    a > .bs code {
      padding: 0;
      color: inherit;
      background-color: inherit; }
  .bs kbd {
    padding: 0.2rem 0.4rem;
    font-size: 90%;
    color: #fff;
    background-color: #212529;
    border-radius: 0; }
    .bs kbd kbd {
      padding: 0;
      font-size: 100%;
      font-weight: 700; }
  .bs pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 90%;
    color: #212529; }
    .bs pre code {
      padding: 0;
      font-size: inherit;
      color: inherit;
      background-color: transparent;
      border-radius: 0; }
  .bs .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll; }
  .bs .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
    @media (min-width: 576px) {
      .bs .container {
        max-width: 540px; } }
    @media (min-width: 768px) {
      .bs .container {
        max-width: 720px; } }
    @media (min-width: 992px) {
      .bs .container {
        max-width: 960px; } }
    @media (min-width: 1200px) {
      .bs .container {
        max-width: 1140px; } }
  .bs .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
  .bs .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .bs .no-gutters {
    margin-right: 0;
    margin-left: 0; }
    .bs .no-gutters > .col,
    .bs .no-gutters > [class*="col-"] {
      padding-right: 0;
      padding-left: 0; }
  .bs .col-1, .bs .col-2, .bs .col-3, .bs .col-4, .bs .col-5, .bs .col-6, .bs .col-7, .bs .col-8, .bs .col-9, .bs .col-10, .bs .col-11, .bs .col-12, .bs .col, .bs .col-auto, .bs .col-sm-1, .bs .col-sm-2, .bs .col-sm-3, .bs .col-sm-4, .bs .col-sm-5, .bs .col-sm-6, .bs .col-sm-7, .bs .col-sm-8, .bs .col-sm-9, .bs .col-sm-10, .bs .col-sm-11, .bs .col-sm-12, .bs .col-sm, .bs .col-sm-auto, .bs .col-md-1, .bs .col-md-2, .bs .col-md-3, .bs .col-md-4, .bs .col-md-5, .bs .col-md-6, .bs .col-md-7, .bs .col-md-8, .bs .col-md-9, .bs .col-md-10, .bs .col-md-11, .bs .col-md-12, .bs .col-md, .bs .col-md-auto, .bs .col-lg-1, .bs .col-lg-2, .bs .col-lg-3, .bs .col-lg-4, .bs .col-lg-5, .bs .col-lg-6, .bs .col-lg-7, .bs .col-lg-8, .bs .col-lg-9, .bs .col-lg-10, .bs .col-lg-11, .bs .col-lg-12, .bs .col-lg, .bs .col-lg-auto, .bs .col-xl-1, .bs .col-xl-2, .bs .col-xl-3, .bs .col-xl-4, .bs .col-xl-5, .bs .col-xl-6, .bs .col-xl-7, .bs .col-xl-8, .bs .col-xl-9, .bs .col-xl-10, .bs .col-xl-11, .bs .col-xl-12, .bs .col-xl, .bs .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; }
  .bs .col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .bs .col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .bs .col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .bs .col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .bs .col-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .bs .col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .bs .col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .bs .col-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .bs .col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .bs .col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .bs .col-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .bs .col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .bs .col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .bs .col-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .bs .order-first {
    order: -1; }
  .bs .order-1 {
    order: 1; }
  .bs .order-2 {
    order: 2; }
  .bs .order-3 {
    order: 3; }
  .bs .order-4 {
    order: 4; }
  .bs .order-5 {
    order: 5; }
  .bs .order-6 {
    order: 6; }
  .bs .order-7 {
    order: 7; }
  .bs .order-8 {
    order: 8; }
  .bs .order-9 {
    order: 9; }
  .bs .order-10 {
    order: 10; }
  .bs .order-11 {
    order: 11; }
  .bs .order-12 {
    order: 12; }
  .bs .offset-1 {
    margin-left: 8.33333%; }
  .bs .offset-2 {
    margin-left: 16.66667%; }
  .bs .offset-3 {
    margin-left: 25%; }
  .bs .offset-4 {
    margin-left: 33.33333%; }
  .bs .offset-5 {
    margin-left: 41.66667%; }
  .bs .offset-6 {
    margin-left: 50%; }
  .bs .offset-7 {
    margin-left: 58.33333%; }
  .bs .offset-8 {
    margin-left: 66.66667%; }
  .bs .offset-9 {
    margin-left: 75%; }
  .bs .offset-10 {
    margin-left: 83.33333%; }
  .bs .offset-11 {
    margin-left: 91.66667%; }
  @media (min-width: 576px) {
    .bs .col-sm {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .bs .col-sm-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bs .col-sm-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .bs .col-sm-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .bs .col-sm-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .bs .col-sm-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .bs .col-sm-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .bs .col-sm-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .bs .col-sm-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .bs .col-sm-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .bs .col-sm-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .bs .col-sm-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .bs .col-sm-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .bs .col-sm-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .bs .order-sm-first {
      order: -1; }
    .bs .order-sm-1 {
      order: 1; }
    .bs .order-sm-2 {
      order: 2; }
    .bs .order-sm-3 {
      order: 3; }
    .bs .order-sm-4 {
      order: 4; }
    .bs .order-sm-5 {
      order: 5; }
    .bs .order-sm-6 {
      order: 6; }
    .bs .order-sm-7 {
      order: 7; }
    .bs .order-sm-8 {
      order: 8; }
    .bs .order-sm-9 {
      order: 9; }
    .bs .order-sm-10 {
      order: 10; }
    .bs .order-sm-11 {
      order: 11; }
    .bs .order-sm-12 {
      order: 12; }
    .bs .offset-sm-0 {
      margin-left: 0; }
    .bs .offset-sm-1 {
      margin-left: 8.33333%; }
    .bs .offset-sm-2 {
      margin-left: 16.66667%; }
    .bs .offset-sm-3 {
      margin-left: 25%; }
    .bs .offset-sm-4 {
      margin-left: 33.33333%; }
    .bs .offset-sm-5 {
      margin-left: 41.66667%; }
    .bs .offset-sm-6 {
      margin-left: 50%; }
    .bs .offset-sm-7 {
      margin-left: 58.33333%; }
    .bs .offset-sm-8 {
      margin-left: 66.66667%; }
    .bs .offset-sm-9 {
      margin-left: 75%; }
    .bs .offset-sm-10 {
      margin-left: 83.33333%; }
    .bs .offset-sm-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 768px) {
    .bs .col-md {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .bs .col-md-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bs .col-md-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .bs .col-md-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .bs .col-md-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .bs .col-md-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .bs .col-md-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .bs .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .bs .col-md-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .bs .col-md-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .bs .col-md-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .bs .col-md-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .bs .col-md-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .bs .col-md-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .bs .order-md-first {
      order: -1; }
    .bs .order-md-1 {
      order: 1; }
    .bs .order-md-2 {
      order: 2; }
    .bs .order-md-3 {
      order: 3; }
    .bs .order-md-4 {
      order: 4; }
    .bs .order-md-5 {
      order: 5; }
    .bs .order-md-6 {
      order: 6; }
    .bs .order-md-7 {
      order: 7; }
    .bs .order-md-8 {
      order: 8; }
    .bs .order-md-9 {
      order: 9; }
    .bs .order-md-10 {
      order: 10; }
    .bs .order-md-11 {
      order: 11; }
    .bs .order-md-12 {
      order: 12; }
    .bs .offset-md-0 {
      margin-left: 0; }
    .bs .offset-md-1 {
      margin-left: 8.33333%; }
    .bs .offset-md-2 {
      margin-left: 16.66667%; }
    .bs .offset-md-3 {
      margin-left: 25%; }
    .bs .offset-md-4 {
      margin-left: 33.33333%; }
    .bs .offset-md-5 {
      margin-left: 41.66667%; }
    .bs .offset-md-6 {
      margin-left: 50%; }
    .bs .offset-md-7 {
      margin-left: 58.33333%; }
    .bs .offset-md-8 {
      margin-left: 66.66667%; }
    .bs .offset-md-9 {
      margin-left: 75%; }
    .bs .offset-md-10 {
      margin-left: 83.33333%; }
    .bs .offset-md-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 992px) {
    .bs .col-lg {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .bs .col-lg-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bs .col-lg-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .bs .col-lg-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .bs .col-lg-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .bs .col-lg-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .bs .col-lg-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .bs .col-lg-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .bs .col-lg-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .bs .col-lg-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .bs .col-lg-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .bs .col-lg-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .bs .col-lg-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .bs .col-lg-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .bs .order-lg-first {
      order: -1; }
    .bs .order-lg-1 {
      order: 1; }
    .bs .order-lg-2 {
      order: 2; }
    .bs .order-lg-3 {
      order: 3; }
    .bs .order-lg-4 {
      order: 4; }
    .bs .order-lg-5 {
      order: 5; }
    .bs .order-lg-6 {
      order: 6; }
    .bs .order-lg-7 {
      order: 7; }
    .bs .order-lg-8 {
      order: 8; }
    .bs .order-lg-9 {
      order: 9; }
    .bs .order-lg-10 {
      order: 10; }
    .bs .order-lg-11 {
      order: 11; }
    .bs .order-lg-12 {
      order: 12; }
    .bs .offset-lg-0 {
      margin-left: 0; }
    .bs .offset-lg-1 {
      margin-left: 8.33333%; }
    .bs .offset-lg-2 {
      margin-left: 16.66667%; }
    .bs .offset-lg-3 {
      margin-left: 25%; }
    .bs .offset-lg-4 {
      margin-left: 33.33333%; }
    .bs .offset-lg-5 {
      margin-left: 41.66667%; }
    .bs .offset-lg-6 {
      margin-left: 50%; }
    .bs .offset-lg-7 {
      margin-left: 58.33333%; }
    .bs .offset-lg-8 {
      margin-left: 66.66667%; }
    .bs .offset-lg-9 {
      margin-left: 75%; }
    .bs .offset-lg-10 {
      margin-left: 83.33333%; }
    .bs .offset-lg-11 {
      margin-left: 91.66667%; } }
  @media (min-width: 1200px) {
    .bs .col-xl {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
    .bs .col-xl-auto {
      flex: 0 0 auto;
      width: auto;
      max-width: none; }
    .bs .col-xl-1 {
      flex: 0 0 8.33333%;
      max-width: 8.33333%; }
    .bs .col-xl-2 {
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
    .bs .col-xl-3 {
      flex: 0 0 25%;
      max-width: 25%; }
    .bs .col-xl-4 {
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
    .bs .col-xl-5 {
      flex: 0 0 41.66667%;
      max-width: 41.66667%; }
    .bs .col-xl-6 {
      flex: 0 0 50%;
      max-width: 50%; }
    .bs .col-xl-7 {
      flex: 0 0 58.33333%;
      max-width: 58.33333%; }
    .bs .col-xl-8 {
      flex: 0 0 66.66667%;
      max-width: 66.66667%; }
    .bs .col-xl-9 {
      flex: 0 0 75%;
      max-width: 75%; }
    .bs .col-xl-10 {
      flex: 0 0 83.33333%;
      max-width: 83.33333%; }
    .bs .col-xl-11 {
      flex: 0 0 91.66667%;
      max-width: 91.66667%; }
    .bs .col-xl-12 {
      flex: 0 0 100%;
      max-width: 100%; }
    .bs .order-xl-first {
      order: -1; }
    .bs .order-xl-1 {
      order: 1; }
    .bs .order-xl-2 {
      order: 2; }
    .bs .order-xl-3 {
      order: 3; }
    .bs .order-xl-4 {
      order: 4; }
    .bs .order-xl-5 {
      order: 5; }
    .bs .order-xl-6 {
      order: 6; }
    .bs .order-xl-7 {
      order: 7; }
    .bs .order-xl-8 {
      order: 8; }
    .bs .order-xl-9 {
      order: 9; }
    .bs .order-xl-10 {
      order: 10; }
    .bs .order-xl-11 {
      order: 11; }
    .bs .order-xl-12 {
      order: 12; }
    .bs .offset-xl-0 {
      margin-left: 0; }
    .bs .offset-xl-1 {
      margin-left: 8.33333%; }
    .bs .offset-xl-2 {
      margin-left: 16.66667%; }
    .bs .offset-xl-3 {
      margin-left: 25%; }
    .bs .offset-xl-4 {
      margin-left: 33.33333%; }
    .bs .offset-xl-5 {
      margin-left: 41.66667%; }
    .bs .offset-xl-6 {
      margin-left: 50%; }
    .bs .offset-xl-7 {
      margin-left: 58.33333%; }
    .bs .offset-xl-8 {
      margin-left: 66.66667%; }
    .bs .offset-xl-9 {
      margin-left: 75%; }
    .bs .offset-xl-10 {
      margin-left: 83.33333%; }
    .bs .offset-xl-11 {
      margin-left: 91.66667%; } }
  .bs .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent; }
    .bs .table th,
    .bs .table td {
      padding: 0.75rem;
      vertical-align: top;
      border-top: 1px solid #e9ecef; }
    .bs .table thead th {
      vertical-align: bottom;
      border-bottom: 2px solid #e9ecef; }
    .bs .table tbody + tbody {
      border-top: 2px solid #e9ecef; }
    .bs .table .table {
      background-color: #f7f4f3; }
  .bs .table-sm th,
  .bs .table-sm td {
    padding: 0.3rem; }
  .bs .table-bordered {
    border: 1px solid #e9ecef; }
    .bs .table-bordered th,
    .bs .table-bordered td {
      border: 1px solid #e9ecef; }
    .bs .table-bordered thead th,
    .bs .table-bordered thead td {
      border-bottom-width: 2px; }
  .bs .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05); }
  .bs .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075); }
  .bs .table-primary,
  .bs .table-primary > th,
  .bs .table-primary > td {
    background-color: #c6e2f5; }
  .bs .table-hover .table-primary:hover {
    background-color: #b0d7f1; }
    .bs .table-hover .table-primary:hover > td,
    .bs .table-hover .table-primary:hover > th {
      background-color: #b0d7f1; }
  .bs .table-secondary,
  .bs .table-secondary > th,
  .bs .table-secondary > td {
    background-color: #dddfe2; }
  .bs .table-hover .table-secondary:hover {
    background-color: #cfd2d6; }
    .bs .table-hover .table-secondary:hover > td,
    .bs .table-hover .table-secondary:hover > th {
      background-color: #cfd2d6; }
  .bs .table-success,
  .bs .table-success > th,
  .bs .table-success > td {
    background-color: #c4f1d7; }
  .bs .table-hover .table-success:hover {
    background-color: #afecc9; }
    .bs .table-hover .table-success:hover > td,
    .bs .table-hover .table-success:hover > th {
      background-color: #afecc9; }
  .bs .table-info,
  .bs .table-info > th,
  .bs .table-info > td {
    background-color: #bee5eb; }
  .bs .table-hover .table-info:hover {
    background-color: #abdde5; }
    .bs .table-hover .table-info:hover > td,
    .bs .table-hover .table-info:hover > th {
      background-color: #abdde5; }
  .bs .table-warning,
  .bs .table-warning > th,
  .bs .table-warning > td {
    background-color: #fbeebc; }
  .bs .table-hover .table-warning:hover {
    background-color: #fae8a4; }
    .bs .table-hover .table-warning:hover > td,
    .bs .table-hover .table-warning:hover > th {
      background-color: #fae8a4; }
  .bs .table-danger,
  .bs .table-danger > th,
  .bs .table-danger > td {
    background-color: #f9cdc9; }
  .bs .table-hover .table-danger:hover {
    background-color: #f6b8b2; }
    .bs .table-hover .table-danger:hover > td,
    .bs .table-hover .table-danger:hover > th {
      background-color: #f6b8b2; }
  .bs .table-light,
  .bs .table-light > th,
  .bs .table-light > td {
    background-color: #fdfdfe; }
  .bs .table-hover .table-light:hover {
    background-color: #ececf6; }
    .bs .table-hover .table-light:hover > td,
    .bs .table-hover .table-light:hover > th {
      background-color: #ececf6; }
  .bs .table-dark,
  .bs .table-dark > th,
  .bs .table-dark > td {
    background-color: #c6c8ca; }
  .bs .table-hover .table-dark:hover {
    background-color: #b9bbbe; }
    .bs .table-hover .table-dark:hover > td,
    .bs .table-hover .table-dark:hover > th {
      background-color: #b9bbbe; }
  .bs .table-orange,
  .bs .table-orange > th,
  .bs .table-orange > td {
    background-color: #fbdbbf; }
  .bs .table-hover .table-orange:hover {
    background-color: #facea7; }
    .bs .table-hover .table-orange:hover > td,
    .bs .table-hover .table-orange:hover > th {
      background-color: #facea7; }
  .bs .table-active,
  .bs .table-active > th,
  .bs .table-active > td {
    background-color: rgba(0, 0, 0, 0.075); }
  .bs .table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, 0.075); }
    .bs .table-hover .table-active:hover > td,
    .bs .table-hover .table-active:hover > th {
      background-color: rgba(0, 0, 0, 0.075); }
  .bs .table .thead-dark th {
    color: #f7f4f3;
    background-color: #212529;
    border-color: #32383e; }
  .bs .table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #e9ecef; }
  .bs .table-dark {
    color: #f7f4f3;
    background-color: #212529; }
    .bs .table-dark th,
    .bs .table-dark td,
    .bs .table-dark thead th {
      border-color: #32383e; }
    .bs .table-dark.table-bordered {
      border: 0; }
    .bs .table-dark.table-striped tbody tr:nth-of-type(odd) {
      background-color: rgba(255, 255, 255, 0.05); }
    .bs .table-dark.table-hover tbody tr:hover {
      background-color: rgba(255, 255, 255, 0.075); }
  @media (max-width: 575px) {
    .bs .table-responsive-sm {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar; }
      .bs .table-responsive-sm.table-bordered {
        border: 0; } }
  @media (max-width: 767px) {
    .bs .table-responsive-md {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar; }
      .bs .table-responsive-md.table-bordered {
        border: 0; } }
  @media (max-width: 991px) {
    .bs .table-responsive-lg {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar; }
      .bs .table-responsive-lg.table-bordered {
        border: 0; } }
  @media (max-width: 1199px) {
    .bs .table-responsive-xl {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      -ms-overflow-style: -ms-autohiding-scrollbar; }
      .bs .table-responsive-xl.table-bordered {
        border: 0; } }
  .bs .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
    .bs .table-responsive.table-bordered {
      border: 0; }
  .bs .form-control {
    display: block;
    width: 100%;
    padding: 0.8rem 0.75rem;
    font-size: 1rem;
    line-height: 1;
    color: #495057;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
    .bs .form-control::-ms-expand {
      background-color: transparent;
      border: 0; }
    .bs .form-control:focus {
      color: #495057;
      background-color: #fff;
      border-color: #a1938f;
      outline: none;
      box-shadow: 0 0 0 0.2rem rgba(51, 152, 220, 0.25); }
    .bs .form-control::-webkit-input-placeholder {
      color: #868e96;
      opacity: 1; }
    .bs .form-control:-ms-input-placeholder {
      color: #868e96;
      opacity: 1; }
    .bs .form-control::placeholder {
      color: #868e96;
      opacity: 1; }
    .bs .form-control:disabled, .bs .form-control[readonly] {
      background-color: #e9ecef;
      opacity: 1; }
  .bs select.form-control:not([size]):not([multiple]) {
    height: calc(2.6rem + 2px); }
  .bs select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff; }
  .bs .form-control-file,
  .bs .form-control-range {
    display: block; }
  .bs .col-form-label {
    padding-top: calc(0.8rem + 1px);
    padding-bottom: calc(0.8rem + 1px);
    margin-bottom: 0;
    line-height: 1; }
  .bs .col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5; }
  .bs .col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5; }
  .bs .col-form-legend {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0;
    font-size: 1rem; }
  .bs .form-control-plaintext {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    margin-bottom: 0;
    line-height: 1;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0; }
    .bs .form-control-plaintext.form-control-sm, .bs .input-group-sm > .form-control-plaintext.form-control, .bs .input-group-sm > .form-control-plaintext.input-group-addon, .bs .input-group-sm > .input-group-btn > .form-control-plaintext.btn, .bs .form-control-plaintext.form-control-lg, .bs .input-group-lg > .form-control-plaintext.form-control, .bs .input-group-lg > .form-control-plaintext.input-group-addon, .bs .input-group-lg > .input-group-btn > .form-control-plaintext.btn {
      padding-right: 0;
      padding-left: 0; }
  .bs .form-control-sm, .bs .input-group-sm > .form-control, .bs .input-group-sm > .input-group-addon, .bs .input-group-sm > .input-group-btn > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0; }
  .bs select.form-control-sm:not([size]):not([multiple]), .bs .input-group-sm > select.form-control:not([size]):not([multiple]), .bs .input-group-sm > select.input-group-addon:not([size]):not([multiple]), .bs .input-group-sm > .input-group-btn > select.btn:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px); }
  .bs .form-control-lg, .bs .input-group-lg > .form-control, .bs .input-group-lg > .input-group-addon, .bs .input-group-lg > .input-group-btn > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0; }
  .bs select.form-control-lg:not([size]):not([multiple]), .bs .input-group-lg > select.form-control:not([size]):not([multiple]), .bs .input-group-lg > select.input-group-addon:not([size]):not([multiple]), .bs .input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px); }
  .bs .form-group {
    margin-bottom: 1rem; }
  .bs .form-text {
    display: block;
    margin-top: 0.25rem; }
  .bs .form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px; }
    .bs .form-row > .col,
    .bs .form-row > [class*="col-"] {
      padding-right: 5px;
      padding-left: 5px; }
  .bs .form-check {
    position: relative;
    display: block;
    margin-bottom: 0.5rem; }
    .bs .form-check.disabled .form-check-label {
      color: #868e96; }
  .bs .form-check-label {
    padding-left: 1.25rem;
    margin-bottom: 0; }
  .bs .form-check-input {
    position: absolute;
    margin-top: 0.25rem;
    margin-left: -1.25rem; }
  .bs .form-check-inline {
    display: inline-block;
    margin-right: 0.75rem; }
    .bs .form-check-inline .form-check-label {
      vertical-align: middle; }
  .bs .valid-feedback {
    display: none;
    margin-top: .25rem;
    font-size: .875rem;
    color: #2dcc70; }
  .bs .valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    width: 250px;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(45, 204, 112, 0.8);
    border-radius: .2rem; }
  .was-validated .bs .form-control:valid, .bs .form-control.is-valid, .was-validated
  .bs .custom-select:valid,
  .bs .custom-select.is-valid {
    border-color: #2dcc70; }
    .was-validated .bs .form-control:valid:focus, .bs .form-control.is-valid:focus, .was-validated
    .bs .custom-select:valid:focus,
    .bs .custom-select.is-valid:focus {
      box-shadow: 0 0 0 0.2rem rgba(45, 204, 112, 0.25); }
    .was-validated .bs .form-control:valid ~ .valid-feedback,
    .was-validated .bs .form-control:valid ~ .valid-tooltip, .bs .form-control.is-valid ~ .valid-feedback,
    .bs .form-control.is-valid ~ .valid-tooltip, .was-validated
    .bs .custom-select:valid ~ .valid-feedback,
    .was-validated
    .bs .custom-select:valid ~ .valid-tooltip,
    .bs .custom-select.is-valid ~ .valid-feedback,
    .bs .custom-select.is-valid ~ .valid-tooltip {
      display: block; }
  .was-validated .bs .form-check-input:valid + .form-check-label, .bs .form-check-input.is-valid + .form-check-label {
    color: #2dcc70; }
  .was-validated .bs .custom-control-input:valid ~ .custom-control-indicator, .bs .custom-control-input.is-valid ~ .custom-control-indicator {
    background-color: rgba(45, 204, 112, 0.25); }
  .was-validated .bs .custom-control-input:valid ~ .custom-control-description, .bs .custom-control-input.is-valid ~ .custom-control-description {
    color: #2dcc70; }
  .was-validated .bs .custom-file-input:valid ~ .custom-file-control, .bs .custom-file-input.is-valid ~ .custom-file-control {
    border-color: #2dcc70; }
    .was-validated .bs .custom-file-input:valid ~ .custom-file-control::before, .bs .custom-file-input.is-valid ~ .custom-file-control::before {
      border-color: inherit; }
  .was-validated .bs .custom-file-input:valid:focus, .bs .custom-file-input.is-valid:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 204, 112, 0.25); }
  .bs .invalid-feedback {
    display: none;
    margin-top: .25rem;
    font-size: .875rem;
    color: #e84c3d; }
  .bs .invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    width: 250px;
    padding: .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1;
    color: #fff;
    background-color: rgba(232, 76, 61, 0.8);
    border-radius: .2rem; }
  .was-validated .bs .form-control:invalid, .bs .form-control.is-invalid, .was-validated
  .bs .custom-select:invalid,
  .bs .custom-select.is-invalid {
    border-color: #e84c3d; }
    .was-validated .bs .form-control:invalid:focus, .bs .form-control.is-invalid:focus, .was-validated
    .bs .custom-select:invalid:focus,
    .bs .custom-select.is-invalid:focus {
      box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.25); }
    .was-validated .bs .form-control:invalid ~ .invalid-feedback,
    .was-validated .bs .form-control:invalid ~ .invalid-tooltip, .bs .form-control.is-invalid ~ .invalid-feedback,
    .bs .form-control.is-invalid ~ .invalid-tooltip, .was-validated
    .bs .custom-select:invalid ~ .invalid-feedback,
    .was-validated
    .bs .custom-select:invalid ~ .invalid-tooltip,
    .bs .custom-select.is-invalid ~ .invalid-feedback,
    .bs .custom-select.is-invalid ~ .invalid-tooltip {
      display: block; }
  .was-validated .bs .form-check-input:invalid + .form-check-label, .bs .form-check-input.is-invalid + .form-check-label {
    color: #e84c3d; }
  .was-validated .bs .custom-control-input:invalid ~ .custom-control-indicator, .bs .custom-control-input.is-invalid ~ .custom-control-indicator {
    background-color: rgba(232, 76, 61, 0.25); }
  .was-validated .bs .custom-control-input:invalid ~ .custom-control-description, .bs .custom-control-input.is-invalid ~ .custom-control-description {
    color: #e84c3d; }
  .was-validated .bs .custom-file-input:invalid ~ .custom-file-control, .bs .custom-file-input.is-invalid ~ .custom-file-control {
    border-color: #e84c3d; }
    .was-validated .bs .custom-file-input:invalid ~ .custom-file-control::before, .bs .custom-file-input.is-invalid ~ .custom-file-control::before {
      border-color: inherit; }
  .was-validated .bs .custom-file-input:invalid:focus, .bs .custom-file-input.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.25); }
  .bs .form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center; }
    .bs .form-inline .form-check {
      width: 100%; }
    @media (min-width: 576px) {
      .bs .form-inline label {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0; }
      .bs .form-inline .form-group {
        display: flex;
        flex: 0 0 auto;
        flex-flow: row wrap;
        align-items: center;
        margin-bottom: 0; }
      .bs .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle; }
      .bs .form-inline .form-control-plaintext {
        display: inline-block; }
      .bs .form-inline .input-group {
        width: auto; }
      .bs .form-inline .form-check {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        margin-top: 0;
        margin-bottom: 0; }
      .bs .form-inline .form-check-label {
        padding-left: 0; }
      .bs .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0; }
      .bs .form-inline .custom-control {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 0; }
      .bs .form-inline .custom-control-indicator {
        position: static;
        display: inline-block;
        margin-right: 0.25rem;
        vertical-align: text-bottom; }
      .bs .form-inline .has-feedback .form-control-feedback {
        top: 0; } }
  .bs .btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.8rem 0.75rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    .bs .btn:focus, .bs .btn:hover {
      text-decoration: none; }
    .bs .btn:focus, .bs .btn.focus {
      outline: 0;
      box-shadow: 0 0 0 0.2rem rgba(51, 152, 220, 0.25); }
    .bs .btn.disabled, .bs .btn:disabled {
      opacity: .65; }
    .bs .btn:not([disabled]):not(.disabled):active, .bs .btn:not([disabled]):not(.disabled).active {
      background-image: none; }
  .bs a.btn.disabled,
  .bs fieldset[disabled] a.btn {
    pointer-events: none; }
  .bs .btn-primary {
    color: #fff;
    background-color: #3398dc;
    border-color: #3398dc; }
    .bs .btn-primary:hover {
      color: #fff;
      background-color: #2284c7;
      border-color: #207dbc; }
    .bs .btn-primary:focus, .bs .btn-primary.focus {
      box-shadow: 0 0 0 0.2rem rgba(51, 152, 220, 0.5); }
    .bs .btn-primary.disabled, .bs .btn-primary:disabled {
      background-color: #3398dc;
      border-color: #3398dc; }
    .bs .btn-primary:not([disabled]):not(.disabled):active, .bs .btn-primary:not([disabled]):not(.disabled).active,
    .show > .bs .btn-primary.dropdown-toggle {
      color: #fff;
      background-color: #207dbc;
      border-color: #1e76b1;
      box-shadow: 0 0 0 0.2rem rgba(51, 152, 220, 0.5); }
  .bs .btn-secondary {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96; }
    .bs .btn-secondary:hover {
      color: #fff;
      background-color: #727b84;
      border-color: #6c757d; }
    .bs .btn-secondary:focus, .bs .btn-secondary.focus {
      box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
    .bs .btn-secondary.disabled, .bs .btn-secondary:disabled {
      background-color: #868e96;
      border-color: #868e96; }
    .bs .btn-secondary:not([disabled]):not(.disabled):active, .bs .btn-secondary:not([disabled]):not(.disabled).active,
    .show > .bs .btn-secondary.dropdown-toggle {
      color: #fff;
      background-color: #6c757d;
      border-color: #666e76;
      box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
  .bs .btn-success {
    color: #fff;
    background-color: #2dcc70;
    border-color: #2dcc70; }
    .bs .btn-success:hover {
      color: #fff;
      background-color: #26ad5f;
      border-color: #24a259; }
    .bs .btn-success:focus, .bs .btn-success.focus {
      box-shadow: 0 0 0 0.2rem rgba(45, 204, 112, 0.5); }
    .bs .btn-success.disabled, .bs .btn-success:disabled {
      background-color: #2dcc70;
      border-color: #2dcc70; }
    .bs .btn-success:not([disabled]):not(.disabled):active, .bs .btn-success:not([disabled]):not(.disabled).active,
    .show > .bs .btn-success.dropdown-toggle {
      color: #fff;
      background-color: #24a259;
      border-color: #219853;
      box-shadow: 0 0 0 0.2rem rgba(45, 204, 112, 0.5); }
  .bs .btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8; }
    .bs .btn-info:hover {
      color: #fff;
      background-color: #138496;
      border-color: #117a8b; }
    .bs .btn-info:focus, .bs .btn-info.focus {
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
    .bs .btn-info.disabled, .bs .btn-info:disabled {
      background-color: #17a2b8;
      border-color: #17a2b8; }
    .bs .btn-info:not([disabled]):not(.disabled):active, .bs .btn-info:not([disabled]):not(.disabled).active,
    .show > .bs .btn-info.dropdown-toggle {
      color: #fff;
      background-color: #117a8b;
      border-color: #10707f;
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .bs .btn-warning {
    color: #111;
    background-color: #f1c40f;
    border-color: #f1c40f; }
    .bs .btn-warning:hover {
      color: #111;
      background-color: #cea70c;
      border-color: #c29d0b; }
    .bs .btn-warning:focus, .bs .btn-warning.focus {
      box-shadow: 0 0 0 0.2rem rgba(241, 196, 15, 0.5); }
    .bs .btn-warning.disabled, .bs .btn-warning:disabled {
      background-color: #f1c40f;
      border-color: #f1c40f; }
    .bs .btn-warning:not([disabled]):not(.disabled):active, .bs .btn-warning:not([disabled]):not(.disabled).active,
    .show > .bs .btn-warning.dropdown-toggle {
      color: #111;
      background-color: #c29d0b;
      border-color: #b6940b;
      box-shadow: 0 0 0 0.2rem rgba(241, 196, 15, 0.5); }
  .bs .btn-danger {
    color: #fff;
    background-color: #e84c3d;
    border-color: #e84c3d; }
    .bs .btn-danger:hover {
      color: #fff;
      background-color: #e42d1b;
      border-color: #d82a1a; }
    .bs .btn-danger:focus, .bs .btn-danger.focus {
      box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.5); }
    .bs .btn-danger.disabled, .bs .btn-danger:disabled {
      background-color: #e84c3d;
      border-color: #e84c3d; }
    .bs .btn-danger:not([disabled]):not(.disabled):active, .bs .btn-danger:not([disabled]):not(.disabled).active,
    .show > .bs .btn-danger.dropdown-toggle {
      color: #fff;
      background-color: #d82a1a;
      border-color: #cd2818;
      box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.5); }
  .bs .btn-light {
    color: #111;
    background-color: #f8f9fa;
    border-color: #f8f9fa; }
    .bs .btn-light:hover {
      color: #111;
      background-color: #e2e6ea;
      border-color: #dae0e5; }
    .bs .btn-light:focus, .bs .btn-light.focus {
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
    .bs .btn-light.disabled, .bs .btn-light:disabled {
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
    .bs .btn-light:not([disabled]):not(.disabled):active, .bs .btn-light:not([disabled]):not(.disabled).active,
    .show > .bs .btn-light.dropdown-toggle {
      color: #111;
      background-color: #dae0e5;
      border-color: #d3d9df;
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .bs .btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40; }
    .bs .btn-dark:hover {
      color: #fff;
      background-color: #23272b;
      border-color: #1d2124; }
    .bs .btn-dark:focus, .bs .btn-dark.focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
    .bs .btn-dark.disabled, .bs .btn-dark:disabled {
      background-color: #343a40;
      border-color: #343a40; }
    .bs .btn-dark:not([disabled]):not(.disabled):active, .bs .btn-dark:not([disabled]):not(.disabled).active,
    .show > .bs .btn-dark.dropdown-toggle {
      color: #fff;
      background-color: #1d2124;
      border-color: #171a1d;
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .bs .btn-orange {
    color: #fff;
    background-color: #f07e1a;
    border-color: #f07e1a; }
    .bs .btn-orange:hover {
      color: #fff;
      background-color: #d66b0e;
      border-color: #ca650d; }
    .bs .btn-orange:focus, .bs .btn-orange.focus {
      box-shadow: 0 0 0 0.2rem rgba(240, 126, 26, 0.5); }
    .bs .btn-orange.disabled, .bs .btn-orange:disabled {
      background-color: #f07e1a;
      border-color: #f07e1a; }
    .bs .btn-orange:not([disabled]):not(.disabled):active, .bs .btn-orange:not([disabled]):not(.disabled).active,
    .show > .bs .btn-orange.dropdown-toggle {
      color: #fff;
      background-color: #ca650d;
      border-color: #be5f0c;
      box-shadow: 0 0 0 0.2rem rgba(240, 126, 26, 0.5); }
  .bs .btn-outline-primary {
    color: #3398dc;
    background-color: transparent;
    background-image: none;
    border-color: #3398dc; }
    .bs .btn-outline-primary:hover {
      color: #fff;
      background-color: #3398dc;
      border-color: #3398dc; }
    .bs .btn-outline-primary:focus, .bs .btn-outline-primary.focus {
      box-shadow: 0 0 0 0.2rem rgba(51, 152, 220, 0.5); }
    .bs .btn-outline-primary.disabled, .bs .btn-outline-primary:disabled {
      color: #3398dc;
      background-color: transparent; }
    .bs .btn-outline-primary:not([disabled]):not(.disabled):active, .bs .btn-outline-primary:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-primary.dropdown-toggle {
      color: #fff;
      background-color: #3398dc;
      border-color: #3398dc;
      box-shadow: 0 0 0 0.2rem rgba(51, 152, 220, 0.5); }
  .bs .btn-outline-secondary {
    color: #868e96;
    background-color: transparent;
    background-image: none;
    border-color: #868e96; }
    .bs .btn-outline-secondary:hover {
      color: #fff;
      background-color: #868e96;
      border-color: #868e96; }
    .bs .btn-outline-secondary:focus, .bs .btn-outline-secondary.focus {
      box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
    .bs .btn-outline-secondary.disabled, .bs .btn-outline-secondary:disabled {
      color: #868e96;
      background-color: transparent; }
    .bs .btn-outline-secondary:not([disabled]):not(.disabled):active, .bs .btn-outline-secondary:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-secondary.dropdown-toggle {
      color: #fff;
      background-color: #868e96;
      border-color: #868e96;
      box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5); }
  .bs .btn-outline-success {
    color: #2dcc70;
    background-color: transparent;
    background-image: none;
    border-color: #2dcc70; }
    .bs .btn-outline-success:hover {
      color: #fff;
      background-color: #2dcc70;
      border-color: #2dcc70; }
    .bs .btn-outline-success:focus, .bs .btn-outline-success.focus {
      box-shadow: 0 0 0 0.2rem rgba(45, 204, 112, 0.5); }
    .bs .btn-outline-success.disabled, .bs .btn-outline-success:disabled {
      color: #2dcc70;
      background-color: transparent; }
    .bs .btn-outline-success:not([disabled]):not(.disabled):active, .bs .btn-outline-success:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-success.dropdown-toggle {
      color: #fff;
      background-color: #2dcc70;
      border-color: #2dcc70;
      box-shadow: 0 0 0 0.2rem rgba(45, 204, 112, 0.5); }
  .bs .btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8; }
    .bs .btn-outline-info:hover {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8; }
    .bs .btn-outline-info:focus, .bs .btn-outline-info.focus {
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
    .bs .btn-outline-info.disabled, .bs .btn-outline-info:disabled {
      color: #17a2b8;
      background-color: transparent; }
    .bs .btn-outline-info:not([disabled]):not(.disabled):active, .bs .btn-outline-info:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-info.dropdown-toggle {
      color: #fff;
      background-color: #17a2b8;
      border-color: #17a2b8;
      box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  .bs .btn-outline-warning {
    color: #f1c40f;
    background-color: transparent;
    background-image: none;
    border-color: #f1c40f; }
    .bs .btn-outline-warning:hover {
      color: #fff;
      background-color: #f1c40f;
      border-color: #f1c40f; }
    .bs .btn-outline-warning:focus, .bs .btn-outline-warning.focus {
      box-shadow: 0 0 0 0.2rem rgba(241, 196, 15, 0.5); }
    .bs .btn-outline-warning.disabled, .bs .btn-outline-warning:disabled {
      color: #f1c40f;
      background-color: transparent; }
    .bs .btn-outline-warning:not([disabled]):not(.disabled):active, .bs .btn-outline-warning:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-warning.dropdown-toggle {
      color: #fff;
      background-color: #f1c40f;
      border-color: #f1c40f;
      box-shadow: 0 0 0 0.2rem rgba(241, 196, 15, 0.5); }
  .bs .btn-outline-danger {
    color: #e84c3d;
    background-color: transparent;
    background-image: none;
    border-color: #e84c3d; }
    .bs .btn-outline-danger:hover {
      color: #fff;
      background-color: #e84c3d;
      border-color: #e84c3d; }
    .bs .btn-outline-danger:focus, .bs .btn-outline-danger.focus {
      box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.5); }
    .bs .btn-outline-danger.disabled, .bs .btn-outline-danger:disabled {
      color: #e84c3d;
      background-color: transparent; }
    .bs .btn-outline-danger:not([disabled]):not(.disabled):active, .bs .btn-outline-danger:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-danger.dropdown-toggle {
      color: #fff;
      background-color: #e84c3d;
      border-color: #e84c3d;
      box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.5); }
  .bs .btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa; }
    .bs .btn-outline-light:hover {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa; }
    .bs .btn-outline-light:focus, .bs .btn-outline-light.focus {
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
    .bs .btn-outline-light.disabled, .bs .btn-outline-light:disabled {
      color: #f8f9fa;
      background-color: transparent; }
    .bs .btn-outline-light:not([disabled]):not(.disabled):active, .bs .btn-outline-light:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-light.dropdown-toggle {
      color: #212529;
      background-color: #f8f9fa;
      border-color: #f8f9fa;
      box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  .bs .btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40; }
    .bs .btn-outline-dark:hover {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40; }
    .bs .btn-outline-dark:focus, .bs .btn-outline-dark.focus {
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
    .bs .btn-outline-dark.disabled, .bs .btn-outline-dark:disabled {
      color: #343a40;
      background-color: transparent; }
    .bs .btn-outline-dark:not([disabled]):not(.disabled):active, .bs .btn-outline-dark:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-dark.dropdown-toggle {
      color: #fff;
      background-color: #343a40;
      border-color: #343a40;
      box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  .bs .btn-outline-orange {
    color: #f07e1a;
    background-color: transparent;
    background-image: none;
    border-color: #f07e1a; }
    .bs .btn-outline-orange:hover {
      color: #fff;
      background-color: #f07e1a;
      border-color: #f07e1a; }
    .bs .btn-outline-orange:focus, .bs .btn-outline-orange.focus {
      box-shadow: 0 0 0 0.2rem rgba(240, 126, 26, 0.5); }
    .bs .btn-outline-orange.disabled, .bs .btn-outline-orange:disabled {
      color: #f07e1a;
      background-color: transparent; }
    .bs .btn-outline-orange:not([disabled]):not(.disabled):active, .bs .btn-outline-orange:not([disabled]):not(.disabled).active,
    .show > .bs .btn-outline-orange.dropdown-toggle {
      color: #fff;
      background-color: #f07e1a;
      border-color: #f07e1a;
      box-shadow: 0 0 0 0.2rem rgba(240, 126, 26, 0.5); }
  .bs .btn-link {
    font-weight: 400;
    color: #3398dc;
    background-color: transparent; }
    .bs .btn-link:hover {
      color: #1c6fa6;
      text-decoration: underline;
      background-color: transparent;
      border-color: transparent; }
    .bs .btn-link:focus, .bs .btn-link.focus {
      border-color: transparent;
      box-shadow: none; }
    .bs .btn-link:disabled, .bs .btn-link.disabled {
      color: #868e96; }
  .bs .btn-lg, .bs .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0; }
  .bs .btn-sm, .bs .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0; }
  .bs .btn-block {
    display: block;
    width: 100%; }
  .bs .btn-block + .btn-block {
    margin-top: 0.5rem; }
  .bs input[type="submit"].btn-block,
  .bs input[type="reset"].btn-block,
  .bs input[type="button"].btn-block {
    width: 100%; }
  .bs .fade {
    opacity: 0;
    transition: opacity 0.15s linear; }
    .bs .fade.show {
      opacity: 1; }
  .bs .collapse {
    display: none; }
    .bs .collapse.show {
      display: block; }
  .bs tr.collapse.show {
    display: table-row; }
  .bs tbody.collapse.show {
    display: table-row-group; }
  .bs .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease; }
  .bs .dropup,
  .bs .dropdown {
    position: relative; }
  .bs .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  .bs .dropdown-toggle:empty::after {
    margin-left: 0; }
  .bs .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #505050;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0; }
  .bs .dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: 0.125rem; }
  .bs .dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent; }
  .bs .dropup .dropdown-toggle:empty::after {
    margin-left: 0; }
  .bs .dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef; }
  .bs .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background: none;
    border: 0; }
    .bs .dropdown-item:focus, .bs .dropdown-item:hover {
      color: #16181b;
      text-decoration: none;
      background-color: #f8f9fa; }
    .bs .dropdown-item.active, .bs .dropdown-item:active {
      color: #fff;
      text-decoration: none;
      background-color: #3398dc; }
    .bs .dropdown-item.disabled, .bs .dropdown-item:disabled {
      color: #868e96;
      background-color: transparent; }
  .bs .dropdown-menu.show {
    display: block; }
  .bs .dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #868e96;
    white-space: nowrap; }
  .bs .btn-group,
  .bs .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle; }
    .bs .btn-group > .btn,
    .bs .btn-group-vertical > .btn {
      position: relative;
      flex: 0 1 auto; }
      .bs .btn-group > .btn:hover,
      .bs .btn-group-vertical > .btn:hover {
        z-index: 2; }
      .bs .btn-group > .btn:focus, .bs .btn-group > .btn:active, .bs .btn-group > .btn.active,
      .bs .btn-group-vertical > .btn:focus,
      .bs .btn-group-vertical > .btn:active,
      .bs .btn-group-vertical > .btn.active {
        z-index: 2; }
    .bs .btn-group .btn + .btn,
    .bs .btn-group .btn + .btn-group,
    .bs .btn-group .btn-group + .btn,
    .bs .btn-group .btn-group + .btn-group,
    .bs .btn-group-vertical .btn + .btn,
    .bs .btn-group-vertical .btn + .btn-group,
    .bs .btn-group-vertical .btn-group + .btn,
    .bs .btn-group-vertical .btn-group + .btn-group {
      margin-left: -1px; }
  .bs .btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; }
    .bs .btn-toolbar .input-group {
      width: auto; }
  .bs .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0; }
  .bs .btn-group > .btn:first-child {
    margin-left: 0; }
    .bs .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
  .bs .btn-group > .btn:last-child:not(:first-child),
  .bs .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bs .btn-group > .btn-group {
    float: left; }
  .bs .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  .bs .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  .bs .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bs .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bs .btn + .dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem; }
    .bs .btn + .dropdown-toggle-split::after {
      margin-left: 0; }
  .bs .btn-sm + .dropdown-toggle-split, .bs .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem; }
  .bs .btn-lg + .dropdown-toggle-split, .bs .btn-group-lg > .btn + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem; }
  .bs .btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    .bs .btn-group-vertical .btn,
    .bs .btn-group-vertical .btn-group {
      width: 100%; }
    .bs .btn-group-vertical > .btn + .btn,
    .bs .btn-group-vertical > .btn + .btn-group,
    .bs .btn-group-vertical > .btn-group + .btn,
    .bs .btn-group-vertical > .btn-group + .btn-group {
      margin-top: -1px;
      margin-left: 0; }
    .bs .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
      border-radius: 0; }
    .bs .btn-group-vertical > .btn:first-child:not(:last-child) {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
    .bs .btn-group-vertical > .btn:last-child:not(:first-child) {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
    .bs .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
      border-radius: 0; }
    .bs .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .bs .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
    .bs .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .bs [data-toggle="buttons"] > .btn input[type="radio"],
  .bs [data-toggle="buttons"] > .btn input[type="checkbox"],
  .bs [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  .bs [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }
  .bs .input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%; }
    .bs .input-group .form-control {
      position: relative;
      z-index: 2;
      flex: 1 1 auto;
      width: 1%;
      margin-bottom: 0; }
      .bs .input-group .form-control:focus, .bs .input-group .form-control:active, .bs .input-group .form-control:hover {
        z-index: 3; }
  .bs .input-group-addon,
  .bs .input-group-btn,
  .bs .input-group .form-control {
    display: flex;
    align-items: center; }
    .bs .input-group-addon:not(:first-child):not(:last-child),
    .bs .input-group-btn:not(:first-child):not(:last-child),
    .bs .input-group .form-control:not(:first-child):not(:last-child) {
      border-radius: 0; }
  .bs .input-group-addon,
  .bs .input-group-btn {
    white-space: nowrap; }
  .bs .input-group-addon {
    padding: 0.8rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #495057;
    text-align: center;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0; }
    .bs .input-group-addon.form-control-sm, .bs .input-group-sm > .input-group-addon, .bs .input-group-sm > .input-group-btn > .input-group-addon.btn {
      padding: 0.25rem 0.5rem;
      font-size: 0.875rem;
      border-radius: 0; }
    .bs .input-group-addon.form-control-lg, .bs .input-group-lg > .input-group-addon, .bs .input-group-lg > .input-group-btn > .input-group-addon.btn {
      padding: 0.5rem 1rem;
      font-size: 1.25rem;
      border-radius: 0; }
    .bs .input-group-addon input[type="radio"],
    .bs .input-group-addon input[type="checkbox"] {
      margin-top: 0; }
  .bs .input-group .form-control:not(:last-child),
  .bs .input-group-addon:not(:last-child),
  .bs .input-group-btn:not(:last-child) > .btn,
  .bs .input-group-btn:not(:last-child) > .btn-group > .btn,
  .bs .input-group-btn:not(:last-child) > .dropdown-toggle,
  .bs .input-group-btn:not(:first-child) > .btn:not(:last-child):not(.dropdown-toggle),
  .bs .input-group-btn:not(:first-child) > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bs .input-group-addon:not(:last-child) {
    border-right: 0; }
  .bs .input-group .form-control:not(:first-child),
  .bs .input-group-addon:not(:first-child),
  .bs .input-group-btn:not(:first-child) > .btn,
  .bs .input-group-btn:not(:first-child) > .btn-group > .btn,
  .bs .input-group-btn:not(:first-child) > .dropdown-toggle,
  .bs .input-group-btn:not(:last-child) > .btn:not(:first-child),
  .bs .input-group-btn:not(:last-child) > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bs .form-control + .input-group-addon:not(:first-child) {
    border-left: 0; }
  .bs .input-group-btn {
    position: relative;
    align-items: stretch;
    font-size: 0;
    white-space: nowrap; }
    .bs .input-group-btn > .btn {
      position: relative; }
      .bs .input-group-btn > .btn + .btn {
        margin-left: -1px; }
      .bs .input-group-btn > .btn:focus, .bs .input-group-btn > .btn:active, .bs .input-group-btn > .btn:hover {
        z-index: 3; }
    .bs .input-group-btn:first-child > .btn + .btn {
      margin-left: 0; }
    .bs .input-group-btn:not(:last-child) > .btn,
    .bs .input-group-btn:not(:last-child) > .btn-group {
      margin-right: -1px; }
    .bs .input-group-btn:not(:first-child) > .btn,
    .bs .input-group-btn:not(:first-child) > .btn-group {
      z-index: 2;
      margin-left: 0; }
      .bs .input-group-btn:not(:first-child) > .btn:first-child,
      .bs .input-group-btn:not(:first-child) > .btn-group:first-child {
        margin-left: -1px; }
      .bs .input-group-btn:not(:first-child) > .btn:focus, .bs .input-group-btn:not(:first-child) > .btn:active, .bs .input-group-btn:not(:first-child) > .btn:hover,
      .bs .input-group-btn:not(:first-child) > .btn-group:focus,
      .bs .input-group-btn:not(:first-child) > .btn-group:active,
      .bs .input-group-btn:not(:first-child) > .btn-group:hover {
        z-index: 3; }
  .bs .custom-control {
    position: relative;
    display: inline-flex;
    min-height: 1rem;
    padding-left: 1.5rem;
    margin-right: 1rem; }
  .bs .custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
    .bs .custom-control-input:checked ~ .custom-control-indicator {
      color: #fff;
      background-color: #3398dc; }
    .bs .custom-control-input:focus ~ .custom-control-indicator {
      box-shadow: 0 0 0 1px #f7f4f3, 0 0 0 0.2rem rgba(51, 152, 220, 0.25); }
    .bs .custom-control-input:active ~ .custom-control-indicator {
      color: #fff;
      background-color: #cbe5f6; }
    .bs .custom-control-input:disabled ~ .custom-control-indicator {
      background-color: #e9ecef; }
    .bs .custom-control-input:disabled ~ .custom-control-description {
      color: #868e96; }
  .bs .custom-control-indicator {
    position: absolute;
    top: 0rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #ddd;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%; }
  .bs .custom-checkbox .custom-control-indicator {
    border-radius: 0; }
  .bs .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); }
  .bs .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-indicator {
    background-color: #3398dc;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); }
  .bs .custom-radio .custom-control-indicator {
    border-radius: 50%; }
  .bs .custom-radio .custom-control-input:checked ~ .custom-control-indicator {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); }
  .bs .custom-controls-stacked {
    display: flex;
    flex-direction: column; }
    .bs .custom-controls-stacked .custom-control {
      margin-bottom: 0.25rem; }
      .bs .custom-controls-stacked .custom-control + .custom-control {
        margin-left: 0; }
  .bs .custom-select {
    display: inline-block;
    max-width: 100%;
    height: calc(2.6rem + 2px);
    padding: 0.8rem 1.75rem 0.8rem 0.75rem;
    line-height: 1;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .bs .custom-select:focus {
      border-color: #a1938f;
      outline: none; }
      .bs .custom-select:focus::-ms-value {
        color: #495057;
        background-color: #fff; }
    .bs .custom-select[multiple] {
      height: auto;
      background-image: none; }
    .bs .custom-select:disabled {
      color: #868e96;
      background-color: #e9ecef; }
    .bs .custom-select::-ms-expand {
      opacity: 0; }
  .bs .custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 75%; }
  .bs .custom-file {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: calc(2.6rem + 2px);
    margin-bottom: 0; }
  .bs .custom-file-input {
    min-width: 14rem;
    max-width: 100%;
    height: calc(2.6rem + 2px);
    margin: 0;
    opacity: 0; }
    .bs .custom-file-input:focus ~ .custom-file-control {
      box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.2rem #3398dc; }
  .bs .custom-file-control {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    height: calc(2.6rem + 2px);
    padding: 0.8rem 0.75rem;
    line-height: 1;
    color: #495057;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0; }
    .bs .custom-file-control:lang(en):empty::after {
      content: "Choose file..."; }
    .bs .custom-file-control::before {
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      z-index: 6;
      display: block;
      height: calc(2.6rem + 2px);
      padding: 0.8rem 0.75rem;
      line-height: 1;
      color: #495057;
      background-color: #e9ecef;
      border: 1px solid #ced4da;
      border-radius: 0 0 0 0; }
    .bs .custom-file-control:lang(en)::before {
      content: "Browse"; }
  .bs .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
  .bs .nav-link {
    display: block;
    padding: 0.5rem 1rem; }
    .bs .nav-link:focus, .bs .nav-link:hover {
      text-decoration: none; }
    .bs .nav-link.disabled {
      color: #868e96; }
  .bs .nav-tabs {
    border-bottom: 1px solid #ddd; }
    .bs .nav-tabs .nav-item {
      margin-bottom: -1px; }
    .bs .nav-tabs .nav-link {
      border: 1px solid transparent;
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
      .bs .nav-tabs .nav-link:focus, .bs .nav-tabs .nav-link:hover {
        border-color: #e9ecef #e9ecef #ddd; }
      .bs .nav-tabs .nav-link.disabled {
        color: #868e96;
        background-color: transparent;
        border-color: transparent; }
    .bs .nav-tabs .nav-link.active,
    .bs .nav-tabs .nav-item.show .nav-link {
      color: #495057;
      background-color: #f7f4f3;
      border-color: #ddd #ddd #f7f4f3; }
    .bs .nav-tabs .dropdown-menu {
      margin-top: -1px;
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
  .bs .nav-pills .nav-link {
    border-radius: 0; }
  .bs .nav-pills .nav-link.active,
  .bs .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #3398dc; }
  .bs .nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center; }
  .bs .nav-justified .nav-item {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center; }
  .bs .tab-content > .tab-pane {
    display: none; }
  .bs .tab-content > .active {
    display: block; }
  .bs .navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem; }
    .bs .navbar > .container,
    .bs .navbar > .container-fluid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between; }
  .bs .navbar-brand {
    display: inline-block;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap; }
    .bs .navbar-brand:focus, .bs .navbar-brand:hover {
      text-decoration: none; }
  .bs .navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    .bs .navbar-nav .nav-link {
      padding-right: 0;
      padding-left: 0; }
    .bs .navbar-nav .dropdown-menu {
      position: static;
      float: none; }
  .bs .navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem; }
  .bs .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center; }
  .bs .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0; }
    .bs .navbar-toggler:focus, .bs .navbar-toggler:hover {
      text-decoration: none; }
  .bs .navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%; }
  @media (max-width: 575px) {
    .bs .navbar-expand-sm > .container,
    .bs .navbar-expand-sm > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 576px) {
    .bs .navbar-expand-sm {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .bs .navbar-expand-sm .navbar-nav {
        flex-direction: row; }
        .bs .navbar-expand-sm .navbar-nav .dropdown-menu {
          position: absolute; }
        .bs .navbar-expand-sm .navbar-nav .dropdown-menu-right {
          right: 0;
          left: auto; }
        .bs .navbar-expand-sm .navbar-nav .nav-link {
          padding-right: .5rem;
          padding-left: .5rem; }
      .bs .navbar-expand-sm > .container,
      .bs .navbar-expand-sm > .container-fluid {
        flex-wrap: nowrap; }
      .bs .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .bs .navbar-expand-sm .navbar-toggler {
        display: none; }
      .bs .navbar-expand-sm .dropup .dropdown-menu {
        top: auto;
        bottom: 100%; } }
  @media (max-width: 767px) {
    .bs .navbar-expand-md > .container,
    .bs .navbar-expand-md > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 768px) {
    .bs .navbar-expand-md {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .bs .navbar-expand-md .navbar-nav {
        flex-direction: row; }
        .bs .navbar-expand-md .navbar-nav .dropdown-menu {
          position: absolute; }
        .bs .navbar-expand-md .navbar-nav .dropdown-menu-right {
          right: 0;
          left: auto; }
        .bs .navbar-expand-md .navbar-nav .nav-link {
          padding-right: .5rem;
          padding-left: .5rem; }
      .bs .navbar-expand-md > .container,
      .bs .navbar-expand-md > .container-fluid {
        flex-wrap: nowrap; }
      .bs .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .bs .navbar-expand-md .navbar-toggler {
        display: none; }
      .bs .navbar-expand-md .dropup .dropdown-menu {
        top: auto;
        bottom: 100%; } }
  @media (max-width: 991px) {
    .bs .navbar-expand-lg > .container,
    .bs .navbar-expand-lg > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 992px) {
    .bs .navbar-expand-lg {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .bs .navbar-expand-lg .navbar-nav {
        flex-direction: row; }
        .bs .navbar-expand-lg .navbar-nav .dropdown-menu {
          position: absolute; }
        .bs .navbar-expand-lg .navbar-nav .dropdown-menu-right {
          right: 0;
          left: auto; }
        .bs .navbar-expand-lg .navbar-nav .nav-link {
          padding-right: .5rem;
          padding-left: .5rem; }
      .bs .navbar-expand-lg > .container,
      .bs .navbar-expand-lg > .container-fluid {
        flex-wrap: nowrap; }
      .bs .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .bs .navbar-expand-lg .navbar-toggler {
        display: none; }
      .bs .navbar-expand-lg .dropup .dropdown-menu {
        top: auto;
        bottom: 100%; } }
  @media (max-width: 1199px) {
    .bs .navbar-expand-xl > .container,
    .bs .navbar-expand-xl > .container-fluid {
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 1200px) {
    .bs .navbar-expand-xl {
      flex-flow: row nowrap;
      justify-content: flex-start; }
      .bs .navbar-expand-xl .navbar-nav {
        flex-direction: row; }
        .bs .navbar-expand-xl .navbar-nav .dropdown-menu {
          position: absolute; }
        .bs .navbar-expand-xl .navbar-nav .dropdown-menu-right {
          right: 0;
          left: auto; }
        .bs .navbar-expand-xl .navbar-nav .nav-link {
          padding-right: .5rem;
          padding-left: .5rem; }
      .bs .navbar-expand-xl > .container,
      .bs .navbar-expand-xl > .container-fluid {
        flex-wrap: nowrap; }
      .bs .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto; }
      .bs .navbar-expand-xl .navbar-toggler {
        display: none; }
      .bs .navbar-expand-xl .dropup .dropdown-menu {
        top: auto;
        bottom: 100%; } }
  .bs .navbar-expand {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .bs .navbar-expand > .container,
    .bs .navbar-expand > .container-fluid {
      padding-right: 0;
      padding-left: 0; }
    .bs .navbar-expand .navbar-nav {
      flex-direction: row; }
      .bs .navbar-expand .navbar-nav .dropdown-menu {
        position: absolute; }
      .bs .navbar-expand .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto; }
      .bs .navbar-expand .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem; }
    .bs .navbar-expand > .container,
    .bs .navbar-expand > .container-fluid {
      flex-wrap: nowrap; }
    .bs .navbar-expand .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .bs .navbar-expand .navbar-toggler {
      display: none; }
    .bs .navbar-expand .dropup .dropdown-menu {
      top: auto;
      bottom: 100%; }
  .bs .navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9); }
    .bs .navbar-light .navbar-brand:focus, .bs .navbar-light .navbar-brand:hover {
      color: rgba(0, 0, 0, 0.9); }
  .bs .navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5); }
    .bs .navbar-light .navbar-nav .nav-link:focus, .bs .navbar-light .navbar-nav .nav-link:hover {
      color: rgba(0, 0, 0, 0.7); }
    .bs .navbar-light .navbar-nav .nav-link.disabled {
      color: rgba(0, 0, 0, 0.3); }
  .bs .navbar-light .navbar-nav .show > .nav-link,
  .bs .navbar-light .navbar-nav .active > .nav-link,
  .bs .navbar-light .navbar-nav .nav-link.show,
  .bs .navbar-light .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, 0.9); }
  .bs .navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1); }
  .bs .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  .bs .navbar-light .navbar-text {
    color: rgba(0, 0, 0, 0.5); }
    .bs .navbar-light .navbar-text a {
      color: rgba(0, 0, 0, 0.9); }
      .bs .navbar-light .navbar-text a:focus, .bs .navbar-light .navbar-text a:hover {
        color: rgba(0, 0, 0, 0.9); }
  .bs .navbar-dark .navbar-brand {
    color: #fff; }
    .bs .navbar-dark .navbar-brand:focus, .bs .navbar-dark .navbar-brand:hover {
      color: #fff; }
  .bs .navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.5); }
    .bs .navbar-dark .navbar-nav .nav-link:focus, .bs .navbar-dark .navbar-nav .nav-link:hover {
      color: rgba(255, 255, 255, 0.75); }
    .bs .navbar-dark .navbar-nav .nav-link.disabled {
      color: rgba(255, 255, 255, 0.25); }
  .bs .navbar-dark .navbar-nav .show > .nav-link,
  .bs .navbar-dark .navbar-nav .active > .nav-link,
  .bs .navbar-dark .navbar-nav .nav-link.show,
  .bs .navbar-dark .navbar-nav .nav-link.active {
    color: #fff; }
  .bs .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1); }
  .bs .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); }
  .bs .navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.5); }
    .bs .navbar-dark .navbar-text a {
      color: #fff; }
      .bs .navbar-dark .navbar-text a:focus, .bs .navbar-dark .navbar-text a:hover {
        color: #fff; }
  .bs .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0; }
    .bs .card > hr {
      margin-right: 0;
      margin-left: 0; }
    .bs .card > .list-group:first-child .list-group-item:first-child {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
    .bs .card > .list-group:last-child .list-group-item:last-child {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
  .bs .card-body {
    flex: 1 1 auto;
    padding: 1.25rem; }
  .bs .card-title {
    margin-bottom: 0.75rem; }
  .bs .card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0; }
  .bs .card-text:last-child {
    margin-bottom: 0; }
  .bs .card-link:hover {
    text-decoration: none; }
  .bs .card-link + .card-link {
    margin-left: 1.25rem; }
  .bs .card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
    .bs .card-header:first-child {
      border-radius: calc(0 - 1px) calc(0 - 1px) 0 0; }
    .bs .card-header + .list-group .list-group-item:first-child {
      border-top: 0; }
  .bs .card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125); }
    .bs .card-footer:last-child {
      border-radius: 0 0 calc(0 - 1px) calc(0 - 1px); }
  .bs .card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0; }
  .bs .card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
  .bs .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem; }
  .bs .card-img {
    width: 100%;
    border-radius: calc(0 - 1px); }
  .bs .card-img-top {
    width: 100%;
    border-top-left-radius: calc(0 - 1px);
    border-top-right-radius: calc(0 - 1px); }
  .bs .card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(0 - 1px);
    border-bottom-left-radius: calc(0 - 1px); }
  .bs .card-deck {
    display: flex;
    flex-direction: column; }
    .bs .card-deck .card {
      margin-bottom: 15px; }
    @media (min-width: 576px) {
      .bs .card-deck {
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px; }
        .bs .card-deck .card {
          display: flex;
          flex: 1 0 0%;
          flex-direction: column;
          margin-right: 15px;
          margin-bottom: 0;
          margin-left: 15px; } }
  .bs .card-group {
    display: flex;
    flex-direction: column; }
    .bs .card-group .card {
      margin-bottom: 15px; }
    @media (min-width: 576px) {
      .bs .card-group {
        flex-flow: row wrap; }
        .bs .card-group .card {
          flex: 1 0 0%;
          margin-bottom: 0; }
          .bs .card-group .card + .card {
            margin-left: 0;
            border-left: 0; }
          .bs .card-group .card:first-child {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0; }
            .bs .card-group .card:first-child .card-img-top {
              border-top-right-radius: 0; }
            .bs .card-group .card:first-child .card-img-bottom {
              border-bottom-right-radius: 0; }
          .bs .card-group .card:last-child {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0; }
            .bs .card-group .card:last-child .card-img-top {
              border-top-left-radius: 0; }
            .bs .card-group .card:last-child .card-img-bottom {
              border-bottom-left-radius: 0; }
          .bs .card-group .card:only-child {
            border-radius: 0; }
            .bs .card-group .card:only-child .card-img-top {
              border-top-left-radius: 0;
              border-top-right-radius: 0; }
            .bs .card-group .card:only-child .card-img-bottom {
              border-bottom-right-radius: 0;
              border-bottom-left-radius: 0; }
          .bs .card-group .card:not(:first-child):not(:last-child):not(:only-child) {
            border-radius: 0; }
            .bs .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
            .bs .card-group .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom {
              border-radius: 0; } }
  .bs .card-columns .card {
    margin-bottom: 0.75rem; }
  @media (min-width: 576px) {
    .bs .card-columns {
      -webkit-column-count: 3;
      column-count: 3;
      -webkit-column-gap: 1.25rem;
      column-gap: 1.25rem; }
      .bs .card-columns .card {
        display: inline-block;
        width: 100%; } }
  .bs .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0; }
  .bs .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #868e96;
    content: "/"; }
  .bs .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline; }
  .bs .breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none; }
  .bs .breadcrumb-item.active {
    color: #868e96; }
  .bs .pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0; }
  .bs .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bs .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bs .page-item.active .page-link {
    z-index: 2;
    color: #fff;
    background-color: #3398dc;
    border-color: #3398dc; }
  .bs .page-item.disabled .page-link {
    color: #868e96;
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd; }
  .bs .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #3398dc;
    background-color: #fff;
    border: 1px solid #ddd; }
    .bs .page-link:focus, .bs .page-link:hover {
      color: #1c6fa6;
      text-decoration: none;
      background-color: #e9ecef;
      border-color: #ddd; }
  .bs .pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5; }
  .bs .pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bs .pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bs .pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5; }
  .bs .pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .bs .pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .bs .badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0; }
    .bs .badge:empty {
      display: none; }
  .bs .btn .badge {
    position: relative;
    top: -1px; }
  .bs .badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem; }
  .bs .badge-primary {
    color: #fff;
    background-color: #3398dc; }
    .bs .badge-primary[href]:focus, .bs .badge-primary[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #207dbc; }
  .bs .badge-secondary {
    color: #fff;
    background-color: #868e96; }
    .bs .badge-secondary[href]:focus, .bs .badge-secondary[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #6c757d; }
  .bs .badge-success {
    color: #fff;
    background-color: #2dcc70; }
    .bs .badge-success[href]:focus, .bs .badge-success[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #24a259; }
  .bs .badge-info {
    color: #fff;
    background-color: #17a2b8; }
    .bs .badge-info[href]:focus, .bs .badge-info[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #117a8b; }
  .bs .badge-warning {
    color: #111;
    background-color: #f1c40f; }
    .bs .badge-warning[href]:focus, .bs .badge-warning[href]:hover {
      color: #111;
      text-decoration: none;
      background-color: #c29d0b; }
  .bs .badge-danger {
    color: #fff;
    background-color: #e84c3d; }
    .bs .badge-danger[href]:focus, .bs .badge-danger[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #d82a1a; }
  .bs .badge-light {
    color: #111;
    background-color: #f8f9fa; }
    .bs .badge-light[href]:focus, .bs .badge-light[href]:hover {
      color: #111;
      text-decoration: none;
      background-color: #dae0e5; }
  .bs .badge-dark {
    color: #fff;
    background-color: #343a40; }
    .bs .badge-dark[href]:focus, .bs .badge-dark[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #1d2124; }
  .bs .badge-orange {
    color: #fff;
    background-color: #f07e1a; }
    .bs .badge-orange[href]:focus, .bs .badge-orange[href]:hover {
      color: #fff;
      text-decoration: none;
      background-color: #ca650d; }
  .bs .jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0; }
    @media (min-width: 576px) {
      .bs .jumbotron {
        padding: 4rem 2rem; } }
  .bs .jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0; }
  .bs .alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0; }
  .bs .alert-heading {
    color: inherit; }
  .bs .alert-link {
    font-weight: 700; }
  .bs .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit; }
  .bs .alert-primary {
    color: #1b4f72;
    background-color: #d6eaf8;
    border-color: #c6e2f5; }
    .bs .alert-primary hr {
      border-top-color: #b0d7f1; }
    .bs .alert-primary .alert-link {
      color: #113249; }
  .bs .alert-secondary {
    color: #464a4e;
    background-color: #e7e8ea;
    border-color: #dddfe2; }
    .bs .alert-secondary hr {
      border-top-color: #cfd2d6; }
    .bs .alert-secondary .alert-link {
      color: #2e3133; }
  .bs .alert-success {
    color: #176a3a;
    background-color: #d5f5e2;
    border-color: #c4f1d7; }
    .bs .alert-success hr {
      border-top-color: #afecc9; }
    .bs .alert-success .alert-link {
      color: #0e4023; }
  .bs .alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb; }
    .bs .alert-info hr {
      border-top-color: #abdde5; }
    .bs .alert-info .alert-link {
      color: #062c33; }
  .bs .alert-warning {
    color: #7d6608;
    background-color: #fcf3cf;
    border-color: #fbeebc; }
    .bs .alert-warning hr {
      border-top-color: #fae8a4; }
    .bs .alert-warning .alert-link {
      color: #4d3f05; }
  .bs .alert-danger {
    color: #792820;
    background-color: #fadbd8;
    border-color: #f9cdc9; }
    .bs .alert-danger hr {
      border-top-color: #f6b8b2; }
    .bs .alert-danger .alert-link {
      color: #511b15; }
  .bs .alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe; }
    .bs .alert-light hr {
      border-top-color: #ececf6; }
    .bs .alert-light .alert-link {
      color: #686868; }
  .bs .alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca; }
    .bs .alert-dark hr {
      border-top-color: #b9bbbe; }
    .bs .alert-dark .alert-link {
      color: #040505; }
  .bs .alert-orange {
    color: #7d420e;
    background-color: #fce5d1;
    border-color: #fbdbbf; }
    .bs .alert-orange hr {
      border-top-color: #facea7; }
    .bs .alert-orange .alert-link {
      color: #4f2a09; }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }
  .bs .progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0; }
  .bs .progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #3398dc; }
  .bs .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem; }
  .bs .progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite; }
  .bs .media {
    display: flex;
    align-items: flex-start; }
  .bs .media-body {
    flex: 1; }
  .bs .list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0; }
  .bs .list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit; }
    .bs .list-group-item-action:focus, .bs .list-group-item-action:hover {
      color: #495057;
      text-decoration: none;
      background-color: #f8f9fa; }
    .bs .list-group-item-action:active {
      color: #505050;
      background-color: #e9ecef; }
  .bs .list-group-item {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125); }
    .bs .list-group-item:first-child {
      border-top-left-radius: 0;
      border-top-right-radius: 0; }
    .bs .list-group-item:last-child {
      margin-bottom: 0;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0; }
    .bs .list-group-item:focus, .bs .list-group-item:hover {
      text-decoration: none; }
    .bs .list-group-item.disabled, .bs .list-group-item:disabled {
      color: #868e96;
      background-color: #fff; }
    .bs .list-group-item.active {
      z-index: 2;
      color: #fff;
      background-color: #3398dc;
      border-color: #3398dc; }
  .bs .list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0; }
  .bs .list-group-flush:first-child .list-group-item:first-child {
    border-top: 0; }
  .bs .list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0; }
  .bs .list-group-item-primary {
    color: #1b4f72;
    background-color: #c6e2f5; }
  .bs a.list-group-item-primary,
  .bs button.list-group-item-primary {
    color: #1b4f72; }
    .bs a.list-group-item-primary:focus, .bs a.list-group-item-primary:hover,
    .bs button.list-group-item-primary:focus,
    .bs button.list-group-item-primary:hover {
      color: #1b4f72;
      background-color: #b0d7f1; }
    .bs a.list-group-item-primary.active,
    .bs button.list-group-item-primary.active {
      color: #fff;
      background-color: #1b4f72;
      border-color: #1b4f72; }
  .bs .list-group-item-secondary {
    color: #464a4e;
    background-color: #dddfe2; }
  .bs a.list-group-item-secondary,
  .bs button.list-group-item-secondary {
    color: #464a4e; }
    .bs a.list-group-item-secondary:focus, .bs a.list-group-item-secondary:hover,
    .bs button.list-group-item-secondary:focus,
    .bs button.list-group-item-secondary:hover {
      color: #464a4e;
      background-color: #cfd2d6; }
    .bs a.list-group-item-secondary.active,
    .bs button.list-group-item-secondary.active {
      color: #fff;
      background-color: #464a4e;
      border-color: #464a4e; }
  .bs .list-group-item-success {
    color: #176a3a;
    background-color: #c4f1d7; }
  .bs a.list-group-item-success,
  .bs button.list-group-item-success {
    color: #176a3a; }
    .bs a.list-group-item-success:focus, .bs a.list-group-item-success:hover,
    .bs button.list-group-item-success:focus,
    .bs button.list-group-item-success:hover {
      color: #176a3a;
      background-color: #afecc9; }
    .bs a.list-group-item-success.active,
    .bs button.list-group-item-success.active {
      color: #fff;
      background-color: #176a3a;
      border-color: #176a3a; }
  .bs .list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb; }
  .bs a.list-group-item-info,
  .bs button.list-group-item-info {
    color: #0c5460; }
    .bs a.list-group-item-info:focus, .bs a.list-group-item-info:hover,
    .bs button.list-group-item-info:focus,
    .bs button.list-group-item-info:hover {
      color: #0c5460;
      background-color: #abdde5; }
    .bs a.list-group-item-info.active,
    .bs button.list-group-item-info.active {
      color: #fff;
      background-color: #0c5460;
      border-color: #0c5460; }
  .bs .list-group-item-warning {
    color: #7d6608;
    background-color: #fbeebc; }
  .bs a.list-group-item-warning,
  .bs button.list-group-item-warning {
    color: #7d6608; }
    .bs a.list-group-item-warning:focus, .bs a.list-group-item-warning:hover,
    .bs button.list-group-item-warning:focus,
    .bs button.list-group-item-warning:hover {
      color: #7d6608;
      background-color: #fae8a4; }
    .bs a.list-group-item-warning.active,
    .bs button.list-group-item-warning.active {
      color: #fff;
      background-color: #7d6608;
      border-color: #7d6608; }
  .bs .list-group-item-danger {
    color: #792820;
    background-color: #f9cdc9; }
  .bs a.list-group-item-danger,
  .bs button.list-group-item-danger {
    color: #792820; }
    .bs a.list-group-item-danger:focus, .bs a.list-group-item-danger:hover,
    .bs button.list-group-item-danger:focus,
    .bs button.list-group-item-danger:hover {
      color: #792820;
      background-color: #f6b8b2; }
    .bs a.list-group-item-danger.active,
    .bs button.list-group-item-danger.active {
      color: #fff;
      background-color: #792820;
      border-color: #792820; }
  .bs .list-group-item-light {
    color: #818182;
    background-color: #fdfdfe; }
  .bs a.list-group-item-light,
  .bs button.list-group-item-light {
    color: #818182; }
    .bs a.list-group-item-light:focus, .bs a.list-group-item-light:hover,
    .bs button.list-group-item-light:focus,
    .bs button.list-group-item-light:hover {
      color: #818182;
      background-color: #ececf6; }
    .bs a.list-group-item-light.active,
    .bs button.list-group-item-light.active {
      color: #fff;
      background-color: #818182;
      border-color: #818182; }
  .bs .list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca; }
  .bs a.list-group-item-dark,
  .bs button.list-group-item-dark {
    color: #1b1e21; }
    .bs a.list-group-item-dark:focus, .bs a.list-group-item-dark:hover,
    .bs button.list-group-item-dark:focus,
    .bs button.list-group-item-dark:hover {
      color: #1b1e21;
      background-color: #b9bbbe; }
    .bs a.list-group-item-dark.active,
    .bs button.list-group-item-dark.active {
      color: #fff;
      background-color: #1b1e21;
      border-color: #1b1e21; }
  .bs .list-group-item-orange {
    color: #7d420e;
    background-color: #fbdbbf; }
  .bs a.list-group-item-orange,
  .bs button.list-group-item-orange {
    color: #7d420e; }
    .bs a.list-group-item-orange:focus, .bs a.list-group-item-orange:hover,
    .bs button.list-group-item-orange:focus,
    .bs button.list-group-item-orange:hover {
      color: #7d420e;
      background-color: #facea7; }
    .bs a.list-group-item-orange.active,
    .bs button.list-group-item-orange.active {
      color: #fff;
      background-color: #7d420e;
      border-color: #7d420e; }
  .bs .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5; }
    .bs .close:focus, .bs .close:hover {
      color: #000;
      text-decoration: none;
      opacity: .75; }
  .bs button.close {
    padding: 0;
    background: transparent;
    border: 0;
    -webkit-appearance: none; }
  .bs .modal-open {
    overflow: hidden; }
  .bs .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0; }
    .bs .modal.fade .modal-dialog {
      transition: transform 0.3s ease-out;
      transform: translate(0, -25%); }
    .bs .modal.show .modal-dialog {
      transform: translate(0, 0); }
  .bs .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }
  .bs .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
    pointer-events: none; }
  .bs .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    outline: 0; }
  .bs .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
    .bs .modal-backdrop.fade {
      opacity: 0; }
    .bs .modal-backdrop.show {
      opacity: 0.5; }
  .bs .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
    .bs .modal-header .close {
      padding: 15px;
      margin: -15px -15px -15px auto; }
  .bs .modal-title {
    margin-bottom: 0;
    line-height: 1; }
  .bs .modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 15px; }
  .bs .modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 15px;
    border-top: 1px solid #e9ecef; }
    .bs .modal-footer > :not(:first-child) {
      margin-left: .25rem; }
    .bs .modal-footer > :not(:last-child) {
      margin-right: .25rem; }
  .bs .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }
  @media (min-width: 576px) {
    .bs .modal-dialog {
      max-width: 500px;
      margin: 30px auto; }
    .bs .modal-sm {
      max-width: 300px; } }
  @media (min-width: 992px) {
    .bs .modal-lg {
      max-width: 800px; } }
  .bs .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0; }
    .bs .tooltip.show {
      opacity: 0.9; }
    .bs .tooltip .arrow {
      position: absolute;
      display: block;
      width: 5px;
      height: 5px; }
    .bs .tooltip .arrow::before {
      position: absolute;
      border-color: transparent;
      border-style: solid; }
    .bs .tooltip.bs-tooltip-top, .bs .tooltip.bs-tooltip-auto[x-placement^="top"] {
      padding: 5px 0; }
      .bs .tooltip.bs-tooltip-top .arrow, .bs .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow {
        bottom: 0; }
      .bs .tooltip.bs-tooltip-top .arrow::before, .bs .tooltip.bs-tooltip-auto[x-placement^="top"] .arrow::before {
        margin-left: -3px;
        content: "";
        border-width: 5px 5px 0;
        border-top-color: #000; }
    .bs .tooltip.bs-tooltip-right, .bs .tooltip.bs-tooltip-auto[x-placement^="right"] {
      padding: 0 5px; }
      .bs .tooltip.bs-tooltip-right .arrow, .bs .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow {
        left: 0; }
      .bs .tooltip.bs-tooltip-right .arrow::before, .bs .tooltip.bs-tooltip-auto[x-placement^="right"] .arrow::before {
        margin-top: -3px;
        content: "";
        border-width: 5px 5px 5px 0;
        border-right-color: #000; }
    .bs .tooltip.bs-tooltip-bottom, .bs .tooltip.bs-tooltip-auto[x-placement^="bottom"] {
      padding: 5px 0; }
      .bs .tooltip.bs-tooltip-bottom .arrow, .bs .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow {
        top: 0; }
      .bs .tooltip.bs-tooltip-bottom .arrow::before, .bs .tooltip.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
        margin-left: -3px;
        content: "";
        border-width: 0 5px 5px;
        border-bottom-color: #000; }
    .bs .tooltip.bs-tooltip-left, .bs .tooltip.bs-tooltip-auto[x-placement^="left"] {
      padding: 0 5px; }
      .bs .tooltip.bs-tooltip-left .arrow, .bs .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow {
        right: 0; }
      .bs .tooltip.bs-tooltip-left .arrow::before, .bs .tooltip.bs-tooltip-auto[x-placement^="left"] .arrow::before {
        right: 0;
        margin-top: -3px;
        content: "";
        border-width: 5px 0 5px 5px;
        border-left-color: #000; }
  .bs .tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0; }
  .bs .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0; }
    .bs .popover .arrow {
      position: absolute;
      display: block;
      width: 0.8rem;
      height: 0.4rem; }
    .bs .popover .arrow::before,
    .bs .popover .arrow::after {
      position: absolute;
      display: block;
      border-color: transparent;
      border-style: solid; }
    .bs .popover .arrow::before {
      content: "";
      border-width: 0.8rem; }
    .bs .popover .arrow::after {
      content: "";
      border-width: 0.8rem; }
    .bs .popover.bs-popover-top, .bs .popover.bs-popover-auto[x-placement^="top"] {
      margin-bottom: 0.8rem; }
      .bs .popover.bs-popover-top .arrow, .bs .popover.bs-popover-auto[x-placement^="top"] .arrow {
        bottom: 0; }
      .bs .popover.bs-popover-top .arrow::before, .bs .popover.bs-popover-auto[x-placement^="top"] .arrow::before,
      .bs .popover.bs-popover-top .arrow::after, .bs .popover.bs-popover-auto[x-placement^="top"] .arrow::after {
        border-bottom-width: 0; }
      .bs .popover.bs-popover-top .arrow::before, .bs .popover.bs-popover-auto[x-placement^="top"] .arrow::before {
        bottom: -0.8rem;
        margin-left: -0.8rem;
        border-top-color: rgba(0, 0, 0, 0.25); }
      .bs .popover.bs-popover-top .arrow::after, .bs .popover.bs-popover-auto[x-placement^="top"] .arrow::after {
        bottom: calc((0.8rem - 1px) * -1);
        margin-left: -0.8rem;
        border-top-color: #fff; }
    .bs .popover.bs-popover-right, .bs .popover.bs-popover-auto[x-placement^="right"] {
      margin-left: 0.8rem; }
      .bs .popover.bs-popover-right .arrow, .bs .popover.bs-popover-auto[x-placement^="right"] .arrow {
        left: 0; }
      .bs .popover.bs-popover-right .arrow::before, .bs .popover.bs-popover-auto[x-placement^="right"] .arrow::before,
      .bs .popover.bs-popover-right .arrow::after, .bs .popover.bs-popover-auto[x-placement^="right"] .arrow::after {
        margin-top: -0.8rem;
        border-left-width: 0; }
      .bs .popover.bs-popover-right .arrow::before, .bs .popover.bs-popover-auto[x-placement^="right"] .arrow::before {
        left: -0.8rem;
        border-right-color: rgba(0, 0, 0, 0.25); }
      .bs .popover.bs-popover-right .arrow::after, .bs .popover.bs-popover-auto[x-placement^="right"] .arrow::after {
        left: calc((0.8rem - 1px) * -1);
        border-right-color: #fff; }
    .bs .popover.bs-popover-bottom, .bs .popover.bs-popover-auto[x-placement^="bottom"] {
      margin-top: 0.8rem; }
      .bs .popover.bs-popover-bottom .arrow, .bs .popover.bs-popover-auto[x-placement^="bottom"] .arrow {
        top: 0; }
      .bs .popover.bs-popover-bottom .arrow::before, .bs .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before,
      .bs .popover.bs-popover-bottom .arrow::after, .bs .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
        margin-left: -0.8rem;
        border-top-width: 0; }
      .bs .popover.bs-popover-bottom .arrow::before, .bs .popover.bs-popover-auto[x-placement^="bottom"] .arrow::before {
        top: -0.8rem;
        border-bottom-color: rgba(0, 0, 0, 0.25); }
      .bs .popover.bs-popover-bottom .arrow::after, .bs .popover.bs-popover-auto[x-placement^="bottom"] .arrow::after {
        top: calc((0.8rem - 1px) * -1);
        border-bottom-color: #fff; }
      .bs .popover.bs-popover-bottom .popover-header::before, .bs .popover.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
        position: absolute;
        top: 0;
        left: 50%;
        display: block;
        width: 20px;
        margin-left: -10px;
        content: "";
        border-bottom: 1px solid #f7f7f7; }
    .bs .popover.bs-popover-left, .bs .popover.bs-popover-auto[x-placement^="left"] {
      margin-right: 0.8rem; }
      .bs .popover.bs-popover-left .arrow, .bs .popover.bs-popover-auto[x-placement^="left"] .arrow {
        right: 0; }
      .bs .popover.bs-popover-left .arrow::before, .bs .popover.bs-popover-auto[x-placement^="left"] .arrow::before,
      .bs .popover.bs-popover-left .arrow::after, .bs .popover.bs-popover-auto[x-placement^="left"] .arrow::after {
        margin-top: -0.8rem;
        border-right-width: 0; }
      .bs .popover.bs-popover-left .arrow::before, .bs .popover.bs-popover-auto[x-placement^="left"] .arrow::before {
        right: -0.8rem;
        border-left-color: rgba(0, 0, 0, 0.25); }
      .bs .popover.bs-popover-left .arrow::after, .bs .popover.bs-popover-auto[x-placement^="left"] .arrow::after {
        right: calc((0.8rem - 1px) * -1);
        border-left-color: #fff; }
  .bs .popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0 - 1px);
    border-top-right-radius: calc(0 - 1px); }
    .bs .popover-header:empty {
      display: none; }
  .bs .popover-body {
    padding: 0.5rem 0.75rem;
    color: #505050; }
  .bs .carousel {
    position: relative; }
  .bs .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden; }
  .bs .carousel-item {
    position: relative;
    display: none;
    align-items: center;
    width: 100%;
    transition: transform 0.6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px; }
  .bs .carousel-item.active,
  .bs .carousel-item-next,
  .bs .carousel-item-prev {
    display: block; }
  .bs .carousel-item-next,
  .bs .carousel-item-prev {
    position: absolute;
    top: 0; }
  .bs .carousel-item-next.carousel-item-left,
  .bs .carousel-item-prev.carousel-item-right {
    transform: translateX(0); }
    @supports (transform-style: preserve-3d) {
      .bs .carousel-item-next.carousel-item-left,
      .bs .carousel-item-prev.carousel-item-right {
        transform: translate3d(0, 0, 0); } }
  .bs .carousel-item-next,
  .bs .active.carousel-item-right {
    transform: translateX(100%); }
    @supports (transform-style: preserve-3d) {
      .bs .carousel-item-next,
      .bs .active.carousel-item-right {
        transform: translate3d(100%, 0, 0); } }
  .bs .carousel-item-prev,
  .bs .active.carousel-item-left {
    transform: translateX(-100%); }
    @supports (transform-style: preserve-3d) {
      .bs .carousel-item-prev,
      .bs .active.carousel-item-left {
        transform: translate3d(-100%, 0, 0); } }
  .bs .carousel-control-prev,
  .bs .carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5; }
    .bs .carousel-control-prev:focus, .bs .carousel-control-prev:hover,
    .bs .carousel-control-next:focus,
    .bs .carousel-control-next:hover {
      color: #fff;
      text-decoration: none;
      outline: 0;
      opacity: .9; }
  .bs .carousel-control-prev {
    left: 0; }
  .bs .carousel-control-next {
    right: 0; }
  .bs .carousel-control-prev-icon,
  .bs .carousel-control-next-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%; }
  .bs .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }
  .bs .carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }
  .bs .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none; }
    .bs .carousel-indicators li {
      position: relative;
      flex: 0 1 auto;
      width: 30px;
      height: 3px;
      margin-right: 3px;
      margin-left: 3px;
      text-indent: -999px;
      background-color: rgba(255, 255, 255, 0.5); }
      .bs .carousel-indicators li::before {
        position: absolute;
        top: -10px;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 10px;
        content: ""; }
      .bs .carousel-indicators li::after {
        position: absolute;
        bottom: -10px;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 10px;
        content: ""; }
    .bs .carousel-indicators .active {
      background-color: #fff; }
  .bs .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center; }
  .bs .align-baseline {
    vertical-align: baseline !important; }
  .bs .align-top {
    vertical-align: top !important; }
  .bs .align-middle {
    vertical-align: middle !important; }
  .bs .align-bottom {
    vertical-align: bottom !important; }
  .bs .align-text-bottom {
    vertical-align: text-bottom !important; }
  .bs .align-text-top {
    vertical-align: text-top !important; }
  .bs .bg-primary {
    background-color: #3398dc !important; }
  .bs a.bg-primary:focus, .bs a.bg-primary:hover {
    background-color: #207dbc !important; }
  .bs .bg-secondary {
    background-color: #868e96 !important; }
  .bs a.bg-secondary:focus, .bs a.bg-secondary:hover {
    background-color: #6c757d !important; }
  .bs .bg-success {
    background-color: #2dcc70 !important; }
  .bs a.bg-success:focus, .bs a.bg-success:hover {
    background-color: #24a259 !important; }
  .bs .bg-info {
    background-color: #17a2b8 !important; }
  .bs a.bg-info:focus, .bs a.bg-info:hover {
    background-color: #117a8b !important; }
  .bs .bg-warning {
    background-color: #f1c40f !important; }
  .bs a.bg-warning:focus, .bs a.bg-warning:hover {
    background-color: #c29d0b !important; }
  .bs .bg-danger {
    background-color: #e84c3d !important; }
  .bs a.bg-danger:focus, .bs a.bg-danger:hover {
    background-color: #d82a1a !important; }
  .bs .bg-light {
    background-color: #f8f9fa !important; }
  .bs a.bg-light:focus, .bs a.bg-light:hover {
    background-color: #dae0e5 !important; }
  .bs .bg-dark {
    background-color: #343a40 !important; }
  .bs a.bg-dark:focus, .bs a.bg-dark:hover {
    background-color: #1d2124 !important; }
  .bs .bg-orange {
    background-color: #f07e1a !important; }
  .bs a.bg-orange:focus, .bs a.bg-orange:hover {
    background-color: #ca650d !important; }
  .bs .bg-white {
    background-color: #fff !important; }
  .bs .bg-transparent {
    background-color: transparent !important; }
  .bs .border {
    border: 1px solid #e9ecef !important; }
  .bs .border-0 {
    border: 0 !important; }
  .bs .border-top-0 {
    border-top: 0 !important; }
  .bs .border-right-0 {
    border-right: 0 !important; }
  .bs .border-bottom-0 {
    border-bottom: 0 !important; }
  .bs .border-left-0 {
    border-left: 0 !important; }
  .bs .border-primary {
    border-color: #3398dc !important; }
  .bs .border-secondary {
    border-color: #868e96 !important; }
  .bs .border-success {
    border-color: #2dcc70 !important; }
  .bs .border-info {
    border-color: #17a2b8 !important; }
  .bs .border-warning {
    border-color: #f1c40f !important; }
  .bs .border-danger {
    border-color: #e84c3d !important; }
  .bs .border-light {
    border-color: #f8f9fa !important; }
  .bs .border-dark {
    border-color: #343a40 !important; }
  .bs .border-orange {
    border-color: #f07e1a !important; }
  .bs .border-white {
    border-color: #fff !important; }
  .bs .rounded {
    border-radius: 0 !important; }
  .bs .rounded-top {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important; }
  .bs .rounded-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important; }
  .bs .rounded-bottom {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important; }
  .bs .rounded-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important; }
  .bs .rounded-circle {
    border-radius: 50% !important; }
  .bs .rounded-0 {
    border-radius: 0 !important; }
  .bs .clearfix::after {
    display: block;
    clear: both;
    content: ""; }
  .bs .d-none {
    display: none !important; }
  .bs .d-inline {
    display: inline !important; }
  .bs .d-inline-block {
    display: inline-block !important; }
  .bs .d-block {
    display: block !important; }
  .bs .d-table {
    display: table !important; }
  .bs .d-table-row {
    display: table-row !important; }
  .bs .d-table-cell {
    display: table-cell !important; }
  .bs .d-flex {
    display: flex !important; }
  .bs .d-inline-flex {
    display: inline-flex !important; }
  @media (min-width: 576px) {
    .bs .d-sm-none {
      display: none !important; }
    .bs .d-sm-inline {
      display: inline !important; }
    .bs .d-sm-inline-block {
      display: inline-block !important; }
    .bs .d-sm-block {
      display: block !important; }
    .bs .d-sm-table {
      display: table !important; }
    .bs .d-sm-table-row {
      display: table-row !important; }
    .bs .d-sm-table-cell {
      display: table-cell !important; }
    .bs .d-sm-flex {
      display: flex !important; }
    .bs .d-sm-inline-flex {
      display: inline-flex !important; } }
  @media (min-width: 768px) {
    .bs .d-md-none {
      display: none !important; }
    .bs .d-md-inline {
      display: inline !important; }
    .bs .d-md-inline-block {
      display: inline-block !important; }
    .bs .d-md-block {
      display: block !important; }
    .bs .d-md-table {
      display: table !important; }
    .bs .d-md-table-row {
      display: table-row !important; }
    .bs .d-md-table-cell {
      display: table-cell !important; }
    .bs .d-md-flex {
      display: flex !important; }
    .bs .d-md-inline-flex {
      display: inline-flex !important; } }
  @media (min-width: 992px) {
    .bs .d-lg-none {
      display: none !important; }
    .bs .d-lg-inline {
      display: inline !important; }
    .bs .d-lg-inline-block {
      display: inline-block !important; }
    .bs .d-lg-block {
      display: block !important; }
    .bs .d-lg-table {
      display: table !important; }
    .bs .d-lg-table-row {
      display: table-row !important; }
    .bs .d-lg-table-cell {
      display: table-cell !important; }
    .bs .d-lg-flex {
      display: flex !important; }
    .bs .d-lg-inline-flex {
      display: inline-flex !important; } }
  @media (min-width: 1200px) {
    .bs .d-xl-none {
      display: none !important; }
    .bs .d-xl-inline {
      display: inline !important; }
    .bs .d-xl-inline-block {
      display: inline-block !important; }
    .bs .d-xl-block {
      display: block !important; }
    .bs .d-xl-table {
      display: table !important; }
    .bs .d-xl-table-row {
      display: table-row !important; }
    .bs .d-xl-table-cell {
      display: table-cell !important; }
    .bs .d-xl-flex {
      display: flex !important; }
    .bs .d-xl-inline-flex {
      display: inline-flex !important; } }
  .bs .d-print-block {
    display: none !important; }
    @media print {
      .bs .d-print-block {
        display: block !important; } }
  .bs .d-print-inline {
    display: none !important; }
    @media print {
      .bs .d-print-inline {
        display: inline !important; } }
  .bs .d-print-inline-block {
    display: none !important; }
    @media print {
      .bs .d-print-inline-block {
        display: inline-block !important; } }
  @media print {
    .bs .d-print-none {
      display: none !important; } }
  .bs .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden; }
    .bs .embed-responsive::before {
      display: block;
      content: ""; }
    .bs .embed-responsive .embed-responsive-item,
    .bs .embed-responsive iframe,
    .bs .embed-responsive embed,
    .bs .embed-responsive object,
    .bs .embed-responsive video {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }
  .bs .embed-responsive-21by9::before {
    padding-top: 42.85714%; }
  .bs .embed-responsive-16by9::before {
    padding-top: 56.25%; }
  .bs .embed-responsive-4by3::before {
    padding-top: 75%; }
  .bs .embed-responsive-1by1::before {
    padding-top: 100%; }
  .bs .flex-row {
    flex-direction: row !important; }
  .bs .flex-column {
    flex-direction: column !important; }
  .bs .flex-row-reverse {
    flex-direction: row-reverse !important; }
  .bs .flex-column-reverse {
    flex-direction: column-reverse !important; }
  .bs .flex-wrap {
    flex-wrap: wrap !important; }
  .bs .flex-nowrap {
    flex-wrap: nowrap !important; }
  .bs .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .bs .justify-content-start {
    justify-content: flex-start !important; }
  .bs .justify-content-end {
    justify-content: flex-end !important; }
  .bs .justify-content-center {
    justify-content: center !important; }
  .bs .justify-content-between {
    justify-content: space-between !important; }
  .bs .justify-content-around {
    justify-content: space-around !important; }
  .bs .align-items-start {
    align-items: flex-start !important; }
  .bs .align-items-end {
    align-items: flex-end !important; }
  .bs .align-items-center {
    align-items: center !important; }
  .bs .align-items-baseline {
    align-items: baseline !important; }
  .bs .align-items-stretch {
    align-items: stretch !important; }
  .bs .align-content-start {
    align-content: flex-start !important; }
  .bs .align-content-end {
    align-content: flex-end !important; }
  .bs .align-content-center {
    align-content: center !important; }
  .bs .align-content-between {
    align-content: space-between !important; }
  .bs .align-content-around {
    align-content: space-around !important; }
  .bs .align-content-stretch {
    align-content: stretch !important; }
  .bs .align-self-auto {
    -ms-grid-row-align: auto !important;
    align-self: auto !important; }
  .bs .align-self-start {
    align-self: flex-start !important; }
  .bs .align-self-end {
    align-self: flex-end !important; }
  .bs .align-self-center {
    -ms-grid-row-align: center !important;
    align-self: center !important; }
  .bs .align-self-baseline {
    align-self: baseline !important; }
  .bs .align-self-stretch {
    -ms-grid-row-align: stretch !important;
    align-self: stretch !important; }
  @media (min-width: 576px) {
    .bs .flex-sm-row {
      flex-direction: row !important; }
    .bs .flex-sm-column {
      flex-direction: column !important; }
    .bs .flex-sm-row-reverse {
      flex-direction: row-reverse !important; }
    .bs .flex-sm-column-reverse {
      flex-direction: column-reverse !important; }
    .bs .flex-sm-wrap {
      flex-wrap: wrap !important; }
    .bs .flex-sm-nowrap {
      flex-wrap: nowrap !important; }
    .bs .flex-sm-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .bs .justify-content-sm-start {
      justify-content: flex-start !important; }
    .bs .justify-content-sm-end {
      justify-content: flex-end !important; }
    .bs .justify-content-sm-center {
      justify-content: center !important; }
    .bs .justify-content-sm-between {
      justify-content: space-between !important; }
    .bs .justify-content-sm-around {
      justify-content: space-around !important; }
    .bs .align-items-sm-start {
      align-items: flex-start !important; }
    .bs .align-items-sm-end {
      align-items: flex-end !important; }
    .bs .align-items-sm-center {
      align-items: center !important; }
    .bs .align-items-sm-baseline {
      align-items: baseline !important; }
    .bs .align-items-sm-stretch {
      align-items: stretch !important; }
    .bs .align-content-sm-start {
      align-content: flex-start !important; }
    .bs .align-content-sm-end {
      align-content: flex-end !important; }
    .bs .align-content-sm-center {
      align-content: center !important; }
    .bs .align-content-sm-between {
      align-content: space-between !important; }
    .bs .align-content-sm-around {
      align-content: space-around !important; }
    .bs .align-content-sm-stretch {
      align-content: stretch !important; }
    .bs .align-self-sm-auto {
      -ms-grid-row-align: auto !important;
      align-self: auto !important; }
    .bs .align-self-sm-start {
      align-self: flex-start !important; }
    .bs .align-self-sm-end {
      align-self: flex-end !important; }
    .bs .align-self-sm-center {
      -ms-grid-row-align: center !important;
      align-self: center !important; }
    .bs .align-self-sm-baseline {
      align-self: baseline !important; }
    .bs .align-self-sm-stretch {
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important; } }
  @media (min-width: 768px) {
    .bs .flex-md-row {
      flex-direction: row !important; }
    .bs .flex-md-column {
      flex-direction: column !important; }
    .bs .flex-md-row-reverse {
      flex-direction: row-reverse !important; }
    .bs .flex-md-column-reverse {
      flex-direction: column-reverse !important; }
    .bs .flex-md-wrap {
      flex-wrap: wrap !important; }
    .bs .flex-md-nowrap {
      flex-wrap: nowrap !important; }
    .bs .flex-md-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .bs .justify-content-md-start {
      justify-content: flex-start !important; }
    .bs .justify-content-md-end {
      justify-content: flex-end !important; }
    .bs .justify-content-md-center {
      justify-content: center !important; }
    .bs .justify-content-md-between {
      justify-content: space-between !important; }
    .bs .justify-content-md-around {
      justify-content: space-around !important; }
    .bs .align-items-md-start {
      align-items: flex-start !important; }
    .bs .align-items-md-end {
      align-items: flex-end !important; }
    .bs .align-items-md-center {
      align-items: center !important; }
    .bs .align-items-md-baseline {
      align-items: baseline !important; }
    .bs .align-items-md-stretch {
      align-items: stretch !important; }
    .bs .align-content-md-start {
      align-content: flex-start !important; }
    .bs .align-content-md-end {
      align-content: flex-end !important; }
    .bs .align-content-md-center {
      align-content: center !important; }
    .bs .align-content-md-between {
      align-content: space-between !important; }
    .bs .align-content-md-around {
      align-content: space-around !important; }
    .bs .align-content-md-stretch {
      align-content: stretch !important; }
    .bs .align-self-md-auto {
      -ms-grid-row-align: auto !important;
      align-self: auto !important; }
    .bs .align-self-md-start {
      align-self: flex-start !important; }
    .bs .align-self-md-end {
      align-self: flex-end !important; }
    .bs .align-self-md-center {
      -ms-grid-row-align: center !important;
      align-self: center !important; }
    .bs .align-self-md-baseline {
      align-self: baseline !important; }
    .bs .align-self-md-stretch {
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important; } }
  @media (min-width: 992px) {
    .bs .flex-lg-row {
      flex-direction: row !important; }
    .bs .flex-lg-column {
      flex-direction: column !important; }
    .bs .flex-lg-row-reverse {
      flex-direction: row-reverse !important; }
    .bs .flex-lg-column-reverse {
      flex-direction: column-reverse !important; }
    .bs .flex-lg-wrap {
      flex-wrap: wrap !important; }
    .bs .flex-lg-nowrap {
      flex-wrap: nowrap !important; }
    .bs .flex-lg-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .bs .justify-content-lg-start {
      justify-content: flex-start !important; }
    .bs .justify-content-lg-end {
      justify-content: flex-end !important; }
    .bs .justify-content-lg-center {
      justify-content: center !important; }
    .bs .justify-content-lg-between {
      justify-content: space-between !important; }
    .bs .justify-content-lg-around {
      justify-content: space-around !important; }
    .bs .align-items-lg-start {
      align-items: flex-start !important; }
    .bs .align-items-lg-end {
      align-items: flex-end !important; }
    .bs .align-items-lg-center {
      align-items: center !important; }
    .bs .align-items-lg-baseline {
      align-items: baseline !important; }
    .bs .align-items-lg-stretch {
      align-items: stretch !important; }
    .bs .align-content-lg-start {
      align-content: flex-start !important; }
    .bs .align-content-lg-end {
      align-content: flex-end !important; }
    .bs .align-content-lg-center {
      align-content: center !important; }
    .bs .align-content-lg-between {
      align-content: space-between !important; }
    .bs .align-content-lg-around {
      align-content: space-around !important; }
    .bs .align-content-lg-stretch {
      align-content: stretch !important; }
    .bs .align-self-lg-auto {
      -ms-grid-row-align: auto !important;
      align-self: auto !important; }
    .bs .align-self-lg-start {
      align-self: flex-start !important; }
    .bs .align-self-lg-end {
      align-self: flex-end !important; }
    .bs .align-self-lg-center {
      -ms-grid-row-align: center !important;
      align-self: center !important; }
    .bs .align-self-lg-baseline {
      align-self: baseline !important; }
    .bs .align-self-lg-stretch {
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important; } }
  @media (min-width: 1200px) {
    .bs .flex-xl-row {
      flex-direction: row !important; }
    .bs .flex-xl-column {
      flex-direction: column !important; }
    .bs .flex-xl-row-reverse {
      flex-direction: row-reverse !important; }
    .bs .flex-xl-column-reverse {
      flex-direction: column-reverse !important; }
    .bs .flex-xl-wrap {
      flex-wrap: wrap !important; }
    .bs .flex-xl-nowrap {
      flex-wrap: nowrap !important; }
    .bs .flex-xl-wrap-reverse {
      flex-wrap: wrap-reverse !important; }
    .bs .justify-content-xl-start {
      justify-content: flex-start !important; }
    .bs .justify-content-xl-end {
      justify-content: flex-end !important; }
    .bs .justify-content-xl-center {
      justify-content: center !important; }
    .bs .justify-content-xl-between {
      justify-content: space-between !important; }
    .bs .justify-content-xl-around {
      justify-content: space-around !important; }
    .bs .align-items-xl-start {
      align-items: flex-start !important; }
    .bs .align-items-xl-end {
      align-items: flex-end !important; }
    .bs .align-items-xl-center {
      align-items: center !important; }
    .bs .align-items-xl-baseline {
      align-items: baseline !important; }
    .bs .align-items-xl-stretch {
      align-items: stretch !important; }
    .bs .align-content-xl-start {
      align-content: flex-start !important; }
    .bs .align-content-xl-end {
      align-content: flex-end !important; }
    .bs .align-content-xl-center {
      align-content: center !important; }
    .bs .align-content-xl-between {
      align-content: space-between !important; }
    .bs .align-content-xl-around {
      align-content: space-around !important; }
    .bs .align-content-xl-stretch {
      align-content: stretch !important; }
    .bs .align-self-xl-auto {
      -ms-grid-row-align: auto !important;
      align-self: auto !important; }
    .bs .align-self-xl-start {
      align-self: flex-start !important; }
    .bs .align-self-xl-end {
      align-self: flex-end !important; }
    .bs .align-self-xl-center {
      -ms-grid-row-align: center !important;
      align-self: center !important; }
    .bs .align-self-xl-baseline {
      align-self: baseline !important; }
    .bs .align-self-xl-stretch {
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important; } }
  .bs .float-left {
    float: left !important; }
  .bs .float-right {
    float: right !important; }
  .bs .float-none {
    float: none !important; }
  @media (min-width: 576px) {
    .bs .float-sm-left {
      float: left !important; }
    .bs .float-sm-right {
      float: right !important; }
    .bs .float-sm-none {
      float: none !important; } }
  @media (min-width: 768px) {
    .bs .float-md-left {
      float: left !important; }
    .bs .float-md-right {
      float: right !important; }
    .bs .float-md-none {
      float: none !important; } }
  @media (min-width: 992px) {
    .bs .float-lg-left {
      float: left !important; }
    .bs .float-lg-right {
      float: right !important; }
    .bs .float-lg-none {
      float: none !important; } }
  @media (min-width: 1200px) {
    .bs .float-xl-left {
      float: left !important; }
    .bs .float-xl-right {
      float: right !important; }
    .bs .float-xl-none {
      float: none !important; } }
  .bs .position-static {
    position: static !important; }
  .bs .position-relative {
    position: relative !important; }
  .bs .position-absolute {
    position: absolute !important; }
  .bs .position-fixed {
    position: fixed !important; }
  .bs .position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important; }
  .bs .fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
  .bs .fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030; }
  @supports ((position: -webkit-sticky) or (position: sticky)) {
    .bs .sticky-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020; } }
  .bs .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0; }
  .bs .sr-only-focusable:active, .bs .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none; }
  .bs .w-25 {
    width: 25% !important; }
  .bs .w-50 {
    width: 50% !important; }
  .bs .w-75 {
    width: 75% !important; }
  .bs .w-100 {
    width: 100% !important; }
  .bs .h-25 {
    height: 25% !important; }
  .bs .h-50 {
    height: 50% !important; }
  .bs .h-75 {
    height: 75% !important; }
  .bs .h-100 {
    height: 100% !important; }
  .bs .mw-100 {
    max-width: 100% !important; }
  .bs .mh-100 {
    max-height: 100% !important; }
  .bs .m-0 {
    margin: 0 !important; }
  .bs .mt-0,
  .bs .my-0 {
    margin-top: 0 !important; }
  .bs .mr-0,
  .bs .mx-0 {
    margin-right: 0 !important; }
  .bs .mb-0,
  .bs .my-0 {
    margin-bottom: 0 !important; }
  .bs .ml-0,
  .bs .mx-0 {
    margin-left: 0 !important; }
  .bs .m-1 {
    margin: 0.25rem !important; }
  .bs .mt-1,
  .bs .my-1 {
    margin-top: 0.25rem !important; }
  .bs .mr-1,
  .bs .mx-1 {
    margin-right: 0.25rem !important; }
  .bs .mb-1,
  .bs .my-1 {
    margin-bottom: 0.25rem !important; }
  .bs .ml-1,
  .bs .mx-1 {
    margin-left: 0.25rem !important; }
  .bs .m-2 {
    margin: 0.5rem !important; }
  .bs .mt-2,
  .bs .my-2 {
    margin-top: 0.5rem !important; }
  .bs .mr-2,
  .bs .mx-2 {
    margin-right: 0.5rem !important; }
  .bs .mb-2,
  .bs .my-2 {
    margin-bottom: 0.5rem !important; }
  .bs .ml-2,
  .bs .mx-2 {
    margin-left: 0.5rem !important; }
  .bs .m-3 {
    margin: 1rem !important; }
  .bs .mt-3,
  .bs .my-3 {
    margin-top: 1rem !important; }
  .bs .mr-3,
  .bs .mx-3 {
    margin-right: 1rem !important; }
  .bs .mb-3,
  .bs .my-3 {
    margin-bottom: 1rem !important; }
  .bs .ml-3,
  .bs .mx-3 {
    margin-left: 1rem !important; }
  .bs .m-4 {
    margin: 1.5rem !important; }
  .bs .mt-4,
  .bs .my-4 {
    margin-top: 1.5rem !important; }
  .bs .mr-4,
  .bs .mx-4 {
    margin-right: 1.5rem !important; }
  .bs .mb-4,
  .bs .my-4 {
    margin-bottom: 1.5rem !important; }
  .bs .ml-4,
  .bs .mx-4 {
    margin-left: 1.5rem !important; }
  .bs .m-5 {
    margin: 3rem !important; }
  .bs .mt-5,
  .bs .my-5 {
    margin-top: 3rem !important; }
  .bs .mr-5,
  .bs .mx-5 {
    margin-right: 3rem !important; }
  .bs .mb-5,
  .bs .my-5 {
    margin-bottom: 3rem !important; }
  .bs .ml-5,
  .bs .mx-5 {
    margin-left: 3rem !important; }
  .bs .p-0 {
    padding: 0 !important; }
  .bs .pt-0,
  .bs .py-0 {
    padding-top: 0 !important; }
  .bs .pr-0,
  .bs .px-0 {
    padding-right: 0 !important; }
  .bs .pb-0,
  .bs .py-0 {
    padding-bottom: 0 !important; }
  .bs .pl-0,
  .bs .px-0 {
    padding-left: 0 !important; }
  .bs .p-1 {
    padding: 0.25rem !important; }
  .bs .pt-1,
  .bs .py-1 {
    padding-top: 0.25rem !important; }
  .bs .pr-1,
  .bs .px-1 {
    padding-right: 0.25rem !important; }
  .bs .pb-1,
  .bs .py-1 {
    padding-bottom: 0.25rem !important; }
  .bs .pl-1,
  .bs .px-1 {
    padding-left: 0.25rem !important; }
  .bs .p-2 {
    padding: 0.5rem !important; }
  .bs .pt-2,
  .bs .py-2 {
    padding-top: 0.5rem !important; }
  .bs .pr-2,
  .bs .px-2 {
    padding-right: 0.5rem !important; }
  .bs .pb-2,
  .bs .py-2 {
    padding-bottom: 0.5rem !important; }
  .bs .pl-2,
  .bs .px-2 {
    padding-left: 0.5rem !important; }
  .bs .p-3 {
    padding: 1rem !important; }
  .bs .pt-3,
  .bs .py-3 {
    padding-top: 1rem !important; }
  .bs .pr-3,
  .bs .px-3 {
    padding-right: 1rem !important; }
  .bs .pb-3,
  .bs .py-3 {
    padding-bottom: 1rem !important; }
  .bs .pl-3,
  .bs .px-3 {
    padding-left: 1rem !important; }
  .bs .p-4 {
    padding: 1.5rem !important; }
  .bs .pt-4,
  .bs .py-4 {
    padding-top: 1.5rem !important; }
  .bs .pr-4,
  .bs .px-4 {
    padding-right: 1.5rem !important; }
  .bs .pb-4,
  .bs .py-4 {
    padding-bottom: 1.5rem !important; }
  .bs .pl-4,
  .bs .px-4 {
    padding-left: 1.5rem !important; }
  .bs .p-5 {
    padding: 3rem !important; }
  .bs .pt-5,
  .bs .py-5 {
    padding-top: 3rem !important; }
  .bs .pr-5,
  .bs .px-5 {
    padding-right: 3rem !important; }
  .bs .pb-5,
  .bs .py-5 {
    padding-bottom: 3rem !important; }
  .bs .pl-5,
  .bs .px-5 {
    padding-left: 3rem !important; }
  .bs .m-auto {
    margin: auto !important; }
  .bs .mt-auto,
  .bs .my-auto {
    margin-top: auto !important; }
  .bs .mr-auto,
  .bs .mx-auto {
    margin-right: auto !important; }
  .bs .mb-auto,
  .bs .my-auto {
    margin-bottom: auto !important; }
  .bs .ml-auto,
  .bs .mx-auto {
    margin-left: auto !important; }
  @media (min-width: 576px) {
    .bs .m-sm-0 {
      margin: 0 !important; }
    .bs .mt-sm-0,
    .bs .my-sm-0 {
      margin-top: 0 !important; }
    .bs .mr-sm-0,
    .bs .mx-sm-0 {
      margin-right: 0 !important; }
    .bs .mb-sm-0,
    .bs .my-sm-0 {
      margin-bottom: 0 !important; }
    .bs .ml-sm-0,
    .bs .mx-sm-0 {
      margin-left: 0 !important; }
    .bs .m-sm-1 {
      margin: 0.25rem !important; }
    .bs .mt-sm-1,
    .bs .my-sm-1 {
      margin-top: 0.25rem !important; }
    .bs .mr-sm-1,
    .bs .mx-sm-1 {
      margin-right: 0.25rem !important; }
    .bs .mb-sm-1,
    .bs .my-sm-1 {
      margin-bottom: 0.25rem !important; }
    .bs .ml-sm-1,
    .bs .mx-sm-1 {
      margin-left: 0.25rem !important; }
    .bs .m-sm-2 {
      margin: 0.5rem !important; }
    .bs .mt-sm-2,
    .bs .my-sm-2 {
      margin-top: 0.5rem !important; }
    .bs .mr-sm-2,
    .bs .mx-sm-2 {
      margin-right: 0.5rem !important; }
    .bs .mb-sm-2,
    .bs .my-sm-2 {
      margin-bottom: 0.5rem !important; }
    .bs .ml-sm-2,
    .bs .mx-sm-2 {
      margin-left: 0.5rem !important; }
    .bs .m-sm-3 {
      margin: 1rem !important; }
    .bs .mt-sm-3,
    .bs .my-sm-3 {
      margin-top: 1rem !important; }
    .bs .mr-sm-3,
    .bs .mx-sm-3 {
      margin-right: 1rem !important; }
    .bs .mb-sm-3,
    .bs .my-sm-3 {
      margin-bottom: 1rem !important; }
    .bs .ml-sm-3,
    .bs .mx-sm-3 {
      margin-left: 1rem !important; }
    .bs .m-sm-4 {
      margin: 1.5rem !important; }
    .bs .mt-sm-4,
    .bs .my-sm-4 {
      margin-top: 1.5rem !important; }
    .bs .mr-sm-4,
    .bs .mx-sm-4 {
      margin-right: 1.5rem !important; }
    .bs .mb-sm-4,
    .bs .my-sm-4 {
      margin-bottom: 1.5rem !important; }
    .bs .ml-sm-4,
    .bs .mx-sm-4 {
      margin-left: 1.5rem !important; }
    .bs .m-sm-5 {
      margin: 3rem !important; }
    .bs .mt-sm-5,
    .bs .my-sm-5 {
      margin-top: 3rem !important; }
    .bs .mr-sm-5,
    .bs .mx-sm-5 {
      margin-right: 3rem !important; }
    .bs .mb-sm-5,
    .bs .my-sm-5 {
      margin-bottom: 3rem !important; }
    .bs .ml-sm-5,
    .bs .mx-sm-5 {
      margin-left: 3rem !important; }
    .bs .p-sm-0 {
      padding: 0 !important; }
    .bs .pt-sm-0,
    .bs .py-sm-0 {
      padding-top: 0 !important; }
    .bs .pr-sm-0,
    .bs .px-sm-0 {
      padding-right: 0 !important; }
    .bs .pb-sm-0,
    .bs .py-sm-0 {
      padding-bottom: 0 !important; }
    .bs .pl-sm-0,
    .bs .px-sm-0 {
      padding-left: 0 !important; }
    .bs .p-sm-1 {
      padding: 0.25rem !important; }
    .bs .pt-sm-1,
    .bs .py-sm-1 {
      padding-top: 0.25rem !important; }
    .bs .pr-sm-1,
    .bs .px-sm-1 {
      padding-right: 0.25rem !important; }
    .bs .pb-sm-1,
    .bs .py-sm-1 {
      padding-bottom: 0.25rem !important; }
    .bs .pl-sm-1,
    .bs .px-sm-1 {
      padding-left: 0.25rem !important; }
    .bs .p-sm-2 {
      padding: 0.5rem !important; }
    .bs .pt-sm-2,
    .bs .py-sm-2 {
      padding-top: 0.5rem !important; }
    .bs .pr-sm-2,
    .bs .px-sm-2 {
      padding-right: 0.5rem !important; }
    .bs .pb-sm-2,
    .bs .py-sm-2 {
      padding-bottom: 0.5rem !important; }
    .bs .pl-sm-2,
    .bs .px-sm-2 {
      padding-left: 0.5rem !important; }
    .bs .p-sm-3 {
      padding: 1rem !important; }
    .bs .pt-sm-3,
    .bs .py-sm-3 {
      padding-top: 1rem !important; }
    .bs .pr-sm-3,
    .bs .px-sm-3 {
      padding-right: 1rem !important; }
    .bs .pb-sm-3,
    .bs .py-sm-3 {
      padding-bottom: 1rem !important; }
    .bs .pl-sm-3,
    .bs .px-sm-3 {
      padding-left: 1rem !important; }
    .bs .p-sm-4 {
      padding: 1.5rem !important; }
    .bs .pt-sm-4,
    .bs .py-sm-4 {
      padding-top: 1.5rem !important; }
    .bs .pr-sm-4,
    .bs .px-sm-4 {
      padding-right: 1.5rem !important; }
    .bs .pb-sm-4,
    .bs .py-sm-4 {
      padding-bottom: 1.5rem !important; }
    .bs .pl-sm-4,
    .bs .px-sm-4 {
      padding-left: 1.5rem !important; }
    .bs .p-sm-5 {
      padding: 3rem !important; }
    .bs .pt-sm-5,
    .bs .py-sm-5 {
      padding-top: 3rem !important; }
    .bs .pr-sm-5,
    .bs .px-sm-5 {
      padding-right: 3rem !important; }
    .bs .pb-sm-5,
    .bs .py-sm-5 {
      padding-bottom: 3rem !important; }
    .bs .pl-sm-5,
    .bs .px-sm-5 {
      padding-left: 3rem !important; }
    .bs .m-sm-auto {
      margin: auto !important; }
    .bs .mt-sm-auto,
    .bs .my-sm-auto {
      margin-top: auto !important; }
    .bs .mr-sm-auto,
    .bs .mx-sm-auto {
      margin-right: auto !important; }
    .bs .mb-sm-auto,
    .bs .my-sm-auto {
      margin-bottom: auto !important; }
    .bs .ml-sm-auto,
    .bs .mx-sm-auto {
      margin-left: auto !important; } }
  @media (min-width: 768px) {
    .bs .m-md-0 {
      margin: 0 !important; }
    .bs .mt-md-0,
    .bs .my-md-0 {
      margin-top: 0 !important; }
    .bs .mr-md-0,
    .bs .mx-md-0 {
      margin-right: 0 !important; }
    .bs .mb-md-0,
    .bs .my-md-0 {
      margin-bottom: 0 !important; }
    .bs .ml-md-0,
    .bs .mx-md-0 {
      margin-left: 0 !important; }
    .bs .m-md-1 {
      margin: 0.25rem !important; }
    .bs .mt-md-1,
    .bs .my-md-1 {
      margin-top: 0.25rem !important; }
    .bs .mr-md-1,
    .bs .mx-md-1 {
      margin-right: 0.25rem !important; }
    .bs .mb-md-1,
    .bs .my-md-1 {
      margin-bottom: 0.25rem !important; }
    .bs .ml-md-1,
    .bs .mx-md-1 {
      margin-left: 0.25rem !important; }
    .bs .m-md-2 {
      margin: 0.5rem !important; }
    .bs .mt-md-2,
    .bs .my-md-2 {
      margin-top: 0.5rem !important; }
    .bs .mr-md-2,
    .bs .mx-md-2 {
      margin-right: 0.5rem !important; }
    .bs .mb-md-2,
    .bs .my-md-2 {
      margin-bottom: 0.5rem !important; }
    .bs .ml-md-2,
    .bs .mx-md-2 {
      margin-left: 0.5rem !important; }
    .bs .m-md-3 {
      margin: 1rem !important; }
    .bs .mt-md-3,
    .bs .my-md-3 {
      margin-top: 1rem !important; }
    .bs .mr-md-3,
    .bs .mx-md-3 {
      margin-right: 1rem !important; }
    .bs .mb-md-3,
    .bs .my-md-3 {
      margin-bottom: 1rem !important; }
    .bs .ml-md-3,
    .bs .mx-md-3 {
      margin-left: 1rem !important; }
    .bs .m-md-4 {
      margin: 1.5rem !important; }
    .bs .mt-md-4,
    .bs .my-md-4 {
      margin-top: 1.5rem !important; }
    .bs .mr-md-4,
    .bs .mx-md-4 {
      margin-right: 1.5rem !important; }
    .bs .mb-md-4,
    .bs .my-md-4 {
      margin-bottom: 1.5rem !important; }
    .bs .ml-md-4,
    .bs .mx-md-4 {
      margin-left: 1.5rem !important; }
    .bs .m-md-5 {
      margin: 3rem !important; }
    .bs .mt-md-5,
    .bs .my-md-5 {
      margin-top: 3rem !important; }
    .bs .mr-md-5,
    .bs .mx-md-5 {
      margin-right: 3rem !important; }
    .bs .mb-md-5,
    .bs .my-md-5 {
      margin-bottom: 3rem !important; }
    .bs .ml-md-5,
    .bs .mx-md-5 {
      margin-left: 3rem !important; }
    .bs .p-md-0 {
      padding: 0 !important; }
    .bs .pt-md-0,
    .bs .py-md-0 {
      padding-top: 0 !important; }
    .bs .pr-md-0,
    .bs .px-md-0 {
      padding-right: 0 !important; }
    .bs .pb-md-0,
    .bs .py-md-0 {
      padding-bottom: 0 !important; }
    .bs .pl-md-0,
    .bs .px-md-0 {
      padding-left: 0 !important; }
    .bs .p-md-1 {
      padding: 0.25rem !important; }
    .bs .pt-md-1,
    .bs .py-md-1 {
      padding-top: 0.25rem !important; }
    .bs .pr-md-1,
    .bs .px-md-1 {
      padding-right: 0.25rem !important; }
    .bs .pb-md-1,
    .bs .py-md-1 {
      padding-bottom: 0.25rem !important; }
    .bs .pl-md-1,
    .bs .px-md-1 {
      padding-left: 0.25rem !important; }
    .bs .p-md-2 {
      padding: 0.5rem !important; }
    .bs .pt-md-2,
    .bs .py-md-2 {
      padding-top: 0.5rem !important; }
    .bs .pr-md-2,
    .bs .px-md-2 {
      padding-right: 0.5rem !important; }
    .bs .pb-md-2,
    .bs .py-md-2 {
      padding-bottom: 0.5rem !important; }
    .bs .pl-md-2,
    .bs .px-md-2 {
      padding-left: 0.5rem !important; }
    .bs .p-md-3 {
      padding: 1rem !important; }
    .bs .pt-md-3,
    .bs .py-md-3 {
      padding-top: 1rem !important; }
    .bs .pr-md-3,
    .bs .px-md-3 {
      padding-right: 1rem !important; }
    .bs .pb-md-3,
    .bs .py-md-3 {
      padding-bottom: 1rem !important; }
    .bs .pl-md-3,
    .bs .px-md-3 {
      padding-left: 1rem !important; }
    .bs .p-md-4 {
      padding: 1.5rem !important; }
    .bs .pt-md-4,
    .bs .py-md-4 {
      padding-top: 1.5rem !important; }
    .bs .pr-md-4,
    .bs .px-md-4 {
      padding-right: 1.5rem !important; }
    .bs .pb-md-4,
    .bs .py-md-4 {
      padding-bottom: 1.5rem !important; }
    .bs .pl-md-4,
    .bs .px-md-4 {
      padding-left: 1.5rem !important; }
    .bs .p-md-5 {
      padding: 3rem !important; }
    .bs .pt-md-5,
    .bs .py-md-5 {
      padding-top: 3rem !important; }
    .bs .pr-md-5,
    .bs .px-md-5 {
      padding-right: 3rem !important; }
    .bs .pb-md-5,
    .bs .py-md-5 {
      padding-bottom: 3rem !important; }
    .bs .pl-md-5,
    .bs .px-md-5 {
      padding-left: 3rem !important; }
    .bs .m-md-auto {
      margin: auto !important; }
    .bs .mt-md-auto,
    .bs .my-md-auto {
      margin-top: auto !important; }
    .bs .mr-md-auto,
    .bs .mx-md-auto {
      margin-right: auto !important; }
    .bs .mb-md-auto,
    .bs .my-md-auto {
      margin-bottom: auto !important; }
    .bs .ml-md-auto,
    .bs .mx-md-auto {
      margin-left: auto !important; } }
  @media (min-width: 992px) {
    .bs .m-lg-0 {
      margin: 0 !important; }
    .bs .mt-lg-0,
    .bs .my-lg-0 {
      margin-top: 0 !important; }
    .bs .mr-lg-0,
    .bs .mx-lg-0 {
      margin-right: 0 !important; }
    .bs .mb-lg-0,
    .bs .my-lg-0 {
      margin-bottom: 0 !important; }
    .bs .ml-lg-0,
    .bs .mx-lg-0 {
      margin-left: 0 !important; }
    .bs .m-lg-1 {
      margin: 0.25rem !important; }
    .bs .mt-lg-1,
    .bs .my-lg-1 {
      margin-top: 0.25rem !important; }
    .bs .mr-lg-1,
    .bs .mx-lg-1 {
      margin-right: 0.25rem !important; }
    .bs .mb-lg-1,
    .bs .my-lg-1 {
      margin-bottom: 0.25rem !important; }
    .bs .ml-lg-1,
    .bs .mx-lg-1 {
      margin-left: 0.25rem !important; }
    .bs .m-lg-2 {
      margin: 0.5rem !important; }
    .bs .mt-lg-2,
    .bs .my-lg-2 {
      margin-top: 0.5rem !important; }
    .bs .mr-lg-2,
    .bs .mx-lg-2 {
      margin-right: 0.5rem !important; }
    .bs .mb-lg-2,
    .bs .my-lg-2 {
      margin-bottom: 0.5rem !important; }
    .bs .ml-lg-2,
    .bs .mx-lg-2 {
      margin-left: 0.5rem !important; }
    .bs .m-lg-3 {
      margin: 1rem !important; }
    .bs .mt-lg-3,
    .bs .my-lg-3 {
      margin-top: 1rem !important; }
    .bs .mr-lg-3,
    .bs .mx-lg-3 {
      margin-right: 1rem !important; }
    .bs .mb-lg-3,
    .bs .my-lg-3 {
      margin-bottom: 1rem !important; }
    .bs .ml-lg-3,
    .bs .mx-lg-3 {
      margin-left: 1rem !important; }
    .bs .m-lg-4 {
      margin: 1.5rem !important; }
    .bs .mt-lg-4,
    .bs .my-lg-4 {
      margin-top: 1.5rem !important; }
    .bs .mr-lg-4,
    .bs .mx-lg-4 {
      margin-right: 1.5rem !important; }
    .bs .mb-lg-4,
    .bs .my-lg-4 {
      margin-bottom: 1.5rem !important; }
    .bs .ml-lg-4,
    .bs .mx-lg-4 {
      margin-left: 1.5rem !important; }
    .bs .m-lg-5 {
      margin: 3rem !important; }
    .bs .mt-lg-5,
    .bs .my-lg-5 {
      margin-top: 3rem !important; }
    .bs .mr-lg-5,
    .bs .mx-lg-5 {
      margin-right: 3rem !important; }
    .bs .mb-lg-5,
    .bs .my-lg-5 {
      margin-bottom: 3rem !important; }
    .bs .ml-lg-5,
    .bs .mx-lg-5 {
      margin-left: 3rem !important; }
    .bs .p-lg-0 {
      padding: 0 !important; }
    .bs .pt-lg-0,
    .bs .py-lg-0 {
      padding-top: 0 !important; }
    .bs .pr-lg-0,
    .bs .px-lg-0 {
      padding-right: 0 !important; }
    .bs .pb-lg-0,
    .bs .py-lg-0 {
      padding-bottom: 0 !important; }
    .bs .pl-lg-0,
    .bs .px-lg-0 {
      padding-left: 0 !important; }
    .bs .p-lg-1 {
      padding: 0.25rem !important; }
    .bs .pt-lg-1,
    .bs .py-lg-1 {
      padding-top: 0.25rem !important; }
    .bs .pr-lg-1,
    .bs .px-lg-1 {
      padding-right: 0.25rem !important; }
    .bs .pb-lg-1,
    .bs .py-lg-1 {
      padding-bottom: 0.25rem !important; }
    .bs .pl-lg-1,
    .bs .px-lg-1 {
      padding-left: 0.25rem !important; }
    .bs .p-lg-2 {
      padding: 0.5rem !important; }
    .bs .pt-lg-2,
    .bs .py-lg-2 {
      padding-top: 0.5rem !important; }
    .bs .pr-lg-2,
    .bs .px-lg-2 {
      padding-right: 0.5rem !important; }
    .bs .pb-lg-2,
    .bs .py-lg-2 {
      padding-bottom: 0.5rem !important; }
    .bs .pl-lg-2,
    .bs .px-lg-2 {
      padding-left: 0.5rem !important; }
    .bs .p-lg-3 {
      padding: 1rem !important; }
    .bs .pt-lg-3,
    .bs .py-lg-3 {
      padding-top: 1rem !important; }
    .bs .pr-lg-3,
    .bs .px-lg-3 {
      padding-right: 1rem !important; }
    .bs .pb-lg-3,
    .bs .py-lg-3 {
      padding-bottom: 1rem !important; }
    .bs .pl-lg-3,
    .bs .px-lg-3 {
      padding-left: 1rem !important; }
    .bs .p-lg-4 {
      padding: 1.5rem !important; }
    .bs .pt-lg-4,
    .bs .py-lg-4 {
      padding-top: 1.5rem !important; }
    .bs .pr-lg-4,
    .bs .px-lg-4 {
      padding-right: 1.5rem !important; }
    .bs .pb-lg-4,
    .bs .py-lg-4 {
      padding-bottom: 1.5rem !important; }
    .bs .pl-lg-4,
    .bs .px-lg-4 {
      padding-left: 1.5rem !important; }
    .bs .p-lg-5 {
      padding: 3rem !important; }
    .bs .pt-lg-5,
    .bs .py-lg-5 {
      padding-top: 3rem !important; }
    .bs .pr-lg-5,
    .bs .px-lg-5 {
      padding-right: 3rem !important; }
    .bs .pb-lg-5,
    .bs .py-lg-5 {
      padding-bottom: 3rem !important; }
    .bs .pl-lg-5,
    .bs .px-lg-5 {
      padding-left: 3rem !important; }
    .bs .m-lg-auto {
      margin: auto !important; }
    .bs .mt-lg-auto,
    .bs .my-lg-auto {
      margin-top: auto !important; }
    .bs .mr-lg-auto,
    .bs .mx-lg-auto {
      margin-right: auto !important; }
    .bs .mb-lg-auto,
    .bs .my-lg-auto {
      margin-bottom: auto !important; }
    .bs .ml-lg-auto,
    .bs .mx-lg-auto {
      margin-left: auto !important; } }
  @media (min-width: 1200px) {
    .bs .m-xl-0 {
      margin: 0 !important; }
    .bs .mt-xl-0,
    .bs .my-xl-0 {
      margin-top: 0 !important; }
    .bs .mr-xl-0,
    .bs .mx-xl-0 {
      margin-right: 0 !important; }
    .bs .mb-xl-0,
    .bs .my-xl-0 {
      margin-bottom: 0 !important; }
    .bs .ml-xl-0,
    .bs .mx-xl-0 {
      margin-left: 0 !important; }
    .bs .m-xl-1 {
      margin: 0.25rem !important; }
    .bs .mt-xl-1,
    .bs .my-xl-1 {
      margin-top: 0.25rem !important; }
    .bs .mr-xl-1,
    .bs .mx-xl-1 {
      margin-right: 0.25rem !important; }
    .bs .mb-xl-1,
    .bs .my-xl-1 {
      margin-bottom: 0.25rem !important; }
    .bs .ml-xl-1,
    .bs .mx-xl-1 {
      margin-left: 0.25rem !important; }
    .bs .m-xl-2 {
      margin: 0.5rem !important; }
    .bs .mt-xl-2,
    .bs .my-xl-2 {
      margin-top: 0.5rem !important; }
    .bs .mr-xl-2,
    .bs .mx-xl-2 {
      margin-right: 0.5rem !important; }
    .bs .mb-xl-2,
    .bs .my-xl-2 {
      margin-bottom: 0.5rem !important; }
    .bs .ml-xl-2,
    .bs .mx-xl-2 {
      margin-left: 0.5rem !important; }
    .bs .m-xl-3 {
      margin: 1rem !important; }
    .bs .mt-xl-3,
    .bs .my-xl-3 {
      margin-top: 1rem !important; }
    .bs .mr-xl-3,
    .bs .mx-xl-3 {
      margin-right: 1rem !important; }
    .bs .mb-xl-3,
    .bs .my-xl-3 {
      margin-bottom: 1rem !important; }
    .bs .ml-xl-3,
    .bs .mx-xl-3 {
      margin-left: 1rem !important; }
    .bs .m-xl-4 {
      margin: 1.5rem !important; }
    .bs .mt-xl-4,
    .bs .my-xl-4 {
      margin-top: 1.5rem !important; }
    .bs .mr-xl-4,
    .bs .mx-xl-4 {
      margin-right: 1.5rem !important; }
    .bs .mb-xl-4,
    .bs .my-xl-4 {
      margin-bottom: 1.5rem !important; }
    .bs .ml-xl-4,
    .bs .mx-xl-4 {
      margin-left: 1.5rem !important; }
    .bs .m-xl-5 {
      margin: 3rem !important; }
    .bs .mt-xl-5,
    .bs .my-xl-5 {
      margin-top: 3rem !important; }
    .bs .mr-xl-5,
    .bs .mx-xl-5 {
      margin-right: 3rem !important; }
    .bs .mb-xl-5,
    .bs .my-xl-5 {
      margin-bottom: 3rem !important; }
    .bs .ml-xl-5,
    .bs .mx-xl-5 {
      margin-left: 3rem !important; }
    .bs .p-xl-0 {
      padding: 0 !important; }
    .bs .pt-xl-0,
    .bs .py-xl-0 {
      padding-top: 0 !important; }
    .bs .pr-xl-0,
    .bs .px-xl-0 {
      padding-right: 0 !important; }
    .bs .pb-xl-0,
    .bs .py-xl-0 {
      padding-bottom: 0 !important; }
    .bs .pl-xl-0,
    .bs .px-xl-0 {
      padding-left: 0 !important; }
    .bs .p-xl-1 {
      padding: 0.25rem !important; }
    .bs .pt-xl-1,
    .bs .py-xl-1 {
      padding-top: 0.25rem !important; }
    .bs .pr-xl-1,
    .bs .px-xl-1 {
      padding-right: 0.25rem !important; }
    .bs .pb-xl-1,
    .bs .py-xl-1 {
      padding-bottom: 0.25rem !important; }
    .bs .pl-xl-1,
    .bs .px-xl-1 {
      padding-left: 0.25rem !important; }
    .bs .p-xl-2 {
      padding: 0.5rem !important; }
    .bs .pt-xl-2,
    .bs .py-xl-2 {
      padding-top: 0.5rem !important; }
    .bs .pr-xl-2,
    .bs .px-xl-2 {
      padding-right: 0.5rem !important; }
    .bs .pb-xl-2,
    .bs .py-xl-2 {
      padding-bottom: 0.5rem !important; }
    .bs .pl-xl-2,
    .bs .px-xl-2 {
      padding-left: 0.5rem !important; }
    .bs .p-xl-3 {
      padding: 1rem !important; }
    .bs .pt-xl-3,
    .bs .py-xl-3 {
      padding-top: 1rem !important; }
    .bs .pr-xl-3,
    .bs .px-xl-3 {
      padding-right: 1rem !important; }
    .bs .pb-xl-3,
    .bs .py-xl-3 {
      padding-bottom: 1rem !important; }
    .bs .pl-xl-3,
    .bs .px-xl-3 {
      padding-left: 1rem !important; }
    .bs .p-xl-4 {
      padding: 1.5rem !important; }
    .bs .pt-xl-4,
    .bs .py-xl-4 {
      padding-top: 1.5rem !important; }
    .bs .pr-xl-4,
    .bs .px-xl-4 {
      padding-right: 1.5rem !important; }
    .bs .pb-xl-4,
    .bs .py-xl-4 {
      padding-bottom: 1.5rem !important; }
    .bs .pl-xl-4,
    .bs .px-xl-4 {
      padding-left: 1.5rem !important; }
    .bs .p-xl-5 {
      padding: 3rem !important; }
    .bs .pt-xl-5,
    .bs .py-xl-5 {
      padding-top: 3rem !important; }
    .bs .pr-xl-5,
    .bs .px-xl-5 {
      padding-right: 3rem !important; }
    .bs .pb-xl-5,
    .bs .py-xl-5 {
      padding-bottom: 3rem !important; }
    .bs .pl-xl-5,
    .bs .px-xl-5 {
      padding-left: 3rem !important; }
    .bs .m-xl-auto {
      margin: auto !important; }
    .bs .mt-xl-auto,
    .bs .my-xl-auto {
      margin-top: auto !important; }
    .bs .mr-xl-auto,
    .bs .mx-xl-auto {
      margin-right: auto !important; }
    .bs .mb-xl-auto,
    .bs .my-xl-auto {
      margin-bottom: auto !important; }
    .bs .ml-xl-auto,
    .bs .mx-xl-auto {
      margin-left: auto !important; } }
  .bs .text-justify {
    text-align: justify !important; }
  .bs .text-nowrap {
    white-space: nowrap !important; }
  .bs .text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .bs .text-left {
    text-align: left !important; }
  .bs .text-right {
    text-align: right !important; }
  .bs .text-center {
    text-align: center !important; }
  @media (min-width: 576px) {
    .bs .text-sm-left {
      text-align: left !important; }
    .bs .text-sm-right {
      text-align: right !important; }
    .bs .text-sm-center {
      text-align: center !important; } }
  @media (min-width: 768px) {
    .bs .text-md-left {
      text-align: left !important; }
    .bs .text-md-right {
      text-align: right !important; }
    .bs .text-md-center {
      text-align: center !important; } }
  @media (min-width: 992px) {
    .bs .text-lg-left {
      text-align: left !important; }
    .bs .text-lg-right {
      text-align: right !important; }
    .bs .text-lg-center {
      text-align: center !important; } }
  @media (min-width: 1200px) {
    .bs .text-xl-left {
      text-align: left !important; }
    .bs .text-xl-right {
      text-align: right !important; }
    .bs .text-xl-center {
      text-align: center !important; } }
  .bs .text-lowercase {
    text-transform: lowercase !important; }
  .bs .text-uppercase {
    text-transform: uppercase !important; }
  .bs .text-capitalize {
    text-transform: capitalize !important; }
  .bs .font-weight-light {
    font-weight: 300 !important; }
  .bs .font-weight-normal {
    font-weight: 400 !important; }
  .bs .font-weight-bold {
    font-weight: 700 !important; }
  .bs .font-italic {
    font-style: italic !important; }
  .bs .text-white {
    color: #fff !important; }
  .bs .text-primary {
    color: #3398dc !important; }
  .bs a.text-primary:focus, .bs a.text-primary:hover {
    color: #207dbc !important; }
  .bs .text-secondary {
    color: #868e96 !important; }
  .bs a.text-secondary:focus, .bs a.text-secondary:hover {
    color: #6c757d !important; }
  .bs .text-success {
    color: #2dcc70 !important; }
  .bs a.text-success:focus, .bs a.text-success:hover {
    color: #24a259 !important; }
  .bs .text-info {
    color: #17a2b8 !important; }
  .bs a.text-info:focus, .bs a.text-info:hover {
    color: #117a8b !important; }
  .bs .text-warning {
    color: #f1c40f !important; }
  .bs a.text-warning:focus, .bs a.text-warning:hover {
    color: #c29d0b !important; }
  .bs .text-danger {
    color: #e84c3d !important; }
  .bs a.text-danger:focus, .bs a.text-danger:hover {
    color: #d82a1a !important; }
  .bs .text-light {
    color: #f8f9fa !important; }
  .bs a.text-light:focus, .bs a.text-light:hover {
    color: #dae0e5 !important; }
  .bs .text-dark {
    color: #343a40 !important; }
  .bs a.text-dark:focus, .bs a.text-dark:hover {
    color: #1d2124 !important; }
  .bs .text-orange {
    color: #f07e1a !important; }
  .bs a.text-orange:focus, .bs a.text-orange:hover {
    color: #ca650d !important; }
  .bs .text-muted {
    color: #868e96 !important; }
  .bs .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  .bs .visible {
    visibility: visible !important; }
  .bs .invisible {
    visibility: hidden !important; }
  .bs .form-control, .bs .custom-select {
    border: 0;
    box-shadow: 0px 2px 3px 0px rgba(101, 91, 89, 0.2); }

/*
// Fonts-Variables

// Global styles

@import "keyframes";

@import "base/buttons";
@import "base/table";
@import "base/text";
@import "base/tooltip";

@import "partials/footer";

@import "popup/base";

@import "pages/login";
@import "pages/actions-page";

//objects
@import "objects/reach-chart";
@import "objects/export-panel";
@import "objects/timeline";
@import "objects/datepicker";
@import "objects/chart";
@import "objects/section";
@import "objects/more-datas-bloc";

//tiles
@import "tiles/dashboard-tile";
@import "tiles/overview";

@import "temp"; //to refactor
*/

/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.4.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}
