/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title: Justified module
section: Layout modules
---
Simple module component to achieve alignment to the left and right
edge of element. It's robust in terms of responsive behavior. Resize
screen and notice how elements align nicely when they stop having
space to be in one line

example.html
<div class="module-justified">
    <div class="module__section"><h1>left section</h1></div>
    <div class="module__section"><h1>right section</h1></div>
</div>
*/
.module-justified {
  text-align: justify;
  line-height: 0;
  word-spacing: -0.25em; }
  .module-justified > .module__section {
    display: inline-block;
    vertical-align: top;
    word-spacing: 0;
    line-height: 1.5rem;
    text-align: left; }
  .module-justified > .module__section--text-center {
    text-align: center; }
  .module-justified:after {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 100%; }

.module-justified--middle > .module__section {
  vertical-align: middle; }

.module-justified--baseline > .module__section {
  vertical-align: baseline; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  color: inherit; }

.icon--credit-card {
  height: 0.45em; }

.icon--circle {
  border-radius: 50%;
  background-color: currentColor; }

.icon--warning {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 2px;
  color: #fff;
  background: #e9573f;
  border-radius: 50%; }

.caret, .caret-up, .caret-right {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 1em dashed;
  border-right: 1em solid transparent;
  border-left: 1em solid transparent;
  font-size: 4px; }

.caret-up {
  border-top: 0;
  border-bottom: 1em dashed; }

.caret-right {
  border-bottom: 1em solid transparent;
  border-top: 1em solid transparent;
  border-left: 1em solid; }

/*---
title:   Definition Lists
section: Base CSS
---
Gives you simple list of labels with associated values per line in a semantic structure.

```html
<dl class="simple-definition-list">
    <dt>Label 1</dt>
    <dd>Value for label 1</dd>
    <dt>Label 2</dt>
    <dd>Value for label 2</dd>
    <dd>Another value for label 2</dd>
</dl>
```
*/
.simple-definition-list > dt, .simple-definition-list dd {
  display: inline; }

.simple-definition-list > dt:before {
  content: '';
  display: block; }

.btn--topstep-filled, .btn--topstep-outlined {
  border: 2px solid #487A7B !important; }

.btn--topstep-filled {
  background-color: #487A7B !important;
  color: #FFFFFF !important; }
  .btn--topstep-filled:hover {
    background-color: #1a4e4f !important;
    border: 2px solid #1a4e4f !important; }
  .btn--topstep-filled:disabled {
    background-color: #b3d7c4 !important;
    border: none !important; }

.btn--topstep-outlined {
  background-color: transparent !important;
  color: #487A7B !important; }
  .btn--topstep-outlined:hover {
    background-color: rgba(72, 122, 123, 0.2) !important; }

.sign-up__asset--topstep {
  background-color: #E0E0E0;
  color: #000000;
  font-size: 14px;
  width: 80px;
  height: 23px;
  padding: 2px 13px;
  margin: auto auto 15px;
  margin-bottom: 15px;
  font-weight: 600; }

.btn-reset-password--topstep {
  width: 267px !important;
  margin: auto; }

.form-reset-password--topstep {
  width: 297px !important;
  margin: auto auto 40px !important; }

@charset "UTF-8";
/*------------------------------------*\
    #TopstepTrader Styles
\*------------------------------------*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! 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: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline 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 {
  -webkit-box-sizing: content-box;
          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"] {
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: content-box;
          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 {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
            box-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; } }

@font-face {
  font-family: "Glyphicons Halflings";
  src: url([object Module]);
  src: url([object Module]?#iefix) format("embedded-opentype"), url([object Module]) format("woff2"), url([object Module]) format("woff"), url([object Module]) format("truetype"), url([object Module]#glyphicons_halflingsregular) format("svg"); }

.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-asterisk:before {
  content: "*"; }

.glyphicon-plus:before {
  content: "+"; }

.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20AC"; }

.glyphicon-minus:before {
  content: "\2212"; }

.glyphicon-cloud:before {
  content: "\2601"; }

.glyphicon-envelope:before {
  content: "\2709"; }

.glyphicon-pencil:before {
  content: "\270F"; }

.glyphicon-glass:before {
  content: "\E001"; }

.glyphicon-music:before {
  content: "\E002"; }

.glyphicon-search:before {
  content: "\E003"; }

.glyphicon-heart:before {
  content: "\E005"; }

.glyphicon-star:before {
  content: "\E006"; }

.glyphicon-star-empty:before {
  content: "\E007"; }

.glyphicon-user:before {
  content: "\E008"; }

.glyphicon-film:before {
  content: "\E009"; }

.glyphicon-th-large:before {
  content: "\E010"; }

.glyphicon-th:before {
  content: "\E011"; }

.glyphicon-th-list:before {
  content: "\E012"; }

.glyphicon-ok:before {
  content: "\E013"; }

.glyphicon-remove:before, .select2-search-choice-close:before {
  content: "\E014"; }

.glyphicon-zoom-in:before {
  content: "\E015"; }

.glyphicon-zoom-out:before {
  content: "\E016"; }

.glyphicon-off:before {
  content: "\E017"; }

.glyphicon-signal:before {
  content: "\E018"; }

.glyphicon-cog:before {
  content: "\E019"; }

.glyphicon-trash:before {
  content: "\E020"; }

.glyphicon-home:before {
  content: "\E021"; }

.glyphicon-file:before {
  content: "\E022"; }

.glyphicon-time:before {
  content: "\E023"; }

.glyphicon-road:before {
  content: "\E024"; }

.glyphicon-download-alt:before {
  content: "\E025"; }

.glyphicon-download:before {
  content: "\E026"; }

.glyphicon-upload:before {
  content: "\E027"; }

.glyphicon-inbox:before {
  content: "\E028"; }

.glyphicon-play-circle:before {
  content: "\E029"; }

.glyphicon-repeat:before {
  content: "\E030"; }

.glyphicon-refresh:before {
  content: "\E031"; }

.glyphicon-list-alt:before {
  content: "\E032"; }

.glyphicon-lock:before {
  content: "\E033"; }

.glyphicon-flag:before {
  content: "\E034"; }

.glyphicon-headphones:before {
  content: "\E035"; }

.glyphicon-volume-off:before {
  content: "\E036"; }

.glyphicon-volume-down:before {
  content: "\E037"; }

.glyphicon-volume-up:before {
  content: "\E038"; }

.glyphicon-qrcode:before {
  content: "\E039"; }

.glyphicon-barcode:before {
  content: "\E040"; }

.glyphicon-tag:before {
  content: "\E041"; }

.glyphicon-tags:before {
  content: "\E042"; }

.glyphicon-book:before {
  content: "\E043"; }

.glyphicon-bookmark:before {
  content: "\E044"; }

.glyphicon-print:before {
  content: "\E045"; }

.glyphicon-camera:before {
  content: "\E046"; }

.glyphicon-font:before {
  content: "\E047"; }

.glyphicon-bold:before {
  content: "\E048"; }

.glyphicon-italic:before {
  content: "\E049"; }

.glyphicon-text-height:before {
  content: "\E050"; }

.glyphicon-text-width:before {
  content: "\E051"; }

.glyphicon-align-left:before {
  content: "\E052"; }

.glyphicon-align-center:before {
  content: "\E053"; }

.glyphicon-align-right:before {
  content: "\E054"; }

.glyphicon-align-justify:before {
  content: "\E055"; }

.glyphicon-list:before {
  content: "\E056"; }

.glyphicon-indent-left:before {
  content: "\E057"; }

.glyphicon-indent-right:before {
  content: "\E058"; }

.glyphicon-facetime-video:before {
  content: "\E059"; }

.glyphicon-picture:before {
  content: "\E060"; }

.glyphicon-map-marker:before {
  content: "\E062"; }

.glyphicon-adjust:before {
  content: "\E063"; }

.glyphicon-tint:before {
  content: "\E064"; }

.glyphicon-edit:before {
  content: "\E065"; }

.glyphicon-share:before {
  content: "\E066"; }

.glyphicon-check:before {
  content: "\E067"; }

.glyphicon-move:before {
  content: "\E068"; }

.glyphicon-step-backward:before {
  content: "\E069"; }

.glyphicon-fast-backward:before {
  content: "\E070"; }

.glyphicon-backward:before {
  content: "\E071"; }

.glyphicon-play:before {
  content: "\E072"; }

.glyphicon-pause:before {
  content: "\E073"; }

.glyphicon-stop:before {
  content: "\E074"; }

.glyphicon-forward:before {
  content: "\E075"; }

.glyphicon-fast-forward:before {
  content: "\E076"; }

.glyphicon-step-forward:before {
  content: "\E077"; }

.glyphicon-eject:before {
  content: "\E078"; }

.glyphicon-chevron-left:before {
  content: "\E079"; }

.glyphicon-chevron-right:before {
  content: "\E080"; }

.glyphicon-plus-sign:before {
  content: "\E081"; }

.glyphicon-minus-sign:before {
  content: "\E082"; }

.glyphicon-remove-sign:before {
  content: "\E083"; }

.glyphicon-ok-sign:before {
  content: "\E084"; }

.glyphicon-question-sign:before {
  content: "\E085"; }

.glyphicon-info-sign:before {
  content: "\E086"; }

.glyphicon-screenshot:before {
  content: "\E087"; }

.glyphicon-remove-circle:before {
  content: "\E088"; }

.glyphicon-ok-circle:before {
  content: "\E089"; }

.glyphicon-ban-circle:before {
  content: "\E090"; }

.glyphicon-arrow-left:before {
  content: "\E091"; }

.glyphicon-arrow-right:before {
  content: "\E092"; }

.glyphicon-arrow-up:before {
  content: "\E093"; }

.glyphicon-arrow-down:before {
  content: "\E094"; }

.glyphicon-share-alt:before {
  content: "\E095"; }

.glyphicon-resize-full:before {
  content: "\E096"; }

.glyphicon-resize-small:before {
  content: "\E097"; }

.glyphicon-exclamation-sign:before {
  content: "\E101"; }

.glyphicon-gift:before {
  content: "\E102"; }

.glyphicon-leaf:before {
  content: "\E103"; }

.glyphicon-fire:before {
  content: "\E104"; }

.glyphicon-eye-open:before {
  content: "\E105"; }

.glyphicon-eye-close:before {
  content: "\E106"; }

.glyphicon-warning-sign:before {
  content: "\E107"; }

.glyphicon-plane:before {
  content: "\E108"; }

.glyphicon-calendar:before {
  content: "\E109"; }

.glyphicon-random:before {
  content: "\E110"; }

.glyphicon-comment:before {
  content: "\E111"; }

.glyphicon-magnet:before {
  content: "\E112"; }

.glyphicon-chevron-up:before {
  content: "\E113"; }

.glyphicon-chevron-down:before {
  content: "\E114"; }

.glyphicon-retweet:before {
  content: "\E115"; }

.glyphicon-shopping-cart:before {
  content: "\E116"; }

.glyphicon-folder-close:before {
  content: "\E117"; }

.glyphicon-folder-open:before {
  content: "\E118"; }

.glyphicon-resize-vertical:before {
  content: "\E119"; }

.glyphicon-resize-horizontal:before {
  content: "\E120"; }

.glyphicon-hdd:before {
  content: "\E121"; }

.glyphicon-bullhorn:before {
  content: "\E122"; }

.glyphicon-bell:before {
  content: "\E123"; }

.glyphicon-certificate:before {
  content: "\E124"; }

.glyphicon-thumbs-up:before {
  content: "\E125"; }

.glyphicon-thumbs-down:before {
  content: "\E126"; }

.glyphicon-hand-right:before {
  content: "\E127"; }

.glyphicon-hand-left:before {
  content: "\E128"; }

.glyphicon-hand-up:before {
  content: "\E129"; }

.glyphicon-hand-down:before {
  content: "\E130"; }

.glyphicon-circle-arrow-right:before {
  content: "\E131"; }

.glyphicon-circle-arrow-left:before {
  content: "\E132"; }

.glyphicon-circle-arrow-up:before {
  content: "\E133"; }

.glyphicon-circle-arrow-down:before {
  content: "\E134"; }

.glyphicon-globe:before {
  content: "\E135"; }

.glyphicon-wrench:before {
  content: "\E136"; }

.glyphicon-tasks:before {
  content: "\E137"; }

.glyphicon-filter:before {
  content: "\E138"; }

.glyphicon-briefcase:before {
  content: "\E139"; }

.glyphicon-fullscreen:before {
  content: "\E140"; }

.glyphicon-dashboard:before {
  content: "\E141"; }

.glyphicon-paperclip:before {
  content: "\E142"; }

.glyphicon-heart-empty:before {
  content: "\E143"; }

.glyphicon-link:before {
  content: "\E144"; }

.glyphicon-phone:before {
  content: "\E145"; }

.glyphicon-pushpin:before {
  content: "\E146"; }

.glyphicon-usd:before {
  content: "\E148"; }

.glyphicon-gbp:before {
  content: "\E149"; }

.glyphicon-sort:before {
  content: "\E150"; }

.glyphicon-sort-by-alphabet:before {
  content: "\E151"; }

.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152"; }

.glyphicon-sort-by-order:before {
  content: "\E153"; }

.glyphicon-sort-by-order-alt:before {
  content: "\E154"; }

.glyphicon-sort-by-attributes:before {
  content: "\E155"; }

.glyphicon-sort-by-attributes-alt:before {
  content: "\E156"; }

.glyphicon-unchecked:before {
  content: "\E157"; }

.glyphicon-expand:before {
  content: "\E158"; }

.glyphicon-collapse-down:before {
  content: "\E159"; }

.glyphicon-collapse-up:before {
  content: "\E160"; }

.glyphicon-log-in:before {
  content: "\E161"; }

.glyphicon-flash:before {
  content: "\E162"; }

.glyphicon-log-out:before {
  content: "\E163"; }

.glyphicon-new-window:before {
  content: "\E164"; }

.glyphicon-record:before {
  content: "\E165"; }

.glyphicon-save:before {
  content: "\E166"; }

.glyphicon-open:before {
  content: "\E167"; }

.glyphicon-saved:before {
  content: "\E168"; }

.glyphicon-import:before {
  content: "\E169"; }

.glyphicon-export:before {
  content: "\E170"; }

.glyphicon-send:before {
  content: "\E171"; }

.glyphicon-floppy-disk:before {
  content: "\E172"; }

.glyphicon-floppy-saved:before {
  content: "\E173"; }

.glyphicon-floppy-remove:before {
  content: "\E174"; }

.glyphicon-floppy-save:before {
  content: "\E175"; }

.glyphicon-floppy-open:before {
  content: "\E176"; }

.glyphicon-credit-card:before {
  content: "\E177"; }

.glyphicon-transfer:before {
  content: "\E178"; }

.glyphicon-cutlery:before {
  content: "\E179"; }

.glyphicon-header:before {
  content: "\E180"; }

.glyphicon-compressed:before {
  content: "\E181"; }

.glyphicon-earphone:before {
  content: "\E182"; }

.glyphicon-phone-alt:before {
  content: "\E183"; }

.glyphicon-tower:before {
  content: "\E184"; }

.glyphicon-stats:before {
  content: "\E185"; }

.glyphicon-sd-video:before {
  content: "\E186"; }

.glyphicon-hd-video:before {
  content: "\E187"; }

.glyphicon-subtitles:before {
  content: "\E188"; }

.glyphicon-sound-stereo:before {
  content: "\E189"; }

.glyphicon-sound-dolby:before {
  content: "\E190"; }

.glyphicon-sound-5-1:before {
  content: "\E191"; }

.glyphicon-sound-6-1:before {
  content: "\E192"; }

.glyphicon-sound-7-1:before {
  content: "\E193"; }

.glyphicon-copyright-mark:before {
  content: "\E194"; }

.glyphicon-registration-mark:before {
  content: "\E195"; }

.glyphicon-cloud-download:before {
  content: "\E197"; }

.glyphicon-cloud-upload:before {
  content: "\E198"; }

.glyphicon-tree-conifer:before {
  content: "\E199"; }

.glyphicon-tree-deciduous:before {
  content: "\E200"; }

.glyphicon-cd:before {
  content: "\E201"; }

.glyphicon-save-file:before {
  content: "\E202"; }

.glyphicon-open-file:before {
  content: "\E203"; }

.glyphicon-level-up:before {
  content: "\E204"; }

.glyphicon-copy:before {
  content: "\E205"; }

.glyphicon-paste:before {
  content: "\E206"; }

.glyphicon-alert:before {
  content: "\E209"; }

.glyphicon-equalizer:before {
  content: "\E210"; }

.glyphicon-king:before {
  content: "\E211"; }

.glyphicon-queen:before {
  content: "\E212"; }

.glyphicon-pawn:before {
  content: "\E213"; }

.glyphicon-bishop:before {
  content: "\E214"; }

.glyphicon-knight:before {
  content: "\E215"; }

.glyphicon-baby-formula:before {
  content: "\E216"; }

.glyphicon-tent:before {
  content: "\26FA"; }

.glyphicon-blackboard:before {
  content: "\E218"; }

.glyphicon-bed:before {
  content: "\E219"; }

.glyphicon-apple:before {
  content: "\F8FF"; }

.glyphicon-erase:before {
  content: "\E221"; }

.glyphicon-hourglass:before {
  content: "\231B"; }

.glyphicon-lamp:before {
  content: "\E223"; }

.glyphicon-duplicate:before {
  content: "\E224"; }

.glyphicon-piggy-bank:before {
  content: "\E225"; }

.glyphicon-scissors:before {
  content: "\E226"; }

.glyphicon-bitcoin:before {
  content: "\E227"; }

.glyphicon-btc:before {
  content: "\E227"; }

.glyphicon-xbt:before {
  content: "\E227"; }

.glyphicon-yen:before {
  content: "\A5"; }

.glyphicon-jpy:before {
  content: "\A5"; }

.glyphicon-ruble:before {
  content: "\20BD"; }

.glyphicon-rub:before {
  content: "\20BD"; }

.glyphicon-scale:before {
  content: "\E230"; }

.glyphicon-ice-lolly:before {
  content: "\E231"; }

.glyphicon-ice-lolly-tasted:before {
  content: "\E232"; }

.glyphicon-education:before {
  content: "\E233"; }

.glyphicon-option-horizontal:before {
  content: "\E234"; }

.glyphicon-option-vertical:before {
  content: "\E235"; }

.glyphicon-menu-hamburger:before {
  content: "\E236"; }

.glyphicon-modal-window:before {
  content: "\E237"; }

.glyphicon-oil:before {
  content: "\E238"; }

.glyphicon-grain:before {
  content: "\E239"; }

.glyphicon-sunglasses:before {
  content: "\E240"; }

.glyphicon-text-size:before {
  content: "\E241"; }

.glyphicon-text-color:before {
  content: "\E242"; }

.glyphicon-text-background:before {
  content: "\E243"; }

.glyphicon-object-align-top:before {
  content: "\E244"; }

.glyphicon-object-align-bottom:before {
  content: "\E245"; }

.glyphicon-object-align-horizontal:before {
  content: "\E246"; }

.glyphicon-object-align-left:before {
  content: "\E247"; }

.glyphicon-object-align-vertical:before {
  content: "\E248"; }

.glyphicon-object-align-right:before {
  content: "\E249"; }

.glyphicon-triangle-right:before {
  content: "\E250"; }

.glyphicon-triangle-left:before {
  content: "\E251"; }

.glyphicon-triangle-bottom:before {
  content: "\E252"; }

.glyphicon-triangle-top:before {
  content: "\E253"; }

.glyphicon-console:before {
  content: "\E254"; }

.glyphicon-superscript:before {
  content: "\E255"; }

.glyphicon-subscript:before {
  content: "\E256"; }

.glyphicon-menu-left:before {
  content: "\E257"; }

.glyphicon-menu-right:before {
  content: "\E258"; }

.glyphicon-menu-down:before {
  content: "\E259"; }

.glyphicon-menu-up:before {
  content: "\E260"; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 13px;
  line-height: 1.42857;
  color: #425161;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #5d9eea;
  text-decoration: none; }
  a:hover, a:focus {
    color: #1d76de;
    text-decoration: underline; }
  a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 7px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  -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: 18px;
  margin-bottom: 18px;
  border: 0;
  border-top: 1px solid #f5f7fa; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  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: 700;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: 400;
    line-height: 1;
    color: #c1c6ca; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 18px;
  margin-bottom: 9px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 9px;
  margin-bottom: 9px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 33px; }

h2, .h2 {
  font-size: 23px; }

h3, .h3 {
  font-size: 19px; }

h4, .h4 {
  font-size: 15px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 9px; }

.lead {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 19.5px; } }

small,
.small {
  font-size: 92%; }

mark,
.mark {
  padding: .2em;
  background-color: #ffce54; }

.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, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #c1c6ca; }

.text-primary {
  color: #5d9eea; }

a.text-primary:hover,
a.text-primary:focus {
  color: #3083e4; }

.text-success {
  color: #5B987A; }

a.text-success:hover,
a.text-success:focus {
  color: #487860; }

.text-info {
  color: #fff; }

a.text-info:hover,
a.text-info:focus {
  color: #e6e6e6; }

.text-warning {
  color: #fff; }

a.text-warning:hover,
a.text-warning:focus {
  color: #e6e6e6; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #5d9eea; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #3083e4; }

.bg-success {
  background-color: #D8E9E2; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #b7d7ca; }

.bg-info {
  background-color: #4a90e2; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #2275d7; }

.bg-warning {
  background-color: #ffce54; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #ffbf21; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 8px;
  margin: 36px 0 18px;
  border-bottom: 1px solid #f5f7fa; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 9px; }
  ul ul,
  ul ol,
  ol ul,
  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-right: 5px;
    padding-left: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 18px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: 700; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  display: table;
  content: " "; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 9px 18px;
  margin: 0 0 18px;
  font-size: 16.25px;
  border-left: 5px solid #f5f7fa; }
  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.42857;
    color: #c1c6ca; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: "\2014   \A0"; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #f5f7fa;
  border-left: 0; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ""; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: "\A0   \2014"; }

address {
  margin-bottom: 18px;
  font-style: normal;
  line-height: 1.42857; }

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: 5px; }

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
  kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    -webkit-box-shadow: none;
            box-shadow: none; }

pre {
  display: block;
  padding: 8.5px;
  margin: 0 0 9px;
  font-size: 12px;
  line-height: 1.42857;
  color: #bbbdbf;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px; }
  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; }

table {
  background-color: transparent; }
  table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none; }
  table td[class*="col-"],
  table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none; }

caption {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #c1c6ca;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 18px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 10px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #fff; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #fff; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #fff; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #fff; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #fff; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #fff; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #fff; }

.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: #f2f2f2; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #D8E9E2; }

.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: #c8e0d6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #4a90e2; }

.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: #3483de; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #ffce54; }

.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: #ffc73b; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.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 {
  min-height: .01%;
  overflow-x: auto; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 13.5px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #fff; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .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 > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th: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 > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th: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 > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 18px;
  font-size: 19.5px;
  line-height: inherit;
  color: #bbbdbf;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #626262; }

input:invalid {
  -webkit-box-shadow: none;
          box-shadow: none; }

.checkbox-group-label {
  margin-bottom: 12px; }

input[type="search"] {
  -webkit-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: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 13px;
  font-size: 13px;
  line-height: 1.42857;
  color: #425161; }

.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 1.42857;
  color: #425161;
  background-color: #fff;
  background-image: none;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control::-moz-placeholder {
    color: #a9aaaa;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #a9aaaa; }
  .form-control::-webkit-input-placeholder {
    color: #a9aaaa; }
  .form-control:focus {
    border-color: #5d9cec;
    outline: 0; }
  .form-control::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], .form-control[readonly],
  fieldset[disabled] .form-control {
    opacity: 1; }
  .form-control[disabled],
  fieldset[disabled] .form-control {
    background-color: #f3f3f3;
    color: #a9aaaa;
    cursor: default; }

.form-control--no-border {
  border: 0; }

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: 40px; }
  input[type="date"].input-sm, .input-group-sm > input.form-control[type="date"],
  .input-group-sm > input.input-group-addon[type="date"],
  .input-group-sm > .input-group-btn > input.btn[type="date"],
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm > input.form-control[type="time"],
  .input-group-sm > input.input-group-addon[type="time"],
  .input-group-sm > .input-group-btn > input.btn[type="time"],
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm > input.form-control[type="datetime-local"],
  .input-group-sm > input.input-group-addon[type="datetime-local"],
  .input-group-sm > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm > input.form-control[type="month"],
  .input-group-sm > input.input-group-addon[type="month"],
  .input-group-sm > .input-group-btn > input.btn[type="month"],
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg, .input-group-lg > input.form-control[type="date"],
  .input-group-lg > input.input-group-addon[type="date"],
  .input-group-lg > .input-group-btn > input.btn[type="date"],
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg > input.form-control[type="time"],
  .input-group-lg > input.input-group-addon[type="time"],
  .input-group-lg > .input-group-btn > input.btn[type="time"],
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg > input.form-control[type="datetime-local"],
  .input-group-lg > input.input-group-addon[type="datetime-local"],
  .input-group-lg > .input-group-btn > input.btn[type="datetime-local"],
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg > input.form-control[type="month"],
  .input-group-lg > input.input-group-addon[type="month"],
  .input-group-lg > .input-group-btn > input.btn[type="month"],
  .input-group-lg
  input[type="month"] {
    line-height: 50px; } }

.form-group {
  margin-bottom: 20px; }

.form-group__label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 300; }

.form-group__footer {
  min-height: 20px;
  margin-bottom: -20px; }

.form-group__errors {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #a94442; }
  .form-group__errors {
    display: none; }
  .has-error .form-group__errors {
    display: block; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 18px;
    padding-left: 20px;
    margin-bottom: 0;
    font-size: 13px;
    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="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: default; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: default; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: default; }

.form-control-static {
  padding-top: 13px;
  padding-bottom: 13px;
  margin-bottom: 0;
  min-height: 31px; }
  .form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
  .input-group-lg > .form-control-static.input-group-addon,
  .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
  .input-group-sm > .form-control-static.input-group-addon,
  .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0; }

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 5px; }

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 30px;
  line-height: 30px; }

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select.form-control[multiple],
.input-group-sm > select.input-group-addon[multiple],
.input-group-sm > .input-group-btn > select.btn[multiple] {
  height: auto; }

.form-group-sm .form-control {
  height: 30px;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 5px; }

.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: 30px;
  padding: 11px 20px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 50px;
  padding: 0 19px;
  font-size: 13px;
  line-height: 1.33333;
  border-radius: 5px; }

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 50px;
  line-height: 50px; }

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select.form-control[multiple],
.input-group-lg > select.input-group-addon[multiple],
.input-group-lg > .input-group-btn > select.btn[multiple] {
  height: auto; }

.form-group-lg .form-control {
  height: 50px;
  padding: 19px 19px;
  font-size: 16px;
  line-height: 1.33333;
  border-radius: 5px; }

.form-group-lg select.form-control {
  height: 50px;
  line-height: 50px; }

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto; }

.form-group-lg .form-control-static {
  height: 50px;
  min-height: 34px;
  padding: 20px 19px;
  font-size: 16px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control--with-feedback {
    padding-right: 50px; }
  .has-feedback .form-control-feedback {
    display: block; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  pointer-events: none; }
  .form-control-feedback {
    display: none; }

.adm-add-edit-account .form-control-feedback__icon-calendar {
  margin-right: 15px; }

.form-control-feedback__icon-asterisk {
  vertical-align: top;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 14px; }

.form-control-feedback__icon-calendar {
  vertical-align: middle;
  font-size: 17px; }

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 50px;
  height: 50px;
  line-height: 50px; }

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .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 .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: #5B987A; }

.has-success,
.has-success .form-control, .has-success .select2-choice, .has-success .ui-select-toggle, .has-success .selectize-input {
  border-color: #5B987A; }

.has-success .input-group-addon {
  color: #5B987A;
  border-color: #5B987A;
  background-color: #D8E9E2; }

.has-success .form-control-feedback {
  color: #5B987A; }

.has-warning .help-block,
.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: #fff; }

.has-warning,
.has-warning .form-control, .has-warning .select2-choice, .has-warning .ui-select-toggle, .has-warning .selectize-input {
  border-color: #fff; }

.has-warning .input-group-addon {
  color: #fff;
  border-color: #fff;
  background-color: #ffce54; }

.has-warning .form-control-feedback {
  color: #fff; }

.has-error .help-block,
.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,
.has-error .form-control, .has-error .select2-choice, .has-error .ui-select-toggle, .has-error .selectize-input {
  border-color: #a94442; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #fff; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 21px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #7c91a6; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .form-group:last-child {
      margin-right: 0; }
  .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 .control-label {
  font-size: 14px;
  font-weight: 300;
  text-align: left; }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 13px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 31px; }

.form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    display: table;
    content: " "; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    margin-bottom: 0;
    padding-top: 13px;
    padding-right: 0;
    margin-top: 0; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 20px;
    font-size: 16px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 11px;
    font-size: 12px; } }

.btn {
  height: 45px;
  padding: 12px 20px;
  font-size: 12px;
  line-height: 1.42857;
  border-radius: 5px;
  min-width: 125px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 0;
  white-space: nowrap; }
  .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 0;
    -webkit-box-shadow: none;
            box-shadow: none; }
  .btn.disabled, .btn[disabled],
  fieldset[disabled] .btn {
    cursor: default; }

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none; }

.btn-primary {
  color: #fff;
  background-color: #5d9eea; }
  .btn-primary:focus, .btn-primary:hover {
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none; }
  .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    background-image: none; }
  .btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active,
  fieldset[disabled] .btn-primary,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .btn-primary.focus,
  fieldset[disabled] .btn-primary:active,
  fieldset[disabled] .btn-primary.active {
    background-color: #dae7f8;
    color: #fff; }
  .btn-primary .badge {
    background-color: #fff;
    color: #5d9eea; }

.btn-danger {
  color: #fff;
  background-color: #dc3519; }
  .btn-danger:focus, .btn-danger:hover {
    background-color: #e9573f;
    color: #fff;
    text-decoration: none; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active,
  fieldset[disabled] .btn-danger,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus,
  fieldset[disabled] .btn-danger:active,
  fieldset[disabled] .btn-danger.active {
    background-color: #c47b67;
    color: #ffefcc; }
  .btn-danger .badge {
    background-color: #fff;
    color: #dc3519; }

.btn-default {
  color: #b7bfc8;
  background-color: #eaeaea;
  border-color: transparent; }
  .btn-default:focus, .btn-default:hover {
    background-color: #e2e2e2;
    color: #b7bfc8;
    text-decoration: none; }
  .btn-default:active, .btn-default.active,
  .open > .btn-default.dropdown-toggle {
    background-image: none; }
  .btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active,
  fieldset[disabled] .btn-default,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .btn-default.focus,
  fieldset[disabled] .btn-default:active,
  fieldset[disabled] .btn-default.active {
    background-color: #f3f3f3;
    color: #a9aaaa; }
  .btn-default .badge {
    background-color: #b7bfc8;
    color: #eaeaea; }

.btn-ghost {
  color: #5d9eea;
  background-color: transparent;
  border: 2px solid currentColor; }
  .btn-ghost:focus, .btn-ghost:hover {
    background-color: rgba(93, 158, 234, 0.15);
    color: #5d9eea;
    text-decoration: none; }
  .btn-ghost:active, .btn-ghost.active,
  .open > .btn-ghost.dropdown-toggle {
    background-image: none; }
  .btn-ghost.disabled, .btn-ghost.disabled:hover, .btn-ghost.disabled:focus, .btn-ghost.disabled.focus, .btn-ghost.disabled:active, .btn-ghost.disabled.active, .btn-ghost[disabled], .btn-ghost[disabled]:hover, .btn-ghost[disabled]:focus, .btn-ghost[disabled].focus, .btn-ghost[disabled]:active, .btn-ghost[disabled].active,
  fieldset[disabled] .btn-ghost,
  fieldset[disabled] .btn-ghost:hover,
  fieldset[disabled] .btn-ghost:focus,
  fieldset[disabled] .btn-ghost.focus,
  fieldset[disabled] .btn-ghost:active,
  fieldset[disabled] .btn-ghost.active {
    background-color: transparent;
    color: #a9aaaa; }
  .btn-ghost .badge {
    background-color: #5d9eea;
    color: transparent; }

.btn-dropdown {
  color: #425161;
  background-color: #fff;
  border: 1px solid #bbbdbf;
  font-weight: 400;
  text-align: left; }
  .btn-dropdown:focus, .btn-dropdown:hover {
    background-color: #fff;
    color: #425161;
    text-decoration: none; }
  .btn-dropdown:active, .btn-dropdown.active,
  .open > .btn-dropdown.dropdown-toggle {
    background-image: none; }
  .btn-dropdown.disabled, .btn-dropdown.disabled:hover, .btn-dropdown.disabled:focus, .btn-dropdown.disabled.focus, .btn-dropdown.disabled:active, .btn-dropdown.disabled.active, .btn-dropdown[disabled], .btn-dropdown[disabled]:hover, .btn-dropdown[disabled]:focus, .btn-dropdown[disabled].focus, .btn-dropdown[disabled]:active, .btn-dropdown[disabled].active,
  fieldset[disabled] .btn-dropdown,
  fieldset[disabled] .btn-dropdown:hover,
  fieldset[disabled] .btn-dropdown:focus,
  fieldset[disabled] .btn-dropdown.focus,
  fieldset[disabled] .btn-dropdown:active,
  fieldset[disabled] .btn-dropdown.active {
    background-color: #f3f3f3;
    color: #a9aaaa; }
  .btn-dropdown .badge {
    background-color: #425161;
    color: #fff; }
  .btn-dropdown:focus, .btn-dropdown.focus, .btn-dropdown:active:focus, .btn-dropdown:active.focus, .btn-dropdown.active:focus, .btn-dropdown.active.focus {
    border: 1px solid #5d9cec; }
  .btn-dropdown.disabled, .btn-dropdown.disabled:hover, .btn-dropdown.disabled:focus, .btn-dropdown.disabled.focus, .btn-dropdown.disabled:active, .btn-dropdown.disabled.active, .btn-dropdown[disabled], .btn-dropdown[disabled]:hover, .btn-dropdown[disabled]:focus, .btn-dropdown[disabled].focus, .btn-dropdown[disabled]:active, .btn-dropdown[disabled].active,
  fieldset[disabled] .btn-dropdown,
  fieldset[disabled] .btn-dropdown:hover,
  fieldset[disabled] .btn-dropdown:focus,
  fieldset[disabled] .btn-dropdown.focus,
  fieldset[disabled] .btn-dropdown:active,
  fieldset[disabled] .btn-dropdown.active {
    -webkit-box-shadow: none;
            box-shadow: none; }

.btn-dropdown__caret {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -2px;
  margin-left: -4px; }

.btn-search {
  height: 40px;
  padding: 10px 10px;
  font-size: 20px;
  line-height: 20px;
  border-radius: 5px;
  min-width: 0; }

.btn-link {
  border-radius: 0;
  color: #5d9eea;
  font-weight: normal; }
  .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: #1d76de;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled], .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #e6e9ed;
    text-decoration: none; }

.btn-small {
  height: 40px;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 5px;
  min-width: 100px; }

.btn-tiny {
  height: 30px;
  padding: 3px 15px;
  font-size: 12px;
  line-height: 24px;
  border-radius: 5px;
  min-width: 80px; }

.btn-container {
  height: auto;
  padding: 5px 5px;
  font-size: 12px;
  line-height: 12px;
  border-radius: 5px;
  min-width: 0; }

.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%; }

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  .container:before, .container:after {
    display: table;
    content: " "; }
  .container:after {
    clear: both; }
  @media (min-width: 1396px) {
    .container {
      width: 1396px; } }

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  .container-fluid:before, .container-fluid:after {
    display: table;
    content: " "; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-right: -15px;
  margin-left: -15px; }
  .row:before, .row:after {
    display: table;
    content: " "; }
  .row:after {
    clear: both; }

.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 {
  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-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@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-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@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-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1396px) {
  .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-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

.fade {
  opacity: 0;
  -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;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
     transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
     transition-timing-function: ease; }

.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: 165px;
  padding: 3px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 13px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #fff;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  color: #425161; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 0;
    overflow: hidden;
    background-color: #e6e9ed; }
  .dropdown-menu > li > a {
    display: block;
    padding: 10px 26px;
    clear: both;
    font-weight: normal;
    line-height: 15px;
    color: inherit;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: inherit;
  background-color: #f3f5fa; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #5d9eea; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #e6e9ed; }

.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: default; }

.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.42857;
  color: #c1c6ca;
  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 {
    right: 0;
    left: auto; }
  .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 > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .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:before, .btn-toolbar:after {
    display: table;
    content: " "; }
  .btn-toolbar:after {
    clear: both; }
  .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-top-right-radius: 0;
    border-bottom-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-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-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 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, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .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:before, .btn-group-vertical > .btn-group:after {
  display: table;
  content: " "; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.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-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; }

.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-left-radius: 0;
  border-top-right-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn,
  .btn-group-justified > .btn-group {
    display: table-cell;
    float: none;
    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 input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[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-right: 0;
    padding-left: 0; }
  .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0; }
    .input-group .form-control:focus {
      z-index: 3; }

.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: 12px 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #425161;
  text-align: center;
  background-color: #f5f7fa;
  border: 1px solid #bbbdbf;
  border-radius: 5px; }
  .input-group-addon.input-sm,
  .input-group-sm > .input-group-addon,
  .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 5px; }
  .input-group-addon.input-lg,
  .input-group-lg > .input-group-addon,
  .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 19px 19px;
    font-size: 16px;
    border-radius: 5px; }
  .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-top-right-radius: 0;
  border-bottom-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-top-left-radius: 0;
  border-bottom-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 {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .nav:before, .nav:after {
    display: table;
    content: " "; }
  .nav:after {
    clear: both; }
  .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: #f5f7fa; }
    .nav > li.disabled > a {
      color: #c1c6ca; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #c1c6ca;
        text-decoration: none;
        cursor: default;
        background-color: transparent; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #f5f7fa;
    border-color: #5d9eea; }
  .nav .nav-divider {
    height: 1px;
    margin: 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #bbbdbf; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 5px 5px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #f5f7fa #f5f7fa #bbbdbf; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #4a90e2;
      cursor: default;
      background-color: #fff;
      border: 1px solid #4a90e2;
      border-bottom-color: transparent; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 5px; }
  .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: #5d9eea; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      margin-bottom: 5px;
      text-align: center; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 5px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 5px 5px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 18px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    display: table;
    content: " "; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 5px; } }

.navbar-header:before, .navbar-header:after {
  display: table;
  content: " "; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    display: table;
    content: " "; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      -webkit-box-shadow: none;
              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-right: 0;
        padding-left: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  .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; } }
  @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; }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .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-brand {
  float: left;
  height: 50px;
  padding: 16px 15px;
  font-size: 16px;
  line-height: 18px; }
  .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;
  padding: 9px 10px;
  margin-right: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px; }
  .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: 8px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 18px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      -webkit-box-shadow: none;
              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: 18px; }
        .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: 16px;
          padding-bottom: 16px; } }

.navbar-form {
  padding: 10px 15px;
  margin-right: -15px;
  margin-left: -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: 5px;
  margin-bottom: 5px; }
  @media (min-width: 768px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .form-group:last-child {
        margin-right: 0; }
    .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; } }
  @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;
      padding-top: 0;
      padding-bottom: 0;
      margin-right: 0;
      margin-left: 0;
      border: 0;
      -webkit-box-shadow: none;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 5px;
  margin-bottom: 5px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 16px;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-right: 15px;
      margin-left: 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: #777; }
  .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: #555;
    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-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  @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: #555;
      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-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-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, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #eaeced; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #eaeced; }
  .navbar-inverse .navbar-nav > li > a {
    color: #eaeced; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .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-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #090909; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #eaeced; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        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: #fff;
      background-color: #090909; }
    .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-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: #101010; }
  .navbar-inverse .navbar-link {
    color: #eaeced; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #eaeced; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 0;
  margin-bottom: 18px;
  list-style: none;
  background-color: #fff;
  border-radius: 5px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      padding: 0 5px;
      color: #425161;
      content: "/\A0"; }
  .breadcrumb > .active {
    color: #4a90e2; }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 18px 0;
  border-radius: 5px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a,
    .pagination > li > span {
      position: relative;
      float: left;
      padding: 12px 20px;
      margin-left: -1px;
      line-height: 1.42857;
      color: #5d9eea;
      text-decoration: none;
      background-color: #fff;
      border: 1px solid #ddd; }
      .pagination > li > a:hover, .pagination > li > a:focus,
      .pagination > li > span:hover,
      .pagination > li > span:focus {
        z-index: 2;
        color: #1d76de;
        background-color: #f5f7fa;
        border-color: #ddd; }
    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
      margin-left: 0;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px; }
    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #5d9eea;
    border-color: #5d9eea; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #c1c6ca;
    cursor: default;
    background-color: #fff;
    border-color: #ddd; }

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 19px 19px;
  font-size: 16px;
  line-height: 1.33333; }

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px; }

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px; }

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 10px 20px;
  font-size: 12px;
  line-height: 1.5; }

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.pager {
  padding-left: 0;
  margin: 18px 0;
  text-align: center;
  list-style: none; }
  .pager:before, .pager:after {
    display: table;
    content: " "; }
  .pager:after {
    clear: both; }
  .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: #f5f7fa; }
  .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: #c1c6ca;
    cursor: default;
    background-color: #fff; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #c1c6ca; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #a6adb2; }

.label-primary {
  background-color: #5d9eea; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #3083e4; }

.label-success {
  background-color: #12ac67; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #0d7e4b; }

.label-info {
  background-color: #5bc0de; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #31b0d5; }

.label-warning {
  background-color: #ffce54; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ffbf21; }

.label-danger {
  background-color: #e9573f; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #dc3519; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #c1c6ca;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge,
  .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #5d9eea;
    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; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #f5f7fa; }
  .jumbotron h1,
  .jumbotron .h1 {
    color: inherit; }
  .jumbotron p {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 200; }
  .jumbotron > hr {
    border-top-color: #d3dce9; }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 7px; }
  .jumbotron .container {
    max-width: 100%; }
  @media screen and (min-width: 768px) {
    .jumbotron {
      padding-top: 48px;
      padding-bottom: 48px; }
      .container .jumbotron,
      .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px; }
      .jumbotron h1,
      .jumbotron .h1 {
        font-size: 59px; } }

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 18px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  -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 {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto; }
  .thumbnail .caption {
    padding: 9px;
    color: #425161; }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #5d9eea; }

.alert {
  position: relative;
  padding: 5px 35px 5px 32px;
  margin-bottom: 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  min-height: 29px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }
  .alert:before {
    position: absolute;
    top: 5px;
    left: 8px;
    height: 18px;
    width: 18px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-size: 12px;
    text-align: center;
    content: ''; }

.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
  outline: none; }

.alert-success {
  color: #5B987A;
  background-color: #D8E9E2;
  border-color: transparent; }
  .alert-success hr {
    border-top-color: rgba(0, 0, 0, 0); }
  .alert-success .alert-link {
    color: #487860; }
  .alert-success:before {
    content: "\E089"; }

.alert-info {
  color: #fff;
  background-color: #4a90e2;
  border-color: transparent; }
  .alert-info hr {
    border-top-color: rgba(0, 0, 0, 0); }
  .alert-info .alert-link {
    color: #e6e6e6; }
  .alert-info:before {
    content: "\E086"; }

.alert-warning {
  color: #fff;
  background-color: #ffce54;
  border-color: transparent; }
  .alert-warning hr {
    border-top-color: rgba(0, 0, 0, 0); }
  .alert-warning .alert-link {
    color: #e6e6e6; }
  .alert-warning:before {
    content: "\E107"; }

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: transparent; }
  .alert-danger hr {
    border-top-color: rgba(0, 0, 0, 0); }
  .alert-danger .alert-link {
    color: #843534; }
  .alert-danger:before {
    content: "\E101"; }

@-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 {
  height: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 5px;
  -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: 18px;
  color: #fff;
  text-align: center;
  background-color: #5d9eea;
  -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);
  -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: -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;
  animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
  background-color: #12ac67; }
  .progress-striped .progress-bar-success {
    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: -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: #ffce54; }
  .progress-striped .progress-bar-warning {
    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: #e9573f; }
  .progress-striped .progress-bar-danger {
    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 {
  overflow: hidden;
  zoom: 1; }

.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 {
  padding-left: 0;
  margin-bottom: 20px; }

.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-left-radius: 5px;
    border-top-right-radius: 5px; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px; }
  .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    color: #c1c6ca;
    cursor: default;
    background-color: #f5f7fa; }
    .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: #c1c6ca; }
  .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #5d9eea;
    border-color: #5d9eea; }
    .list-group-item.active .list-group-item-heading,
    .list-group-item.active .list-group-item-heading > small,
    .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
    .list-group-item.active:hover .list-group-item-heading > small,
    .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
    .list-group-item.active:focus .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: white; }

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, a.list-group-item:focus,
  button.list-group-item:hover,
  button.list-group-item:focus {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5; }

button.list-group-item {
  width: 100%;
  text-align: left; }

.list-group-item-success {
  color: #5B987A;
  background-color: #D8E9E2; }

a.list-group-item-success,
button.list-group-item-success {
  color: #5B987A; }
  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, a.list-group-item-success:focus,
  button.list-group-item-success:hover,
  button.list-group-item-success:focus {
    color: #5B987A;
    background-color: #c8e0d6; }
  a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
  button.list-group-item-success.active,
  button.list-group-item-success.active:hover,
  button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #5B987A;
    border-color: #5B987A; }

.list-group-item-info {
  color: #fff;
  background-color: #4a90e2; }

a.list-group-item-info,
button.list-group-item-info {
  color: #fff; }
  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, a.list-group-item-info:focus,
  button.list-group-item-info:hover,
  button.list-group-item-info:focus {
    color: #fff;
    background-color: #3483de; }
  a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
  button.list-group-item-info.active,
  button.list-group-item-info.active:hover,
  button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #fff;
    border-color: #fff; }

.list-group-item-warning {
  color: #fff;
  background-color: #ffce54; }

a.list-group-item-warning,
button.list-group-item-warning {
  color: #fff; }
  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, a.list-group-item-warning:focus,
  button.list-group-item-warning:hover,
  button.list-group-item-warning:focus {
    color: #fff;
    background-color: #ffc73b; }
  a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
  button.list-group-item-warning.active,
  button.list-group-item-warning.active:hover,
  button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #fff;
    border-color: #fff; }

.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, a.list-group-item-danger:focus,
  button.list-group-item-danger:hover,
  button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
  a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
  button.list-group-item-danger.active,
  button.list-group-item-danger.active:hover,
  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: 18px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  -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-body:before, .panel-body:after {
    display: table;
    content: " "; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  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: 4px;
  border-bottom-left-radius: 4px; }

.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-left-radius: 4px;
    border-top-right-radius: 4px; }
  .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: 4px;
    border-bottom-left-radius: 4px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-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-right: 15px;
    padding-left: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }
  .panel > .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 > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .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 th:first-child,
    .panel > .table-responsive:first-child > .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 th:first-child {
      border-top-left-radius: 4px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .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 th:last-child,
    .panel > .table-responsive:first-child > .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 th:last-child {
      border-top-right-radius: 4px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }
  .panel > .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 > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .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 th:first-child,
    .panel > .table-responsive:last-child > .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 th:first-child {
      border-bottom-left-radius: 4px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .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 th:last-child,
    .panel > .table-responsive:last-child > .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 th:last-child {
      border-bottom-right-radius: 4px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #fff; }

.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-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0; }

.panel-group {
  margin-bottom: 18px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 5px; }
    .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: #bbbdbf;
    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: #bbbdbf; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #5d9eea; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #5d9eea;
    border-color: #5d9eea; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #5d9eea; }
    .panel-primary > .panel-heading .badge {
      color: #5d9eea;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #5d9eea; }

.panel-success {
  border-color: transparent; }
  .panel-success > .panel-heading {
    color: #5B987A;
    background-color: #D8E9E2;
    border-color: transparent; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: transparent; }
    .panel-success > .panel-heading .badge {
      color: #D8E9E2;
      background-color: #5B987A; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent; }

.panel-info {
  border-color: transparent; }
  .panel-info > .panel-heading {
    color: #fff;
    background-color: #4a90e2;
    border-color: transparent; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: transparent; }
    .panel-info > .panel-heading .badge {
      color: #4a90e2;
      background-color: #fff; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent; }

.panel-warning {
  border-color: transparent; }
  .panel-warning > .panel-heading {
    color: #fff;
    background-color: #ffce54;
    border-color: transparent; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: transparent; }
    .panel-warning > .panel-heading .badge {
      color: #ffce54;
      background-color: #fff; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent; }

.panel-danger {
  border-color: transparent; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: transparent; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: transparent; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: transparent; }

.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;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 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: 5px;
  -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: 7px; }

.well-sm {
  padding: 9px;
  border-radius: 3px; }

.close {
  float: right;
  font-size: 19.5px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2; }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5; }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 11px;
  font-weight: 600;
  filter: alpha(opacity=0);
  opacity: 0; }
  .tooltip.in {
    filter: alpha(opacity=100);
    opacity: 1; }
  .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: 2px 15px;
  color: #fff;
  text-align: center;
  background-color: #425161;
  border-radius: 5px; }

.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: #425161; }

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #425161; }

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #425161; }

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #425161; }

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #425161; }

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #425161; }

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #425161; }

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #425161; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 13px;
  background-color: #282828;
  background-clip: padding-box;
  border: 1px solid #282828;
  border: 1px solid #282828;
  border-radius: 7px;
  -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 > .arrow {
    border-width: 11px; }
    .popover > .arrow, .popover > .arrow:after {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-color: transparent;
      border-style: solid; }
    .popover > .arrow:after {
      content: "";
      border-width: 10px; }
  .popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: black;
    border-top-color: #282828;
    border-bottom-width: 0; }
    .popover.top > .arrow:after {
      bottom: 1px;
      margin-left: -10px;
      content: " ";
      border-top-color: #282828;
      border-bottom-width: 0; }
  .popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: black;
    border-right-color: #282828;
    border-left-width: 0; }
    .popover.right > .arrow:after {
      bottom: -10px;
      left: 1px;
      content: " ";
      border-right-color: #282828;
      border-left-width: 0; }
  .popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: black;
    border-bottom-color: #282828; }
    .popover.bottom > .arrow:after {
      top: 1px;
      margin-left: -10px;
      content: " ";
      border-top-width: 0;
      border-bottom-color: #282828; }
  .popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: black;
    border-left-color: #282828; }
    .popover.left > .arrow:after {
      right: 1px;
      bottom: -10px;
      content: " ";
      border-right-width: 0;
      border-left-color: #282828; }

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 13px;
  background-color: #282828;
  border-bottom: 1px solid #1b1b1b;
  border-radius: 6px 6px 0 0; }

.popover-content {
  padding: 9px 14px; }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner > .item {
    position: relative;
    display: none;
    -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 {
      display: block;
      max-width: 100%;
      height: auto;
      line-height: 1; }
    @media all and (transform-3d), (-webkit-transform-3d) {
      .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: -o-transform 0.6s ease-in-out;
        transition: -webkit-transform 0.6s ease-in-out;
        -o-transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-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;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5; }
  .carousel-control.left {
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x; }
  .carousel-control.right {
    right: 0;
    left: auto;
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x; }
  .carousel-control:hover, .carousel-control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    filter: alpha(opacity=90);
    opacity: 0.9; }
  .carousel-control .icon-prev,
  .carousel-control .icon-next,
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px; }
  .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;
    font-family: serif;
    line-height: 1; }
  .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%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none; }
  .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px; }
  .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  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: -10px;
    font-size: 30px; }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px; }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px; }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px; }
  .carousel-indicators {
    bottom: 20px; } }

.clearfix:before, .clearfix:after {
  display: table;
  content: " "; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-right: auto;
  margin-left: 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 {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.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: 1395px) {
  .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: 1395px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1395px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1395px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1396px) {
  .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: 1396px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1396px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1396px) {
  .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: 1395px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1396px) {
  .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; } }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.ui-select-container {
  position: relative; }
  .ui-select-container[disabled]:after {
    content: normal; }

.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important; }

.select2-container-disabled {
  color: #a9aaaa; }

.select2-choice {
  display: block;
  width: 100%;
  height: 40px;
  padding: 12px 20px;
  font-size: 13px;
  line-height: 1.42857;
  color: #425161;
  background-color: #fff;
  background-image: none;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  position: relative;
  height: 50px; }
  .select2-choice:hover {
    text-decoration: none;
    color: inherit; }
  .select2-choice.focus {
    border-color: #5d9cec; }
  .select2-choice:after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 50%;
    width: 0;
    height: 0;
    margin-left: 2px;
    margin-bottom: -4px;
    vertical-align: middle;
    border: 4px solid transparent;
    border-top: 4px dashed currentColor; }
  .select2-container-disabled .select2-choice {
    background-color: #f3f3f3;
    color: #a9aaaa;
    cursor: default; }
  .open .select2-choice:after {
    margin-bottom: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px dashed currentColor; }

.select2-search {
  padding: 10px;
  background-color: #fafafa;
  border-bottom: 1px solid #f0f0f0; }

.ui-select-search {
  display: block;
  width: 100%;
  padding: 2px;
  border: 1px solid #e0e0e0;
  border-radius: 3px; }
  .ui-select-search:focus {
    outline: none; }

.ui-select-match {
  overflow: hidden;
  line-height: 26px;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap; }

.select2-default:hover,
.select2-default {
  color: #a9aaaa; }

.select2-display-none {
  display: none; }

.select2-search-choice-close {
  position: absolute;
  top: 2px;
  left: 2px;
  padding: 3px;
  font-size: 9px;
  line-height: 1em;
  font-family: 'Glyphicons Halflings';
  color: #fff;
  background-color: #5d9eea;
  border-radius: 50%; }
  .select2-search-choice-close:hover {
    background-color: #4a90e2; }

.ui-select-dropdown {
  overflow-x: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: auto;
  min-width: 100%;
  height: auto;
  max-height: 200px;
  margin-top: -1px;
  background: #fff;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2); }

.select2-result-single,
.select2-results {
  list-style: none;
  margin: 0;
  padding: 0; }

.ui-select-choices-row {
  display: block;
  padding: 5px 20px;
  color: #425161;
  clear: both;
  white-space: nowrap;
  cursor: pointer; }
  .ui-select-choices-row:hover {
    background-color: #f5f5f5; }
  .ui-select-choices-row.select2-disabled {
    background-color: #f3f3f3;
    color: #a9aaaa;
    cursor: default;
    color: #a9aaaa;
    cursor: default; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 300; }
  h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary,
  .h1.secondary, .h2.secondary, .h3.secondary, .h4.secondary, .h5.secondary, .h6.secondary {
    color: #bbbdbf; }

.text-lead {
  font-size: 16px;
  line-height: 23px; }

.text-underlined {
  text-decoration: underline; }

small,
.text-small {
  font-size: 12px;
  line-height: 17px; }

.link-small {
  font-size: 12px; }

.link-muted {
  color: #e6e9ed;
  font-size: 12px;
  text-decoration: underline; }
  .link-muted:hover {
    color: #e6e9ed; }

.link--neutral {
  color: inherit; }

a {
  cursor: pointer; }

.text-capitalized {
  text-transform: capitalize; }

.link-with-icon--left, .link-with-icon--right {
  display: inline-block;
  line-height: 1;
  font-weight: 300; }
  .link-with-icon--left::after, .link-with-icon--right::after {
    clear: both;
    content: "";
    display: table; }
  .link-with-icon--left .icon, .link-with-icon--right .icon {
    vertical-align: bottom; }

.link-with-icon--left .icon {
  float: left;
  margin-right: 5px; }

.link-with-icon--right .icon {
  float: right;
  margin-left: 5px; }

.adm-account-table {
  width: 100%;
  max-width: 100%; }

.adm-account-table__header {
  background-color: #fff;
  color: #a9aaaa; }

.adm-account-table__header-cell {
  height: 75px;
  padding: 5px 13px;
  font-weight: 400;
  vertical-align: middle; }

.adm-account-row {
  font-weight: 600; }

.adm-account-row--default {
  background-color: #f5f7fa; }

.adm-account-row--active {
  background-color: #b2e5ca; }

.adm-account-row--pending {
  background-color: #c2d7f3; }

.adm-account-row--closed {
  background-color: #d7dce1; }

.adm-account-row__cell--due {
  color: #e9573f; }

.adm-account-row__cell {
  height: 90px;
  padding: 13px;
  vertical-align: middle;
  word-break: break-all; }

.adm-account-row__cell--nobreak {
  word-break: normal; }

.adm-account-row__link {
  display: block; }

.dropdown {
  position: relative; }

.tst-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1001;
  visibility: hidden;
  text-align: left;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 4px #aab2bd;
          box-shadow: 0 0 4px #aab2bd; }
  .open .tst-dropdown {
    visibility: visible; }

.tst-dropdown__list {
  overflow: auto;
  list-style: none;
  min-width: 100%;
  margin: 0;
  padding: 0;
  max-height: 254.6px;
  font-size: 1rem; }

.tst-dropdown__option {
  padding: 0;
  line-height: 38px; }
  .tst-dropdown__option:first-child {
    padding-top: 5px;
    border-radius: 5px 5px 0 0; }
  .tst-dropdown__option:last-child {
    border-radius: 0 0 5px 5px; }
  .tst-dropdown__option:last-child:first-child {
    border-radius: 5px; }
  .tst-dropdown__option:hover {
    background-color: #f5f7fa; }
  .tst-dropdown__option:not([disabled]) {
    cursor: pointer; }

.payments-data__data-row {
  position: relative; }
  .payments-data__data-row:nth-child(odd) {
    background-color: #e8f2f3; }
  .payments-data__data-row:hover .payments-data__more {
    visibility: visible; }

.payments-data__dropdown .tst-dropdown {
  right: 10px;
  left: auto; }

.payments-data__dropdown {
  cursor: pointer; }
  .payments-data__dropdown .payments-data__dropdown-option {
    padding: 12px; }

@media (min-width: 1444px) {
  .payments-data__button {
    margin-left: 10px; } }

.payments-data__danger {
  color: #e9573f; }

.payments-data__action {
  color: #e9573f;
  font-weight: 700; }

.payments-data__more {
  padding: 18px 5px;
  visibility: hidden; }

.payments-data__dots {
  width: 4px;
  height: 4px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #425161;
  -webkit-box-shadow: 0 -7px 0 #425161, 0 7px 0 #425161;
          box-shadow: 0 -7px 0 #425161, 0 7px 0 #425161; }
  @media (min-width: 1444px) {
    .payments-data__dots {
      width: 6px;
      height: 6px;
      -webkit-box-shadow: 0 -10px 0 #425161, 0 10px 0 #425161;
              box-shadow: 0 -10px 0 #425161, 0 10px 0 #425161; } }

.payments-missing-info {
  font-size: 17px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Buttons
section: Components
---

<h5>Button tags</h5>

The .btn classes are designed to be used with the `<button>` element. However, you can also use these
classes on `<a>` or `<input>` elements (though some browsers may apply a slightly different rendering).

```example:html
<a class="button button--primary" href="#" role="button">Link</a>
<button class="button button--primary" type="submit">Button</button>
<input class="button button--primary" type="button" value="Input">
<input class="button button--primary" type="submit" value="Submit">​
```
*/
.button {
  height: 50px;
  padding: 15px 20px;
  font-size: 0.875rem;
  line-height: 20px;
  display: inline-block;
  min-width: 120px;
  border: 0;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .button:focus {
    outline: 0; }
  .button:focus, .button:hover {
    text-decoration: none; }
  .button.disabled, .button.disabled:hover, .button.disabled:focus, .button.disabled.focus, .button.disabled:active, .button.disabled.active, .button[disabled], .button[disabled]:hover, .button[disabled]:focus, .button[disabled].focus, .button[disabled]:active, .button[disabled].active,
  fieldset[disabled] .button,
  fieldset[disabled] .button:hover,
  fieldset[disabled] .button:focus,
  fieldset[disabled] .button.focus,
  fieldset[disabled] .button:active,
  fieldset[disabled] .button.active {
    cursor: default; }

/*---
<h5>Button variants</h5>

```example:html
<p>
<button class="button button--primary" type="button">Primary</button>
<button class="button button--alt" type="button">Alternate</button>
<button class="button button--secondary" type="button">Secondary</button>
<button class="button button--border" type="button">Border</button>
</p>
```

<h5>Disabled state</h5>

```example:html
<p>
<button class="button button--primary" type="button" disabled="disabled">Primary</button>
<button class="button button--alt" type="button" disabled="disabled">Alternate</button>
<button class="button button--secondary" type="button" disabled="disabled">Secondary</button>
<button class="button button--border" type="button" disabled="disabled">Border</button>
</p>
```
*/
.button--primary {
  background-color: #07a853;
  color: #fff; }
  .button--primary:hover {
    background-color: #058b44; }
  .button--primary:active {
    background-color: #07a853; }
  .button--primary.disabled, .button--primary.disabled:hover, .button--primary.disabled:focus, .button--primary.disabled.focus, .button--primary.disabled:active, .button--primary.disabled.active, .button--primary[disabled], .button--primary[disabled]:hover, .button--primary[disabled]:focus, .button--primary[disabled].focus, .button--primary[disabled]:active, .button--primary[disabled].active,
  fieldset[disabled] .button--primary,
  fieldset[disabled] .button--primary:hover,
  fieldset[disabled] .button--primary:focus,
  fieldset[disabled] .button--primary.focus,
  fieldset[disabled] .button--primary:active,
  fieldset[disabled] .button--primary.active {
    background-color: #b3d7c4; }

.button--alt {
  background-color: #f5f7fa;
  color: #27323d; }
  .button--alt:hover {
    background-color: #e6e9ed; }
  .button--alt.disabled, .button--alt.disabled:hover, .button--alt.disabled:focus, .button--alt.disabled.focus, .button--alt.disabled:active, .button--alt.disabled.active, .button--alt[disabled], .button--alt[disabled]:hover, .button--alt[disabled]:focus, .button--alt[disabled].focus, .button--alt[disabled]:active, .button--alt[disabled].active,
  fieldset[disabled] .button--alt,
  fieldset[disabled] .button--alt:hover,
  fieldset[disabled] .button--alt:focus,
  fieldset[disabled] .button--alt.focus,
  fieldset[disabled] .button--alt:active,
  fieldset[disabled] .button--alt.active {
    background-color: #f5f7fa;
    color: #bbbdbf; }

.button--secondary {
  background-color: #117EC0;
  color: #fff; }
  .button--secondary:hover {
    background-color: #306bb9; }
  .button--secondary:active {
    background-color: #117EC0; }
  .button--secondary.disabled, .button--secondary.disabled:hover, .button--secondary.disabled:focus, .button--secondary.disabled.focus, .button--secondary.disabled:active, .button--secondary.disabled.active, .button--secondary[disabled], .button--secondary[disabled]:hover, .button--secondary[disabled]:focus, .button--secondary[disabled].focus, .button--secondary[disabled]:active, .button--secondary[disabled].active,
  fieldset[disabled] .button--secondary,
  fieldset[disabled] .button--secondary:hover,
  fieldset[disabled] .button--secondary:focus,
  fieldset[disabled] .button--secondary.focus,
  fieldset[disabled] .button--secondary:active,
  fieldset[disabled] .button--secondary.active {
    background-color: #dae7f8; }

.button--border {
  background-color: #fff;
  color: #313f4d;
  border: 1px solid #bbbdbf; }
  .button--border:hover {
    background-color: #f5f7fa; }
  .button--border:active {
    border: 1px solid #117EC0;
    background-color: #f5f7fa; }
  .button--border.disabled, .button--border.disabled:hover, .button--border.disabled:focus, .button--border.disabled.focus, .button--border.disabled:active, .button--border.disabled.active, .button--border[disabled], .button--border[disabled]:hover, .button--border[disabled]:focus, .button--border[disabled].focus, .button--border[disabled]:active, .button--border[disabled].active,
  fieldset[disabled] .button--border,
  fieldset[disabled] .button--border:hover,
  fieldset[disabled] .button--border:focus,
  fieldset[disabled] .button--border.focus,
  fieldset[disabled] .button--border:active,
  fieldset[disabled] .button--border.active {
    border-color: #e3e6eb;
    background-color: #fff;
    color: #bbbdbf; }

.button--border-primary {
  border-color: #07a853;
  color: #07a853; }

.button--danger {
  background-color: #e9573f;
  color: #fff; }
  .button--danger:hover {
    background-color: #dc3519; }
  .button--danger:active {
    background-color: #e9573f; }
  .button--danger.disabled, .button--danger.disabled:hover, .button--danger.disabled:focus, .button--danger.disabled.focus, .button--danger.disabled:active, .button--danger.disabled.active, .button--danger[disabled], .button--danger[disabled]:hover, .button--danger[disabled]:focus, .button--danger[disabled].focus, .button--danger[disabled]:active, .button--danger[disabled].active,
  fieldset[disabled] .button--danger,
  fieldset[disabled] .button--danger:hover,
  fieldset[disabled] .button--danger:focus,
  fieldset[disabled] .button--danger.focus,
  fieldset[disabled] .button--danger:active,
  fieldset[disabled] .button--danger.active {
    background-color: #c47b67; }

/*---
<h5>Button sizes</h5>

Add `.button--small` or `.button--tiny` for additional sizes.

```example:html
<button class="button button--primary button--small" type="button">Small button</button>
<button class="button button--alt button--small" type="button">Small button</button>
```

```example:html
<button class="button button--primary button--tiny" type="button">Tiny button</button>
<button class="button button--alt button--tiny" type="button">Tiny button</button>
```

<p>Create block level buttons—those that span the full width of a parent—by adding .btn-block</p>
```example:html
<button class="button button--primary button--block" type="button">Block button</button>
<button class="button button--alt button--block" type="button">Block button</button>
```
*/
.button--small {
  height: 40px;
  padding: 10px 20px;
  font-size: 0.875rem;
  line-height: 20px;
  min-width: 100px; }

.button--tiny {
  height: 30px;
  padding: 7px 20px;
  font-size: 0.625rem;
  line-height: 16px;
  min-width: 80px; }

.button--block {
  display: block;
  width: 100%;
  min-width: 0; }

.icon-asterisk {
  font-style: normal;
  line-height: 1em;
  cursor: default; }

.icon-asterisk:before {
  content: '*'; }

.icon-add {
  padding: 0.2em;
  border: 1px solid currentColor;
  border-radius: 50%; }

.icon-minus {
  padding: 0.2em;
  border: 1px solid currentColor;
  border-radius: 50%; }

.nav-tabs > li > a {
  border: 0;
  color: #27323d;
  font-weight: 600; }
  .nav-tabs > li > a:focus, .nav-tabs > li > a:hover {
    background-color: #fff;
    color: #4a90e2; }

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  border: 0;
  border-bottom: 4px solid #4a90e2; }

.toggle {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-block;
  border: 1px solid #bbbdbf;
  border-radius: 2px;
  color: #bbbdbf; }
  .toggle:focus, .toggle:hover {
    color: #bbbdbf; }
  .toggle .caret {
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -2px;
    margin-right: -4px; }

.user-profile-items-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0; }

.user-profile-items-list__item {
  line-height: 13px;
  margin-bottom: 1px; }
  .user-profile-items-list__item:last-child {
    margin-bottom: 5px; }

.user-profile-items-list__item__check-icon {
  margin-right: 5px;
  line-height: 13px;
  font-size: 11px;
  color: #aaaaaa; }

.note {
  position: relative;
  min-height: 135px;
  padding: 22px;
  background: #fff;
  font-size: 15px;
  font-weight: 400; }
  .note .note__content {
    width: 83%; }
  .note .note__actions {
    width: 17%; }

.note--edit-page {
  display: block;
  margin-bottom: 20px;
  border: 1px solid #d7dce1; }

.note__actions {
  float: right; }

.note__input {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  color: #939598;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: auto;
  resize: none; }

.note__buttons {
  text-align: right; }

.note__button {
  min-width: 100px;
  margin-top: 8px; }

.edit-icons {
  color: #d7dce1;
  font-size: 12px; }

.edit-icons__icon + .edit-icons__icon {
  margin-left: 8px; }

.edit-icons__icon:hover {
  cursor: pointer; }

.transaction-error-modal {
  width: 352px;
  max-width: 100%;
  padding: 0 33px;
  font-weight: 300; }

.transaction-error-modal__header {
  margin: 0 0 20px 0;
  font-size: 23px;
  font-weight: 300; }

.transaction-error-modal__error-code {
  color: #ed6d50;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 30px; }

.transaction-error-modal__error-message {
  font-size: 17px;
  margin-bottom: 30px; }

.transaction-error-modal__button-container {
  margin-bottom: 45px; }

.make-payment {
  width: 750px;
  padding: 0 40px 30px;
  font-weight: 300; }

.make-payment__header {
  margin: 0 0 30px 0; }

.make-payment__header--secondary {
  font-size: 23px;
  margin-bottom: 23px; }

.make-payment__row {
  font-size: 17px;
  padding-bottom: 10px; }

.make-payment__form-label {
  display: inline; }

.make-payment__form-label {
  font-weight: 300;
  font-size: 17px; }

.make-payment__details {
  margin: 0 0 30px 0; }

.make-payment__error-message {
  font-size: 12px;
  color: #a94442; }

.make-payment__inline-input-container {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  position: relative; }
  .make-payment__inline-input-container .form-group__footer {
    position: absolute;
    width: 400px;
    top: 35px; }

.make-payment__inline-input {
  display: inline-block;
  width: 128px; }

.make-payment__inline-button {
  height: 30px;
  padding: 0;
  min-width: 60px;
  font-size: 8px; }

.make-payment__payment-options-tabs {
  margin: 10px 0; }
  .make-payment__payment-options-tabs .discounts__tab {
    color: #425161 !important; }
  .make-payment__payment-options-tabs .discounts__tab--active {
    color: #fff !important; }

.payment-container .sfc-main-container.horizontal .pm-details,
.payment-container .sfc-main-container.tiles .pm-details {
  min-height: unset !important; }

.payment-container .sfc-main-container.horizontal, .payment-container .sfc-main-container.tiles {
  min-height: 200px !important; }

.payment-container .removeCC_PP .sfc-main-container ul.sc-pms-list .form-li-style:last-child .line-container {
  display: none !important; }

.payment-container .removeCC_PP .sfc-main-container ul.sc-pms-list .form-li-style:nth-last-child(2) .line-container {
  display: none !important; }

.payment-container .removeOnlyPP .sfc-main-container ul.sc-pms-list .form-li-style:last-child .line-container {
  display: none !important; }

.payment-container .sfc-main-container ul.sc-pms-list .form-li-style .line-container {
  border-width: 1px 1px 1px 1px !important; }

.payment-container .billing-info-admin {
  margin-bottom: 10px;
  width: 100%;
  max-height: 100%; }
  .payment-container .billing-info-admin .billing-info-title-admin {
    color: #4a5568;
    font-size: 18px;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif; }
  .payment-container .billing-info-admin .billing-info-content-admin {
    padding: 5px;
    overflow: visible; }

.payment-container .billing-info-row-admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 17px; }
  .payment-container .billing-info-row-admin input {
    border: 1px solid #95aac1;
    height: 36px;
    padding: 8px 13px;
    margin-top: 3px;
    font-weight: normal; }
  .payment-container .billing-info-row-admin .accordion-content.active {
    display: block; }
  .payment-container .billing-info-row-admin .error-input-form {
    border: 1px solid #ff3f5a; }
  .payment-container .billing-info-row-admin .valid-input-form {
    border: 1px solid #43984D; }
  .payment-container .billing-info-row-admin .no-border-dropdown-error {
    border: none !important; }
  .payment-container .billing-info-row-admin select {
    width: 100%;
    background-color: #2a292f;
    border: 1px solid #95aac1;
    height: 36px;
    padding: 7px 13px;
    margin-top: 3px;
    font-weight: normal; }
    .payment-container .billing-info-row-admin select option {
      word-wrap: break-word;
      white-space: pre-wrap;
      width: 150px; }
  .payment-container .billing-info-row-admin select:focus-visible {
    outline: unset !important; }

.payment-container .billing-info-error-admin {
  min-height: unset !important;
  margin-bottom: 0px !important; }

.payment-container .country-container-admin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }
  .payment-container .country-container-admin .field-values-admin {
    width: 33%;
    margin-right: 5px;
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .payment-container .country-container-admin .field-values-admin input {
      border: 1px solid #95aac1;
      height: 36px;
      padding: 8px 13px;
      margin-top: 3px;
      font-weight: normal; }
  .payment-container .country-container-admin .field-values-admin.special {
    width: 40%; }
  .payment-container .country-container-admin adm-select {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 3px;
    border: 1px solid #95aac1; }
  .payment-container .country-container-admin .adm-select:not(.disabled):not(.open) {
    font-weight: normal;
    cursor: pointer;
    width: 100%;
    text-align: left;
    height: 34px;
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 16px; }
  .payment-container .country-container-admin .adm-select-dropdown {
    position: absolute;
    border-radius: 0;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    z-index: 1000; }
  .payment-container .country-container-admin .adm-dropdown__list {
    position: relative;
    top: 100%;
    left: 0;
    z-index: 1000;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    max-height: 30vh;
    overflow-y: scroll; }

.payment-container .form-control__input {
  font-size: 16px;
  line-height: 20px;
  height: 35px;
  border-radius: 3px;
  height: 36px;
  padding: 5px 12px;
  font-weight: normal;
  color: #f0f0f0; }

.data-table-container {
  overflow-x: auto;
  overflow-y: visible;
  height: auto;
  min-height: 50px;
  max-width: 100%; }

.data-table-container--loading {
  position: relative; }
  .data-table-container--loading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(4em, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.4)));
    background: -o-linear-gradient(rgba(255, 255, 255, 0.9) 4em, rgba(255, 255, 255, 0.4));
    background: linear-gradient(rgba(255, 255, 255, 0.9) 4em, rgba(255, 255, 255, 0.4)); }
  .data-table-container--loading .data-table-container__spinner {
    display: block; }

.data-table-container__spinner {
  display: none;
  position: absolute;
  left: 1em;
  top: 1em; }

.data-table {
  width: 100%;
  margin: 20px 0;
  line-height: 1.5;
  text-align: center;
  border-collapse: separate;
  border-spacing: 0 2px; }
  .data-table th {
    padding: 0 10px 15px;
    color: #9b9b9b;
    font-size: 15px;
    font-weight: 300;
    text-align: inherit;
    white-space: nowrap;
    vertical-align: bottom; }
  .data-table td {
    height: 45px;
    padding: 0 10px;
    white-space: nowrap; }

.data-table--bigger td {
  height: 65px; }

.data-table--text-left {
  text-align: left; }

.data-table__row:nth-child(n):hover {
  background-color: #fff; }

.data-table__row:nth-child(odd) {
  background-color: #e8f2f3; }

.data-table__row:nth-child(even) {
  background-color: #d9ebe4; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.upload-report {
  max-width: 600px; }

.upload-report__text-section {
  line-height: 45px; }

.upload-report__filename {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300; }

.create-person {
  width: 750px;
  padding: 0 40px 30px;
  font-weight: 300; }

.create-person__header {
  margin: 0 0 30px 0; }

.create-person__header--secondary {
  font-size: 23px;
  margin-bottom: 23px; }

.create-person__row {
  font-size: 17px;
  padding-bottom: 10px; }

.create-person__notes {
  padding-top: 30px; }

.create-person__form-label {
  display: inline; }

.create-person__form-label {
  font-weight: 300;
  font-size: 17px; }

.create-person__details {
  margin: 0 0 30px 0; }

.create-person__error-message {
  font-size: 12px;
  color: #a94442; }

.create-person__inline-input-container {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  position: relative; }
  .create-person__inline-input-container .form-group__footer {
    position: absolute;
    width: 400px;
    top: 35px; }

.create-person__inline-input {
  display: inline-block;
  width: 128px; }

.create-person__inline-button {
  height: 30px;
  padding: 0;
  min-width: 60px;
  font-size: 8px; }

.create-campaign {
  width: 750px;
  padding: 0 40px 30px;
  font-weight: 300; }

.create-campaign__header {
  margin: 0 0 30px 0; }

.create-campaign__header--secondary {
  font-size: 23px;
  margin-bottom: 23px; }

.create-campaign__row {
  font-size: 17px;
  padding-bottom: 10px; }

.create-campaign__notes {
  padding-top: 30px; }

.create-campaign__form-label {
  display: inline; }

.create-campaign__form-label {
  font-weight: 300;
  font-size: 17px; }

.create-campaign__details {
  margin: 0 0 30px 0; }

.create-campaign__error-message {
  font-size: 12px;
  color: #a94442; }

.create-campaign__inline-input-container {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  position: relative; }
  .create-campaign__inline-input-container .form-group__footer {
    position: absolute;
    width: 400px;
    top: 35px; }

.create-campaign__inline-input {
  display: inline-block;
  width: 128px; }

.create-campaign__inline-button {
  height: 30px;
  padding: 0;
  min-width: 60px;
  font-size: 8px; }

.attach-users {
  width: 750px;
  padding: 0 40px 30px;
  font-weight: 300; }

.attach-users__header {
  margin: 0 0 30px 0; }

.attach-users__header--secondary {
  font-size: 23px;
  margin-bottom: 23px; }

.attach-users__row {
  font-size: 17px;
  padding-bottom: 10px; }

.attach-users__form-label {
  display: inline; }

.attach-users__form-label {
  font-weight: 300;
  font-size: 17px; }

.attach-users__details {
  margin: 0 0 30px 0; }

.attach-users__error-message {
  font-size: 12px;
  color: #a94442; }

.attach-users__inline-input-container {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  position: relative; }
  .attach-users__inline-input-container .form-group__footer {
    position: absolute;
    width: 400px;
    top: 35px; }

.attach-users__inline-input {
  display: inline-block;
  width: 128px; }

.attach-users__inline-button {
  height: 30px;
  padding: 0;
  min-width: 60px;
  font-size: 8px; }

.attach-users__item-list {
  max-height: 145px;
  overflow-y: auto;
  overflow-x: hidden; }
  .attach-users__item-list .attach-users__item-list--remove-btn {
    background-color: #fff; }

.attach-users__modal-footer {
  margin-bottom: 30px; }

.person-payment {
  width: 750px;
  padding: 0 40px 30px;
  font-weight: 300; }

.person-payment__options {
  list-style: none; }

.person-payment__modal-footer {
  margin-bottom: 30px; }

.person-payment__option__card-selection {
  margin-bottom: 15px;
  margin-top: 5px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.form-row {
  margin-bottom: 10px; }

.adm-page-header {
  display: inline-block;
  vertical-align: middle;
  min-width: 100%;
  min-height: 90px;
  background-color: black; }

.adm-page-header__content {
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative; }

.adm-page-header__input--has-error {
  background-color: #c77270;
  color: #fff; }

.adm-page-header-navigation {
  line-height: 40px; }

.adm-page-header__right-col {
  position: absolute;
  right: 20px;
  top: 20px; }

.adm-page-header-navigation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

@media (max-width: 992px) {
  .adm-page-header__center-col {
    padding-top: 20px; } }

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

.column-relative {
  position: relative; }

.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  color: #797979; }

.admin-page--auth-form {
  width: 400px;
  padding-top: 50px;
  max-width: 100%;
  margin: 0 auto; }

.admin-page-header {
  margin-bottom: 40px; }

.admin-page-header__title {
  margin: 0; }

.admin-page-header__label {
  margin: 0;
  font-weight: normal; }

.admin-page-header__btn {
  min-width: 200px; }

.admin-page__section {
  margin-bottom: 30px; }

.admin-page-footer {
  text-align: right; }

.admin-page-footer__section {
  display: inline-block;
  vertical-align: middle; }

.admin-page-missing-info {
  margin-bottom: 30px;
  font-size: 17px; }

.adm-user-sidebar {
  padding: 15px 15px 15px 0;
  text-align: center; }

.adm-user-sidebar__go-back {
  margin: 0 0 15px;
  color: #a9b1bc;
  text-align: center;
  white-space: nowrap; }
  .adm-user-sidebar__go-back:link, .adm-user-sidebar__go-back:hover {
    color: #8c97a6; }

.adm-user-content {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  padding: 50px 0 50px 25px;
  background: #f8f8f9; }
  @media (min-width: 1396px) {
    .adm-user-content {
      padding-left: 50px; } }

.adm-user-section-header {
  margin: 0 0 45px; }

.user-details-wrapper {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50%, #f8f8f9));
  background: -o-linear-gradient(left, #fff 50%, #f8f8f9 50%);
  background: linear-gradient(90deg, #fff 50%, #f8f8f9 50%); }

.adm-add-edit-account-section {
  position: relative;
  margin-bottom: 20px; }
  .adm-add-edit-account-section:nth-child(1), .adm-add-edit-account-section:nth-child(2) {
    padding-right: 30px; }
  .adm-add-edit-account-section:nth-child(2), .adm-add-edit-account-section:nth-child(3) {
    padding-left: 30px; }

.adm-add-edit-account-section__header {
  display: inline-block;
  margin: 0 0 30px;
  font-size: 23px;
  font-weight: 300; }

.input-link {
  position: absolute;
  top: 18px;
  right: 30px;
  font-size: 11px;
  font-weight: 300; }

.adm-add-edit-account__spinner {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px; }

.adm-management-content {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  padding: 50px 90px;
  background: #f8f8f9; }

.adm-authentication__content {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  padding: 50px;
  background: #f8f8f9; }

.adm-authentication__buttons-container {
  padding-top: 20px; }

.admin-user-form__title {
  margin-bottom: 70px; }

.admin-user-form__btn--default {
  margin-right: 10px; }

body .ui-widget-content {
  background-color: #fff;
  border: 1px solid #c7c7c7; }

body .ui-widget-header {
  background: #fff;
  color: #2d353c;
  border: 1px solid #cdcdcd; }

body .ui-state-active,
body .ui-state-highlight {
  background-color: #0275d8;
  color: #fff; }

body .ui-state-error,
body .ui-state-default.ui-state-error {
  border-bottom-color: #e13131; }

body .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none; }

body .ui-corner-all {
  border-radius: .25em; }

body .ui-autocomplete.ui-autocomplete-multiple .ui-autocomplete-multiple-container {
  padding: .5em .75em; }

body .ui-autocomplete.ui-autocomplete-multiple .ui-autocomplete-multiple-container .ui-autocomplete-input-token input.ui-state-focus {
  border: 0; }

body .ui-autocomplete-panel {
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3); }

body .ui-autocomplete-panel .ui-autocomplete-items {
  padding: 0; }

body .ui-autocomplete-panel .ui-autocomplete-items .ui-autocomplete-list-item {
  margin: 0;
  padding: .375em .75em;
  border-radius: 0; }

body .ui-autocomplete-panel .ui-autocomplete-items .ui-autocomplete-group {
  padding: .375em .75em;
  background-color: #e6e6e6;
  color: #373a3c; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  display: table;
  content: ''; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  zoom: 1; }

.ui-state-disabled {
  cursor: default !important; }

.ui-state-disabled a {
  cursor: default !important; }

.ui-shadow {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3); }

.ui-autocomplete {
  display: inline-block;
  position: relative;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  zoom: 1; }

.ui-autocomplete .ui-autocomplete-dropdown {
  position: absolute;
  width: 2em;
  height: 100%; }

.ui-autocomplete-query {
  font-weight: bold; }

.ui-autocomplete-panel {
  position: absolute;
  overflow: auto; }

.ui-autocomplete-panel .ui-autocomplete-list {
  padding: .4em;
  border: 0 none; }

.ui-autocomplete-panel .ui-autocomplete-list-item {
  margin: 1px 0;
  padding: .186em .313em;
  border: 0 none;
  font-weight: normal;
  text-align: left;
  cursor: pointer; }

.ui-autocomplete .ui-button-icon-only {
  border-left: 0 none; }

/* Multiple Selection */
.ui-autocomplete-multiple-container.ui-inputtext {
  margin: 0;
  padding: 0 .25em;
  clear: left;
  cursor: text;
  overflow: hidden;
  list-style-type: none; }

.ui-autocomplete-token {
  display: inline-block;
  position: relative;
  margin-right: .125em;
  padding: .125em .5em;
  border: 0 none;
  font-size: .9em;
  white-space: nowrap;
  cursor: default;
  overflow: hidden;
  vertical-align: middle; }

.ui-autocomplete-token-label {
  display: block;
  margin-right: 2em; }

.ui-autocomplete-token-icon {
  position: absolute;
  right: .2em;
  top: 50%;
  margin-top: -.5em;
  cursor: pointer; }

.ui-autocomplete-input-token {
  display: inline-block;
  margin: 0 0 0 .125em;
  padding: .25em .25em .25em 0;
  vertical-align: middle;
  list-style-type: none; }

.ui-autocomplete-input-token .ui-inputtext {
  border: 0 none;
  width: 10em;
  outline: medium none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0; }

.ui-autocomplete-dd input.ui-corner-all {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.ui-autocomplete-dd .ui-autocomplete-dropdown.ui-corner-all {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

/** AutoComplete **/
.ui-fluid .ui-autocomplete,
.ui-fluid .ui-autocomplete-input {
  width: 100%; }

.ui-fluid .ui-autocomplete .ui-autocomplete-dropdown.ui-button {
  width: 2em; }

/*---
title: Checkbox
section: Components
---

Use `tst-checkbox` element for checkboxes.
<p>Attributes:</p>
<ul>
    <li>`is-checked`: will be past as ng-model in input</li>
    <li>`label`: label of checkbox</li>
    <li>`is-disabled`: expression if checkbox should be disabled</li>
    <li>`is-indeterminate`: expression if checkbox should be in intererminate state</li>
</ul>

```example:html
<tst-checkbox></tst-checkbox>
<tst-checkbox is-checked="true" label="Checkbox label"></tst-checkbox>
<tst-checkbox label="Checkbox label" is-indeterminate="true"></tst-checkbox>
<tst-checkbox label="Checkbox label" is-disabled="true"></tst-checkbox>
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.btn--topstep-filled, .btn--topstep-outlined {
  border: 2px solid #487A7B !important; }

.btn--topstep-filled {
  background-color: #487A7B !important;
  color: #FFFFFF !important; }
  .btn--topstep-filled:hover {
    background-color: #1a4e4f !important;
    border: 2px solid #1a4e4f !important; }
  .btn--topstep-filled:disabled {
    background-color: #b3d7c4 !important;
    border: none !important; }

.btn--topstep-outlined {
  background-color: transparent !important;
  color: #487A7B !important; }
  .btn--topstep-outlined:hover {
    background-color: rgba(72, 122, 123, 0.2) !important; }

.sign-up__asset--topstep {
  background-color: #E0E0E0;
  color: #000000;
  font-size: 14px;
  width: 80px;
  height: 23px;
  padding: 2px 13px;
  margin: auto auto 15px;
  margin-bottom: 15px;
  font-weight: 600; }

.btn-reset-password--topstep {
  width: 267px !important;
  margin: auto; }

.form-reset-password--topstep {
  width: 297px !important;
  margin: auto auto 40px !important; }

.tst-checkbox {
  display: inline-block;
  position: relative;
  margin: 0 0 5px;
  cursor: pointer; }

.tst-checkbox__input {
  display: none; }
  .tst-checkbox__input:checked + .tst-checkbox__checkmark {
    background-color: #000000; }
    .tst-checkbox__input:checked + .tst-checkbox__checkmark .tst-checkbox__icon {
      visibility: visible; }
  .tst-checkbox__input:indeterminate + .tst-checkbox__checkmark {
    background-color: #000000; }
    .tst-checkbox__input:indeterminate + .tst-checkbox__checkmark:after {
      content: '';
      position: absolute;
      top: 5px;
      right: 3px;
      bottom: 4px;
      left: 3px;
      background-color: currentColor; }
    .tst-checkbox__input:indeterminate + .tst-checkbox__checkmark .tst-checkbox__icon {
      visibility: hidden; }

.tst-checkbox__icon {
  position: relative;
  top: 1px;
  left: 1px;
  font-size: 9px;
  vertical-align: top;
  visibility: hidden; }

.tst-checkbox__checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  border: 1px solid #000000;
  border-radius: 1px;
  color: #fff; }

.tst-checkbox__label {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle; }

.tst-checkbox--disabled {
  color: #aab2bd;
  cursor: default; }
  .tst-checkbox--disabled .tst-checkbox__checkmark {
    border-color: #aab2bd; }
  .tst-checkbox--disabled .tst-checkbox__input:checked + .tst-checkbox__checkmark {
    background-color: #fff; }
    .tst-checkbox--disabled .tst-checkbox__input:checked + .tst-checkbox__checkmark .tst-checkbox__icon {
      color: #aab2bd; }
  .tst-checkbox--disabled .tst-checkbox__input:indeterminate + .tst-checkbox__checkmark {
    background-color: #fff; }
    .tst-checkbox--disabled .tst-checkbox__input:indeterminate + .tst-checkbox__checkmark:after {
      background-color: #aab2bd; }

/*---
title: Radio button
section: Components
---

Use `tst-radio` element for radio buttons.<br>
<p>Attributes:</p>
<ul>
    <li>`model`: will be past as ng-model in input</li>
    <li>`value`: string value for input</li>
    <li>`label`: label of radio</li>
    <li>`is-disabled`: expression if radio should be disabled</li>
</ul>

```example:html
<tst-radio model="test" value="1"></tst-radio>
<tst-radio model="test" value="1" label="Radio with label"></tst-radio>
<tst-radio model="test" value="1" label="Radio with label checked"></tst-radio>
<tst-radio model="test" value="1" label="Radio disabled" is-disabled="true"></tst-radio>
<tst-radio model="test" value="1" label="Radio disabled checked" is-disabled="true"></tst-radio>
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.tst-radio {
  position: relative;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer; }

.tst-radio__input {
  display: none; }
  .tst-radio__input:checked + .tst-radio__radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #117EC0; }

.tst-radio__radio {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #117EC0;
  border-radius: 50%;
  background-color: #fff; }

.tst-radio__label {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle; }

.tst-radio--disabled {
  cursor: default;
  color: #aab2bd; }
  .tst-radio--disabled .tst-radio__radio {
    border-color: #aab2bd; }
  .tst-radio--disabled .tst-radio__input:checked + .tst-radio__radio::after {
    background-color: #aab2bd; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.btn--topstep-filled, .btn--topstep-outlined {
  border: 2px solid #487A7B !important; }

.btn--topstep-filled {
  background-color: #487A7B !important;
  color: #FFFFFF !important; }
  .btn--topstep-filled:hover {
    background-color: #1a4e4f !important;
    border: 2px solid #1a4e4f !important; }
  .btn--topstep-filled:disabled {
    background-color: #b3d7c4 !important;
    border: none !important; }

.btn--topstep-outlined {
  background-color: transparent !important;
  color: #487A7B !important; }
  .btn--topstep-outlined:hover {
    background-color: rgba(72, 122, 123, 0.2) !important; }

.sign-up__asset--topstep {
  background-color: #E0E0E0;
  color: #000000;
  font-size: 14px;
  width: 80px;
  height: 23px;
  padding: 2px 13px;
  margin: auto auto 15px;
  margin-bottom: 15px;
  font-weight: 600; }

.btn-reset-password--topstep {
  width: 267px !important;
  margin: auto; }

.form-reset-password--topstep {
  width: 297px !important;
  margin: auto auto 40px !important; }

.tst-custom-tag {
  padding: 0.5em 1.5em;
  border-radius: 25px;
  display: inline-block;
  background-color: green; }

.small {
  font-size: 12px; }

.medium {
  font-size: 16px; }

.large {
  font-size: 20px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
tst-tooltip {
  display: inline-block;
  position: relative; }
  tst-tooltip:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px; }
  tst-tooltip:hover .tooltip__arrow,
  tst-tooltip:hover .tooltip__content {
    visibility: inherit; }

tst-tooltip-body {
  display: block;
  white-space: normal;
  word-break: normal; }

.tooltip--black .tooltip__arrow {
  border-color: #282828; }

.tooltip--black .tooltip__content {
  font-size: 0.625rem;
  line-height: 14px;
  color: #b6b6b6;
  background-color: #282828; }

.tooltip--white .tooltip__arrow {
  opacity: 0; }

.tooltip--white .tooltip__content {
  background-color: #fff; }

.tooltip--left .tooltip__arrow {
  left: 15px; }

.tooltip--left .tooltip__content {
  left: 5px; }

.tooltip--bottom .tooltip__arrow {
  top: 100%;
  border-top-width: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent; }

.tooltip--bottom .tooltip__content {
  top: 100%;
  margin-top: 4px; }

.tooltip--right .tooltip__arrow {
  right: 15px; }

.tooltip--right .tooltip__content {
  right: 5px; }

.tooltip--top .tooltip__arrow {
  bottom: 100%;
  border-bottom-width: 0;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent; }

.tooltip--top .tooltip__content {
  top: auto;
  bottom: 100%;
  margin-bottom: 4px; }

.tooltip--center .tooltip__arrow {
  left: 50%;
  margin-left: -4px; }

.tooltip--center .tooltip__content {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.tooltip__content {
  visibility: hidden;
  position: absolute;
  z-index: 600;
  padding: 0 20px;
  text-align: left;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 4px rgba(39, 50, 61, 0.33);
          box-shadow: 0 0 4px rgba(39, 50, 61, 0.33); }

.tooltip__arrow {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  border: 4px solid; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.btn--topstep-filled, .btn--topstep-outlined {
  border: 2px solid #487A7B !important; }

.btn--topstep-filled {
  background-color: #487A7B !important;
  color: #FFFFFF !important; }
  .btn--topstep-filled:hover {
    background-color: #1a4e4f !important;
    border: 2px solid #1a4e4f !important; }
  .btn--topstep-filled:disabled {
    background-color: #b3d7c4 !important;
    border: none !important; }

.btn--topstep-outlined {
  background-color: transparent !important;
  color: #487A7B !important; }
  .btn--topstep-outlined:hover {
    background-color: rgba(72, 122, 123, 0.2) !important; }

.sign-up__asset--topstep {
  background-color: #E0E0E0;
  color: #000000;
  font-size: 14px;
  width: 80px;
  height: 23px;
  padding: 2px 13px;
  margin: auto auto 15px;
  margin-bottom: 15px;
  font-weight: 600; }

.btn-reset-password--topstep {
  width: 267px !important;
  margin: auto; }

.form-reset-password--topstep {
  width: 297px !important;
  margin: auto auto 40px !important; }

.tst-inline-tag {
  padding: 2px 5px;
  color: #000;
  border: 1px solid;
  border-radius: 5px; }

.intercom-tag {
  font-size: 12px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.tag-display {
  margin-right: 5px;
  width: 10px;
  height: 15px; }

.tooltip-body {
  width: 100px; }

.tst-modal--opened {
  overflow: hidden;
  position: fixed; }
  .tst-modal--opened .tst-modal-window__container {
    overflow-x: hidden;
    overflow-y: auto; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-select-dropdown {
  border: 1px solid #aab2bd;
  background-color: #fff;
  border-top: none;
  position: absolute;
  z-index: 1;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px; }
  .adm-select-dropdown .filter {
    padding: 3px;
    width: 100%; }
    .adm-select-dropdown .filter input {
      border: 1px solid #eee;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 4px;
      width: 100%; }
  .adm-select-dropdown .options {
    max-height: 200px;
    overflow-y: auto; }
    .adm-select-dropdown .options ul {
      list-style: none;
      margin: 0;
      padding: 0; }
  .adm-select-dropdown li {
    padding: 4px 8px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .adm-select-dropdown li:last-child {
      border-bottom-right-radius: 3px;
      border-bottom-left-radius: 3px; }
  .adm-select-dropdown .selected {
    background-color: #e0e0e0; }
    .adm-select-dropdown .selected.highlighted {
      background-color: #bbbdbf;
      color: #fff; }
  .adm-select-dropdown .highlighted {
    background-color: #bbbdbf;
    color: #fff; }
  .adm-select-dropdown .disabled {
    background-color: #fff;
    color: #9e9e9e;
    cursor: default;
    pointer-events: none; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-select {
  display: inline-block;
  margin: 0;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  position: relative; }
  .adm-select.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent; }
  .adm-select.disabled {
    background-color: #eee;
    color: #aaa;
    cursor: default;
    pointer-events: none; }

.adm-select__value-container {
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
  height: 100%; }
  .adm-select__value-container::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0; }

.adm-select__value, .adm-select__placeholder {
  display: inline-block;
  vertical-align: middle;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 90%;
  overflow: hidden; }

.adm-select__placeholder {
  color: #aaa; }

.adm-select__clear {
  font-size: 14px;
  position: absolute;
  top: 2px;
  left: 2px;
  color: #bbbdbf; }

.adm-select__toggle {
  position: absolute;
  right: 9px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -2px; }

.adm-select__toggle--down {
  border-width: 4.5px 4px 0 4px;
  border-color: #000 transparent transparent transparent; }

.adm-select__toggle--up {
  border-width: 0 4px 4.5px 4px;
  border-color: transparent transparent #000 transparent; }

.adm-select__value-container--multiple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  height: 100%;
  min-height: 30px;
  padding: 0 10px;
  width: 100%; }
  .adm-select__value-container--multiple > div.option {
    background-color: #eee;
    border: 1px solid #aaa;
    border-radius: 4px;
    color: #333;
    cursor: default;
    display: inline-block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 14px;
    line-height: 22px;
    margin: 3px 5px 3px 0;
    padding: 0 4px; }
    .adm-select__value-container--multiple > div.option span.deselect-option {
      color: #aaa;
      cursor: pointer;
      font-size: 14px;
      height: 20px;
      line-height: 20px; }
      .adm-select__value-container--multiple > div.option span.deselect-option:hover {
        color: #555; }
  .adm-select__value-container--multiple > div.placeholder {
    color: #aaa;
    line-height: 30px; }
  .adm-select__value-container--multiple input {
    background-color: transparent;
    border: none;
    font-size: 15px;
    height: 30px;
    line-height: 30px;
    padding: 0; }
    .adm-select__value-container--multiple input:focus {
      outline: none; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.tst-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040; }

.tst-modal-backdrop--with-overlay {
  background-color: #000; }

.tst-modal-backdrop--fade {
  opacity: 0;
  filter: alpha(opacity=0); }

.tst-modal-backdrop--in {
  opacity: 0.5;
  filter: alpha(opacity=50); }

.tst-modal-window__container {
  z-index: 3000;
  display: block;
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  word-spacing: -.25em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .tst-modal-window__container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .tst-modal-window__container.fade .modal-dialog {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .tst-modal-window__container.in .modal-dialog {
    opacity: 1; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-modal-window {
  max-width: 100%;
  margin: 10px 0;
  padding: 0 10px;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  word-spacing: 0;
  white-space: normal;
  min-height: 200px;
  margin-top: 50px; }

.adm-modal-window__content {
  border: 1px #669cd3 solid;
  -webkit-box-shadow: 0 0 10px #716760;
          box-shadow: 0 0 10px #716760;
  position: relative;
  background-color: #fff;
  border-radius: 7px;
  background-clip: padding-box;
  outline: 0; }

.adm-modal-window__header {
  min-height: 20px;
  padding: 10px 10px 0px 10px; }

.adm-modal-window__header__spinner {
  position: absolute;
  top: 10px;
  left: 10px; }

.adm-modal-window__footer {
  min-height: 25px; }

.adm-modal__footer {
  padding: 0 40px 40px;
  text-align: center; }
  .adm-modal__footer .btn {
    min-width: 110px; }

.adm-modal__error-message-body {
  width: 350px;
  font-size: 17px;
  text-align: center;
  font-weight: normal;
  padding: 15px 40px 20px;
  color: #a94442; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-spinner {
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  font-size: 5px;
  position: relative;
  text-align: left;
  text-indent: 100%;
  border-top: 0.6em solid rgba(93, 158, 234, 0.2);
  border-right: 0.6em solid rgba(93, 158, 234, 0.2);
  border-bottom: 0.6em solid rgba(93, 158, 234, 0.2);
  border-left: 0.6em solid #5d9eea;
  -webkit-transform: rotate(0deg) translateZ(0);
          transform: rotate(0deg) translateZ(0);
  -webkit-animation: adm-spinner-animation 1.1s infinite linear;
          animation: adm-spinner-animation 1.1s infinite linear; }

.adm-spinner,
.adm-spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em; }

@-webkit-keyframes adm-spinner-animation {
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
            transform: rotate(360deg) translateZ(0); } }

@keyframes adm-spinner-animation {
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
            transform: rotate(360deg) translateZ(0); } }

.adm-modal-header__close-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  background-color: #669cd3;
  color: #fff;
  width: 13px;
  height: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  float: right;
  border: 0;
  outline: 0; }
  .adm-modal-header__close-btn .icon {
    font-size: 7px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-success-modal {
  width: 375px; }

.adm-success-modal__body {
  padding: 30px 40px;
  font-size: 17px;
  text-align: center; }

.adm-success-modal__footer {
  padding: 0 40px 55px;
  text-align: center; }

.adm-success-modal__footer__btn {
  min-width: 110px; }

.adm-success-modal__footer__btn + .adm-success-modal__footer__btn {
  margin-left: 10px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-confirmation-modal {
  min-width: 375px; }

.adm-confirmation-modal__body {
  padding: 30px 40px;
  font-size: 17px;
  text-align: center; }

.adm-confirmation-modal__footer {
  padding: 0 40px 55px;
  text-align: center; }

.adm-confirmation-modal__footer__btn {
  min-width: 110px; }

.adm-confirmation-modal__footer__btn + .adm-confirmation-modal__footer__btn {
  margin-left: 10px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-error-modal {
  min-width: 350px; }

.adm-error-modal__body {
  font-size: 17px;
  text-align: center;
  font-weight: normal;
  padding: 15px 40px 20px;
  color: #a94442; }

.adm-error-modal__footer {
  padding: 0 40px 40px;
  text-align: center; }
  .adm-error-modal__footer .btn {
    min-width: 110px; }

.transaction-error-modal {
  width: 352px;
  max-width: 100%;
  padding: 0 33px;
  font-weight: 300; }

.transaction-error-modal__header {
  margin: 0 0 20px 0;
  font-size: 23px;
  font-weight: 300; }

.transaction-error-modal__error-code {
  color: #ed6d50;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 30px; }

.transaction-error-modal__error-message {
  font-size: 17px;
  margin-bottom: 30px; }

.transaction-error-modal__button-container {
  margin-bottom: 45px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-cancel-subscription-modal__body {
  padding: 40px 20px;
  width: 400px; }

.adm-cancel-subscription-modal__header {
  padding-bottom: 40px;
  font-size: 17px;
  text-align: center;
  font-weight: normal; }

.adm-header-navigation {
  display: inline-block;
  margin: 0 5px; }

.adm-header-navigation__toggle {
  vertical-align: middle; }

.adm-header-navigation-dropdown-menu {
  left: auto;
  margin-top: 5px; }

.adm-header-navigation__caret {
  display: none;
  position: absolute;
  top: 42px;
  left: 50%;
  margin-left: -4px;
  color: #fff;
  z-index: 1001; }
  .open .adm-header-navigation__caret {
    display: block; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.btn--topstep-filled, .btn--topstep-outlined {
  border: 2px solid #487A7B !important; }

.btn--topstep-filled {
  background-color: #487A7B !important;
  color: #FFFFFF !important; }
  .btn--topstep-filled:hover {
    background-color: #1a4e4f !important;
    border: 2px solid #1a4e4f !important; }
  .btn--topstep-filled:disabled {
    background-color: #b3d7c4 !important;
    border: none !important; }

.btn--topstep-outlined {
  background-color: transparent !important;
  color: #487A7B !important; }
  .btn--topstep-outlined:hover {
    background-color: rgba(72, 122, 123, 0.2) !important; }

.sign-up__asset--topstep {
  background-color: #E0E0E0;
  color: #000000;
  font-size: 14px;
  width: 80px;
  height: 23px;
  padding: 2px 13px;
  margin: auto auto 15px;
  margin-bottom: 15px;
  font-weight: 600; }

.btn-reset-password--topstep {
  width: 267px !important;
  margin: auto; }

.form-reset-password--topstep {
  width: 297px !important;
  margin: auto auto 40px !important; }

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem; }
  .logo:hover, .logo:focus {
    text-decoration: none; }

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

.logo__icon {
  color: #fff;
  height: 38px;
  width: 12em;
  padding: 8px 0px; }
  @media (min-width: 992px) {
    .logo__icon {
      height: 55px;
      line-height: 55px; } }
  @media (max-width: 768px) {
    .logo__icon {
      width: 8em; } }

.adm-responsive-header__asset {
  width: 65px;
  height: 16px;
  background: #E0E0E0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000; }
  .adm-responsive-header__asset p {
    margin: 0;
    font-size: 10px;
    color: #000000;
    font-weight: bold; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-pagination {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.adm-pagination__link-with-margin {
  margin-right: 10px; }

.adm-pagination__current-page-info {
  margin: 0 30px; }

.adm-pagination__link--disabled {
  color: #8f8f8f;
  cursor: default;
  pointer-events: none; }

.note__input--add {
  min-height: 85px; }

.note__content {
  float: left;
  font-size: 15px;
  font-weight: 400; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.note--edit {
  border-color: #5d9eea; }

.note__header {
  margin-bottom: 20px;
  float: left; }

.note__header-item {
  display: inline-block;
  padding: 0 18px;
  border-left: 1px solid #425161;
  color: #425161;
  font-weight: 600;
  line-height: 16px; }
  .note__header-item:first-child {
    padding-left: 0;
    border-left: 0; }

.note__text-wrapper {
  position: relative; }

.note__text {
  min-height: 45px;
  color: #939598;
  white-space: pre-line; }

.note__input--edit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 45px; }

.note__edit-date {
  position: absolute;
  right: 22px;
  bottom: 5px;
  color: #939598;
  font-weight: 300; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.note-popover .note__content {
  width: 75%; }

.note-popover .note__actions {
  width: 25%; }

adm-validated-input {
  display: block; }

.adm-expiration-date {
  white-space: nowrap; }

.adm-expiration-date__input {
  display: inline-block;
  vertical-align: middle; }

.adm-expiration-date--month {
  width: 50%; }

.adm-expiration-date--year {
  min-width: 72px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.edit-payment-method {
  max-width: 100%;
  width: auto;
  margin-left: auto;
  margin-right: auto; }

.edit-payment-method__spinner {
  display: block;
  margin: 10px 0; }

.payment-method-form {
  max-width: 100%;
  width: 760px;
  padding: 0 30px 20px; }

@media (max-width: 767px) {
  .edit-payment-method .adm-modal-window {
    max-width: 100%; } }

.adm-new-payment-method-modal__header {
  padding: 0 30px; }

.adm-edit-payment-method-modal__header {
  padding: 0 30px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-tst-spinner__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #f0f8ffb8; }

.adm-tst-spinner-fullscreen {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -25px;
  text-align: center;
  font-size: 10px; }

.transaction-details {
  width: 340px;
  padding: 0 40px 25px;
  font-weight: 300; }

.transaction-package-details {
  width: 800px;
  padding: 0 40px 25px; }

.transaction-details__header {
  margin: 0 0 20px 0;
  font-size: 23px;
  font-weight: 300; }

.transaction-details__purchase {
  margin-bottom: 30px; }

.transaction-details__row {
  margin: 0 0 8px 0;
  font-size: 14px; }

.transaction-details__secondary-header {
  font-size: 18px;
  margin: 0 0 17px 0;
  font-weight: 300; }

.transaction-details__refund-amount {
  color: #ed6d50; }

.transaction-details__refunds {
  margin-bottom: 20px;
  overflow: auto;
  max-height: 120px; }

.form-horizontal .transaction-details__form-label {
  padding-top: 5px; }

.transaction-details__buttons {
  margin-bottom: 10px; }

.transaction-details--paypal-message {
  width: 352px; }

.redeem-button {
  min-width: 66px;
  height: 10px;
  font-size: 10px;
  padding: 7px 0px 20px 0px; }

.transaction-details__total-refund {
  float: right;
  margin: 8px 15px 0 0; }
  .transaction-details__total-refund .refund-button {
    width: 20px;
    height: 10px;
    font-size: 10px;
    padding: 7px 0px 20px 0px; }

@charset "UTF-8";
body .ui-datepicker {
  padding: 0; }

body .ui-datepicker .ui-datepicker-header {
  padding: .75em 1.25em;
  background-color: #f5f5f5;
  border: 0;
  border-bottom: 1px solid #c7c7c7;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  cursor: pointer;
  color: #767b7f;
  background: none !important;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-indent: 0px !important;
  text-align: center;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  top: 1.25em; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  content: "\F053"; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
  display: none; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev.ui-datepicker-prev-hover {
  color: #2d353c; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  cursor: pointer;
  color: #767b7f;
  background: none !important;
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-indent: 0px !important;
  text-align: center;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  top: 1.25em; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  content: "\F054"; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  display: none; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next.ui-datepicker-next-hover {
  color: #2d353c; }

body .ui-datepicker table {
  font-size: 1em; }

body .ui-datepicker table td a {
  min-width: 1em;
  text-align: center;
  color: #373a3c;
  font-size: .9em; }

body .ui-datepicker table td a.ui-state-hover {
  background-color: #f4f3f4; }

body .ui-datepicker table td a.ui-state-highlight {
  color: #373a3c;
  background-color: #e6e6e6; }

body .ui-datepicker table td a.ui-state-active {
  background-color: #0275d8;
  color: #fff; }

body .ui-trigger-calendar .ui-datepicker-trigger.ui-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.ui-calendar {
  position: relative;
  display: inline-block;
  width: 100%; }

.ui-calendar button {
  position: absolute;
  height: 100%;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  position: absolute;
  width: 2em;
  border-left: 0 none; }

.ui-fluid .ui-calendar {
  width: 100%; }

/* Datepicker */
.ui-datepicker {
  width: 17em;
  padding: .2em;
  display: none;
  position: absolute; }

.ui-datepicker.ui-datepicker-inline {
  display: block;
  position: static; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: .125em;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev {
  left: .125em; }

.ui-datepicker .ui-datepicker-next {
  right: .125em; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -.5em; }

.ui-datepicker .ui-datepicker-prev span {
  margin-left: -.25em; }

.ui-datepicker .ui-datepicker-next span {
  margin-left: -.125em; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: .125em 0; }

.ui-datepicker select.ui-datepicker-month {
  width: 55%; }

.ui-datepicker select.ui-datepicker-year {
  width: 35%; }

.ui-datepicker select.ui-datepicker-month {
  margin-right: .25em; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: .125em; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

.ui-calendar.ui-calendar-w-btn input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.ui-timepicker {
  text-align: center;
  padding: .5em 0; }

.ui-timepicker > div {
  display: inline-block;
  margin-left: .5em;
  min-width: 1.5em; }

.ui-timepicker > .ui-minute-picker {
  margin-left: 0; }

.ui-timepicker > .ui-separator {
  margin-left: 0px;
  min-width: .75em; }

.ui-timepicker > .ui-separator a {
  visibility: hidden; }

.ui-timepicker > div a {
  display: block;
  opacity: 0.7;
  filter: Alpha(Opacity=70); }

.ui-timepicker > div a:hover {
  display: block;
  opacity: 1;
  filter: Alpha(Opacity=100); }

.ui-datepicker a:hover,
.ui-datepicker a:focus {
  text-decoration: none; }

.ui-datepicker .fa,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  font-family: 'Glyphicons Halflings'; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before {
  content: '\E257'; }

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
  content: '\E258'; }

.fa-angle-up::before {
  content: '\E260'; }

.fa-angle-down::before {
  content: '\E259'; }

adm-datepicker {
  display: block; }

.adm-datepicker {
  position: relative; }

.adm-datepicker__calendar-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  font-size: 17px; }
  .input-sm ~ .adm-datepicker__calendar-icon {
    margin-top: -6px;
    font-size: 12px; }

.adm-datepicker-inline {
  position: relative; }
  .adm-datepicker-inline adm-datepicker {
    position: absolute;
    top: 7px;
    right: 236px; }
    .adm-datepicker-inline adm-datepicker input {
      display: none; }
  .adm-datepicker-inline .adm-datepicker__calendar-icon {
    display: none; }

.adm-datepicker-inline__icon {
  margin-left: 2px;
  font-size: 10px;
  opacity: 0.5;
  cursor: pointer; }
  .adm-datepicker-inline__icon:hover {
    opacity: 1; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
adm-note-popover {
  display: inline-block;
  position: relative;
  white-space: normal; }

.note-popover-transclude {
  cursor: pointer; }

.note-popover-transclude--active ~ .note-popover,
.note-popover-transclude--active ~ .note-popover-caret-border,
.note-popover-transclude--active ~ .note-popover-caret {
  visibility: inherit; }

.note-popover-transclude--blocked {
  opacity: 0.5;
  cursor: default; }

.note-popover {
  position: absolute;
  top: 100%;
  right: -15px;
  z-index: 1;
  visibility: hidden;
  margin-top: 15px;
  width: 550px;
  background: #fff;
  border: #d7dce1 solid 1px;
  padding: 22px; }

.note-popover-caret-border,
.note-popover-caret {
  position: absolute;
  top: 100%;
  left: 50%;
  visibility: hidden;
  z-index: 2;
  margin-top: 6px;
  margin-left: -10px;
  color: #fff;
  border-width: 10px; }

.note-popover-caret-border {
  z-index: auto;
  margin-top: 5px;
  margin-left: -11px;
  color: #d7dce1;
  border-width: 11px; }

.adm-subscription-item__editable-cell-content {
  display: inline-block;
  width: 90%; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-cancel-subscription-modal__body {
  padding: 40px 20px;
  width: 400px; }

.adm-cancel-subscription-modal__header {
  padding-bottom: 40px;
  font-size: 17px;
  text-align: center;
  font-weight: normal; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-cancel-subscription-modal__body {
  padding: 40px 20px;
  width: 400px; }

.adm-cancel-subscription-modal__header {
  padding-bottom: 40px;
  font-size: 17px;
  text-align: center;
  font-weight: normal; }

.payment-method-body {
  min-height: 95px;
  padding: 15px;
  border: 1px solid #ababab;
  border-top: 0;
  background: #fff;
  font-size: 14px;
  font-weight: 300; }
  .payment-method-body tr td:first-child,
  .payment-method-body tr td:last-child {
    width: 15%; }

.payment-method-body__table {
  width: 100%; }

.payment-method-body__title {
  font-weight: 600;
  text-decoration: underline; }

.payment-method-body__icons {
  padding-left: 25px; }

.payment-method-body__cell {
  vertical-align: top; }

adm-payment-method-header {
  display: block; }

.payment-method-header {
  height: 30px;
  padding: 4px 15px;
  border: 1px solid #ababab;
  background: #e7e9ed;
  font-size: 14px;
  font-weight: 300; }
  .payment-method-header--selected .payment-method-header {
    border-color: #4ba09c;
    background: #e9f3f3; }

.payment-method-header__col {
  line-height: 1; }

.payment-method-header__icon {
  width: 48px;
  height: 20px; }

.payment-method-header__title {
  padding-left: 20px;
  white-space: nowrap; }

.payment-method-header__expiration-date {
  white-space: nowrap; }

.payment-method-header--expired {
  color: #ab4543; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.add-credit-card-link {
  margin-bottom: 15px;
  font-size: 14px; }

.payment-method {
  margin-bottom: 10px; }

.payment-method__toggle {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 12px;
  color: #989898;
  cursor: pointer; }

.payment-method__caret {
  margin-left: 0; }

.payment-method-header-wrapper {
  position: relative; }

.payment-method-icon-add {
  margin-top: -2px !important; }

.with-nuvei-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px; }

.adm-nuvei-logo {
  margin: 0 10px 10px 0;
  width: 10%; }

.payments-data-container {
  overflow-x: unset;
  overflow-y: visible;
  height: auto;
  max-width: 100%; }

.payments-missing-info {
  margin: 15px 0 30px;
  font-size: 17px; }

.payments-summary-section {
  display: inline-block;
  min-width: 150px;
  margin-right: 0.5em; }

.payments-summary-section--all {
  min-width: 200px; }

.payments-summary-info {
  font-size: 15px;
  font-weight: 300; }

.back-to-payments-link {
  margin-bottom: 15px; }

.payments-data__details {
  visibility: inherit !important;
  background-color: #fff;
  position: absolute;
  left: 43%;
  min-height: 180px;
  min-width: 412px; }
  .payments-data__details .close-icon-details {
    width: 12px;
    height: 12px;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 3px; }
  .payments-data__details .spinner-nuvei-details-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 180px;
    min-width: 380px; }
  .payments-data__details .error-transactions-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline; }

.disabled-view-details {
  pointer-events: none;
  color: #9e9e9e;
  cursor: default; }

.payments-details-collapsible {
  background-color: #f1f1f1;
  color: #444;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  height: 36px;
  font-weight: bold; }
  .payments-details-collapsible .caret-detail {
    float: right;
    margin-right: 10px; }
  .payments-details-collapsible .active .caret-detail {
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }

.more-transactions-collapsible {
  background-color: #f1f1f1;
  color: #444;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  height: 36px;
  font-weight: bold; }
  .more-transactions-collapsible .caret-more-info {
    float: right;
    margin-right: 10px; }

.active .caret-more-info {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg); }

.adm-charge-card {
  margin-bottom: 30px; }

.adm-charge-card__header {
  margin: 0 0 23px 0; }

.adm-charge-card__payment-method-header {
  font-weight: 400; }

.adm-charge-card__item {
  margin-bottom: 10px;
  cursor: pointer; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-account-item {
  border: 1px solid #e3e7ea; }

.adm-account-item__cell {
  height: 60px; }

.adm-account-item__add-notes {
  display: inline-block;
  font-size: 14px;
  vertical-align: middle; }
  .adm-account-item__add-notes, .adm-account-item__add-notes:hover, .adm-account-item__add-notes:focus {
    color: #425161; }

.tst-copy-to-clipboard {
  position: relative;
  display: inline-block; }

.tst-copy-to-clipboard__message-container {
  background-color: rgba(0, 0, 0, 0.81);
  color: #fff;
  padding: 0 5px;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 2px;
  right: -50px;
  font-size: 12px;
  visibility: hidden; }

.tst-copy-to-clipboard__message-container--visible {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
  visibility: visible; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-user-account {
  margin-bottom: 40px; }

.adm-user-account-header {
  border: 1px solid #e3e7ea;
  border-bottom: 0;
  margin-right: 1px;
  background-color: #fff;
  font-weight: 600;
  line-height: 50px; }

.adm-user-account-table__header-cell {
  height: 60px; }

.adm-user-account-header__item {
  border-bottom: 1px solid #e3e7ea;
  padding: 0 25px;
  white-space: nowrap;
  vertical-align: middle; }
  .adm-user-account-header__item:last-child {
    border-bottom: none; }
  @media (min-width: 992px) {
    .adm-user-account-header__item {
      display: table-cell;
      float: none;
      border-right: 1px solid #e3e7ea;
      border-bottom: none; } }

.adm-user-account-header__item--breaking-words {
  word-break: break-all;
  white-space: initial;
  line-height: initial;
  padding-top: 10px;
  padding-bottom: 10px; }
  @media (min-width: 992px) {
    .adm-user-account-header__item--breaking-words {
      width: 20%; } }

.adm-user-account-header__item--multiline {
  line-height: 1em; }

.adm-user-account-header__tooltip-content {
  line-height: 18px;
  padding: 10px 0; }

.adm-user-account-header__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase; }

.adm-user-account-header__actions {
  clear: both;
  line-height: initial;
  vertical-align: middle;
  padding: 10px; }
  .adm-user-account-header__actions a {
    white-space: nowrap; }
  @media (min-width: 992px) {
    .adm-user-account-header__actions {
      display: table-cell;
      width: 100%;
      float: none; } }

.adm-user-account__table-wrapper {
  overflow-x: scroll; }

.adm-user-account-header__link {
  padding-left: 15px;
  font-size: 12px; }

.adm-user-account-table__header {
  border: 1px solid #e3e7ea; }

.adm-account-table__copy-btn {
  min-width: 20px;
  height: 20px;
  margin-left: 3px;
  padding: 3px 5px;
  line-height: 8px;
  vertical-align: baseline; }

.adm-alert-settings-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e3e7ea !important; }
  .adm-alert-settings-wrapper .adm-user-account-header__title {
    display: flex;
    align-items: center; }

.adm-alert-wrapper {
  height: 100%;
  padding: 10px 25px; }

.adm-alert-title,
.adm-alert-body {
  line-height: 1; }

.adm-alert-title {
  font-size: 18px;
  font-weight: 500; }

.adm-alert-body {
  display: flex;
  justify-content: space-between;
  align-items: baseline; }

.adm-alert-body__inactive,
.adm-alert-body__active {
  font-size: 30px;
  font-weight: 600; }

.adm-alert-body__active {
  color: #07a853; }

.admin-alert-body__option-list {
  list-style-type: none;
  display: flex; }

.admin-alert-body__option {
  font-size: 14px;
  font-weight: 400;
  padding-right: 5px; }

.adm-alert___error {
  font-weight: 700;
  padding-left: 20px; }

.adm-user-alert-margin {
  margin-bottom: 0px !important; }

.adm-user-alert-title-size {
  width: 18rem;
  height: 6rem; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.user-account-summary-header {
  margin-bottom: 50px; }

.adm-user-account-summary-header__title {
  line-height: 1; }

.user-account-summary-header__funded-path {
  margin-top: 20px; }

.adm-user-summary-add-account {
  margin-top: 30px;
  color: #9a9a9a;
  font-size: 16px; }
  .adm-user-summary-add-account:link, .adm-user-summary-add-account:hover {
    color: #818181; }

.adm-user-summary-no-results__button {
  height: 65px;
  margin-top: 30px;
  padding: 20px 30px;
  font-size: 18px; }

.adm-user-summary-show-hide-closed-accounts {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 300; }
  .adm-user-summary-show-hide-closed-accounts, .adm-user-summary-show-hide-closed-accounts:focus, .adm-user-summary-show-hide-closed-accounts:hover {
    color: #425161; }

.adm-alert-settings-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e3e7ea !important; }
  .adm-alert-settings-wrapper .adm-user-account-header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.adm-alert-wrapper {
  height: 100%;
  padding: 10px 40px; }

.adm-alert-title,
.adm-alert-body {
  line-height: 1; }

.adm-alert-title {
  font-size: 18px;
  font-weight: 500; }

.adm-alert-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

.adm-alert-body__inactive,
.adm-alert-body__active {
  font-size: 30px;
  font-weight: 600; }

.adm-alert-body__active {
  color: #07a853; }

.admin-alert-body__option-list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.admin-alert-body__option {
  font-size: 14px;
  font-weight: 400;
  padding-right: 5px; }

.adm-alert___error {
  font-weight: 700;
  padding-left: 20px;
  padding-top: 10px; }

.adm-user-account-header {
  border: 1px solid #e3e7ea;
  border-bottom: 0;
  margin-right: 1px;
  background-color: #fff;
  font-weight: 600;
  line-height: 50px; }

.adm-user-account-table__header-cell {
  height: 60px; }

.adm-user-account-header__item {
  border-bottom: 1px solid #e3e7ea;
  padding: 10px 25px;
  white-space: nowrap;
  vertical-align: middle; }
  .adm-user-account-header__item:last-child {
    border-bottom: none; }
  @media (min-width: 992px) {
    .adm-user-account-header__item {
      display: table-cell;
      float: none;
      border-right: 1px solid #e3e7ea;
      border-bottom: none; } }

.adm-user-account-header__item--breaking-words {
  word-break: break-all;
  white-space: initial;
  line-height: initial;
  padding-top: 10px;
  padding-bottom: 10px; }
  @media (min-width: 992px) {
    .adm-user-account-header__item--breaking-words {
      width: 20%; } }

.adm-user-account-header__item--multiline {
  line-height: 1em; }

.adm-user-account-header__tooltip-content {
  line-height: 18px;
  padding: 10px 0; }

.adm-user-account-header__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase; }

.adm-user-account-header__actions {
  clear: both;
  line-height: initial;
  vertical-align: middle;
  padding: 10px; }
  .adm-user-account-header__actions a {
    white-space: nowrap; }
  @media (min-width: 992px) {
    .adm-user-account-header__actions {
      display: table-cell;
      width: 100%;
      float: none; } }

.adm-user-account__table-wrapper {
  overflow-x: scroll; }

.adm-user-account-header__link {
  padding-left: 15px;
  font-size: 12px; }

.adm-user-account-table__header {
  border: 1px solid #e3e7ea; }

.adm-account-table__copy-btn {
  min-width: 20px;
  height: 20px;
  margin-left: 3px;
  padding: 3px 5px;
  line-height: 8px;
  vertical-align: baseline; }

.adm-edit-exchange-edit {
  position: absolute;
  right: 15px;
  padding-top: 10px; }

.adm-user-alert-title-size {
  width: 25rem;
  height: 7rem; }

.adm-view-data-exchanges-title {
  padding-left: 25px; }

.adm-view-exchanges-toggle-caret {
  font-size: 8px; }

.adm-view-exchanges-toggle {
  padding: 5px 10px;
  color: #425161;
  font-size: 14px; }
  .adm-view-exchanges-toggle:hover {
    color: #425161; }

.adm-view-exchanges-status {
  font-weight: normal;
  padding-left: 5px; }

.adm-account-filters-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 20px 10px; }
  .adm-account-filters-container label {
    font-size: 18px; }
  @media (max-width: 768px) {
    .adm-account-filters-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .adm-account-filters-container label {
        font-size: 15px; } }

.adm-list-data-exchanges-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 0 0 5rem; }

.adm-list-data-exchanges-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%; }

.adm-edit-exchange-modal-title {
  text-align: center; }

.adm-edit-user-exchange-modal {
  padding: 0 30px;
  width: 40rem; }

.adm-edit-exchanges-confirm-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 30px; }

.adm-edit-exchange-text {
  width: 80%;
  padding-left: 30px; }

.adm-edit-exchange-confirm-label {
  background: #e3e7ea;
  font-weight: bold; }

.form-control__message--error {
  color: #a94442;
  white-space: normal; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-payment-details__see-more {
  margin-left: 30px;
  font-size: 14px;
  font-weight: 400; }

.adm-payment-details__table {
  width: 100%;
  text-align: center; }

.adm-payment-details__head {
  padding: 0 5px 13px;
  font-size: 17px;
  font-weight: 400;
  text-align: center; }

.adm-payment-details__cell {
  padding: 0 5px 10px;
  font-size: 14px;
  font-weight: 300; }

.adm-discount-code-input .form-control-feedback {
  display: none; }

.adm-discount-code__discount-amount-container {
  padding-top: 10px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.advanced-search-container {
  position: relative; }

.advanced-search {
  display: inline-block;
  margin-top: 2px;
  margin-left: 10px;
  vertical-align: middle; }

.advanced-search-toggle {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  color: #bbbdbf;
  font-size: 14px; }
  .advanced-search-toggle:focus, .advanced-search-toggle:hover {
    color: #bbbdbf;
    text-decoration: none; }

.advanced-search-toggle--active-search {
  border-radius: 3px;
  background-color: #5d9eea; }
  .advanced-search-toggle--active-search, .advanced-search-toggle--active-search:focus, .advanced-search-toggle--active-search:hover {
    color: #fff; }

.advanced-search-toggle__panel-caret {
  visibility: hidden;
  position: absolute;
  top: 80%;
  right: 8px;
  z-index: 4;
  margin-top: 16px;
  border-width: 6px;
  color: #fff; }
  .advanced-search-toggle--open .advanced-search-toggle__panel-caret {
    visibility: inherit; }

.advanced-search-overlay {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 3;
  display: none;
  margin-top: -15px; }

.advanced-search-overlay--open {
  display: block; }

.advanced-search-overlay__form {
  padding: 30px;
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px #9e9e9e;
          box-shadow: 0 0 2px #9e9e9e; }

.advanced-search-footer .btn + .btn {
  margin-left: 20px; }

.advanced-search-account-status {
  margin-bottom: 50px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.landing-page-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

.landing-page-image-container {
  padding-top: 20px; }
  .landing-page-image-container .landing-page-image,
  .landing-page-image-container .image-toggle {
    cursor: pointer; }
  .landing-page-image-container .controls-container {
    padding-top: 10px;
    text-align: center; }

.advanced-search-container {
  position: relative; }

.advanced-search {
  display: inline-block;
  margin-top: 2px;
  margin-left: 10px;
  vertical-align: middle; }

.advanced-search-toggle {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  color: #bbbdbf;
  font-size: 14px; }
  .advanced-search-toggle:focus, .advanced-search-toggle:hover {
    color: #bbbdbf;
    text-decoration: none; }

.advanced-search-toggle--active-search {
  border-radius: 3px;
  background-color: #5d9eea; }
  .advanced-search-toggle--active-search, .advanced-search-toggle--active-search:focus, .advanced-search-toggle--active-search:hover {
    color: #fff; }

.advanced-search-toggle__panel-caret {
  visibility: hidden;
  position: absolute;
  top: 80%;
  right: 8px;
  z-index: 4;
  margin-top: 16px;
  border-width: 6px;
  color: #fff; }
  .advanced-search-toggle--open .advanced-search-toggle__panel-caret {
    visibility: inherit; }

.advanced-search-overlay {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 3;
  display: none;
  margin-top: -15px; }

.advanced-search-overlay--open {
  display: block; }

.advanced-search-overlay__form {
  padding: 30px;
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px #9e9e9e;
          box-shadow: 0 0 2px #9e9e9e; }

.advanced-search-footer .btn + .btn {
  margin-left: 20px; }

.advanced-search-account-status {
  margin-bottom: 50px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.users-search {
  display: inline-block;
  position: relative;
  width: 450px;
  vertical-align: middle; }

.users-search__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #5d9eea;
  font-size: 20px;
  z-index: 1; }

.users-search__spinner {
  position: absolute;
  top: 10px;
  right: 40px;
  font-size: 4px; }

.users-search .ui-autocomplete-list {
  font-size: 14px; }

.users-search .ui-autocomplete-list-item {
  line-height: 20px;
  white-space: nowrap; }
  .users-search .ui-autocomplete-list-item:hover .users-search--username {
    color: #fff; }

.users-search--username {
  color: #a9aaaa; }

.users-search__results--no-results {
  display: block;
  width: 450px; }
  .users-search__results--no-results .ui-autocomplete-list .ui-autocomplete-list-item {
    cursor: default; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.advanced-search-container {
  position: relative; }

.advanced-search {
  display: inline-block;
  margin-top: 2px;
  margin-left: 10px;
  vertical-align: middle; }

.advanced-search-toggle {
  position: relative;
  display: inline-block;
  padding: 5px 10px;
  color: #bbbdbf;
  font-size: 14px; }
  .advanced-search-toggle:focus, .advanced-search-toggle:hover {
    color: #bbbdbf;
    text-decoration: none; }

.advanced-search-toggle--active-search {
  border-radius: 3px;
  background-color: #5d9eea; }
  .advanced-search-toggle--active-search, .advanced-search-toggle--active-search:focus, .advanced-search-toggle--active-search:hover {
    color: #fff; }

.advanced-search-toggle__panel-caret {
  visibility: hidden;
  position: absolute;
  top: 80%;
  right: 8px;
  z-index: 4;
  margin-top: 16px;
  border-width: 6px;
  color: #fff; }
  .advanced-search-toggle--open .advanced-search-toggle__panel-caret {
    visibility: inherit; }

.advanced-search-overlay {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 3;
  display: none;
  margin-top: -15px; }

.advanced-search-overlay--open {
  display: block; }

.advanced-search-overlay__form {
  padding: 30px;
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #bbbdbf;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px #9e9e9e;
          box-shadow: 0 0 2px #9e9e9e; }

.advanced-search-footer .btn + .btn {
  margin-left: 20px; }

.advanced-search-account-status {
  margin-bottom: 50px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-accounts-search-item__review-status {
  text-transform: capitalize; }

.adm-accounts-search-item__actions {
  white-space: nowrap; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-accounts-search-item-list {
  overflow: scroll;
  padding: 0 15px; }

.adm-accounts-search-item-list__table {
  border-collapse: separate;
  border-spacing: 0 8px; }

.adm-accounts-search-item-list__table-header th {
  height: 60px; }

.adm-accounts-search-results__line-separator {
  margin: 10px 0; }

.adm-accounts-search-results__count-stats {
  color: #626363;
  line-height: 40px; }

.adm-accounts-search-results {
  margin-top: 20px;
  margin-bottom: 50px; }

.adm-accounts-search-results__status-legend {
  width: auto; }

.adm-accounts-search-results__status-label {
  margin-left: 30px;
  position: relative; }

.adm-accounts-search-results__status-icon {
  width: 16px;
  height: 16px;
  background-color: #B1DFC3;
  display: inline-block;
  border-radius: 100%;
  position: absolute;
  left: -23px;
  top: 1px; }

.adm-accounts-search-results__status-icon--pending {
  background-color: #BDD8F1; }

.adm-accounts-search-results__status-icon--closed {
  background-color: #D8DCE4; }

.adm-accounts-search-results__bulk-actions {
  width: auto; }

.btn-bulk-actions {
  width: 165px; }

.blacklisted-domain-form {
  padding: 0 30px; }

.adm-blacklisted-domain-modal__header {
  padding: 0 30px; }

.adm-blacklisted-domain-modal__header {
  padding: 0 30px; }

.blacklisted-domains__row {
  margin-bottom: 30px; }

.blacklisted-domains__spinner {
  display: block;
  margin-top: 20px; }

.blacklisted-domains__missing-info {
  margin-top: 20px; }

.blacklisted-domains__btn--select-all {
  margin-right: 15px; }

.blacklisted-domains__input--search {
  display: inline-block;
  width: inherit; }

.blacklisted-domains__create-link {
  font-size: 18px; }

.blacklisted-domains__icon {
  cursor: pointer; }

.blacklisted-domains__icon:first-child {
  margin-right: 5px; }

td:first-child, td:last-child {
  width: 5%; }

.adm-data-reports-filter__type-select .adm-select {
  min-width: 167px; }

.adm-fileunput {
  position: relative; }

.adm-fileunput__input {
  position: absolute;
  visibility: hidden; }

adm-multiselect {
  position: relative; }

.multiselect__input {
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer; }
  .multiselect__input:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%; }

.multiselect--disabled {
  color: #aab2bd; }
  .multiselect--disabled .multiselect__option {
    cursor: default; }

.multiselect__body {
  display: none;
  position: absolute;
  z-index: 10;
  overflow: auto;
  left: 0;
  top: 100%;
  margin: -1px 0 0;
  min-width: 100%;
  max-height: 10em;
  text-align: left;
  background: #fff;
  border: #ccc solid 1px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.2); }

.multiselect__body--active {
  display: inherit; }

.multiselect__checkbox {
  display: inline-block;
  margin-bottom: -5px; }

.multiselect__option {
  padding: 0 10px;
  line-height: 1.75em;
  cursor: pointer; }
  .multiselect__option:hover {
    background: #efefef; }

.multiselect__checkbox {
  pointer-events: none; }

.multiselect-group {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 5px 0; }

.multiselect-group__label {
  float: left;
  padding: 0 10px;
  width: 10%;
  min-width: 60px; }

.multiselect-group__options {
  overflow: hidden; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.create-discount__row {
  margin-bottom: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.create-discount .create-discount__label {
  margin-bottom: 15px;
  font-size: 18px; }

.create-discount__options {
  margin: 0;
  padding-left: 45px;
  list-style: none; }

.create-discount__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 14px; }

.create-discount__uses-input-container {
  max-height: 30px;
  margin-right: 5px; }

.create-discount__option--highlighted {
  font-size: 15px;
  font-weight: 600; }

.create-discount__radio .tst-radio__label {
  color: #425161;
  font-size: 14px; }

.create-discount__option-space {
  margin-right: 5px; }

.create-discount__datepicker {
  width: 200px;
  margin-right: 10px; }

.create-discount__btn + .create-discount__btn {
  margin-left: 20px; }

.discount-details {
  width: 350px;
  padding: 0 35px 25px;
  font-weight: 300; }

.discount-details__header {
  margin: 0 0 20px;
  font-size: 23px;
  font-weight: 300; }

.discount-details__content {
  margin-bottom: 30px; }

.discount-details__row {
  margin-bottom: 12px;
  font-size: 14px; }

.discount_rebill_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.discount-type-label {
  font-size: 14px;
  margin: 0 10px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.discounts-filtering > * {
  margin-bottom: 5px;
  margin-right: 15px; }

.discounts-filtering > a {
  margin-top: 3px; }

.discounts-filtering__search-control {
  width: 160px;
  display: inline-block; }

.discounts__row {
  margin-bottom: 30px; }

.discounts__spinner {
  display: block;
  margin-top: 20px; }

.discounts__missing-info {
  margin-top: 20px; }

.discounts__multiselect {
  display: inline-block;
  width: 160px;
  height: 40px;
  margin-right: 15px;
  text-align: left;
  vertical-align: bottom;
  z-index: 10; }

.discounts__btn--select-all {
  margin-right: 15px; }

.discounts__create-link {
  font-size: 18px; }

.discounts__tab {
  display: inline-block;
  width: 100px;
  margin-right: -4px;
  padding: 3px 20px;
  border: 1px solid #d7dce1;
  border-radius: 3px;
  background-color: #fff;
  color: #d7dce1;
  text-align: center;
  cursor: pointer; }
  .discounts__tab:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .discounts__tab:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

.discounts__tab--active {
  border-color: #5a9ce2;
  background-color: #5a9ce2;
  color: #fff; }

.discounts__inactive-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #be1e2d;
  cursor: pointer; }

.discounts__inactive-icon-minus {
  width: 10px;
  height: 2px;
  background-color: #d7dce1; }

.tracking-links-filtering__search-confirm {
  margin-top: 5px; }

.tracking-links-add-tracking-row {
  margin-bottom: 10px; }

.data-table-container {
  margin-top: 20px; }

.tracking-links-filtering__search-control {
  height: 50px; }

#create-tracking-link-btn-label {
  position: relative;
  top: -2px; }

.delete-tracking-link {
  margin-top: 10px; }

.adm-select-dropdown .options ul li {
  text-align: left; }

.adm-select__placeholder, .adm-select__value {
  text-align: left;
  width: 100%; }

.campaign-label, .channel-label {
  line-height: 41px; }

.add-campaign {
  margin-top: 17px; }

#create-campaign-btn-label {
  position: relative;
  top: -2px; }

.tracking-link-create-confirm-btn {
  margin-right: 15px; }

.copy-path-link {
  float: right;
  margin-right: 15px;
  margin-top: -17px;
  cursor: pointer; }


.created-at-info {
  margin-top: 5px; }

.tst-rewards-table__cell--accepted {
  color: #0D8D4D; }

.tst-rewards-table {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #465565;
  width: 100%; }
  .tst-rewards-table tr {
    height: 66px; }
  .tst-rewards-table th,
  .tst-rewards-table td {
    padding: 0 10px; }

.tst-rewards-table__row {
  height: 66px;
  border-top: solid 1px #CCD1D9; }

.tst-rewards-table__cell--black {
  color: #aab2bd; }

.tst-rewards-table__header th {
  text-align: left;
  font-weight: bold;
  color: #aab2bd; }

.referral-list__missing-info {
  margin: 15px 0 30px;
  font-size: 17px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.tst-subscription-option {
  display: block;
  position: relative;
  padding: 4px 20px 4px 12px;
  color: #4f4f4f;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer; }

.tst-reports-select__dropdown .tst-subscription-option:hover {
  background-color: #f5f7fa; }

.tst-subscription-option--disabled {
  cursor: default; }

.tst-subscription-option__dropdown-icon {
  position: absolute;
  top: 50%;
  right: 3px;
  margin-top: -3px;
  font-size: 4px;
  color: #000; }

.tst-subscription-option__status-icon {
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0; }

.tst-subscription-option__text {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  width: 100%;
  padding: 4px 85px 3px 0;
  word-wrap: break-word; }
  .tst-subscription-option__label .tst-subscription-option__text {
    line-height: 15px; }

.tst-subscription-option__review-status {
  display: inline-block;
  width: 60px;
  padding: 6px;
  border-radius: 3px;
  background-color: #27323d;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  position: absolute;
  right: 19px;
  top: 50%;
  margin-top: -11px; }

.review-practice__status {
  background: initial;
  color: #118d4c;
  border: 1px solid #118d4c; }

.review-practice__status--inactive,
.tst-subscription-option__status-icon--inactive {
  color: #dde1e5; }

.tst-subscription-option__status-icon--active {
  color: #07a853; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.tst-reports-select {
  position: relative; }
  .tst-reports-select.dropdown {
    position: relative; }
  .tst-reports-select.dropdown-toggle:focus {
    outline: 0; }

.tst-reports-select__dropdown {
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  border-color: transparent; }
  .tst-reports-select__dropdown.dropdown-menu {
    position: absolute;
    z-index: 9999;
    display: none;
    float: left;
    min-width: 165px;
    padding: 3px 0;
    margin: 0;
    list-style: none;
    text-align: left;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    background-clip: padding-box;
    border: none; }

.open > .tst-reports-select__dropdown.dropdown-menu {
  display: block; }

.tst-reports-select__dropdown-toggle {
  padding: 3px 0;
  border-radius: 5px;
  border-color: transparent;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }

.tst-reports-select__dropdown-toggle--no-shadow {
  -webkit-box-shadow: none;
          box-shadow: none; }

.tst-reports-select__icon {
  position: absolute;
  top: 50%;
  right: 7px;
  margin-top: -1px;
  font-size: 4px;
  color: black; }

.tst-reports-select__dropdown-submenu {
  position: relative; }
  .tst-reports-select__dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    border-radius: 4px; }
  .tst-reports-select__dropdown-submenu:hover .dropdown-menu {
    display: block; }

.tst-reports-select__dropdown--nested {
  position: static; }

.adm-account-bar__select {
  max-width: 380px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.balance-targets__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: rem(14px); }

.balance-rules__title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: rem(14px);
  margin-top: 20px; }

.balance__item {
  margin-bottom: 15px;
  border-bottom: 1px solid #c1c6ca; }

.balance__item--empty {
  display: none;
  height: 26px; }
  @media (min-width: 768px) {
    .balance__item--empty {
      display: block; } }

.balance__value {
  font-size: 18px;
  font-weight: 600;
  text-align: right; }

.balance-rules__rules {
  padding-top: 15px; }

.rules__item {
  position: relative; }
  .rules__item:not(:last-child) {
    margin-bottom: 12px; }

.rules__icon {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: .75em; }

.rules__icon--pending {
  color: #ccd1d9; }

.rules__icon--broken {
  color: #dc3519; }

.rules__icon--fulfilled {
  color: #12ac67; }

.rules__text {
  padding-left: 25px; }
  .rules__text span {
    color: #118d4c; }

.balance__label .combine-offers__tooltip {
  font-weight: normal; }

.combine-offers__tooltip {
  min-width: 150px;
  margin: 15px 0;
  line-height: 1.5; }

.progress-text {
  font-size: rem(14px);
  padding-left: 5px; }

.progress-text__consistency {
  font-size: rem(14px);
  margin-left: 25px; }

.progress-text__consistency_note {
  font-size: rem(12px);
  margin-left: 25px; }

.progress-text__note {
  font-style: italic; }

.progress-text__yellow {
  color: #EBBC4E; }

.additional-profits-overlay {
  position: relative;
  margin-left: 5px; }

.additional-profits-box {
  background-color: black;
  opacity: 15%;
  position: absolute;
  padding: 1px 7px; }

.additional-profits-text {
  color: black;
  position: absolute;
  left: 5px;
  top: -1px;
  bottom: 1px; }

.not-available-for-payout {
  color: #425161 !important; }

/* IE and EDGE */
progress.profit-target {
  /* RESETS */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 255px;
  height: 5px;
  margin-left: 25px;
  background-color: rgba(0, 0, 0, 0.15);
  color: black; }

/* WEBKIT BROWSERS - CHROME, OPERA AND SAFARI */
progress.profit-target::-webkit-progress-bar {
  background-color: rgba(0, 0, 0, 0.15); }

progress.profit-target::-webkit-progress-value {
  background-color: black; }

/* MOZILLA FIREFOX */
progress.profit-target::-moz-progress-bar {
  background-color: black; }

progress.profit-target[value="100"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 255px;
  height: 5px;
  margin-left: 25px;
  background-color: #169B42;
  color: #169B42; }

/* WEBKIT BROWSERS - CHROME, OPERA AND SAFARI */
progress.profit-target[value="100"]::-webkit-progress-bar {
  background-color: #169B42; }

progress.profit-target[value="100"]::-webkit-progress-value {
  background-color: #169B42; }

/* MOZILLA FIREFOX */
progress.profit-target[value="100"]::-moz-progress-bar {
  background-color: #169B42; }

/* IE and EDGE */
progress.consistency-target {
  /* RESETS */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 255px;
  height: 5px;
  margin-left: 25px;
  background-color: rgba(0, 0, 0, 0.15);
  color: #EBBC4E; }

/* WEBKIT BROWSERS - CHROME, OPERA AND SAFARI */
progress.consistency-target::-webkit-progress-bar {
  background-color: rgba(0, 0, 0, 0.15); }

progress.consistency-target::-webkit-progress-value {
  background-color: #EBBC4E; }

/* MOZILLA FIREFOX */
progress.consistency-target::-moz-progress-bar {
  background-color: #EBBC4E; }

progress.consistency-target[value="100"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 255px;
  height: 5px;
  margin-left: 25px;
  background-color: #169B42;
  color: #169B42; }

/* WEBKIT BROWSERS - CHROME, OPERA AND SAFARI */
progress.consistency-target[value="100"]::-webkit-progress-bar {
  background-color: #169B42; }

progress.consistency-target[value="100"]::-webkit-progress-value {
  background-color: #169B42; }

/* MOZILLA FIREFOX */
progress.consistency-target[value="100"]::-moz-progress-bar {
  background-color: #169B42; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-journal__list-item .icon {
  font-size: 2em;
  color: #000;
  text-align: center;
  opacity: 0.1; }
  .adm-journal__list-item .icon .view.viewing {
    opacity: 0.5; }

.adm-journal__popup-hidden-wrapper {
  position: absolute;
  -webkit-transform: translateY(-110%) translateX(-47%);
      -ms-transform: translateY(-110%) translateX(-47%);
          transform: translateY(-110%) translateX(-47%);
  padding: 20px;
  z-index: 1; }

.adm-journal__header {
  position: relative; }
  .adm-journal__header .adm-journal-header__close-btn {
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    outline: 0;
    color: #313f4d; }
    .adm-journal__header .adm-journal-header__close-btn:hover {
      opacity: 0.7; }

.adm-journal__popup-container {
  min-width: 365px;
  background: #fff;
  color: #313f4d;
  padding: 15px;
  -webkit-box-shadow: 0 0 10px -3px;
          box-shadow: 0 0 10px -3px; }

.adm-journal__felt-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center; }
  .adm-journal__felt-container label {
    font-size: 13px; }

.adm-journal__felt {
  font-size: 2em;
  padding: 10px; }

.adm-journal__followed-plan {
  margin: 10px 0 20px 10px; }
  .adm-journal__followed-plan .button.button--tiny {
    cursor: auto;
    min-width: 25px;
    height: 25px;
    padding: 0px 15px;
    border-radius: 7px;
    border: 1px solid #485d71;
    margin-left: 10px; }
    .adm-journal__followed-plan .button.button--tiny.button--secondary {
      background-color: #485d71; }

.adm-journal__entry textarea {
  height: 100px;
  width: 100%;
  font-size: 13px;
  background-color: #f5f7fa;
  border: none;
  resize: none;
  outline: none; }

.adm-journal__arrow {
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -21px;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-top: 23px solid #fff;
  -webkit-filter: drop-shadow(0px 0px 5px #313f4d);
          filter: drop-shadow(0px 0px 5px #313f4d); }

.adm-journal__arrow-cover-drop-shadow-line {
  position: absolute;
  width: 40px;
  height: 3px;
  left: 50%;
  bottom: 19px;
  margin-left: -20px;
  background: #fff; }

.adm-journal__arrow-cover-drop-shadow {
  position: absolute;
  width: 60px;
  height: 12px;
  left: 50%;
  bottom: 20px;
  margin-left: -31px;
  background: #fff; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
adm-account-report-data {
  display: block;
  position: relative; }

.report-filters {
  margin-bottom: 20px;
  word-spacing: -0.25em; }

.report-filters__button {
  margin: 0 10px 10px 0;
  word-spacing: 0; }

.report-filters__button--active {
  background-color: #e6e9ed;
  cursor: default; }

.report-filters__edit-button {
  margin-left: 30px; }

.report-table-container {
  overflow: auto;
  max-width: 100%;
  min-height: 240px; }

.report-table-container--is-loading {
  position: relative;
  min-height: 45px; }
  .report-table-container--is-loading .report-table-container__spinner {
    z-index: 1;
    display: block; }
  .report-table-container--is-loading:before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.95) 50px, rgba(255, 255, 255, 0.5));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 50px, rgba(255, 255, 255, 0.5)); }
  .report-table-container--is-loading .report-table-container__table {
    position: relative;
    z-index: 0; }

.report-table-container__spinner {
  display: none;
  position: absolute;
  font-size: 7px; }

.report-table {
  line-height: 18px;
  color: #666; }

.report-table th {
  color: #313f4d; }

.report-table td {
  white-space: nowrap; }

.report-table td, .report-table th {
  padding: 15px; }

.report-table__average {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(187, 189, 191, 0.4)), to(rgba(187, 189, 191, 0.4))) 0 0/100% 1px repeat-x;
  background: -o-linear-gradient(rgba(187, 189, 191, 0.4), rgba(187, 189, 191, 0.4)) 0 0/100% 1px repeat-x;
  background: linear-gradient(rgba(187, 189, 191, 0.4), rgba(187, 189, 191, 0.4)) 0 0/100% 1px repeat-x; }

.report-table__header {
  vertical-align: top;
  background-color: #f5f7fa; }

.report-table__average {
  background-color: #f5f7fa; }
  .report-table__average td {
    background: -webkit-gradient(linear, left top, left bottom, from(#e6e9ed), to(#e6e9ed)) 0 0/1px 100% no-repeat;
    background: -o-linear-gradient(#e6e9ed, #e6e9ed) 0 0/1px 100% no-repeat;
    background: linear-gradient(#e6e9ed, #e6e9ed) 0 0/1px 100% no-repeat; }

.report-table__days tr:hover {
  background-color: #f5f7fa; }

.report-table__days td {
  border-top: 1px solid #e6e9ed; }

.report-table__deleted-row {
  color: #bbbdbf;
  background-color: #f0f0f0; }
  .report-table__deleted-row:hover {
    color: inherit; }

.report-tooltip {
  margin: -15px;
  padding: 15px; }

.report-tooltip__content {
  width: 180px;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 400; }
  .report-tooltip__content strong {
    color: #07a853; }

.report-tooltip__title {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #07a853; }

.report-tooltip__section {
  margin: 15px 0; }

.report-message {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 50px 0 40px; }

.report-message__title {
  margin-bottom: 20px; }

.report-message__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #9b9b9b; }

.report-control {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 5px;
  text-align: center; }

.report-control__button {
  height: 40px;
  width: 40px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); }
  .report-control__button:active {
    background-color: #eee;
    -webkit-box-shadow: none;
            box-shadow: none; }

.report-control__icon {
  font-size: 6px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.report-summary--expanded + adm-account-report-summary {
  margin-top: 76px; }

.report-summary__body {
  padding: 40px 25px 25px; }

.summary-header {
  padding: 0 10px; }

.summary-header__item {
  padding: 0 15px;
  line-height: 66px; }

.summary-header__strong {
  font-weight: 600; }

.summary-title {
  font-size: 18px;
  font-weight: 300; }

.summary-title__icon {
  vertical-align: -1px;
  color: #485d71; }

.summary-title__status-icon {
  font-size: 13px; }

.summary-title__status-icon--inactive {
  color: #dde1e5; }

.summary-title__status-icon--active {
  color: #07a853; }

.summary-title__account-name {
  display: inline;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: inherit;
  cursor: pointer; }

.summary-title__account-name--disabled {
  cursor: text; }

.summary-title__item {
  margin-right: 3px; }

.summary-details {
  font-size: 16px;
  font-weight: 300;
  text-align: justify; }

.summary-details__item {
  position: relative;
  display: inline-block;
  margin-right: 1px;
  word-spacing: 0; }
  .summary-details__item:not(:last-child):before {
    content: '';
    position: absolute;
    right: -1px;
    top: 1px;
    bottom: 15px;
    width: 1px;
    background-color: #e6e9ed; }

.summary-tooltip {
  font-size: 14px;
  line-height: 1.8;
  display: inline-block; }
  .summary-tooltip .tooltip {
    font-size: 14px; }
  .summary-tooltip .tooltip-arrow {
    display: none; }
  .summary-tooltip .tooltip-inner {
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 4px rgba(39, 50, 61, 0.33);
            box-shadow: 0 0 4px rgba(39, 50, 61, 0.33);
    color: #425161;
    text-align: left;
    max-width: 300px;
    word-wrap: break-word; }

.summary-tooltip__parameters {
  line-height: 33px;
  white-space: nowrap;
  background: -o-linear-gradient(transparent 32px, #e6e9ed 32px) 0 100%/100% 33px repeat-y;
  background: linear-gradient(transparent 32px, #e6e9ed 32px) 0 100%/100% 33px repeat-y; }
  .summary-tooltip__parameters > dt {
    display: inline-block;
    min-width: 120px;
    background: #fff; }
  .summary-tooltip__parameters > dd {
    display: inline; }
    .summary-tooltip__parameters > dd:after {
      content: '';
      display: block; }

.summary-tooltip__section {
  margin: 20px 0; }

.summary-tooltip__horiz-rule {
  color: #e6e9ed; }

.summary-tooltip__highlight {
  font-weight: 600; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.reports-list__collapse-btn {
  font-weight: 300;
  margin: 30px 0;
  display: block;
  color: #313f4d;
  font-size: 18px; }
  .reports-list__collapse-btn .report-control__icon {
    font-size: 5px; }

.reports-list__item {
  margin-bottom: 16px;
  display: block; }

.reports-list__empty-list-container {
  min-height: 285px; }

.reports-list__details-box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #dce0e4;
          box-shadow: 0 0 0 1px #dce0e4; }

.reports-list__upper-section {
  background-color: #313f4d; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-multi-select-list .select2-choice {
  border-radius: 0; }

.adm-multi-select-list .select2-choice {
  height: 50px;
  padding-bottom: 12px;
  padding-top: 12px; }
  .adm-multi-select-list .select2-choice:after {
    bottom: 21px; }

.adm-multi-select-list .ui-select-match {
  line-height: 26px; }

.adm-multi-select-list .select2-choice {
  border: none; }

.adm-multi-select-list__list-container {
  padding: 0 15px; }
  .adm-multi-select-list__list-container .user-profile-items-list__item:last-child {
    margin-bottom: 10px; }

.adm-multi-select-list__remove-btn {
  border: none;
  background: none;
  font-size: 13px;
  float: right;
  color: #aaa;
  padding: 0; }
  .adm-multi-select-list__remove-btn:focus {
    outline: none; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-user-profile__form-header {
  margin-bottom: 35px; }

.adm-user-profile__form-header__header {
  font-size: 33px;
  font-weight: 300;
  margin: 8px 0 0; }

.adm-user-profile__action {
  position: relative;
  float: right; }

.adm-user-profile__spinner {
  margin-right: 5px; }
  @media (max-width: 991px) {
    .adm-user-profile__spinner {
      position: absolute;
      right: 0.6em;
      bottom: 100%; } }

.adm-user-profile__activate-user-btn {
  background: #12ac67;
  color: #fff; }

.adm-user-profile__btn {
  vertical-align: middle; }
  @media (min-width: 992px) {
    .adm-user-profile__btn {
      width: 125px; } }
  @media (min-width: 480px) and (max-width: 991px) {
    .adm-user-profile__btn {
      margin-top: 10px;
      width: 100%; } }

@media (min-width: 1396px) {
  .adm-user-profile__form-left-col {
    padding-right: 30px; } }

@media (min-width: 1396px) {
  .adm-user-profile__form-right-col {
    padding-left: 30px; } }

.adm-user-profile__section-separator {
  border-top: 1px solid #e6eaef; }

.adm-user-profile__reset-password-col {
  margin-top: 13px; }

.adm-user-profile__reset-password-col__header {
  font-weight: 300;
  display: inline;
  margin-right: 20px; }

.adm-user-profile__reset-password-btn {
  font-size: 14px; }

.adm-user-profile__add-mds-btn {
  padding-left: 16px; }

.adm-user-profile__education-section-header {
  font-weight: 300;
  font-size: 23px;
  margin-bottom: 15px; }

.adm-user-profile__forget-user-btn {
  background: #e9573f;
  color: #fff; }

.trading-plan-boxes {
  margin-right: -5px;
  margin-left: -5px; }
  .trading-plan-boxes:before, .trading-plan-boxes:after {
    display: table;
    content: " "; }
  .trading-plan-boxes:after {
    clear: both; }
  .trading-plan-boxes .adm-select {
    border: 0;
    border-top: 1px solid #aaa;
    border-radius: 0; }
  .trading-plan-boxes .adm-select-dropdown {
    border-top: 1px solid #aab2bd;
    border-radius: 5px; }

.trading-plan-boxes__col {
  padding: 20px 5px;
  width: 100%;
  float: left; }
  @media (min-width: 992px) {
    .trading-plan-boxes__col {
      width: 50%; } }
  @media (min-width: 1396px) {
    .trading-plan-boxes__col {
      width: 25%; } }

.trading-plan-box {
  min-height: 95px;
  background-color: #e6e9ed;
  border: 1px solid #aaa; }

.trading-plan-box__header {
  padding: 15px;
  font-size: 16px; }

.trading-plan-box__content {
  padding: 0 15px 15px;
  min-height: 49px; }

.trading-plan-box__content--with-select {
  padding: 0; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.add-new-user {
  display: block;
  width: 450px;
  padding: 0 30px; }

.add-new-user__form {
  padding-bottom: 30px; }

.add-new-user__controls {
  margin-top: 15px;
  text-align: right; }

.add-new-user__btn {
  margin-left: 15px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-new-user-button {
  display: inline-block;
  width: 38px;
  line-height: 38px;
  text-align: center;
  color: #999;
  border-radius: 50%;
  border: 1px solid currentColor;
  cursor: pointer; }
  .adm-new-user-button:hover {
    color: #e6e6e6; }

.adm-new-user-button__icon {
  vertical-align: -6px;
  font-size: 20px; }

.adm-user-sidebar-intercom-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px; }
  .adm-user-sidebar-intercom-tag ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .adm-user-sidebar-intercom-tag li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .adm-user-sidebar-intercom-tag .adm-user-sidebar-intercom-tag-title {
    text-align: left;
    font-weight: 600;
    font-size: 14px; }
  .adm-user-sidebar-intercom-tag .adm-user-sidebar-intercom-tag-expand {
    background: none;
    border: none;
    color: black;
    text-decoration: underline;
    cursor: pointer;
    padding: 10px 0 0;
    font-weight: 600;
    font-size: 12px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.adm-user-sidebar-info {
  margin-bottom: 30px;
  color: #425161;
  font-size: 11px;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.adm-user-sidebar-info__avatar {
  margin-bottom: 10px;
  border-radius: 50%; }

.adm-user-sidebar-info__avatar-default {
  background: #e0e0e0;
  color: #fff;
  font-size: 75px; }

.adm-user-sidebar-info__avatar-img {
  width: 75px;
  height: 75px; }

.adm-user-sidebar-info__name {
  color: #405060;
  font-size: 17px;
  font-weight: 700; }

.adm-user-nav__item {
  margin-bottom: 35px;
  outline: none; }

.adm-user-nav__link {
  display: inline-block;
  color: #27323b; }
  .adm-user-nav__link:focus, .adm-user-nav__link:hover {
    color: #4a90e2;
    text-decoration: none; }

.adm-user-nav__link--active {
  color: #4a90e2; }

.adm-user-nav__icon {
  margin-bottom: 5px;
  font-size: 30px; }

.adm-user-nav__title {
  font-size: 14px; }

.adm-user-nav__icon-holder {
  position: relative;
  display: inline-block;
  vertical-align: top; }

.adm-user-nav__warning-icon {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: -7px;
  right: -7px;
  padding: 2px;
  font-size: 10px;
  color: #fff;
  background: #e9573f;
  border-radius: 50%; }

.adm-user-sidebar-intercom-tag-container {
  width: 100%;
  max-width: 215px; }

.adm-missing-agreements-modal__body {
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.persons-filtering > * {
  margin-bottom: 5px;
  margin-right: 5px; }

.persons-filtering > a {
  margin-top: 3px; }

.persons-filtering__search-control {
  width: 160px;
  display: inline-block; }

.persons__row {
  margin-bottom: 30px;
  margin-top: 5px; }

.persons__spinner {
  display: block;
  margin-top: 20px; }

.persons__missing-info {
  margin-top: 20px; }

.persons__multiselect {
  display: inline-block;
  width: 160px;
  height: 40px;
  margin-right: 15px;
  text-align: left;
  vertical-align: bottom;
  z-index: 10; }
  .persons__multiselect .multiselect__body {
    padding: 0.2em;
    overflow-y: hidden; }
    .persons__multiselect .multiselect__body .tst-checkbox__icon {
      visibility: hidden !important; }

.persons__btn--select-all {
  margin-right: 15px; }

.create__person-link {
  font-size: 18px;
  margin-top: 9px; }

.persons__btn--go {
  margin-left: 5px;
  margin-top: 5px;
  float: left; }

.link-with-icon--left .icon {
  margin-top: 0;
  font-size: 18px; }

#create-person-btn-label {
  position: relative;
  top: -3px; }

.tst-checkbox__label {
  margin-top: -5px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.persons-filtering > * {
  margin-bottom: 5px;
  margin-right: 5px; }

.persons-filtering > a {
  margin-top: 3px; }

.persons-filtering__search-control {
  width: 160px;
  display: inline-block; }

.persons__row {
  margin-bottom: 30px;
  margin-top: 5px; }

.persons__spinner {
  display: block;
  margin-top: 20px; }

.persons__missing-info {
  margin-top: 20px; }

.persons__multiselect {
  display: inline-block;
  width: 160px;
  height: 40px;
  margin-right: 15px;
  text-align: left;
  vertical-align: bottom;
  z-index: 10; }
  .persons__multiselect .multiselect__body {
    padding: 0.2em;
    overflow-y: hidden; }
    .persons__multiselect .multiselect__body .tst-checkbox__icon {
      visibility: hidden !important; }

.persons__btn--select-all {
  margin-right: 15px; }

.create__person-link {
  font-size: 18px;
  margin-top: 9px; }

.persons__btn--go {
  margin-left: 5px;
  margin-top: 5px;
  float: left; }

.link-with-icon--left .icon {
  margin-top: 0;
  font-size: 18px; }

.link-users-btn {
  margin-top: 15px;
  margin-left: 15px; }

.person_details {
  position: relative; }
  .person_details:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 1px;
    bottom: 15px;
    width: 1px;
    background-color: #e6e9ed;
    height: 110%;
    margin-right: 15px; }

.adm-persons__go-back {
  line-height: 36px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.users-search {
  display: inline-block;
  position: relative;
  width: 480px;
  vertical-align: middle; }

.users-search__icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #5d9eea;
  font-size: 20px;
  z-index: 1; }

.users-search__spinner {
  position: absolute;
  top: 10px;
  right: 40px;
  font-size: 4px; }

.users-search .ui-autocomplete-list {
  font-size: 14px; }

.users-search .ui-autocomplete-list-item {
  line-height: 20px;
  white-space: nowrap; }
  .users-search .ui-autocomplete-list-item:hover .users-search--username {
    color: #fff; }

.users-search-item.disabled {
  color: lightgray; }

.users-search-item .users-search-item--unbind:hover {
  color: red; }

.users-search--username {
  color: #a9aaaa; }

.users-search__results--no-results {
  display: block;
  width: 480px; }
  .users-search__results--no-results .ui-autocomplete-list .ui-autocomplete-list-item {
    cursor: default; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.tst-spinner {
  vertical-align: middle;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  font-size: 5px;
  position: relative;
  text-align: left;
  text-indent: 100%;
  border-top: 0.6em solid rgba(93, 158, 234, 0.2);
  border-right: 0.6em solid rgba(93, 158, 234, 0.2);
  border-bottom: 0.6em solid rgba(93, 158, 234, 0.2);
  border-left: 0.6em solid #5d9eea;
  -webkit-transform: rotate(0deg) translateZ(0);
          transform: rotate(0deg) translateZ(0);
  -webkit-animation: tst-spinner-animation 1.1s infinite linear;
          animation: tst-spinner-animation 1.1s infinite linear; }

.tst-spinner,
.tst-spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em; }

@-webkit-keyframes tst-spinner-animation {
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
            transform: rotate(360deg) translateZ(0); } }

@keyframes tst-spinner-animation {
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
            transform: rotate(360deg) translateZ(0); } }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.tst-upload-btn {
  white-space: nowrap; }

.tst-upload-btn__section {
  display: inline-block;
  vertical-align: middle; }

.tst-upload-btn__spinner {
  position: absolute;
  font-size: 20px; }

.tst-upload-btn__container {
  vertical-align: middle; }

.tst-upload-btn__action {
  cursor: pointer; }

.tst-upload-btn__input {
  position: absolute;
  visibility: hidden; }

.restock-errors {
  width: 350px;
  padding: 0 35px 25px;
  font-weight: 300;
  margin-bottom: 30px; }

.restock-errors__header {
  margin: 0 0 20px;
  font-size: 23px;
  font-weight: 300; }

.restock-errors__content {
  margin-bottom: 30px; }

.restock-errors__row {
  margin-bottom: 12px;
  font-size: 14px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
.persons-filtering > * {
  margin-bottom: 5px;
  margin-right: 5px; }

.persons-filtering > a {
  margin-top: 3px; }

.persons-filtering__search-control {
  width: 160px;
  display: inline-block; }

.persons__row {
  margin-bottom: 30px;
  margin-top: 5px; }

.persons__spinner {
  display: block;
  margin-top: 20px; }

.persons__missing-info {
  margin-top: 20px; }

.persons__multiselect {
  display: inline-block;
  width: 160px;
  height: 40px;
  margin-right: 15px;
  text-align: left;
  vertical-align: bottom;
  z-index: 10; }
  .persons__multiselect .multiselect__body {
    padding: 0.2em;
    overflow-y: hidden; }
    .persons__multiselect .multiselect__body .tst-checkbox__icon {
      visibility: hidden !important; }

.persons__btn--select-all {
  margin-right: 15px; }

.create__person-link {
  font-size: 18px;
  margin-top: 9px; }

.persons__btn--go {
  margin-left: 5px;
  margin-top: 5px;
  float: left; }

.link-with-icon--left .icon {
  margin-top: 0;
  font-size: 18px; }

td span.stock-level-value__error {
  color: red; }



.campaign-label, .channel-label {
  line-height: 41px; }

.add-campaign {
  margin-top: 17px; }

#create-campaign-btn-label {
  position: relative;
  top: -2px; }

.agreement-version-create-confirm-btn {
  margin-right: 15px; }

.copy-path-link {
  float: right;
  margin-right: 15px;
  margin-top: -17px;
  cursor: pointer; }

.agreement-version-create__active-note {
  color: red;
  padding-bottom: 30px; }

.adm-email-log__error {
  text-align: center;
  padding: 40px 0;
  font-size: 24px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .adm-email-log__error .adm-email-log__error-copy {
    padding-left: 10px; }

.adjustments-table {
  width: 100%; }
  .adjustments-table th,
  .adjustments-table td {
    padding: 10px 25px; }
  .adjustments-table th:first-child {
    width: 120px; }
  .adjustments-table td {
    border-top: 1px solid #e6e9ed;
    white-space: nowrap; }

.adjustments-table__icon {
  cursor: pointer; }
  .adjustments-table__icon:not(:last-child) {
    margin-right: 15px; }

.adjustments-header {
  margin: 0 20px 20px; }

.payments-data {
  width: 100%;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: center; }
  .payments-data > thead > tr > th {
    padding: 0 3px 14px;
    vertical-align: bottom;
    font-size: 17px;
    font-weight: 400;
    white-space: nowrap;
    text-align: inherit; }
  .payments-data > tbody > tr > td {
    padding: 0 3px;
    height: 2em;
    white-space: nowrap; }

.payments-data__col:nth-child(1) {
  width: 12%; }

.payments-data__col:nth-child(2) {
  width: 16%; }

.payments-data__col:nth-child(3) {
  width: 12%; }

.payments-data__col:nth-child(4) {
  width: 16%; }

.payments-data__col:nth-child(5) {
  width: 11%; }

.payments-data__col:nth-child(6) {
  width: 11%; }

.payments-data__col:nth-child(7) {
  width: 11%; }

.payments-data__col:nth-child(8) {
  width: 10%; }

.payments-data__data-row:nth-child(odd) {
  background-color: #ecf7f6; }

.payments-data__data-row:hover {
  background-color: #fff; }

.payments-data__icon {
  margin-left: 2px;
  font-size: 10px;
  opacity: 0.5;
  cursor: pointer;
  float: right; }
  .payments-data__icon:hover {
    opacity: 1; }

.payments-data__action {
  cursor: pointer;
  color: #ee6e50; }
  .payments-data__action:hover {
    text-decoration: underline; }

.payments-data__warning-icon {
  font-size: 11px; }

/*---
title:   Color pallete
section: Base CSS
---

```example:color
@color: #07a853 @name: $green-forest
@color: #058b44 @name: $green-forest-dark
@color: #27323d @name: $blue-ocean
@color: #306bb9 @name: $blue-sky-dark
@color: #4a90e2 @name: $blue-sky
@color: #5d9eea @name: $blue-sky-light
@color: #ffce54 @name: $sunflower
@color: #f6bb42 @name: $sunflower-dark
@color: #e9573f @name: $poppy
@color: #dc3519 @name: $poppy-darker
@color: #f5f7fa @name: $gray-light
@color: #e6e9ed @name: $gray-medium
@color: #aab2bd @name: $gray-dark
@color: #9b9b9b @name: $gray-darker
@color: #e4e6e8 @name: $gray-border
@color: #aab2bd @name: $gray-shadow
```
*/
@media (max-height: 1395px) {
  .payments-data__col--md-empty.payments-data__col--md-empty {
    width: 0; } }

.adm-account-balance-adjustment-modal {
  padding: 0 30px; }
  .adm-account-balance-adjustment-modal p {
    margin: 15px 0 0 0; }

