/**
 * Less Mixins
 */
/**
 * These are the variables used throughout the application. This is where
 * overwrites that are not specific to components should be maintained.
 */
/**
 * This is the main application stylesheet. It should include or import all
 * stylesheets used throughout the application as this is the only stylesheet in
 * the Gulp configuration that is automatically processed.
 */
/**
 * First, we include the Twitter Bootstrap LESS files. Only the ones used in the
 * project should be imported as the rest are just wasting space.
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
/**
 * This is a generic stylesheet for print media type.
 */
@media print {
  /** @todo should find way for this to be page specific */
  @page {
    size: landscape;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }
  abbr,
  acronym {
    border: 0;
  }
  .row {
    page-break-inside: avoid;
  }
  .div-table-cell {
    display: table-cell;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #f5f5f5;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #3B99FC;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #3B99FC;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.img-rounded {
  border-radius: 6px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 0;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.img-circle {
  border-radius: 50%;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 36px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 24px;
}
h4,
.h4 {
  font-size: 18px;
}
h5,
.h5 {
  font-size: 14px;
}
h6,
.h6 {
  font-size: 12px;
}
p {
  margin: 0 0 10px;
}
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 21px;
  }
}
small,
.small {
  font-size: 85%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #777777;
}
.text-primary {
  color: #ff6138;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff3905;
}
.text-success {
  color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.bg-primary {
  color: #fff;
  background-color: #ff6138;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #ff3905;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 20px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 0;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 0;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: transparent;
}
caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777777;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #f5f5f5;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(223, 240, 216, 0.5);
}
.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 34px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label ~ .form-control-feedback {
  top: 25px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}
label {
  text-transform: uppercase;
  font-size: 11px;
  line-height: 14px;
}
label:not(.btn) {
  width: 100%;
}
label .optional {
  text-transform: none;
  color: #777777;
  padding-left: 10px;
  font-style: italic;
}
label > .form-control,
label > .input-group {
  margin-top: 5px;
}
label > .form-control-feedback {
  top: 20px;
}
label > .btn-group {
  width: 100%;
  margin-top: 5px;
}
label > .btn-group .btn {
  padding: 7px 15px;
  margin-bottom: 0px;
}
.checkbox label {
  font-size: 14px;
  line-height: 20px;
}
.contact-address ul,
.contact-form ul {
  padding-left: 20px;
}
.contact-address ul li,
.contact-form ul li {
  line-height: 25px;
}
.contact-address h2,
.contact-form h2 {
  text-transform: uppercase;
  text-align: center;
}
.contact-address h4,
.contact-form h4 {
  color: #ff6138;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-address h5,
.contact-form h5 {
  color: rgba(10, 10, 10, 0.6);
}
.contact-form {
  padding: 20px;
  background-color: #fff;
  box-shadow: 3px 3px #c7c7c7;
}
input:focus {
  outline: none;
  border: none;
}
textarea {
  margin-bottom: 30px;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  min-height: 100px;
  resize: none;
  border-radius: 2px;
}
textarea.disabled,
textarea[disabled] {
  cursor: not-allowed;
}
.styled-checkbox .label-checkbox,
.styled-radio .label-checkbox,
.styled-checkbox .label-radio,
.styled-radio .label-radio {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 15px;
  font-size: 13px;
}
.styled-checkbox .label-checkbox span,
.styled-radio .label-checkbox span,
.styled-checkbox .label-radio span,
.styled-radio .label-radio span {
  margin-top: 0;
  margin-left: 10px;
  font-size: 12px;
}
.styled-checkbox .label-checkbox:before,
.styled-radio .label-checkbox:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(47%, #f6f6f6), color-stop(100%, #ededed));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  border: 1px solid #dddddd;
  border-radius: 2px;
}
.styled-checkbox input[type=checkbox],
.styled-radio input[type=checkbox],
.styled-checkbox input[type=radio],
.styled-radio input[type=radio] {
  display: none;
}
.styled-checkbox input[type=checkbox]:checked + label:before,
.styled-radio input[type=checkbox]:checked + label:before {
  content: "\2714";
  color: #ff6138;
  font-size: 10px;
  text-align: center;
  line-height: 16px;
}
.styled-checkbox .label-radio:before,
.styled-radio .label-radio:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  left: 0;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(47%, #f6f6f6), color-stop(100%, #ededed));
  background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  border: 1px solid #dddddd;
  border-radius: 4px;
}
.styled-checkbox input[type=radio]:checked + label:before,
.styled-radio input[type=radio]:checked + label:before {
  background: #ff6138;
  background-image: -moz-linear-gradient(#ffb29e, #ff6138);
  background-image: -ms-linear-gradient(#ffb29e, #ff6138);
  background-image: -o-linear-gradient(#ffb29e, #ff6138);
  background-image: -webkit-linear-gradient(#ffb29e, #ff6138);
  background-image: linear-gradient(#ffb29e, #ff6138);
  font-size: 24px;
  text-align: center;
  line-height: 14px;
}
.styled-checkbox input[type=radio]:disabled + label:before,
.styled-radio input[type=radio]:disabled + label:before {
  background: #bbb;
  background-image: -moz-linear-gradient(#d4d4d4, #bbb);
  background-image: -ms-linear-gradient(#d4d4d4, #bbb);
  background-image: -o-linear-gradient(#d4d4d4, #bbb);
  background-image: -webkit-linear-gradient(#d4d4d4, #bbb);
  background-image: linear-gradient(#d4d4d4, #bbb);
  font-size: 24px;
  text-align: center;
  line-height: 14px;
}
.nested-styled-checkbox .nested-label-checkbox,
.nested-styled-radio .nested-label-checkbox,
.nested-styled-checkbox .nested-label-radio,
.nested-styled-radio .nested-label-radio {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 15px;
  font-size: 13px;
}
.nested-styled-checkbox .nested-label-checkbox span,
.nested-styled-radio .nested-label-checkbox span,
.nested-styled-checkbox .nested-label-radio span,
.nested-styled-radio .nested-label-radio span {
  margin-top: 0;
  margin-left: 10px;
  font-size: 12px;
}
.nested-styled-checkbox .nested-label-checkbox span:before,
.nested-styled-radio .nested-label-checkbox span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(47%, #f6f6f6), color-stop(100%, #ededed));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  /* IE6-9 */
  border: 1px solid #dddddd;
  border-radius: 2px;
}
.nested-styled-checkbox input[type=checkbox],
.nested-styled-radio input[type=checkbox],
.nested-styled-checkbox input[type=radio],
.nested-styled-radio input[type=radio] {
  display: none;
}
.nested-styled-checkbox input[type=checkbox]:checked + span:before,
.nested-styled-radio input[type=checkbox]:checked + span:before {
  content: "\2714";
  color: #ff6138;
  font-size: 10px;
  text-align: center;
  line-height: 16px;
}
.nested-styled-checkbox .nested-label-radio span:before,
.nested-styled-radio .nested-label-radio span:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(47%, #f6f6f6), color-stop(100%, #ededed));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
  /* IE6-9 */
  border: 1px solid #dddddd;
  border-radius: 8px;
}
.nested-styled-checkbox input[type=radio]:checked + span:before,
.nested-styled-radio input[type=radio]:checked + span:before {
  content: "\2022";
  color: #ff6138;
  font-size: 24px;
  text-align: center;
  line-height: 14px;
}
.styled-radio {
  padding-left: 0;
}
.form-inline label {
  margin-top: 14px;
  padding: 0px;
}
.navbar-form label {
  margin-top: 10px;
  padding: 0px;
}
.navbar-form select {
  margin-top: 5px;
  padding: 5px;
}
.input-group.input-group-helper {
  display: flex;
  flex-direction: row;
}
.input-group.input-group-helper input {
  flex: 1 1 auto;
}
.input-group.input-group-helper .input-group-addon {
  flex: none;
  min-width: 37px;
  line-height: 20px;
}
.input-group.input-group-helper .input-group-addon:not(:first-child) {
  border-left: 0;
}
.input-group.input-group-helper .popover-icon-help {
  flex: none;
  margin: 2px 2px 2px 10px;
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #ffffff;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #ffffff;
  background-color: #c1bdbe;
  border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
  color: #ffffff;
  background-color: #a8a3a4;
  border-color: #8c8c8c;
}
.btn-default:hover {
  color: #ffffff;
  background-color: #a8a3a4;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #ffffff;
  background-color: #a8a3a4;
  border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #ffffff;
  background-color: #979092;
  border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #c1bdbe;
  border-color: #ccc;
}
.btn-default .badge {
  color: #c1bdbe;
  background-color: #ffffff;
}
.btn-primary {
  color: #fff;
  background-color: #ff6138;
  border-color: #ff4d1f;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #ff3905;
  border-color: #9e2100;
}
.btn-primary:hover {
  color: #fff;
  background-color: #ff3905;
  border-color: #e02e00;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #ff3905;
  border-color: #e02e00;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #e02e00;
  border-color: #9e2100;
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #ff6138;
  border-color: #ff4d1f;
}
.btn-primary .badge {
  color: #ff6138;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  color: #3B99FC;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #3B99FC;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 5px;
}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}
.btn {
  padding: 15px;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  border-radius: 0;
  margin-bottom: 10px;
  text-shadow: none;
  text-transform: uppercase;
  box-shadow: none;
  background-image: none;
  filter: none;
}
.btn-default-inverse {
  background-color: #363636;
  color: #ffffff;
}
.btn-default-inverse:hover,
.btn-default-inverse:focus {
  background-color: #292929;
}
.btn-secondary {
  background-color: #3a4250;
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #2f3641;
}
.btn-tertiary {
  background-color: #27b99b;
  color: #fff;
}
.btn-tertiary:hover,
.btn-tertiary:focus {
  background-color: #23a489;
}
.btn-styled {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #111;
  background-color: #EEE;
  border-color: #ccc;
}
.btn-styled:focus,
.btn-styled:active:focus,
.btn-styled.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn-styled:hover,
.btn-styled:focus {
  color: #ffffff;
  text-decoration: none;
}
.btn-styled:active,
.btn-styled.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-styled.disabled,
.btn-styled[disabled],
fieldset[disabled] .btn-styled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-styled:focus,
.btn-styled.focus {
  color: #111;
  background-color: #d5d5d5;
  border-color: #8c8c8c;
}
.btn-styled:hover {
  color: #111;
  background-color: #d5d5d5;
  border-color: #adadad;
}
.btn-styled:active,
.btn-styled.active,
.open > .dropdown-toggle.btn-styled {
  color: #111;
  background-color: #d5d5d5;
  border-color: #adadad;
}
.btn-styled:active:hover,
.btn-styled.active:hover,
.open > .dropdown-toggle.btn-styled:hover,
.btn-styled:active:focus,
.btn-styled.active:focus,
.open > .dropdown-toggle.btn-styled:focus,
.btn-styled:active.focus,
.btn-styled.active.focus,
.open > .dropdown-toggle.btn-styled.focus {
  color: #111;
  background-color: #c3c3c3;
  border-color: #8c8c8c;
}
.btn-styled:active,
.btn-styled.active,
.open > .dropdown-toggle.btn-styled {
  background-image: none;
}
.btn-styled.disabled,
.btn-styled[disabled],
fieldset[disabled] .btn-styled,
.btn-styled.disabled:hover,
.btn-styled[disabled]:hover,
fieldset[disabled] .btn-styled:hover,
.btn-styled.disabled:focus,
.btn-styled[disabled]:focus,
fieldset[disabled] .btn-styled:focus,
.btn-styled.disabled.focus,
.btn-styled[disabled].focus,
fieldset[disabled] .btn-styled.focus,
.btn-styled.disabled:active,
.btn-styled[disabled]:active,
fieldset[disabled] .btn-styled:active,
.btn-styled.disabled.active,
.btn-styled[disabled].active,
fieldset[disabled] .btn-styled.active {
  background-color: #EEE;
  border-color: #ccc;
}
.btn-styled .badge {
  color: #EEE;
  background-color: #111;
}
.fade {
  opacity: 0;
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -moz-transition-duration: 0.35s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #ff6138;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 0;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #3B99FC;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 0 0 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 0;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #f5f5f5;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 0;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #ff6138;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 0;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #f5f5f5;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.styled-nav-tabs {
  text-transform: uppercase;
  border: none;
  list-style: none;
  width: 100%;
  padding: 0px;
  -webkit-padding-start: 0px;
  text-align: center;
}
.styled-nav-tabs li {
  display: inline-block;
  cursor: pointer;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  float: left;
  padding: 7px 0px 7px 0px;
}
.styled-nav-tabs li a,
.styled-nav-tabs li a:hover {
  color: #ff6138;
  text-decoration: none;
  font-size: 11px;
  font-weight: bold;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}
.styled-nav-tabs li[disabled] {
  cursor: default;
}
.styled-nav-tabs li[disabled] a,
.styled-nav-tabs li[disabled] a:hover {
  color: #ccc;
  cursor: default;
}
.styled-nav-tabs li.col-2 {
  width: 50%;
}
.styled-nav-tabs li.col-3 {
  width: 33%;
}
.styled-nav-tabs li.col-4 {
  width: 25%;
}
.styled-nav-tabs li.col-5 {
  width: 20%;
}
.styled-nav-tabs li.active {
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
}
.styled-nav-tabs li.active a,
.styled-nav-tabs li.active a:hover {
  color: #555555;
}
.navbar {
  position: relative;
  min-height: 80px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 30px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 80px;
}
.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand,
  .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 23px;
  margin-bottom: 23px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-nav {
  margin: 15px -15px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 23px;
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
.navbar-form label {
  margin-top: 14px;
  padding: 0px;
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 23px;
  margin-bottom: 23px;
}
.navbar-btn.btn-sm {
  margin-top: 25px;
  margin-bottom: 25px;
}
.navbar-btn.btn-xs {
  margin-top: 29px;
  margin-bottom: 29px;
}
.navbar-text {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}
.navbar-default .navbar-brand {
  color: #777;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #FFF;
}
.navbar-default .navbar-nav > li > a {
  color: #777;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #FFF;
  background-color: #e7e7e7;
}
.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #FFF;
}
@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #FFF;
    background-color: #e7e7e7;
  }
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}
.navbar-default .navbar-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #ff6138;
  border-color: #ff3905;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #2e3641;
  background-color: transparent;
}
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
  color: #2e3641;
  background-color: #ff3905;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #ff4514;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #ff3905;
  color: #2e3641;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #ff3905;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #ff3905;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #2e3641;
    background-color: transparent;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #2e3641;
    background-color: #ff3905;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #2e3641;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #2e3641;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.navbar {
  text-transform: uppercase;
}
.navbar hr {
  margin: 20px 20px 30px;
}
.navbar a {
  text-decoration: none;
  color: #FFF;
  letter-spacing: 1px;
}
.navbar .navbar-brand {
  padding: 12px 20px;
}
@media (max-width: 991px) {
  .navbar .navbar-brand {
    padding: 12px 20px 12px 0;
  }
}
.navbar .navbar-brand .gata-logo {
  display: block;
  margin-top: 5px;
  width: 170px;
  height: 50px;
}
@media (max-width: 991px) {
  .navbar .navbar-brand .gata-logo {
    width: 160px;
  }
}
.navbar .navbar-toggle {
  border: 0px;
}
.navbar .navbar-toggle .icon-bar {
  height: 3px;
}
.navbar .sub-menu {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  text-align: center;
  padding-bottom: 20px;
}
.navbar .sub-menu .page-links {
  list-style: none;
  padding-left: 0px;
}
.navbar .sub-menu .page-links li {
  font-size: 18px;
  padding: 10px 0px;
}
.navbar .sub-menu .page-links li:hover {
  background-color: #FFF;
}
.navbar .sub-menu .page-links li:hover a {
  color: #FF6138;
}
.navbar .navbar-nav.navbar-right {
  margin-right: 20px;
}
.navbar .navbar-nav.navbar-right li {
  padding: 18px 0px;
}
.navbar .navbar-nav.navbar-right li a {
  padding: 10px 20px;
  border: 1px solid #FFF;
}
.navbar .navbar-nav.navbar-right li a:hover {
  background-color: #FFF;
  color: #FF6138;
}
.navbar .navbar-nav.navbar-right li a.no-border {
  border: none;
  padding: 5px 20px 0px 10px;
}
.navbar .navbar-nav.navbar-right li a.no-hover:hover,
.navbar .navbar-nav.navbar-right li a.no-hover:focus {
  background-color: transparent;
  color: inherit;
}
.navbar .navbar-nav.navbar-right li ul a {
  border: 0px;
}
@media (max-width: 767px) {
  .navbar .navbar-nav.navbar-right li {
    padding: 10px 0px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-nav.navbar-right {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-brand {
    padding-left: 0px;
  }
  .navbar .in-session {
    margin-top: -40px;
  }
}
.navbar-inverse.navbar-fixed-top {
  border-bottom: 2px solid #b9b9b9;
}
.navbar-inverse .nav > li a {
  font-family: 'Lato' sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 12px;
  color: white;
}
.navbar-inverse .nav > li a:active {
  color: #FFF;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #e5451b;
}
.nav.navbar-nav {
  position: relative;
  padding: 0px;
}
@media (max-width: 767px) {
  .nav.navbar-nav {
    margin: 0px;
    padding: 0px 20px;
  }
}
.nav.navbar-nav .dropdown-menu.top-nav {
  top: 80px;
  text-align: left;
  background: #2f3641;
  padding: 0;
  border-radius: 0;
  border: none;
}
.nav.navbar-nav .dropdown-menu.top-nav li {
  padding: 0;
  margin: 0;
}
.nav.navbar-nav .dropdown-menu.top-nav li:first-child {
  border-top: none;
}
.nav.navbar-nav .dropdown-menu.top-nav li a {
  text-transform: uppercase;
  margin: 0;
  padding: 15px 20px;
}
.nav.navbar-nav .dropdown-menu.top-nav li a:hover {
  background: #f5f5f5;
  color: #2f3641;
}
.nav .open a:hover {
  border-color: #FFF;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > .active {
  color: #777777;
}
.main-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.main-header .admin-buttons {
  flex: none;
}
.main-header .admin-buttons .btn {
  margin-bottom: 0;
  margin-left: 10px;
}
.main-header .breadcrumb {
  flex: 1 1 auto;
  padding-right: 100px;
  margin-bottom: 0;
}
.main-header .form-inline {
  flex: 1 100%;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 0;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #3B99FC;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #3B99FC;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #ff6138;
  border-color: #ff6138;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
ul.pagination {
  float: right;
  margin: 0px;
}
ul.pagination > li span {
  font-size: 14px;
}
ul.pagination > li.disabled a {
  color: #ff6138;
}
ul.pagination > li a {
  padding: 0px 12px;
  background: none;
  border: none;
  color: #555555;
}
ul.pagination > li a:hover {
  background: none;
  color: #ff896b;
}
ul.pagination > .disabled > span,
ul.pagination > .disabled > span:hover,
ul.pagination > .disabled > span:focus,
ul.pagination > .disabled > a,
ul.pagination > .disabled > a:hover,
ul.pagination > .disabled > a:focus {
  color: #555555;
  background: none;
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  background-color: #fff;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #ff6138;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #ff3905;
}
.label-success {
  background-color: #5cb85c;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #449d44;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #ec971f;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #3B99FC;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 6px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 63px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 0;
  -moz-transition: border 0.2s ease-in-out;
  -webkit-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #3B99FC;
}
.thumbnail .caption {
  padding: 9px;
  color: #333333;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 0;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #ff6138;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-transition: width 0.6s ease;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-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-image: -o-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-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: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-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-image: -o-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-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);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-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-image: -o-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-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);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-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-image: -o-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-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);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-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-image: -o-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-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);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #ff6138;
  border-color: #ff6138;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #ffffff;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: -1;
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: -1;
  border-top-right-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: -1;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: -1;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: -1;
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: -1;
  border-bottom-right-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: -1;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: -1;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #ff6138;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #ff6138;
  border-color: #ff6138;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ff6138;
}
.panel-primary > .panel-heading .badge {
  color: #ff6138;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ff6138;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.panel {
  margin-bottom: 10px;
  -webkit-box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.1);
  box-shadow: 3px 3px 0 rgba(10, 10, 10, 0.1);
  border: 1px solid #dddddd;
}
.panel-body > .table {
  margin-bottom: 0px;
}
.panel-body > .table th:first-child,
.panel-body > .table td:first-child {
  padding-left: 0px;
}
.panel-default > .panel-heading {
  background-color: inherit;
  border: none;
  color: #ff6138;
  font-weight: 400;
  margin-bottom: -5px;
  padding-bottom: 0;
}
.panel-default .list-group {
  margin-top: 5px;
}
.panel-default .table td,
.panel-default .table th {
  border: none;
}
.panel-default .table tfoot th {
  color: #ff6138;
}
.panel-group .panel-default > .panel-heading {
  padding: 10px 15px;
  margin: 0;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.notifications {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  max-width: 500px;
  z-index: 1040;
  margin-bottom: 0;
}
.notifications .alert.alert-success {
  background-color: #27b99b;
  box-shadow: 3px 3px 0px rgba(10, 10, 10, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.notifications .alert.alert-danger {
  background-color: #ae4841;
  box-shadow: 3px 3px 0px rgba(10, 10, 10, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.notifications button.close {
  color: #ffffff;
}
/* ************************************** */
/* Mandatory CSS required for ng-sortable */
/* ************************************** */
.as-sortable-item,
.as-sortable-placeholder {
  display: block;
}
.as-sortable-item {
  -ms-touch-action: none;
  touch-action: none;
}
.as-sortable-item-handle {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.as-sortable-drag {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}
.as-sortable-hidden {
  display: none !important;
}
.as-sortable-un-selectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* ******************************************* */
/* Optional CSS, default style for ng-sortable */
/* ******************************************* */
.as-sortable-item,
.as-sortable-placeholder {
  min-height: 30px;
  margin: 1px 2px 5px 1px;
  border-radius: 10px;
}
.as-sortable-item {
  border: solid 1px darkgrey;
  background-color: #ffffff;
  padding: 1% 0;
}
.as-sortable-item-handle {
  padding: 0.5% 5%;
}
.as-sortable-placeholder {
  border: 1px dashed darkgrey;
  box-sizing: border-box;
  background-color: #dbdbdb;
}
.as-sortable-drag {
  opacity: 0.8;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.modal h4 {
  background-color: inherit;
  border: none;
  color: #ff6138;
  font-weight: 400;
}
.modal .btn {
  margin-bottom: 0;
}
.modal .table-responsive {
  height: 250px;
  overflow: auto;
}
@media (max-width: 991px) {
  .modal .col-xs-1:not(.large),
  .modal .column-label:not(.large),
  .modal .column-value:not(.large) {
    font-size: 16px;
    line-height: 1.25;
  }
  .modal .col-xs-1 {
    height: 44px;
    padding-top: 10px;
  }
  .modal .form-control {
    height: 44px;
    padding: 10px 12px;
  }
  .modal textarea.form-control {
    height: auto;
  }
  .modal .input-group-addon,
  .modal .input-group-btn {
    padding: 10px 12px;
  }
  .modal .col-xs-6,
  .modal .col-sm-12 {
    margin-top: 10px;
  }
}
.form-group .col-xs-6.column-label {
  line-height: 2.5;
}
.column-label,
.column-label > label {
  font-weight: bold;
}
.column-label.med,
.column-label > label.med {
  margin-top: 0px;
  font-size: 16px;
}
.column-label.large,
.column-label > label.large {
  font-size: 20px;
}
.column-value,
.column-value > label {
  font-weight: 400;
}
.column-value.med,
.column-value > label.med {
  margin-top: 0px;
  font-size: 16px;
}
.column-value.large,
.column-value > label.large {
  font-size: 20px;
}
@media (max-width: 767px) {
  .column-label.large,
  .column-label > label.large,
  .column-value.large,
  .column-value > label.large {
    font-size: 16px;
  }
}
.dotted-horizontal-line {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: thin dotted #000;
}
.large-value {
  font-size: 60px;
}
.large-med-value {
  font-size: 50px;
}
.med-value {
  font-size: 40px;
}
@media (max-width: 767px) {
  .large-value {
    font-size: 40px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.popover-icon-help {
  background: #2e3641;
  border-radius: 35px;
  color: #ffffff;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin: 2px;
  text-align: center;
  width: 30px;
}
.popover-icon-help.white-icon {
  background: #ffffff;
  color: #2c3e50;
  font-weight: 600;
}
.popover-icon-help:before {
  content: '?';
}
.popover-content {
  color: #333;
  width: 270px;
  z-index: 2;
}
.popover-lg {
  width: 400px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -moz-transition: 0.6s ease-in-out left;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after,
.admin-panel:before,
.admin-panel:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after,
.admin-panel:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/**
 * And now any configurations for our custom fonts.
 */
@font-face {
  font-family: "icons";
  src: url("../../../dist/assets/fonts/icons-d0e096af813536bd330439cdd105542d.eot");
  src: url("../../../dist/assets/fonts/icons-d0e096af813536bd330439cdd105542d.eot?#iefix") format("embedded-opentype"), url("data:application/x-font-woff;charset=utf-8;base64,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") format("woff"), url("../../../dist/assets/fonts/icons-d0e096af813536bd330439cdd105542d.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-angel-list:before,
.icon-bar-chart:before,
.icon-billing:before,
.icon-briefcase:before,
.icon-caret-down:before,
.icon-caret-left:before,
.icon-caret-right:before,
.icon-caret-up:before,
.icon-chat:before,
.icon-chevron-down:before,
.icon-chevron-right:before,
.icon-cog:before,
.icon-cogs:before,
.icon-dashboard:before,
.icon-drivers:before,
.icon-edit:before,
.icon-envelope:before,
.icon-face-happy:before,
.icon-face-sad:before,
.icon-face-soso:before,
.icon-facebook-sign:before,
.icon-flag:before,
.icon-google-plus-sign:before,
.icon-growth:before,
.icon-home:before,
.icon-info-sign:before,
.icon-linkedin:before,
.icon-list:before,
.icon-lock:before,
.icon-logistics:before,
.icon-loyalty-perks:before,
.icon-map-marker:before,
.icon-megaphone:before,
.icon-minus:before,
.icon-money:before,
.icon-notification-off:before,
.icon-paper:before,
.icon-pinterest-sign:before,
.icon-plus:before,
.icon-profile:before,
.icon-question-sign:before,
.icon-redo:before,
.icon-referralmagic:before,
.icon-remove:before,
.icon-reviewedge:before,
.icon-reviews:before,
.icon-search:before,
.icon-sign-blank:before,
.icon-simple:before,
.icon-star:before,
.icon-thumbs-up:before,
.icon-trash:before,
.icon-twitter:before,
.icon-user-add:before,
.icon-user:before,
.icon-users:before {
  font-family: "icons";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-angel-list:before {
  content: "\f100";
}
.icon-bar-chart:before {
  content: "\f101";
}
.icon-billing:before {
  content: "\f102";
}
.icon-briefcase:before {
  content: "\f103";
}
.icon-caret-down:before {
  content: "\f104";
}
.icon-caret-left:before {
  content: "\f105";
}
.icon-caret-right:before {
  content: "\f106";
}
.icon-caret-up:before {
  content: "\f107";
}
.icon-chat:before {
  content: "\f108";
}
.icon-chevron-down:before {
  content: "\f109";
}
.icon-chevron-right:before {
  content: "\f10a";
}
.icon-cog:before {
  content: "\f10b";
}
.icon-cogs:before {
  content: "\f10c";
}
.icon-dashboard:before {
  content: "\f10d";
}
.icon-drivers:before {
  content: "\f10e";
}
.icon-edit:before {
  content: "\f10f";
}
.icon-envelope:before {
  content: "\f110";
}
.icon-face-happy:before {
  content: "\f111";
}
.icon-face-sad:before {
  content: "\f112";
}
.icon-face-soso:before {
  content: "\f113";
}
.icon-facebook-sign:before {
  content: "\f114";
}
.icon-flag:before {
  content: "\f115";
}
.icon-google-plus-sign:before {
  content: "\f116";
}
.icon-growth:before {
  content: "\f117";
}
.icon-home:before {
  content: "\f118";
}
.icon-info-sign:before {
  content: "\f119";
}
.icon-linkedin:before {
  content: "\f11a";
}
.icon-list:before {
  content: "\f11b";
}
.icon-lock:before {
  content: "\f11c";
}
.icon-logistics:before {
  content: "\f11d";
}
.icon-loyalty-perks:before {
  content: "\f11e";
}
.icon-map-marker:before {
  content: "\f11f";
}
.icon-megaphone:before {
  content: "\f120";
}
.icon-minus:before {
  content: "\f121";
}
.icon-money:before {
  content: "\f122";
}
.icon-notification-off:before {
  content: "\f123";
}
.icon-paper:before {
  content: "\f124";
}
.icon-pinterest-sign:before {
  content: "\f125";
}
.icon-plus:before {
  content: "\f126";
}
.icon-profile:before {
  content: "\f127";
}
.icon-question-sign:before {
  content: "\f128";
}
.icon-redo:before {
  content: "\f129";
}
.icon-referralmagic:before {
  content: "\f12a";
}
.icon-remove:before {
  content: "\f12b";
}
.icon-reviewedge:before {
  content: "\f12c";
}
.icon-reviews:before {
  content: "\f12d";
}
.icon-search:before {
  content: "\f12e";
}
.icon-sign-blank:before {
  content: "\f12f";
}
.icon-simple:before {
  content: "\f130";
}
.icon-star:before {
  content: "\f131";
}
.icon-thumbs-up:before {
  content: "\f132";
}
.icon-trash:before {
  content: "\f133";
}
.icon-twitter:before {
  content: "\f134";
}
.icon-user-add:before {
  content: "\f135";
}
.icon-user:before {
  content: "\f136";
}
.icon-users:before {
  content: "\f137";
}
.errors {
  margin-top: 20px;
}
code,
pre,
.pre {
  padding: 5px;
  margin: 10px 0;
  background-color: #EFEFEF;
  border: 1px solid #DADADA;
}
code {
  padding: 0 3px;
}
pre {
  margin: 10px 0;
  padding: 5px;
}
.page-header {
  margin-top: 60px;
  background-color: #FF6138;
}
.page-header:first-child {
  margin-top: 20px;
}
h2 {
  margin: 20px 0;
  color: #666;
}
.footer {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #212f3c;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 0 15px 30px;
  }
}
.footer h4 {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .footer h4 {
    text-align: center;
    margin-top: 30px;
  }
}
.footer a {
  line-height: 1.75;
}
.footer a:link {
  color: rgba(255, 255, 255, 0.5);
}
.footer a:visited {
  color: rgba(255, 255, 255, 0.5);
}
.footer a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer ul {
  list-style-type: none;
  width: 100%;
  padding: 0;
}
.footer .footer-links ul {
  margin-top: 0px;
}
@media (min-width: 1200px) {
  .footer .footer-links ul {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .footer .footer-links ul {
    text-align: center;
    padding: 10px;
    margin-top: 0px;
  }
}
.footer .footer-links ul li {
  padding-left: 0px;
}
.footer .social-links ul {
  position: relative;
  right: 0px;
  text-align: left;
}
@media (max-width: 767px) {
  .footer .social-links ul {
    text-align: center;
    padding: 10px;
    margin-top: 0px;
  }
}
.footer .social-links ul li {
  display: inline;
  padding: 0px 10px 0px 0px;
}
.footer .social-links table {
  margin-top: 20px;
}
.footer .social-links table td.twitter-btn {
  padding-top: 2px;
}
.footer .social-links table td.fb-li-btn {
  padding-right: 15px;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .footer .social-links table {
    text-align: center;
    width: auto;
    margin: 20px auto 0px;
  }
  .footer .social-links table td.twitter-btn {
    padding-right: 10px;
  }
  .footer .social-links table td.fb-li-btn {
    padding-right: 0px;
    padding-left: 35px;
    padding-bottom: 20px;
  }
  .footer .social-links table td.angellist-btn {
    padding-left: 20px;
  }
}
.footer .social-links i {
  position: relative;
  top: -7px;
  padding: 0 10px 0px 0px;
  font-size: 35px;
  color: rgba(255, 255, 255, 0.3);
}
.footer .social-links i:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer .subfooter {
  text-align: center;
  padding: 15px 0px;
}
.footer .subfooter p {
  font-size: 12px;
  color: #FFF;
}
@media (max-width: 991px) {
  .footer .subfooter {
    text-align: center;
  }
}
.footer .mixpanel a {
  margin: 10px 10px 0 0;
}
.footer hr {
  border-top: 1px solid #5e5e5e;
  margin: 0px 0px 10px;
}
/**
 * Now that all app-wide styles have been applied, we can load the styles for
 * all the submodules and components we are using.
 *
 * @todo In a later version of this boilerplate, I'd like to automate this.
 */
html,
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  margin: 0;
  padding: 0;
  height: 100%;
  background: #f5f5f5;
}
a {
  cursor: pointer;
}
.main {
  position: relative;
  width: 100%;
  padding-top: 80px;
  min-height: 100%;
  background: #f5f5f5;
}
.box {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 10px;
  box-shadow: 3px 3px 0px rgba(10, 10, 10, 0.1);
  border: 1px solid #dddddd;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #dddddd;
}
.section-header {
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #2e3641;
  width: 180px;
  font-size: 16px;
  padding: 8px 0 8px 0;
  margin: auto;
  background-color: #333;
}
label,
p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.centered {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  margin-left: auto;
  margin-right: auto;
}
.block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.vertical-centered {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.col-centered {
  float: none;
  margin: 0 auto;
}
.navbar .sub-menu .page-links li {
  font-size: 1.15em;
}
.navbar hr {
  margin: 20px;
}
.navbar.navbar-default .navbar-brand {
  padding-left: 0;
}
.navbar.navbar-default .navbar-nav.navbar-right {
  margin-right: 0px;
}
.navbar.navbar-default .navbar-nav.navbar-right li.nav-link a {
  color: #5e5e5e;
  border: none;
  margin-right: 10px;
}
.navbar.navbar-default .navbar-nav.navbar-right li.nav-button a {
  color: #ff6138;
  margin-right: 10px;
  border-radius: 5px;
  border: 2px solid #ff6138;
}
@media (min-width: 991px) {
  .navbar.navbar-default .navbar-nav.navbar-right li.nav-button a {
    width: 150px;
  }
}
.navbar.navbar-default .navbar-nav.navbar-right .welcome-button {
  margin-right: 10px;
  font-size: 12px;
}
.navbar.navbar-default .navbar-nav.navbar-right .welcome-button > a {
  color: #ff6138;
  border: 2px solid #ff6138;
}
@media (min-width: 991px) {
  .navbar.navbar-default .navbar-nav.navbar-right .welcome-button > a {
    width: auto;
  }
}
.navbar.navbar-default a {
  color: #ff6138;
}
@media (max-width: 767px) {
  .navbar-fixed-top {
    max-height: 100%;
    overflow-y: auto;
  }
}
.fleets-page,
.request-page,
.about-page,
.home-page,
.business,
.industry-page,
.onelocal-page,
.about-page,
.contact-page,
.careers-page,
.terms-page,
.signin,
.social-media-page,
.taxi-page,
.forgot_password,
.account-page,
.password,
.confirm,
.confirmed,
.expired,
.thanks,
.web-ordering-page,
.websites-page {
  margin: 0px;
  background: #ffffff;
}
.fleets-page h1,
.request-page h1,
.about-page h1,
.home-page h1,
.business h1,
.industry-page h1,
.onelocal-page h1,
.about-page h1,
.contact-page h1,
.careers-page h1,
.terms-page h1,
.signin h1,
.social-media-page h1,
.taxi-page h1,
.forgot_password h1,
.account-page h1,
.password h1,
.confirm h1,
.confirmed h1,
.expired h1,
.thanks h1,
.web-ordering-page h1,
.websites-page h1,
.fleets-page h2,
.request-page h2,
.about-page h2,
.home-page h2,
.business h2,
.industry-page h2,
.onelocal-page h2,
.about-page h2,
.contact-page h2,
.careers-page h2,
.terms-page h2,
.signin h2,
.social-media-page h2,
.taxi-page h2,
.forgot_password h2,
.account-page h2,
.password h2,
.confirm h2,
.confirmed h2,
.expired h2,
.thanks h2,
.web-ordering-page h2,
.websites-page h2,
.fleets-page h3,
.request-page h3,
.about-page h3,
.home-page h3,
.business h3,
.industry-page h3,
.onelocal-page h3,
.about-page h3,
.contact-page h3,
.careers-page h3,
.terms-page h3,
.signin h3,
.social-media-page h3,
.taxi-page h3,
.forgot_password h3,
.account-page h3,
.password h3,
.confirm h3,
.confirmed h3,
.expired h3,
.thanks h3,
.web-ordering-page h3,
.websites-page h3,
.fleets-page h4,
.request-page h4,
.about-page h4,
.home-page h4,
.business h4,
.industry-page h4,
.onelocal-page h4,
.about-page h4,
.contact-page h4,
.careers-page h4,
.terms-page h4,
.signin h4,
.social-media-page h4,
.taxi-page h4,
.forgot_password h4,
.account-page h4,
.password h4,
.confirm h4,
.confirmed h4,
.expired h4,
.thanks h4,
.web-ordering-page h4,
.websites-page h4 {
  font-family: 'Open Sans', sans-serif;
  color: #474747;
  text-align: center;
}
.fleets-page h1,
.request-page h1,
.about-page h1,
.home-page h1,
.business h1,
.industry-page h1,
.onelocal-page h1,
.about-page h1,
.contact-page h1,
.careers-page h1,
.terms-page h1,
.signin h1,
.social-media-page h1,
.taxi-page h1,
.forgot_password h1,
.account-page h1,
.password h1,
.confirm h1,
.confirmed h1,
.expired h1,
.thanks h1,
.web-ordering-page h1,
.websites-page h1,
.fleets-page h2,
.request-page h2,
.about-page h2,
.home-page h2,
.business h2,
.industry-page h2,
.onelocal-page h2,
.about-page h2,
.contact-page h2,
.careers-page h2,
.terms-page h2,
.signin h2,
.social-media-page h2,
.taxi-page h2,
.forgot_password h2,
.account-page h2,
.password h2,
.confirm h2,
.confirmed h2,
.expired h2,
.thanks h2,
.web-ordering-page h2,
.websites-page h2 {
  font-weight: 600;
  margin-top: 0px;
}
.fleets-page h1,
.request-page h1,
.about-page h1,
.home-page h1,
.business h1,
.industry-page h1,
.onelocal-page h1,
.about-page h1,
.contact-page h1,
.careers-page h1,
.terms-page h1,
.signin h1,
.social-media-page h1,
.taxi-page h1,
.forgot_password h1,
.account-page h1,
.password h1,
.confirm h1,
.confirmed h1,
.expired h1,
.thanks h1,
.web-ordering-page h1,
.websites-page h1 {
  font-weight: 600;
  font-size: 4em;
  line-height: 1;
}
.fleets-page h2,
.request-page h2,
.about-page h2,
.home-page h2,
.business h2,
.industry-page h2,
.onelocal-page h2,
.about-page h2,
.contact-page h2,
.careers-page h2,
.terms-page h2,
.signin h2,
.social-media-page h2,
.taxi-page h2,
.forgot_password h2,
.account-page h2,
.password h2,
.confirm h2,
.confirmed h2,
.expired h2,
.thanks h2,
.web-ordering-page h2,
.websites-page h2,
.fleets-page h3,
.request-page h3,
.about-page h3,
.home-page h3,
.business h3,
.industry-page h3,
.onelocal-page h3,
.about-page h3,
.contact-page h3,
.careers-page h3,
.terms-page h3,
.signin h3,
.social-media-page h3,
.taxi-page h3,
.forgot_password h3,
.account-page h3,
.password h3,
.confirm h3,
.confirmed h3,
.expired h3,
.thanks h3,
.web-ordering-page h3,
.websites-page h3 {
  line-height: 1.2;
}
.fleets-page h2,
.request-page h2,
.about-page h2,
.home-page h2,
.business h2,
.industry-page h2,
.onelocal-page h2,
.about-page h2,
.contact-page h2,
.careers-page h2,
.terms-page h2,
.signin h2,
.social-media-page h2,
.taxi-page h2,
.forgot_password h2,
.account-page h2,
.password h2,
.confirm h2,
.confirmed h2,
.expired h2,
.thanks h2,
.web-ordering-page h2,
.websites-page h2 {
  font-size: 2.75em;
  margin-bottom: 10px;
}
.fleets-page h3,
.request-page h3,
.about-page h3,
.home-page h3,
.business h3,
.industry-page h3,
.onelocal-page h3,
.about-page h3,
.contact-page h3,
.careers-page h3,
.terms-page h3,
.signin h3,
.social-media-page h3,
.taxi-page h3,
.forgot_password h3,
.account-page h3,
.password h3,
.confirm h3,
.confirmed h3,
.expired h3,
.thanks h3,
.web-ordering-page h3,
.websites-page h3 {
  font-size: 1.85em;
  font-weight: 300;
  margin-top: 0;
}
.fleets-page h4,
.request-page h4,
.about-page h4,
.home-page h4,
.business h4,
.industry-page h4,
.onelocal-page h4,
.about-page h4,
.contact-page h4,
.careers-page h4,
.terms-page h4,
.signin h4,
.social-media-page h4,
.taxi-page h4,
.forgot_password h4,
.account-page h4,
.password h4,
.confirm h4,
.confirmed h4,
.expired h4,
.thanks h4,
.web-ordering-page h4,
.websites-page h4,
.fleets-page h5,
.request-page h5,
.about-page h5,
.home-page h5,
.business h5,
.industry-page h5,
.onelocal-page h5,
.about-page h5,
.contact-page h5,
.careers-page h5,
.terms-page h5,
.signin h5,
.social-media-page h5,
.taxi-page h5,
.forgot_password h5,
.account-page h5,
.password h5,
.confirm h5,
.confirmed h5,
.expired h5,
.thanks h5,
.web-ordering-page h5,
.websites-page h5 {
  font-size: 1.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.fleets-page p,
.request-page p,
.about-page p,
.home-page p,
.business p,
.industry-page p,
.onelocal-page p,
.about-page p,
.contact-page p,
.careers-page p,
.terms-page p,
.signin p,
.social-media-page p,
.taxi-page p,
.forgot_password p,
.account-page p,
.password p,
.confirm p,
.confirmed p,
.expired p,
.thanks p,
.web-ordering-page p,
.websites-page p {
  font-family: "Lato", sans-serif;
  font-size: 1.25em;
  line-height: 1.25;
  font-weight: 300;
  color: #464646;
}
.fleets-page p span,
.request-page p span,
.about-page p span,
.home-page p span,
.business p span,
.industry-page p span,
.onelocal-page p span,
.about-page p span,
.contact-page p span,
.careers-page p span,
.terms-page p span,
.signin p span,
.social-media-page p span,
.taxi-page p span,
.forgot_password p span,
.account-page p span,
.password p span,
.confirm p span,
.confirmed p span,
.expired p span,
.thanks p span,
.web-ordering-page p span,
.websites-page p span {
  font-weight: 700;
}
.fleets-page .bullet-list,
.request-page .bullet-list,
.about-page .bullet-list,
.home-page .bullet-list,
.business .bullet-list,
.industry-page .bullet-list,
.onelocal-page .bullet-list,
.about-page .bullet-list,
.contact-page .bullet-list,
.careers-page .bullet-list,
.terms-page .bullet-list,
.signin .bullet-list,
.social-media-page .bullet-list,
.taxi-page .bullet-list,
.forgot_password .bullet-list,
.account-page .bullet-list,
.password .bullet-list,
.confirm .bullet-list,
.confirmed .bullet-list,
.expired .bullet-list,
.thanks .bullet-list,
.web-ordering-page .bullet-list,
.websites-page .bullet-list {
  padding-left: 15px;
}
.fleets-page .bullet-list p,
.request-page .bullet-list p,
.about-page .bullet-list p,
.home-page .bullet-list p,
.business .bullet-list p,
.industry-page .bullet-list p,
.onelocal-page .bullet-list p,
.about-page .bullet-list p,
.contact-page .bullet-list p,
.careers-page .bullet-list p,
.terms-page .bullet-list p,
.signin .bullet-list p,
.social-media-page .bullet-list p,
.taxi-page .bullet-list p,
.forgot_password .bullet-list p,
.account-page .bullet-list p,
.password .bullet-list p,
.confirm .bullet-list p,
.confirmed .bullet-list p,
.expired .bullet-list p,
.thanks .bullet-list p,
.web-ordering-page .bullet-list p,
.websites-page .bullet-list p {
  text-align: left;
}
@media (max-width: 991px) {
  .fleets-page h1,
  .request-page h1,
  .about-page h1,
  .home-page h1,
  .business h1,
  .industry-page h1,
  .onelocal-page h1,
  .about-page h1,
  .contact-page h1,
  .careers-page h1,
  .terms-page h1,
  .signin h1,
  .social-media-page h1,
  .taxi-page h1,
  .forgot_password h1,
  .account-page h1,
  .password h1,
  .confirm h1,
  .confirmed h1,
  .expired h1,
  .thanks h1,
  .web-ordering-page h1,
  .websites-page h1 {
    font-size: 3.25em;
  }
  .fleets-page h2,
  .request-page h2,
  .about-page h2,
  .home-page h2,
  .business h2,
  .industry-page h2,
  .onelocal-page h2,
  .about-page h2,
  .contact-page h2,
  .careers-page h2,
  .terms-page h2,
  .signin h2,
  .social-media-page h2,
  .taxi-page h2,
  .forgot_password h2,
  .account-page h2,
  .password h2,
  .confirm h2,
  .confirmed h2,
  .expired h2,
  .thanks h2,
  .web-ordering-page h2,
  .websites-page h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  .fleets-page h3,
  .request-page h3,
  .about-page h3,
  .home-page h3,
  .business h3,
  .industry-page h3,
  .onelocal-page h3,
  .about-page h3,
  .contact-page h3,
  .careers-page h3,
  .terms-page h3,
  .signin h3,
  .social-media-page h3,
  .taxi-page h3,
  .forgot_password h3,
  .account-page h3,
  .password h3,
  .confirm h3,
  .confirmed h3,
  .expired h3,
  .thanks h3,
  .web-ordering-page h3,
  .websites-page h3 {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .fleets-page h4,
  .request-page h4,
  .about-page h4,
  .home-page h4,
  .business h4,
  .industry-page h4,
  .onelocal-page h4,
  .about-page h4,
  .contact-page h4,
  .careers-page h4,
  .terms-page h4,
  .signin h4,
  .social-media-page h4,
  .taxi-page h4,
  .forgot_password h4,
  .account-page h4,
  .password h4,
  .confirm h4,
  .confirmed h4,
  .expired h4,
  .thanks h4,
  .web-ordering-page h4,
  .websites-page h4 {
    text-align: center;
    font-size: 1.3em;
  }
  .fleets-page h5,
  .request-page h5,
  .about-page h5,
  .home-page h5,
  .business h5,
  .industry-page h5,
  .onelocal-page h5,
  .about-page h5,
  .contact-page h5,
  .careers-page h5,
  .terms-page h5,
  .signin h5,
  .social-media-page h5,
  .taxi-page h5,
  .forgot_password h5,
  .account-page h5,
  .password h5,
  .confirm h5,
  .confirmed h5,
  .expired h5,
  .thanks h5,
  .web-ordering-page h5,
  .websites-page h5 {
    font-size: 1em;
  }
  .fleets-page p,
  .request-page p,
  .about-page p,
  .home-page p,
  .business p,
  .industry-page p,
  .onelocal-page p,
  .about-page p,
  .contact-page p,
  .careers-page p,
  .terms-page p,
  .signin p,
  .social-media-page p,
  .taxi-page p,
  .forgot_password p,
  .account-page p,
  .password p,
  .confirm p,
  .confirmed p,
  .expired p,
  .thanks p,
  .web-ordering-page p,
  .websites-page p {
    text-align: center;
    font-size: 1.2em;
  }
}
@media (max-width: 767px) {
  .fleets-page h1,
  .request-page h1,
  .about-page h1,
  .home-page h1,
  .business h1,
  .industry-page h1,
  .onelocal-page h1,
  .about-page h1,
  .contact-page h1,
  .careers-page h1,
  .terms-page h1,
  .signin h1,
  .social-media-page h1,
  .taxi-page h1,
  .forgot_password h1,
  .account-page h1,
  .password h1,
  .confirm h1,
  .confirmed h1,
  .expired h1,
  .thanks h1,
  .web-ordering-page h1,
  .websites-page h1 {
    font-size: 2.25em;
  }
  .fleets-page h2,
  .request-page h2,
  .about-page h2,
  .home-page h2,
  .business h2,
  .industry-page h2,
  .onelocal-page h2,
  .about-page h2,
  .contact-page h2,
  .careers-page h2,
  .terms-page h2,
  .signin h2,
  .social-media-page h2,
  .taxi-page h2,
  .forgot_password h2,
  .account-page h2,
  .password h2,
  .confirm h2,
  .confirmed h2,
  .expired h2,
  .thanks h2,
  .web-ordering-page h2,
  .websites-page h2 {
    font-size: 1.75em;
  }
  .fleets-page h3,
  .request-page h3,
  .about-page h3,
  .home-page h3,
  .business h3,
  .industry-page h3,
  .onelocal-page h3,
  .about-page h3,
  .contact-page h3,
  .careers-page h3,
  .terms-page h3,
  .signin h3,
  .social-media-page h3,
  .taxi-page h3,
  .forgot_password h3,
  .account-page h3,
  .password h3,
  .confirm h3,
  .confirmed h3,
  .expired h3,
  .thanks h3,
  .web-ordering-page h3,
  .websites-page h3 {
    font-size: 1.4em;
  }
  .fleets-page h4,
  .request-page h4,
  .about-page h4,
  .home-page h4,
  .business h4,
  .industry-page h4,
  .onelocal-page h4,
  .about-page h4,
  .contact-page h4,
  .careers-page h4,
  .terms-page h4,
  .signin h4,
  .social-media-page h4,
  .taxi-page h4,
  .forgot_password h4,
  .account-page h4,
  .password h4,
  .confirm h4,
  .confirmed h4,
  .expired h4,
  .thanks h4,
  .web-ordering-page h4,
  .websites-page h4 {
    text-align: center;
    font-size: 1.25em;
  }
  .fleets-page h5,
  .request-page h5,
  .about-page h5,
  .home-page h5,
  .business h5,
  .industry-page h5,
  .onelocal-page h5,
  .about-page h5,
  .contact-page h5,
  .careers-page h5,
  .terms-page h5,
  .signin h5,
  .social-media-page h5,
  .taxi-page h5,
  .forgot_password h5,
  .account-page h5,
  .password h5,
  .confirm h5,
  .confirmed h5,
  .expired h5,
  .thanks h5,
  .web-ordering-page h5,
  .websites-page h5 {
    font-size: 1.25em;
  }
  .fleets-page p,
  .request-page p,
  .about-page p,
  .home-page p,
  .business p,
  .industry-page p,
  .onelocal-page p,
  .about-page p,
  .contact-page p,
  .careers-page p,
  .terms-page p,
  .signin p,
  .social-media-page p,
  .taxi-page p,
  .forgot_password p,
  .account-page p,
  .password p,
  .confirm p,
  .confirmed p,
  .expired p,
  .thanks p,
  .web-ordering-page p,
  .websites-page p {
    text-align: center;
    font-size: 1.25em;
  }
}
.fleets-page .text-left,
.request-page .text-left,
.about-page .text-left,
.home-page .text-left,
.business .text-left,
.industry-page .text-left,
.onelocal-page .text-left,
.about-page .text-left,
.contact-page .text-left,
.careers-page .text-left,
.terms-page .text-left,
.signin .text-left,
.social-media-page .text-left,
.taxi-page .text-left,
.forgot_password .text-left,
.account-page .text-left,
.password .text-left,
.confirm .text-left,
.confirmed .text-left,
.expired .text-left,
.thanks .text-left,
.web-ordering-page .text-left,
.websites-page .text-left {
  text-align: left;
}
.fleets-page a:not(.new-booking-btn):not(.breadcrumb-link),
.request-page a:not(.new-booking-btn):not(.breadcrumb-link),
.about-page a:not(.new-booking-btn):not(.breadcrumb-link),
.home-page a:not(.new-booking-btn):not(.breadcrumb-link),
.business a:not(.new-booking-btn):not(.breadcrumb-link),
.industry-page a:not(.new-booking-btn):not(.breadcrumb-link),
.onelocal-page a:not(.new-booking-btn):not(.breadcrumb-link),
.about-page a:not(.new-booking-btn):not(.breadcrumb-link),
.contact-page a:not(.new-booking-btn):not(.breadcrumb-link),
.careers-page a:not(.new-booking-btn):not(.breadcrumb-link),
.terms-page a:not(.new-booking-btn):not(.breadcrumb-link),
.signin a:not(.new-booking-btn):not(.breadcrumb-link),
.social-media-page a:not(.new-booking-btn):not(.breadcrumb-link),
.taxi-page a:not(.new-booking-btn):not(.breadcrumb-link),
.forgot_password a:not(.new-booking-btn):not(.breadcrumb-link),
.account-page a:not(.new-booking-btn):not(.breadcrumb-link),
.password a:not(.new-booking-btn):not(.breadcrumb-link),
.confirm a:not(.new-booking-btn):not(.breadcrumb-link),
.confirmed a:not(.new-booking-btn):not(.breadcrumb-link),
.expired a:not(.new-booking-btn):not(.breadcrumb-link),
.thanks a:not(.new-booking-btn):not(.breadcrumb-link),
.web-ordering-page a:not(.new-booking-btn):not(.breadcrumb-link),
.websites-page a:not(.new-booking-btn):not(.breadcrumb-link) {
  font-weight: 400;
}
.fleets-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.request-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.home-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.business a:not(.new-booking-btn):not(.breadcrumb-link) span,
.industry-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.onelocal-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.contact-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.careers-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.terms-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.signin a:not(.new-booking-btn):not(.breadcrumb-link) span,
.social-media-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.taxi-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.forgot_password a:not(.new-booking-btn):not(.breadcrumb-link) span,
.account-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.password a:not(.new-booking-btn):not(.breadcrumb-link) span,
.confirm a:not(.new-booking-btn):not(.breadcrumb-link) span,
.confirmed a:not(.new-booking-btn):not(.breadcrumb-link) span,
.expired a:not(.new-booking-btn):not(.breadcrumb-link) span,
.thanks a:not(.new-booking-btn):not(.breadcrumb-link) span,
.web-ordering-page a:not(.new-booking-btn):not(.breadcrumb-link) span,
.websites-page a:not(.new-booking-btn):not(.breadcrumb-link) span {
  color: #FFF;
}
.fleets-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.request-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.home-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.business a:not(.new-booking-btn):not(.breadcrumb-link):link,
.industry-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.onelocal-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.contact-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.careers-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.terms-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.signin a:not(.new-booking-btn):not(.breadcrumb-link):link,
.social-media-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.taxi-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.forgot_password a:not(.new-booking-btn):not(.breadcrumb-link):link,
.account-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.password a:not(.new-booking-btn):not(.breadcrumb-link):link,
.confirm a:not(.new-booking-btn):not(.breadcrumb-link):link,
.confirmed a:not(.new-booking-btn):not(.breadcrumb-link):link,
.expired a:not(.new-booking-btn):not(.breadcrumb-link):link,
.thanks a:not(.new-booking-btn):not(.breadcrumb-link):link,
.web-ordering-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.websites-page a:not(.new-booking-btn):not(.breadcrumb-link):link,
.fleets-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.request-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.home-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.business a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.industry-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.onelocal-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.contact-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.careers-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.terms-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.signin a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.social-media-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.taxi-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.forgot_password a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.account-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.password a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.confirm a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.confirmed a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.expired a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.thanks a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.web-ordering-page a:not(.new-booking-btn):not(.breadcrumb-link):visited,
.websites-page a:not(.new-booking-btn):not(.breadcrumb-link):visited {
  text-decoration: none;
  color: #ff6138;
}
.fleets-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.request-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.home-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.business a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.industry-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.onelocal-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.about-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.contact-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.careers-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.terms-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.signin a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.social-media-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.taxi-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.forgot_password a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.account-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.password a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.confirm a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.confirmed a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.expired a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.thanks a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.web-ordering-page a:not(.new-booking-btn):not(.breadcrumb-link):hover,
.websites-page a:not(.new-booking-btn):not(.breadcrumb-link):hover {
  color: #d12b00;
}
@media (max-width: 991px) {
  .fleets-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .request-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .about-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .home-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .business a:not(.new-booking-btn):not(.breadcrumb-link),
  .industry-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .onelocal-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .about-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .contact-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .careers-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .terms-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .signin a:not(.new-booking-btn):not(.breadcrumb-link),
  .social-media-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .taxi-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .forgot_password a:not(.new-booking-btn):not(.breadcrumb-link),
  .account-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .password a:not(.new-booking-btn):not(.breadcrumb-link),
  .confirm a:not(.new-booking-btn):not(.breadcrumb-link),
  .confirmed a:not(.new-booking-btn):not(.breadcrumb-link),
  .expired a:not(.new-booking-btn):not(.breadcrumb-link),
  .thanks a:not(.new-booking-btn):not(.breadcrumb-link),
  .web-ordering-page a:not(.new-booking-btn):not(.breadcrumb-link),
  .websites-page a:not(.new-booking-btn):not(.breadcrumb-link) {
    font-weight: 600;
  }
}
/* New CSS */
.home-page,
.business,
.industry-page,
.onelocal-page,
.about-page,
.contact-page,
.careers-page,
.terms-page,
.signin,
.social-media-page,
.fleets-page,
.request-page,
.web-ordering-page,
.websites-page {
  /* Icons */
  /* Styling for the large splash containers */
  /* Industry Thumbs */
}
.home-page .avatar-names,
.business .avatar-names,
.industry-page .avatar-names,
.onelocal-page .avatar-names,
.about-page .avatar-names,
.contact-page .avatar-names,
.careers-page .avatar-names,
.terms-page .avatar-names,
.signin .avatar-names,
.social-media-page .avatar-names,
.fleets-page .avatar-names,
.request-page .avatar-names,
.web-ordering-page .avatar-names,
.websites-page .avatar-names {
  color: #ff6138;
  margin-top: 15px;
  margin-bottom: 25px;
}
.home-page .well p,
.business .well p,
.industry-page .well p,
.onelocal-page .well p,
.about-page .well p,
.contact-page .well p,
.careers-page .well p,
.terms-page .well p,
.signin .well p,
.social-media-page .well p,
.fleets-page .well p,
.request-page .well p,
.web-ordering-page .well p,
.websites-page .well p {
  font-size: 1.4em;
  margin: 0;
}
.home-page .business-icon,
.business .business-icon,
.industry-page .business-icon,
.onelocal-page .business-icon,
.about-page .business-icon,
.contact-page .business-icon,
.careers-page .business-icon,
.terms-page .business-icon,
.signin .business-icon,
.social-media-page .business-icon,
.fleets-page .business-icon,
.request-page .business-icon,
.web-ordering-page .business-icon,
.websites-page .business-icon {
  margin: 20px 0 10px;
}
@media (max-width: 767px) {
  .home-page .margin-top-40,
  .business .margin-top-40,
  .industry-page .margin-top-40,
  .onelocal-page .margin-top-40,
  .about-page .margin-top-40,
  .contact-page .margin-top-40,
  .careers-page .margin-top-40,
  .terms-page .margin-top-40,
  .signin .margin-top-40,
  .social-media-page .margin-top-40,
  .fleets-page .margin-top-40,
  .request-page .margin-top-40,
  .web-ordering-page .margin-top-40,
  .websites-page .margin-top-40 {
    text-align: center;
    margin-top: 40px;
  }
}
.home-page .btn,
.business .btn,
.industry-page .btn,
.onelocal-page .btn,
.about-page .btn,
.contact-page .btn,
.careers-page .btn,
.terms-page .btn,
.signin .btn,
.social-media-page .btn,
.fleets-page .btn,
.request-page .btn,
.web-ordering-page .btn,
.websites-page .btn {
  border-radius: 5px;
}
.home-page .jumbotron,
.business .jumbotron,
.industry-page .jumbotron,
.onelocal-page .jumbotron,
.about-page .jumbotron,
.contact-page .jumbotron,
.careers-page .jumbotron,
.terms-page .jumbotron,
.signin .jumbotron,
.social-media-page .jumbotron,
.fleets-page .jumbotron,
.request-page .jumbotron,
.web-ordering-page .jumbotron,
.websites-page .jumbotron {
  margin-bottom: 0px;
  padding: 40px 0px;
  height: 70vh;
}
.home-page .jumbotron .app-badge-table td,
.business .jumbotron .app-badge-table td,
.industry-page .jumbotron .app-badge-table td,
.onelocal-page .jumbotron .app-badge-table td,
.about-page .jumbotron .app-badge-table td,
.contact-page .jumbotron .app-badge-table td,
.careers-page .jumbotron .app-badge-table td,
.terms-page .jumbotron .app-badge-table td,
.signin .jumbotron .app-badge-table td,
.social-media-page .jumbotron .app-badge-table td,
.fleets-page .jumbotron .app-badge-table td,
.request-page .jumbotron .app-badge-table td,
.web-ordering-page .jumbotron .app-badge-table td,
.websites-page .jumbotron .app-badge-table td {
  text-align: center;
}
.home-page .jumbotron .app-badge-table td .app-badge,
.business .jumbotron .app-badge-table td .app-badge,
.industry-page .jumbotron .app-badge-table td .app-badge,
.onelocal-page .jumbotron .app-badge-table td .app-badge,
.about-page .jumbotron .app-badge-table td .app-badge,
.contact-page .jumbotron .app-badge-table td .app-badge,
.careers-page .jumbotron .app-badge-table td .app-badge,
.terms-page .jumbotron .app-badge-table td .app-badge,
.signin .jumbotron .app-badge-table td .app-badge,
.social-media-page .jumbotron .app-badge-table td .app-badge,
.fleets-page .jumbotron .app-badge-table td .app-badge,
.request-page .jumbotron .app-badge-table td .app-badge,
.web-ordering-page .jumbotron .app-badge-table td .app-badge,
.websites-page .jumbotron .app-badge-table td .app-badge {
  width: 75%;
}
.home-page .jumbotron .app-badge-table .download-mobile-link td,
.business .jumbotron .app-badge-table .download-mobile-link td,
.industry-page .jumbotron .app-badge-table .download-mobile-link td,
.onelocal-page .jumbotron .app-badge-table .download-mobile-link td,
.about-page .jumbotron .app-badge-table .download-mobile-link td,
.contact-page .jumbotron .app-badge-table .download-mobile-link td,
.careers-page .jumbotron .app-badge-table .download-mobile-link td,
.terms-page .jumbotron .app-badge-table .download-mobile-link td,
.signin .jumbotron .app-badge-table .download-mobile-link td,
.social-media-page .jumbotron .app-badge-table .download-mobile-link td,
.fleets-page .jumbotron .app-badge-table .download-mobile-link td,
.request-page .jumbotron .app-badge-table .download-mobile-link td,
.web-ordering-page .jumbotron .app-badge-table .download-mobile-link td,
.websites-page .jumbotron .app-badge-table .download-mobile-link td {
  text-align: left;
}
@media (max-width: 767px) {
  .home-page .jumbotron,
  .business .jumbotron,
  .industry-page .jumbotron,
  .onelocal-page .jumbotron,
  .about-page .jumbotron,
  .contact-page .jumbotron,
  .careers-page .jumbotron,
  .terms-page .jumbotron,
  .signin .jumbotron,
  .social-media-page .jumbotron,
  .fleets-page .jumbotron,
  .request-page .jumbotron,
  .web-ordering-page .jumbotron,
  .websites-page .jumbotron {
    height: auto;
  }
}
.home-page .jumbotron h1,
.business .jumbotron h1,
.industry-page .jumbotron h1,
.onelocal-page .jumbotron h1,
.about-page .jumbotron h1,
.contact-page .jumbotron h1,
.careers-page .jumbotron h1,
.terms-page .jumbotron h1,
.signin .jumbotron h1,
.social-media-page .jumbotron h1,
.fleets-page .jumbotron h1,
.request-page .jumbotron h1,
.web-ordering-page .jumbotron h1,
.websites-page .jumbotron h1,
.home-page .jumbotron h3,
.business .jumbotron h3,
.industry-page .jumbotron h3,
.onelocal-page .jumbotron h3,
.about-page .jumbotron h3,
.contact-page .jumbotron h3,
.careers-page .jumbotron h3,
.terms-page .jumbotron h3,
.signin .jumbotron h3,
.social-media-page .jumbotron h3,
.fleets-page .jumbotron h3,
.request-page .jumbotron h3,
.web-ordering-page .jumbotron h3,
.websites-page .jumbotron h3,
.home-page .jumbotron h4,
.business .jumbotron h4,
.industry-page .jumbotron h4,
.onelocal-page .jumbotron h4,
.about-page .jumbotron h4,
.contact-page .jumbotron h4,
.careers-page .jumbotron h4,
.terms-page .jumbotron h4,
.signin .jumbotron h4,
.social-media-page .jumbotron h4,
.fleets-page .jumbotron h4,
.request-page .jumbotron h4,
.web-ordering-page .jumbotron h4,
.websites-page .jumbotron h4 {
  text-align: center;
  color: #FFF;
}
.home-page .jumbotron h3,
.business .jumbotron h3,
.industry-page .jumbotron h3,
.onelocal-page .jumbotron h3,
.about-page .jumbotron h3,
.contact-page .jumbotron h3,
.careers-page .jumbotron h3,
.terms-page .jumbotron h3,
.signin .jumbotron h3,
.social-media-page .jumbotron h3,
.fleets-page .jumbotron h3,
.request-page .jumbotron h3,
.web-ordering-page .jumbotron h3,
.websites-page .jumbotron h3 {
  margin-bottom: 25px;
}
.home-page .jumbotron h4,
.business .jumbotron h4,
.industry-page .jumbotron h4,
.onelocal-page .jumbotron h4,
.about-page .jumbotron h4,
.contact-page .jumbotron h4,
.careers-page .jumbotron h4,
.terms-page .jumbotron h4,
.signin .jumbotron h4,
.social-media-page .jumbotron h4,
.fleets-page .jumbotron h4,
.request-page .jumbotron h4,
.web-ordering-page .jumbotron h4,
.websites-page .jumbotron h4 {
  margin-top: 20px;
  margin-bottom: 25px;
  text-transform: none;
}
.home-page .home-industry-img,
.business .home-industry-img,
.industry-page .home-industry-img,
.onelocal-page .home-industry-img,
.about-page .home-industry-img,
.contact-page .home-industry-img,
.careers-page .home-industry-img,
.terms-page .home-industry-img,
.signin .home-industry-img,
.social-media-page .home-industry-img,
.fleets-page .home-industry-img,
.request-page .home-industry-img,
.web-ordering-page .home-industry-img,
.websites-page .home-industry-img {
  position: relative;
  display: block;
  width: 100%;
}
.home-page .home-industry-img img,
.business .home-industry-img img,
.industry-page .home-industry-img img,
.onelocal-page .home-industry-img img,
.about-page .home-industry-img img,
.contact-page .home-industry-img img,
.careers-page .home-industry-img img,
.terms-page .home-industry-img img,
.signin .home-industry-img img,
.social-media-page .home-industry-img img,
.fleets-page .home-industry-img img,
.request-page .home-industry-img img,
.web-ordering-page .home-industry-img img,
.websites-page .home-industry-img img {
  width: 100%;
}
.home-page .home-industry-img .industry-title,
.business .home-industry-img .industry-title,
.industry-page .home-industry-img .industry-title,
.onelocal-page .home-industry-img .industry-title,
.about-page .home-industry-img .industry-title,
.contact-page .home-industry-img .industry-title,
.careers-page .home-industry-img .industry-title,
.terms-page .home-industry-img .industry-title,
.signin .home-industry-img .industry-title,
.social-media-page .home-industry-img .industry-title,
.fleets-page .home-industry-img .industry-title,
.request-page .home-industry-img .industry-title,
.web-ordering-page .home-industry-img .industry-title,
.websites-page .home-industry-img .industry-title {
  position: absolute;
  padding-left: 15px;
  bottom: 5px;
}
.home-page .home-industry-img .industry-title h4,
.business .home-industry-img .industry-title h4,
.industry-page .home-industry-img .industry-title h4,
.onelocal-page .home-industry-img .industry-title h4,
.about-page .home-industry-img .industry-title h4,
.contact-page .home-industry-img .industry-title h4,
.careers-page .home-industry-img .industry-title h4,
.terms-page .home-industry-img .industry-title h4,
.signin .home-industry-img .industry-title h4,
.social-media-page .home-industry-img .industry-title h4,
.fleets-page .home-industry-img .industry-title h4,
.request-page .home-industry-img .industry-title h4,
.web-ordering-page .home-industry-img .industry-title h4,
.websites-page .home-industry-img .industry-title h4 {
  text-align: left;
}
.home-page .home-industry-img .industry-title h4,
.business .home-industry-img .industry-title h4,
.industry-page .home-industry-img .industry-title h4,
.onelocal-page .home-industry-img .industry-title h4,
.about-page .home-industry-img .industry-title h4,
.contact-page .home-industry-img .industry-title h4,
.careers-page .home-industry-img .industry-title h4,
.terms-page .home-industry-img .industry-title h4,
.signin .home-industry-img .industry-title h4,
.social-media-page .home-industry-img .industry-title h4,
.fleets-page .home-industry-img .industry-title h4,
.request-page .home-industry-img .industry-title h4,
.web-ordering-page .home-industry-img .industry-title h4,
.websites-page .home-industry-img .industry-title h4 {
  color: #FFF;
  text-align: left;
}
.home-page .home-industry-img p,
.business .home-industry-img p,
.industry-page .home-industry-img p,
.onelocal-page .home-industry-img p,
.about-page .home-industry-img p,
.contact-page .home-industry-img p,
.careers-page .home-industry-img p,
.terms-page .home-industry-img p,
.signin .home-industry-img p,
.social-media-page .home-industry-img p,
.fleets-page .home-industry-img p,
.request-page .home-industry-img p,
.web-ordering-page .home-industry-img p,
.websites-page .home-industry-img p {
  text-align: left;
}
@media (max-width: 767px) {
  .home-page .home-industry-img,
  .business .home-industry-img,
  .industry-page .home-industry-img,
  .onelocal-page .home-industry-img,
  .about-page .home-industry-img,
  .contact-page .home-industry-img,
  .careers-page .home-industry-img,
  .terms-page .home-industry-img,
  .signin .home-industry-img,
  .social-media-page .home-industry-img,
  .fleets-page .home-industry-img,
  .request-page .home-industry-img,
  .web-ordering-page .home-industry-img,
  .websites-page .home-industry-img {
    margin-bottom: 20px;
  }
}
.home-page a.home-industry-img,
.business a.home-industry-img,
.industry-page a.home-industry-img,
.onelocal-page a.home-industry-img,
.about-page a.home-industry-img,
.contact-page a.home-industry-img,
.careers-page a.home-industry-img,
.terms-page a.home-industry-img,
.signin a.home-industry-img,
.social-media-page a.home-industry-img,
.fleets-page a.home-industry-img,
.request-page a.home-industry-img,
.web-ordering-page a.home-industry-img,
.websites-page a.home-industry-img {
  text-decoration: none;
}
.home-page a.home-industry-img .img-rounded,
.business a.home-industry-img .img-rounded,
.industry-page a.home-industry-img .img-rounded,
.onelocal-page a.home-industry-img .img-rounded,
.about-page a.home-industry-img .img-rounded,
.contact-page a.home-industry-img .img-rounded,
.careers-page a.home-industry-img .img-rounded,
.terms-page a.home-industry-img .img-rounded,
.signin a.home-industry-img .img-rounded,
.social-media-page a.home-industry-img .img-rounded,
.fleets-page a.home-industry-img .img-rounded,
.request-page a.home-industry-img .img-rounded,
.web-ordering-page a.home-industry-img .img-rounded,
.websites-page a.home-industry-img .img-rounded {
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  filter: alpha(opacity=75);
  opacity: 0.75;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.home-page a.home-industry-img:hover .img-rounded,
.business a.home-industry-img:hover .img-rounded,
.industry-page a.home-industry-img:hover .img-rounded,
.onelocal-page a.home-industry-img:hover .img-rounded,
.about-page a.home-industry-img:hover .img-rounded,
.contact-page a.home-industry-img:hover .img-rounded,
.careers-page a.home-industry-img:hover .img-rounded,
.terms-page a.home-industry-img:hover .img-rounded,
.signin a.home-industry-img:hover .img-rounded,
.social-media-page a.home-industry-img:hover .img-rounded,
.fleets-page a.home-industry-img:hover .img-rounded,
.request-page a.home-industry-img:hover .img-rounded,
.web-ordering-page a.home-industry-img:hover .img-rounded,
.websites-page a.home-industry-img:hover .img-rounded,
.home-page a.home-industry-img:focus .img-rounded,
.business a.home-industry-img:focus .img-rounded,
.industry-page a.home-industry-img:focus .img-rounded,
.onelocal-page a.home-industry-img:focus .img-rounded,
.about-page a.home-industry-img:focus .img-rounded,
.contact-page a.home-industry-img:focus .img-rounded,
.careers-page a.home-industry-img:focus .img-rounded,
.terms-page a.home-industry-img:focus .img-rounded,
.signin a.home-industry-img:focus .img-rounded,
.social-media-page a.home-industry-img:focus .img-rounded,
.fleets-page a.home-industry-img:focus .img-rounded,
.request-page a.home-industry-img:focus .img-rounded,
.web-ordering-page a.home-industry-img:focus .img-rounded,
.websites-page a.home-industry-img:focus .img-rounded {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  opacity: 1;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.home-page a.home-industry-img:hover .learn-more,
.business a.home-industry-img:hover .learn-more,
.industry-page a.home-industry-img:hover .learn-more,
.onelocal-page a.home-industry-img:hover .learn-more,
.about-page a.home-industry-img:hover .learn-more,
.contact-page a.home-industry-img:hover .learn-more,
.careers-page a.home-industry-img:hover .learn-more,
.terms-page a.home-industry-img:hover .learn-more,
.signin a.home-industry-img:hover .learn-more,
.social-media-page a.home-industry-img:hover .learn-more,
.fleets-page a.home-industry-img:hover .learn-more,
.request-page a.home-industry-img:hover .learn-more,
.web-ordering-page a.home-industry-img:hover .learn-more,
.websites-page a.home-industry-img:hover .learn-more,
.home-page a.home-industry-img:focus .learn-more,
.business a.home-industry-img:focus .learn-more,
.industry-page a.home-industry-img:focus .learn-more,
.onelocal-page a.home-industry-img:focus .learn-more,
.about-page a.home-industry-img:focus .learn-more,
.contact-page a.home-industry-img:focus .learn-more,
.careers-page a.home-industry-img:focus .learn-more,
.terms-page a.home-industry-img:focus .learn-more,
.signin a.home-industry-img:focus .learn-more,
.social-media-page a.home-industry-img:focus .learn-more,
.fleets-page a.home-industry-img:focus .learn-more,
.request-page a.home-industry-img:focus .learn-more,
.web-ordering-page a.home-industry-img:focus .learn-more,
.websites-page a.home-industry-img:focus .learn-more {
  padding-left: 30px;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.home-page a.home-industry-img .industry-title,
.business a.home-industry-img .industry-title,
.industry-page a.home-industry-img .industry-title,
.onelocal-page a.home-industry-img .industry-title,
.about-page a.home-industry-img .industry-title,
.contact-page a.home-industry-img .industry-title,
.careers-page a.home-industry-img .industry-title,
.terms-page a.home-industry-img .industry-title,
.signin a.home-industry-img .industry-title,
.social-media-page a.home-industry-img .industry-title,
.fleets-page a.home-industry-img .industry-title,
.request-page a.home-industry-img .industry-title,
.web-ordering-page a.home-industry-img .industry-title,
.websites-page a.home-industry-img .industry-title {
  bottom: 40px;
}
.home-page a.home-industry-img .learn-more,
.business a.home-industry-img .learn-more,
.industry-page a.home-industry-img .learn-more,
.onelocal-page a.home-industry-img .learn-more,
.about-page a.home-industry-img .learn-more,
.contact-page a.home-industry-img .learn-more,
.careers-page a.home-industry-img .learn-more,
.terms-page a.home-industry-img .learn-more,
.signin a.home-industry-img .learn-more,
.social-media-page a.home-industry-img .learn-more,
.fleets-page a.home-industry-img .learn-more,
.request-page a.home-industry-img .learn-more,
.web-ordering-page a.home-industry-img .learn-more,
.websites-page a.home-industry-img .learn-more {
  padding: 10px 10px 10px 15px;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #2c3e50;
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background: #2c3e50;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2c3e50 0%, #212f3c 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c3e50), color-stop(100%, #212f3c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2c3e50 0%, #212f3c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #2c3e50 0%, #212f3c 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #2c3e50 0%, #212f3c 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #2c3e50 0%, #212f3c 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2c3e50', endColorstr='#212f3c', GradientType=0);
  /* IE6-9 */
}
.home-page a.home-industry-img .learn-more p,
.business a.home-industry-img .learn-more p,
.industry-page a.home-industry-img .learn-more p,
.onelocal-page a.home-industry-img .learn-more p,
.about-page a.home-industry-img .learn-more p,
.contact-page a.home-industry-img .learn-more p,
.careers-page a.home-industry-img .learn-more p,
.terms-page a.home-industry-img .learn-more p,
.signin a.home-industry-img .learn-more p,
.social-media-page a.home-industry-img .learn-more p,
.fleets-page a.home-industry-img .learn-more p,
.request-page a.home-industry-img .learn-more p,
.web-ordering-page a.home-industry-img .learn-more p,
.websites-page a.home-industry-img .learn-more p {
  font-size: 1em;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0;
}
.home-page .well,
.business .well,
.industry-page .well,
.onelocal-page .well,
.about-page .well,
.contact-page .well,
.careers-page .well,
.terms-page .well,
.signin .well,
.social-media-page .well,
.fleets-page .well,
.request-page .well,
.web-ordering-page .well,
.websites-page .well {
  background-color: #d4d4d4;
  margin-top: 20px;
}
.home-page .well .splash-cta,
.business .well .splash-cta,
.industry-page .well .splash-cta,
.onelocal-page .well .splash-cta,
.about-page .well .splash-cta,
.contact-page .well .splash-cta,
.careers-page .well .splash-cta,
.terms-page .well .splash-cta,
.signin .well .splash-cta,
.social-media-page .well .splash-cta,
.fleets-page .well .splash-cta,
.request-page .well .splash-cta,
.web-ordering-page .well .splash-cta,
.websites-page .well .splash-cta {
  text-align: center;
  padding: 0;
}
.home-page .well .splash-cta .splash-cta-button,
.business .well .splash-cta .splash-cta-button,
.industry-page .well .splash-cta .splash-cta-button,
.onelocal-page .well .splash-cta .splash-cta-button,
.about-page .well .splash-cta .splash-cta-button,
.contact-page .well .splash-cta .splash-cta-button,
.careers-page .well .splash-cta .splash-cta-button,
.terms-page .well .splash-cta .splash-cta-button,
.signin .well .splash-cta .splash-cta-button,
.social-media-page .well .splash-cta .splash-cta-button,
.fleets-page .well .splash-cta .splash-cta-button,
.request-page .well .splash-cta .splash-cta-button,
.web-ordering-page .well .splash-cta .splash-cta-button,
.websites-page .well .splash-cta .splash-cta-button {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .home-page .well .splash-cta .splash-cta-button,
  .business .well .splash-cta .splash-cta-button,
  .industry-page .well .splash-cta .splash-cta-button,
  .onelocal-page .well .splash-cta .splash-cta-button,
  .about-page .well .splash-cta .splash-cta-button,
  .contact-page .well .splash-cta .splash-cta-button,
  .careers-page .well .splash-cta .splash-cta-button,
  .terms-page .well .splash-cta .splash-cta-button,
  .signin .well .splash-cta .splash-cta-button,
  .social-media-page .well .splash-cta .splash-cta-button,
  .fleets-page .well .splash-cta .splash-cta-button,
  .request-page .well .splash-cta .splash-cta-button,
  .web-ordering-page .well .splash-cta .splash-cta-button,
  .websites-page .well .splash-cta .splash-cta-button {
    margin-top: 15px;
  }
}
/* Page Shared Styles */
.signin,
.fleets-page,
.taxi-page,
.forgot_password,
.account-page,
.password,
.confirm,
.confirmed,
.expired,
.social-media-page,
.thanks,
.websites-page,
.web-ordering-page {
  margin: 0px;
  background: #ffffff;
}
.signin h4,
.fleets-page h4,
.taxi-page h4,
.forgot_password h4,
.account-page h4,
.password h4,
.confirm h4,
.confirmed h4,
.expired h4,
.social-media-page h4,
.thanks h4,
.websites-page h4,
.web-ordering-page h4 {
  text-align: left;
}
@media (max-width: 991px) {
  .signin h4,
  .fleets-page h4,
  .taxi-page h4,
  .forgot_password h4,
  .account-page h4,
  .password h4,
  .confirm h4,
  .confirmed h4,
  .expired h4,
  .social-media-page h4,
  .thanks h4,
  .websites-page h4,
  .web-ordering-page h4 {
    text-align: center;
  }
}
.signin .container,
.fleets-page .container,
.taxi-page .container,
.forgot_password .container,
.account-page .container,
.password .container,
.confirm .container,
.confirmed .container,
.expired .container,
.social-media-page .container,
.thanks .container,
.websites-page .container,
.web-ordering-page .container {
  padding: 20px;
}
.signin .row-inline-table,
.fleets-page .row-inline-table,
.taxi-page .row-inline-table,
.forgot_password .row-inline-table,
.account-page .row-inline-table,
.password .row-inline-table,
.confirm .row-inline-table,
.confirmed .row-inline-table,
.expired .row-inline-table,
.social-media-page .row-inline-table,
.thanks .row-inline-table,
.websites-page .row-inline-table,
.web-ordering-page .row-inline-table {
  display: inline-table;
}
.signin .row-inline-table .col-md-5,
.fleets-page .row-inline-table .col-md-5,
.taxi-page .row-inline-table .col-md-5,
.forgot_password .row-inline-table .col-md-5,
.account-page .row-inline-table .col-md-5,
.password .row-inline-table .col-md-5,
.confirm .row-inline-table .col-md-5,
.confirmed .row-inline-table .col-md-5,
.expired .row-inline-table .col-md-5,
.social-media-page .row-inline-table .col-md-5,
.thanks .row-inline-table .col-md-5,
.websites-page .row-inline-table .col-md-5,
.web-ordering-page .row-inline-table .col-md-5,
.signin .row-inline-table .col-sm-5,
.fleets-page .row-inline-table .col-sm-5,
.taxi-page .row-inline-table .col-sm-5,
.forgot_password .row-inline-table .col-sm-5,
.account-page .row-inline-table .col-sm-5,
.password .row-inline-table .col-sm-5,
.confirm .row-inline-table .col-sm-5,
.confirmed .row-inline-table .col-sm-5,
.expired .row-inline-table .col-sm-5,
.social-media-page .row-inline-table .col-sm-5,
.thanks .row-inline-table .col-sm-5,
.websites-page .row-inline-table .col-sm-5,
.web-ordering-page .row-inline-table .col-sm-5,
.signin .row-inline-table .col-md-6,
.fleets-page .row-inline-table .col-md-6,
.taxi-page .row-inline-table .col-md-6,
.forgot_password .row-inline-table .col-md-6,
.account-page .row-inline-table .col-md-6,
.password .row-inline-table .col-md-6,
.confirm .row-inline-table .col-md-6,
.confirmed .row-inline-table .col-md-6,
.expired .row-inline-table .col-md-6,
.social-media-page .row-inline-table .col-md-6,
.thanks .row-inline-table .col-md-6,
.websites-page .row-inline-table .col-md-6,
.web-ordering-page .row-inline-table .col-md-6,
.signin .row-inline-table .col-sm-6,
.fleets-page .row-inline-table .col-sm-6,
.taxi-page .row-inline-table .col-sm-6,
.forgot_password .row-inline-table .col-sm-6,
.account-page .row-inline-table .col-sm-6,
.password .row-inline-table .col-sm-6,
.confirm .row-inline-table .col-sm-6,
.confirmed .row-inline-table .col-sm-6,
.expired .row-inline-table .col-sm-6,
.social-media-page .row-inline-table .col-sm-6,
.thanks .row-inline-table .col-sm-6,
.websites-page .row-inline-table .col-sm-6,
.web-ordering-page .row-inline-table .col-sm-6 {
  float: none;
  display: inline-block;
  vertical-align: middle;
}
.signin .row-inline-table .col-md-5.align-top,
.fleets-page .row-inline-table .col-md-5.align-top,
.taxi-page .row-inline-table .col-md-5.align-top,
.forgot_password .row-inline-table .col-md-5.align-top,
.account-page .row-inline-table .col-md-5.align-top,
.password .row-inline-table .col-md-5.align-top,
.confirm .row-inline-table .col-md-5.align-top,
.confirmed .row-inline-table .col-md-5.align-top,
.expired .row-inline-table .col-md-5.align-top,
.social-media-page .row-inline-table .col-md-5.align-top,
.thanks .row-inline-table .col-md-5.align-top,
.websites-page .row-inline-table .col-md-5.align-top,
.web-ordering-page .row-inline-table .col-md-5.align-top,
.signin .row-inline-table .col-sm-5.align-top,
.fleets-page .row-inline-table .col-sm-5.align-top,
.taxi-page .row-inline-table .col-sm-5.align-top,
.forgot_password .row-inline-table .col-sm-5.align-top,
.account-page .row-inline-table .col-sm-5.align-top,
.password .row-inline-table .col-sm-5.align-top,
.confirm .row-inline-table .col-sm-5.align-top,
.confirmed .row-inline-table .col-sm-5.align-top,
.expired .row-inline-table .col-sm-5.align-top,
.social-media-page .row-inline-table .col-sm-5.align-top,
.thanks .row-inline-table .col-sm-5.align-top,
.websites-page .row-inline-table .col-sm-5.align-top,
.web-ordering-page .row-inline-table .col-sm-5.align-top,
.signin .row-inline-table .col-md-6.align-top,
.fleets-page .row-inline-table .col-md-6.align-top,
.taxi-page .row-inline-table .col-md-6.align-top,
.forgot_password .row-inline-table .col-md-6.align-top,
.account-page .row-inline-table .col-md-6.align-top,
.password .row-inline-table .col-md-6.align-top,
.confirm .row-inline-table .col-md-6.align-top,
.confirmed .row-inline-table .col-md-6.align-top,
.expired .row-inline-table .col-md-6.align-top,
.social-media-page .row-inline-table .col-md-6.align-top,
.thanks .row-inline-table .col-md-6.align-top,
.websites-page .row-inline-table .col-md-6.align-top,
.web-ordering-page .row-inline-table .col-md-6.align-top,
.signin .row-inline-table .col-sm-6.align-top,
.fleets-page .row-inline-table .col-sm-6.align-top,
.taxi-page .row-inline-table .col-sm-6.align-top,
.forgot_password .row-inline-table .col-sm-6.align-top,
.account-page .row-inline-table .col-sm-6.align-top,
.password .row-inline-table .col-sm-6.align-top,
.confirm .row-inline-table .col-sm-6.align-top,
.confirmed .row-inline-table .col-sm-6.align-top,
.expired .row-inline-table .col-sm-6.align-top,
.social-media-page .row-inline-table .col-sm-6.align-top,
.thanks .row-inline-table .col-sm-6.align-top,
.websites-page .row-inline-table .col-sm-6.align-top,
.web-ordering-page .row-inline-table .col-sm-6.align-top {
  vertical-align: top;
}
.signin blockquote,
.fleets-page blockquote,
.taxi-page blockquote,
.forgot_password blockquote,
.account-page blockquote,
.password blockquote,
.confirm blockquote,
.confirmed blockquote,
.expired blockquote,
.social-media-page blockquote,
.thanks blockquote,
.websites-page blockquote,
.web-ordering-page blockquote {
  font-style: italic;
  line-height: 1.35;
  border-left: 0;
  margin-bottom: 0;
}
.signin blockquote hr,
.fleets-page blockquote hr,
.taxi-page blockquote hr,
.forgot_password blockquote hr,
.account-page blockquote hr,
.password blockquote hr,
.confirm blockquote hr,
.confirmed blockquote hr,
.expired blockquote hr,
.social-media-page blockquote hr,
.thanks blockquote hr,
.websites-page blockquote hr,
.web-ordering-page blockquote hr {
  margin-top: 40px;
}
.signin blockquote.quote-large p,
.fleets-page blockquote.quote-large p,
.taxi-page blockquote.quote-large p,
.forgot_password blockquote.quote-large p,
.account-page blockquote.quote-large p,
.password blockquote.quote-large p,
.confirm blockquote.quote-large p,
.confirmed blockquote.quote-large p,
.expired blockquote.quote-large p,
.social-media-page blockquote.quote-large p,
.thanks blockquote.quote-large p,
.websites-page blockquote.quote-large p,
.web-ordering-page blockquote.quote-large p {
  color: #FFF;
}
.signin blockquote cite,
.fleets-page blockquote cite,
.taxi-page blockquote cite,
.forgot_password blockquote cite,
.account-page blockquote cite,
.password blockquote cite,
.confirm blockquote cite,
.confirmed blockquote cite,
.expired blockquote cite,
.social-media-page blockquote cite,
.thanks blockquote cite,
.websites-page blockquote cite,
.web-ordering-page blockquote cite {
  color: #b8b8b8;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}
.signin blockquote cite span,
.fleets-page blockquote cite span,
.taxi-page blockquote cite span,
.forgot_password blockquote cite span,
.account-page blockquote cite span,
.password blockquote cite span,
.confirm blockquote cite span,
.confirmed blockquote cite span,
.expired blockquote cite span,
.social-media-page blockquote cite span,
.thanks blockquote cite span,
.websites-page blockquote cite span,
.web-ordering-page blockquote cite span {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}
.signin blockquote:before,
.fleets-page blockquote:before,
.taxi-page blockquote:before,
.forgot_password blockquote:before,
.account-page blockquote:before,
.password blockquote:before,
.confirm blockquote:before,
.confirmed blockquote:before,
.expired blockquote:before,
.social-media-page blockquote:before,
.thanks blockquote:before,
.websites-page blockquote:before,
.web-ordering-page blockquote:before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 80px;
  color: #ff6138;
  position: absolute;
  left: -10px;
  top: -10px;
}
@media (max-width: 767px) {
  .signin blockquote:before,
  .fleets-page blockquote:before,
  .taxi-page blockquote:before,
  .forgot_password blockquote:before,
  .account-page blockquote:before,
  .password blockquote:before,
  .confirm blockquote:before,
  .confirmed blockquote:before,
  .expired blockquote:before,
  .social-media-page blockquote:before,
  .thanks blockquote:before,
  .websites-page blockquote:before,
  .web-ordering-page blockquote:before {
    left: 10px;
  }
}
@media (max-width: 767px) {
  .signin blockquote,
  .fleets-page blockquote,
  .taxi-page blockquote,
  .forgot_password blockquote,
  .account-page blockquote,
  .password blockquote,
  .confirm blockquote,
  .confirmed blockquote,
  .expired blockquote,
  .social-media-page blockquote,
  .thanks blockquote,
  .websites-page blockquote,
  .web-ordering-page blockquote {
    padding-left: 40px;
  }
}
.signin .quote-large p,
.fleets-page .quote-large p,
.taxi-page .quote-large p,
.forgot_password .quote-large p,
.account-page .quote-large p,
.password .quote-large p,
.confirm .quote-large p,
.confirmed .quote-large p,
.expired .quote-large p,
.social-media-page .quote-large p,
.thanks .quote-large p,
.websites-page .quote-large p,
.web-ordering-page .quote-large p,
.signin .quote-large cite,
.fleets-page .quote-large cite,
.taxi-page .quote-large cite,
.forgot_password .quote-large cite,
.account-page .quote-large cite,
.password .quote-large cite,
.confirm .quote-large cite,
.confirmed .quote-large cite,
.expired .quote-large cite,
.social-media-page .quote-large cite,
.thanks .quote-large cite,
.websites-page .quote-large cite,
.web-ordering-page .quote-large cite {
  text-align: center;
}
@media (max-width: 767px) {
  .signin .quote-large p,
  .fleets-page .quote-large p,
  .taxi-page .quote-large p,
  .forgot_password .quote-large p,
  .account-page .quote-large p,
  .password .quote-large p,
  .confirm .quote-large p,
  .confirmed .quote-large p,
  .expired .quote-large p,
  .social-media-page .quote-large p,
  .thanks .quote-large p,
  .websites-page .quote-large p,
  .web-ordering-page .quote-large p,
  .signin .quote-large cite,
  .fleets-page .quote-large cite,
  .taxi-page .quote-large cite,
  .forgot_password .quote-large cite,
  .account-page .quote-large cite,
  .password .quote-large cite,
  .confirm .quote-large cite,
  .confirmed .quote-large cite,
  .expired .quote-large cite,
  .social-media-page .quote-large cite,
  .thanks .quote-large cite,
  .websites-page .quote-large cite,
  .web-ordering-page .quote-large cite {
    text-align: left;
  }
}
.signin blockquote.quote-large:before,
.fleets-page blockquote.quote-large:before,
.taxi-page blockquote.quote-large:before,
.forgot_password blockquote.quote-large:before,
.account-page blockquote.quote-large:before,
.password blockquote.quote-large:before,
.confirm blockquote.quote-large:before,
.confirmed blockquote.quote-large:before,
.expired blockquote.quote-large:before,
.social-media-page blockquote.quote-large:before,
.thanks blockquote.quote-large:before,
.websites-page blockquote.quote-large:before,
.web-ordering-page blockquote.quote-large:before {
  content: none;
}
.signin blockquote.quote-large p:before,
.fleets-page blockquote.quote-large p:before,
.taxi-page blockquote.quote-large p:before,
.forgot_password blockquote.quote-large p:before,
.account-page blockquote.quote-large p:before,
.password blockquote.quote-large p:before,
.confirm blockquote.quote-large p:before,
.confirmed blockquote.quote-large p:before,
.expired blockquote.quote-large p:before,
.social-media-page blockquote.quote-large p:before,
.thanks blockquote.quote-large p:before,
.websites-page blockquote.quote-large p:before,
.web-ordering-page blockquote.quote-large p:before {
  content: "\201C";
  font-family: Georgia, serif;
  font-style: normal;
  font-size: 80px;
  color: #ff6138;
  position: relative;
  margin-right: 10px;
  line-height: 0;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .signin blockquote.quote-large p:before,
  .fleets-page blockquote.quote-large p:before,
  .taxi-page blockquote.quote-large p:before,
  .forgot_password blockquote.quote-large p:before,
  .account-page blockquote.quote-large p:before,
  .password blockquote.quote-large p:before,
  .confirm blockquote.quote-large p:before,
  .confirmed blockquote.quote-large p:before,
  .expired blockquote.quote-large p:before,
  .social-media-page blockquote.quote-large p:before,
  .thanks blockquote.quote-large p:before,
  .websites-page blockquote.quote-large p:before,
  .web-ordering-page blockquote.quote-large p:before {
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1.35;
  }
}
.signin blockquote.quote-large p:after,
.fleets-page blockquote.quote-large p:after,
.taxi-page blockquote.quote-large p:after,
.forgot_password blockquote.quote-large p:after,
.account-page blockquote.quote-large p:after,
.password blockquote.quote-large p:after,
.confirm blockquote.quote-large p:after,
.confirmed blockquote.quote-large p:after,
.expired blockquote.quote-large p:after,
.social-media-page blockquote.quote-large p:after,
.thanks blockquote.quote-large p:after,
.websites-page blockquote.quote-large p:after,
.web-ordering-page blockquote.quote-large p:after {
  content: "\201D";
  font-family: Georgia, serif;
  font-style: normal;
  font-size: 80px;
  color: #ff6138;
  margin-left: 10px;
  line-height: 0;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .signin blockquote.quote-large p:after,
  .fleets-page blockquote.quote-large p:after,
  .taxi-page blockquote.quote-large p:after,
  .forgot_password blockquote.quote-large p:after,
  .account-page blockquote.quote-large p:after,
  .password blockquote.quote-large p:after,
  .confirm blockquote.quote-large p:after,
  .confirmed blockquote.quote-large p:after,
  .expired blockquote.quote-large p:after,
  .social-media-page blockquote.quote-large p:after,
  .thanks blockquote.quote-large p:after,
  .websites-page blockquote.quote-large p:after,
  .web-ordering-page blockquote.quote-large p:after {
    content: none;
  }
}
.signin .our-partners,
.fleets-page .our-partners,
.taxi-page .our-partners,
.forgot_password .our-partners,
.account-page .our-partners,
.password .our-partners,
.confirm .our-partners,
.confirmed .our-partners,
.expired .our-partners,
.social-media-page .our-partners,
.thanks .our-partners,
.websites-page .our-partners,
.web-ordering-page .our-partners {
  padding: 20px 0px;
  background: url(../assets/our-partners/our-partners-bg.jpg ) #f1f1f1 center center no-repeat;
  background-size: cover;
}
.signin .our-partners h2,
.fleets-page .our-partners h2,
.taxi-page .our-partners h2,
.forgot_password .our-partners h2,
.account-page .our-partners h2,
.password .our-partners h2,
.confirm .our-partners h2,
.confirmed .our-partners h2,
.expired .our-partners h2,
.social-media-page .our-partners h2,
.thanks .our-partners h2,
.websites-page .our-partners h2,
.web-ordering-page .our-partners h2 {
  margin: 0 10px 10px;
}
@media (max-width: 991px) {
  .signin .our-partners,
  .fleets-page .our-partners,
  .taxi-page .our-partners,
  .forgot_password .our-partners,
  .account-page .our-partners,
  .password .our-partners,
  .confirm .our-partners,
  .confirmed .our-partners,
  .expired .our-partners,
  .social-media-page .our-partners,
  .thanks .our-partners,
  .websites-page .our-partners,
  .web-ordering-page .our-partners {
    padding: 0px;
  }
  .signin .our-partners .container .row > *,
  .fleets-page .our-partners .container .row > *,
  .taxi-page .our-partners .container .row > *,
  .forgot_password .our-partners .container .row > *,
  .account-page .our-partners .container .row > *,
  .password .our-partners .container .row > *,
  .confirm .our-partners .container .row > *,
  .confirmed .our-partners .container .row > *,
  .expired .our-partners .container .row > *,
  .social-media-page .our-partners .container .row > *,
  .thanks .our-partners .container .row > *,
  .websites-page .our-partners .container .row > *,
  .web-ordering-page .our-partners .container .row > * {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .signin .our-partners,
  .fleets-page .our-partners,
  .taxi-page .our-partners,
  .forgot_password .our-partners,
  .account-page .our-partners,
  .password .our-partners,
  .confirm .our-partners,
  .confirmed .our-partners,
  .expired .our-partners,
  .social-media-page .our-partners,
  .thanks .our-partners,
  .websites-page .our-partners,
  .web-ordering-page .our-partners {
    background: url(../assets/our-partners/our-partners-bg-mobile.jpg ) #f1f1f1 center center no-repeat;
    background-size: cover;
  }
}
.signin .padding-adjust,
.fleets-page .padding-adjust,
.taxi-page .padding-adjust,
.forgot_password .padding-adjust,
.account-page .padding-adjust,
.password .padding-adjust,
.confirm .padding-adjust,
.confirmed .padding-adjust,
.expired .padding-adjust,
.social-media-page .padding-adjust,
.thanks .padding-adjust,
.websites-page .padding-adjust,
.web-ordering-page .padding-adjust {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .signin .margin-adjust-top-50,
  .fleets-page .margin-adjust-top-50,
  .taxi-page .margin-adjust-top-50,
  .forgot_password .margin-adjust-top-50,
  .account-page .margin-adjust-top-50,
  .password .margin-adjust-top-50,
  .confirm .margin-adjust-top-50,
  .confirmed .margin-adjust-top-50,
  .expired .margin-adjust-top-50,
  .social-media-page .margin-adjust-top-50,
  .thanks .margin-adjust-top-50,
  .websites-page .margin-adjust-top-50,
  .web-ordering-page .margin-adjust-top-50 {
    margin-top: 50px;
  }
}
.password {
  background-color: #f1f1f1;
}
.request-page strong,
.contact-page strong,
.request-page span,
.contact-page span {
  font-size: 1.2em;
}
.request-page strong,
.contact-page strong {
  line-height: 1.5;
}
.request-page .contact-form,
.contact-page .contact-form {
  background-color: #f1f1f1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 20px 0px;
}
.request-page .contact-form input,
.contact-page .contact-form input {
  width: 100%;
  padding: 10px;
}
.request-page .contact-form p,
.contact-page .contact-form p {
  font-size: 1.2em;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .request-page .contact-form p,
  .contact-page .contact-form p {
    text-align: center;
  }
}
.request-page .contact-address,
.contact-page .contact-address {
  padding: 20px 15px;
}
@media (max-width: 991px) {
  .request-page .contact-address,
  .contact-page .contact-address {
    text-align: center;
  }
}
.signin h1,
.request-page h1,
.forgot_password h1,
.account-page h1,
.password h1,
.confirm h1,
.confirmed h1,
.expired h1,
.thanks h1 {
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.request-page h3 {
  text-align: center;
}
.request-page h4 {
  text-align: left;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .request-page h4 {
    text-align: center;
  }
}
.app-badge-table {
  width: 100%;
}
.app-badge-table .app-badge {
  width: 90%;
}
.container-full {
  width: 100%;
  padding: 40px 0px;
}
@media (max-width: 767px) {
  .container-full {
    padding: 30px 0px;
  }
}
.container-full-adjusted {
  width: 100%;
  padding: 0px;
}
@media (max-width: 767px) {
  .container-full-adjusted {
    padding: 10px 0px;
  }
}
.container-full-adjusted .container {
  padding-top: 0px;
}
.white-bg {
  background-color: #FFF;
}
.grey-bg,
.thanks {
  background-color: #f1f1f1;
}
.dark-grey-bg {
  background-color: #e1e1e1;
}
.blue-bg {
  background-color: #2c3e50;
  color: #FFFFFF;
}
.blue-bg h3 {
  color: #FFF;
  margin: 15px 0px;
}
@media (max-width: 991px) {
  .blue-bg h3 {
    margin: 10px 0px 20px;
  }
}
.blue-bg .btn {
  margin: 5px 0px 10px;
}
@media (max-width: 991px) {
  .blue-bg .btn {
    margin-top: 0px;
  }
}
.blue-bg .padding-adjust {
  padding: 10px 20px;
}
.contact-band {
  padding: 35px 0;
  height: auto;
}
.contact-band h2 {
  font-size: 2em;
  margin-top: 15px;
  font-weight: 600;
  color: #FFF;
}
@media (min-width: 992px) {
  .contact-band .row-inline-table {
    display: inline-table;
  }
  .contact-band .row-inline-table .col-md-10,
  .contact-band .row-inline-table .col-md-2 {
    float: none;
    display: inline-block;
    vertical-align: middle;
  }
}
@media (max-width: 1199px) {
  .contact-band {
    padding: 30px 0;
  }
  .contact-band h2 {
    font-size: 1.6em;
  }
}
@media (max-width: 991px) {
  .contact-band {
    padding: 10px 0;
  }
  .contact-band h2 {
    font-size: 1.75em;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .contact-band {
    margin-top: 0px;
    padding: 20px 0;
  }
}
.bordered-container {
  border-top: solid 1px #b9b9b9;
  border-bottom: solid 1px #b9b9b9;
}
.arrow-box {
  position: relative;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #b9b9b9;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .arrow-box {
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .arrow-box {
    height: 120px;
    display: table-cell;
    vertical-align: middle;
  }
}
.arrow-box p {
  text-align: center;
  font-size: 1.25em;
  font-style: italic;
  margin: 0;
}
@media (max-width: 991px) {
  .arrow-box p {
    font-size: 1em;
  }
}
.arrow-box:after,
.arrow-box:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.arrow-box:after {
  top: -30px;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #FFFFFF;
  border-width: 15px;
  margin-left: -15px;
}
.arrow-box:before {
  top: -36px;
  border-color: rgba(185, 185, 185, 0);
  border-bottom-color: #b9b9b9;
  border-width: 18px;
  margin-left: -18px;
}
.featured-on {
  padding: 20px 0;
  text-align: center;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #d5d7db 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #d5d7db));
  background: -webkit-linear-gradient(top, #ffffff 0%, #d5d7db 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #d5d7db 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #d5d7db 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #d5d7db 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d5d7db', GradientType=0);
}
.featured-on.jumbotron-featured {
  padding: 0;
  background: none;
}
.featured-on .container {
  padding: 0 15px;
}
.featured-on h2 {
  margin: 0 10px 0;
}
.featured-on .carousel-logos {
  width: 100%;
  -webkit-opacity: 0.75;
  -moz-opacity: 0.75;
  filter: alpha(opacity=75);
  opacity: 0.75;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.featured-on .carousel-logos:hover,
.featured-on .carousel-logos:focus {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  opacity: 1;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.promo-container {
  background: url(../assets/promos/taxi-promo-bg.jpg ) #ff6138 center center no-repeat;
  background-size: 100%;
  padding: 10px 0px;
}
.promo-container .row-inline-table {
  display: inline-table;
}
.promo-container .row-inline-table .col-md-6 {
  float: none;
  display: inline-block;
  vertical-align: middle;
}
.promo-container .btn-primary {
  background-color: transparent;
  border: #FFF 2px solid;
  border-radius: 5px;
  color: #FFF;
}
.promo-container .btn-primary:hover {
  background-color: #FFF;
  color: #ff6138;
}
.promo-container h2,
.promo-container p {
  color: #fff;
  text-align: left;
}
.promo-container p {
  font-size: 2em;
}
.promo-container img {
  width: 75%;
}
@media (max-width: 991px) {
  .promo-container {
    padding: 20px 0;
  }
  .promo-container h2 {
    font-size: 2.5em;
  }
  .promo-container h2,
  .promo-container p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .promo-container {
    background: url(../assets/promos/taxi-promo-bg-mobile.jpg ) #ff6138 center center no-repeat;
    background-size: 100%;
  }
  .promo-container p {
    font-size: 1.4em;
  }
}
.web-ordering-container {
  background: url(../assets/promos/web-ordering-promo-bg.jpg ) #2c3e50 center center no-repeat;
  background-size: cover;
  height: auto;
  padding: 20px 0;
}
.web-ordering-container .container {
  padding: 20px;
}
.web-ordering-container .btn-primary {
  background-color: transparent;
  border: #FFF 2px solid;
  border-radius: 5px;
  color: #FFF;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.web-ordering-container .btn-primary:hover {
  background-color: #FFF;
  color: #2c3e50;
}
.web-ordering-container h2,
.web-ordering-container p {
  color: #fff;
}
.web-ordering-container h2 {
  margin-top: 40px;
}
.web-ordering-container a {
  margin-top: 20px;
}
.web-ordering-container p {
  font-size: 1.75em;
}
.web-ordering-container img {
  width: 75%;
}
@media (max-width: 991px) {
  .web-ordering-container p {
    font-size: 1.3em;
  }
  .web-ordering-container h2 {
    font-size: 2.5em;
  }
  .web-ordering-container h2,
  .web-ordering-container p {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .web-ordering-container h2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .web-ordering-container {
    background: url(../assets/promos/web-ordering-promo-bg-mobile.jpg ) #2c3e50 center center no-repeat;
    background-size: cover;
  }
  .web-ordering-container .col-sm-6:last-child {
    margin-top: 30px;
  }
  .web-ordering-container h2 {
    font-size: 1.9em;
  }
  .web-ordering-container p {
    font-size: 1.4em;
  }
  .web-ordering-container img {
    margin-top: 20px;
  }
}
.web-social-container {
  background: url(../assets/promos/web-social-promo-bg.jpg ) #2c3e50 center center no-repeat;
  background-size: cover;
  height: auto;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .web-social-container {
    background: url(../assets/promos/web-social-promo-bg-mobile.jpg ) #2c3e50 center center no-repeat;
    background-size: cover;
  }
}
.web-social-container .container {
  padding: 20px;
}
.web-social-container a {
  margin-top: 20px;
}
.web-social-container a span {
  color: #ff6138 !important;
}
.web-social-container h2 {
  color: #fff;
}
.web-social-container .panel {
  border: none;
  border-radius: 5px;
}
.web-social-container .panel .panel-heading {
  border: 1px solid #e14521;
  background-color: #ff6138;
  padding: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.web-social-container .panel .panel-body {
  padding: 20px 15px 15px;
}
.web-social-container .panel .panel-body h5 {
  text-transform: none;
}
.tab-selector-container {
  padding: 0;
}
@media (min-width: 992px) {
  .tab-selector-container .row-table {
    display: table;
    width: 100%;
  }
  .tab-selector-container .row-table > .col-md-5 {
    display: table-cell;
    vertical-align: middle;
    float: none;
  }
}
.tab-selector-container .tab-selector {
  padding-left: 0px;
  margin: 0;
  list-style-type: none;
  white-space: nowrap;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .tab-selector-container .tab-selector {
    padding-left: 0;
  }
}
.tab-selector-container .tab-selector::-webkit-scrollbar {
  display: none;
}
.tab-selector-container .tab-selector .industry-tab {
  padding: 10px;
  width: 25%;
}
@media (max-width: 991px) {
  .tab-selector-container .tab-selector .industry-tab {
    width: 33.34%;
  }
}
.tab-selector-container .tab-selector .home-tab {
  width: 20%;
}
.tab-selector-container .tab-selector .home-tab img {
  background-color: #5f5f5f;
}
.tab-selector-container .tab-selector .home-tab:hover img {
  background-color: #ff6138;
}
@media (max-width: 767px) {
  .tab-selector-container .tab-selector .home-tab h4 {
    font-size: 0.9em;
  }
  .tab-selector-container .tab-selector .home-tab img {
    width: 50%;
  }
}
.tab-selector-container .tab-selector .industry-tab,
.tab-selector-container .tab-selector .home-tab {
  display: inline-block;
  text-align: center;
}
.tab-selector-container .tab-selector .industry-tab a,
.tab-selector-container .tab-selector .home-tab a {
  font-size: 1em;
}
.tab-selector-container .tab-selector .industry-tab h5,
.tab-selector-container .tab-selector .home-tab h5 {
  margin-top: 13px;
  text-transform: none;
}
.tab-selector-container .tab-selector .industry-tab .home-selector,
.tab-selector-container .tab-selector .home-tab .home-selector {
  width: 20% !important;
}
.tab-selector-container .tab-selector .industry-tab:hover h5,
.tab-selector-container .tab-selector .home-tab:hover h5 {
  color: #ff6138;
}
.tab-selector-container .tab-selector .active {
  border-bottom: 5px solid #ff6138;
}
.tab-selector-container .tab-selector .active h5 {
  font-weight: 400;
  color: #ff6138;
}
.tab-selector-container .tab-selector .active img {
  background-color: #ff6138;
}
.fleets-page .tab-selector-container,
.industry-page .tab-selector-container {
  border-bottom: 2px solid #E2E2E2;
  color: #888888;
}
.fleets-page .tab-selector-container .container,
.industry-page .tab-selector-container .container {
  padding: 0 15px;
}
.fleets-page .tab-selector-container a:hover,
.industry-page .tab-selector-container a:hover {
  text-decoration: none;
}
.fleets-page .tab-selector-container h5,
.industry-page .tab-selector-container h5 {
  font-weight: 400;
  color: #888888;
}
.fleets-page .tab-selector-container .industry-tab,
.industry-page .tab-selector-container .industry-tab {
  height: 64px;
  border-left: 1px solid #E2E2E2;
  font-weight: 500;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .fleets-page .tab-selector-container .industry-tab h5,
  .industry-page .tab-selector-container .industry-tab h5 {
    line-height: 1.25;
    margin-top: 6px;
    font-size: 0.85em;
  }
}
.fleets-page .tab-selector-container .tab-action,
.industry-page .tab-selector-container .tab-action {
  border-right: 1px solid #E2E2E2;
}
.fleets-page .tab-selector-container .tab-action h5,
.industry-page .tab-selector-container .tab-action h5,
.fleets-page .tab-selector-container .tab-action h5:hover,
.industry-page .tab-selector-container .tab-action h5:hover {
  color: #ff6138;
  font-weight: 600;
}
a .panel {
  background-color: #fff;
  border: none;
  text-align: center;
  margin: 20px 0px;
}
@media (min-width: 1199px) {
  a .panel img {
    -webkit-opacity: 0.75;
    -moz-opacity: 0.75;
    filter: alpha(opacity=75);
    opacity: 0.75;
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  a .panel img:hover {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
}
a .panel .panel-heading {
  padding: 0px;
}
a .panel .panel-body {
  padding: 10px;
}
.img-cropped {
  padding-bottom: 0px;
}
.img-cropped .container {
  padding-bottom: 0px;
}
.hr-header {
  border-top: 1px solid black;
  margin: 0px 0px 40px;
}
.hr-faded {
  border-top: 1px solid #e3e3e3;
  margin: 20px 0px 0px;
}
.hr-seperator {
  border-top: 1px solid #000;
  margin: 40px 0px 0px;
}
/**
 * Animation
 */
[class^='slow-'] {
  -webkit-transition: 1s linear all;
  /* Chrome */
  transition: 1s linear all;
}
[class^='fast-'] {
  -webkit-transition: 100ms linear all;
  /* Chrome */
  transition: 100ms linear all;
}
.slow-fade-show,
.slow-fade-enter,
.fast-fade-show,
.fast-fade-enter,
.slow-fade-hide.slow-fade-hide-active,
.slow-fade-leave.slow-fade-leave-active,
.fast-fade-hide.fast-fade-hide-active,
.fast-fade-leave.fast-fade-leave-active {
  opacity: 0;
}
.slow-fade-show.slow-fade-show-active,
.slow-fade-enter.slow-fade-enter-active,
.fast-fade-show.fast-fade-show-active,
.fast-fade-enter.fast-fade-enter-active,
.slow-fade-hide,
.slow-fade-leave,
.fast-fade-hide,
.fast-fade-leave {
  opacity: 1;
}
.slow-slide-down-enter {
  margin-top: -100px;
}
.slow-slide-down-enter.slow-slide-down-enter-active {
  margin-top: 0px;
}
.view-enter,
.view-leave {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.view-enter {
  opacity: 0;
  width: 100%;
  margin-left: -300%;
  margin-right: -200%;
}
.view-enter-active {
  opacity: 1;
  margin-left: auto;
  margin-right: auto;
}
.view-leave {
  position: absolute;
  opacity: 1;
  left: 0;
}
.view-leave-active {
  opacity: 0;
  left: 300%;
}
.repeat-item.ng-enter,
.repeat-item.ng-leave {
  -webkit-transition: 0.5s linear all;
  transition: 0.5s linear all;
}
.repeat-item.ng-enter,
.repeat-item.ng-leave.ng-leave-active {
  opacity: 0;
}
.repeat-item.ng-leave,
.repeat-item.ng-enter.ng-enter-active {
  opacity: 1;
}
.nav-tabs {
  text-transform: uppercase;
  border: none;
}
.nav-tabs li {
  transition: 1s linear all;
}
.nav-tabs li a,
.nav-tabs li a:hover {
  color: #555555;
}
.nav-tabs li.active {
  transition: 1s linear all;
}
.nav-tabs li.active a,
.nav-tabs li.active a:hover {
  color: #ff6138;
  background-color: #FFF;
}
.navbar-form .form-group {
  padding-left: 10px;
  padding-right: 10px;
}
.definition-list dt {
  font-weight: 400;
  clear: left;
  float: left;
  width: 40%;
}
.definition-list dd {
  float: right;
  width: 60%;
  text-align: right;
}
.table tbody {
  color: #333;
}
.table tbody a {
  color: #ff6138;
}
.arrow,
.arrow:hover,
.arrow:active {
  font-size: 8px;
  color: #ff6138;
  text-decoration: none;
}
.error-text {
  color: #FF0000;
}
.tab-right {
  float: right !important;
}
.no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.small-grey {
  color: #777;
  font-size: 13px;
  text-transform: uppercase;
}
.large-grey {
  color: #ADA8A9;
  font-size: 26px;
}
/* ==========================================================================
   Utility Classes
   ========================================================================== */
.list {
  margin-bottom: 20px;
  padding-left: 0;
}
.list > li {
  display: block;
  padding: 10px 0px;
  border-bottom: 1px solid #dddddd;
}
.list .list-item-heading {
  color: #333;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
}
.list .list-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.col {
  float: left;
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.loading-container {
  position: relative;
}
.loading {
  z-index: 100;
  opacity: 0.7;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Gotham Rounded A', 'Gotham Rounded B', sans-serif;
  font-weight: 500;
}
table tbody > tr > td.center,
table th.center {
  text-align: center;
  vertical-align: middle;
}
table tbody > tr > td.padding-20,
table th.padding-20 {
  padding: 20px 0px 20px 0px;
}
.hs-column {
  background-color: #ff6138;
  text-align: center;
  padding: 0;
}
.hs-green-bg {
  background-color: #39a87c;
}
.promo-container a.hs-column-blue {
  margin-top: 20px;
  padding: 0;
  text-align: center;
  background-color: #2e3641;
  border: none;
}
.promo-container a.hs-column-blue:focus,
.promo-container a.hs-column-blue:hover {
  background-color: #2e3641;
}
.getting-started {
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .getting-started {
    margin-top: 0;
  }
}
.getting-started .steps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}
.getting-started .steps p {
  margin-left: 15px;
}
.getting-started hr {
  border-top: 1px solid #5e5e5e;
}
.vertical-align {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.padding-bottom-10 {
  padding-bottom: 10px;
}
.padding-bottom-20 {
  padding-bottom: 20px;
}
.padding-left-25 {
  padding-left: 25px;
}
.margin-top-0 {
  margin-top: 0;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-20 {
  margin-top: 20px;
}
.margin-top-30 {
  margin-top: 30px;
}
.margin-top-40 {
  margin-top: 40px;
}
.margin-bottom-0 {
  margin-bottom: 0;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.margin-bottom-15 {
  margin-bottom: 15px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}
.margin-bottom-40 {
  margin-bottom: 40px;
}
.padding-adjust-0 {
  padding: 0;
}
.margin-bottom-40-0 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .margin-bottom-40-0 {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .margin-bottom-40-0 {
    margin-bottom: 40px;
  }
}
.margin-bottom-0 {
  margin-bottom: 0px;
}
.margin-side-5 {
  margin-left: 5px;
  margin-right: 5px;
}
.margin-left-5 {
  margin-left: 5px;
}
.margin-v-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.panel-border-top {
  border-top: 1px solid #ddd;
}
.sticky-with-nav-bar,
.sticky-without-nav-bar {
  position: fixed;
  z-index: 999;
}
.sticky-with-nav-bar {
  top: 80px;
}
.capitalize {
  text-transform: capitalize;
}
accordion * {
  outline: 0 !important;
}
.orange-icon {
  float: right;
  color: #ff6138;
  font-size: 15px;
  margin-left: 5px;
}
.semi-bold {
  font-weight: 600;
}
.bold {
  font-weight: bold;
}
.review-edge {
  font-family: "Lato", sans-serif;
  font-weight: 900;
}
.primary-link,
.primary-link:hover,
.primary-link:active {
  color: #ff6138;
  text-transform: uppercase;
}
.margin-top-5 {
  margin-top: 5px;
}
.margin-top-10 {
  margin-top: 10px;
}
button.ol-action-icon {
  all: unset;
  cursor: pointer;
}
.ol-action-icon__img {
  background-color: #bbb;
  display: inline-block;
  height: 15px;
  vertical-align: middle;
  width: 15px;
}
.ol-action-icon__img:hover,
.ol-action-icon__img:focus {
  background-color: #ff6138;
}
.ol-action-icon--edit .ol-action-icon__img {
  -webkit-mask: url("/assets/icon-edit-orange-fill.svg") no-repeat center;
  mask: url("/assets/icon-edit-orange-fill.svg") no-repeat center;
}
.ol-merchant-product-update__action-column {
  width: 30px;
}
.ol-merchant-product-update__action-icon {
  font-size: 15px;
  vertical-align: middle;
}
.ol-merchant-product-update__action-icon + .ol-merchant-product-update__action-icon {
  padding-left: 17px;
}
.ol-merchant-product-update__action-icon-img {
  -webkit-mask: url("/assets/icon-edit-orange-fill.svg") no-repeat center;
  background-color: #bbb;
  display: inline-block;
  height: 15px;
  mask: url("/assets/icon-edit-orange-fill.svg") no-repeat center;
  vertical-align: middle;
  width: 15px;
}
.ol-merchant-product-update__action-icon-img:hover,
.ol-merchant-product-update__action-icon-img:focus {
  background-color: #ff6138;
}
.ol-merchant-product-update__action-legend {
  display: inline-block;
}
.ol-merchant-product-update__action-legend + .ol-merchant-product-update__action-legend {
  margin-left: 20px;
}
.ol-merchant-product-update__action-legend-container {
  margin-top: 10px;
}
.ol-merchant-product-update__action-legend-label {
  margin-left: 5px;
}
.ol-merchant-product-update__action-status-icon {
  height: 20px;
  width: 20px;
}
.ol-merchant-product-update__date,
.ol-merchant-product-update__author {
  font-weight: 600;
}
.ol-merchant-product-update__ol-action-icon {
  padding-right: 5px;
}
.ol-merchant-product-update__table-title {
  font-weight: 700;
}
.ol-merchant-product-update__table-header {
  background-color: #F0F8FF;
}
.ol-merchant-product-update__update-list {
  table-layout: fixed;
  word-break: break-word;
}
.ol-merchant-product-update .table-sort-arrow-container {
  display: inline-block;
  vertical-align: middle;
}
.ol-merchant-product-update .table-sort-arrow {
  color: #bbb;
  margin: 0 5px;
}
.ol-merchant-product-update .table-sort-arrow.sort-up {
  height: 20px;
  padding: 10px 10px 0 10px;
}
.ol-merchant-product-update .table-sort-arrow.sort-down {
  height: 20px;
  padding: 0 10px 10px 10px;
}
.ol-merchant-product-update .table-sort-arrow .arrow-down,
.ol-merchant-product-update .table-sort-arrow .arrow-up {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  height: 0;
  width: 0;
}
.ol-merchant-product-update .table-sort-arrow .arrow-down {
  cursor: pointer;
  border-top: 6px solid;
}
.ol-merchant-product-update .table-sort-arrow .arrow-up {
  cursor: pointer;
  border-bottom: 6px solid;
}
.ol-merchant-product-update .table-sort-arrow.is-active {
  color: #ff6138;
}
.ol-merchant-product-update__update-list .ol-merchant-product-update__action-icon {
  color: #bbb;
}
.ol-merchant-product-update__update-list .ol-merchant-product-update__action-icon:hover,
.ol-merchant-product-update__update-list .ol-merchant-product-update__action-icon:focus {
  color: #ff6138;
}
.ol-merchant-product-update__update-list .ol-merchant-product-update__column {
  vertical-align: middle;
}
.create-or-edit-product-update-modal__action-popover {
  margin-left: 5px;
}
.create-or-edit-product-update-modal__label {
  width: 146px !important;
}
.remove-product-update-modal__product-update-text {
  border: 1px solid #bbbbbb;
  font-size: 12px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
}
.remove-product-update-modal__product-update-text p {
  font-weight: 300;
}
.purchase-twilio-number-form__body-column {
  border: 0 !important;
  font-weight: 400;
  padding: 15px 0px !important;
  text-align: left;
}
.purchase-twilio-number-form__body-column .purchase-twilio-number-form__icon-container {
  text-align: center;
}
.purchase-twilio-number-form__body-row {
  background-color: #fff !important;
}
.purchase-twilio-number-form__header-column {
  font-weight: 600;
  padding-top: 0 !important;
  text-transform: uppercase;
  text-align: center;
}
.purchase-twilio-number-form__header-row {
  background-color: #F0F8FF !important;
  font-size: 12px;
  text-align: left;
}
.purchase-twilio-number-form__header-row th:not( .purchase-twilio-number-form__monthly-fee-header ) {
  padding-left: 0 !important;
}
.purchase-twilio-number-form__icon {
  height: 20px;
  width: 20px;
}
.purchase-twilio-number-form__icon-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}
.purchase-twilio-number-form__monthly-fee-header {
  padding-left: 10px !important;
}
.purchase-twilio-number-form__phone_number {
  font-weight: 600;
}
.purchase-twilio-number-form__price {
  font-weight: 600;
  padding-left: 10px;
}
.purchase-twilio-number-form__radio_column {
  border: 0 !important;
  padding: 15px 20px !important;
}
.purchase-twilio-number-form__radio_selected_number {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-clip: content-box;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #bbb;
  display: inline-block;
  height: 20px;
  margin-left: 20px;
  outline: 0 !important;
  padding: 3px !important;
  width: 20px;
}
.purchase-twilio-number-form__radio_selected_number:checked {
  background-color: #FF6138;
  border: 2px solid #FF6138;
}
.purchase-twilio-number-form__search-btn {
  font-size: 12px;
  margin-top: 20px;
  padding: 10px;
}
.purchase-twilio-number-form__existing_number {
  align-items: center;
  display: flex;
}
.purchase-twilio-number-form th {
  border: 0 !important;
}
.field-icon {
  position: absolute;
  cursor: pointer;
  top: 25px;
  right: 25px;
  height: 20px;
  width: 20px;
}
.field-icon--active path {
  fill: #FF6138;
}
.signin {
  margin-top: 10px;
  background-color: transparent;
}
.signin .login-form {
  background-color: rgba(10, 10, 10, 0.1);
  padding: 38px 30px;
  height: 274px;
}
.signin .login-form input {
  display: block;
  width: 100%;
  padding: 5px 10px;
}
.signin .login-form a {
  display: block;
  width: 100%;
  margin: 0 auto;
  color: rgba(10, 10, 10, 0.7);
  text-align: center;
}
.signin .promo-col {
  background-color: #000;
  height: 274px;
}
.signin .promo-col img {
  margin-top: 20px;
}
.signin .promo-col h3 {
  margin-top: 20px;
  color: #fff;
}
@media (min-width: 992px) {
  .signin .login-form {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .signin .login-form {
    width: 45%;
  }
}
.admin-panel {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  margin-left: 0;
  margin-right: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.admin-panel__content-container {
  height: 100vh;
  width: calc(100% - 200px);
}
.admin-panel__side-nav-container {
  width: 200px;
}
.admin-panel .admin-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.admin-panel .admin-content__header {
  background-color: white;
  border-bottom: 2px solid #bbb;
  padding: 10px 15px;
}
.admin-panel .admin-content__content {
  flex: 1;
  height: calc(100% - 82px);
  overflow-y: auto;
}
.admin-panel .center {
  text-align: center;
}
.admin-panel .vertical-center {
  vertical-align: middle;
}
.admin-panel h4 {
  color: #ff6138;
  font-weight: 600;
  text-transform: uppercase;
}
.admin-panel .panel-heading {
  color: #ff6138;
  text-transform: uppercase;
}
.admin-panel .breadcrumb {
  margin-bottom: 10px;
}
.admin-panel .breadcrumb > li {
  padding-left: 4px;
  font-size: 20px;
}
.admin-panel .breadcrumb > li + li:before {
  content: ">\00a0";
}
.admin-panel .form-actions {
  margin-top: 30px;
}
.admin-panel ul.list-unstyled {
  padding-top: 15px;
}
.admin-panel ul.list-unstyled a {
  color: #FF6138;
  font-size: 15px;
  margin-left: 15px;
}
.admin-panel ul.list-unstyled a:hover {
  text-decoration: none;
}
.organization-api-key {
  margin-bottom: 20px;
}
.organization-api-key__title {
  color: #ff6138;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.organization-api-key__panel {
  background: #f8f9fb;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 16px 18px;
}
.organization-api-key__empty-text {
  color: #6c757d;
  margin: 0 0 14px;
  text-align: center;
}
.organization-api-key__spinner {
  animation: organization-api-key-spin 1s linear infinite;
  margin-right: 6px;
}
.organization-api-key__label {
  color: #495057;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.organization-api-key__key-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.organization-api-key__key-input {
  background: #fff;
  border-color: #c8ced6;
  color: #212529;
  flex: 1;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
  min-width: 0;
}
.organization-api-key__copy-btn {
  align-items: center;
  background: #fff;
  border: 1px solid #c8ced6;
  border-radius: 4px;
  display: inline-flex;
  flex-shrink: 0;
  height: 34px;
  justify-content: center;
  min-width: 40px;
  padding: 0;
}
.organization-api-key__copy-btn:hover {
  background: #f1f3f5;
}
.organization-api-key__copy-icon {
  display: block;
  height: 16px;
  width: 16px;
}
.organization-api-key__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.organization-api-key__hint {
  color: #6c757d;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.organization-api-key__hint code {
  background: #eef1f4;
  border-radius: 3px;
  color: #495057;
  font-size: 11px;
  padding: 2px 4px;
}
@keyframes organization-api-key-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.agency-list h4 {
  text-transform: uppercase;
}
.agency-show__report-btn {
  font-size: 12px;
  white-space: normal;
}
.analytics {
  margin-top: 20px;
}
.analytics .margin-class {
  margin-top: 20px;
}
.analytics .date-picker {
  width: 220px;
  border: 1px solid #cccccc;
  height: 50px;
  margin-top: 5px;
  height: 35px;
  background: #eeeeee;
}
.analytics .btn.blue-bg {
  font-size: 11px;
}
.analytics .pay-balance-dropdown {
  position: absolute;
  z-index: 1000;
  background: #C0BDBD;
  right: 38px;
  width: 400px;
  margin-top: -10px;
  padding: 10px;
  height: 480px;
}
.analytics .date-picker {
  font-size: 12px;
}
.analytics .referral-magic-report-table {
  table-layout: fixed;
}
.analytics .referral-magic-report-table th,
.analytics .referral-magic-report-table td {
  max-width: 50px;
  word-wrap: break-word;
}
.report p {
  display: inline;
}
.report table {
  margin-top: 40px;
}
.report .text-field {
  color: #909090;
}
.report .div-table-cell {
  padding-left: 2px;
}
.report .address {
  width: 200px;
}
.report .date {
  width: 100px;
}
.report .col {
  width: 75px;
}
.merchants {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.merchants__content {
  flex: 1;
}
.merchants__list {
  background-color: white;
}
.merchants h4 {
  text-transform: uppercase;
}
.merchants .btn {
  font-size: 12px;
}
.merchants .amount-owed {
  float: left;
  color: #9D9D9D;
}
.merchants .amount-owed .amount {
  font-size: 30px;
}
.merchants .amount-owed .heading {
  font-size: 11px;
  display: block;
}
.merchants .dropdown-modal {
  background-color: #C0BDBD;
  height: 560px;
  margin-top: -10px;
  min-width: 400px;
  padding: 10px;
  position: absolute;
  right: 31px;
  z-index: 1000;
}
.merchants .dropdown-modal hr {
  border-color: #000;
}
.merchants .dropdown-modal .custom-span {
  color: #fff;
  font-weight: 200;
  font-size: 15px;
}
.merchants .dropdown-modal .form-control {
  margin-top: 0px;
}
.merchants .dropdown-modal .item,
.merchants .dropdown-modal .form-actions {
  margin-top: 10px;
}
.merchants .template-cover,
.merchants .template-logo,
.merchants .template-bsi,
.merchants .template-category {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.merchants .template-cover {
  height: 100px;
}
.merchants .template-logo {
  height: 100px;
  width: 100px;
  margin: auto;
}
.merchants .template-bsi {
  background-size: contain;
  width: 100%;
  height: 300px;
}
.merchants .template-category {
  height: 300px;
  width: 300px;
  margin: auto;
}
.merchants a.close {
  color: #000;
}
.merchants .review-edge-image {
  height: 100px;
  width: 220px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.merchants .review-edge-icon {
  height: 100px;
  width: 100px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.merchants .send-report-button {
  white-space: normal;
}
.add-referral-modal .modal-body {
  height: 480px;
  overflow-y: scroll;
}
.connected-account-pull-info__logo {
  height: 36px;
  width: 36px;
}
.connected-account-pull-info__detail {
  margin-left: 10px;
  font-weight: 600;
}
.connected-account-pull-info__detail--status-success {
  color: #39b54a;
}
.connected-account-pull-info__detail--status-error {
  color: #c9302c;
}
.connected-account-pull-info__detail--status-active {
  color: #000000;
}
.connected-account-pull-info__date {
  font-weight: 400;
}
.link-existing-project-modal .popover,
.link-existing-project-modal .popover-content {
  width: 500px;
  max-width: 500px;
}
.create-message-templates-modal .modal-dialog {
  width: 700px;
}
.create-message-templates-modal .message-template-row__name-column {
  width: 1em;
  white-space: nowrap;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-bubble.ql-toolbar:after,
.ql-bubble .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-bubble.ql-toolbar button,
.ql-bubble .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-bubble.ql-toolbar button svg,
.ql-bubble .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-bubble.ql-toolbar button:active:hover,
.ql-bubble .ql-toolbar button:active:hover {
  outline: none;
}
.ql-bubble.ql-toolbar input.ql-image[type=file],
.ql-bubble .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-bubble.ql-toolbar button:hover,
.ql-bubble .ql-toolbar button:hover,
.ql-bubble.ql-toolbar button:focus,
.ql-bubble .ql-toolbar button:focus,
.ql-bubble.ql-toolbar button.ql-active,
.ql-bubble .ql-toolbar button.ql-active,
.ql-bubble.ql-toolbar .ql-picker-label:hover,
.ql-bubble .ql-toolbar .ql-picker-label:hover,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active,
.ql-bubble.ql-toolbar .ql-picker-item:hover,
.ql-bubble .ql-toolbar .ql-picker-item:hover,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected {
  color: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-stroke,
.ql-bubble .ql-toolbar button:hover .ql-stroke,
.ql-bubble.ql-toolbar button:focus .ql-stroke,
.ql-bubble .ql-toolbar button:focus .ql-stroke,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #fff;
}
@media (pointer: coarse) {
  .ql-bubble.ql-toolbar button:hover:not(.ql-active),
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) {
    color: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #ccc;
  }
}
.ql-bubble {
  box-sizing: border-box;
}
.ql-bubble * {
  box-sizing: border-box;
}
.ql-bubble .ql-hidden {
  display: none;
}
.ql-bubble .ql-out-bottom,
.ql-bubble .ql-out-top {
  visibility: hidden;
}
.ql-bubble .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-bubble .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-bubble .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-bubble .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-bubble .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-bubble .ql-stroke {
  fill: none;
  stroke: #ccc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-bubble .ql-stroke-miter {
  fill: none;
  stroke: #ccc;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-bubble .ql-fill,
.ql-bubble .ql-stroke.ql-fill {
  fill: #ccc;
}
.ql-bubble .ql-empty {
  fill: none;
}
.ql-bubble .ql-even {
  fill-rule: evenodd;
}
.ql-bubble .ql-thin,
.ql-bubble .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-bubble .ql-transparent {
  opacity: 0.4;
}
.ql-bubble .ql-direction svg:last-child {
  display: none;
}
.ql-bubble .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-bubble .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-bubble .ql-editor h1 {
  font-size: 2em;
}
.ql-bubble .ql-editor h2 {
  font-size: 1.5em;
}
.ql-bubble .ql-editor h3 {
  font-size: 1.17em;
}
.ql-bubble .ql-editor h4 {
  font-size: 1em;
}
.ql-bubble .ql-editor h5 {
  font-size: 0.83em;
}
.ql-bubble .ql-editor h6 {
  font-size: 0.67em;
}
.ql-bubble .ql-editor a {
  text-decoration: underline;
}
.ql-bubble .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-bubble .ql-editor code,
.ql-bubble .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-bubble .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-bubble .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-bubble .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-bubble .ql-editor img {
  max-width: 100%;
}
.ql-bubble .ql-picker {
  color: #ccc;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-bubble .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-bubble .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-bubble .ql-picker-options {
  background-color: #444;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-bubble .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label {
  color: #777;
  z-index: 2;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-bubble .ql-color-picker,
.ql-bubble .ql-icon-picker {
  width: 28px;
}
.ql-bubble .ql-color-picker .ql-picker-label,
.ql-bubble .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-label svg,
.ql-bubble .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-bubble .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-bubble .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-bubble .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-bubble .ql-picker.ql-header {
  width: 98px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-bubble .ql-picker.ql-font {
  width: 108px;
}
.ql-bubble .ql-picker.ql-font .ql-picker-label::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-bubble .ql-picker.ql-size {
  width: 98px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-label::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-bubble .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-bubble .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-bubble .ql-toolbar .ql-formats {
  margin: 8px 12px 8px 0px;
}
.ql-bubble .ql-toolbar .ql-formats:first-child {
  margin-left: 12px;
}
.ql-bubble .ql-color-picker svg {
  margin: 1px;
}
.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,
.ql-bubble .ql-color-picker .ql-picker-item:hover {
  border-color: #fff;
}
.ql-bubble .ql-tooltip {
  background-color: #444;
  border-radius: 25px;
  color: #fff;
}
.ql-bubble .ql-tooltip-arrow {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: " ";
  display: block;
  left: 50%;
  margin-left: -6px;
  position: absolute;
}
.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow {
  border-bottom: 6px solid #444;
  top: -6px;
}
.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow {
  border-top: 6px solid #444;
  bottom: -6px;
}
.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor {
  display: block;
}
.ql-bubble .ql-tooltip.ql-editing .ql-formats {
  visibility: hidden;
}
.ql-bubble .ql-tooltip-editor {
  display: none;
}
.ql-bubble .ql-tooltip-editor input[type=text] {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  height: 100%;
  outline: none;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
}
.ql-bubble .ql-tooltip-editor a {
  top: 10px;
  position: absolute;
  right: 20px;
}
.ql-bubble .ql-tooltip-editor a:before {
  color: #ccc;
  content: "\D7";
  font-size: 16px;
  font-weight: bold;
}
.ql-container.ql-bubble:not(.ql-disabled) a {
  position: relative;
  white-space: nowrap;
}
.ql-container.ql-bubble:not(.ql-disabled) a::before {
  background-color: #444;
  border-radius: 15px;
  top: -5px;
  font-size: 12px;
  color: #fff;
  content: attr(href);
  font-weight: normal;
  overflow: hidden;
  padding: 5px 15px;
  text-decoration: none;
  z-index: 1;
}
.ql-container.ql-bubble:not(.ql-disabled) a::after {
  border-top: 6px solid #444;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  top: 0;
  content: " ";
  height: 0;
  width: 0;
}
.ql-container.ql-bubble:not(.ql-disabled) a::before,
.ql-container.ql-bubble:not(.ql-disabled) a::after {
  left: 0;
  margin-left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: visibility 0s ease 200ms;
  visibility: hidden;
}
.ql-container.ql-bubble:not(.ql-disabled) a:hover::before,
.ql-container.ql-bubble:not(.ql-disabled) a:hover::after {
  visibility: visible;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: 0.4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}
.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor pre {
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: 'Heading 1';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: 'Heading 2';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: 'Heading 3';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: 'Heading 4';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: 'Heading 5';
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: 'Heading 6';
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: 'Serif';
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: 'Monospace';
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family: Georgia, Times New Roman, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family: Monaco, Courier New, monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: 'Small';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: 'Large';
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: 'Huge';
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0px;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}
html,
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  background: #f5f5f5;
}
div,
p,
a,
span {
  font-family: 'Open Sans', sans-serif;
}
.ol-editor {
  display: block;
}
.ol-editor .ql-container {
  height: 150px;
  overflow: scroll;
}
.ol-editor .ql-disabled {
  color: #777;
  -webkit-text-fill-color: #777;
  background-color: #eee;
}
.ol-editor .ql-tooltip {
  left: 0 !important;
}
.ol-editor .ql-snow .ql-tooltip.ql-flip {
  margin-top: 0 !important;
  top: 12px !important;
  left: 2px !important;
}
.ol-editor .ql-editor.ql-blank::before {
  font-style: normal;
  font-weight: 400;
}
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.text-gray {
  color: #999;
}
.bg-blue-light {
  background-color: #F0F8FF;
}
.w-12 {
  width: 3rem;
}
/***************************************************************************
* Color Picker
***************************************************************************/
.colorpicker-visible,
.colorpicker-visible .dropdown-menu {
  display: block !important;
}
colorpicker-saturation {
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(data:image/png;base64,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);
  cursor: crosshair;
  float: left;
}
colorpicker-saturation i {
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #000;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}
colorpicker-saturation i::after {
  content: '';
  display: block;
  height: 7px;
  width: 7px;
  border: 1px solid #fff;
  border-radius: 5px;
}
colorpicker-hue,
colorpicker-alpha {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}
colorpicker-hue i,
colorpicker-alpha i {
  display: block;
  height: 2px;
  background: #000;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}
colorpicker-hue {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEUA/z8AuP//JAAA/33/3AAA/1ABAv8A/7r/AH7/jgD2AP8A//j/AEHmAP/XAP/HAP+4AP//ALyoAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8ATv//AG7/cAD/vgD/APoAmv//ADH/AKwB/wMA5//4Eg4AL///AOr/UQD/nwAA/27/7AAA/+kAe/8Ayf8A/5sA/zEA/6z/ABEAEP8A/17/MgAA/9n/ACL/gAD/AJ0AXP8Aqv//AMoA/yHqFBb/zAD/AGD/ANsA9//1/wDk/wDV/wDF/wC3/wD/AI2m/wD/FACY/wCI/wB5/wBp/wD/YgBb/wBK/wA8/wAs/wAd/wAN/wAAPv8A/xH/AFAAi///rQAA/8r/+gAA1///QwAAH/8Abf8A/43c/JNGAAAAiElEQVQI11XIQQsBURhG4e+e17iMLC1QLESp0eUurChZWvj/f2OKzNDcsdGUzuKpYxceZPL6cNdEjWqulPJq2ZFpQKU3wuFw8PMv6xMoVLFXyZKNEoWezM0RCHqxsBErctbmKUhEE1tyy8wsMmammkjblTpT96ZK1uMs46TGhhwEUXCUN7jJfQHfmyY3nTId8wAAAABJRU5ErkJggg==);
}
colorpicker-alpha {
  display: none;
}
colorpicker-alpha,
.colorpicker-color {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAMAAACIElGlAAADAFBMVEUAAADT09PT09P////T09P////e3t7q6urT09Px8fHT09P////////T09PT09P////////T09PT09P////////////T09PT09P////////////T09P////T09PT09PT09P////T09PT09P////////////////T09P////T09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09P////T09P////////////T09PT09P////T09P////////////////////T09P////////T09PT09P////////////////////////T09PT09P////////////////////////T09PT09P////T09PT09P////////T09P////////////T09P////////T09P////T09P////T09P////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09P////T09P////T09PT09P////////////T09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////////////////T09PT09P////////////T09P////////T09P////T09PT09PT09P////////T09P////////T09P////T09PT09P////////////////T09PT09PT09PT09P////T09PT09PT09PT09PT09PT09PT09P////T09P////T09PT09PT09PT09PT09P////////////////////////////////////T09P////T09P////T09P////T09PT09P////////////T09P////T09P////T09P////////////T09PT09P////////////////T09PT09P////T09P////T09PT09P////T09P////T09PT09P////T09PT09PT09PT09P////T09PT09P////////////T09PT09P////T09P////////T09MQsm1FAAABAHRSTlMAgJN8/vcDAfcCnJyGaZmZlomGk4yJOmM/eTxs8wY0YDFC7HNdLx18n5/7aUvzCcW9+qKiK8P0ZiltRwfdw/n8Px3WduJjItj78ss5PDHUNELbwP5wplA2FglEVwvkqNarCs4Z7b2sDLgQ0xNdyLrr0eLLUeW1Vs5TWQLwjPI3ZvQGdvxFyFrAeevaLCLvGd0kpRskGyf4qK605xKvFrGyDRHnBYMEkJaDkIBvB/gpH99O6CrbIC4nH3Lg2SXp4A7Qul/GDEgPSlMQ6LjqFU0SjyCCj5V/gnBN7xglL3O70WBU7gjFFEfft0sPTo1ndRipwXr2yRemWRVENq+ytbGuxGaWGQAAAlNJREFUGBkFwVtoFQQABuDvn27lbEGQNaGtNsxtZ84wDNtDaBdLaNC64SqnlVq4zDJdF6xMeim2WpPqITdHjEoqCaIkhpJQEVGMvG3HWK52lAQfQ4nNou8LALkEQOb8a5at9G7PcJn/yh6D7FJ/ygDkc8v81AdZDM2QNVAOeRJaFzCRbzWfaD5gIdkEjxYbi43Zg183QJ7y1jaPV59VnQ5YSce+vN32lbY30ZvdHLmhjOmK3ApnIF9UmDaH+dLbNM4I5OA4Vn2NvOfOEfXlM+UzuRl2zJTPyFLYWUSuh/6FfpProAVSC0sgr+LlTshVcBOkDUYhK6AIaYcjkIdhqAf5oW6ybrIb8mO9UzZCzpVqSipP0pBtUIK8CO3m+yvPwxnIS1C1tY9shm8gf0xRuxyyEo5ClsGqLbtJM0xBWmEK8gCsXnTcovxugi7I7bCcze/mDXQ1QBpgAvKpZidWQ/YVjFlslFwGFZB5cBFyJRTfQT4ujBXGZhXGCmMpgysgx4+1HLMJcjkEUgmBNEIgN0IgF/bge8haaOWhT/IETEMGrB90cf0g2Yu1w9Z9KN2wwIYBOavEIGQL3F9TqillI/wMuQ+G3kdugX8g36mbrLsb8jRUP9NPnoMi5AU4B3kW2l3rz3TBacg6KEHugu2Qe6FVgfTVTbIfMuKCytlN403juQNaIJ1wNeQDuPQocuj83PNzqyCH+GXpl52GO1Pv8Aq3QU72dOtp4sHPsgNGIa8YouX0NeQ1OAD5G+ZB9j/iIx39yBKoghSgFvL6rp0chMyGe+B/ppiljeyzntEAAAAASUVORK5CYII=);
}
.colorpicker {
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.colorpicker colorpicker-hue,
.colorpicker colorpicker-alpha,
.colorpicker colorpicker-saturation {
  position: relative;
}
.colorpicker input {
  width: 100px;
  font-size: 11px;
  color: #000;
  background-color: #fff;
}
.colorpicker.alpha {
  min-width: 140px;
}
.colorpicker.alpha colorpicker-alpha {
  display: block;
}
.colorpicker.dropdown {
  position: absolute;
}
.colorpicker.colorpicker-fixed-position {
  position: fixed;
}
.colorpicker .dropdown-menu::after,
.colorpicker .dropdown-menu::before {
  content: '';
  display: inline-block;
  position: absolute;
}
.colorpicker .dropdown-menu::after {
  clear: both;
  border: 6px solid transparent;
  top: -5px;
  left: 7px;
}
.colorpicker .dropdown-menu::before {
  border: 7px solid transparent;
  top: -6px;
  left: 6px;
}
.colorpicker .dropdown-menu {
  position: static;
  top: 0;
  left: 0;
  min-width: 129px;
  padding: 4px;
  margin-top: 0;
}
.colorpicker-position-top .dropdown-menu::after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  top: auto;
  bottom: -5px;
}
.colorpicker-position-top .dropdown-menu::before {
  border-top: 7px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  top: auto;
  bottom: -6px;
}
.colorpicker-position-right .dropdown-menu::after {
  border-right: 6px solid #fff;
  border-left: 0;
  top: 11px;
  left: -5px;
}
.colorpicker-position-right .dropdown-menu::before {
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-left: 0;
  top: 10px;
  left: -6px;
}
.colorpicker-position-bottom .dropdown-menu::after {
  border-bottom: 6px solid #fff;
  border-top: 0;
}
.colorpicker-position-bottom .dropdown-menu::before {
  border-bottom: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 0;
}
.colorpicker-position-left .dropdown-menu::after {
  border-left: 6px solid #fff;
  border-right: 0;
  top: 11px;
  left: auto;
  right: -5px;
}
.colorpicker-position-left .dropdown-menu::before {
  border-left: 7px solid rgba(0, 0, 0, 0.2);
  border-right: 0;
  top: 10px;
  left: auto;
  right: -6px;
}
colorpicker-preview {
  display: block;
  height: 10px;
  margin: 5px 0 3px 0;
  clear: both;
  background-position: 0 100%;
}
.display-inline-block {
  display: inline-block;
}
.subheading {
  font-size: 13px;
  color: #ff6138;
}
.template-cover {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
}
.list-group .list-group-item > .btn {
  margin-top: -6px;
  padding: 7px;
}
.bold-text {
  font-weight: bold;
}
.margin-left-10 {
  margin-left: 10px;
}
.margin-v-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.margin-top-10 {
  margin-top: 10px;
}
.margin-top-18 {
  margin-top: 18px;
}
.margin-top-20 {
  margin-top: 20px;
}
.font-size-12 {
  font-size: 12px;
}
.font-size-14 {
  font-size: 14px;
}
.text-warning {
  color: #f0ad4e;
}
label.btn[disabled] {
  pointer-events: none;
}
.capitalize {
  text-transform: capitalize;
}
.notifications {
  z-index: 10000;
}
admin-alert {
  display: block;
  width: 100%;
}
.admin-alert {
  border: none;
  border-radius: 0;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 400;
  height: auto;
  min-height: 0;
  overflow: hidden;
  outline: 0;
  padding: 15px 45px;
  position: relative;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 10;
}
.admin-alert.error {
  background-color: #c9302c;
}
.panel-list {
  height: 500px;
  overflow-y: auto;
}
.modal .modal-body {
  padding-top: 20px;
}
.modal .modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.modal .modal-header .modal-title {
  font-size: 30px;
  color: #333;
  margin: 0 20px 0 0;
}
.modal .modal-header .close {
  font-size: 30px;
  outline: 0;
  position: absolute;
  right: 20px;
}
.modal .form-actions {
  margin-top: 30px;
}
.required label:after {
  content: "*";
  color: #000000;
}
.checkbox-icon-help {
  margin-top: -10px;
}
input[type="date"].form-control,
input[type="time"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control {
  line-height: 22px;
}
.radio-control {
  display: inline;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-control .radio-control__input {
  margin: 0 8px -5px;
}
.radio-control__input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-clip: content-box;
  background-color: white;
  border-radius: 50%;
  border: 2px solid #bbb;
  display: inline-block;
  height: 20px;
  margin-left: 20px;
  outline: 0 !important;
  padding: 3px !important;
  width: 20px;
}
.radio-control__input:checked {
  background-color: #FF6138;
  border: 2px solid #FF6138;
}
.radio-control:hover .radio-control__input {
  background-color: #CCC;
  border: 2px solid #CCC;
}
.radio-control:hover .radio-control__input:checked {
  background-color: #FF6138;
  border: 2px solid #FF6138;
}
.dl-horizontal dt {
  width: initial;
  margin-right: 8px;
}
.word-break {
  word-break: break-word;
}
.css-reset div,
.css-reset p,
.css-reset a,
.css-reset span {
  font-family: "Gotham Rounded A", "Gotham Rounded B", sans-serif;
}
.css-reset legend {
  border: 0;
}
.css-reset svg {
  box-sizing: initial;
}
.css-reset .MuiDialog-container label {
  text-transform: none;
}
