/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3 {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
  /* Hack to make IE7 behave */
  *zoom:1;
  *display:inline;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  overflow: auto;
}

.CodeMirror-widget {}

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background: #ffa;
  background: rgba(255, 255, 0, .4);
}

/* IE7 hack to prevent it from returning funny offsetTops on the spans */
.CodeMirror span { *vertical-align: text-bottom; }

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

/**
 * jQuery Timepicker
 * http://timepicker.co
 *
 * Enhances standard form input fields helping users to select (or type) times.
 *
 * Copyright (c) 2016 Willington Vega; Licensed MIT, GPL
 */

 .ui-timepicker-container {
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
}

.ui-timepicker {
    box-sizing: content-box;
    display: block;
    height: 205px;
    list-style: none outside none;
    margin: 0;
    padding: 0 1px;
    text-align: center;
}

.ui-timepicker-viewport {
    box-sizing: content-box;
    display: block;
    height: 205px;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden; /* IE */
}

.ui-timepicker-standard {
    /* overwrites .ui-widget */
    font-family: Verdana,Arial,sans-serif;
    font-size: 1.1em;
    /* overwrites .ui-widget-content */
    background-color: #FFF;
    border: 1px solid #AAA;
    color: #222;
    /* overwrites .ui-menu */
    margin: 0;
    padding: 2px;
}
.ui-timepicker-standard a {
    border: 1px solid transparent;
    color: #222;
    display: block;
    padding: 0.2em 0.4em;
    text-decoration: none;
}
.ui-timepicker-standard .ui-state-hover {
    /* overwrites .ui-state-hover */
    background-color: #DADADA;
    border: 1px solid #999;
    font-weight: normal;
    color: #212121;
}
.ui-timepicker-standard .ui-menu-item {
    /* overwrites .ui-menu and .ui-menu-item */
    /*clear: left;
    float: left;*/
    margin: 0;
    padding: 0;
}

.ui-timepicker-corners,
.ui-timepicker-corners .ui-corner-all {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.ui-timepicker-hidden {
    /* overwrites .ui-helper-hidden */
    display: none;
}

.ui-timepicker-no-scrollbar .ui-timepicker {
    border: none;
}

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

[class^="note-icon-"]:before,
[class*=" note-icon-"]:before {
    display: inline-block;
    font: normal normal normal 14px summernote;
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
    text-decoration: inherit;
    text-rendering: auto;
    text-transform: none;
    vertical-align: middle;
    speak: none;
    -moz-osx-font-smoothing: grayscale
}

.note-icon-align-center:before {
    content: "\f101"
}

.note-icon-align-indent:before {
    content: "\f102"
}

.note-icon-align-justify:before {
    content: "\f103"
}

.note-icon-align-left:before {
    content: "\f104"
}

.note-icon-align-outdent:before {
    content: "\f105"
}

.note-icon-align-right:before {
    content: "\f106"
}

.note-icon-align:before {
    content: "\f107"
}

.note-icon-arrows-alt:before {
    content: "\f108"
}

.note-icon-bold:before {
    content: "\f109"
}

.note-icon-caret:before {
    content: "\f10a"
}

.note-icon-chain-broken:before {
    content: "\f10b"
}

.note-icon-circle:before {
    content: "\f10c"
}

.note-icon-close:before {
    content: "\f10d"
}

.note-icon-code:before {
    content: "\f10e"
}

.note-icon-eraser:before {
    content: "\f10f"
}

.note-icon-font:before {
    content: "\f110"
}

.note-icon-frame:before {
    content: "\f111"
}

.note-icon-italic:before {
    content: "\f112"
}

.note-icon-link:before {
    content: "\f113"
}

.note-icon-magic:before {
    content: "\f114"
}

.note-icon-menu-check:before {
    content: "\f115"
}

.note-icon-minus:before {
    content: "\f116"
}

.note-icon-orderedlist:before {
    content: "\f117"
}

.note-icon-pencil:before {
    content: "\f118"
}

.note-icon-picture:before {
    content: "\f119"
}

.note-icon-question:before {
    content: "\f11a"
}

.note-icon-redo:before {
    content: "\f11b"
}

.note-icon-special-character:before {
    content: "\f11c"
}

.note-icon-square:before {
    content: "\f11d"
}

.note-icon-strikethrough:before {
    content: "\f11e"
}

.note-icon-subscript:before {
    content: "\f11f"
}

.note-icon-summernote:before {
    content: "\f120"
}

.note-icon-superscript:before {
    content: "\f121"
}

.note-icon-table:before {
    content: "\f122"
}

.note-icon-text-height:before {
    content: "\f123"
}

.note-icon-trash:before {
    content: "\f124"
}

.note-icon-underline:before {
    content: "\f125"
}

.note-icon-undo:before {
    content: "\f126"
}

.note-icon-unorderedlist:before {
    content: "\f127"
}

.note-icon-video:before {
    content: "\f128"
}

.note-editor {
    position: relative
}

.note-editor .note-dropzone {
    position: absolute;
    z-index: 100;
    display: none;
    color: #87cefa;
    background-color: white;
    opacity: .95
}

.note-editor .note-dropzone .note-dropzone-message {
    display: table-cell;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle
}

.note-editor .note-dropzone.hover {
    color: #098ddf
}

.note-editor.dragover .note-dropzone {
    display: table
}

.note-editor .note-editing-area {
    position: relative
}

.note-editor .note-editing-area .note-editable {
    outline: 0
}

.note-editor .note-editing-area .note-editable sup {
    vertical-align: super
}

.note-editor .note-editing-area .note-editable sub {
    vertical-align: sub
}

.note-editor.note-frame {
    border: 1px solid #a9a9a9
}

.note-editor.note-frame.codeview .note-editing-area .note-editable {
    display: none
}

.note-editor.note-frame.codeview .note-editing-area .note-codable {
    display: block
}

.note-editor.note-frame .note-editing-area {
    overflow: hidden
}

.note-editor.note-frame .note-editing-area .note-editable {
    padding: 10px;
    overflow: auto;
    color: #000;
    background-color: #fff
}

.note-editor.note-frame .note-editing-area .note-editable[contenteditable="false"] {
    background-color: #e5e5e5
}

.note-editor.note-frame .note-editing-area .note-codable {
    display: none;
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
    font-family: Menlo, Monaco, monospace, sans-serif;
    font-size: 14px;
    color: #ccc;
    background-color: #222;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    resize: none
}

.note-editor.note-frame.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%!important
}

.note-editor.note-frame.fullscreen .note-editable {
    background-color: white
}

.note-editor.note-frame.fullscreen .note-resizebar {
    display: none
}

.note-editor.note-frame .note-statusbar {
    background-color: #f5f5f5;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.note-editor.note-frame .note-statusbar .note-resizebar {
    width: 100%;
    height: 8px;
    padding-top: 1px;
    cursor: ns-resize
}

.note-editor.note-frame .note-statusbar .note-resizebar .note-icon-bar {
    width: 20px;
    margin: 1px auto;
    border-top: 1px solid #a9a9a9
}

.note-editor.note-frame .note-placeholder {
    padding: 10px
}

.note-popover.popover {
    max-width: none
}

.note-popover.popover .popover-content a {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle
}

.note-popover.popover .arrow {
    left: 20px!important
}

.note-popover .popover-content,
.panel-heading.note-toolbar {
    padding: 0 0 5px 5px;
    margin: 0
}

.note-popover .popover-content>.btn-group,
.panel-heading.note-toolbar>.btn-group {
    margin-top: 5px;
    margin-right: 5px;
    margin-left: 0
}

.note-popover .popover-content .btn-group .note-table,
.panel-heading.note-toolbar .btn-group .note-table {
    min-width: 0;
    padding: 5px
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker {
    font-size: 18px
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
    position: absolute!important;
    z-index: 3;
    width: 10em;
    height: 10em;
    cursor: pointer
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
    position: relative!important;
    z-index: 1;
    width: 5em;
    height: 5em;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat
}

.note-popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,
.panel-heading.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
    position: absolute!important;
    z-index: 2;
    width: 1em;
    height: 1em;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat
}

.note-popover .popover-content .note-style h1,
.panel-heading.note-toolbar .note-style h1,
.note-popover .popover-content .note-style h2,
.panel-heading.note-toolbar .note-style h2,
.note-popover .popover-content .note-style h3,
.panel-heading.note-toolbar .note-style h3,
.note-popover .popover-content .note-style h4,
.panel-heading.note-toolbar .note-style h4,
.note-popover .popover-content .note-style h5,
.panel-heading.note-toolbar .note-style h5,
.note-popover .popover-content .note-style h6,
.panel-heading.note-toolbar .note-style h6,
.note-popover .popover-content .note-style blockquote,
.panel-heading.note-toolbar .note-style blockquote {
    margin: 0
}

.note-popover .popover-content .note-color .dropdown-toggle,
.panel-heading.note-toolbar .note-color .dropdown-toggle {
    width: 20px;
    padding-left: 5px
}

.note-popover .popover-content .note-color .dropdown-menu,
.panel-heading.note-toolbar .note-color .dropdown-menu {
    min-width: 340px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group {
    margin: 0
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group:first-child,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group:first-child {
    margin: 0 5px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-palette-title,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {
    margin: 2px 7px;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #eee
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {
    width: 100%;
    padding: 0 3px;
    margin: 3px;
    font-size: 11px;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-row,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-row {
    height: 20px
}

.note-popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset:hover,
.panel-heading.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {
    background: #eee
}

.note-popover .popover-content .note-para .dropdown-menu,
.panel-heading.note-toolbar .note-para .dropdown-menu {
    min-width: 216px;
    padding: 5px
}

.note-popover .popover-content .note-para .dropdown-menu>div:first-child,
.panel-heading.note-toolbar .note-para .dropdown-menu>div:first-child {
    margin-right: 5px
}

.note-popover .popover-content .dropdown-menu,
.panel-heading.note-toolbar .dropdown-menu {
    min-width: 90px
}

.note-popover .popover-content .dropdown-menu.right,
.panel-heading.note-toolbar .dropdown-menu.right {
    right: 0;
    left: auto
}

.note-popover .popover-content .dropdown-menu.right::before,
.panel-heading.note-toolbar .dropdown-menu.right::before {
    right: 9px;
    left: auto!important
}

.note-popover .popover-content .dropdown-menu.right::after,
.panel-heading.note-toolbar .dropdown-menu.right::after {
    right: 10px;
    left: auto!important
}

.note-popover .popover-content .dropdown-menu.note-check li a i,
.panel-heading.note-toolbar .dropdown-menu.note-check li a i {
    color: deepskyblue;
    visibility: hidden
}

.note-popover .popover-content .dropdown-menu.note-check li a.checked i,
.panel-heading.note-toolbar .dropdown-menu.note-check li a.checked i {
    visibility: visible
}

.note-popover .popover-content .note-fontsize-10,
.panel-heading.note-toolbar .note-fontsize-10 {
    font-size: 10px
}

.note-popover .popover-content .note-color-palette,
.panel-heading.note-toolbar .note-color-palette {
    line-height: 1
}

.note-popover .popover-content .note-color-palette div .note-color-btn,
.panel-heading.note-toolbar .note-color-palette div .note-color-btn {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    border: 1px solid #fff
}

.note-popover .popover-content .note-color-palette div .note-color-btn:hover,
.panel-heading.note-toolbar .note-color-palette div .note-color-btn:hover {
    border: 1px solid #000
}

.note-dialog>div {
    display: none
}

.note-dialog .form-group {
    margin-right: 0;
    margin-left: 0
}

.note-dialog .note-modal-form {
    margin: 0
}

.note-dialog .note-image-dialog .note-dropzone {
    min-height: 100px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 4;
    color: lightgray;
    text-align: center;
    border: 4px dashed lightgray
}

@-moz-document url-prefix() {
    .note-image-input {
        height: auto
    }
}

.note-placeholder {
    position: absolute;
    display: none;
    color: gray
}

.note-handle .note-control-selection {
    position: absolute;
    display: none;
    border: 1px solid black
}

.note-handle .note-control-selection>div {
    position: absolute
}

.note-handle .note-control-selection .note-control-selection-bg {
    width: 100%;
    height: 100%;
    background-color: black;
    -webkit-opacity: .3;
    -khtml-opacity: .3;
    -moz-opacity: .3;
    opacity: .3;
    -ms-filter: alpha(opacity=30);
    filter: alpha(opacity=30)
}

.note-handle .note-control-selection .note-control-handle {
    width: 7px;
    height: 7px;
    border: 1px solid black
}

.note-handle .note-control-selection .note-control-holder {
    width: 7px;
    height: 7px;
    border: 1px solid black
}

.note-handle .note-control-selection .note-control-sizing {
    width: 7px;
    height: 7px;
    background-color: white;
    border: 1px solid black
}

.note-handle .note-control-selection .note-control-nw {
    top: -5px;
    left: -5px;
    border-right: 0;
    border-bottom: 0
}

.note-handle .note-control-selection .note-control-ne {
    top: -5px;
    right: -5px;
    border-bottom: 0;
    border-left: none
}

.note-handle .note-control-selection .note-control-sw {
    bottom: -5px;
    left: -5px;
    border-top: 0;
    border-right: 0
}

.note-handle .note-control-selection .note-control-se {
    right: -5px;
    bottom: -5px;
    cursor: se-resize
}

.note-handle .note-control-selection .note-control-se.note-control-holder {
    cursor: default;
    border-top: 0;
    border-left: none
}

.note-handle .note-control-selection .note-control-selection-info {
    right: 0;
    bottom: 0;
    padding: 5px;
    margin: 5px;
    font-size: 12px;
    color: white;
    background-color: black;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-opacity: .7;
    -khtml-opacity: .7;
    -moz-opacity: .7;
    opacity: .7;
    -ms-filter: alpha(opacity=70);
    filter: alpha(opacity=70)
}

.note-hint-popover {
    min-width: 100px;
    padding: 2px
}

.note-hint-popover .popover-content {
    max-height: 150px;
    padding: 3px;
    overflow: auto
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item {
    display: block!important;
    padding: 3px
}

.note-hint-popover .popover-content .note-hint-group .note-hint-item.active,
.note-hint-popover .popover-content .note-hint-group .note-hint-item:hover {
    display: block;
    clear: both;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background-color: #428bca;
    outline: 0
}

table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:75px;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable thead>tr>th.sorting_asc,table.dataTable thead>tr>th.sorting_desc,table.dataTable thead>tr>th.sorting,table.dataTable thead>tr>td.sorting_asc,table.dataTable thead>tr>td.sorting_desc,table.dataTable thead>tr>td.sorting{padding-right:30px}table.dataTable thead>tr>th:active,table.dataTable thead>tr>td:active{outline:none}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable thead .sorting:after,table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after,table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{position:absolute;bottom:8px;right:8px;display:block;font-family:'Glyphicons Halflings';opacity:0.5}table.dataTable thead .sorting:after{opacity:0.2;content:"\e150"}table.dataTable thead .sorting_asc:after{content:"\e155"}table.dataTable thead .sorting_desc:after{content:"\e156"}table.dataTable thead .sorting_asc_disabled:after,table.dataTable thead .sorting_desc_disabled:after{color:#eee}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}}table.dataTable.table-condensed>thead>tr>th{padding-right:20px}table.dataTable.table-condensed .sorting:after,table.dataTable.table-condensed .sorting_asc:after,table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:0}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0}

div.dt-autofill-handle{position:absolute;height:8px;width:8px;z-index:102;box-sizing:border-box;border:1px solid #337ab7;background:#337ab7}div.dt-autofill-select{position:absolute;z-index:1001;background-color:#337ab7;background-image:repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,255,255,0.5) 5px, rgba(255,255,255,0.5) 10px)}div.dt-autofill-select.top,div.dt-autofill-select.bottom{height:3px;margin-top:-1px}div.dt-autofill-select.left,div.dt-autofill-select.right{width:3px;margin-left:-1px}div.dt-autofill-list{position:fixed;top:50%;left:50%;width:500px;margin-left:-250px;background-color:white;border-radius:6px;box-shadow:0 0 5px #555;border:2px solid #444;z-index:11;box-sizing:border-box;padding:1.5em 2em}div.dt-autofill-list ul{display:table;margin:0;padding:0;list-style:none;width:100%}div.dt-autofill-list ul li{display:table-row}div.dt-autofill-list ul li:last-child div.dt-autofill-question,div.dt-autofill-list ul li:last-child div.dt-autofill-button{border-bottom:none}div.dt-autofill-list ul li:hover{background-color:#f6f6f6}div.dt-autofill-list div.dt-autofill-question{display:table-cell;padding:0.5em 0;border-bottom:1px solid #ccc}div.dt-autofill-list div.dt-autofill-question input[type=number]{padding:6px;width:30px;margin:-2px 0}div.dt-autofill-list div.dt-autofill-button{display:table-cell;padding:0.5em 0;border-bottom:1px solid #ccc}div.dt-autofill-background{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);background:radial-gradient(ellipse farthest-corner at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);z-index:10}

div.dt-button-info {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    margin-top: -100px;
    margin-left: -200px;
    background-color: white;
    border: 2px solid #111;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    text-align: center;
    z-index: 21
}

div.dt-button-info h2 {
    padding: 0.5em;
    margin: 0;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    background-color: #f3f3f3
}

div.dt-button-info>div {
    padding: 1em
}

ul.dt-button-collection.dropdown-menu {
    display: block;
    z-index: 2002;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    -ms-column-gap: 8px;
    -o-column-gap: 8px;
    column-gap: 8px
}

ul.dt-button-collection.dropdown-menu.fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    border-radius: 0
}

ul.dt-button-collection.dropdown-menu.fixed.two-column {
    margin-left: -150px
}

ul.dt-button-collection.dropdown-menu.fixed.three-column {
    margin-left: -225px
}

ul.dt-button-collection.dropdown-menu.fixed.four-column {
    margin-left: -300px
}

ul.dt-button-collection.dropdown-menu>* {
    -webkit-column-break-inside: avoid;
    break-inside: avoid
}

ul.dt-button-collection.dropdown-menu.two-column {
    width: 300px;
    padding-bottom: 1px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    -ms-column-count: 2;
    -o-column-count: 2;
    column-count: 2
}

ul.dt-button-collection.dropdown-menu.three-column {
    width: 450px;
    padding-bottom: 1px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -ms-column-count: 3;
    -o-column-count: 3;
    column-count: 3
}

ul.dt-button-collection.dropdown-menu.four-column {
    width: 600px;
    padding-bottom: 1px;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    -ms-column-count: 4;
    -o-column-count: 4;
    column-count: 4
}

div.dt-button-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2001
}

@media screen and (max-width: 767px) {
    div.dt-buttons {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5em
    }
    div.dt-buttons a.btn {
        float: none
    }
}

table.DTCR_clonedTable.dataTable{position:absolute !important;background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#337ab7;z-index:201}

table.DTFC_Cloned tr{background-color:white;margin-bottom:0}div.DTFC_LeftHeadWrapper table,div.DTFC_RightHeadWrapper table{border-bottom:none !important;margin-bottom:0 !important;background-color:white}div.DTFC_LeftBodyWrapper table,div.DTFC_RightBodyWrapper table{border-top:none;margin:0 !important}div.DTFC_LeftBodyWrapper table thead .sorting:after,div.DTFC_LeftBodyWrapper table thead .sorting_asc:after,div.DTFC_LeftBodyWrapper table thead .sorting_desc:after,div.DTFC_LeftBodyWrapper table thead .sorting:after,div.DTFC_LeftBodyWrapper table thead .sorting_asc:after,div.DTFC_LeftBodyWrapper table thead .sorting_desc:after,div.DTFC_RightBodyWrapper table thead .sorting:after,div.DTFC_RightBodyWrapper table thead .sorting_asc:after,div.DTFC_RightBodyWrapper table thead .sorting_desc:after,div.DTFC_RightBodyWrapper table thead .sorting:after,div.DTFC_RightBodyWrapper table thead .sorting_asc:after,div.DTFC_RightBodyWrapper table thead .sorting_desc:after{display:none}div.DTFC_LeftBodyWrapper table tbody tr:first-child th,div.DTFC_LeftBodyWrapper table tbody tr:first-child td,div.DTFC_RightBodyWrapper table tbody tr:first-child th,div.DTFC_RightBodyWrapper table tbody tr:first-child td{border-top:none}div.DTFC_LeftFootWrapper table,div.DTFC_RightFootWrapper table{border-top:none;margin-top:0 !important;background-color:white}

table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}}

table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty{cursor:default !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before{display:none !important}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before{top:9px;left:4px;height:14px;width:14px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#337ab7}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed>tbody>tr.child td:before{display:none}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;height:14px;width:14px;border-radius:14px;line-height:14px;text-indent:3px}table.dataTable.dtr-column>tbody>tr>td.control,table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}table.dataTable.dtr-column>tbody>tr>td.control:before,table.dataTable.dtr-column>tbody>tr>th.control:before{top:50%;left:50%;height:16px;width:16px;margin-top:-10px;margin-left:-10px;display:block;position:absolute;color:white;border:2px solid white;border-radius:14px;box-shadow:0 0 3px #444;box-sizing:content-box;text-align:center;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#337ab7}table.dataTable.dtr-column>tbody>tr.parent td.control:before,table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}table.dataTable>tbody>tr.child{padding:0.5em 1em}table.dataTable>tbody>tr.child:hover{background:transparent !important}table.dataTable>tbody>tr.child ul.dtr-details{display:inline-block;list-style-type:none;margin:0;padding:0}table.dataTable>tbody>tr.child ul.dtr-details li{border-bottom:1px solid #efefef;padding:0.5em 0}table.dataTable>tbody>tr.child ul.dtr-details li:first-child{padding-top:0}table.dataTable>tbody>tr.child ul.dtr-details li:last-child{border-bottom:none}table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:bold}div.dtr-modal{position:fixed;box-sizing:border-box;top:0;left:0;height:100%;width:100%;z-index:100;padding:10em 1em}div.dtr-modal div.dtr-modal-display{position:absolute;top:0;left:0;bottom:0;right:0;width:50%;height:50%;overflow:auto;margin:auto;z-index:102;overflow:auto;background-color:#f5f5f7;border:1px solid black;border-radius:0.5em;box-shadow:0 12px 30px rgba(0,0,0,0.6)}div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border:1px solid #eaeaea;background-color:#f9f9f9;text-align:center;border-radius:3px;cursor:pointer;z-index:12}div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}div.dtr-modal div.dtr-modal-background{position:fixed;top:0;left:0;right:0;bottom:0;z-index:101;background:rgba(0,0,0,0.6)}@media screen and (max-width: 767px){div.dtr-modal div.dtr-modal-display{width:95%}}div.dtr-bs-modal table.table tr:first-child td{border-top:none}

table.dataTable tr.group td{font-weight:bold;background-color:#e0e0e0}

div.DTS{display:block !important}div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS div.DTS_Loading{z-index:1}div.DTS div.dataTables_scrollBody{background:repeating-linear-gradient(45deg, #edeeff, #edeeff 10px, #fff 10px, #fff 20px)}div.DTS div.dataTables_scrollBody table{z-index:2}div.DTS div.dataTables_paginate,div.DTS div.dataTables_length{display:none}div.DTS tbody tr.even{background-color:white}

/*# sourceMappingURL=vendor.css.map */

@charset "UTF-8";
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url('../fonts/halflings.eot');
  src: url('../fonts/halflings.eot?#iefix') format('embedded-opentype'), url('../fonts/halflings.woff2') format('woff2'), url('../fonts/halflings.woff') format('woff'), url('../fonts/halflings.ttf') format('truetype'), url('../fonts/halflings.svg#halflings') format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\2a";
}
.glyphicon-plus:before {
  content: "\2b";
}
.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 {
  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: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.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";
}
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.42857143;
  color: #696c74;
  background-color: #d8dce3;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #259DAB;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #505b72;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-rounded {
  border-radius: 2px;
}
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #d8dce3;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-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: 17px;
  margin-bottom: 17px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
[role="button"] {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: bold;
  line-height: 1.1;
  color: #262b36;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 17px;
  margin-bottom: 8.5px;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 8.5px;
  margin-bottom: 8.5px;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 31px;
}
h2,
.h2 {
  font-size: 25px;
}
h3,
.h3 {
  font-size: 21px;
}
h4,
.h4 {
  font-size: 15px;
}
h5,
.h5 {
  font-size: 12px;
}
h6,
.h6 {
  font-size: 11px;
}
p {
  margin: 0 0 8.5px;
}
.lead {
  margin-bottom: 17px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 18px;
  }
}
small,
.small {
  font-size: 91%;
}
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #aaacb2;
}
.text-primary {
  color: #2574ab;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1c5881;
}
.text-success {
  color: #1aa71c;
}
a.text-success:hover,
a.text-success:focus {
  color: #137b15;
}
.text-info {
  color: #3b83a6;
}
a.text-info:hover,
a.text-info:focus {
  color: #2e6580;
}
.text-warning {
  color: #9c732c;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #745621;
}
.text-danger {
  color: #d9534f;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #c9302c;
}
.bg-primary {
  color: #fff;
  background-color: #2574ab;
}
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #1c5881;
}
.bg-success {
  background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}
.bg-info {
  background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}
.bg-warning {
  background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}
.bg-danger {
  background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}
.page-header {
  padding-bottom: 7.5px;
  margin: 34px 0 17px;
  border-bottom: 1px solid #eeeeee;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 8.5px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-top: 0;
  margin-bottom: 17px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}
.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 8.5px 17px;
  margin: 0 0 17px;
  font-size: 15px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}
address {
  margin-bottom: 17px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 2px;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 2px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}
pre {
  display: block;
  padding: 8px;
  margin: 0 0 8.5px;
  font-size: 11px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 2px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1650px) {
  .container {
    width: 1160px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1650px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
table {
  background-color: #f0f1f4;
}
caption {
  padding-top: 10px 15px;
  padding-bottom: 10px 15px;
  color: #aaacb2;
  text-align: left;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 17px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 10px 15px;
  line-height: 1.42857143;
  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 > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #fff;
}
.table .table {
  background-color: #d8dce3;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #fff;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #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: #fcfcfd;
}
.table-hover > tbody > tr:hover {
  background-color: #e7e9ee;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #e7e9ee;
}
.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: #d8dce3;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 12.75px;
    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 > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 17px;
  font-size: 18px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 11px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #262b36;
}
.form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #262b36;
  background-color: #fcfcfd;
  background-image: none;
  border: 1px solid #bdc3d1;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #9fa8bc;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #9fa8bc;
}
.form-control::-webkit-input-placeholder {
  color: #9fa8bc;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #e7e9ee;
  opacity: 1;
}
.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control,
  input[type="time"].form-control,
  input[type="datetime-local"].form-control,
  input[type="month"].form-control {
    line-height: 38px;
  }
  input[type="date"].input-sm,
  input[type="time"].input-sm,
  input[type="datetime-local"].input-sm,
  input[type="month"].input-sm,
  .input-group-sm input[type="date"],
  .input-group-sm input[type="time"],
  .input-group-sm input[type="datetime-local"],
  .input-group-sm input[type="month"] {
    line-height: 32px;
  }
  input[type="date"].input-lg,
  input[type="time"].input-lg,
  input[type="datetime-local"].input-lg,
  input[type="month"].input-lg,
  .input-group-lg input[type="date"],
  .input-group-lg input[type="time"],
  .input-group-lg input[type="datetime-local"],
  .input-group-lg input[type="month"] {
    line-height: 42px;
  }
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 17px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 11px;
  padding-bottom: 11px;
  margin-bottom: 0;
  min-height: 29px;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm {
  height: 32px;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 2px;
}
select.input-sm {
  height: 32px;
  line-height: 32px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.form-group-sm .form-control {
  height: 32px;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 2px;
}
.form-group-sm select.form-control {
  height: 32px;
  line-height: 32px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 32px;
  min-height: 28px;
  padding: 6px 8px;
  font-size: 11px;
  line-height: 1.5;
}
.input-lg {
  height: 42px;
  padding: 11px 14px;
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 2px;
}
select.input-lg {
  height: 42px;
  line-height: 42px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.form-group-lg .form-control {
  height: 42px;
  padding: 11px 14px;
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 2px;
}
.form-group-lg select.form-control {
  height: 42px;
  line-height: 42px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 42px;
  min-height: 33px;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.3333333;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 47.5px;
}
.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  pointer-events: none;
}
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 42px;
  height: 42px;
  line-height: 42px;
}
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #1aa71c;
}
.has-success .form-control {
  border-color: #1aa71c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #137b15;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #45e247;
}
.has-success .input-group-addon {
  color: #1aa71c;
  border-color: #1aa71c;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #1aa71c;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #9c732c;
}
.has-warning .form-control {
  border-color: #9c732c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #745621;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d1a75d;
}
.has-warning .input-group-addon {
  color: #9c732c;
  border-color: #9c732c;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #9c732c;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #d9534f;
}
.has-error .form-control {
  border-color: #d9534f;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #c9302c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3;
}
.has-error .input-group-addon {
  color: #d9534f;
  border-color: #d9534f;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #d9534f;
}
.has-feedback label ~ .form-control-feedback {
  top: 22px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #aaacb2;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 11px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 28px;
}
.form-horizontal .form-group {
  margin-left: -10px;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 11px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 10px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 15.6666663px;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 11px;
  }
}
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.42857143;
  border-radius: 2px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #696c74;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}
a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-default {
  color: #696c74;
  background-color: #fff;
  border-color: #bdc3d1;
}
.btn-default:focus,
.btn-default.focus {
  color: #696c74;
  background-color: #e6e6e6;
  border-color: #727f9c;
}
.btn-default:hover {
  color: #696c74;
  background-color: #e6e6e6;
  border-color: #99a3b7;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #696c74;
  background-color: #e6e6e6;
  border-color: #99a3b7;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #696c74;
  background-color: #d4d4d4;
  border-color: #727f9c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #bdc3d1;
}
.btn-default .badge {
  color: #fff;
  background-color: #696c74;
}
.btn-primary {
  color: #fff;
  background-color: #2574ab;
  border-color: transparent;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #1c5881;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover {
  color: #fff;
  background-color: #1c5881;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #1c5881;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #164464;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #2574ab;
  border-color: transparent;
}
.btn-primary .badge {
  color: #2574ab;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #259DAB;
  border-color: transparent;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #1c7781;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:hover {
  color: #fff;
  background-color: #1c7781;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #1c7781;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #165c64;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #259DAB;
  border-color: transparent;
}
.btn-success .badge {
  color: #259DAB;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: transparent;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: transparent;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #e6ad5c;
  border-color: transparent;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #df9730;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:hover {
  color: #fff;
  background-color: #df9730;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #df9730;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #cc851f;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #e6ad5c;
  border-color: transparent;
}
.btn-warning .badge {
  color: #e6ad5c;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: transparent;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: transparent;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-link {
  color: #259DAB;
  font-weight: normal;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #505b72;
  text-decoration: none;
  background-color: transparent;
}
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 11px 14px;
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 2px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 2px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 3px 5px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 2px;
}
.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%;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  display: none;
}
.collapse.in {
  display: block;
}
tr.collapse.in {
  display: table-row;
}
tbody.collapse.in {
  display: table-row-group;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 7.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #2574ab;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-menu-right {
  left: auto;
  right: 0;
}
.dropdown-menu-left {
  left: 0;
  right: auto;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 11px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: auto;
    right: 0;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 2px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}
.btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 42px;
  padding: 11px 14px;
  font-size: 16px;
  line-height: 1.3333333;
  border-radius: 2px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 42px;
  line-height: 42px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 32px;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.5;
  border-radius: 2px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 32px;
  line-height: 32px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  color: #262b36;
  text-align: center;
  background-color: #f6f7f8;
  border: 1px solid #bdc3d1;
  border-radius: 2px;
}
.input-group-addon.input-sm {
  padding: 5px 8px;
  font-size: 11px;
  border-radius: 2px;
}
.input-group-addon.input-lg {
  padding: 11px 14px;
  font-size: 16px;
  border-radius: 2px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}
.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 14px 25px;
}
.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a {
  color: #777777;
}
.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #259DAB;
}
.nav .nav-divider {
  height: 1px;
  margin: 7.5px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}
.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 2px 2px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #d8dce3;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}
.nav-tabs.nav-justified > li {
  float: none;
}
.nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 2px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 2px 2px 0 0;
  }
  .nav-tabs.nav-justified > .active > a,
  .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #d8dce3;
  }
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 2px;
}
.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: #2574ab;
}
.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}
.nav-justified {
  width: 100%;
}
.nav-justified > li {
  float: none;
}
.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a {
    margin-bottom: 0;
  }
}
.nav-tabs-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 2px;
}
.nav-tabs-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 2px 2px 0 0;
  }
  .nav-tabs-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #d8dce3;
  }
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 17px;
  border: 1px solid transparent;
}
@media (min-width: 768px) {
  .navbar {
    border-radius: 2px;
  }
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}
.navbar-collapse {
  overflow-x: visible;
  padding-right: 10px;
  padding-left: 10px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container-fluid > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}
.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}
.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}
.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}
.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}
.navbar-brand {
  float: left;
  padding: 16.5px 10px;
  font-size: 16px;
  line-height: 17px;
  height: 50px;
}
.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: -10px;
  }
}
.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 10px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 2px;
}
.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: 8.25px -10px;
}
.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 17px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 17px;
  }
  .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: 16.5px;
    padding-bottom: 16.5px;
  }
}
.navbar-form {
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px 10px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type="radio"],
  .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
  }
}
.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.navbar-btn {
  margin-top: 6px;
  margin-bottom: 6px;
}
.navbar-btn.btn-sm {
  margin-top: 9px;
  margin-bottom: 9px;
}
.navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}
.navbar-text {
  margin-top: 16.5px;
  margin-bottom: 16.5px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
    float: left;
  }
  .navbar-right {
    float: right !important;
    float: right;
    margin-right: -10px;
  }
  .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-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e7e7e7;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
  background-color: #e7e7e7;
  color: #555;
}
@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-link {
  color: #777;
}
.navbar-default .navbar-link:hover {
  color: #333;
}
.navbar-default .btn-link {
  color: #777;
}
.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
  color: #333;
}
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}
.navbar-inverse {
  background-color: #222;
  border-color: #080808;
}
.navbar-inverse .navbar-brand {
  color: #9d9d9d;
}
.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}
.navbar-inverse .navbar-text {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #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: #080808;
}
.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}
.navbar-inverse .navbar-toggle {
  border-color: #333;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}
.navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: #101010;
}
.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  background-color: #080808;
  color: #fff;
}
@media (max-width: 767px) {
  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #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: #080808;
  }
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}
.navbar-inverse .navbar-link {
  color: #9d9d9d;
}
.navbar-inverse .navbar-link:hover {
  color: #fff;
}
.navbar-inverse .btn-link {
  color: #9d9d9d;
}
.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
  color: #fff;
}
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}
.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 17px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 2px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  content: "/\00a0";
  padding: 0 5px;
  color: #ccc;
}
.breadcrumb > .active {
  color: #777777;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 17px 0;
  border-radius: 2px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #505b72;
  background-color: #d8dce3;
  border: 1px solid transparent;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 3;
  color: #505b72;
  background-color: #bac1ce;
  border-color: transparent;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #259DAB;
  border-color: transparent;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #b8b9be;
  background-color: #f6f7f8;
  border-color: transparent;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 11px 14px;
  font-size: 16px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.pager {
  padding-left: 0;
  margin: 17px 0;
  list-style: none;
  text-align: center;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #d8dce3;
  border: 1px solid transparent;
  border-radius: 2px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #bac1ce;
}
.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: #9fa8bc;
  background-color: #d8dce3;
  cursor: not-allowed;
}
.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}
a.label:hover,
a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label:empty {
  display: none;
}
.btn .label {
  position: relative;
  top: -1px;
}
.label-default {
  background-color: #777777;
}
.label-default[href]:hover,
.label-default[href]:focus {
  background-color: #5e5e5e;
}
.label-primary {
  background-color: #2574ab;
}
.label-primary[href]:hover,
.label-primary[href]:focus {
  background-color: #1c5881;
}
.label-success {
  background-color: #259DAB;
}
.label-success[href]:hover,
.label-success[href]:focus {
  background-color: #1c7781;
}
.label-info {
  background-color: #5bc0de;
}
.label-info[href]:hover,
.label-info[href]:focus {
  background-color: #31b0d5;
}
.label-warning {
  background-color: #e6ad5c;
}
.label-warning[href]:hover,
.label-warning[href]:focus {
  background-color: #df9730;
}
.label-danger {
  background-color: #d9534f;
}
.label-danger[href]:hover,
.label-danger[href]:focus {
  background-color: #c9302c;
}
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: normal;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #777777;
  border-radius: 10px;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-xs .badge,
.btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
  color: #259DAB;
  background-color: #fff;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
.nav-pills > li > a > .badge {
  margin-left: 3px;
}
.jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eeeeee;
}
.jumbotron h1,
.jumbotron .h1 {
  color: inherit;
}
.jumbotron p {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 200;
}
.jumbotron > hr {
  border-top-color: #d5d5d5;
}
.container .jumbotron,
.container-fluid .jumbotron {
  border-radius: 2px;
}
.jumbotron .container {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .container .jumbotron,
  .container-fluid .jumbotron {
    padding-left: 60px;
    padding-right: 60px;
  }
  .jumbotron h1,
  .jumbotron .h1 {
    font-size: 54px;
  }
}
.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 17px;
  line-height: 1.42857143;
  background-color: #d8dce3;
  border: 1px solid #ddd;
  border-radius: 2px;
  -webkit-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}
.thumbnail > img,
.thumbnail a > img {
  margin-left: auto;
  margin-right: auto;
}
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
  border-color: #259DAB;
}
.thumbnail .caption {
  padding: 9px;
  color: #696c74;
}
.alert {
  padding: 15px;
  margin-bottom: 17px;
  border: 1px solid transparent;
  border-radius: 2px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: transparent;
  color: #529138;
}
.alert-success hr {
  border-top-color: rgba(0, 0, 0, 0);
}
.alert-success .alert-link {
  color: #3d6c2a;
}
.alert-info {
  background-color: #d9edf7;
  border-color: transparent;
  color: #1b6083;
}
.alert-info hr {
  border-top-color: rgba(0, 0, 0, 0);
}
.alert-info .alert-link {
  color: #134158;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: transparent;
  color: #9c8611;
}
.alert-warning hr {
  border-top-color: rgba(0, 0, 0, 0);
}
.alert-warning .alert-link {
  color: #6e5e0c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: transparent;
  color: #712d2d;
}
.alert-danger hr {
  border-top-color: rgba(0, 0, 0, 0);
}
.alert-danger .alert-link {
  color: #4d1e1e;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 17px;
  margin-bottom: 17px;
  background-color: #e7e9ee;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 11px;
  line-height: 17px;
  color: #fff;
  text-align: center;
  background-color: #2574ab;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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: #259DAB;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: 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: #e6ad5c;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
  background-color: #d9534f;
}
.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}
.media-body {
  width: 10000px;
}
.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}
.media-right,
.media > .pull-right {
  padding-left: 10px;
}
.media-left,
.media > .pull-left {
  padding-right: 10px;
}
.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}
.media-middle {
  vertical-align: middle;
}
.media-bottom {
  vertical-align: bottom;
}
.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
a.list-group-item,
button.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
button.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
button.list-group-item {
  width: 100%;
  text-align: left;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
  cursor: not-allowed;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #2574ab;
  border-color: #2574ab;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #aed4ee;
}
.list-group-item-success {
  color: #1aa71c;
  background-color: #dff0d8;
}
a.list-group-item-success,
button.list-group-item-success {
  color: #1aa71c;
}
a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
button.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:focus {
  color: #1aa71c;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
button.list-group-item-success.active,
a.list-group-item-success.active:hover,
button.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #1aa71c;
  border-color: #1aa71c;
}
.list-group-item-info {
  color: #3b83a6;
  background-color: #d9edf7;
}
a.list-group-item-info,
button.list-group-item-info {
  color: #3b83a6;
}
a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
button.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:focus {
  color: #3b83a6;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
button.list-group-item-info.active,
a.list-group-item-info.active:hover,
button.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #3b83a6;
  border-color: #3b83a6;
}
.list-group-item-warning {
  color: #9c732c;
  background-color: #fcf8e3;
}
a.list-group-item-warning,
button.list-group-item-warning {
  color: #9c732c;
}
a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
button.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:focus {
  color: #9c732c;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
button.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #9c732c;
  border-color: #9c732c;
}
.list-group-item-danger {
  color: #d9534f;
  background-color: #f2dede;
}
a.list-group-item-danger,
button.list-group-item-danger {
  color: #d9534f;
}
a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
button.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:focus {
  color: #d9534f;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
button.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #d9534f;
  border-color: #d9534f;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.panel {
  margin-bottom: 17px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 20px;
}
.panel-heading {
  padding: 20px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.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: 1px;
  border-bottom-left-radius: 1px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 20px;
  padding-right: 20px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 1px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 1px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 1px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 1px;
}
.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-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 17px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 2px;
}
.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: #d2d6df;
}
.panel-default > .panel-heading {
  color: #262b36;
  background-color: #9fa8bc;
  border-color: #d2d6df;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d2d6df;
}
.panel-default > .panel-heading .badge {
  color: #9fa8bc;
  background-color: #262b36;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d2d6df;
}
.panel-primary {
  border-color: #2574ab;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #2574ab;
  border-color: #2574ab;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #2574ab;
}
.panel-primary > .panel-heading .badge {
  color: #2574ab;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #2574ab;
}
.panel-success {
  border-color: #1c7781;
}
.panel-success > .panel-heading {
  color: #1aa71c;
  background-color: #259DAB;
  border-color: #1c7781;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #1c7781;
}
.panel-success > .panel-heading .badge {
  color: #259DAB;
  background-color: #1aa71c;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #1c7781;
}
.panel-info {
  border-color: #31b0d5;
}
.panel-info > .panel-heading {
  color: #3b83a6;
  background-color: #5bc0de;
  border-color: #31b0d5;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #31b0d5;
}
.panel-info > .panel-heading .badge {
  color: #5bc0de;
  background-color: #3b83a6;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #31b0d5;
}
.panel-warning {
  border-color: #df9730;
}
.panel-warning > .panel-heading {
  color: #9c732c;
  background-color: #e6ad5c;
  border-color: #df9730;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #df9730;
}
.panel-warning > .panel-heading .badge {
  color: #e6ad5c;
  background-color: #9c732c;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #df9730;
}
.panel-danger {
  border-color: #c9302c;
}
.panel-danger > .panel-heading {
  color: #d9534f;
  background-color: #d9534f;
  border-color: #c9302c;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #c9302c;
}
.panel-danger > .panel-heading .badge {
  color: #d9534f;
  background-color: #d9534f;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #c9302c;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #d8dce3;
  border: 1px solid #c3c9d4;
  border-radius: 2px;
  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: 2px;
}
.well-sm {
  padding: 9px;
  border-radius: 2px;
}
.close {
  float: right;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 11px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 2px;
}
.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 12px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}
.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 12px;
  background-color: #fff;
  border-bottom: 1px solid #f2f2f2;
  border-radius: 1px 1px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  border-width: 10px;
  content: "";
}
.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-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;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1649px) {
  .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: 1649px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1649px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1649px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1650px) {
  .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: 1650px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1650px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1650px) {
  .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: 1649px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1650px) {
  .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;
  }
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-regular.eot');
  src: url('../fonts/opensans-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans-regular.woff2') format('woff2'), url('../fonts/opensans-regular.woff') format('woff'), url('../fonts/opensans-regular.ttf') format('truetype'), url('../fonts/opensans-regular.svg#opensans-regular') format('svg');
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-italic.eot');
  src: url('../fonts/opensans-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/opensans-italic.woff2') format('woff2'), url('../fonts/opensans-italic.woff') format('woff'), url('../fonts/opensans-italic.ttf') format('truetype'), url('../fonts/opensans-italic.svg#opensans-italic') format('svg');
  font-style: italic;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway.eot');
  src: url('../fonts/raleway.eot?#iefix') format('embedded-opentype'), url('../fonts/raleway.woff2') format('woff2'), url('../fonts/raleway.woff') format('woff'), url('../fonts/raleway.ttf') format('truetype'), url('../fonts/raleway.svg#raleway') format('svg');
}
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome.eot');
  src: url('../fonts/fontawesome.eot?#iefix') format('embedded-opentype'), url('../fonts/fontawesome.woff2') format('woff2'), url('../fonts/fontawesome.woff') format('woff'), url('../fonts/fontawesome.ttf') format('truetype'), url('../fonts/fontawesome.svg#fontawesome') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'weathericons';
  src: url('../fonts/weathericons.eot');
  src: url('../fonts/weathericons.eot?#iefix') format('embedded-opentype'), url('../fonts/weathericons.woff') format('woff'), url('../fonts/weathericons.ttf') format('truetype'), url('../fonts/weathericons.svg#weathericons') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Ionicons";
  src: url("../fonts/ionicons.eot");
  src: url("../fonts/ionicons.eot?#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf") format("truetype"), url("../fonts/ionicons.woff") format("woff"), url("../fonts/ionicons.svg#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-shrink:hover,
.hvr-shrink:focus,
.hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse:hover,
.hvr-pulse:focus,
.hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-grow:hover,
.hvr-pulse-grow:focus,
.hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* Pulse Shrink */
@-webkit-keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse-shrink {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pulse-shrink:hover,
.hvr-pulse-shrink:focus,
.hvr-pulse-shrink:active {
  -webkit-animation-name: hvr-pulse-shrink;
  animation-name: hvr-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* Push */
@-webkit-keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes hvr-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.hvr-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-push:hover,
.hvr-push:focus,
.hvr-push:active {
  -webkit-animation-name: hvr-push;
  animation-name: hvr-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Bounce In */
.hvr-bounce-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-in:hover,
.hvr-bounce-in:focus,
.hvr-bounce-in:active {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* Bounce Out */
.hvr-bounce-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-out:hover,
.hvr-bounce-out:focus,
.hvr-bounce-out:active {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* Rotate */
.hvr-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-rotate:hover,
.hvr-rotate:focus,
.hvr-rotate:active {
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
/* Grow Rotate */
.hvr-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-grow-rotate:hover,
.hvr-grow-rotate:focus,
.hvr-grow-rotate:active {
  -webkit-transform: scale(1.1) rotate(4deg);
  transform: scale(1.1) rotate(4deg);
}
/* Float */
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-float:hover,
.hvr-float:focus,
.hvr-float:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
/* Sink */
.hvr-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sink:hover,
.hvr-sink:focus,
.hvr-sink:active {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
/* Bob */
@-webkit-keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@keyframes hvr-bob-float {
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
.hvr-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-bob:hover,
.hvr-bob:focus,
.hvr-bob:active {
  -webkit-animation-name: hvr-bob-float, hvr-bob;
  animation-name: hvr-bob-float, hvr-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-hang:hover,
.hvr-hang:focus,
.hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Skew */
.hvr-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-skew:hover,
.hvr-skew:focus,
.hvr-skew:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
/* Skew Forward */
.hvr-skew-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-forward:hover,
.hvr-skew-forward:focus,
.hvr-skew-forward:active {
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
/* Skew Backward */
.hvr-skew-backward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-skew-backward:hover,
.hvr-skew-backward:focus,
.hvr-skew-backward:active {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-vertical:hover,
.hvr-wobble-vertical:focus,
.hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble To Bottom Right */
@-webkit-keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-bottom-right {
  16.65% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, -6px);
    transform: translate(-6px, -6px);
  }
  49.95% {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
  }
  83.25% {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-to-bottom-right:hover,
.hvr-wobble-to-bottom-right:focus,
.hvr-wobble-to-bottom-right:active {
  -webkit-animation-name: hvr-wobble-to-bottom-right;
  animation-name: hvr-wobble-to-bottom-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble To Top Right */
@-webkit-keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes hvr-wobble-to-top-right {
  16.65% {
    -webkit-transform: translate(8px, -8px);
    transform: translate(8px, -8px);
  }
  33.3% {
    -webkit-transform: translate(-6px, 6px);
    transform: translate(-6px, 6px);
  }
  49.95% {
    -webkit-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  66.6% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px);
  }
  83.25% {
    -webkit-transform: translate(1px, -1px);
    transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hvr-wobble-to-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-to-top-right:hover,
.hvr-wobble-to-top-right:focus,
.hvr-wobble-to-top-right:active {
  -webkit-animation-name: hvr-wobble-to-top-right;
  animation-name: hvr-wobble-to-top-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Top */
@-webkit-keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-top {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.hvr-wobble-top:hover,
.hvr-wobble-top:focus,
.hvr-wobble-top:active {
  -webkit-animation-name: hvr-wobble-top;
  animation-name: hvr-wobble-top;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Bottom */
@-webkit-keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-bottom {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.hvr-wobble-bottom:hover,
.hvr-wobble-bottom:focus,
.hvr-wobble-bottom:active {
  -webkit-animation-name: hvr-wobble-bottom;
  animation-name: hvr-wobble-bottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Wobble Skew */
@-webkit-keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
@keyframes hvr-wobble-skew {
  16.65% {
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
  }
  33.3% {
    -webkit-transform: skew(10deg);
    transform: skew(10deg);
  }
  49.95% {
    -webkit-transform: skew(-6deg);
    transform: skew(-6deg);
  }
  66.6% {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
  83.25% {
    -webkit-transform: skew(-2deg);
    transform: skew(-2deg);
  }
  100% {
    -webkit-transform: skew(0);
    transform: skew(0);
  }
}
.hvr-wobble-skew {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-wobble-skew:hover,
.hvr-wobble-skew:focus,
.hvr-wobble-skew:active {
  -webkit-animation-name: hvr-wobble-skew;
  animation-name: hvr-wobble-skew;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Buzz */
@-webkit-keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz:hover,
.hvr-buzz:focus,
.hvr-buzz:active {
  -webkit-animation-name: hvr-buzz;
  animation-name: hvr-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz-out:hover,
.hvr-buzz-out:focus,
.hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* BACKGROUND TRANSITIONS */
/* Fade */
.hvr-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-fade:hover,
.hvr-fade:focus,
.hvr-fade:active {
  background-color: #2098d1;
  color: white;
}
/* Back Pulse */
@-webkit-keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
@keyframes hvr-back-pulse {
  50% {
    background-color: rgba(32, 152, 209, 0.75);
  }
}
.hvr-back-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
}
.hvr-back-pulse:hover,
.hvr-back-pulse:focus,
.hvr-back-pulse:active {
  -webkit-animation-name: hvr-back-pulse;
  animation-name: hvr-back-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-color: #2098d1;
  color: white;
}
/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white;
}
.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Sweep To Left */
.hvr-sweep-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover,
.hvr-sweep-to-left:focus,
.hvr-sweep-to-left:active {
  color: white;
}
.hvr-sweep-to-left:hover:before,
.hvr-sweep-to-left:focus:before,
.hvr-sweep-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Sweep To Bottom */
.hvr-sweep-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-bottom:hover,
.hvr-sweep-to-bottom:focus,
.hvr-sweep-to-bottom:active {
  color: white;
}
.hvr-sweep-to-bottom:hover:before,
.hvr-sweep-to-bottom:focus:before,
.hvr-sweep-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* Sweep To Top */
.hvr-sweep-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-top:hover,
.hvr-sweep-to-top:focus,
.hvr-sweep-to-top:active {
  color: white;
}
.hvr-sweep-to-top:hover:before,
.hvr-sweep-to-top:focus:before,
.hvr-sweep-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
  color: white;
}
.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Bounce To Left */
.hvr-bounce-to-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-left:hover,
.hvr-bounce-to-left:focus,
.hvr-bounce-to-left:active {
  color: white;
}
.hvr-bounce-to-left:hover:before,
.hvr-bounce-to-left:focus:before,
.hvr-bounce-to-left:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Bounce To Bottom */
.hvr-bounce-to-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-bottom:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-bottom:hover,
.hvr-bounce-to-bottom:focus,
.hvr-bounce-to-bottom:active {
  color: white;
}
.hvr-bounce-to-bottom:hover:before,
.hvr-bounce-to-bottom:focus:before,
.hvr-bounce-to-bottom:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Radial Out */
.hvr-radial-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-out:hover,
.hvr-radial-out:focus,
.hvr-radial-out:active {
  color: white;
}
.hvr-radial-out:hover:before,
.hvr-radial-out:focus:before,
.hvr-radial-out:active:before {
  -webkit-transform: scale(2);
  transform: scale(2);
}
/* Radial In */
.hvr-radial-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-radial-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  border-radius: 100%;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-radial-in:hover,
.hvr-radial-in:focus,
.hvr-radial-in:active {
  color: white;
}
.hvr-radial-in:hover:before,
.hvr-radial-in:focus:before,
.hvr-radial-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* Rectangle In */
.hvr-rectangle-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-in:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e1e1e1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-in:hover,
.hvr-rectangle-in:focus,
.hvr-rectangle-in:active {
  color: white;
}
.hvr-rectangle-in:hover:before,
.hvr-rectangle-in:focus:before,
.hvr-rectangle-in:active:before {
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* Rectangle Out */
.hvr-rectangle-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-rectangle-out:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-rectangle-out:hover,
.hvr-rectangle-out:focus,
.hvr-rectangle-out:active {
  color: white;
}
.hvr-rectangle-out:hover:before,
.hvr-rectangle-out:focus:before,
.hvr-rectangle-out:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Shutter In Horizontal */
.hvr-shutter-in-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-horizontal:hover,
.hvr-shutter-in-horizontal:focus,
.hvr-shutter-in-horizontal:active {
  color: white;
}
.hvr-shutter-in-horizontal:hover:before,
.hvr-shutter-in-horizontal:focus:before,
.hvr-shutter-in-horizontal:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white;
}
.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Shutter In Vertical */
.hvr-shutter-in-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #2098d1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-in-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #e1e1e1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-in-vertical:hover,
.hvr-shutter-in-vertical:focus,
.hvr-shutter-in-vertical:active {
  color: white;
}
.hvr-shutter-in-vertical:hover:before,
.hvr-shutter-in-vertical:focus:before,
.hvr-shutter-in-vertical:active:before {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
/* Shutter Out Vertical */
.hvr-shutter-out-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  background: #e1e1e1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-shutter-out-vertical:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
  color: white;
}
.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
/* BORDER TRANSITIONS */
/* Border Fade */
.hvr-border-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-border-fade:hover,
.hvr-border-fade:focus,
.hvr-border-fade:active {
  box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
/* Hollow */
.hvr-hollow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-hollow:hover,
.hvr-hollow:focus,
.hvr-hollow:active {
  background: none;
}
/* Trim */
.hvr-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-trim:before {
  content: '';
  position: absolute;
  border: white solid 4px;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-trim:hover:before,
.hvr-trim:focus:before,
.hvr-trim:active:before {
  opacity: 1;
}
/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 6px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-out:hover:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:active:before {
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
}
/* Ripple In */
@-webkit-keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
@keyframes hvr-ripple-in {
  100% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-ripple-in:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.hvr-ripple-in:hover:before,
.hvr-ripple-in:focus:before,
.hvr-ripple-in:active:before {
  -webkit-animation-name: hvr-ripple-in;
  animation-name: hvr-ripple-in;
}
/* Outline Out */
.hvr-outline-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-outline-out:before {
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-out:hover:before,
.hvr-outline-out:focus:before,
.hvr-outline-out:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}
/* Outline In */
.hvr-outline-in {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-outline-in:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #e1e1e1 solid 4px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
.hvr-outline-in:hover:before,
.hvr-outline-in:focus:before,
.hvr-outline-in:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}
/* Round Corners */
.hvr-round-corners {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: border-radius;
  transition-property: border-radius;
}
.hvr-round-corners:hover,
.hvr-round-corners:focus,
.hvr-round-corners:active {
  border-radius: 1em;
}
/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}
/* Underline From Center */
.hvr-underline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}
/* Underline From Right */
.hvr-underline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-right:hover:before,
.hvr-underline-from-right:focus:before,
.hvr-underline-from-right:active:before {
  left: 0;
}
/* Overline From Left */
.hvr-overline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-left:hover:before,
.hvr-overline-from-left:focus:before,
.hvr-overline-from-left:active:before {
  right: 0;
}
/* Overline From Center */
.hvr-overline-from-center {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-center:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-center:hover:before,
.hvr-overline-from-center:focus:before,
.hvr-overline-from-center:active:before {
  left: 0;
  right: 0;
}
/* Overline From Right */
.hvr-overline-from-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-from-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-from-right:hover:before,
.hvr-overline-from-right:focus:before,
.hvr-overline-from-right:active:before {
  left: 0;
}
/* Reveal */
.hvr-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: #2098d1;
  border-style: solid;
  border-width: 0;
  -webkit-transition-property: border-width;
  transition-property: border-width;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-reveal:hover:before,
.hvr-reveal:focus:before,
.hvr-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  border-width: 4px;
}
/* Underline Reveal */
.hvr-underline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-reveal:hover:before,
.hvr-underline-reveal:focus:before,
.hvr-underline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* Overline Reveal */
.hvr-overline-reveal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-overline-reveal:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  background: #2098d1;
  height: 4px;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-overline-reveal:hover:before,
.hvr-overline-reveal:focus:before,
.hvr-overline-reveal:active:before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* SHADOW/GLOW TRANSITIONS */
/* Glow */
.hvr-glow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
/* Shadow */
.hvr-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-shadow:hover,
.hvr-shadow:focus,
.hvr-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  -webkit-transition-property: box-shadow, -webkit-transform;
  transition-property: box-shadow, -webkit-transform;
  transition-property: box-shadow, transform;
  transition-property: box-shadow, transform, -webkit-transform;
}
.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
/* Box Shadow Outset */
.hvr-box-shadow-outset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
}
.hvr-box-shadow-outset:hover,
.hvr-box-shadow-outset:focus,
.hvr-box-shadow-outset:active {
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}
/* Box Shadow Inset */
.hvr-box-shadow-inset {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow;
  transition-property: box-shadow;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-box-shadow-inset:hover,
.hvr-box-shadow-inset:focus,
.hvr-box-shadow-inset:active {
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  /* Hack to improve aliasing on mobile/tablet devices */
}
/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}
.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
/* Shadow Radial */
.hvr-shadow-radial {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-shadow-radial:before,
.hvr-shadow-radial:after {
  pointer-events: none;
  position: absolute;
  content: '';
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-repeat: no-repeat;
  height: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hvr-shadow-radial:before {
  bottom: 100%;
  background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(50% 150% ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:after {
  top: 100%;
  background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-radial-gradient(50% -50% ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
}
.hvr-shadow-radial:hover:before,
.hvr-shadow-radial:focus:before,
.hvr-shadow-radial:active:before,
.hvr-shadow-radial:hover:after,
.hvr-shadow-radial:focus:after,
.hvr-shadow-radial:active:after {
  opacity: 1;
}
/* SPEECH BUBBLES */
/* Bubble Top */
.hvr-bubble-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-top:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  left: calc(40%);
  top: 0;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
}
.hvr-bubble-top:hover:before,
.hvr-bubble-top:focus:before,
.hvr-bubble-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* Bubble Right */
.hvr-bubble-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-right:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  top: calc(40%);
  right: 0;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
}
.hvr-bubble-right:hover:before,
.hvr-bubble-right:focus:before,
.hvr-bubble-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
/* Bubble Bottom */
.hvr-bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  left: calc(40%);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
}
.hvr-bubble-bottom:hover:before,
.hvr-bubble-bottom:focus:before,
.hvr-bubble-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
/* Bubble Left */
.hvr-bubble-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-bubble-left:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  top: calc(40%);
  left: 0;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
}
.hvr-bubble-left:hover:before,
.hvr-bubble-left:focus:before,
.hvr-bubble-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
/* Bubble Float Top */
.hvr-bubble-float-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-top:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(40%);
  top: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #e1e1e1 transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-top:hover,
.hvr-bubble-float-top:focus,
.hvr-bubble-float-top:active {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
.hvr-bubble-float-top:hover:before,
.hvr-bubble-float-top:focus:before,
.hvr-bubble-float-top:active:before {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
/* Bubble Float Right */
.hvr-bubble-float-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-right:before {
  position: absolute;
  z-index: -1;
  top: calc(40%);
  right: 0;
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #e1e1e1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-right:hover,
.hvr-bubble-float-right:focus,
.hvr-bubble-float-right:active {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
.hvr-bubble-float-right:hover:before,
.hvr-bubble-float-right:focus:before,
.hvr-bubble-float-right:active:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
/* Bubble Float Bottom */
.hvr-bubble-float-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-bottom:before {
  position: absolute;
  z-index: -1;
  content: '';
  left: calc(40%);
  bottom: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #e1e1e1 transparent transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-bottom:hover,
.hvr-bubble-float-bottom:focus,
.hvr-bubble-float-bottom:active {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}
.hvr-bubble-float-bottom:hover:before,
.hvr-bubble-float-bottom:focus:before,
.hvr-bubble-float-bottom:active:before {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
}
/* Bubble Float Left */
.hvr-bubble-float-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-left:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: calc(40%);
  left: 0;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #e1e1e1 transparent transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.hvr-bubble-float-left:hover,
.hvr-bubble-float-left:focus,
.hvr-bubble-float-left:active {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.hvr-bubble-float-left:hover:before,
.hvr-bubble-float-left:focus:before,
.hvr-bubble-float-left:active:before {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}
/* ICONS */
/* Icon Back */
.hvr-icon-back {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-left: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-back:before {
  content: "\f137";
  position: absolute;
  left: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
}
/* Icon Forward */
.hvr-icon-forward {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hvr-icon-forward:before {
  content: "\f138";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}
/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
/* Icon Down */
.hvr-icon-down {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-down:before {
  content: "\f01a";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-down:hover:before,
.hvr-icon-down:focus:before,
.hvr-icon-down:active:before {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
/* Icon Up */
@-webkit-keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-up {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
/* Icon Up */
.hvr-icon-up {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-up:before {
  content: "\f01b";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-up:hover:before,
.hvr-icon-up:focus:before,
.hvr-icon-up:active:before {
  -webkit-animation-name: hvr-icon-up;
  animation-name: hvr-icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
/* Icon Spin */
.hvr-icon-spin {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-spin:before {
  content: "\f021";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.hvr-icon-spin:hover:before,
.hvr-icon-spin:focus:before,
.hvr-icon-spin:active:before {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
/* Icon Drop */
@-webkit-keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51%,
  100% {
    opacity: 1;
  }
}
@keyframes hvr-icon-drop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51%,
  100% {
    opacity: 1;
  }
}
/* Icon Drop */
.hvr-icon-drop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-drop:before {
  content: "\f041";
  position: absolute;
  right: 1em;
  opacity: 1;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-drop:hover:before,
.hvr-icon-drop:focus:before,
.hvr-icon-drop:active:before {
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-animation-name: hvr-icon-drop;
  animation-name: hvr-icon-drop;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
/* Icon Fade */
.hvr-icon-fade {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-fade:before {
  content: "\f00c";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: color;
  transition-property: color;
}
.hvr-icon-fade:hover:before,
.hvr-icon-fade:focus:before,
.hvr-icon-fade:active:before {
  color: #0F9E5E;
}
/* Icon Float Away */
@-webkit-keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
@keyframes hvr-icon-float-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em);
  }
}
/* Icon Float Away */
.hvr-icon-float-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-float-away:before,
.hvr-icon-float-away:after {
  content: "\f055";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
}
.hvr-icon-float-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-float-away:hover:after,
.hvr-icon-float-away:focus:after,
.hvr-icon-float-away:active:after {
  -webkit-animation-name: hvr-icon-float-away;
  animation-name: hvr-icon-float-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
/* Icon Sink Away */
@-webkit-keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}
@keyframes hvr-icon-sink-away {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em);
  }
}
/* Icon Sink Away */
.hvr-icon-sink-away {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-sink-away:before,
.hvr-icon-sink-away:after {
  content: "\f056";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-sink-away:after {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.hvr-icon-sink-away:hover:after,
.hvr-icon-sink-away:focus:after,
.hvr-icon-sink-away:active:after {
  -webkit-animation-name: hvr-icon-sink-away;
  animation-name: hvr-icon-sink-away;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
/* Icon Grow */
.hvr-icon-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow:before {
  content: "\f118";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow:hover:before,
.hvr-icon-grow:focus:before,
.hvr-icon-grow:active:before {
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
}
/* Icon Shrink */
.hvr-icon-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-shrink:before {
  content: "\f119";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-shrink:hover:before,
.hvr-icon-shrink:focus:before,
.hvr-icon-shrink:active:before {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}
/* Icon Pulse */
@-webkit-keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse {
  25% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.hvr-icon-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse:hover:before,
.hvr-icon-pulse:focus:before,
.hvr-icon-pulse:active:before {
  -webkit-animation-name: hvr-icon-pulse;
  animation-name: hvr-icon-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Icon Pulse Grow */
@-webkit-keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes hvr-icon-pulse-grow {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
.hvr-icon-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse-grow:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-grow:hover:before,
.hvr-icon-pulse-grow:focus:before,
.hvr-icon-pulse-grow:active:before {
  -webkit-animation-name: hvr-icon-pulse-grow;
  animation-name: hvr-icon-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* Icon Pulse Shrink */
@-webkit-keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes hvr-icon-pulse-shrink {
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.hvr-icon-pulse-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
}
.hvr-icon-pulse-shrink:before {
  content: "\f015";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pulse-shrink:hover:before,
.hvr-icon-pulse-shrink:focus:before,
.hvr-icon-pulse-shrink:active:before {
  -webkit-animation-name: hvr-icon-pulse-shrink;
  animation-name: hvr-icon-pulse-shrink;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
/* Icon Push */
@-webkit-keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes hvr-icon-push {
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
.hvr-icon-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-push:before {
  content: "\f006";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-push:hover:before,
.hvr-icon-push:focus:before,
.hvr-icon-push:active:before {
  -webkit-animation-name: hvr-icon-push;
  animation-name: hvr-icon-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Icon Pop */
@-webkit-keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
@keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}
.hvr-icon-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-pop:before {
  content: "\f005";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-pop:hover:before,
.hvr-icon-pop:focus:before,
.hvr-icon-pop:active:before {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Icon Bounce */
.hvr-icon-bounce {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bounce:before {
  content: "\f087";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-bounce:hover:before,
.hvr-icon-bounce:focus:before,
.hvr-icon-bounce:active:before {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
/* Icon Rotate */
.hvr-icon-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-rotate:before {
  content: "\f0c6";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-rotate:hover:before,
.hvr-icon-rotate:focus:before,
.hvr-icon-rotate:active:before {
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
/* Icon Grow Rotate */
.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-grow-rotate:before {
  content: "\f095";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-grow-rotate:hover:before,
.hvr-icon-grow-rotate:focus:before,
.hvr-icon-grow-rotate:active:before {
  -webkit-transform: scale(1.5) rotate(12deg);
  transform: scale(1.5) rotate(12deg);
}
/* Icon Float */
.hvr-icon-float {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-float:before {
  content: "\f01b";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-float:hover:before,
.hvr-icon-float:focus:before,
.hvr-icon-float:active:before {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}
/* Icon Sink */
.hvr-icon-sink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-sink:before {
  content: "\f01a";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-icon-sink:hover:before,
.hvr-icon-sink:focus:before,
.hvr-icon-sink:active:before {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
}
/* Icon Bob */
@-webkit-keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob {
  0% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@-webkit-keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
@keyframes hvr-icon-bob-float {
  100% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
}
.hvr-icon-bob {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-bob:before {
  content: "\f077";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-bob:hover:before,
.hvr-icon-bob:focus:before,
.hvr-icon-bob:active:before {
  -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  animation-name: hvr-icon-bob-float, hvr-icon-bob;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Icon Hang */
@-webkit-keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang {
  0% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  50% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-hang-sink {
  100% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
.hvr-icon-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-hang:before {
  content: "\f078";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-hang:hover:before,
.hvr-icon-hang:focus:before,
.hvr-icon-hang:active:before {
  -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
/* Icon Wobble Horizontal */
@-webkit-keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-icon-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  33.3% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.hvr-icon-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-horizontal:before {
  content: "\f061";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-horizontal:hover:before,
.hvr-icon-wobble-horizontal:focus:before,
.hvr-icon-wobble-horizontal:active:before {
  -webkit-animation-name: hvr-icon-wobble-horizontal;
  animation-name: hvr-icon-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Icon Wobble Vertical */
@-webkit-keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-icon-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  33.3% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-icon-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-wobble-vertical:before {
  content: "\f062";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-wobble-vertical:hover:before,
.hvr-icon-wobble-vertical:focus:before,
.hvr-icon-wobble-vertical:active:before {
  -webkit-animation-name: hvr-icon-wobble-vertical;
  animation-name: hvr-icon-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* Icon Buzz */
@-webkit-keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
@keyframes hvr-icon-buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}
.hvr-icon-buzz {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz:before {
  content: "\f017";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz:hover:before,
.hvr-icon-buzz:focus:before,
.hvr-icon-buzz:active:before {
  -webkit-animation-name: hvr-icon-buzz;
  animation-name: hvr-icon-buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
/* Icon Buzz Out */
@-webkit-keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
@keyframes hvr-icon-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }
  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}
.hvr-icon-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  padding-right: 2.2em;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-icon-buzz-out:before {
  content: "\f023";
  position: absolute;
  right: 1em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-buzz-out:hover:before,
.hvr-icon-buzz-out:focus:before,
.hvr-icon-buzz-out:active:before {
  -webkit-animation-name: hvr-icon-buzz-out;
  animation-name: hvr-icon-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/* CURLS */
/* Curl Top Left */
.hvr-curl-top-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-top-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: -webkit-linear-gradient(315deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  background: linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#000000');
  /*For IE7-8-9*/
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-left:hover:before,
.hvr-curl-top-left:focus:before,
.hvr-curl-top-left:active:before {
  width: 25px;
  height: 25px;
}
/* Curl Top Right */
.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-top-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: -webkit-linear-gradient(225deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  background: linear-gradient(225deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-top-right:hover:before,
.hvr-curl-top-right:focus:before,
.hvr-curl-top-right:active:before {
  width: 25px;
  height: 25px;
}
/* Curl Bottom Right */
.hvr-curl-bottom-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-bottom-right:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  background: white;
  /* IE9 */
  background: -webkit-linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  background: linear-gradient(315deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-right:hover:before,
.hvr-curl-bottom-right:focus:before,
.hvr-curl-bottom-right:active:before {
  width: 25px;
  height: 25px;
}
/* Curl Bottom Left */
.hvr-curl-bottom-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.hvr-curl-bottom-left:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  bottom: 0;
  left: 0;
  background: white;
  /* IE9 */
  background: -webkit-linear-gradient(45deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  background: linear-gradient(45deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}
.hvr-curl-bottom-left:hover:before,
.hvr-curl-bottom-left:focus:before,
.hvr-curl-bottom-left:active:before {
  width: 25px;
  height: 25px;
}
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  /* support: IE8 */
}
.ui-front {
  z-index: 100;
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  min-height: 0;
  /* support: IE7 */
  font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}
.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em;
}
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
/* button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}
.ui-button-text-only .ui-button-text {
  padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: .4em 1em;
}
/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: .5em;
}
/* button sets */
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}
/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.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: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}
.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: 1px;
}
.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;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-dialog {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
.ui-draggable-handle {
  touch-action: none;
}
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: none;
}
.ui-menu .ui-menu {
  position: absolute;
}
.ui-menu .ui-menu-item {
  position: relative;
  margin: 0;
  padding: 3px 1em 3px .4em;
  cursor: pointer;
  min-height: 0;
  /* support: IE7 */
  /* support: IE10, see #8844 */
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}
/* icon support */
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}
/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}
/* right-aligned */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,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");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
.ui-selectable {
  touch-action: none;
}
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  /* Support: IE7 */
  overflow-x: hidden;
  padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}
.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
  right: 0.5em;
  left: auto;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
  text-align: left;
  padding: 0.4em 2.1em 0.4em 1em;
  display: block;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  touch-action: none;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}
.ui-slider-horizontal {
  height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: .8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.ui-sortable-handle {
  touch-action: none;
}
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 22px;
}
.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
/* vertically center icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}
.ui-spinner-up {
  top: 0;
}
.ui-spinner-down {
  bottom: 0;
}
/* TR overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px;
}
.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em;
}
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
  border-width: 2px;
}
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}
.ui-widget-content a {
  color: #333333;
}
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}
.ui-widget-header a {
  color: #333333;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #454545;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
  color: #2b2b2b;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: alpha(opacity=70);
  /* support: IE8 */
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: alpha(opacity=35);
  /* support: IE8 */
  background-image: none;
}
.ui-state-disabled .ui-icon {
  filter: alpha(opacity=35);
  /* support: IE8 - See #6059 */
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEVEREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREQf23IJAAAAWXRSTlMAAQIDBAYICg0QExYZGhweHyAhIiMkJyksLzEyMzQ4PD9AQkVHSEpLUFFTVVpgYmNmaGptb3F8f4CChYeMj5GUmZyeoKKlqKqrra+ytbi8vr/DxsjMz9/v/RiIxeUAAA0USURBVHgB7Nvhbtw4EANg/11gXvB7/xc5oDggUIhS2Mtm6+bEfzU51gw1kq16cx0cHNwBY/7n9bu5A+bLJVbSMIvY/MEOBIsgJohP7LCwUWIMEPGLmPlzHQhijtKAnMFkMzwHSHGEfAsy/1pC4QdTovW7hzhG/F4wWWDrALBfQ60DSgJv64BAT3HbwU0wbOxlcg/42U+BWEL5FDgvQgcHBwcHBwcHP/9NcO71IgbWC1MKAhS/hnL/wazy974KZwJhQAo+y83v/RppwNTD41sOQ5F/z7jQgyl+VT8TuHC9C8gDfst4Up4FT/Mz5d7fAR3jO/8/YC2u7wHnKXBwcHBwcHBw8KPha9Hwpft7awEJ9At7ssNz40O5gT7APgJWWkrWcMm1ATKBZLfj13oEHXywpYIczidSkLWDIkCSffx6XJYGFBroFfTwkkAWCKwCVjmI8Z+wqLcwO3+zYj28J7Af4Ynykk0BcaHzmzti29BlwKTzUmddX4Rbx0MqDg4ODg4ODg5e8bNUXpxAeXNJDvjv+Q3PJVAHSFUA9glYPyuZheow7QAtP+/TD5g5fhrQC0iuJgDrh0Vm4WoHMdWAYZt/SJoD1PoFqccvx1ksFrl6B2GJD4PlFdc+AcHGDSLDiA8+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");
}
.ui-widget-header .ui-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEVEREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREQf23IJAAAAWXRSTlMAAQIDBAYICg0QExYZGhweHyAhIiMkJyksLzEyMzQ4PD9AQkVHSEpLUFFTVVpgYmNmaGptb3F8f4CChYeMj5GUmZyeoKKlqKqrra+ytbi8vr/DxsjMz9/v/RiIxeUAAA0USURBVHgB7Nvhbtw4EANg/11gXvB7/xc5oDggUIhS2Mtm6+bEfzU51gw1kq16cx0cHNwBY/7n9bu5A+bLJVbSMIvY/MEOBIsgJohP7LCwUWIMEPGLmPlzHQhijtKAnMFkMzwHSHGEfAsy/1pC4QdTovW7hzhG/F4wWWDrALBfQ60DSgJv64BAT3HbwU0wbOxlcg/42U+BWEL5FDgvQgcHBwcHBwcHP/9NcO71IgbWC1MKAhS/hnL/wazy974KZwJhQAo+y83v/RppwNTD41sOQ5F/z7jQgyl+VT8TuHC9C8gDfst4Up4FT/Mz5d7fAR3jO/8/YC2u7wHnKXBwcHBwcHBw8KPha9Hwpft7awEJ9At7ssNz40O5gT7APgJWWkrWcMm1ATKBZLfj13oEHXywpYIczidSkLWDIkCSffx6XJYGFBroFfTwkkAWCKwCVjmI8Z+wqLcwO3+zYj28J7Af4Ynykk0BcaHzmzti29BlwKTzUmddX4Rbx0MqDg4ODg4ODg5e8bNUXpxAeXNJDvjv+Q3PJVAHSFUA9glYPyuZheow7QAtP+/TD5g5fhrQC0iuJgDrh0Vm4WoHMdWAYZt/SJoD1PoFqccvx1ksFrl6B2GJD4PlFdc+AcHGDSLDiA8+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");
}
.ui-state-default .ui-icon {
  background-image: url("data:image/png;base64,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");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url("data:image/png;base64,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");
}
.ui-state-active .ui-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEX////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////uKVtWAAAAWXRSTlMAAQIDBAYICg0QExYZGhweHyAhIiMkJyksLzEyMzQ4PD9AQkVHSEpLUFFTVVpgYmNmaGptb3F8f4CChYeMj5GUmZyeoKKlqKqrra+ytbi8vr/DxsjMz9/v/RiIxeUAAA0USURBVHgB7Nvhbtw4EANg/11gXvB7/xc5oDggUIhS2Mtm6+bEfzU51gw1kq16cx0cHNwBY/7n9bu5A+bLJVbSMIvY/MEOBIsgJohP7LCwUWIMEPGLmPlzHQhijtKAnMFkMzwHSHGEfAsy/1pC4QdTovW7hzhG/F4wWWDrALBfQ60DSgJv64BAT3HbwU0wbOxlcg/42U+BWEL5FDgvQgcHBwcHBwcHP/9NcO71IgbWC1MKAhS/hnL/wazy974KZwJhQAo+y83v/RppwNTD41sOQ5F/z7jQgyl+VT8TuHC9C8gDfst4Up4FT/Mz5d7fAR3jO/8/YC2u7wHnKXBwcHBwcHBw8KPha9Hwpft7awEJ9At7ssNz40O5gT7APgJWWkrWcMm1ATKBZLfj13oEHXywpYIczidSkLWDIkCSffx6XJYGFBroFfTwkkAWCKwCVjmI8Z+wqLcwO3+zYj28J7Af4Ynykk0BcaHzmzti29BlwKTzUmddX4Rbx0MqDg4ODg4ODg5e8bNUXpxAeXNJDvjv+Q3PJVAHSFUA9glYPyuZheow7QAtP+/TD5g5fhrQC0iuJgDrh0Vm4WoHMdWAYZt/SJoD1PoFqccvx1ksFrl6B2GJD4PlFdc+AcHGDSLDiA8+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");
}
.ui-state-highlight .ui-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEV3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diB3diBVLkeJAAAAWXRSTlMAGRAzBAhQv4KZLyJVcUBmYBoTMswNITwWQkhLIB5aIycxUyyFNIeAw2rIz8Y4RRy8uL58q7WljKqorR+yKf0BnlEk7woGAgOPomKUSqCvbd+cR2M/b3+RaPlAXvEAAA0RSURBVHgB7Nvtjts4DIVhMXf53P+NLFAsMFAOSiHNRz0dvn8W60NaJEXZVpVZwxUYhlI/PH8Xr4B6OsVWVNRmrP5iB4LNICaIO7XY1EgxBgj/zZj6ex0IYo6yADmDqaZ7DpDG6fImIv4mhUYvVOOtv3sa54jvhMoEuw4A5zXUdUATwMc6IOlDPHVwZ1AcykvlM+DffgvEEoq3wHwIDcMwDMMw/IAvwbrWhxjYL1STEKCpV9Hcv1B3d/9oSTKAKEAa3Jur39erZAGq3Tx+aDOU8TcRN3Khmnr19QywsD4FcoPfRVxpnglXV8809/kO6Cnv/PeAOi3BpeYt8CMYhmEYhmHwnDc8dX+fTSBAf+Es9nhsfGhu4DxA7wG7LE12d6l1A2QAqR7Hb/MRcuihNhnkcO5EIbYdFA5S7Mdvt8u6AoQM9Bl07n0AkSDYDdjNgRj/gRL1Lcypvpmx3r0P4DzCI+mFmgbEhUY/3xHnhm4GDDkv9ar1JC7tD2kxDMMwDMPwip+l8uIAui+X0IA/j694LIB+gLAK4ByA/VhJ7VKL6jbQ8niffoPZj58FyARC6wOA/WCR2rS2g6i2AMUx/jDpKkCbvxD1/tt2FluJrL6DsPlHgeUV6xyAUOMGGWH4hx7+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");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAADwCAMAAADYSUr5AAABDlBMVEXMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADMAADP1XLPAAAAWXRSTlMAGRAzBAhQv4KZLyJVcUBmYBoTMswNITwWQkhLIB5aIycxUyyFNIeAw2rIz8Y4RRy8uL58q7WljKqorR+yKf0BnlEk7woGAgOPomKUSqCvbd+cR2M/b3+RaPlAXvEAAA0RSURBVHgB7Nvtjts4DIVhMXf53P+NLFAsMFAOSiHNRz0dvn8W60NaJEXZVpVZwxUYhlI/PH8Xr4B6OsVWVNRmrP5iB4LNICaIO7XY1EgxBgj/zZj6ex0IYo6yADmDqaZ7DpDG6fImIv4mhUYvVOOtv3sa54jvhMoEuw4A5zXUdUATwMc6IOlDPHVwZ1AcykvlM+DffgvEEoq3wHwIDcMwDMMw/IAvwbrWhxjYL1STEKCpV9Hcv1B3d/9oSTKAKEAa3Jur39erZAGq3Tx+aDOU8TcRN3Khmnr19QywsD4FcoPfRVxpnglXV8809/kO6Cnv/PeAOi3BpeYt8CMYhmEYhmHwnDc8dX+fTSBAf+Es9nhsfGhu4DxA7wG7LE12d6l1A2QAqR7Hb/MRcuihNhnkcO5EIbYdFA5S7Mdvt8u6AoQM9Bl07n0AkSDYDdjNgRj/gRL1Lcypvpmx3r0P4DzCI+mFmgbEhUY/3xHnhm4GDDkv9ar1JC7tD2kxDMMwDMPwip+l8uIAui+X0IA/j694LIB+gLAK4ByA/VhJ7VKL6jbQ8niffoPZj58FyARC6wOA/WCR2rS2g6i2AMUx/jDpKkCbvxD1/tt2FluJrL6DsPlHgeUV6xyAUOMGGWH4hx7+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");
}
/* positioning */
.ui-icon-blank {
  background-position: 16px 16px;
}
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-on {
  background-position: -96px -144px;
}
.ui-icon-radio-off {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}
/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .3;
  filter: alpha(opacity=30);
  /* support: IE8 */
}
.ui-widget-shadow {
  margin: 0px 0 0 0px;
  padding: 5px;
  background: #666666;
  opacity: .3;
  filter: alpha(opacity=30);
  /* support: IE8 */
  border-radius: 8px;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f6f6f6;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}
.dropzone {
  min-height: 150px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
  padding: 20px 20px;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: -webkit-linear-gradient(top, #eee, #ddd);
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: -webkit-linear-gradient(top, #666, #444);
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: -webkit-linear-gradient(top, #be2626, #a92222);
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
.toggle-slide {
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  direction: ltr;
}
.toggle-slide .toggle-on,
.toggle-slide .toggle-off,
.toggle-slide .toggle-blob {
  float: left;
}
.toggle-slide .toggle-blob {
  position: relative;
  z-index: 99;
  cursor: hand;
  cursor: -webkit-grab;
  cursor: grab;
}
.toggle-dark .toggle-slide {
  border-radius: 5px;
  box-shadow: 0 0 0 1px #242529, 0 1px 0 1px #666;
}
.toggle-dark .toggle-on,
.toggle-dark .toggle-off,
.toggle-dark .toggle-blob {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}
.toggle-dark .toggle-on,
.toggle-dark .toggle-select .toggle-inner .active {
  background: -webkit-gradient(linear, left top, left bottom, from(#1a70be), to(#31a2e1));
  background: -webkit-linear-gradient(top, #1a70be 0%, #31a2e1 100%);
  background: linear-gradient(top, #1a70be 0%, #31a2e1 100%);
}
.toggle-dark .toggle-off,
.toggle-dark .toggle-select .toggle-on {
  background: -webkit-gradient(linear, left top, left bottom, from(#242529), to(#34363b));
  background: -webkit-linear-gradient(top, #242529 0%, #34363b 100%);
  background: linear-gradient(top, #242529 0%, #34363b 100%);
}
.toggle-dark .toggle-blob {
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#cfcfcf), to(#f5f5f5));
  background: -webkit-linear-gradient(top, #cfcfcf 0%, #f5f5f5 100%);
  background: linear-gradient(top, #cfcfcf 0%, #f5f5f5 100%);
  box-shadow: inset 0 0 0 1px #888, inset 0 0 0 2px white;
}
.toggle-dark .toggle-blob:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#c0c0c0), to(#dadada));
  background: -webkit-linear-gradient(top, #c0c0c0 0%, #dadada 100%);
  background: linear-gradient(top, #c0c0c0 0%, #dadada 100%);
  box-shadow: inset 0 0 0 1px #888,inset 0 0 0 2px #ddd;
}
.toggle-iphone .toggle-slide {
  border-radius: 9999px;
  box-shadow: 0 0 0 1px #999;
}
.toggle-iphone .toggle-on,
.toggle-iphone .toggle-off {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
.toggle-iphone .toggle-on {
  border-radius: 9999px 0 0 9999px;
  background: #037bda;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}
.toggle-iphone .toggle-on:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#1189f1), to(#3797ef));
  background: -webkit-linear-gradient(top, #1189f1 0%, #3797ef 100%);
  background: linear-gradient(to bottom, #1189f1 0%, #3797ef 100%);
  height: 50%;
  content: '';
  margin-top: -19%;
  display: block;
  border-radius: 9999px;
  margin-left: 10%;
}
.toggle-iphone .toggle-off {
  box-shadow: inset -2px 2px 5px rgba(0, 0, 0, 0.4);
  border-radius: 0 9999px 9999px 0;
  color: #828282;
  background: #ECECEC;
  text-shadow: 0 0 1px white;
}
.toggle-iphone .toggle-off:after {
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#fdfdfd));
  background: -webkit-linear-gradient(top, #fafafa 0%, #fdfdfd 100%);
  background: linear-gradient(to bottom, #fafafa 0%, #fdfdfd 100%);
  height: 50%;
  content: '';
  margin-top: -19%;
  display: block;
  margin-right: 10%;
  border-radius: 9999px;
}
.toggle-iphone .toggle-blob {
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#d1d1d1), to(#fafafa));
  background: -webkit-linear-gradient(top, #d1d1d1 0%, #fafafa 100%);
  background: linear-gradient(to bottom, #d1d1d1 0%, #fafafa 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.6), inset 0 0 0 2px #ffffff, 0 0 3px rgba(0, 0, 0, 0.6);
}
.toggle-light .toggle-slide {
  border-radius: 9999px;
  box-shadow: 0 0 0 1px #999;
}
.toggle-light .toggle-on,
.toggle-light .toggle-off {
  font-size: 11px;
  font-weight: 500;
}
.toggle-light .toggle-on,
.toggle-light .toggle-select .toggle-inner .active {
  background: #45a31f;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.8);
}
.toggle-light .toggle-off,
.toggle-light .toggle-select .toggle-on {
  color: rgba(0, 0, 0, 0.6);
  text-shadow: 0 1px rgba(255, 255, 255, 0.2);
  background: -webkit-gradient(linear, left top, left bottom, from(#cfcfcf), to(#f5f5f5));
  background: -webkit-linear-gradient(#cfcfcf, #f5f5f5);
  background: linear-gradient(#cfcfcf, #f5f5f5);
}
.toggle-light .toggle-blob {
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#cfcfcf));
  background: -webkit-linear-gradient(#f5f5f5, #cfcfcf);
  background: linear-gradient(#f5f5f5, #cfcfcf);
  box-shadow: 1px 1px 2px #888;
}
.toggle-light .toggle-blob:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
  background: -webkit-linear-gradient(#e4e4e4, #f9f9f9);
  background: linear-gradient(#e4e4e4, #f9f9f9);
}
.toggle-modern .toggle-slide {
  border-radius: 4px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 0 1px rgba(0, 0, 0, 0.2);
  background: -webkit-gradient(linear, left top, left bottom, from(#c0c5c9), to(#a1a9af));
  background: -webkit-linear-gradient(#c0c5c9, #a1a9af);
  background: linear-gradient(#c0c5c9, #a1a9af);
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.15);
}
.toggle-modern .toggle-on,
.toggle-modern .toggle-off {
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  color: white;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 11px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
}
.toggle-modern .toggle-select .toggle-off,
.toggle-modern .toggle-select .toggle-on {
  background: none;
}
.toggle-modern .toggle-off,
.toggle-modern .toggle-off.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#737e8d), to(#3f454e));
  background: -webkit-linear-gradient(#737e8d, #3f454e);
  background: linear-gradient(#737e8d, #3f454e);
}
.toggle-modern .toggle-on,
.toggle-modern .toggle-on.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#4894cd), to(#2852a6));
  background: -webkit-linear-gradient(#4894cd, #2852a6);
  background: linear-gradient(#4894cd, #2852a6);
}
.toggle-modern .toggle-blob {
  background: -webkit-gradient(linear, left top, left bottom, from(#c0c6c9), to(#81898f));
  background: -webkit-linear-gradient(#c0c6c9, #81898f);
  background: linear-gradient(#c0c6c9, #81898f);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 -1px 1px rgba(0, 0, 0, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.toggle-modern .toggle-blob:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a1a9af), to(#a1a9af));
  background-image: -webkit-linear-gradient(#a1a9af, #a1a9af);
  background-image: linear-gradient(#a1a9af, #a1a9af);
}
.toggle-soft .toggle-slide {
  border-radius: 5px;
  box-shadow: 0 0 0 1px #999;
}
.toggle-soft .toggle-on,
.toggle-soft .toggle-off {
  color: rgba(0, 0, 0, 0.7);
  font-size: 11px;
  text-shadow: 1px 1px white;
}
.toggle-soft .toggle-on,
.toggle-soft .toggle-select .toggle-inner .active {
  background: -webkit-gradient(linear, left top, left bottom, from(#d2ff52), to(#91e842));
  background: -webkit-linear-gradient(#d2ff52, #91e842);
  background: linear-gradient(#d2ff52, #91e842);
}
.toggle-soft .toggle-off,
.toggle-soft .toggle-select .toggle-on {
  background: -webkit-gradient(linear, left top, left bottom, from(#cfcfcf), to(#f5f5f5));
  background: -webkit-linear-gradient(#cfcfcf, #f5f5f5);
  background: linear-gradient(#cfcfcf, #f5f5f5);
}
.toggle-soft .toggle-blob {
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#cfcfcf), to(#f5f5f5));
  background: -webkit-linear-gradient(#cfcfcf, #f5f5f5);
  background: linear-gradient(#cfcfcf, #f5f5f5);
  box-shadow: inset 0 0 0 1px #bbb, inset 0 0 0 2px white;
}
.toggle-soft .toggle-blob:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
  background: -webkit-linear-gradient(#e4e4e4, #f9f9f9);
  background: linear-gradient(#e4e4e4, #f9f9f9);
  box-shadow: inset 0 0 0 1px #ddd,inset 0 0 0 2px #ddd;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-genderless:before,
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}
.fa-tty:before {
  content: "\f1e4";
}
.fa-binoculars:before {
  content: "\f1e5";
}
.fa-plug:before {
  content: "\f1e6";
}
.fa-slideshare:before {
  content: "\f1e7";
}
.fa-twitch:before {
  content: "\f1e8";
}
.fa-yelp:before {
  content: "\f1e9";
}
.fa-newspaper-o:before {
  content: "\f1ea";
}
.fa-wifi:before {
  content: "\f1eb";
}
.fa-calculator:before {
  content: "\f1ec";
}
.fa-paypal:before {
  content: "\f1ed";
}
.fa-google-wallet:before {
  content: "\f1ee";
}
.fa-cc-visa:before {
  content: "\f1f0";
}
.fa-cc-mastercard:before {
  content: "\f1f1";
}
.fa-cc-discover:before {
  content: "\f1f2";
}
.fa-cc-amex:before {
  content: "\f1f3";
}
.fa-cc-paypal:before {
  content: "\f1f4";
}
.fa-cc-stripe:before {
  content: "\f1f5";
}
.fa-bell-slash:before {
  content: "\f1f6";
}
.fa-bell-slash-o:before {
  content: "\f1f7";
}
.fa-trash:before {
  content: "\f1f8";
}
.fa-copyright:before {
  content: "\f1f9";
}
.fa-at:before {
  content: "\f1fa";
}
.fa-eyedropper:before {
  content: "\f1fb";
}
.fa-paint-brush:before {
  content: "\f1fc";
}
.fa-birthday-cake:before {
  content: "\f1fd";
}
.fa-area-chart:before {
  content: "\f1fe";
}
.fa-pie-chart:before {
  content: "\f200";
}
.fa-line-chart:before {
  content: "\f201";
}
.fa-lastfm:before {
  content: "\f202";
}
.fa-lastfm-square:before {
  content: "\f203";
}
.fa-toggle-off:before {
  content: "\f204";
}
.fa-toggle-on:before {
  content: "\f205";
}
.fa-bicycle:before {
  content: "\f206";
}
.fa-bus:before {
  content: "\f207";
}
.fa-ioxhost:before {
  content: "\f208";
}
.fa-angellist:before {
  content: "\f209";
}
.fa-cc:before {
  content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}
.fa-meanpath:before {
  content: "\f20c";
}
.fa-buysellads:before {
  content: "\f20d";
}
.fa-connectdevelop:before {
  content: "\f20e";
}
.fa-dashcube:before {
  content: "\f210";
}
.fa-forumbee:before {
  content: "\f211";
}
.fa-leanpub:before {
  content: "\f212";
}
.fa-sellsy:before {
  content: "\f213";
}
.fa-shirtsinbulk:before {
  content: "\f214";
}
.fa-simplybuilt:before {
  content: "\f215";
}
.fa-skyatlas:before {
  content: "\f216";
}
.fa-cart-plus:before {
  content: "\f217";
}
.fa-cart-arrow-down:before {
  content: "\f218";
}
.fa-diamond:before {
  content: "\f219";
}
.fa-ship:before {
  content: "\f21a";
}
.fa-user-secret:before {
  content: "\f21b";
}
.fa-motorcycle:before {
  content: "\f21c";
}
.fa-street-view:before {
  content: "\f21d";
}
.fa-heartbeat:before {
  content: "\f21e";
}
.fa-venus:before {
  content: "\f221";
}
.fa-mars:before {
  content: "\f222";
}
.fa-mercury:before {
  content: "\f223";
}
.fa-transgender:before {
  content: "\f224";
}
.fa-transgender-alt:before {
  content: "\f225";
}
.fa-venus-double:before {
  content: "\f226";
}
.fa-mars-double:before {
  content: "\f227";
}
.fa-venus-mars:before {
  content: "\f228";
}
.fa-mars-stroke:before {
  content: "\f229";
}
.fa-mars-stroke-v:before {
  content: "\f22a";
}
.fa-mars-stroke-h:before {
  content: "\f22b";
}
.fa-neuter:before {
  content: "\f22c";
}
.fa-facebook-official:before {
  content: "\f230";
}
.fa-pinterest-p:before {
  content: "\f231";
}
.fa-whatsapp:before {
  content: "\f232";
}
.fa-server:before {
  content: "\f233";
}
.fa-user-plus:before {
  content: "\f234";
}
.fa-user-times:before {
  content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}
.fa-viacoin:before {
  content: "\f237";
}
.fa-train:before {
  content: "\f238";
}
.fa-subway:before {
  content: "\f239";
}
.fa-medium:before {
  content: "\f23a";
}
.wi {
  display: inline-block;
  font-family: 'weathericons';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wi-day-cloudy-gusts:before {
  content: "\f000";
}
.wi-day-cloudy-windy:before {
  content: "\f001";
}
.wi-day-cloudy:before {
  content: "\f002";
}
.wi-day-fog:before {
  content: "\f003";
}
.wi-day-hail:before {
  content: "\f004";
}
.wi-day-lightning:before {
  content: "\f005";
}
.wi-day-rain-mix:before {
  content: "\f006";
}
.wi-day-rain-wind:before {
  content: "\f007";
}
.wi-day-rain:before {
  content: "\f008";
}
.wi-day-showers:before {
  content: "\f009";
}
.wi-day-snow:before {
  content: "\f00a";
}
.wi-day-sprinkle:before {
  content: "\f00b";
}
.wi-day-sunny-overcast:before {
  content: "\f00c";
}
.wi-day-sunny:before {
  content: "\f00d";
}
.wi-day-storm-showers:before {
  content: "\f00e";
}
.wi-day-thunderstorm:before {
  content: "\f010";
}
.wi-cloudy-gusts:before {
  content: "\f011";
}
.wi-cloudy-windy:before {
  content: "\f012";
}
.wi-cloudy:before {
  content: "\f013";
}
.wi-fog:before {
  content: "\f014";
}
.wi-hail:before {
  content: "\f015";
}
.wi-lightning:before {
  content: "\f016";
}
.wi-rain-mix:before {
  content: "\f017";
}
.wi-rain-wind:before {
  content: "\f018";
}
.wi-rain:before {
  content: "\f019";
}
.wi-showers:before {
  content: "\f01a";
}
.wi-snow:before {
  content: "\f01b";
}
.wi-sprinkle:before {
  content: "\f01c";
}
.wi-storm-showers:before {
  content: "\f01d";
}
.wi-thunderstorm:before {
  content: "\f01e";
}
.wi-windy:before {
  content: "\f021";
}
.wi-night-alt-cloudy-gusts:before {
  content: "\f022";
}
.wi-night-alt-cloudy-windy:before {
  content: "\f023";
}
.wi-night-alt-hail:before {
  content: "\f024";
}
.wi-night-alt-lightning:before {
  content: "\f025";
}
.wi-night-alt-rain-mix:before {
  content: "\f026";
}
.wi-night-alt-rain-wind:before {
  content: "\f027";
}
.wi-night-alt-rain:before {
  content: "\f028";
}
.wi-night-alt-showers:before {
  content: "\f029";
}
.wi-night-alt-snow:before {
  content: "\f02a";
}
.wi-night-alt-sprinkle:before {
  content: "\f02b";
}
.wi-night-alt-storm-showers:before {
  content: "\f02c";
}
.wi-night-alt-thunderstorm:before {
  content: "\f02d";
}
.wi-night-clear:before {
  content: "\f02e";
}
.wi-night-cloudy-gusts:before {
  content: "\f02f";
}
.wi-night-cloudy-windy:before {
  content: "\f030";
}
.wi-night-cloudy:before {
  content: "\f031";
}
.wi-night-hail:before {
  content: "\f032";
}
.wi-night-lightning:before {
  content: "\f033";
}
.wi-night-rain-mix:before {
  content: "\f034";
}
.wi-night-rain-wind:before {
  content: "\f035";
}
.wi-night-rain:before {
  content: "\f036";
}
.wi-night-showers:before {
  content: "\f037";
}
.wi-night-snow:before {
  content: "\f038";
}
.wi-night-sprinkle:before {
  content: "\f039";
}
.wi-night-storm-showers:before {
  content: "\f03a";
}
.wi-night-thunderstorm:before {
  content: "\f03b";
}
.wi-celsius:before {
  content: "\f03c";
}
.wi-cloud-down:before {
  content: "\f03d";
}
.wi-cloud-refresh:before {
  content: "\f03e";
}
.wi-cloud-up:before {
  content: "\f040";
}
.wi-cloud:before {
  content: "\f041";
}
.wi-degrees:before {
  content: "\f042";
}
.wi-down-left:before {
  content: "\f043";
}
.wi-down:before {
  content: "\f044";
}
.wi-fahrenheit:before {
  content: "\f045";
}
.wi-horizon-alt:before {
  content: "\f046";
}
.wi-horizon:before {
  content: "\f047";
}
.wi-left:before {
  content: "\f048";
}
.wi-lightning:before {
  content: "\f016";
}
.wi-night-fog:before {
  content: "\f04a";
}
.wi-refresh-alt:before {
  content: "\f04b";
}
.wi-refresh:before {
  content: "\f04c";
}
.wi-right:before {
  content: "\f04d";
}
.wi-sprinkles:before {
  content: "\f04e";
}
.wi-strong-wind:before {
  content: "\f050";
}
.wi-sunrise:before {
  content: "\f051";
}
.wi-sunset:before {
  content: "\f052";
}
.wi-thermometer-exterior:before {
  content: "\f053";
}
.wi-thermometer-internal:before {
  content: "\f054";
}
.wi-thermometer:before {
  content: "\f055";
}
.wi-tornado:before {
  content: "\f056";
}
.wi-up-right:before {
  content: "\f057";
}
.wi-up:before {
  content: "\f058";
}
.wi-wind-west:before {
  content: "\f059";
}
.wi-wind-south-west:before {
  content: "\f05a";
}
.wi-wind-south-east:before {
  content: "\f05b";
}
.wi-wind-south:before {
  content: "\f05c";
}
.wi-wind-north-west:before {
  content: "\f05d";
}
.wi-wind-north-east:before {
  content: "\f05e";
}
.wi-wind-north:before {
  content: "\f060";
}
.wi-wind-east:before {
  content: "\f061";
}
.wi-smoke:before {
  content: "\f062";
}
.wi-dust:before {
  content: "\f063";
}
.wi-snow-wind:before {
  content: "\f064";
}
.wi-day-snow-wind:before {
  content: "\f065";
}
.wi-night-snow-wind:before {
  content: "\f066";
}
.wi-night-alt-snow-wind:before {
  content: "\f067";
}
.wi-day-sleet-storm:before {
  content: "\f068";
}
.wi-night-sleet-storm:before {
  content: "\f069";
}
.wi-night-alt-sleet-storm:before {
  content: "\f06a";
}
.wi-day-snow-thunderstorm:before {
  content: "\f06b";
}
.wi-night-snow-thunderstorm:before {
  content: "\f06c";
}
.wi-night-alt-snow-thunderstorm:before {
  content: "\f06d";
}
.wi-solar-eclipse:before {
  content: "\f06e";
}
.wi-lunar-eclipse:before {
  content: "\f070";
}
.wi-meteor:before {
  content: "\f071";
}
.wi-hot:before {
  content: "\f072";
}
.wi-hurricane:before {
  content: "\f073";
}
.wi-smog:before {
  content: "\f074";
}
.wi-alien:before {
  content: "\f075";
}
.wi-snowflake-cold:before {
  content: "\f076";
}
.wi-stars:before {
  content: "\f077";
}
.wi-night-partly-cloudy:before {
  content: "\f083";
}
.wi-umbrella:before {
  content: "\f084";
}
.wi-day-windy:before {
  content: "\f085";
}
.wi-night-alt-cloudy:before {
  content: "\f086";
}
.wi-up-left:before {
  content: "\f087";
}
.wi-down-right:before {
  content: "\f088";
}
.wi-time-12:before {
  content: "\f089";
}
.wi-time-1:before {
  content: "\f08a";
}
.wi-time-2:before {
  content: "\f08b";
}
.wi-time-3:before {
  content: "\f08c";
}
.wi-time-4:before {
  content: "\f08d";
}
.wi-time-5:before {
  content: "\f08e";
}
.wi-time-6:before {
  content: "\f08f";
}
.wi-time-7:before {
  content: "\f090";
}
.wi-time-8:before {
  content: "\f091";
}
.wi-time-9:before {
  content: "\f092";
}
.wi-time-10:before {
  content: "\f093";
}
.wi-time-11:before {
  content: "\f094";
}
.wi-day-sleet:before {
  content: "\f0b2";
}
.wi-night-sleet:before {
  content: "\f0b3";
}
.wi-night-alt-sleet:before {
  content: "\f0b4";
}
.wi-sleet:before {
  content: "\f0b5";
}
.wi-day-haze:before {
  content: "\f0b6";
}
.wi-beafort-0:before {
  content: "\f0b7";
}
.wi-beafort-1:before {
  content: "\f0b8";
}
.wi-beafort-2:before {
  content: "\f0b9";
}
.wi-beafort-3:before {
  content: "\f0ba";
}
.wi-beafort-4:before {
  content: "\f0bb";
}
.wi-beafort-5:before {
  content: "\f0bc";
}
.wi-beafort-6:before {
  content: "\f0bd";
}
.wi-beafort-7:before {
  content: "\f0be";
}
.wi-beafort-8:before {
  content: "\f0bf";
}
.wi-beafort-9:before {
  content: "\f0c0";
}
.wi-beafort-10:before {
  content: "\f0c1";
}
.wi-beafort-11:before {
  content: "\f0c2";
}
.wi-beafort-12:before {
  content: "\f0c3";
}
.wi-wind-default:before {
  content: "\f0b1";
}
wi-wind-default._0-deg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
wi-wind-default._15-deg {
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
wi-wind-default._30-deg {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
wi-wind-default._45-deg {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
wi-wind-default._60-deg {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
wi-wind-default._75-deg {
  -webkit-transform: rotate(75deg);
  transform: rotate(75deg);
}
wi-wind-default._90-deg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
wi-wind-default._105-deg {
  -webkit-transform: rotate(105deg);
  transform: rotate(105deg);
}
wi-wind-default._120-deg {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
wi-wind-default._135-deg {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
wi-wind-default._150-deg {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}
wi-wind-default._165-deg {
  -webkit-transform: rotate(165deg);
  transform: rotate(165deg);
}
wi-wind-default._180-deg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
wi-wind-default._195-deg {
  -webkit-transform: rotate(195deg);
  transform: rotate(195deg);
}
wi-wind-default._210-deg {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}
wi-wind-default._225-deg {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
wi-wind-default._240-deg {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}
wi-wind-default._255-deg {
  -webkit-transform: rotate(255deg);
  transform: rotate(255deg);
}
wi-wind-default._270-deg {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
wi-wind-default._285-deg {
  -webkit-transform: rotate(295deg);
  transform: rotate(295deg);
}
wi-wind-default._300-deg {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}
wi-wind-default._315-deg {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
wi-wind-default._330-deg {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}
wi-wind-default._345-deg {
  -webkit-transform: rotate(345deg);
  transform: rotate(345deg);
}
.wi-moon-new:before {
  content: "\f095";
}
.wi-moon-waxing-cresent-1:before {
  content: "\f096";
}
.wi-moon-waxing-cresent-2:before {
  content: "\f097";
}
.wi-moon-waxing-cresent-3:before {
  content: "\f098";
}
.wi-moon-waxing-cresent-4:before {
  content: "\f099";
}
.wi-moon-waxing-cresent-5:before {
  content: "\f09a";
}
.wi-moon-waxing-cresent-6:before {
  content: "\f09b";
}
.wi-moon-first-quarter:before {
  content: "\f09c";
}
.wi-moon-waxing-gibbous-1:before {
  content: "\f09d";
}
.wi-moon-waxing-gibbous-2:before {
  content: "\f09e";
}
.wi-moon-waxing-gibbous-3:before {
  content: "\f09f";
}
.wi-moon-waxing-gibbous-4:before {
  content: "\f0a0";
}
.wi-moon-waxing-gibbous-5:before {
  content: "\f0a1";
}
.wi-moon-waxing-gibbous-6:before {
  content: "\f0a2";
}
.wi-moon-full:before {
  content: "\f0a3";
}
.wi-moon-waning-gibbous-1:before {
  content: "\f0a4";
}
.wi-moon-waning-gibbous-2:before {
  content: "\f0a5";
}
.wi-moon-waning-gibbous-3:before {
  content: "\f0a6";
}
.wi-moon-waning-gibbous-4:before {
  content: "\f0a7";
}
.wi-moon-waning-gibbous-5:before {
  content: "\f0a8";
}
.wi-moon-waning-gibbous-6:before {
  content: "\f0a9";
}
.wi-moon-3rd-quarter:before {
  content: "\f0aa";
}
.wi-moon-waning-crescent-1:before {
  content: "\f0ab";
}
.wi-moon-waning-crescent-2:before {
  content: "\f0ac";
}
.wi-moon-waning-crescent-3:before {
  content: "\f0ad";
}
.wi-moon-waning-crescent-4:before {
  content: "\f0ae";
}
.wi-moon-waning-crescent-5:before {
  content: "\f0af";
}
.wi-moon-waning-crescent-6:before {
  content: "\f0b0";
}
.ion,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ion-alert:before {
  content: "\f101";
}
.ion-alert-circled:before {
  content: "\f100";
}
.ion-android-add:before {
  content: "\f2c7";
}
.ion-android-add-circle:before {
  content: "\f359";
}
.ion-android-alarm-clock:before {
  content: "\f35a";
}
.ion-android-alert:before {
  content: "\f35b";
}
.ion-android-apps:before {
  content: "\f35c";
}
.ion-android-archive:before {
  content: "\f2c9";
}
.ion-android-arrow-back:before {
  content: "\f2ca";
}
.ion-android-arrow-down:before {
  content: "\f35d";
}
.ion-android-arrow-dropdown:before {
  content: "\f35f";
}
.ion-android-arrow-dropdown-circle:before {
  content: "\f35e";
}
.ion-android-arrow-dropleft:before {
  content: "\f361";
}
.ion-android-arrow-dropleft-circle:before {
  content: "\f360";
}
.ion-android-arrow-dropright:before {
  content: "\f363";
}
.ion-android-arrow-dropright-circle:before {
  content: "\f362";
}
.ion-android-arrow-dropup:before {
  content: "\f365";
}
.ion-android-arrow-dropup-circle:before {
  content: "\f364";
}
.ion-android-arrow-forward:before {
  content: "\f30f";
}
.ion-android-arrow-up:before {
  content: "\f366";
}
.ion-android-attach:before {
  content: "\f367";
}
.ion-android-bar:before {
  content: "\f368";
}
.ion-android-bicycle:before {
  content: "\f369";
}
.ion-android-boat:before {
  content: "\f36a";
}
.ion-android-bookmark:before {
  content: "\f36b";
}
.ion-android-bulb:before {
  content: "\f36c";
}
.ion-android-bus:before {
  content: "\f36d";
}
.ion-android-calendar:before {
  content: "\f2d1";
}
.ion-android-call:before {
  content: "\f2d2";
}
.ion-android-camera:before {
  content: "\f2d3";
}
.ion-android-cancel:before {
  content: "\f36e";
}
.ion-android-car:before {
  content: "\f36f";
}
.ion-android-cart:before {
  content: "\f370";
}
.ion-android-chat:before {
  content: "\f2d4";
}
.ion-android-checkbox:before {
  content: "\f374";
}
.ion-android-checkbox-blank:before {
  content: "\f371";
}
.ion-android-checkbox-outline:before {
  content: "\f373";
}
.ion-android-checkbox-outline-blank:before {
  content: "\f372";
}
.ion-android-checkmark-circle:before {
  content: "\f375";
}
.ion-android-clipboard:before {
  content: "\f376";
}
.ion-android-close:before {
  content: "\f2d7";
}
.ion-android-cloud:before {
  content: "\f37a";
}
.ion-android-cloud-circle:before {
  content: "\f377";
}
.ion-android-cloud-done:before {
  content: "\f378";
}
.ion-android-cloud-outline:before {
  content: "\f379";
}
.ion-android-color-palette:before {
  content: "\f37b";
}
.ion-android-compass:before {
  content: "\f37c";
}
.ion-android-contact:before {
  content: "\f2d8";
}
.ion-android-contacts:before {
  content: "\f2d9";
}
.ion-android-contract:before {
  content: "\f37d";
}
.ion-android-create:before {
  content: "\f37e";
}
.ion-android-delete:before {
  content: "\f37f";
}
.ion-android-desktop:before {
  content: "\f380";
}
.ion-android-document:before {
  content: "\f381";
}
.ion-android-done:before {
  content: "\f383";
}
.ion-android-done-all:before {
  content: "\f382";
}
.ion-android-download:before {
  content: "\f2dd";
}
.ion-android-drafts:before {
  content: "\f384";
}
.ion-android-exit:before {
  content: "\f385";
}
.ion-android-expand:before {
  content: "\f386";
}
.ion-android-favorite:before {
  content: "\f388";
}
.ion-android-favorite-outline:before {
  content: "\f387";
}
.ion-android-film:before {
  content: "\f389";
}
.ion-android-folder:before {
  content: "\f2e0";
}
.ion-android-folder-open:before {
  content: "\f38a";
}
.ion-android-funnel:before {
  content: "\f38b";
}
.ion-android-globe:before {
  content: "\f38c";
}
.ion-android-hand:before {
  content: "\f2e3";
}
.ion-android-hangout:before {
  content: "\f38d";
}
.ion-android-happy:before {
  content: "\f38e";
}
.ion-android-home:before {
  content: "\f38f";
}
.ion-android-image:before {
  content: "\f2e4";
}
.ion-android-laptop:before {
  content: "\f390";
}
.ion-android-list:before {
  content: "\f391";
}
.ion-android-locate:before {
  content: "\f2e9";
}
.ion-android-lock:before {
  content: "\f392";
}
.ion-android-mail:before {
  content: "\f2eb";
}
.ion-android-map:before {
  content: "\f393";
}
.ion-android-menu:before {
  content: "\f394";
}
.ion-android-microphone:before {
  content: "\f2ec";
}
.ion-android-microphone-off:before {
  content: "\f395";
}
.ion-android-more-horizontal:before {
  content: "\f396";
}
.ion-android-more-vertical:before {
  content: "\f397";
}
.ion-android-navigate:before {
  content: "\f398";
}
.ion-android-notifications:before {
  content: "\f39b";
}
.ion-android-notifications-none:before {
  content: "\f399";
}
.ion-android-notifications-off:before {
  content: "\f39a";
}
.ion-android-open:before {
  content: "\f39c";
}
.ion-android-options:before {
  content: "\f39d";
}
.ion-android-people:before {
  content: "\f39e";
}
.ion-android-person:before {
  content: "\f3a0";
}
.ion-android-person-add:before {
  content: "\f39f";
}
.ion-android-phone-landscape:before {
  content: "\f3a1";
}
.ion-android-phone-portrait:before {
  content: "\f3a2";
}
.ion-android-pin:before {
  content: "\f3a3";
}
.ion-android-plane:before {
  content: "\f3a4";
}
.ion-android-playstore:before {
  content: "\f2f0";
}
.ion-android-print:before {
  content: "\f3a5";
}
.ion-android-radio-button-off:before {
  content: "\f3a6";
}
.ion-android-radio-button-on:before {
  content: "\f3a7";
}
.ion-android-refresh:before {
  content: "\f3a8";
}
.ion-android-remove:before {
  content: "\f2f4";
}
.ion-android-remove-circle:before {
  content: "\f3a9";
}
.ion-android-restaurant:before {
  content: "\f3aa";
}
.ion-android-sad:before {
  content: "\f3ab";
}
.ion-android-search:before {
  content: "\f2f5";
}
.ion-android-send:before {
  content: "\f2f6";
}
.ion-android-settings:before {
  content: "\f2f7";
}
.ion-android-share:before {
  content: "\f2f8";
}
.ion-android-share-alt:before {
  content: "\f3ac";
}
.ion-android-star:before {
  content: "\f2fc";
}
.ion-android-star-half:before {
  content: "\f3ad";
}
.ion-android-star-outline:before {
  content: "\f3ae";
}
.ion-android-stopwatch:before {
  content: "\f2fd";
}
.ion-android-subway:before {
  content: "\f3af";
}
.ion-android-sunny:before {
  content: "\f3b0";
}
.ion-android-sync:before {
  content: "\f3b1";
}
.ion-android-textsms:before {
  content: "\f3b2";
}
.ion-android-time:before {
  content: "\f3b3";
}
.ion-android-train:before {
  content: "\f3b4";
}
.ion-android-unlock:before {
  content: "\f3b5";
}
.ion-android-upload:before {
  content: "\f3b6";
}
.ion-android-volume-down:before {
  content: "\f3b7";
}
.ion-android-volume-mute:before {
  content: "\f3b8";
}
.ion-android-volume-off:before {
  content: "\f3b9";
}
.ion-android-volume-up:before {
  content: "\f3ba";
}
.ion-android-walk:before {
  content: "\f3bb";
}
.ion-android-warning:before {
  content: "\f3bc";
}
.ion-android-watch:before {
  content: "\f3bd";
}
.ion-android-wifi:before {
  content: "\f305";
}
.ion-aperture:before {
  content: "\f313";
}
.ion-archive:before {
  content: "\f102";
}
.ion-arrow-down-a:before {
  content: "\f103";
}
.ion-arrow-down-b:before {
  content: "\f104";
}
.ion-arrow-down-c:before {
  content: "\f105";
}
.ion-arrow-expand:before {
  content: "\f25e";
}
.ion-arrow-graph-down-left:before {
  content: "\f25f";
}
.ion-arrow-graph-down-right:before {
  content: "\f260";
}
.ion-arrow-graph-up-left:before {
  content: "\f261";
}
.ion-arrow-graph-up-right:before {
  content: "\f262";
}
.ion-arrow-left-a:before {
  content: "\f106";
}
.ion-arrow-left-b:before {
  content: "\f107";
}
.ion-arrow-left-c:before {
  content: "\f108";
}
.ion-arrow-move:before {
  content: "\f263";
}
.ion-arrow-resize:before {
  content: "\f264";
}
.ion-arrow-return-left:before {
  content: "\f265";
}
.ion-arrow-return-right:before {
  content: "\f266";
}
.ion-arrow-right-a:before {
  content: "\f109";
}
.ion-arrow-right-b:before {
  content: "\f10a";
}
.ion-arrow-right-c:before {
  content: "\f10b";
}
.ion-arrow-shrink:before {
  content: "\f267";
}
.ion-arrow-swap:before {
  content: "\f268";
}
.ion-arrow-up-a:before {
  content: "\f10c";
}
.ion-arrow-up-b:before {
  content: "\f10d";
}
.ion-arrow-up-c:before {
  content: "\f10e";
}
.ion-asterisk:before {
  content: "\f314";
}
.ion-at:before {
  content: "\f10f";
}
.ion-backspace:before {
  content: "\f3bf";
}
.ion-backspace-outline:before {
  content: "\f3be";
}
.ion-bag:before {
  content: "\f110";
}
.ion-battery-charging:before {
  content: "\f111";
}
.ion-battery-empty:before {
  content: "\f112";
}
.ion-battery-full:before {
  content: "\f113";
}
.ion-battery-half:before {
  content: "\f114";
}
.ion-battery-low:before {
  content: "\f115";
}
.ion-beaker:before {
  content: "\f269";
}
.ion-beer:before {
  content: "\f26a";
}
.ion-bluetooth:before {
  content: "\f116";
}
.ion-bonfire:before {
  content: "\f315";
}
.ion-bookmark:before {
  content: "\f26b";
}
.ion-bowtie:before {
  content: "\f3c0";
}
.ion-briefcase:before {
  content: "\f26c";
}
.ion-bug:before {
  content: "\f2be";
}
.ion-calculator:before {
  content: "\f26d";
}
.ion-calendar:before {
  content: "\f117";
}
.ion-camera:before {
  content: "\f118";
}
.ion-card:before {
  content: "\f119";
}
.ion-cash:before {
  content: "\f316";
}
.ion-chatbox:before {
  content: "\f11b";
}
.ion-chatbox-working:before {
  content: "\f11a";
}
.ion-chatboxes:before {
  content: "\f11c";
}
.ion-chatbubble:before {
  content: "\f11e";
}
.ion-chatbubble-working:before {
  content: "\f11d";
}
.ion-chatbubbles:before {
  content: "\f11f";
}
.ion-checkmark:before {
  content: "\f122";
}
.ion-checkmark-circled:before {
  content: "\f120";
}
.ion-checkmark-round:before {
  content: "\f121";
}
.ion-chevron-down:before {
  content: "\f123";
}
.ion-chevron-left:before {
  content: "\f124";
}
.ion-chevron-right:before {
  content: "\f125";
}
.ion-chevron-up:before {
  content: "\f126";
}
.ion-clipboard:before {
  content: "\f127";
}
.ion-clock:before {
  content: "\f26e";
}
.ion-close:before {
  content: "\f12a";
}
.ion-close-circled:before {
  content: "\f128";
}
.ion-close-round:before {
  content: "\f129";
}
.ion-closed-captioning:before {
  content: "\f317";
}
.ion-cloud:before {
  content: "\f12b";
}
.ion-code:before {
  content: "\f271";
}
.ion-code-download:before {
  content: "\f26f";
}
.ion-code-working:before {
  content: "\f270";
}
.ion-coffee:before {
  content: "\f272";
}
.ion-compass:before {
  content: "\f273";
}
.ion-compose:before {
  content: "\f12c";
}
.ion-connection-bars:before {
  content: "\f274";
}
.ion-contrast:before {
  content: "\f275";
}
.ion-crop:before {
  content: "\f3c1";
}
.ion-cube:before {
  content: "\f318";
}
.ion-disc:before {
  content: "\f12d";
}
.ion-document:before {
  content: "\f12f";
}
.ion-document-text:before {
  content: "\f12e";
}
.ion-drag:before {
  content: "\f130";
}
.ion-earth:before {
  content: "\f276";
}
.ion-easel:before {
  content: "\f3c2";
}
.ion-edit:before {
  content: "\f2bf";
}
.ion-egg:before {
  content: "\f277";
}
.ion-eject:before {
  content: "\f131";
}
.ion-email:before {
  content: "\f132";
}
.ion-email-unread:before {
  content: "\f3c3";
}
.ion-erlenmeyer-flask:before {
  content: "\f3c5";
}
.ion-erlenmeyer-flask-bubbles:before {
  content: "\f3c4";
}
.ion-eye:before {
  content: "\f133";
}
.ion-eye-disabled:before {
  content: "\f306";
}
.ion-female:before {
  content: "\f278";
}
.ion-filing:before {
  content: "\f134";
}
.ion-film-marker:before {
  content: "\f135";
}
.ion-fireball:before {
  content: "\f319";
}
.ion-flag:before {
  content: "\f279";
}
.ion-flame:before {
  content: "\f31a";
}
.ion-flash:before {
  content: "\f137";
}
.ion-flash-off:before {
  content: "\f136";
}
.ion-folder:before {
  content: "\f139";
}
.ion-fork:before {
  content: "\f27a";
}
.ion-fork-repo:before {
  content: "\f2c0";
}
.ion-forward:before {
  content: "\f13a";
}
.ion-funnel:before {
  content: "\f31b";
}
.ion-gear-a:before {
  content: "\f13d";
}
.ion-gear-b:before {
  content: "\f13e";
}
.ion-grid:before {
  content: "\f13f";
}
.ion-hammer:before {
  content: "\f27b";
}
.ion-happy:before {
  content: "\f31c";
}
.ion-happy-outline:before {
  content: "\f3c6";
}
.ion-headphone:before {
  content: "\f140";
}
.ion-heart:before {
  content: "\f141";
}
.ion-heart-broken:before {
  content: "\f31d";
}
.ion-help:before {
  content: "\f143";
}
.ion-help-buoy:before {
  content: "\f27c";
}
.ion-help-circled:before {
  content: "\f142";
}
.ion-home:before {
  content: "\f144";
}
.ion-icecream:before {
  content: "\f27d";
}
.ion-image:before {
  content: "\f147";
}
.ion-images:before {
  content: "\f148";
}
.ion-information:before {
  content: "\f14a";
}
.ion-information-circled:before {
  content: "\f149";
}
.ion-ionic:before {
  content: "\f14b";
}
.ion-ios-alarm:before {
  content: "\f3c8";
}
.ion-ios-alarm-outline:before {
  content: "\f3c7";
}
.ion-ios-albums:before {
  content: "\f3ca";
}
.ion-ios-albums-outline:before {
  content: "\f3c9";
}
.ion-ios-americanfootball:before {
  content: "\f3cc";
}
.ion-ios-americanfootball-outline:before {
  content: "\f3cb";
}
.ion-ios-analytics:before {
  content: "\f3ce";
}
.ion-ios-analytics-outline:before {
  content: "\f3cd";
}
.ion-ios-arrow-back:before {
  content: "\f3cf";
}
.ion-ios-arrow-down:before {
  content: "\f3d0";
}
.ion-ios-arrow-forward:before {
  content: "\f3d1";
}
.ion-ios-arrow-left:before {
  content: "\f3d2";
}
.ion-ios-arrow-right:before {
  content: "\f3d3";
}
.ion-ios-arrow-thin-down:before {
  content: "\f3d4";
}
.ion-ios-arrow-thin-left:before {
  content: "\f3d5";
}
.ion-ios-arrow-thin-right:before {
  content: "\f3d6";
}
.ion-ios-arrow-thin-up:before {
  content: "\f3d7";
}
.ion-ios-arrow-up:before {
  content: "\f3d8";
}
.ion-ios-at:before {
  content: "\f3da";
}
.ion-ios-at-outline:before {
  content: "\f3d9";
}
.ion-ios-barcode:before {
  content: "\f3dc";
}
.ion-ios-barcode-outline:before {
  content: "\f3db";
}
.ion-ios-baseball:before {
  content: "\f3de";
}
.ion-ios-baseball-outline:before {
  content: "\f3dd";
}
.ion-ios-basketball:before {
  content: "\f3e0";
}
.ion-ios-basketball-outline:before {
  content: "\f3df";
}
.ion-ios-bell:before {
  content: "\f3e2";
}
.ion-ios-bell-outline:before {
  content: "\f3e1";
}
.ion-ios-body:before {
  content: "\f3e4";
}
.ion-ios-body-outline:before {
  content: "\f3e3";
}
.ion-ios-bolt:before {
  content: "\f3e6";
}
.ion-ios-bolt-outline:before {
  content: "\f3e5";
}
.ion-ios-book:before {
  content: "\f3e8";
}
.ion-ios-book-outline:before {
  content: "\f3e7";
}
.ion-ios-bookmarks:before {
  content: "\f3ea";
}
.ion-ios-bookmarks-outline:before {
  content: "\f3e9";
}
.ion-ios-box:before {
  content: "\f3ec";
}
.ion-ios-box-outline:before {
  content: "\f3eb";
}
.ion-ios-briefcase:before {
  content: "\f3ee";
}
.ion-ios-briefcase-outline:before {
  content: "\f3ed";
}
.ion-ios-browsers:before {
  content: "\f3f0";
}
.ion-ios-browsers-outline:before {
  content: "\f3ef";
}
.ion-ios-calculator:before {
  content: "\f3f2";
}
.ion-ios-calculator-outline:before {
  content: "\f3f1";
}
.ion-ios-calendar:before {
  content: "\f3f4";
}
.ion-ios-calendar-outline:before {
  content: "\f3f3";
}
.ion-ios-camera:before {
  content: "\f3f6";
}
.ion-ios-camera-outline:before {
  content: "\f3f5";
}
.ion-ios-cart:before {
  content: "\f3f8";
}
.ion-ios-cart-outline:before {
  content: "\f3f7";
}
.ion-ios-chatboxes:before {
  content: "\f3fa";
}
.ion-ios-chatboxes-outline:before {
  content: "\f3f9";
}
.ion-ios-chatbubble:before {
  content: "\f3fc";
}
.ion-ios-chatbubble-outline:before {
  content: "\f3fb";
}
.ion-ios-checkmark:before {
  content: "\f3ff";
}
.ion-ios-checkmark-empty:before {
  content: "\f3fd";
}
.ion-ios-checkmark-outline:before {
  content: "\f3fe";
}
.ion-ios-circle-filled:before {
  content: "\f400";
}
.ion-ios-circle-outline:before {
  content: "\f401";
}
.ion-ios-clock:before {
  content: "\f403";
}
.ion-ios-clock-outline:before {
  content: "\f402";
}
.ion-ios-close:before {
  content: "\f406";
}
.ion-ios-close-empty:before {
  content: "\f404";
}
.ion-ios-close-outline:before {
  content: "\f405";
}
.ion-ios-cloud:before {
  content: "\f40c";
}
.ion-ios-cloud-download:before {
  content: "\f408";
}
.ion-ios-cloud-download-outline:before {
  content: "\f407";
}
.ion-ios-cloud-outline:before {
  content: "\f409";
}
.ion-ios-cloud-upload:before {
  content: "\f40b";
}
.ion-ios-cloud-upload-outline:before {
  content: "\f40a";
}
.ion-ios-cloudy:before {
  content: "\f410";
}
.ion-ios-cloudy-night:before {
  content: "\f40e";
}
.ion-ios-cloudy-night-outline:before {
  content: "\f40d";
}
.ion-ios-cloudy-outline:before {
  content: "\f40f";
}
.ion-ios-cog:before {
  content: "\f412";
}
.ion-ios-cog-outline:before {
  content: "\f411";
}
.ion-ios-color-filter:before {
  content: "\f414";
}
.ion-ios-color-filter-outline:before {
  content: "\f413";
}
.ion-ios-color-wand:before {
  content: "\f416";
}
.ion-ios-color-wand-outline:before {
  content: "\f415";
}
.ion-ios-compose:before {
  content: "\f418";
}
.ion-ios-compose-outline:before {
  content: "\f417";
}
.ion-ios-contact:before {
  content: "\f41a";
}
.ion-ios-contact-outline:before {
  content: "\f419";
}
.ion-ios-copy:before {
  content: "\f41c";
}
.ion-ios-copy-outline:before {
  content: "\f41b";
}
.ion-ios-crop:before {
  content: "\f41e";
}
.ion-ios-crop-strong:before {
  content: "\f41d";
}
.ion-ios-download:before {
  content: "\f420";
}
.ion-ios-download-outline:before {
  content: "\f41f";
}
.ion-ios-drag:before {
  content: "\f421";
}
.ion-ios-email:before {
  content: "\f423";
}
.ion-ios-email-outline:before {
  content: "\f422";
}
.ion-ios-eye:before {
  content: "\f425";
}
.ion-ios-eye-outline:before {
  content: "\f424";
}
.ion-ios-fastforward:before {
  content: "\f427";
}
.ion-ios-fastforward-outline:before {
  content: "\f426";
}
.ion-ios-filing:before {
  content: "\f429";
}
.ion-ios-filing-outline:before {
  content: "\f428";
}
.ion-ios-film:before {
  content: "\f42b";
}
.ion-ios-film-outline:before {
  content: "\f42a";
}
.ion-ios-flag:before {
  content: "\f42d";
}
.ion-ios-flag-outline:before {
  content: "\f42c";
}
.ion-ios-flame:before {
  content: "\f42f";
}
.ion-ios-flame-outline:before {
  content: "\f42e";
}
.ion-ios-flask:before {
  content: "\f431";
}
.ion-ios-flask-outline:before {
  content: "\f430";
}
.ion-ios-flower:before {
  content: "\f433";
}
.ion-ios-flower-outline:before {
  content: "\f432";
}
.ion-ios-folder:before {
  content: "\f435";
}
.ion-ios-folder-outline:before {
  content: "\f434";
}
.ion-ios-football:before {
  content: "\f437";
}
.ion-ios-football-outline:before {
  content: "\f436";
}
.ion-ios-game-controller-a:before {
  content: "\f439";
}
.ion-ios-game-controller-a-outline:before {
  content: "\f438";
}
.ion-ios-game-controller-b:before {
  content: "\f43b";
}
.ion-ios-game-controller-b-outline:before {
  content: "\f43a";
}
.ion-ios-gear:before {
  content: "\f43d";
}
.ion-ios-gear-outline:before {
  content: "\f43c";
}
.ion-ios-glasses:before {
  content: "\f43f";
}
.ion-ios-glasses-outline:before {
  content: "\f43e";
}
.ion-ios-grid-view:before {
  content: "\f441";
}
.ion-ios-grid-view-outline:before {
  content: "\f440";
}
.ion-ios-heart:before {
  content: "\f443";
}
.ion-ios-heart-outline:before {
  content: "\f442";
}
.ion-ios-help:before {
  content: "\f446";
}
.ion-ios-help-empty:before {
  content: "\f444";
}
.ion-ios-help-outline:before {
  content: "\f445";
}
.ion-ios-home:before {
  content: "\f448";
}
.ion-ios-home-outline:before {
  content: "\f447";
}
.ion-ios-infinite:before {
  content: "\f44a";
}
.ion-ios-infinite-outline:before {
  content: "\f449";
}
.ion-ios-information:before {
  content: "\f44d";
}
.ion-ios-information-empty:before {
  content: "\f44b";
}
.ion-ios-information-outline:before {
  content: "\f44c";
}
.ion-ios-ionic-outline:before {
  content: "\f44e";
}
.ion-ios-keypad:before {
  content: "\f450";
}
.ion-ios-keypad-outline:before {
  content: "\f44f";
}
.ion-ios-lightbulb:before {
  content: "\f452";
}
.ion-ios-lightbulb-outline:before {
  content: "\f451";
}
.ion-ios-list:before {
  content: "\f454";
}
.ion-ios-list-outline:before {
  content: "\f453";
}
.ion-ios-location:before {
  content: "\f456";
}
.ion-ios-location-outline:before {
  content: "\f455";
}
.ion-ios-locked:before {
  content: "\f458";
}
.ion-ios-locked-outline:before {
  content: "\f457";
}
.ion-ios-loop:before {
  content: "\f45a";
}
.ion-ios-loop-strong:before {
  content: "\f459";
}
.ion-ios-medical:before {
  content: "\f45c";
}
.ion-ios-medical-outline:before {
  content: "\f45b";
}
.ion-ios-medkit:before {
  content: "\f45e";
}
.ion-ios-medkit-outline:before {
  content: "\f45d";
}
.ion-ios-mic:before {
  content: "\f461";
}
.ion-ios-mic-off:before {
  content: "\f45f";
}
.ion-ios-mic-outline:before {
  content: "\f460";
}
.ion-ios-minus:before {
  content: "\f464";
}
.ion-ios-minus-empty:before {
  content: "\f462";
}
.ion-ios-minus-outline:before {
  content: "\f463";
}
.ion-ios-monitor:before {
  content: "\f466";
}
.ion-ios-monitor-outline:before {
  content: "\f465";
}
.ion-ios-moon:before {
  content: "\f468";
}
.ion-ios-moon-outline:before {
  content: "\f467";
}
.ion-ios-more:before {
  content: "\f46a";
}
.ion-ios-more-outline:before {
  content: "\f469";
}
.ion-ios-musical-note:before {
  content: "\f46b";
}
.ion-ios-musical-notes:before {
  content: "\f46c";
}
.ion-ios-navigate:before {
  content: "\f46e";
}
.ion-ios-navigate-outline:before {
  content: "\f46d";
}
.ion-ios-nutrition:before {
  content: "\f470";
}
.ion-ios-nutrition-outline:before {
  content: "\f46f";
}
.ion-ios-paper:before {
  content: "\f472";
}
.ion-ios-paper-outline:before {
  content: "\f471";
}
.ion-ios-paperplane:before {
  content: "\f474";
}
.ion-ios-paperplane-outline:before {
  content: "\f473";
}
.ion-ios-partlysunny:before {
  content: "\f476";
}
.ion-ios-partlysunny-outline:before {
  content: "\f475";
}
.ion-ios-pause:before {
  content: "\f478";
}
.ion-ios-pause-outline:before {
  content: "\f477";
}
.ion-ios-paw:before {
  content: "\f47a";
}
.ion-ios-paw-outline:before {
  content: "\f479";
}
.ion-ios-people:before {
  content: "\f47c";
}
.ion-ios-people-outline:before {
  content: "\f47b";
}
.ion-ios-person:before {
  content: "\f47e";
}
.ion-ios-person-outline:before {
  content: "\f47d";
}
.ion-ios-personadd:before {
  content: "\f480";
}
.ion-ios-personadd-outline:before {
  content: "\f47f";
}
.ion-ios-photos:before {
  content: "\f482";
}
.ion-ios-photos-outline:before {
  content: "\f481";
}
.ion-ios-pie:before {
  content: "\f484";
}
.ion-ios-pie-outline:before {
  content: "\f483";
}
.ion-ios-pint:before {
  content: "\f486";
}
.ion-ios-pint-outline:before {
  content: "\f485";
}
.ion-ios-play:before {
  content: "\f488";
}
.ion-ios-play-outline:before {
  content: "\f487";
}
.ion-ios-plus:before {
  content: "\f48b";
}
.ion-ios-plus-empty:before {
  content: "\f489";
}
.ion-ios-plus-outline:before {
  content: "\f48a";
}
.ion-ios-pricetag:before {
  content: "\f48d";
}
.ion-ios-pricetag-outline:before {
  content: "\f48c";
}
.ion-ios-pricetags:before {
  content: "\f48f";
}
.ion-ios-pricetags-outline:before {
  content: "\f48e";
}
.ion-ios-printer:before {
  content: "\f491";
}
.ion-ios-printer-outline:before {
  content: "\f490";
}
.ion-ios-pulse:before {
  content: "\f493";
}
.ion-ios-pulse-strong:before {
  content: "\f492";
}
.ion-ios-rainy:before {
  content: "\f495";
}
.ion-ios-rainy-outline:before {
  content: "\f494";
}
.ion-ios-recording:before {
  content: "\f497";
}
.ion-ios-recording-outline:before {
  content: "\f496";
}
.ion-ios-redo:before {
  content: "\f499";
}
.ion-ios-redo-outline:before {
  content: "\f498";
}
.ion-ios-refresh:before {
  content: "\f49c";
}
.ion-ios-refresh-empty:before {
  content: "\f49a";
}
.ion-ios-refresh-outline:before {
  content: "\f49b";
}
.ion-ios-reload:before {
  content: "\f49d";
}
.ion-ios-reverse-camera:before {
  content: "\f49f";
}
.ion-ios-reverse-camera-outline:before {
  content: "\f49e";
}
.ion-ios-rewind:before {
  content: "\f4a1";
}
.ion-ios-rewind-outline:before {
  content: "\f4a0";
}
.ion-ios-rose:before {
  content: "\f4a3";
}
.ion-ios-rose-outline:before {
  content: "\f4a2";
}
.ion-ios-search:before {
  content: "\f4a5";
}
.ion-ios-search-strong:before {
  content: "\f4a4";
}
.ion-ios-settings:before {
  content: "\f4a7";
}
.ion-ios-settings-strong:before {
  content: "\f4a6";
}
.ion-ios-shuffle:before {
  content: "\f4a9";
}
.ion-ios-shuffle-strong:before {
  content: "\f4a8";
}
.ion-ios-skipbackward:before {
  content: "\f4ab";
}
.ion-ios-skipbackward-outline:before {
  content: "\f4aa";
}
.ion-ios-skipforward:before {
  content: "\f4ad";
}
.ion-ios-skipforward-outline:before {
  content: "\f4ac";
}
.ion-ios-snowy:before {
  content: "\f4ae";
}
.ion-ios-speedometer:before {
  content: "\f4b0";
}
.ion-ios-speedometer-outline:before {
  content: "\f4af";
}
.ion-ios-star:before {
  content: "\f4b3";
}
.ion-ios-star-half:before {
  content: "\f4b1";
}
.ion-ios-star-outline:before {
  content: "\f4b2";
}
.ion-ios-stopwatch:before {
  content: "\f4b5";
}
.ion-ios-stopwatch-outline:before {
  content: "\f4b4";
}
.ion-ios-sunny:before {
  content: "\f4b7";
}
.ion-ios-sunny-outline:before {
  content: "\f4b6";
}
.ion-ios-telephone:before {
  content: "\f4b9";
}
.ion-ios-telephone-outline:before {
  content: "\f4b8";
}
.ion-ios-tennisball:before {
  content: "\f4bb";
}
.ion-ios-tennisball-outline:before {
  content: "\f4ba";
}
.ion-ios-thunderstorm:before {
  content: "\f4bd";
}
.ion-ios-thunderstorm-outline:before {
  content: "\f4bc";
}
.ion-ios-time:before {
  content: "\f4bf";
}
.ion-ios-time-outline:before {
  content: "\f4be";
}
.ion-ios-timer:before {
  content: "\f4c1";
}
.ion-ios-timer-outline:before {
  content: "\f4c0";
}
.ion-ios-toggle:before {
  content: "\f4c3";
}
.ion-ios-toggle-outline:before {
  content: "\f4c2";
}
.ion-ios-trash:before {
  content: "\f4c5";
}
.ion-ios-trash-outline:before {
  content: "\f4c4";
}
.ion-ios-undo:before {
  content: "\f4c7";
}
.ion-ios-undo-outline:before {
  content: "\f4c6";
}
.ion-ios-unlocked:before {
  content: "\f4c9";
}
.ion-ios-unlocked-outline:before {
  content: "\f4c8";
}
.ion-ios-upload:before {
  content: "\f4cb";
}
.ion-ios-upload-outline:before {
  content: "\f4ca";
}
.ion-ios-videocam:before {
  content: "\f4cd";
}
.ion-ios-videocam-outline:before {
  content: "\f4cc";
}
.ion-ios-volume-high:before {
  content: "\f4ce";
}
.ion-ios-volume-low:before {
  content: "\f4cf";
}
.ion-ios-wineglass:before {
  content: "\f4d1";
}
.ion-ios-wineglass-outline:before {
  content: "\f4d0";
}
.ion-ios-world:before {
  content: "\f4d3";
}
.ion-ios-world-outline:before {
  content: "\f4d2";
}
.ion-ipad:before {
  content: "\f1f9";
}
.ion-iphone:before {
  content: "\f1fa";
}
.ion-ipod:before {
  content: "\f1fb";
}
.ion-jet:before {
  content: "\f295";
}
.ion-key:before {
  content: "\f296";
}
.ion-knife:before {
  content: "\f297";
}
.ion-laptop:before {
  content: "\f1fc";
}
.ion-leaf:before {
  content: "\f1fd";
}
.ion-levels:before {
  content: "\f298";
}
.ion-lightbulb:before {
  content: "\f299";
}
.ion-link:before {
  content: "\f1fe";
}
.ion-load-a:before {
  content: "\f29a";
}
.ion-load-b:before {
  content: "\f29b";
}
.ion-load-c:before {
  content: "\f29c";
}
.ion-load-d:before {
  content: "\f29d";
}
.ion-location:before {
  content: "\f1ff";
}
.ion-lock-combination:before {
  content: "\f4d4";
}
.ion-locked:before {
  content: "\f200";
}
.ion-log-in:before {
  content: "\f29e";
}
.ion-log-out:before {
  content: "\f29f";
}
.ion-loop:before {
  content: "\f201";
}
.ion-magnet:before {
  content: "\f2a0";
}
.ion-male:before {
  content: "\f2a1";
}
.ion-man:before {
  content: "\f202";
}
.ion-map:before {
  content: "\f203";
}
.ion-medkit:before {
  content: "\f2a2";
}
.ion-merge:before {
  content: "\f33f";
}
.ion-mic-a:before {
  content: "\f204";
}
.ion-mic-b:before {
  content: "\f205";
}
.ion-mic-c:before {
  content: "\f206";
}
.ion-minus:before {
  content: "\f209";
}
.ion-minus-circled:before {
  content: "\f207";
}
.ion-minus-round:before {
  content: "\f208";
}
.ion-model-s:before {
  content: "\f2c1";
}
.ion-monitor:before {
  content: "\f20a";
}
.ion-more:before {
  content: "\f20b";
}
.ion-mouse:before {
  content: "\f340";
}
.ion-music-note:before {
  content: "\f20c";
}
.ion-navicon:before {
  content: "\f20e";
}
.ion-navicon-round:before {
  content: "\f20d";
}
.ion-navigate:before {
  content: "\f2a3";
}
.ion-network:before {
  content: "\f341";
}
.ion-no-smoking:before {
  content: "\f2c2";
}
.ion-nuclear:before {
  content: "\f2a4";
}
.ion-outlet:before {
  content: "\f342";
}
.ion-paintbrush:before {
  content: "\f4d5";
}
.ion-paintbucket:before {
  content: "\f4d6";
}
.ion-paper-airplane:before {
  content: "\f2c3";
}
.ion-paperclip:before {
  content: "\f20f";
}
.ion-pause:before {
  content: "\f210";
}
.ion-person:before {
  content: "\f213";
}
.ion-person-add:before {
  content: "\f211";
}
.ion-person-stalker:before {
  content: "\f212";
}
.ion-pie-graph:before {
  content: "\f2a5";
}
.ion-pin:before {
  content: "\f2a6";
}
.ion-pinpoint:before {
  content: "\f2a7";
}
.ion-pizza:before {
  content: "\f2a8";
}
.ion-plane:before {
  content: "\f214";
}
.ion-planet:before {
  content: "\f343";
}
.ion-play:before {
  content: "\f215";
}
.ion-playstation:before {
  content: "\f30a";
}
.ion-plus:before {
  content: "\f218";
}
.ion-plus-circled:before {
  content: "\f216";
}
.ion-plus-round:before {
  content: "\f217";
}
.ion-podium:before {
  content: "\f344";
}
.ion-pound:before {
  content: "\f219";
}
.ion-power:before {
  content: "\f2a9";
}
.ion-pricetag:before {
  content: "\f2aa";
}
.ion-pricetags:before {
  content: "\f2ab";
}
.ion-printer:before {
  content: "\f21a";
}
.ion-pull-request:before {
  content: "\f345";
}
.ion-qr-scanner:before {
  content: "\f346";
}
.ion-quote:before {
  content: "\f347";
}
.ion-radio-waves:before {
  content: "\f2ac";
}
.ion-record:before {
  content: "\f21b";
}
.ion-refresh:before {
  content: "\f21c";
}
.ion-reply:before {
  content: "\f21e";
}
.ion-reply-all:before {
  content: "\f21d";
}
.ion-ribbon-a:before {
  content: "\f348";
}
.ion-ribbon-b:before {
  content: "\f349";
}
.ion-sad:before {
  content: "\f34a";
}
.ion-sad-outline:before {
  content: "\f4d7";
}
.ion-scissors:before {
  content: "\f34b";
}
.ion-search:before {
  content: "\f21f";
}
.ion-settings:before {
  content: "\f2ad";
}
.ion-share:before {
  content: "\f220";
}
.ion-shuffle:before {
  content: "\f221";
}
.ion-skip-backward:before {
  content: "\f222";
}
.ion-skip-forward:before {
  content: "\f223";
}
.ion-social-android:before {
  content: "\f225";
}
.ion-social-android-outline:before {
  content: "\f224";
}
.ion-social-angular:before {
  content: "\f4d9";
}
.ion-social-angular-outline:before {
  content: "\f4d8";
}
.ion-social-apple:before {
  content: "\f227";
}
.ion-social-apple-outline:before {
  content: "\f226";
}
.ion-social-bitcoin:before {
  content: "\f2af";
}
.ion-social-bitcoin-outline:before {
  content: "\f2ae";
}
.ion-social-buffer:before {
  content: "\f229";
}
.ion-social-buffer-outline:before {
  content: "\f228";
}
.ion-social-chrome:before {
  content: "\f4db";
}
.ion-social-chrome-outline:before {
  content: "\f4da";
}
.ion-social-codepen:before {
  content: "\f4dd";
}
.ion-social-codepen-outline:before {
  content: "\f4dc";
}
.ion-social-css3:before {
  content: "\f4df";
}
.ion-social-css3-outline:before {
  content: "\f4de";
}
.ion-social-designernews:before {
  content: "\f22b";
}
.ion-social-designernews-outline:before {
  content: "\f22a";
}
.ion-social-dribbble:before {
  content: "\f22d";
}
.ion-social-dribbble-outline:before {
  content: "\f22c";
}
.ion-social-dropbox:before {
  content: "\f22f";
}
.ion-social-dropbox-outline:before {
  content: "\f22e";
}
.ion-social-euro:before {
  content: "\f4e1";
}
.ion-social-euro-outline:before {
  content: "\f4e0";
}
.ion-social-facebook:before {
  content: "\f231";
}
.ion-social-facebook-outline:before {
  content: "\f230";
}
.ion-social-foursquare:before {
  content: "\f34d";
}
.ion-social-foursquare-outline:before {
  content: "\f34c";
}
.ion-social-freebsd-devil:before {
  content: "\f2c4";
}
.ion-social-github:before {
  content: "\f233";
}
.ion-social-github-outline:before {
  content: "\f232";
}
.ion-social-google:before {
  content: "\f34f";
}
.ion-social-google-outline:before {
  content: "\f34e";
}
.ion-social-googleplus:before {
  content: "\f235";
}
.ion-social-googleplus-outline:before {
  content: "\f234";
}
.ion-social-hackernews:before {
  content: "\f237";
}
.ion-social-hackernews-outline:before {
  content: "\f236";
}
.ion-social-html5:before {
  content: "\f4e3";
}
.ion-social-html5-outline:before {
  content: "\f4e2";
}
.ion-social-instagram:before {
  content: "\f351";
}
.ion-social-instagram-outline:before {
  content: "\f350";
}
.ion-social-javascript:before {
  content: "\f4e5";
}
.ion-social-javascript-outline:before {
  content: "\f4e4";
}
.ion-social-linkedin:before {
  content: "\f239";
}
.ion-social-linkedin-outline:before {
  content: "\f238";
}
.ion-social-markdown:before {
  content: "\f4e6";
}
.ion-social-nodejs:before {
  content: "\f4e7";
}
.ion-social-octocat:before {
  content: "\f4e8";
}
.ion-social-pinterest:before {
  content: "\f2b1";
}
.ion-social-pinterest-outline:before {
  content: "\f2b0";
}
.ion-social-python:before {
  content: "\f4e9";
}
.ion-social-reddit:before {
  content: "\f23b";
}
.ion-social-reddit-outline:before {
  content: "\f23a";
}
.ion-social-rss:before {
  content: "\f23d";
}
.ion-social-rss-outline:before {
  content: "\f23c";
}
.ion-social-sass:before {
  content: "\f4ea";
}
.ion-social-skype:before {
  content: "\f23f";
}
.ion-social-skype-outline:before {
  content: "\f23e";
}
.ion-social-snapchat:before {
  content: "\f4ec";
}
.ion-social-snapchat-outline:before {
  content: "\f4eb";
}
.ion-social-tumblr:before {
  content: "\f241";
}
.ion-social-tumblr-outline:before {
  content: "\f240";
}
.ion-social-tux:before {
  content: "\f2c5";
}
.ion-social-twitch:before {
  content: "\f4ee";
}
.ion-social-twitch-outline:before {
  content: "\f4ed";
}
.ion-social-twitter:before {
  content: "\f243";
}
.ion-social-twitter-outline:before {
  content: "\f242";
}
.ion-social-usd:before {
  content: "\f353";
}
.ion-social-usd-outline:before {
  content: "\f352";
}
.ion-social-vimeo:before {
  content: "\f245";
}
.ion-social-vimeo-outline:before {
  content: "\f244";
}
.ion-social-whatsapp:before {
  content: "\f4f0";
}
.ion-social-whatsapp-outline:before {
  content: "\f4ef";
}
.ion-social-windows:before {
  content: "\f247";
}
.ion-social-windows-outline:before {
  content: "\f246";
}
.ion-social-wordpress:before {
  content: "\f249";
}
.ion-social-wordpress-outline:before {
  content: "\f248";
}
.ion-social-yahoo:before {
  content: "\f24b";
}
.ion-social-yahoo-outline:before {
  content: "\f24a";
}
.ion-social-yen:before {
  content: "\f4f2";
}
.ion-social-yen-outline:before {
  content: "\f4f1";
}
.ion-social-youtube:before {
  content: "\f24d";
}
.ion-social-youtube-outline:before {
  content: "\f24c";
}
.ion-soup-can:before {
  content: "\f4f4";
}
.ion-soup-can-outline:before {
  content: "\f4f3";
}
.ion-speakerphone:before {
  content: "\f2b2";
}
.ion-speedometer:before {
  content: "\f2b3";
}
.ion-spoon:before {
  content: "\f2b4";
}
.ion-star:before {
  content: "\f24e";
}
.ion-stats-bars:before {
  content: "\f2b5";
}
.ion-steam:before {
  content: "\f30b";
}
.ion-stop:before {
  content: "\f24f";
}
.ion-thermometer:before {
  content: "\f2b6";
}
.ion-thumbsdown:before {
  content: "\f250";
}
.ion-thumbsup:before {
  content: "\f251";
}
.ion-toggle:before {
  content: "\f355";
}
.ion-toggle-filled:before {
  content: "\f354";
}
.ion-transgender:before {
  content: "\f4f5";
}
.ion-trash-a:before {
  content: "\f252";
}
.ion-trash-b:before {
  content: "\f253";
}
.ion-trophy:before {
  content: "\f356";
}
.ion-tshirt:before {
  content: "\f4f7";
}
.ion-tshirt-outline:before {
  content: "\f4f6";
}
.ion-umbrella:before {
  content: "\f2b7";
}
.ion-university:before {
  content: "\f357";
}
.ion-unlocked:before {
  content: "\f254";
}
.ion-upload:before {
  content: "\f255";
}
.ion-usb:before {
  content: "\f2b8";
}
.ion-videocamera:before {
  content: "\f256";
}
.ion-volume-high:before {
  content: "\f257";
}
.ion-volume-low:before {
  content: "\f258";
}
.ion-volume-medium:before {
  content: "\f259";
}
.ion-volume-mute:before {
  content: "\f25a";
}
.ion-wand:before {
  content: "\f358";
}
.ion-waterdrop:before {
  content: "\f25b";
}
.ion-wifi:before {
  content: "\f25c";
}
.ion-wineglass:before {
  content: "\f2b9";
}
.ion-woman:before {
  content: "\f25d";
}
.ion-wrench:before {
  content: "\f2ba";
}
.ion-xbox:before {
  content: "\f30c";
}
#gritter-notice-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 301px;
  z-index: 9999;
}
#gritter-notice-wrapper.top-left {
  left: 20px;
  right: auto;
}
#gritter-notice-wrapper.bottom-right {
  top: auto;
  left: auto;
  bottom: 20px;
  right: 20px;
}
#gritter-notice-wrapper.bottom-left {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
}
.gritter-item-wrapper {
  position: relative;
  margin: 0 0 10px 0;
  background: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
  /* ie7/8 fix */
}
.gritter-top {
  background: url("data:image/png;base64,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FqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpaWSyBaWFqIFlhaiBaiZWkhWlhaiJZoYWkhWoiWpYVoYWkhWqKFpYVogaWFaGFpIVqihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVqIlqWFaGFpIVpOgaWFaCFalhaihaWFaIkWlhaiBZYWooWlhWiJFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhabkDooWlhWg5BpYWb6NozXYKjoHVOTvLK+5ADT1QsuTqiIhNjkHNzc/ITVk+5RLUSEt5rWTJ+RERVzsHNbYuIiOvzvJCmeQa1MQjJUuuy4iIaIyNDkINbY+5ERnZmBuzbHEPamBNyZLbc241WhHdsdVRqJnlEREZGdmdW7M8Vxa6CUdhZvlpyZIll2eMRyuiJzY7DTXwbCytPqWyqic3Zxkpj5VryxzX4Qi1lfeXb5fXS5Z8NpdWn1MHH12xxok4Smtj6vgTKsd15ZoscFTW5tTxZ9Shj+64OTbEFt98HKFtsTH647yJT6acqDtvzg25xTcfR2hbbsz+PG/is+nfoA51aKDImYcAAAAASUVORK5CYII=") no-repeat left -30px;
  height: 10px;
}
.hover .gritter-top {
  background-position: right -30px;
}
.gritter-bottom {
  background: url("data:image/png;base64,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FqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpaWSyBaWFqIFlhaiBaiZWkhWlhaiJZoYWkhWoiWpYVoYWkhWqKFpYVogaWFaGFpIVqihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVqIlqWFaGFpIVpOgaWFaCFalhaihaWFaIkWlhaiBZYWooWlhWiJFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhabkDooWlhWg5BpYWb6NozXYKjoHVOTvLK+5ADT1QsuTqiIhNjkHNzc/ITVk+5RLUSEt5rWTJ+RERVzsHNbYuIiOvzvJCmeQa1MQjJUuuy4iIaIyNDkINbY+5ERnZmBuzbHEPamBNyZLbc241WhHdsdVRqJnlEREZGdmdW7M8Vxa6CUdhZvlpyZIll2eMRyuiJzY7DTXwbCytPqWyqic3Zxkpj5VryxzX4Qi1lfeXb5fXS5Z8NpdWn1MHH12xxok4Smtj6vgTKsd15ZoscFTW5tTxZ9Shj+64OTbEFt98HKFtsTH647yJT6acqDtvzg25xTcfR2hbbsz+PG/is+nfoA51aKDImYcAAAAASUVORK5CYII=") no-repeat left bottom;
  height: 8px;
  margin: 0;
}
.hover .gritter-bottom {
  background-position: bottom right;
}
.gritter-item {
  display: block;
  background: url("data:image/png;base64,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FqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpaWSyBaWFqIFlhaiBaiZWkhWlhaiJZoYWkhWoiWpYVoYWkhWqKFpYVogaWFaGFpIVqihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVqIlqWFaGFpIVpOgaWFaCFalhaihaWFaIkWlhaiBZYWooWlhWiJFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhabkDooWlhWg5BpYWb6NozXYKjoHVOTvLK+5ADT1QsuTqiIhNjkHNzc/ITVk+5RLUSEt5rWTJ+RERVzsHNbYuIiOvzvJCmeQa1MQjJUuuy4iIaIyNDkINbY+5ERnZmBuzbHEPamBNyZLbc241WhHdsdVRqJnlEREZGdmdW7M8Vxa6CUdhZvlpyZIll2eMRyuiJzY7DTXwbCytPqWyqic3Zxkpj5VryxzX4Qi1lfeXb5fXS5Z8NpdWn1MHH12xxok4Smtj6vgTKsd15ZoscFTW5tTxZ9Shj+64OTbEFt98HKFtsTH647yJT6acqDtvzg25xTcfR2hbbsz+PG/is+nfoA51aKDImYcAAAAASUVORK5CYII=") no-repeat left -40px;
  color: #eee;
  padding: 2px 11px 8px 11px;
  font-size: 11px;
  font-family: verdana;
}
.hover .gritter-item {
  background-position: right -40px;
}
.gritter-item p {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
}
.gritter-close {
  display: none;
  position: absolute;
  top: 5px;
  left: 3px;
  background: url("data:image/png;base64,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FqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpaWSyBaWFqIFlhaiBaiZWkhWlhaiJZoYWkhWoiWpYVoYWkhWqKFpYVogaWFaGFpIVqihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVqIlqWFaGFpIVpOgaWFaCFalhaihaWFaIkWlhaiBZYWooWlhWiJFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhaYFoYWkhWmBpIVpYWiBaWFqIFlhaiBaWFogWlhaiBZYWooWlBaKFpYVogaWFaGFpgWhhaSFaYGkhWlhaIFpYWogWWFqIFpYWiBaWFqIFlhaihaUFooWlhWiBpYVoYWmBaGFpIVpgaSFaWFogWlhaiBZYWogWlhaIFpYWogWWFqKFpQWihaWFaIGlhWhhabkDooWlhWg5BpYWb6NozXYKjoHVOTvLK+5ADT1QsuTqiIhNjkHNzc/ITVk+5RLUSEt5rWTJ+RERVzsHNbYuIiOvzvJCmeQa1MQjJUuuy4iIaIyNDkINbY+5ERnZmBuzbHEPamBNyZLbc241WhHdsdVRqJnlEREZGdmdW7M8Vxa6CUdhZvlpyZIll2eMRyuiJzY7DTXwbCytPqWyqic3Zxkpj5VryxzX4Qi1lfeXb5fXS5Z8NpdWn1MHH12xxok4Smtj6vgTKsd15ZoscFTW5tTxZ9Shj+64OTbEFt98HKFtsTH647yJT6acqDtvzg25xTcfR2hbbsz+PG/is+nfoA51aKDImYcAAAAASUVORK5CYII=") no-repeat left top;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-indent: -9999em;
}
.gritter-title {
  font-size: 14px;
  font-weight: bold;
  padding: 0 0 7px 0;
  display: block;
  text-shadow: 1px 1px 0 #000;
  /* Not supported by IE :( */
}
.gritter-image {
  width: 48px;
  height: 48px;
  float: left;
}
.gritter-with-image,
.gritter-without-image {
  padding: 0;
}
.gritter-with-image {
  width: 220px;
  float: right;
}
/* for the light (white) version of the gritter notice */
.gritter-light .gritter-item,
.gritter-light .gritter-bottom,
.gritter-light .gritter-top,
.gritter-light .gritter-close {
  background-image: url("data:image/png;base64,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");
  color: #222;
}
.gritter-light .gritter-title {
  text-shadow: none;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
div.dataTables_length select {
  width: 75px;
  display: inline-block;
}
div.dataTables_filter {
  text-align: right;
}
div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}
div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}
div.dataTables_info {
  padding-top: 8px;
  white-space: nowrap;
}
div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}
div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  div.dataTables_wrapper > div.row > div,
  div.dataTables_length,
  div.dataTables_filter,
  div.dataTables_info,
  div.dataTables_paginate {
    text-align: center;
  }
  div.DTTT {
    margin-bottom: 0.5em;
  }
}
table.dataTable td,
table.dataTable th {
  box-sizing: content-box;
}
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  font-family: 'Glyphicons Halflings';
  opacity: 0.5;
}
table.dataTable thead .sorting:after {
  opacity: 0.2;
  content: "\e150";
  /* sort */
}
table.dataTable thead .sorting_asc:after {
  content: "\e155";
  /* sort-by-attributes */
}
table.dataTable thead .sorting_desc:after {
  content: "\e156";
  /* sort-by-attributes-alt */
}
div.dataTables_scrollBody table.dataTable thead .sorting:after,
div.dataTables_scrollBody table.dataTable thead .sorting_asc:after,
div.dataTables_scrollBody table.dataTable thead .sorting_desc:after {
  display: none;
}
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  color: #eee;
}
table.dataTable thead > tr > th {
  padding-right: 30px;
}
table.dataTable th:active {
  outline: none;
}
/* Condensed */
table.dataTable.table-condensed thead > tr > th {
  padding-right: 20px;
}
table.dataTable.table-condensed thead .sorting:after,
table.dataTable.table-condensed thead .sorting_asc:after,
table.dataTable.table-condensed thead .sorting_desc:after {
  top: 6px;
  right: 6px;
}
/* Scrolling */
div.dataTables_scrollHead table {
  margin-bottom: 0 !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
div.dataTables_scrollHead table thead tr:last-child th:first-child,
div.dataTables_scrollHead table thead tr:last-child td:first-child {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
div.dataTables_scrollBody tbody tr:first-child th,
div.dataTables_scrollBody tbody tr:first-child td {
  border-top: none;
}
div.dataTables_scrollFoot table {
  margin-top: 0 !important;
  border-top: none;
}
/* Frustratingly the border-collapse:collapse used by Bootstrap makes the column
   width calculations when using scrolling impossible to align columns. We have
   to use separate
 */
table.table-bordered.dataTable {
  border-collapse: separate !important;
}
table.table-bordered thead th,
table.table-bordered thead td {
  border-left-width: 0;
  border-top-width: 0;
}
table.table-bordered tbody th,
table.table-bordered tbody td {
  border-left-width: 0;
  border-bottom-width: 0;
}
table.table-bordered tfoot th,
table.table-bordered tfoot td {
  border-left-width: 0;
  border-bottom-width: 0;
}
table.table-bordered th:last-child,
table.table-bordered td:last-child {
  border-right-width: 0;
}
div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}
/*
 * TableTools styles
 */
.table.dataTable tbody tr.active td,
.table.dataTable tbody tr.active th {
  background-color: #08C;
  color: white;
}
.table.dataTable tbody tr.active:hover td,
.table.dataTable tbody tr.active:hover th {
  background-color: #0075b0 !important;
}
.table.dataTable tbody tr.active th > a,
.table.dataTable tbody tr.active td > a {
  color: white;
}
.table-striped.dataTable tbody tr.active:nth-child(odd) td,
.table-striped.dataTable tbody tr.active:nth-child(odd) th {
  background-color: #017ebc;
}
table.DTTT_selectable tbody tr {
  cursor: pointer;
}
div.DTTT .btn:hover {
  text-decoration: none !important;
}
ul.DTTT_dropdown.dropdown-menu {
  z-index: 2003;
}
ul.DTTT_dropdown.dropdown-menu a {
  color: #333 !important;
  /* needed only when demo_page.css is included */
}
ul.DTTT_dropdown.dropdown-menu li {
  position: relative;
}
ul.DTTT_dropdown.dropdown-menu li:hover a {
  background-color: #0088cc;
  color: white !important;
}
div.DTTT_collection_background {
  z-index: 2002;
}
/* TableTools information display */
div.DTTT_print_info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 150px;
  margin-left: -200px;
  margin-top: -75px;
  text-align: center;
  color: #333;
  padding: 10px 30px;
  opacity: 0.95;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}
div.DTTT_print_info h6 {
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  margin: 1em;
}
div.DTTT_print_info p {
  font-size: 14px;
  line-height: 20px;
}
div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 60px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}
/*
 * FixedColumns styles
 */
div.DTFC_LeftHeadWrapper table,
div.DTFC_LeftFootWrapper table,
div.DTFC_RightHeadWrapper table,
div.DTFC_RightFootWrapper table,
table.DTFC_Cloned tr.even {
  background-color: white;
  margin-bottom: 0;
}
div.DTFC_RightHeadWrapper table,
div.DTFC_LeftHeadWrapper table {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
div.DTFC_RightHeadWrapper table thead tr:last-child th:first-child,
div.DTFC_RightHeadWrapper table thead tr:last-child td:first-child,
div.DTFC_LeftHeadWrapper table thead tr:last-child th:first-child,
div.DTFC_LeftHeadWrapper table thead tr:last-child td:first-child {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
div.DTFC_RightBodyWrapper table,
div.DTFC_LeftBodyWrapper table {
  border-top: none;
  margin: 0 !important;
}
div.DTFC_RightBodyWrapper tbody tr:first-child th,
div.DTFC_RightBodyWrapper tbody tr:first-child td,
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
  border-top: none;
}
div.DTFC_RightFootWrapper table,
div.DTFC_LeftFootWrapper table {
  border-top: none;
  margin-top: 0 !important;
}
div.DTFC_LeftBodyWrapper table.dataTable thead .sorting:after,
div.DTFC_LeftBodyWrapper table.dataTable thead .sorting_asc:after,
div.DTFC_LeftBodyWrapper table.dataTable thead .sorting_desc:after,
div.DTFC_RightBodyWrapper table.dataTable thead .sorting:after,
div.DTFC_RightBodyWrapper table.dataTable thead .sorting_asc:after,
div.DTFC_RightBodyWrapper table.dataTable thead .sorting_desc:after {
  display: none;
}
/*
 * FixedHeader styles
 */
div.FixedHeader_Cloned table {
  margin: 0 !important;
}
.note-editor {
  position: relative;
  border: 1px solid #a9a9a9;
}
.note-editor .note-dropzone {
  position: absolute;
  z-index: 100;
  display: none;
  color: #87cefa;
  background-color: white;
  border: 2px dashed #87cefa;
  opacity: .95;
  pointer-event: none;
}
.note-editor .note-dropzone .note-dropzone-message {
  display: table-cell;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}
.note-editor .note-dropzone.hover {
  color: #098ddf;
  border: 2px dashed #098ddf;
}
.note-editor.dragover .note-dropzone {
  display: table;
}
.note-editor .note-toolbar {
  background-color: #f5f5f5;
  border-bottom: 1px solid #a9a9a9;
}
.note-editor.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
}
.note-editor.fullscreen .note-editable {
  background-color: white;
}
.note-editor.fullscreen .note-resizebar {
  display: none;
}
.note-editor.codeview .note-editable {
  display: none;
}
.note-editor.codeview .note-codable {
  display: block;
}
.note-editor .note-statusbar {
  background-color: #f5f5f5;
}
.note-editor .note-statusbar .note-resizebar {
  width: 100%;
  height: 8px;
  cursor: ns-resize;
  border-top: 1px solid #a9a9a9;
}
.note-editor .note-statusbar .note-resizebar .note-icon-bar {
  width: 20px;
  margin: 1px auto;
  border-top: 1px solid #a9a9a9;
}
.note-editor .note-editable[contenteditable=true]:empty:not(:focus):before {
  color: #a9a9a9;
  content: attr(data-placeholder);
}
.note-editor .note-editable {
  padding: 10px;
  overflow: auto;
  outline: 0;
}
.note-editor .note-editable[contenteditable="false"] {
  background-color: #e5e5e5;
}
.note-editor .note-codable {
  display: none;
  width: 100%;
  padding: 10px;
  margin-bottom: 0;
  font-family: Menlo, Monaco, monospace, sans-serif;
  font-size: 14px;
  color: #ccc;
  background-color: #222;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
}
.note-air-editor {
  outline: 0;
}
.note-popover .popover {
  max-width: none;
}
.note-popover .popover .popover-content a {
  display: inline-block;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.note-popover .popover .arrow {
  left: 20px;
}
.note-popover .popover .popover-content,
.note-toolbar {
  padding: 0 0 5px 5px;
  margin: 0;
}
.note-popover .popover .popover-content > .btn-group,
.note-toolbar > .btn-group {
  margin-top: 5px;
  margin-right: 5px;
  margin-left: 0;
}
.note-popover .popover .popover-content .btn-group .note-table,
.note-toolbar .btn-group .note-table {
  min-width: 0;
  padding: 5px;
}
.note-popover .popover .popover-content .btn-group .note-table .note-dimension-picker,
.note-toolbar .btn-group .note-table .note-dimension-picker {
  font-size: 18px;
}
.note-popover .popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher,
.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-mousecatcher {
  position: absolute!important;
  z-index: 3;
  width: 10em;
  height: 10em;
  cursor: pointer;
}
.note-popover .popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted,
.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-unhighlighted {
  position: relative!important;
  z-index: 1;
  width: 5em;
  height: 5em;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIj4+Pjp6ekKlAqjAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKhmnaJzPAAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat;
}
.note-popover .popover .popover-content .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted,
.note-toolbar .btn-group .note-table .note-dimension-picker .note-dimension-picker-highlighted {
  position: absolute!important;
  z-index: 2;
  width: 1em;
  height: 1em;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASAgMAAAAroGbEAAAACVBMVEUAAIjd6vvD2f9LKLW+AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfYAR0BKwNDEVT0AAAAG0lEQVQI12NgAAOtVatWMTCohoaGUY+EmIkEAEruEzK2J7tvAAAAAElFTkSuQmCC') repeat;
}
.note-popover .popover .popover-content .note-style h1,
.note-toolbar .note-style h1,
.note-popover .popover .popover-content .note-style h2,
.note-toolbar .note-style h2,
.note-popover .popover .popover-content .note-style h3,
.note-toolbar .note-style h3,
.note-popover .popover .popover-content .note-style h4,
.note-toolbar .note-style h4,
.note-popover .popover .popover-content .note-style h5,
.note-toolbar .note-style h5,
.note-popover .popover .popover-content .note-style h6,
.note-toolbar .note-style h6,
.note-popover .popover .popover-content .note-style blockquote,
.note-toolbar .note-style blockquote {
  margin: 0;
}
.note-popover .popover .popover-content .note-color .dropdown-toggle,
.note-toolbar .note-color .dropdown-toggle {
  width: 20px;
  padding-left: 5px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu,
.note-toolbar .note-color .dropdown-menu {
  min-width: 340px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group,
.note-toolbar .note-color .dropdown-menu .btn-group {
  margin: 0;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group:first-child,
.note-toolbar .note-color .dropdown-menu .btn-group:first-child {
  margin: 0 5px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group .note-palette-title,
.note-toolbar .note-color .dropdown-menu .btn-group .note-palette-title {
  margin: 2px 7px;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset,
.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset {
  padding: 0 3px;
  margin: 3px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 5px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group .note-color-row,
.note-toolbar .note-color .dropdown-menu .btn-group .note-color-row {
  height: 20px;
}
.note-popover .popover .popover-content .note-color .dropdown-menu .btn-group .note-color-reset:hover,
.note-toolbar .note-color .dropdown-menu .btn-group .note-color-reset:hover {
  background: #eee;
}
.note-popover .popover .popover-content .note-para .dropdown-menu,
.note-toolbar .note-para .dropdown-menu {
  min-width: 216px;
  padding: 5px;
}
.note-popover .popover .popover-content .note-para .dropdown-menu > div:first-child,
.note-toolbar .note-para .dropdown-menu > div:first-child {
  margin-right: 5px;
}
.note-popover .popover .popover-content .dropdown-menu,
.note-toolbar .dropdown-menu {
  min-width: 90px;
}
.note-popover .popover .popover-content .dropdown-menu.right,
.note-toolbar .dropdown-menu.right {
  right: 0;
  left: auto;
}
.note-popover .popover .popover-content .dropdown-menu.right::before,
.note-toolbar .dropdown-menu.right::before {
  right: 9px;
  left: auto !important;
}
.note-popover .popover .popover-content .dropdown-menu.right::after,
.note-toolbar .dropdown-menu.right::after {
  right: 10px;
  left: auto !important;
}
.note-popover .popover .popover-content .dropdown-menu.note-check li a i,
.note-toolbar .dropdown-menu.note-check li a i {
  color: deepskyblue;
  visibility: hidden;
}
.note-popover .popover .popover-content .dropdown-menu.note-check li a.checked i,
.note-toolbar .dropdown-menu.note-check li a.checked i {
  visibility: visible;
}
.note-popover .popover .popover-content .note-fontsize-10,
.note-toolbar .note-fontsize-10 {
  font-size: 10px;
}
.note-popover .popover .popover-content .note-color-palette,
.note-toolbar .note-color-palette {
  line-height: 1;
}
.note-popover .popover .popover-content .note-color-palette div .note-color-btn,
.note-toolbar .note-color-palette div .note-color-btn {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  border: 1px solid #fff;
}
.note-popover .popover .popover-content .note-color-palette div .note-color-btn:hover,
.note-toolbar .note-color-palette div .note-color-btn:hover {
  border: 1px solid #000;
}
.note-dialog > div {
  display: none;
}
.note-dialog .form-group {
  margin-right: 0;
  margin-left: 0;
}
.note-dialog .note-modal-form {
  margin: 0;
}
.note-dialog .note-image-dialog .note-dropzone {
  min-height: 100px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 4;
  color: lightgray;
  text-align: center;
  border: 4px dashed lightgray;
}
.note-dialog .note-help-dialog {
  font-size: 12px;
  color: #ccc;
  background: transparent;
  background-color: #222!important;
  border: 0;
  -webkit-opacity: .9;
  -khtml-opacity: .9;
  -moz-opacity: .9;
  opacity: .9;
  -ms-filter: alpha(opacity=90);
  filter: alpha(opacity=90);
}
.note-dialog .note-help-dialog .modal-content {
  background: transparent;
  border: 1px solid white;
  border-radius: 5px;
  box-shadow: none;
}
.note-dialog .note-help-dialog a {
  font-size: 12px;
  color: white;
}
.note-dialog .note-help-dialog .title {
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  border-bottom: white 1px solid;
}
.note-dialog .note-help-dialog .modal-close {
  font-size: 14px;
  color: #dd0;
  cursor: pointer;
}
.note-dialog .note-help-dialog .text-center {
  margin: 10px 0 0;
}
.note-dialog .note-help-dialog .note-shortcut {
  padding-top: 8px;
  padding-bottom: 8px;
}
.note-dialog .note-help-dialog .note-shortcut-row {
  margin-right: -5px;
  margin-left: -5px;
}
.note-dialog .note-help-dialog .note-shortcut-col {
  padding-right: 5px;
  padding-left: 5px;
}
.note-dialog .note-help-dialog .note-shortcut-title {
  font-size: 13px;
  font-weight: bold;
  color: #dd0;
}
.note-dialog .note-help-dialog .note-shortcut-key {
  font-family: "Courier New";
  color: #dd0;
  text-align: right;
}
.note-handle .note-control-selection {
  position: absolute;
  display: none;
  border: 1px solid black;
}
.note-handle .note-control-selection > div {
  position: absolute;
}
.note-handle .note-control-selection .note-control-selection-bg {
  width: 100%;
  height: 100%;
  background-color: black;
  -webkit-opacity: .3;
  -khtml-opacity: .3;
  -moz-opacity: .3;
  opacity: .3;
  -ms-filter: alpha(opacity=30);
  filter: alpha(opacity=30);
}
.note-handle .note-control-selection .note-control-handle {
  width: 7px;
  height: 7px;
  border: 1px solid black;
}
.note-handle .note-control-selection .note-control-holder {
  width: 7px;
  height: 7px;
  border: 1px solid black;
}
.note-handle .note-control-selection .note-control-sizing {
  width: 7px;
  height: 7px;
  background-color: white;
  border: 1px solid black;
}
.note-handle .note-control-selection .note-control-nw {
  top: -5px;
  left: -5px;
  border-right: 0;
  border-bottom: 0;
}
.note-handle .note-control-selection .note-control-ne {
  top: -5px;
  right: -5px;
  border-bottom: 0;
  border-left: none;
}
.note-handle .note-control-selection .note-control-sw {
  bottom: -5px;
  left: -5px;
  border-top: 0;
  border-right: 0;
}
.note-handle .note-control-selection .note-control-se {
  right: -5px;
  bottom: -5px;
  cursor: se-resize;
}
.note-handle .note-control-selection .note-control-selection-info {
  right: 0;
  bottom: 0;
  padding: 5px;
  margin: 5px;
  font-size: 12px;
  color: white;
  background-color: black;
  border-radius: 5px;
  -webkit-opacity: .7;
  -khtml-opacity: .7;
  -moz-opacity: .7;
  opacity: .7;
  -ms-filter: alpha(opacity=70);
  filter: alpha(opacity=70);
}
.wizard,
.tabcontrol {
  display: block;
  width: 100%;
  overflow: hidden;
}
.wizard a,
.tabcontrol a {
  outline: 0;
}
.wizard ul,
.tabcontrol ul {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.wizard ul > li,
.tabcontrol ul > li {
  display: block;
  padding: 0;
}
/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
  position: absolute;
  left: -999em;
}
.wizard > .content > .title,
.tabcontrol > .content > .title {
  position: absolute;
  left: -999em;
}
/*
    Wizard
*/
.wizard > .steps {
  position: relative;
  display: block;
  width: 100%;
}
.wizard.vertical > .steps {
  display: inline;
  float: left;
  width: 30%;
}
.wizard > .steps .number {
  font-size: 1.429em;
}
.wizard > .steps > ul > li {
  width: 25%;
}
.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
  float: left;
}
.wizard.vertical > .steps > ul > li {
  float: none;
  width: 100%;
}
.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
  display: block;
  width: auto;
  margin: 0 0.5em 0.5em;
  padding: 1em 1em;
  text-decoration: none;
  border-radius: 5px;
}
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
  background: #eee;
  color: #aaa;
  cursor: default;
}
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
  background: #2184be;
  color: #fff;
  cursor: default;
}
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
  background: #9dc8e2;
  color: #fff;
}
.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
  background: #ff3111;
  color: #fff;
}
.wizard > .content {
  background: #eee;
  display: block;
  margin: 0.5em;
  min-height: 35em;
  overflow: hidden;
  position: relative;
  width: auto;
  border-radius: 5px;
}
.wizard.vertical > .content {
  display: inline;
  float: left;
  margin: 0 2.5% 0.5em 2.5%;
  width: 65%;
}
.wizard > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}
.wizard > .content > .body ul {
  list-style: disc !important;
}
.wizard > .content > .body ul > li {
  display: list-item;
}
.wizard > .content > .body > iframe {
  border: 0 none;
  width: 100%;
  height: 100%;
}
.wizard > .content > .body input {
  display: block;
  border: 1px solid #ccc;
}
.wizard > .content > .body input[type="checkbox"] {
  display: inline-block;
}
.wizard > .content > .body input.error {
  background: #fbe3e4;
  border: 1px solid #fbc2c4;
  color: #8a1f11;
}
.wizard > .content > .body label {
  display: inline-block;
  margin-bottom: 0.5em;
}
.wizard > .content > .body label.error {
  color: #8a1f11;
  display: inline-block;
  margin-left: 1.5em;
}
.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%;
}
.wizard.vertical > .actions {
  display: inline;
  float: right;
  margin: 0 2.5%;
  width: 95%;
}
.wizard > .actions > ul {
  display: inline-block;
  text-align: right;
}
.wizard > .actions > ul > li {
  margin: 0 0.5em;
}
.wizard.vertical > .actions > ul > li {
  margin: 0 0 0 1em;
}
.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
  background: #2184be;
  color: #fff;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 5px;
}
.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
  background: #eee;
  color: #aaa;
}
/*
    Tabcontrol
*/
.tabcontrol > .steps {
  position: relative;
  display: block;
  width: 100%;
}
.tabcontrol > .steps > ul {
  position: relative;
  margin: 6px 0 0 0;
  top: 1px;
  z-index: 1;
}
.tabcontrol > .steps > ul > li {
  float: left;
  margin: 5px 2px 0 0;
  padding: 1px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tabcontrol > .steps > ul > li:hover {
  background: #edecec;
  border: 1px solid #bbb;
  padding: 0;
}
.tabcontrol > .steps > ul > li.current {
  background: #fff;
  border: 1px solid #bbb;
  border-bottom: 0 none;
  padding: 0 0 1px 0;
  margin-top: 0;
}
.tabcontrol > .steps > ul > li > a {
  color: #5f5f5f;
  display: inline-block;
  border: 0 none;
  margin: 0;
  padding: 10px 30px;
  text-decoration: none;
}
.tabcontrol > .steps > ul > li > a:hover {
  text-decoration: none;
}
.tabcontrol > .steps > ul > li.current > a {
  padding: 15px 30px 10px 30px;
}
.tabcontrol > .content {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 35em;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding-top: 20px;
}
.tabcontrol > .content > .body {
  float: left;
  position: absolute;
  width: 95%;
  height: 95%;
  padding: 2.5%;
}
.tabcontrol > .content > .body ul {
  list-style: disc !important;
}
.tabcontrol > .content > .body ul > li {
  display: list-item;
}
.ui-timepicker-wrapper {
  overflow-y: auto;
  height: 150px;
  width: 6.5em;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  z-index: 10001;
  margin: 0;
}
.ui-timepicker-wrapper.ui-timepicker-with-duration {
  width: 13em;
}
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30,
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60 {
  width: 11em;
}
.ui-timepicker-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ui-timepicker-duration {
  margin-left: 5px;
  color: #888;
}
.ui-timepicker-list:hover .ui-timepicker-duration {
  color: #888;
}
.ui-timepicker-list li {
  padding: 3px 0 3px 5px;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  list-style: none;
  margin: 0;
}
.ui-timepicker-list:hover .ui-timepicker-selected {
  background: #fff;
  color: #000;
}
li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list .ui-timepicker-selected:hover {
  background: #1980EC;
  color: #fff;
}
li.ui-timepicker-selected .ui-timepicker-duration,
.ui-timepicker-list li:hover .ui-timepicker-duration {
  color: #ccc;
}
.ui-timepicker-list li.ui-timepicker-disabled,
.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  color: #888;
  cursor: default;
}
.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  background: #f2f2f2;
}
.colorpicker-saturation {
  float: left;
  width: 100px;
  height: 100px;
  cursor: crosshair;
  background-image: url("data:image/png;base64,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");
}
.colorpicker-saturation i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: -4px 0 0 -4px;
  border: 1px solid #000;
  border-radius: 5px;
}
.colorpicker-saturation i b {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid #fff;
  border-radius: 5px;
}
.colorpicker-hue,
.colorpicker-alpha {
  float: left;
  width: 15px;
  height: 100px;
  margin-bottom: 4px;
  margin-left: 4px;
  cursor: row-resize;
}
.colorpicker-hue i,
.colorpicker-alpha i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background: #000;
  border-top: 1px solid #fff;
}
.colorpicker-hue {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAD0lEQVQI12NgYGBkGgYQAHLdASjOsaJlAAAAAElFTkSuQmCC");
}
.colorpicker-alpha {
  display: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABpUlEQVRIx41Vy5UcMQisQgpgs9iL8o9Eh83CIeCDBAKJ8boP87qZAoo/Fe/TQXudSUgAR4HQjgYFIFG8kLrxpj4JQADoCDbFbRVCe3TZPEgFQHAhlyt3R/0y3LQ/NDtSCBRy1M0IDpL+62EuVeOhfcpmJ8N4ykt+R3SnDsdmQjZH0d6o3+Z5woKNjiwDyaYaoKPFTC4eNc/pyJEoHWU95E0YmqGMvRXC4Tznh7rThN3Lm2I/bYAbedTVIlJw6Mm8BIuwunf/1ONdQntt8UIiiiwiAOD8JfYk3HwzeZ8jiS42cjYTDi/IIY/Is1Vz1O72ykgX9+EJmU9/pux/cNShVexPe/fZLJfjKfGjzntorBz/13Xb7wxJ/pWnZT7sEI0LkGkQAPTZbda8Rs+u0zNHTMULwjB1b9sQ2kcz82/XMXbUP1ox9x3vMdSzGQgNmyGMIetyhOGqbKa9hHU0qD/X6WGFDLNZRoR7XRS7TsKu8zOR+5MWZrGC1rkRT59YmNfpo/4x1cl4zqQ6E7E7yq7jvSoZI9qIETYY/ZRptWmZ77vWlFKJ/wKkta6znmCtngAAAABJRU5ErkJggg==");
}
.colorpicker-saturation,
.colorpicker-hue,
.colorpicker-alpha {
  background-size: contain;
}
.colorpicker {
  top: 0;
  left: 0;
  z-index: 2500;
  min-width: 130px;
  padding: 4px;
  margin-top: 1px;
  border-radius: 4px;
  *zoom: 1;
}
.colorpicker:before,
.colorpicker:after {
  display: table;
  line-height: 0;
  content: "";
}
.colorpicker:after {
  clear: both;
}
.colorpicker:before {
  position: absolute;
  top: -7px;
  left: 6px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}
.colorpicker:after {
  position: absolute;
  top: -6px;
  left: 7px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}
.colorpicker div {
  position: relative;
}
.colorpicker.colorpicker-with-alpha {
  min-width: 140px;
}
.colorpicker.colorpicker-with-alpha .colorpicker-alpha {
  display: block;
}
.colorpicker-color {
  height: 10px;
  margin-top: 5px;
  clear: both;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABpUlEQVRIx41Vy5UcMQisQgpgs9iL8o9Eh83CIeCDBAKJ8boP87qZAoo/Fe/TQXudSUgAR4HQjgYFIFG8kLrxpj4JQADoCDbFbRVCe3TZPEgFQHAhlyt3R/0y3LQ/NDtSCBRy1M0IDpL+62EuVeOhfcpmJ8N4ykt+R3SnDsdmQjZH0d6o3+Z5woKNjiwDyaYaoKPFTC4eNc/pyJEoHWU95E0YmqGMvRXC4Tznh7rThN3Lm2I/bYAbedTVIlJw6Mm8BIuwunf/1ONdQntt8UIiiiwiAOD8JfYk3HwzeZ8jiS42cjYTDi/IIY/Is1Vz1O72ykgX9+EJmU9/pux/cNShVexPe/fZLJfjKfGjzntorBz/13Xb7wxJ/pWnZT7sEI0LkGkQAPTZbda8Rs+u0zNHTMULwjB1b9sQ2kcz82/XMXbUP1ox9x3vMdSzGQgNmyGMIetyhOGqbKa9hHU0qD/X6WGFDLNZRoR7XRS7TsKu8zOR+5MWZrGC1rkRT59YmNfpo/4x1cl4zqQ6E7E7yq7jvSoZI9qIETYY/ZRptWmZ77vWlFKJ/wKkta6znmCtngAAAABJRU5ErkJggg==");
  background-position: 0 100%;
}
.colorpicker-color div {
  height: 10px;
}
.colorpicker-element .input-group-addon i,
.colorpicker-element .add-on i {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  cursor: pointer;
}
.colorpicker.colorpicker-inline {
  position: relative;
  z-index: auto;
  display: inline-block;
  float: none;
}
.colorpicker.colorpicker-horizontal {
  width: 110px;
  height: auto;
  min-width: 110px;
}
.colorpicker.colorpicker-horizontal .colorpicker-saturation {
  margin-bottom: 4px;
}
.colorpicker.colorpicker-horizontal .colorpicker-color {
  width: 100px;
}
.colorpicker.colorpicker-horizontal .colorpicker-hue,
.colorpicker.colorpicker-horizontal .colorpicker-alpha {
  float: left;
  width: 100px;
  height: 15px;
  margin-bottom: 4px;
  margin-left: 0;
  cursor: col-resize;
}
.colorpicker.colorpicker-horizontal .colorpicker-hue i,
.colorpicker.colorpicker-horizontal .colorpicker-alpha i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 15px;
  margin-top: 0;
  background: #ffffff;
  border: none;
}
.colorpicker.colorpicker-horizontal .colorpicker-hue {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAABCAMAAAAfBfuPAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAADUlEQVQI12NkYKQ9AAAUIABlQNSqeAAAAABJRU5ErkJggg==");
}
.colorpicker.colorpicker-horizontal .colorpicker-alpha {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAKCAQAAADoFTP1AAACAElEQVQ4EQXBwY0UBxQFwHr/twQSB24EsTvjCwmQhKMkCUIAtvHJGfhkyUgg7fRzVUrky3yYpxhjzNe83cmvOeZpjTXm+85cOzP7tNZY+9deO3tt5vkwDmtfNtud45r7Ya2159HNdrO3w1prX45Mtpt9Xoex9mWz1nbuhzHW/Dg6xprbGCv2HCPG3EaMmIHPAVBlc/VnJokCtAAgAC0JAgAtigIoKMAUBAABFEUQIEVQQQEAGPizAAKPTriKoJBMSEAVIAEFAAAEQEAAAAUVUQAAtIUGRRQBAGAAANDN1XcFANqrAADQAooCQiIKMAUUAK6AiKoAJKACSoqgAAIADACA8OjkZwBAksnRFgSgTWhBRUFBBQQgEQAAFEQRaAEFaFARARQU4AA+4W//eOeN//IxqOg3a73a/kGNcJo+rIc7UM5MrqTNHcCPXB1NeiOgp6ioG1Q4A3CnwKkS5EaAk6J6KyKcEWAA4Qg8+r4oyNsCAIAkAAotekUVAFAUoAUAVGgFEARSAFBABQEFBR0QVYB/owj8Cr8DCgAAiEjSMhVAtAVAgQQFAVAAFEUaAAAQFQAUkAGQ1wLvC4oCLYICAIqiJHIFQCVJAAFoEVAAQVsEBAUAEUBRRQEQBlQAAEDgTZMEBAAQRIWWKQKiLQCCSNIqIIICoACkACggAqKAgPI/eiHrNfb5IrIAAAAASUVORK5CYII=");
}
.colorpicker.colorpicker-hidden {
  display: none;
}
.colorpicker.colorpicker-visible {
  display: block;
}
.colorpicker-inline.colorpicker-visible {
  display: inline-block;
}
.colorpicker-right:before {
  right: 6px;
  left: auto;
}
.colorpicker-right:after {
  right: 7px;
  left: auto;
}
.morris-hover {
  position: absolute;
  z-index: 1000;
}
.morris-hover.morris-default-style {
  border-radius: 10px;
  padding: 6px;
  color: #666;
  background: rgba(255, 255, 255, 0.8);
  border: solid 2px rgba(230, 230, 230, 0.8);
  font-family: sans-serif;
  font-size: 12px;
  text-align: center;
}
.morris-hover.morris-default-style .morris-hover-row-label {
  font-weight: bold;
  margin: 0.25em 0;
}
.morris-hover.morris-default-style .morris-hover-point {
  white-space: nowrap;
  margin: 0.1em 0;
}
body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.sweet-overlay {
  background-color: black;
  /* IE8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  /* IE8 */
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}
.sweet-alert {
  background-color: white;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}
@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}
.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.sweet-alert fieldset {
  border: none;
  position: relative;
}
.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  -webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}
.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  -webkit-transition: padding 0.25s, max-height 0.25s;
  transition: padding 0.25s, max-height 0.25s;
}
.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}
.sweet-alert .sa-error-container p {
  display: inline-block;
}
.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}
.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}
.sweet-alert input:focus::-moz-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus:-ms-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.03s ease;
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}
.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert.show-input input {
  display: block;
}
.sweet-alert .sa-confirm-button-container {
  display: inline-block;
  position: relative;
}
.sweet-alert .la-ball-fall {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -27px;
  margin-top: 4px;
  opacity: 0;
  visibility: hidden;
}
.sweet-alert button {
  background-color: #8CD4F5;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128, 179, 235, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.sweet-alert button:hover {
  background-color: #7ecff4;
}
.sweet-alert button:active {
  background-color: #5dc2f1;
}
.sweet-alert button.cancel {
  background-color: #C1C1C1;
}
.sweet-alert button.cancel:hover {
  background-color: #b9b9b9;
}
.sweet-alert button.cancel:active {
  background-color: #a8a8a8;
}
.sweet-alert button.cancel:focus {
  box-shadow: rgba(197, 205, 211, 0.8) 0px 0px 2px, rgba(0, 0, 0, 0.0470588) 0px 0px 0px 1px inset !important;
}
.sweet-alert button[disabled] {
  opacity: .6;
  cursor: default;
}
.sweet-alert button.confirm[disabled] {
  color: transparent;
}
.sweet-alert button.confirm[disabled] ~ .la-ball-fall {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165, 220, 134, 0.2);
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@-webkit-keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
@-webkit-keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromTop {
  0% {
    top: 0%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@keyframes slideToTop {
  0% {
    top: 50%;
  }
  100% {
    top: 0%;
  }
}
@-webkit-keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@keyframes slideFromBottom {
  0% {
    top: 70%;
  }
  100% {
    top: 50%;
  }
}
@-webkit-keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
@keyframes slideToBottom {
  0% {
    top: 50%;
  }
  100% {
    top: 70%;
  }
}
.showSweetAlert[data-animation=pop] {
  -webkit-animation: showSweetAlert 0.3s;
  animation: showSweetAlert 0.3s;
}
.showSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}
.showSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideFromTop 0.3s;
  animation: slideFromTop 0.3s;
}
.showSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideFromBottom 0.3s;
  animation: slideFromBottom 0.3s;
}
.hideSweetAlert[data-animation=pop] {
  -webkit-animation: hideSweetAlert 0.2s;
  animation: hideSweetAlert 0.2s;
}
.hideSweetAlert[data-animation=none] {
  -webkit-animation: none;
  animation: none;
}
.hideSweetAlert[data-animation=slide-from-top] {
  -webkit-animation: slideToTop 0.4s;
  animation: slideToTop 0.4s;
}
.hideSweetAlert[data-animation=slide-from-bottom] {
  -webkit-animation: slideToBottom 0.3s;
  animation: slideToBottom 0.3s;
}
@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}
.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}
.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}
@-webkit-keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes animateErrorIcon {
  0% {
    transform: rotateX(100deg);
    -webkit-transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
}
.animateErrorIcon {
  -webkit-animation: animateErrorIcon 0.5s;
  animation: animateErrorIcon 0.5s;
}
@-webkit-keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes animateXMark {
  0% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  50% {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    margin-top: 26px;
    opacity: 0;
  }
  80% {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    margin-top: -6px;
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-top: 0;
    opacity: 1;
  }
}
.animateXMark {
  -webkit-animation: animateXMark 0.5s;
  animation: animateXMark 0.5s;
}
@-webkit-keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
@keyframes pulseWarning {
  0% {
    border-color: #F8D486;
  }
  100% {
    border-color: #F8BB86;
  }
}
.pulseWarning {
  -webkit-animation: pulseWarning 0.75s infinite alternate;
  animation: pulseWarning 0.75s infinite alternate;
}
@-webkit-keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
@keyframes pulseWarningIns {
  0% {
    background-color: #F8D486;
  }
  100% {
    background-color: #F8BB86;
  }
}
.pulseWarningIns {
  -webkit-animation: pulseWarningIns 0.75s infinite alternate;
  animation: pulseWarningIns 0.75s infinite alternate;
}
@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Internet Explorer 9 has some special quirks that are fixed here */
/* The icons are not animated. */
/* This file is automatically merged into sweet-alert.min.js through Gulp */
/* Error icon */
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -ms-transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -ms-transform: rotate(-45deg);
}
/* Success icon */
.sweet-alert .sa-icon.sa-success {
  border-color: transparent;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg);
}
/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-fall,
.la-ball-fall > div {
  position: relative;
  box-sizing: border-box;
}
.la-ball-fall {
  display: block;
  font-size: 0;
  color: #fff;
}
.la-ball-fall.la-dark {
  color: #333;
}
.la-ball-fall > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}
.la-ball-fall {
  width: 54px;
  height: 18px;
}
.la-ball-fall > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: ball-fall 1s ease-in-out infinite;
  animation: ball-fall 1s ease-in-out infinite;
}
.la-ball-fall > div:nth-child(1) {
  -webkit-animation-delay: -200ms;
  animation-delay: -200ms;
}
.la-ball-fall > div:nth-child(2) {
  -webkit-animation-delay: -100ms;
  animation-delay: -100ms;
}
.la-ball-fall > div:nth-child(3) {
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}
.la-ball-fall.la-sm {
  width: 26px;
  height: 8px;
}
.la-ball-fall.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}
.la-ball-fall.la-2x {
  width: 108px;
  height: 36px;
}
.la-ball-fall.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}
.la-ball-fall.la-3x {
  width: 162px;
  height: 54px;
}
.la-ball-fall.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}
/*
 * Animation
 */
@-webkit-keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}
@keyframes ball-fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-145%);
    transform: translateY(-145%);
  }
  10% {
    opacity: .5;
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    opacity: .5;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(145%);
    transform: translateY(145%);
  }
}
.twitter-typeahead {
  display: inline !important;
}
.twitter-typeahead input[type="text"] {
  width: 100%;
  margin-bottom: 0;
}
.typeahead {
  background-color: #fff;
  width: 100%;
  height: 30px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  border: 2px solid #ccc;
  border-radius: 2px;
  outline: none;
}
.typeahead:focus {
  border: 2px solid #0097cf;
}
.tt-query {
  width: 100%;
  height: 30px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  border: 2px solid #ccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  outline: none;
}
.tt-hint {
  width: 100%;
  height: 30px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  border: 2px solid #ccc;
  border-radius: 2px;
  outline: none;
  color: #999;
}
.tt-menu {
  width: 485.859px;
  margin: 3px 0 0 0;
  padding: 5px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}
.tt-suggestion {
  padding: 3px 20px;
  font-size: 12px;
  line-height: 16px;
}
.tt-suggestion p {
  margin: 0;
}
.tt-suggestion h5 {
  color: inherit !important;
}
.tt-suggestion .media-heading {
  margin-bottom: 3px;
}
.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #259DAB;
}
.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #259DAB;
}
.multiselect-container {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.multiselect-container .input-group {
  margin: 5px;
}
.multiselect-container > li {
  padding: 0;
}
.multiselect-container > li > a.multiselect-all label {
  font-weight: 700;
}
.multiselect-container > li.multiselect-group label {
  margin: 0;
  padding: 3px 20px 3px 20px;
  height: 100%;
  font-weight: 700;
}
.multiselect-container > li.multiselect-group-clickable label {
  cursor: pointer;
}
.multiselect-container > li > a {
  padding: 0;
}
.multiselect-container > li > a > label {
  margin: 0;
  height: 100%;
  cursor: pointer;
  font-weight: 400;
  padding: 3px 20px 3px 40px;
}
.multiselect-container > li > a > label.radio,
.multiselect-container > li > a > label.checkbox {
  margin: 0;
}
.multiselect-container > li > a > label > input[type=checkbox] {
  margin-bottom: 5px;
}
.btn-group > .btn-group:nth-child(2) > .multiselect.btn {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-inline .multiselect-container label.checkbox,
.form-inline .multiselect-container label.radio {
  padding: 3px 20px 3px 40px;
}
.form-inline .multiselect-container li a label.checkbox input[type=checkbox],
.form-inline .multiselect-container li a label.radio input[type=radio] {
  margin-left: -20px;
  margin-right: 0;
}
.tcon,
.tcon:focus,
.tcon:hover {
  outline: 0;
}
@-webkit-keyframes chevron-pulse {
  0%,
  100%,
  80% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes chevron-pulse {
  0%,
  100%,
  80% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.tcon {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  height: 40px;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 40px;
  background: 0 0;
  -webkit-tap-highlight-color: transparent;
}
.tcon > * {
  display: block;
}
.tcon::-moz-focus-inner {
  border: 0;
}
.tcon-menu__lines,
.tcon-menu__lines::after,
.tcon-menu__lines::before {
  display: inline-block;
  height: 5.71px;
  border-radius: 2.86px;
  -webkit-transition: .3s;
  background: #000;
}
.tcon-menu__lines {
  width: 40px;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}
.tcon-menu__lines::after,
.tcon-menu__lines::before {
  -webkit-transition: .3s;
  transition: .3s;
  content: '';
  position: absolute;
  left: 0;
  -webkit-transform-origin: 2.86px center;
  transform-origin: 2.86px center;
  width: 100%;
}
.tcon-menu__lines::before {
  top: 10px;
}
.tcon-menu__lines::after {
  top: -10px;
}
.tcon-transform .tcon-menu__lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
.tcon-menu--arrow,
.tcon-menu--arrowleft {
  width: auto;
}
.tcon-menu--arrow.tcon-transform .tcon-menu__lines::after,
.tcon-menu--arrow.tcon-transform .tcon-menu__lines::before,
.tcon-transform.tcon-menu--arrowleft .tcon-menu__lines::after,
.tcon-transform.tcon-menu--arrowleft .tcon-menu__lines::before {
  top: 0;
  width: 22.22px;
}
.tcon-plus::after,
.tcon-plus::before,
.tcon-remove::after,
.tcon-remove::before {
  content: "";
  display: block;
  top: 37%;
  left: 8%;
  background: #000;
}
.tcon-menu--arrow.tcon-transform .tcon-menu__lines::before,
.tcon-transform.tcon-menu--arrowleft .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.tcon-menu--arrow.tcon-transform .tcon-menu__lines::after,
.tcon-transform.tcon-menu--arrowleft .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.tcon-grid {
  padding: 1rem;
}
.tcon-grid .tcon-grid__item {
  width: .5rem;
  height: .5rem;
  background: #000;
  color: #000;
  -webkit-transition: .3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tcon-grid.tcon-transform .tcon-grid__item {
  -webkit-transform: rotate3d(0, 0, 1, -45deg) scale3d(0.8, 0.8, 0.8);
  transform: rotate3d(0, 0, 1, -45deg) scale3d(0.8, 0.8, 0.8);
}
.tcon-plus {
  height: 40px;
  position: relative;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  width: 40px;
}
.tcon-plus::after,
.tcon-plus::before {
  border-radius: 2px;
  width: 85%;
  height: 25%;
  position: absolute;
  -webkit-transition: .3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tcon-plus:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tcon-remove {
  height: 40px;
  position: relative;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  width: 40px;
}
.tcon-remove::after,
.tcon-remove::before {
  height: 25%;
  width: 85%;
  position: absolute;
  -webkit-transition: .3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tcon-remove::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tcon-remove::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tcon-search__item {
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-transition: .3s;
  transition: .3s;
  background: 0 0;
  position: relative;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tcon-search__item::after,
.tcon-search__item::before {
  display: inline-block;
  height: 30px;
  border-radius: 0;
  -webkit-transition: .3s;
  transition: .3s;
  background: 0 0;
  content: '';
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.tcon-search__item::before {
  height: 4px;
  left: 0;
  background: #000;
  border-radius: 2.86px;
}
.tcon-search__item::after {
  right: 0;
  background: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #000;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines,
.tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: 0 0;
}
.tcon-svgchevron {
  height: 40px;
  width: 40px;
}
.tcon-svgchevron path {
  -webkit-animation: chevron-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation: chevron-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  fill: transparent;
  stroke: #000;
  stroke-width: 1px;
}
.tcon-svgchevron path.a1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.tcon-svgchevron path.a2 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.tcon-svgchevron path.a3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.tcon-menu--xbutterfly {
  width: auto;
}
.tcon-menu--xbutterfly .tcon-menu__lines::after,
.tcon-menu--xbutterfly .tcon-menu__lines::before {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: top 0.3s 0.6s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s 0.6s ease, -webkit-transform 0.3s ease;
  -webkit-transition: top .3s .6s ease,-webkit-transform .3s ease;
  transition: top .3s .6s ease,-webkit-transform .3s ease;
  transition: top .3s .6s ease,transform .3s ease;
  transition: top .3s .6s ease,transform .3s ease,-webkit-transform .3s ease;
  transition: top 0.3s 0.6s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::after,
.tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::before {
  top: 0;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s 0.5s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s 0.5s ease;
  -webkit-transition: top .3s ease,-webkit-transform .3s .5s ease;
  transition: top .3s ease,-webkit-transform .3s .5s ease;
  transition: top .3s ease,transform .3s .5s ease;
  transition: top .3s ease,transform .3s .5s ease,-webkit-transform .3s .5s ease;
  transition: top 0.3s ease, transform 0.3s 0.5s ease, -webkit-transform 0.3s 0.5s ease;
  width: 40px;
}
.tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.tcon-menu--xbutterfly.tcon-transform .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.tcon-menu--xcross {
  width: auto;
}
.tcon-menu--xcross.tcon-transform .tcon-menu__lines::after,
.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 40px;
}
.tcon-menu--xcross.tcon-transform .tcon-menu__lines::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.tcon-menu--minus {
  width: auto;
}
.tcon-menu--minus.tcon-transform .tcon-menu__lines::after,
.tcon-menu--minus.tcon-transform .tcon-menu__lines::before {
  -webkit-transform: none;
  transform: none;
  top: 0;
  width: 40px;
}
.tcon-menu--arrow360left.tcon-transform {
  -webkit-transform: scale3d(0.8, 0.8, 0.8) rotate3d(0, 0, 1, 360deg);
  transform: scale3d(0.8, 0.8, 0.8) rotate3d(0, 0, 1, 360deg);
}
.tcon-menu--arrowup {
  width: auto;
}
.tcon-menu--arrowup.tcon-transform {
  -webkit-transform: scale3d(0.8, 0.8, 0.8) rotate3d(0, 0, 1, 90deg);
  transform: scale3d(0.8, 0.8, 0.8) rotate3d(0, 0, 1, 90deg);
}
.tcon-grid--collapse .tcon-grid__item {
  box-shadow: -0.625rem 0, -0.625rem 0.625rem, 0.625rem 0, 0.625rem -0.625rem, 0 -0.625rem, -0.625rem -0.625rem, 0 0.625rem, 0.625rem 0.625rem;
}
.tcon-grid--collapse.tcon-transform .tcon-grid__item {
  box-shadow: -0.5rem 0, 0 0 transparent, 0.5rem 0, 0 0 transparent, 0 -0.5rem, 0 0 transparent, 0 0.5rem, 0 0 transparent;
}
.tcon-grid--rearrange .tcon-grid__item {
  box-shadow: -0.625rem -0.625rem, 0 -0.625rem, 0.625rem -0.625rem, -0.625rem 0, 0.625rem 0, -0.625rem 0.625rem, 0 0.625rem, 0.625rem 0.625rem;
}
.tcon-grid--rearrange.tcon-transform .tcon-grid__item {
  box-shadow: 0 -0.5rem, 0 -1rem, 0.5rem 0, -1rem 0, 1rem 0, -0.5rem 0, 0 1rem, 0 0.5rem;
}
.tcon-remove--check.tcon-transform::before {
  -webkit-transform: rotate(-135deg) translate(5%, -10%);
  transform: rotate(-135deg) translate(5%, -10%);
  top: 50%;
  width: 55%;
}
.tcon-remove--check.tcon-transform::after {
  -webkit-transform: rotate(-45deg) translate(20%, 10%);
  transform: rotate(-45deg) translate(20%, 10%);
  top: 50%;
  width: 85%;
}
.tcon-remove--chevron-left.tcon-transform::before {
  left: 20%;
  -webkit-transform: translate(0, -55%) rotate(-45deg);
  transform: translate(0, -55%) rotate(-45deg);
  width: 62%;
}
.tcon-remove--chevron-left.tcon-transform::after {
  left: 20%;
  -webkit-transform: translate(0, 55%) rotate(45deg);
  transform: translate(0, 55%) rotate(45deg);
  width: 62%;
}
.tcon-remove--chevron-right.tcon-transform::before {
  left: 20%;
  -webkit-transform: translate(0, 55%) rotate(-45deg);
  transform: translate(0, 55%) rotate(-45deg);
  width: 62%;
}
.tcon-remove--chevron-right.tcon-transform::after {
  left: 20%;
  -webkit-transform: translate(0, -55%) rotate(45deg);
  transform: translate(0, -55%) rotate(45deg);
  width: 62%;
}
.tcon-remove--chevron-down.tcon-transform::before {
  left: 5%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  width: 59%;
}
.tcon-remove--chevron-down.tcon-transform::after {
  left: auto;
  right: 10%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  width: 60%;
}
.tcon-remove--chevron-up.tcon-transform::before {
  left: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 59%;
}
.tcon-remove--chevron-up.tcon-transform::after {
  left: auto;
  right: 10%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 60%;
}
.tcon-plus--check.tcon-transform::before {
  -webkit-transform: rotate(-135deg) translate(5%, -10%);
  transform: rotate(-135deg) translate(5%, -10%);
  top: 50%;
  width: 55%;
}
.tcon-plus--check.tcon-transform::after {
  -webkit-transform: rotate(-45deg) translate(20%, 10%);
  transform: rotate(-45deg) translate(20%, 10%);
  top: 50%;
  width: 85%;
}
.tcon-plus--minus.tcon-transform::before {
  -webkit-transform: rotate(180deg) translate(0, 0);
  transform: rotate(180deg) translate(0, 0);
  width: 62%;
}
.tcon-plus--minus.tcon-transform::after {
  -webkit-transform: rotate(-180deg) translate(-37.5%, 0);
  transform: rotate(-180deg) translate(-37.5%, 0);
  width: 62%;
}
.tcon-plus--minusfold {
  height: 40px;
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 40px;
}
.tcon-plus--minusfold::after,
.tcon-plus--minusfold::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(0);
  transform: translate(50%, -50%) rotate(0);
  width: 50%;
  height: 3.33px;
  background: #000;
}
.tcon-plus--minusfold::after {
  top: 50%;
  width: 50%;
  height: 3.33px;
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
}
.tcon-plus--minusfold.tcon-transform::after {
  -webkit-transform: translate(50%, -50%) rotate(0);
  transform: translate(50%, -50%) rotate(0);
}
.tcon-plus--circle {
  border: 3.33px solid #000;
  border-radius: 80%;
  position: relative;
  background: 0 0;
}
.tcon-plus--circle::after,
.tcon-plus--circle::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(0);
  transform: translate(50%, -50%) rotate(0);
  width: 50%;
  height: 3.33px;
  background: #000;
}
.tcon-plus--circle::after {
  top: 50%;
  width: 50%;
  height: 3.33px;
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
}
.tcon-plus--circle.tcon-transform::before {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}
.tcon-plus--circle.tcon-transform::after {
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
}
.tcon-mail--envelope {
  width: 40px;
  height: 20px;
  background: #3D3F41;
  position: relative;
}
.tcon-mail--envelope:after,
.tcon-mail--envelope:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  width: 40px;
}
.tcon-mail--envelope:before {
  left: 0;
  border-left: 40px solid #BCBCBD;
  border-top: 20px solid transparent;
}
.tcon-mail--envelope:after {
  right: 0;
  border-right: 40px solid #A5ACAE;
  border-top: 20px solid transparent;
}
.tcon-mail--envelope.tcon-transform .tcon-mail--envelope__flap {
  -webkit-transform: rotate3d(360, 0, 0, 180deg);
  transform: rotate3d(360, 0, 0, 180deg);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.tcon-mail--envelope__flap {
  border-bottom: 10px solid transparent;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-color: transparent transparent #AEB3B5;
  position: absolute;
  -webkit-transform: rotate3d(0, 0, 0, 0deg);
  transform: rotate3d(0, 0, 0, 0deg);
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transition: 0.2s -webkit-transform ease-in-out;
  transition: 0.2s -webkit-transform ease-in-out;
  transition: 0.2s transform ease-in-out;
  transition: 0.2s transform ease-in-out, 0.2s -webkit-transform ease-in-out;
  top: -10px;
  left: 0;
}
.tcon-search--xcross.tcon-transform {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
.tcon-search--xcross.tcon-transform .tcon-search__item::after,
.tcon-search--xcross.tcon-transform .tcon-search__item::before {
  border-radius: 2.86px;
  background: #000;
}
.tcon-search--xcross.tcon-transform .tcon-search__item::after {
  height: 4px;
  width: 100%;
  top: 0;
  right: 0;
  border: 0;
  -webkit-transform: rotate3d(0, 0, 1, 90deg);
  transform: rotate3d(0, 0, 1, 90deg);
}
.tcon-vid--play {
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  width: 40px;
  -webkit-transition: 375ms all ease-in-out;
  transition: 375ms all ease-in-out;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.tcon-vid--play:after {
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #000;
  content: "";
  display: block;
  height: 0;
  -webkit-transform: translateX(25%);
  transform: translateX(25%);
  width: 40px;
}
.tcon-vid--play.tcon-transform {
  background: #000;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.tcon-loader--spinner360 {
  border-radius: 80%;
  display: block;
  height: 40px;
  width: 40px;
  position: relative;
  -webkit-animation: tcon-spin360 675ms linear infinite forwards;
  animation: tcon-spin360 675ms linear infinite forwards;
  background: #d3d3d3;
}
.tcon-loader--spinner360:after,
.tcon-loader--spinner360:before {
  content: "";
  display: block;
  position: absolute;
}
.tcon-loader--spinner360:before {
  border-radius: 0 90px 90px 0;
  height: 40px;
  width: 50%;
  top: 0;
  right: 0;
  z-index: 1;
  background: #000;
  background-image: -webkit-linear-gradient(lightgray, #000);
  background-image: linear-gradient(lightgray, #000);
}
.tcon-loader--spinner360:after {
  border-radius: 80%;
  height: 30px;
  width: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #fff;
}
@-webkit-keyframes tcon-spin360 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes tcon-spin360 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tcon-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.tcon-visuallyhidden:active,
.tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
table.dataTable.dt-checkboxes-select tbody tr,
table.dataTable thead .dt-checkboxes-select-all {
  cursor: pointer;
}
div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em;
}
@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block;
  }
}
/***** ALERTS *****/
.alert .close {
  margin-top: -2px;
}
.alert-success .alert-link {
  color: #4e8a35;
}
.alert-success .alert-link:hover,
.alert-success .alert-link:focus {
  color: #41742c;
}
.alert-info .alert-link {
  color: #1a5a7a;
}
.alert-info .alert-link:hover,
.alert-info .alert-link:focus {
  color: #144761;
}
.alert-warning .alert-link {
  color: #937e10;
}
.alert-warning .alert-link:hover,
.alert-warning .alert-link:focus {
  color: #77660d;
}
.alert-danger .alert-link {
  color: #6a2a2a;
}
.alert-danger .alert-link:hover,
.alert-danger .alert-link:focus {
  color: #542121;
}
/***** BUTTONS *****/
.btn {
  padding: 10px 12px 9px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
}
.btn-default {
  color: #696c74;
  background-color: #fff;
  border-color: #bdc3d1;
}
.btn-default:focus,
.btn-default.focus {
  color: #696c74;
  background-color: #ededed;
  border-color: #818da7;
  box-shadow: none;
}
.btn-default:hover {
  color: #696c74;
  background-color: #f2f2f2;
  border-color: #a8b0c2;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #696c74;
  background-color: #ededed;
  border-color: #a8b0c2;
  box-shadow: none;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #696c74;
  background-color: #ededed;
  border-color: #9fa8bc;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #bdc3d1;
}
.btn-default .badge {
  color: #fff;
  background-color: #696c74;
}
.btn-primary {
  color: #fff;
  background-color: #2574ab;
  border-color: transparent;
}
.btn-primary:focus,
.btn-primary.focus {
  color: #fff;
  background-color: #1f608e;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-primary:hover {
  color: #fff;
  background-color: #206696;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #1f608e;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-primary:active:hover,
.btn-primary.active:hover,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary:active:focus,
.btn-primary.active:focus,
.open > .dropdown-toggle.btn-primary:focus,
.btn-primary:active.focus,
.btn-primary.active.focus,
.open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #1f608e;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #2574ab;
  border-color: transparent;
}
.btn-primary .badge {
  color: #2574ab;
  background-color: #fff;
}
.btn-success {
  color: #fff;
  background-color: #259DAB;
  border-color: transparent;
}
.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #1f828e;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-success:hover {
  color: #fff;
  background-color: #208a96;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #1f828e;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-success:active:hover,
.btn-success.active:hover,
.open > .dropdown-toggle.btn-success:hover,
.btn-success:active:focus,
.btn-success.active:focus,
.open > .dropdown-toggle.btn-success:focus,
.btn-success:active.focus,
.btn-success.active.focus,
.open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #1f828e;
  border-color: rgba(0, 0, 0, 0);
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #259DAB;
  border-color: transparent;
}
.btn-success .badge {
  color: #259DAB;
  background-color: #fff;
}
.btn-warning {
  color: #fff;
  background-color: #e6ad5c;
  border-color: transparent;
}
.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #e19d3d;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-warning:hover {
  color: #fff;
  background-color: #e3a246;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #e19d3d;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-warning:active:hover,
.btn-warning.active:hover,
.open > .dropdown-toggle.btn-warning:hover,
.btn-warning:active:focus,
.btn-warning.active:focus,
.open > .dropdown-toggle.btn-warning:focus,
.btn-warning:active.focus,
.btn-warning.active.focus,
.open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #e19d3d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning.focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #e6ad5c;
  border-color: transparent;
}
.btn-warning .badge {
  color: #e6ad5c;
  background-color: #fff;
}
.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: transparent;
}
.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #d33632;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-danger:hover {
  color: #fff;
  background-color: #d43f3a;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #d33632;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-danger:active:hover,
.btn-danger.active:hover,
.open > .dropdown-toggle.btn-danger:hover,
.btn-danger:active:focus,
.btn-danger.active:focus,
.open > .dropdown-toggle.btn-danger:focus,
.btn-danger:active.focus,
.btn-danger.active.focus,
.open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #d33632;
  border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger.focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: transparent;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}
.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: transparent;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #3db5d8;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-info:hover {
  color: #fff;
  background-color: #46b8da;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #3db5d8;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-info:active:hover,
.btn-info.active:hover,
.open > .dropdown-toggle.btn-info:hover,
.btn-info:active:focus,
.btn-info.active:focus,
.open > .dropdown-toggle.btn-info:focus,
.btn-info:active.focus,
.btn-info.active.focus,
.open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #3db5d8;
  border-color: rgba(0, 0, 0, 0);
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  background-image: none;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled.focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info.focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: transparent;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}
.btn-inverse {
  color: #fff;
  background-color: #505b72;
  border-color: transparent;
}
.btn-inverse:focus,
.btn-inverse.focus {
  color: #fff;
  background-color: #414a5d;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-inverse:hover {
  color: #fff;
  background-color: #464f63;
  border-color: rgba(0, 0, 0, 0);
}
.btn-inverse:active,
.btn-inverse.active,
.open > .dropdown-toggle.btn-inverse {
  color: #fff;
  background-color: #414a5d;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-inverse:active:hover,
.btn-inverse.active:hover,
.open > .dropdown-toggle.btn-inverse:hover,
.btn-inverse:active:focus,
.btn-inverse.active:focus,
.open > .dropdown-toggle.btn-inverse:focus,
.btn-inverse:active.focus,
.btn-inverse.active.focus,
.open > .dropdown-toggle.btn-inverse.focus {
  color: #fff;
  background-color: #414a5d;
  border-color: rgba(0, 0, 0, 0);
}
.btn-inverse:active,
.btn-inverse.active,
.open > .dropdown-toggle.btn-inverse {
  background-image: none;
}
.btn-inverse.disabled,
.btn-inverse[disabled],
fieldset[disabled] .btn-inverse,
.btn-inverse.disabled:hover,
.btn-inverse[disabled]:hover,
fieldset[disabled] .btn-inverse:hover,
.btn-inverse.disabled:focus,
.btn-inverse[disabled]:focus,
fieldset[disabled] .btn-inverse:focus,
.btn-inverse.disabled.focus,
.btn-inverse[disabled].focus,
fieldset[disabled] .btn-inverse.focus,
.btn-inverse.disabled:active,
.btn-inverse[disabled]:active,
fieldset[disabled] .btn-inverse:active,
.btn-inverse.disabled.active,
.btn-inverse[disabled].active,
fieldset[disabled] .btn-inverse.active {
  background-color: #505b72;
  border-color: transparent;
}
.btn-inverse .badge {
  color: #505b72;
  background-color: #fff;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 11px 14px 10px;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 8px 4px;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 3px 5px 2px;
}
.input-group-btn .btn:not(.btn-lg),
.input-group-btn .btn:not(.btn-sm),
.input-group-btn .btn:not(.btn-xs) {
  min-height: 38px;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -2px;
}
/***** BUTTON GROUPS *****/
.btn-group .btn:not(.btn-default) + .btn:not(.btn-default),
.btn-group .btn:not(.btn-default) + .btn-group,
.btn-group .btn-group + .btn:not(.btn-default),
.btn-group .btn-group + .btn-group {
  margin-left: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-group .btn:not(.btn-default) + .btn-group {
  margin-left: -1px;
}
/***** DROPDOWN *****/
.dropdown-menu {
  padding: 5px;
  box-shadow: none;
}
.dropdown-menu > li > a {
  padding: 5px 7px;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  background-color: #bdc3d1;
  color: #fff;
}
.dropdown-menu .divider {
  margin: 5px 0;
}
.dm-icon > li > a > i {
  display: inline-block;
  margin-right: 5px;
}
/***** FORMS *****/
.form-control {
  box-shadow: none;
  -webkit-transition: none;
  transition: none;
  margin-bottom: 10px;
}
.form-control:focus {
  background-color: #fff;
  border-color: #9fa8bc;
  box-shadow: none;
}
.form-control[disabled],
.form-control[readonly] {
  color: #9fa8bc;
}
.form-group {
  margin-bottom: 10px;
}
.has-success .form-control,
.has-warning .form-control,
.has-error .form-control,
.has-success .form-control:focus,
.has-warning .form-control:focus,
.has-error .form-control:focus {
  box-shadow: none;
}
/***** BADGES & LABELS *****/
.badge {
  font-size: 10px;
  font-weight: 500;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.label {
  font-weight: normal;
}
/***** MEDIA *****/
.media-right,
.media > .pull-right {
  padding-left: 20px;
}
.media-left,
.media > .pull-left {
  padding-right: 20px;
}
/***** PAGINATION *****/
.pagination > li > a,
.pagination > li > span {
  font-weight: 700;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  padding: 9px 14px;
}
.pagination > li + li > a,
.pagination > li + li > span {
  margin-left: 1px;
}
.pagination-bordered > li + li > a,
.pagination-bordered > li + li > span {
  margin-left: 5px;
  border-radius: 2px;
  background-color: transparent;
  border-color: #dbdfe6;
}
.pagination-bordered > li + li > a:hover,
.pagination-bordered > li + li > span:hover,
.pagination-bordered > li + li > a:focus,
.pagination-bordered > li + li > span:focus {
  background-color: #d8dce3;
  border-color: #bdc3d1;
}
.pagination-bordered > .disabled > span,
.pagination-bordered > .disabled > span:hover,
.pagination-bordered > .disabled > span:focus,
.pagination-bordered > .disabled > a,
.pagination-bordered > .disabled > a:hover,
.pagination-bordered > .disabled > a:focus {
  border-color: #dbdfe6;
}
.pager li {
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
}
.pager li > a,
.pager li > span {
  color: #3b4354;
  padding: 9px 14px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
/***** PANELS *****/
.panel {
  border: 0;
  border-radius: 2px;
  margin-bottom: 20px;
  background-color: #fff;
  position: relative;
  box-shadow: none;
}
.panel-heading {
  margin-bottom: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.panel-heading.min {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.panel-heading p {
  margin: 7px 0 0;
}
.panel-heading + .panel-body {
  padding-top: 0;
}
.panel-title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #313745;
  letter-spacing: .2px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
}
.panel-body {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.panel-body p + p {
  margin: 15px 0 0;
}
.panel-body .list-inline > li:first-child {
  padding-left: 0;
}
.panel-body .list-inline > li:last-child {
  padding-right: 0;
}
.panel-body.inverse {
  background-color: #3b4354;
  color: rgba(255, 255, 255, 0.8);
}
.panel-default > .panel-heading > p {
  color: #696c74;
}
.panel-footer {
  background-color: #f0f1f4;
  border-color: transparent;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.panel-default .panel-options,
.panel-primary .panel-options,
.panel-success .panel-options,
.panel-warning .panel-options,
.panel-danger .panel-options,
.panel-info .panel-options,
.panel-inverse .panel-options {
  top: 11px;
}
.panel-default .panel-heading,
.panel-primary .panel-heading,
.panel-success .panel-heading,
.panel-warning .panel-heading,
.panel-danger .panel-heading,
.panel-info .panel-heading,
.panel-inverse .panel-heading {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 0;
}
.panel-default .panel-heading .panel-title,
.panel-primary .panel-heading .panel-title,
.panel-success .panel-heading .panel-title,
.panel-warning .panel-heading .panel-title,
.panel-danger .panel-heading .panel-title,
.panel-info .panel-heading .panel-title,
.panel-inverse .panel-heading .panel-title {
  color: #fff;
}
.panel-default .panel-heading p,
.panel-primary .panel-heading p,
.panel-success .panel-heading p,
.panel-warning .panel-heading p,
.panel-danger .panel-heading p,
.panel-info .panel-heading p,
.panel-inverse .panel-heading p {
  color: rgba(255, 255, 255, 0.8);
}
.panel-default .panel-body,
.panel-primary .panel-body,
.panel-success .panel-body,
.panel-warning .panel-body,
.panel-danger .panel-body,
.panel-info .panel-body,
.panel-inverse .panel-body {
  padding-top: 20px;
}
.panel-group .panel {
  border-radius: 0;
}
.panel-group .panel > .panel-heading {
  padding: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.panel-group .panel > .panel-heading .panel-title {
  font-size: 12px;
}
@media (max-width: 480px) {
  .panel-group .panel > .panel-heading .panel-title {
    line-height: 18px;
  }
}
.panel-group .panel > .panel-heading .panel-title > a {
  display: block;
  position: relative;
  padding: 18px 20px 15px;
  color: #505b72;
  color: #259DAB;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-group .panel > .panel-heading .panel-title > a:hover,
.panel-group .panel > .panel-heading .panel-title > a:focus {
  color: #259DAB;
}
.panel-group .panel > .panel-heading .panel-title > a:after {
  content: '\f078';
  font-family: 'FontAwesome';
  font-size: 11px;
  font-weight: normal;
  color: #9fa8bc;
  position: absolute;
  top: 15px;
  right: 20px;
  display: none;
}
.panel-group .panel > .panel-heading .panel-title > a.collapsed {
  padding: 15px 20px;
  color: #505b72;
}
.panel-group .panel > .panel-heading .panel-title > a.collapsed:after {
  content: '\f054';
  color: #fff;
}
.panel-group .panel > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel > .panel-heading .panel-title > a.collapsed:focus {
  color: #262b36;
}
.panel-group .panel > .panel-heading + .panel-collapse > .panel-body {
  border-top: 0;
}
.panel-group .panel + .panel {
  margin-top: 0;
  border-top: 1px solid #dbdfe6;
}
.panel-group .panel .panel-collapse.in > .panel-body,
.panel-group .panel .panel-collapse.collapsing > .panel-body {
  padding-top: 0;
}
.panel-group .panel:first-child,
.panel-group .panel:first-child > .panel-heading .panel-title > a {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.panel-group .panel:last-child,
.panel-group .panel:last-child > .panel-heading .panel-title > a.collapsed {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group .panel-default > .panel-heading .panel-title > a,
.panel-group .panel-primary > .panel-heading .panel-title > a,
.panel-group .panel-success > .panel-heading .panel-title > a,
.panel-group .panel-warning > .panel-heading .panel-title > a,
.panel-group .panel-danger > .panel-heading .panel-title > a,
.panel-group .panel-info > .panel-heading .panel-title > a,
.panel-group .panel-inverse > .panel-heading .panel-title > a {
  margin-top: -1px;
}
.panel-group .panel-default > .panel-heading .panel-title > a:after,
.panel-group .panel-primary > .panel-heading .panel-title > a:after,
.panel-group .panel-success > .panel-heading .panel-title > a:after,
.panel-group .panel-warning > .panel-heading .panel-title > a:after,
.panel-group .panel-danger > .panel-heading .panel-title > a:after,
.panel-group .panel-info > .panel-heading .panel-title > a:after,
.panel-group .panel-inverse > .panel-heading .panel-title > a:after {
  display: block;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:focus,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:focus {
  color: #fff;
}
.panel-group .panel-default:first-child > .panel-heading,
.panel-group .panel-primary:first-child > .panel-heading,
.panel-group .panel-success:first-child > .panel-heading,
.panel-group .panel-warning:first-child > .panel-heading,
.panel-group .panel-danger:first-child > .panel-heading,
.panel-group .panel-info:first-child > .panel-heading,
.panel-group .panel-inverse:first-child > .panel-heading {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-group .panel-default:first-child > .panel-heading .panel-title > a,
.panel-group .panel-primary:first-child > .panel-heading .panel-title > a,
.panel-group .panel-success:first-child > .panel-heading .panel-title > a,
.panel-group .panel-warning:first-child > .panel-heading .panel-title > a,
.panel-group .panel-danger:first-child > .panel-heading .panel-title > a,
.panel-group .panel-info:first-child > .panel-heading .panel-title > a,
.panel-group .panel-inverse:first-child > .panel-heading .panel-title > a {
  margin-top: 0;
}
.panel-group .panel-default:last-child > .panel-heading,
.panel-group .panel-primary:last-child > .panel-heading,
.panel-group .panel-success:last-child > .panel-heading,
.panel-group .panel-warning:last-child > .panel-heading,
.panel-group .panel-danger:last-child > .panel-heading,
.panel-group .panel-info:last-child > .panel-heading,
.panel-group .panel-inverse:last-child > .panel-heading,
.panel-group .panel-default:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-primary:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-success:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-warning:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-danger:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-info:last-child > .panel-heading .panel-title > a.collapsed,
.panel-group .panel-inverse:last-child > .panel-heading .panel-title > a.collapsed {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-group .panel-default .panel-collapse.in > .panel-body,
.panel-group .panel-primary .panel-collapse.in > .panel-body,
.panel-group .panel-success .panel-collapse.in > .panel-body,
.panel-group .panel-warning .panel-collapse.in > .panel-body,
.panel-group .panel-danger .panel-collapse.in > .panel-body,
.panel-group .panel-info .panel-collapse.in > .panel-body,
.panel-group .panel-inverse .panel-collapse.in > .panel-body,
.panel-group .panel-default .panel-collapse.collapsing > .panel-body,
.panel-group .panel-primary .panel-collapse.collapsing > .panel-body,
.panel-group .panel-success .panel-collapse.collapsing > .panel-body,
.panel-group .panel-warning .panel-collapse.collapsing > .panel-body,
.panel-group .panel-danger .panel-collapse.collapsing > .panel-body,
.panel-group .panel-info .panel-collapse.collapsing > .panel-body,
.panel-group .panel-inverse .panel-collapse.collapsing > .panel-body {
  padding-top: 0;
  margin-bottom: -1px;
}
.panel-group .panel-default > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-default > .panel-heading .panel-title > a,
.panel-group .panel-default > .panel-heading .panel-title > a:hover,
.panel-group .panel-default > .panel-heading .panel-title > a:focus {
  color: #9fa8bc;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed {
  background-color: #9fa8bc;
}
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-default > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #909bb1;
}
.panel-group .panel-default + .panel {
  border-color: #b4bbca;
}
.panel-group .panel-default > .panel-heading .panel-title > a,
.panel-group .panel-default > .panel-heading .panel-title > a:hover,
.panel-group .panel-default > .panel-heading .panel-title > a:focus {
  color: #3b4354;
}
.panel-group .panel-primary > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-primary > .panel-heading .panel-title > a,
.panel-group .panel-primary > .panel-heading .panel-title > a:hover,
.panel-group .panel-primary > .panel-heading .panel-title > a:focus {
  color: #2574ab;
}
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed {
  background-color: #2574ab;
}
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-primary > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #206696;
}
.panel-group .panel-primary + .panel {
  border-color: #2b88c8;
}
.panel-group .panel-success > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-success > .panel-heading .panel-title > a,
.panel-group .panel-success > .panel-heading .panel-title > a:hover,
.panel-group .panel-success > .panel-heading .panel-title > a:focus {
  color: #259DAB;
}
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed {
  background-color: #259DAB;
}
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-success > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #208a96;
}
.panel-group .panel-success + .panel {
  border-color: #2bb8c8;
}
.panel-group .panel-warning > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-warning > .panel-heading .panel-title > a,
.panel-group .panel-warning > .panel-heading .panel-title > a:hover,
.panel-group .panel-warning > .panel-heading .panel-title > a:focus {
  color: #e6ad5c;
}
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed {
  background-color: #e6ad5c;
}
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-warning > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #e3a246;
}
.panel-group .panel-warning + .panel {
  border-color: #ebbd7b;
}
.panel-group .panel-danger > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-danger > .panel-heading .panel-title > a,
.panel-group .panel-danger > .panel-heading .panel-title > a:hover,
.panel-group .panel-danger > .panel-heading .panel-title > a:focus {
  color: #d9534f;
}
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed {
  background-color: #d9534f;
}
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-danger > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #d43f3a;
}
.panel-group .panel-danger + .panel {
  border-color: #df706c;
}
.panel-group .panel-info > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-info > .panel-heading .panel-title > a,
.panel-group .panel-info > .panel-heading .panel-title > a:hover,
.panel-group .panel-info > .panel-heading .panel-title > a:focus {
  color: #5bc0de;
}
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed {
  background-color: #5bc0de;
}
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-info > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #46b8da;
}
.panel-group .panel-info + .panel {
  border-color: #79cbe4;
}
.panel-group .panel-inverse > .panel-heading {
  background-color: transparent;
}
.panel-group .panel-inverse > .panel-heading .panel-title > a,
.panel-group .panel-inverse > .panel-heading .panel-title > a:hover,
.panel-group .panel-inverse > .panel-heading .panel-title > a:focus {
  color: #505b72;
}
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed {
  background-color: #505b72;
}
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:hover,
.panel-group .panel-inverse > .panel-heading .panel-title > a.collapsed:focus {
  background-color: #464f63;
}
.panel-group .panel-inverse + .panel {
  border-color: #5f6b87;
}
/***** PROGRESS BARS *****/
.progress {
  box-shadow: none;
}
.progress-bar {
  box-shadow: none;
}
/***** POPOVER *****/
.popover {
  padding: 0;
}
.popover-title {
  border-bottom: 0;
  padding: 15px 15px 0;
  text-transform: uppercase;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
}
.popover-content {
  padding: 15px;
  line-height: 20px;
}
/***** NAV *****/
@media (max-width: 480px) {
  .nav > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.nav-stacked > li {
  font-weight: 500;
}
.nav-stacked > li.active > a,
.nav-stacked > li.active > a:hover,
.nav-stacked > li.active > a:focus {
  background-color: #259DAB;
}
/***** NAVBAR *****/
.navbar {
  background-color: #fff;
  border-radius: 2px;
}
.navbar-brand {
  padding: 12px 12px;
}
.navbar-brand h3 {
  margin: 0;
  color: #259DAB;
}
.navbar-nav > li > a {
  text-transform: uppercase;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  color: #818da7;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media (min-width: 768px) {
  .navbar-nav > li > a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #505b72;
  background-color: transparent;
}
.navbar-nav > li.active > a {
  color: #259DAB;
}
.navbar-inverse {
  background-color: #262b36;
  border-color: transparent;
}
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
  border-color: transparent;
}
.navbar-inverse .navbar-collapse {
  box-shadow: none;
}
.navbar-inverse .navbar-toggle {
  border-color: transparent;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
  background-color: transparent;
  color: #fff;
}
.navbar-inverse .navbar-nav > li > a {
  color: #657390;
}
.navbar-inverse .navbar-nav > li.active > a,
.navbar-inverse .navbar-nav > li.active > a:hover,
.navbar-inverse .navbar-nav > li.active > a:focus {
  color: #259DAB;
  background-color: transparent;
}
/***** TABS *****/
.nav-tabs {
  background-color: #9fa8bc;
  border-bottom: 0;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.nav-tabs > li {
  margin: 0;
}
.nav-tabs > li > a {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: .2px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin: 0;
  border: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  color: #fff;
  background-color: #909bb1;
  border: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border: 0;
  border-radius: 0;
  background-color: #fff;
  color: #5b6781;
}
.nav-tabs > li.active:first-child > a {
  border-top-left-radius: 2px;
}
.nav-tabs.nav-justified > li > a {
  border: 0;
}
.nav-tabs.nav-justified > .active:last-child > a {
  border-top-right-radius: 2px;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 0;
}
.tab-pane {
  padding: 20px;
  background-color: #fff;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
/***** TABLES *****/
.table {
  border-collapse: separate;
  border-radius: 2px;
}
.table > thead > tr > th,
.table > tfoot > tr > th {
  padding-top: 11px;
  padding-bottom: 11px;
  vertical-align: bottom;
  border-bottom: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  background-color: #d8dce3;
  color: #3b4354;
  font-size: 12px;
}
.table > thead > tr:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.table > thead > tr:first-child > th:first-child {
  border-top-left-radius: 2px;
}
.table > thead > tr:first-child > th:last-child {
  border-top-right-radius: 2px;
}
.table > tfoot > tr:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.table > tfoot > tr:last-child > th:first-child {
  border-bottom-left-radius: 2px;
}
.table > tfoot > tr:last-child > th:last-child {
  border-bottom-right-radius: 2px;
}
.table > tbody > tr:last-child > th:first-child,
.table > tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 2px;
}
.table > tbody > tr:last-child > th:last-child,
.table > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 2px;
}
.table > tfoot + tbody > tr:last-child > th:first-child,
.table > tfoot + tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 0;
}
.table > tfoot + tbody > tr:last-child > th:last-child,
.table > tfoot + tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 0;
}
.table > thead > tr > th .ckbox,
.table > tbody > tr > th .ckbox,
.table > tfoot > tr > th .ckbox,
.table > thead > tr > td .ckbox,
.table > tbody > tr > td .ckbox,
.table > tfoot > tr > td .ckbox {
  margin: 0;
  display: inline-block;
}
.table > thead > tr > th .ckbox span:before,
.table > tbody > tr > th .ckbox span:before,
.table > tfoot > tr > th .ckbox span:before,
.table > thead > tr > td .ckbox span:before,
.table > tbody > tr > td .ckbox span:before,
.table > tfoot > tr > td .ckbox span:before {
  border-color: transparent;
}
.table > thead > tr > th .ckbox input,
.table > tbody > tr > th .ckbox input,
.table > tfoot > tr > th .ckbox input,
.table > thead > tr > td .ckbox input,
.table > tbody > tr > td .ckbox input,
.table > tfoot > tr > td .ckbox input {
  margin-right: 0;
}
.table > thead > tr > th .ckbox input:checked + span:before,
.table > tbody > tr > th .ckbox input:checked + span:before,
.table > tfoot > tr > th .ckbox input:checked + span:before,
.table > thead > tr > td .ckbox input:checked + span:before,
.table > tbody > tr > td .ckbox input:checked + span:before,
.table > tfoot > tr > td .ckbox input:checked + span:before {
  border-color: transparent;
}
.table > thead > tr > th .ckbox input:checked + span:after,
.table > tbody > tr > th .ckbox input:checked + span:after,
.table > tfoot > tr > th .ckbox input:checked + span:after,
.table > thead > tr > td .ckbox input:checked + span:after,
.table > tbody > tr > td .ckbox input:checked + span:after,
.table > tfoot > tr > td .ckbox input:checked + span:after {
  display: block;
}
.table-bordered {
  border: 0;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border-bottom: 0;
  border-right: 0;
}
.table-bordered > thead > tr > th:first-child,
.table-bordered > tbody > tr > th:first-child,
.table-bordered > tfoot > tr > th:first-child,
.table-bordered > thead > tr > td:first-child,
.table-bordered > tbody > tr > td:first-child,
.table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.table-bordered > thead > tr:first-child > th {
  border-top: 0;
}
/***** TYPE *****/
.text-success {
  color: #259DAB;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c7781;
}
.text-info {
  color: #5bc0de;
}
a.text-info:hover,
a.text-info:focus {
  color: #31b0d5;
}
.text-warning {
  color: #e6ad5c;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #df9730;
}
.text-danger {
  color: #d9534f;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #c9302c;
}
.well {
  border: 0;
  box-shadow: none;
}
.close {
  font-weight: 500;
}
/***** MODAL *****/
.modal {
  z-index: 2050;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/***** SELECT2 *****/
.select2-results__option {
  padding: 6px 8px;
  border-radius: 2px;
  margin-bottom: 1px;
}
.select2-container--default .select2-selection--single {
  background-color: #fcfcfd;
  border-color: #bdc3d1;
  border-radius: 2px;
  height: 38px;
  outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #262b36;
  line-height: 36px;
  padding-left: 12px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #9fa8bc;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 30px;
  height: 36px;
  line-height: 36px;
}
.select2-container--default .select2-selection--multiple {
  background-color: #fcfcfd;
  border-color: #bdc3d1;
  border-radius: 2px;
  min-height: 38px;
  outline: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0 4px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 4px;
  margin-right: 4px;
  padding: 4px 10px 4px 5px;
  border-color: transparent;
  border-radius: 2px;
  background-color: #259DAB;
  color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff;
  margin-right: 6px;
  opacity: .75;
  font-size: 12px;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #9fa8bc;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #9fa8bc;
  border-radius: 2px;
  outline: none;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #e7e9ee;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #259DAB;
}
.select2-container--default .select2-results > .select2-results__options {
  margin: 4px;
}
.select2-container--default .select2-search--inline .select2-search__field {
  margin-top: 4px;
  line-height: 25px;
  padding-left: 7px;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #e7e9ee;
}
.select2-container--open .select2-selection--single,
.select2-container--open .select2-selection--multiple {
  background-color: #fff;
  border-color: #9fa8bc;
}
.select2-container--open .select2-dropdown--above {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.select2-container--open .select2-dropdown--below {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.select2-dropdown {
  border-color: #9fa8bc;
  z-index: 200;
}
.select2-search--dropdown {
  padding-bottom: 0;
}
.has-error .select2-selection--single,
.has-error .select2-selection--multiple {
  border-color: #d9534f;
}
/***** TOGGLES *****/
.toggle-wrapper {
  width: 60px;
  display: inline-block;
  margin-right: 5px;
}
.toggle-slide .toggle-on,
.toggle-slide .toggle-off,
.toggle-slide .toggle-slide .toggle-blob {
  text-align: center;
}
.toggle-light .toggle-slide {
  box-shadow: none;
}
.toggle-light .toggle-blob {
  background-color: #fff;
  background-image: none;
  box-shadow: none;
}
.toggle-light .toggle-blob:hover,
.toggle-light .toggle-blob:focus {
  background-color: #fff;
  background-image: none;
}
.toggle-light .toggle-on,
.toggle-light .toggle-off {
  font-size: 11px;
  font-weight: bold;
  text-shadow: none;
  box-shadow: none;
}
.toggle-light .toggle-on {
  background-color: #d0d4e7;
  text-indent: -5px !important;
}
.toggle-light .toggle-on + .toggle-blob {
  border: 3px solid #d0d4e7;
}
.toggle-light .toggle-on.active {
  background-color: #262b36;
}
.toggle-light .toggle-on.active + .toggle-blob {
  border: 3px solid #262b36;
}
.toggle-light .toggle-off {
  color: #fff;
  background-color: #d0d4e7;
  background-image: none;
  text-indent: 5px !important;
}
.toggle-light.primary .toggle-on.active {
  background-color: #2574ab;
}
.toggle-light.primary .toggle-on.active + .toggle-blob {
  border: 3px solid #2574ab;
}
.toggle-light.success .toggle-on.active {
  background-color: #259DAB;
}
.toggle-light.success .toggle-on.active + .toggle-blob {
  border: 3px solid #259DAB;
}
.toggle-light.warning .toggle-on.active {
  background-color: #e6ad5c;
}
.toggle-light.warning .toggle-on.active + .toggle-blob {
  border: 3px solid #e6ad5c;
}
.toggle-light.danger .toggle-on.active {
  background-color: #d9534f;
}
.toggle-light.danger .toggle-on.active + .toggle-blob {
  border: 3px solid #d9534f;
}
.toggle-light.info .toggle-on.active {
  background-color: #5bc0de;
}
.toggle-light.info .toggle-on.active + .toggle-blob {
  border: 3px solid #5bc0de;
}
.toggle-modern .toggle-slide {
  background: none;
  text-shadow: none;
  border-radius: 2px;
  box-shadow: none;
}
.toggle-modern .toggle-blob {
  border-radius: 2px;
  background-color: #fff;
  background-image: none;
  box-shadow: none;
}
.toggle-modern .toggle-blob:hover,
.toggle-modern .toggle-blob:focus {
  background-color: #fff;
  background-image: none;
}
.toggle-modern .toggle-on,
.toggle-modern .toggle-off {
  text-shadow: none;
  font-weight: bold;
  box-shadow: none;
}
.toggle-modern .toggle-on,
.toggle-modern .toggle-on.active {
  background-color: #262b36;
  background-image: none;
}
.toggle-modern .toggle-on {
  background-color: #d0d4e7;
}
.toggle-modern .toggle-on + .toggle-blob {
  border: 3px solid #d0d4e7;
}
.toggle-modern .toggle-on.active {
  background-color: #262b36;
}
.toggle-modern .toggle-on.active + .toggle-blob {
  border: 3px solid #262b36;
}
.toggle-modern .toggle-off,
.toggle-modern .toggle-off.active {
  color: #fff;
  background-color: #d0d4e7;
  background-image: none;
  text-shadow: none;
  text-indent: 8px !important;
}
.toggle-modern.primary .toggle-on.active {
  background-color: #2574ab;
}
.toggle-modern.primary .toggle-on.active + .toggle-blob {
  border: 3px solid #2574ab;
}
.toggle-modern.success .toggle-on.active {
  background-color: #259DAB;
}
.toggle-modern.success .toggle-on.active + .toggle-blob {
  border: 3px solid #259DAB;
}
.toggle-modern.warning .toggle-on.active {
  background-color: #e6ad5c;
}
.toggle-modern.warning .toggle-on.active + .toggle-blob {
  border: 3px solid #e6ad5c;
}
.toggle-modern.danger .toggle-on.active {
  background-color: #d9534f;
}
.toggle-modern.danger .toggle-on.active + .toggle-blob {
  border: 3px solid #d9534f;
}
.toggle-modern.info .toggle-on.active {
  background-color: #5bc0de;
}
.toggle-modern.info .toggle-on.active + .toggle-blob {
  border: 3px solid #5bc0de;
}
/***** DATEPICKER *****/
.ui-widget-header .ui-icon,
.ui-icon,
.ui-widget-content .ui-icon,
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: none !important;
}
.ui-datepicker {
  background-color: #fff;
  border: 1px solid #9fa8bc;
  font-family: inherit;
  font-size: inherit;
  padding: 10px;
  margin: 1px 0 0;
  border-radius: 2px;
  width: auto !important;
}
.ui-datepicker .ui-datepicker-header {
  font-weight: 700;
  text-transform: uppercase;
  color: #696c74;
  padding: 0 0 5px;
  letter-spacing: 1px;
  border: 0;
  background-color: transparent;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  color: #dee1e7;
  top: 1px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  font-family: 'FontAwesome';
  position: absolute;
  top: 2px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  right: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:before {
  content: '\f054';
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  left: 0;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:before {
  content: '\f053';
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev-hover {
  color: #c0c7d2;
  cursor: pointer;
  top: 1px;
  border: 0;
  background-color: transparent;
}
.ui-datepicker .ui-datepicker-title {
  color: #259DAB;
}
.ui-datepicker .ui-datepicker-calendar {
  margin: 0;
  background-color: transparent;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ui-datepicker .ui-datepicker-calendar th {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  color: #82858e;
}
@media (max-width: 320px) {
  .ui-datepicker .ui-datepicker-calendar th {
    padding: 4px 0;
    letter-spacing: normal;
  }
}
.ui-datepicker .ui-datepicker-calendar td {
  border: 1px solid #fff;
  padding: 0;
  background-color: #fcfcfd;
}
.ui-datepicker .ui-datepicker-calendar td:last-child {
  border-right: 0;
}
.ui-datepicker .ui-datepicker-calendar td span,
.ui-datepicker .ui-datepicker-calendar td a {
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  padding: 5px 8px;
  background-color: #f6f7f8;
  color: #696c74;
  padding: 6px 10px;
  display: block;
  font-weight: 400;
  font-size: 12px;
  border: 0;
  border-radius: 1px;
}
.ui-datepicker .ui-datepicker-calendar td a:hover {
  background-color: #d8dce3;
  color: #696c74;
}
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a {
  background-color: #d8dce3;
  color: #696c74;
}
.ui-datepicker-multi .ui-datepicker-group {
  padding-right: 15px;
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group table {
  margin: 0;
}
.ui-datepicker-multi .ui-datepicker-group-last {
  padding-right: 0;
}
.ui-datepicker-inline {
  max-width: 300px;
  border-color: #bdc3d1;
}
/***** TIME PICKER *****/
.ui-timepicker-wrapper {
  min-width: 100px;
  margin-top: -1px;
  border-color: #9fa8bc;
  z-index: 100;
  box-shadow: none;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.ui-timepicker-list {
  margin: 3px;
}
.ui-timepicker-list li {
  padding: 5px 7px;
  border-radius: 2px;
}
.ui-timepicker-list li:hover,
.ui-timepicker-list li:focus {
  background-color: #259DAB;
}
/***** DROPZONE *****/
.dropzone {
  border-style: dashed;
  border-radius: 2px;
  border-color: #d0d4e7;
  background-color: #f6f7f8;
}
.dropzone .dz-message {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  text-transform: uppercase;
  color: #696c74;
  margin-top: 45px;
  opacity: .3;
}
.dropzone .dz-preview .dz-image {
  border-radius: 2px;
  background-color: #d8dce3;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-filter: none;
  filter: none;
  display: none;
}
.dropzone .dz-preview .dz-details,
.dropzone .dz-preview .dz-details .dz-size {
  font-size: 12px;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border-color: transparent;
  border-radius: 2px;
}
.dropzone .dz-preview .dz-error-message {
  border-radius: 2px;
  font-size: 12px;
}
/***** COLORPICKER *****/
.colorpicker.dropdown-menu {
  padding: 5px;
  border-color: #66afe9;
  box-shadow: none;
}
.colorpicker-lg .colorpicker-saturation {
  width: 200px;
  height: 200px;
}
.colorpicker-lg .colorpicker-hue,
.colorpicker-lg .colorpicker-alpha {
  width: 30px;
  height: 200px;
}
.colorpicker-lg .colorpicker-color,
.colorpicker-lg .colorpicker-color div {
  height: 30px;
}
/***** JQUERY STEPS *****/
.wizard {
  margin-bottom: 20px;
}
.wizard > .content {
  min-height: 180px;
  background-color: #fff;
  border-radius: 0;
  margin: 0;
}
.wizard > .content > .body {
  width: 100%;
  height: 100%;
  padding: 20px;
}
.wizard > .content > .body label.error {
  display: inline;
  margin: 3px 0 0;
  font-size: 11px;
  color: #d9534f;
}
.wizard > .content > .body .has-error .form-control {
  border-color: #d9534f;
}
.wizard > .steps > ul > li {
  display: table-cell;
  width: 1%;
  float: none;
}
.wizard > .steps > ul > li > a {
  margin: 0;
  border-radius: 0;
  padding: 14px 25px;
  text-transform: uppercase;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  background-color: #9fa8bc;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  letter-spacing: .2px;
}
.wizard > .steps > ul > li > a:hover,
.wizard > .steps > ul > li > a:focus {
  color: #fff;
  margin: 0;
  border-radius: 0;
  padding: 14px 25px;
  background-color: #909bb1;
}
.wizard > .steps > ul > li:first-child > a {
  border-top-left-radius: 2px;
}
.wizard > .steps > ul > li:last-child > a {
  border-top-right-radius: 2px;
}
.wizard > .steps .number {
  font-size: 12px;
  margin-right: 5px;
}
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:focus,
.wizard > .steps .disabled a:active {
  background-color: #9fa8bc;
  color: rgba(255, 255, 255, 0.8);
}
.wizard > .steps .done a {
  background-color: #505b72;
}
.wizard > .steps .done a:hover,
.wizard > .steps .done a:focus,
.wizard > .steps .done a:active {
  background-color: #464f63;
}
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:focus,
.wizard > .steps .current a:active {
  background-color: #fff;
  color: #5b6781;
}
.wizard > .actions {
  padding: 15px 15px 10px;
  background-color: #f6f7f8;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.wizard > .actions a {
  padding: 10px 12px;
  border-radius: 2px;
  background-color: #2574ab;
  min-width: 100px;
  height: 38px;
  text-align: center;
  letter-spacing: .5px;
}
.wizard > .actions a:hover,
.wizard > .actions a:focus {
  border-radius: 2px;
  padding: 10px 12px;
  background-color: #206696;
}
.wizard > .actions a:active {
  background-color: #1e5d89;
}
.wizard > .actions > ul {
  margin: 0;
  padding: 0;
}
.wizard > .actions > ul > li {
  display: inline-block;
  margin-right: 0;
}
.wizard > .actions > ul > li:last-child a {
  background-color: #259DAB;
}
.wizard > .actions > ul > li:last-child a:hover,
.wizard > .actions > ul > li:last-child a:focus {
  background-color: #208a96;
}
.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:focus {
  background-color: #d8dce3;
  color: #c0c7d2;
}
.wizard.vertical {
  background-color: #9fa8bc;
  border-radius: 2px;
}
.wizard.vertical .content {
  margin: 0;
  width: 70%;
  min-height: 250px;
}
@media (max-width: 639px) {
  .wizard.vertical .content {
    width: 100%;
  }
}
.wizard.vertical > .steps > ul > li {
  display: block;
}
.wizard.vertical > .steps > ul > li > a {
  text-align: left;
}
@media (max-width: 639px) {
  .wizard.vertical > .steps {
    width: 100%;
  }
}
.wizard.vertical .actions {
  margin: 0;
  width: 100%;
}
.wizard.wizard-style2 > .steps {
  counter-reset: ordered;
}
.wizard.wizard-style2 > .steps > ul > li {
  position: relative;
}
@media (max-width: 480px) {
  .wizard.wizard-style2 > .steps > ul > li {
    display: block;
    float: none;
    width: auto;
  }
}
.wizard.wizard-style2 > .steps > ul > li > a {
  text-align: left;
  padding-left: 60px;
  padding-right: 0;
}
.wizard.wizard-style2 > .steps > ul > li > a:before {
  content: counters(ordered, ".", decimal);
  counter-increment: ordered;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #9fa8bc;
  border-radius: 100px;
  font-size: 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  padding-top: 8px;
  line-height: 20px;
}
.wizard.wizard-style2 > .steps > ul > li > a:after {
  border-left: 31px solid #9fa8bc;
  border-top: 31px solid transparent;
  border-bottom: 31px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
  right: -31px;
  top: 50%;
  margin-top: -31px;
  z-index: 50;
}
.wizard.wizard-style2 > .steps > ul > li > a:hover:after,
.wizard.wizard-style2 > .steps > ul > li > a:focus:after {
  border-left-color: #909bb1;
}
.wizard.wizard-style2 > .steps > ul > li > a > small {
  display: block;
  text-transform: none;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.wizard.wizard-style2 > .steps > ul > li + li > a {
  padding-left: 85px;
}
@media (max-width: 480px) {
  .wizard.wizard-style2 > .steps > ul > li + li > a {
    padding-left: 60px;
  }
}
.wizard.wizard-style2 > .steps > ul > li + li > a:before {
  left: 40px;
}
@media (max-width: 639px) {
  .wizard.wizard-style2 > .steps > ul > li + li > a:before {
    left: 15px;
  }
}
.wizard.wizard-style2 > .steps > ul > li:last-child > a:after {
  display: none;
}
.wizard.wizard-style2 > .steps .number {
  display: none;
}
.wizard.wizard-style2 > .steps .done a:before {
  background-color: #fff;
  color: #505b72;
}
.wizard.wizard-style2 > .steps .done a:after {
  border-left-color: #505b72;
}
.wizard.wizard-style2 > .steps .done a:hover:after,
.wizard.wizard-style2 > .steps .done a:focus:after {
  border-left-color: #464f63;
}
.wizard.wizard-style2 > .steps .current a,
.wizard.wizard-style2 > .steps .current a:hover,
.wizard.wizard-style2 > .steps .current a:focus {
  background-color: #fff;
  color: #259DAB;
}
.wizard.wizard-style2 > .steps .current a > small,
.wizard.wizard-style2 > .steps .current a:hover > small,
.wizard.wizard-style2 > .steps .current a:focus > small {
  color: #696c74;
}
.wizard.wizard-style2 > .steps .current a:before,
.wizard.wizard-style2 > .steps .current a:hover:before,
.wizard.wizard-style2 > .steps .current a:focus:before {
  background-color: #259DAB;
  color: #fff;
}
.wizard.wizard-style2 > .steps .current a:after,
.wizard.wizard-style2 > .steps .current a:hover:after,
.wizard.wizard-style2 > .steps .current a:focus:after {
  border-left-color: #fff;
}
.wizard.wizard-style2 > .steps .disabled a:after,
.wizard.wizard-style2 > .steps .disabled a:hover:after,
.wizard.wizard-style2 > .steps .disabled a:focus:after {
  border-left-color: #9fa8bc;
}
.wizard.wizard-style2.vertical > .steps > ul > li + li > a {
  padding-left: 60px;
}
.wizard.wizard-style2.vertical > .steps > ul > li + li > a:before {
  left: 15px;
}
.wizard.wizard-style2.vertical > .steps > ul > li + li > a:after {
  display: none;
}
.wizard.wizard-style2.vertical > .steps > ul > li:last-child > a {
  border-top-right-radius: 0;
}
.wizard.wizard-style2.vertical > .steps .current a:after,
.wizard.wizard-style2.vertical > .steps .done a:after {
  display: none;
}
/***** WYSIHTML5 *****/
ul.wysihtml5-toolbar a.btn.wysihtml5-command-active {
  background-color: #dbdfe6;
  box-shadow: none;
}
.note-editor {
  border-color: #bdc3d1;
  border-radius: 2px;
}
.note-editor .note-toolbar {
  border-bottom-color: #bdc3d1;
}
.note-editor .note-toolbar.btn-toolbar {
  margin-left: 0;
}
.note-editor .note-statusbar .note-resizebar {
  border-top-color: #bdc3d1;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
/***** JQUERY.GRITTER *****/
.gritter-top,
.gritter-bottom {
  display: none;
}
.gritter-item {
  position: relative;
  background-image: none;
  background-color: rgba(17, 19, 24, 0.95);
  border-radius: 2px;
  padding: 15px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.42857143;
  color: rgba(255, 255, 255, 0.65);
  z-index: 3000;
}
.gritter-item a:hover {
  text-decoration: underline;
}
.gritter-title {
  font-weight: 700;
  text-shadow: none;
  text-transform: uppercase;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  letter-spacing: .5px;
  font-size: 12px;
  color: #fff;
}
.gritter-close {
  left: auto;
  right: 3px;
  background: none;
}
.gritter-close:before {
  text-indent: 0;
  content: '\f00d';
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  right: 7px;
  color: #fff;
  font-size: 16px;
  opacity: .3;
}
.gritter-item-wrapper.with-icon > .gritter-item {
  padding-left: 60px;
  position: relative;
}
.gritter-item-wrapper.with-icon > .gritter-item:before {
  color: #fff;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 28px;
  font-family: 'FontAwesome';
}
.gritter-item-wrapper.primary > .gritter-item {
  background-color: rgba(37, 116, 171, 0.9);
}
.gritter-item-wrapper.success > .gritter-item {
  background-color: rgba(37, 157, 171, 0.9);
}
.gritter-item-wrapper.warning > .gritter-item {
  background-color: rgba(230, 173, 92, 0.9);
}
.gritter-item-wrapper.danger > .gritter-item {
  background-color: rgba(217, 83, 79, 0.9);
}
.gritter-item-wrapper.info > .gritter-item {
  background-color: rgba(91, 192, 222, 0.9);
}
.gritter-item-wrapper.with-icon.send-o > .gritter-item:before {
  content: '\f1d9';
}
.gritter-item-wrapper.with-icon.question-circle > .gritter-item:before {
  content: '\f059';
}
.gritter-item-wrapper.with-icon.check-circle > .gritter-item:before {
  content: '\f058';
}
.gritter-item-wrapper.with-icon.exclamation-circle > .gritter-item:before {
  content: '\f06a';
}
.gritter-item-wrapper.with-icon.times-circle > .gritter-item:before {
  content: '\f057';
}
/***** JQUERY UI SLIDER *****/
.ui-slider {
  background-color: #d8dce3;
  border-radius: 50px;
  border: 0;
}
.ui-slider .ui-slider-handle {
  background-color: #fff;
  border: 2px solid #909bb1;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  top: -6px;
  cursor: pointer;
  outline: none;
}
.ui-slider .ui-slider-handle:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #909bb1;
  top: 3px;
  left: 3px;
  border-radius: 50px;
}
.ui-slider .ui-slider-range {
  border-radius: 50px;
  background-color: #909bb1;
}
.ui-slider-horizontal {
  height: 6px;
  margin: 15px 0;
}
.slider-primary .ui-slider-range {
  background-color: #2574ab;
}
.slider-primary .ui-slider-handle {
  border-color: #2574ab;
}
.slider-primary .ui-slider-handle:after {
  background-color: #2574ab;
}
.slider-success .ui-slider-range {
  background-color: #259DAB;
}
.slider-success .ui-slider-handle {
  border-color: #259DAB;
}
.slider-success .ui-slider-handle:after {
  background-color: #259DAB;
}
.slider-warning .ui-slider-range {
  background-color: #e6ad5c;
}
.slider-warning .ui-slider-handle {
  border-color: #e6ad5c;
}
.slider-warning .ui-slider-handle:after {
  background-color: #e6ad5c;
}
.slider-danger .ui-slider-range {
  background-color: #d9534f;
}
.slider-danger .ui-slider-handle {
  border-color: #d9534f;
}
.slider-danger .ui-slider-handle:after {
  background-color: #d9534f;
}
.slider-info .ui-slider-range {
  background-color: #5bc0de;
}
.slider-info .ui-slider-handle {
  border-color: #5bc0de;
}
.slider-info .ui-slider-handle:after {
  background-color: #5bc0de;
}
.ui-slider-vertical {
  width: 6px;
  display: inline-block;
}
.ui-slider-vertical .ui-slider-handle {
  top: auto;
  left: -6px;
}
/***** DATA TABLES *****/
.table.dataTable {
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}
.table.dataTable thead .sorting:after,
.table.dataTable thead .sorting_asc:after,
.table.dataTable thead .sorting_desc:after {
  top: 12px;
  font-size: 12px;
  font-weight: normal;
}
.table.dataTable td.details-control {
  cursor: pointer;
}
.table.dataTable td.details-control:before {
  font-family: 'FontAwesome';
  content: '\f105';
  display: block;
  text-align: center;
}
.table.dataTable tr.shown td.details-control:before {
  content: '\f107';
}
.table.dataTable tr.shown + tr > td {
  padding: 20px;
  background-color: #edeff2;
}
.table.dataTable tr.shown + tr > td h4 {
  margin: 0 0 15px;
}
.table.dataTable tr.shown + tr > td h4 > small {
  display: block;
  font-size: 12px;
  text-transform: none;
  margin-top: 5px;
  color: #82858e;
}
.dataTables_length label {
  margin-bottom: 20px;
}
.dataTables_filter label {
  margin-bottom: 20px;
}
.dataTables_filter .form-control {
  font-size: inherit;
  height: 38px;
  padding: 10px 12px;
}
.dataTables_paginate .pagination > .paginate_button > a {
  padding-left: 14px;
  padding-right: 14px;
}
.dataTables_paginate .pagination > .paginate_button.next,
.dataTables_paginate .pagination > .paginate_button.previous {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
/***** SUMMERNOTE *****/
.note-toolbar {
  padding-left: 0;
}
/***** MAP *****/
.gm-style-mtc > div {
  box-shadow: none !important;
}
/***** MORRIS CHART *****/
.morris-hover.morris-default-style {
  border: 0;
  border-radius: 2px;
}
@media (min-width: 992px) {
  body {
    overflow: visible !important;
  }
}
a:hover,
a:focus {
  outline: none;
}
code {
  background-color: transparent;
  padding: 0;
}
p code {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2px;
}
label {
  font-weight: normal;
}
hr {
  margin: 20px 0;
  border-color: #dbdfe6;
}
hr.darken {
  border-color: #c3c9d5;
}
hr.hr15 {
  margin: 15px 0 !important;
}
hr.fadeout {
  border-color: #fff;
  opacity: .1;
}
blockquote {
  color: #464f63;
  font-weight: 400;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
/* Header Panel */
.headerpanel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #262b36;
  z-index: 2000;
}
.headerpanel .logopanel {
  position: absolute;
  left: -220px;
  width: 220px;
  height: 64px;
  padding: 18px 15px;
  background-color: #20242d;
}
.headerpanel .logopanel h2 {
  margin: 0;
  font-weight: 500;
}
.headerpanel .logopanel h2 > a {
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.headerpanel .logopanel h2 > a:hover {
  color: #31c1d2;
}
@media (min-width: 992px) {
  .headerpanel .logopanel {
    left: 0 !important;
  }
}
.headerbar {
  position: relative;
  padding-left: 64px;
}
@media (min-width: 992px) {
  .headerbar {
    margin-left: 220px;
    left: 0 !important;
  }
}
.menutoggle {
  position: absolute;
  width: 64px;
  height: 64px;
  top: 0;
  left: 0;
  font-size: 21px;
  cursor: pointer;
  color: #778395;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.menutoggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -11px;
  margin-left: -10px;
}
.menutoggle:hover,
.menutoggle:focus {
  color: #9fa8bc;
}
.searchpanel {
  position: absolute;
  top: 0;
  left: 64px;
  width: 230px;
}
@media (max-width: 480px) {
  .searchpanel {
    display: none;
  }
}
.searchpanel .input-group {
  margin-top: 12px;
}
.searchpanel .input-group .form-control {
  border: 0;
  color: #fff;
  background-color: #3b4354;
}
.searchpanel .input-group .btn {
  border: 0;
  background-color: #3b4354;
  font-size: 14px;
  color: #fff;
  padding-top: 7px;
  line-height: normal;
  padding-left: 15px;
  padding-right: 17px;
}
.header-right {
  float: right;
  padding-right: 20px;
}
.headermenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.headermenu .dropdown-toggle:hover,
.headermenu .dropdown-toggle:focus,
.headermenu .dropdown-toggle:active,
.headermenu .dropdown-toggle.active,
.headermenu .open .dropdown-toggle.dropdown-toggle {
  background-color: #2c323f;
}
.headermenu > li {
  display: inline-block;
  float: left;
  position: relative;
}
.headermenu > li .btn {
  border-radius: 0;
  background-color: transparent;
  color: #778395;
  height: 64px;
  border: 0;
  padding-left: 5px;
  padding-right: 5px;
}
.headermenu > li .btn:hover,
.headermenu > li .btn:focus {
  color: #9fa8bc;
}
.headermenu > li .btn:active {
  box-shadow: none;
}
.headermenu > li .alert-notice .fa {
  position: relative;
}
.headermenu > li .alert-notice .fa:after {
  position: absolute;
  content: '';
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background-color: #ff564e;
  border-radius: 50px;
  opacity: .75;
}
.headermenu > li > .btn-group {
  margin-bottom: 0;
}
.headermenu > li > .btn-group > .btn-notice {
  font-size: 21px;
}
.headermenu > li > .btn-group > .btn-notice + .dropdown-menu {
  min-width: 350px;
}
@media (max-width: 480px) {
  .headermenu > li > .btn-group > .btn-notice + .dropdown-menu {
    min-width: 0;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    bottom: 0;
    border: 0;
    overflow: auto;
  }
  .headermenu > li > .btn-group > .btn-notice + .dropdown-menu:after {
    display: none;
  }
}
.headermenu > li > .btn-group > .btn-logged {
  padding: 5px 12px 3px;
  border: 0;
}
.headermenu > li > .btn-group > .btn-logged img {
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  border-radius: 50px;
}
.headermenu > li > .btn-group > .btn-logged .caret {
  margin-left: 5px;
  margin-top: -2px;
}
.headermenu > li > .btn-group > .btn-logged + .dropdown-menu {
  min-width: 180px;
}
.headermenu > li > .btn-group > .btn-logged + .dropdown-menu > li > a {
  padding: 8px 10px;
  color: #505b72;
}
.headermenu > li > .btn-group > .btn-logged + .dropdown-menu > li > a:hover,
.headermenu > li > .btn-group > .btn-logged + .dropdown-menu > li > a:focus {
  background-color: #262b36;
  color: #9fa8bc;
}
.headermenu > li > .btn-group > .btn-logged + .dropdown-menu > li > a > i {
  width: 16px;
  margin-right: 5px;
}
.headermenu > li .btn-chat {
  font-size: 21px;
}
.headermenu .dropdown-menu {
  border-color: rgba(38, 43, 54, 0.1);
  border-top: 0;
  margin-top: 0;
  margin-right: -8px;
  padding: 5px;
  background-color: #fff;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  box-shadow: none;
}
.headermenu .dropdown-menu:after {
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  display: inline-block;
  right: 17px;
  position: absolute;
  top: -7px;
}
.headermenu .dropdown-menu .title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  margin: 0 0 5px;
  padding: 10px;
  letter-spacing: .5px;
}
.headermenu .dropdown-menu > li > a {
  font-size: 12px;
  border-radius: 2px;
}
.headermenu .dropdown-menu .list-group {
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -5px;
}
.headermenu .dropdown-menu .list-group > .list-group-item {
  border-left: 0;
  border-right: 0;
}
.headermenu .dropdown-menu .list-group > .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.headermenu .dropdown-menu .list-group > .list-group-item:last-child {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  border-bottom: 0;
}
.headermenu .dm-notice {
  padding: 5px 20px 10px;
}
@media (max-width: 480px) {
  .headermenu .dm-notice {
    padding: 0;
    margin-right: 0;
  }
}
.headermenu .dm-notice .nav-tabs {
  background-color: transparent;
}
.headermenu .dm-notice .nav-tabs > li > a {
  font-size: 12px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .5px;
  border-radius: 0;
  border-width: 0;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid #dbdfe6;
  color: #3b4354;
  cursor: pointer;
}
@media (max-width: 480px) {
  .headermenu .dm-notice .nav-tabs > li > a {
    font-size: 11px;
  }
}
.headermenu .dm-notice .nav-tabs > li > a:hover,
.headermenu .dm-notice .nav-tabs > li > a:focus {
  background-color: transparent;
  color: #262b36;
}
.headermenu .dm-notice .nav-tabs > li.active > a,
.headermenu .dm-notice .nav-tabs > li.active > a:hover,
.headermenu .dm-notice .nav-tabs > li.active > a:focus {
  color: #259DAB;
  border: 0;
  border-bottom: 1px solid #259DAB;
  background-color: transparent;
}
@media (max-width: 767px) {
  .headermenu .dm-notice .nav-tabs {
    display: table;
  }
  .headermenu .dm-notice .nav-tabs > li {
    display: table-cell;
  }
  .headermenu .dm-notice .nav-tabs > li > a {
    margin: 0;
  }
}
.headermenu .dm-notice .tab-pane {
  padding: 20px 0 10px;
}
@media (max-width: 480px) {
  .headermenu .dm-notice .tab-pane {
    padding: 10px;
  }
}
.headermenu .dm-notice .tab-pane .panel-title {
  margin: 15px 0 0;
  padding: 7px 0;
  letter-spacing: .5px;
  background-color: #dbdfe6;
  color: #909bb1;
  text-align: center;
  border-radius: 2px;
  font-size: 11px;
}
.headermenu .dm-notice .tab-pane .btn-more {
  text-align: center;
  display: block;
  background-color: #259DAB;
  color: #fff;
  padding: 6px 0;
  border-radius: 2px;
  letter-spacing: .5px;
  margin-top: 10px;
}
.headermenu .dm-notice .tab-pane .btn-more:hover,
.headermenu .dm-notice .tab-pane .btn-more:focus {
  background-color: #2395a3;
}
.headermenu .dm-notice .tab-pane .btn-more > i {
  font-size: 14px;
  line-height: 0;
  margin-left: 3px;
  vertical-align: middle;
}
.headermenu .dm-notice .list-group {
  margin: 5px 0;
}
.headermenu .dm-notice .list-group .list-group-item {
  padding-left: 0;
  padding-right: 0;
  border-color: #dbdfe6;
}
.headermenu .dm-notice .list-group .list-group-item h4,
.headermenu .dm-notice .list-group .list-group-item p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.headermenu .dm-notice .list-group .list-group-item h4 {
  color: #262b36;
  font-size: 14px;
}
.headermenu .dm-notice .list-group .list-group-item p {
  font-size: 11px;
  letter-spacing: .5px;
  color: #818da7;
}
.headermenu .dm-notice .list-group .list-group-item h5 {
  margin: 0;
  font-weight: 700;
  font-size: 12px;
}
.headermenu .dm-notice .list-group .list-group-item small {
  font-size: 11px;
  display: block;
  margin: 2px 0 0;
}
.headermenu .dm-notice .list-group .list-group-item:first-child {
  border-top: 0;
}
.headermenu .dm-notice .list-group .list-group-item:last-child {
  padding-bottom: 0;
}
.headermenu .dm-notice .notice-list {
  margin: 0 0 20px;
}
.headermenu .dm-notice .notice-list .list-group-item h5 > a {
  color: #464f63;
  font-weight: 700;
  font-size: 12px;
}
.headermenu .dm-notice .notice-list .list-group-item h5 > a:hover,
.headermenu .dm-notice .notice-list .list-group-item h5 > a:focus {
  color: #262b36;
}
.headermenu .dm-notice .notice-list .list-group-item h5 + small {
  color: #aeb6c6;
  display: block;
}
.headermenu .dm-notice .notice-list .list-group-item span {
  margin-top: 5px;
  display: block;
}
.headermenu .dm-notice .notice-list .list-group-item .fa {
  color: #818da7;
  border: 1px solid #818da7;
  padding: 9px;
  vertical-align: middle;
  font-size: 14px;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  text-align: center;
  opacity: .75;
}
.headermenu .dm-notice .notice-list .list-group-item:first-child {
  padding-top: 0;
}
.headermenu .dm-notice .notice-list .list-group-item:last-child {
  padding-bottom: 0;
}
.headermenu .dm-notice .notice-list .list-group-item.unread .fa {
  color: #259DAB;
  border-color: #259DAB;
}
.headermenu .dm-notice .notice-list .list-group-item.unread h5 > a {
  color: #259DAB;
}
.headermenu .dm-notice .notice-list .list-group-item.unread h5 > a:hover,
.headermenu .dm-notice .notice-list .list-group-item.unread h5 > a:focus {
  color: #505b72;
}
.today-day {
  margin: 0;
  font-weight: 400;
  color: #3b4354;
}
.today-date {
  margin-top: 8px;
  color: #5b6781;
  font-weight: 500;
}
.today-weather {
  margin: 20px 0 5px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  color: #262b36;
}
.today-weather + p {
  font-size: 11px;
}
.today-weather > i {
  color: #657390;
  margin-right: 5px;
}
/************ LEFT PANEL ***********/
.leftpanel {
  background-color: #fff;
  width: 220px;
  position: fixed;
  top: 64px;
  bottom: 0;
  left: -220px;
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
}
.leftpanel .tab-pane {
  padding: 0;
  background-color: transparent;
}
.leftpanel .media-list-contacts .media {
  border-color: #eaecf0;
}
@media (min-width: 992px) {
  .leftpanel {
    left: 0 !important;
  }
}
/***** LEFTPANEL PROFILE *****/
.leftpanel-profile {
  padding: 15px;
  background-color: #3b4354;
}
.leftpanel-profile .media-object {
  width: 48px;
  padding: 3px;
  border: 2px solid #657390;
}
.leftpanel-profile .media-left {
  padding-right: 15px;
}
.leftpanel-profile .media-heading {
  margin: 7px 0 2px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
}
.leftpanel-profile .media-heading > a {
  color: rgba(255, 255, 255, 0.5);
}
.leftpanel-profile .media-heading > a:hover,
.leftpanel-profile .media-heading > a:focus {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}
.leftpanel-profile .media-body {
  color: rgba(255, 255, 255, 0.5);
}
.leftpanel-userinfo {
  background-color: #464f63;
  padding-top: 10px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.leftpanel-userinfo .sidebar-title {
  margin-top: 0;
}
.leftpanel-userinfo address {
  color: rgba(255, 255, 255, 0.9);
  padding: 0 15px;
  margin-bottom: 20px;
}
.leftpanel-userinfo .list-group-item {
  border-left: 0;
  border-right: 0;
  border-color: #4c566c;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
}
.leftpanel-userinfo .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.leftpanel-userinfo .list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.leftpanel-userinfo .list-group-item label {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
}
.leftpanel-userinfo .list-group-item:before,
.leftpanel-userinfo .list-group-item:after {
  content: " ";
  display: table;
}
.leftpanel-userinfo .list-group-item:after {
  clear: both;
}
.leftpanel-userinfo .list-group-item:before,
.leftpanel-userinfo .list-group-item:after {
  content: " ";
  display: table;
}
.leftpanel-userinfo .list-group-item:after {
  clear: both;
}
.leftpanel-userinfo .list-group-item .social-icons a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 5px;
  font-size: 14px;
  line-height: 0;
}
.leftpanel-userinfo .list-group-item .social-icons a > i {
  line-height: 0;
}
.leftpanel-userinfo .list-group-item .social-icons a:hover,
.leftpanel-userinfo .list-group-item .social-icons a:focus {
  color: #fff;
}
/***** LEFT NAVIGATION *****/
.nav-quirk {
  margin: 0 0 30px;
  background-color: #fff;
}
.nav-quirk > li {
  border-top: 1px solid #eaecf0;
  text-transform: uppercase;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
}
.nav-quirk > li > a {
  color: #505b72;
  padding: 12px 14px;
  border-radius: 0;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-quirk > li > a .badge {
  background-color: transparent;
  color: #9fa8bc;
  font-size: 12px;
  text-transform: none;
  padding: 0;
  font-weight: normal;
  margin-top: 3px;
  margin-right: 2px;
}
.nav-quirk > li > a > i {
  width: 16px;
  font-size: 14px;
  text-align: center;
  margin-right: 7px;
  color: #259DAB;
  vertical-align: top;
  margin-top: 1.5555px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-quirk > li > a:hover,
.nav-quirk > li > a:focus {
  color: #262b36;
  background-color: #ffffff;
}
.nav-quirk > li + li {
  margin: 0;
}
.nav-quirk > li:last-child {
  border-bottom: 1px solid #eaecf0;
}
.nav-quirk > li.nav-parent > a {
  position: relative;
}
.nav-quirk > li.nav-parent > a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-size: 16px;
  font-weight: 400;
  color: #bdc3d1;
  position: absolute;
  top: 10px;
  right: 15px;
}
.nav-quirk > li.nav-active > ul {
  display: block;
}
.nav-quirk > li.active {
  border-top-color: transparent;
}
.nav-quirk > li.active + li {
  border-top-width: 0;
}
.nav-quirk > li.active > a {
  color: #fff;
  background-color: #259DAB;
  background-image: -webkit-linear-gradient(left, #259DAB 0%, #2574ab 100%);
  background-image: linear-gradient(to right, #259DAB 0%, #2574ab 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff259dab', endColorstr='#ff2574ab', GradientType=1);
}
.nav-quirk > li.active > a .badge {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.nav-quirk > li.active > a > i {
  color: #fff;
}
.nav-quirk > li.active > a:after {
  color: #fff;
}
.nav-quirk > li.active .children {
  display: block;
  border-top: 0;
  border-bottom: 1px solid #eaecf0;
}
.nav-quirk > li.active .children:before {
  border-top: 7px solid #259DAB;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: "";
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 0;
}
.nav-quirk .children {
  list-style: none;
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  border-top: 1px solid #eaecf0;
  background-color: #f6f7f8;
}
.nav-quirk .children > li {
  margin-left: 21px;
  border-left: 1px solid #dbdfe6;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  letter-spacing: normal;
  display: block;
  font-size: 12px;
}
.nav-quirk .children > li:first-child {
  padding-top: 7px;
}
.nav-quirk .children > li:last-child {
  padding-bottom: 7px;
}
.nav-quirk .children > li > a {
  display: block;
  font-weight: 400;
  padding: 5px 0 5px 18px;
  color: #657390;
  position: relative;
  height: 28px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-quirk .children > li > a:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  left: -3px;
  top: 50%;
  background-color: #9fa8bc;
  margin-top: -3px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-quirk .children > li > a:after {
  content: '';
  width: 30px;
  height: 30px;
  border: 1px solid #a0a8b9;
  position: absolute;
  left: -15px;
  top: 50%;
  margin-top: -15px;
  border-radius: 50px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.nav-quirk .children > li > a:hover,
.nav-quirk .children > li > a:focus,
.nav-quirk .children > li > a:active {
  text-decoration: none;
  color: #464f63;
}
.nav-quirk .children > li > a:hover:before,
.nav-quirk .children > li > a:focus:before,
.nav-quirk .children > li > a:active:before {
  background-color: #657390;
}
.nav-quirk .children > li > a:hover:after,
.nav-quirk .children > li > a:focus:after,
.nav-quirk .children > li > a:active:after {
  opacity: 1;
  border-color: #657390;
  width: 11px;
  height: 11px;
  left: -6px;
  margin-top: -6px;
}
.nav-quirk .children > li.active > a {
  color: #259DAB;
}
.nav-quirk .children > li.active > a:before {
  background-color: #259DAB;
}
.nav-quirk .children > li.active > a:after {
  opacity: 1;
  border-color: #259DAB;
  width: 11px;
  height: 11px;
  left: -6px;
  margin-top: -6px;
}
/***** LEFT NAVIGATION STACKED STYLE VARIANT *****/
.nav-quirk-stacked > li:first-child {
  border-top: 1px solid #eaecf0;
}
.nav-quirk-stacked > li > a {
  padding: 12px 0;
  letter-spacing: .5px;
  color: #464f63;
}
.nav-quirk-stacked > li > a:hover,
.nav-quirk-stacked > li > a:focus {
  color: #262b36;
}
.nav-quirk-stacked > li > a:hover > i,
.nav-quirk-stacked > li > a:focus > i {
  color: #262b36;
}
.nav-quirk-stacked > li.nav-parent > a:after {
  top: 9px;
  right: 5px;
}
.nav-quirk-stacked > li.active {
  border-top-color: #eaecf0;
}
.nav-quirk-stacked > li.active + li {
  border-top-width: 1px;
}
.nav-quirk-stacked > li.active > a,
.nav-quirk-stacked > li.active > a:hover,
.nav-quirk-stacked > li.active > a:focus {
  background-color: transparent;
  background-image: none;
  color: #259DAB;
}
.nav-quirk-stacked > li.active > a > i,
.nav-quirk-stacked > li.active > a:hover > i,
.nav-quirk-stacked > li.active > a:focus > i {
  color: #259DAB;
}
.nav-quirk-stacked > li.active .children {
  border-bottom: 0;
  border-top: 1px solid #eaecf0;
}
.nav-quirk-stacked > li.active .children:before {
  display: none;
}
.nav-quirk-stacked > li.active.nav-parent > a:after {
  color: #259DAB;
}
.nav-quirk-stacked .children {
  background-color: transparent;
}
.nav-quirk-stacked .children > li {
  margin-left: 8px;
  border-left-color: #eaecf0;
}
/***** LEFT NAVIGATION PILL STYLE VARIANT *****/
.nav-quirk-pills > li:last-child {
  border-bottom: 0;
}
.nav-quirk-pills > li > a {
  padding: 10px;
  border-radius: 2px;
}
.nav-quirk-pills > li > a:hover,
.nav-quirk-pills > li > a:focus {
  background-color: #e1e4ea;
}
.nav-quirk-pills > li > a:hover > i,
.nav-quirk-pills > li > a:focus > i {
  color: inherit;
}
.nav-quirk-pills > li + li {
  border-top: 0;
  margin-top: 1px;
}
.nav-quirk-pills > li.nav-parent a:after {
  top: 7px;
  right: 10px;
}
.nav-quirk-pills > li.active .children {
  border-bottom: 0;
}
.nav-quirk-pills > li.active .children:before {
  display: none;
}
.nav-quirk-pills > li .children {
  background-color: transparent;
  border-top: 0;
}
.nav-quirk-pills > li .children > li {
  margin-left: 18px;
  border-left: 0;
}
.nav-quirk-pills > li .children > li:first-child {
  padding-top: 0;
}
.nav-quirk-pills > li .children > li:last-child {
  padding-bottom: 0;
}
.nav-quirk-pills > li .children > li > a:after {
  top: 50%;
}
/***** NAV MAIL *****/
.nav-mail > li > a .badge {
  color: #d9534f;
}
.nav-mail > li > a > i {
  color: #909bb1;
}
.nav-label > li {
  text-transform: none;
}
.nav-label > li > a {
  font-weight: normal;
}
.nav-label > li > a > i.primary {
  color: #2574ab;
}
.nav-label > li > a > i.success {
  color: #259DAB;
}
.nav-label > li > a > i.warning {
  color: #e6ad5c;
}
.nav-label > li > a > i.danger {
  color: #d9534f;
}
/***** LEFTPANEL CONTACT *****/
.input-search-contact {
  padding: 0;
  margin-bottom: 20px;
  margin-top: -15px;
}
.input-search-contact input {
  border: 0;
  padding-left: 15px;
  border-bottom: 1px solid #eaecf0;
  border-radius: 0;
  background-color: transparent;
}
.input-search-contact input:focus {
  border-color: #eaecf0;
}
.input-search-contact > .input-group-btn > .btn {
  border: 0;
  border-bottom: 1px solid #eaecf0;
  background-color: transparent;
  border-radius: 0;
  font-size: 14px;
  line-height: 0;
  padding-top: 6px;
  color: #818da7;
}
/***** LEFTPANEL SETTINGS *****/
.list-group-settings > .list-group-item {
  border-color: #eaecf0;
}
.sidebar {
  position: absolute;
  top: 64px;
  bottom: 0;
  padding: 15px;
}
.sidebar.left {
  left: 0;
}
.sidebar.right {
  right: 0;
}
.sidebar.email {
  width: 220px;
  background-color: #fff;
}
.sidebar-title {
  text-transform: uppercase;
  font-size: 11px;
  color: #9fa8bc;
  line-height: normal;
  padding: 0 15px;
  font-weight: 500;
  letter-spacing: .5px;
}
.nav-sidebar.nav-justified {
  background-color: #657390;
  margin-bottom: 20px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.nav-sidebar.nav-justified > li > a {
  border-radius: 0;
  background-color: #505b72;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  vertical-align: bottom;
}
.nav-sidebar.nav-justified > li > a:hover,
.nav-sidebar.nav-justified > li > a:focus {
  cursor: pointer;
  background-color: #464f63;
}
.nav-sidebar.nav-justified > li > a i {
  position: relative;
}
.nav-sidebar.nav-justified > li:first-child > a {
  border-left: 0;
}
.nav-sidebar.nav-justified > li + li > a {
  margin-left: 1px;
}
.nav-sidebar.nav-justified > li.unread > a > i:after {
  content: '';
  position: absolute;
  top: -2px;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #d9534f;
  opacity: .9;
}
.nav-sidebar.nav-justified > .active:first-child > a {
  border-top-left-radius: 0;
}
.nav-sidebar.nav-justified > .active > a,
.nav-sidebar.nav-justified > .active > a:hover,
.nav-sidebar.nav-justified > .active > a:focus {
  background-color: #fff;
  color: #262b36;
}
@media (max-width: 767px) {
  .nav-sidebar.nav-justified {
    display: table;
  }
  .nav-sidebar.nav-justified > li {
    display: table-cell;
  }
  .nav-sidebar.nav-justified > li > a {
    margin: 0;
  }
}
.sidebar-btn-wrapper {
  margin: 0 15px 20px;
}
/***** CONTACT LIST *****/
.media-list-contacts {
  margin-bottom: 0;
}
.media-list-contacts .media {
  border-top: 1px solid #eaecf0;
}
.media-list-contacts .media .media-left {
  padding-right: 15px;
}
.media-list-contacts .media .media-object {
  width: 40px;
  padding: 2px;
  border: 2px solid #eaecf0;
}
.media-list-contacts .media a {
  display: block;
  padding: 10px 15px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.media-list-contacts .media a:hover,
.media-list-contacts .media a:focus {
  background-color: #f3f4f7;
}
.media-list-contacts .media a:hover .media-object,
.media-list-contacts .media a:focus .media-object {
  border-color: #ccd1db;
}
.media-list-contacts .media .media-body {
  padding-top: 2px;
  font-size: 11px;
  color: #9fa8bc;
}
.media-list-contacts .media .media-body i {
  color: #409a32;
}
.media-list-contacts .media .media-body .fa-skype {
  color: #00AFF0;
}
.media-list-contacts .media .media-heading {
  font-size: 12px;
  color: #3b4354;
  margin: 3px 0 2px;
}
.media-list-contacts .media + .media {
  margin-top: 0;
}
.list-group-settings > .list-group-item {
  border-left: 0;
  border-right: 0;
  background-color: transparent;
}
.list-group-settings > .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.list-group-settings > .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.list-group-settings > .list-group-item h5 {
  margin: 0 0 5px;
  font-weight: 500;
}
.list-group-settings > .list-group-item small {
  display: block;
  line-height: normal;
  font-size: 11px;
}
.list-group-settings .toggle-wrapper {
  margin-top: 15px;
}
/********** USER LIST ***********/
.user-list {
  margin-bottom: 0;
}
.user-list .media {
  padding: 12px 0;
}
.user-list .media + .media {
  margin: 0;
  border-top: 1px solid #eaecf0;
}
.user-list .media:first-child {
  padding-top: 0;
}
.user-list .media:last-child {
  padding-bottom: 0;
}
.user-list .media-left {
  padding-right: 10px;
}
.user-list .media-object {
  width: 42px;
  padding: 2px;
  border: 2px solid #dbdfe6;
}
.user-list .media-body .media-heading {
  margin: 2px 0;
}
.user-list .media-body .media-heading > a {
  font-size: 12px;
  font-weight: 700;
  color: #3b4354;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.user-list .media-body .media-heading > a:hover,
.user-list .media-body .media-heading > a:focus {
  color: #259DAB;
}
.user-list .media-body span {
  color: #259DAB;
  font-weight: 500;
}
.user-list .media-body small.date {
  display: block;
  font-size: 11px;
  color: #818da7;
  margin-top: 2px;
}
.user-list .media-body small.date > i {
  vertical-align: baseline;
  margin-right: 2px;
}
.user-list .media-body a {
  font-weight: 500;
}
/***** PROFILE LIST *****/
.panel-profile .media-usermeta {
  margin-top: 4px;
  color: #909bb1;
}
.panel-profile .media-usermeta i {
  display: inline-block;
  margin-right: 5px;
  vertical-align: baseline;
}
.panel-profile .people-info .row {
  margin: 0;
}
.panel-profile .people-info .row + .row {
  margin-top: 1px;
}
.panel-profile .people-info .col-sm-4 {
  padding: 0;
}
.panel-profile .people-info .col-sm-4:first-child > .info-group {
  margin-left: 0;
}
.panel-profile .people-info .social-account-list > i {
  font-size: 28px;
}
.panel-profile .people-info h4 {
  margin: 9px 0 8px;
  font-weight: 500;
  color: #259DAB;
}
.panel-profile .people-info .fa,
.panel-profile .people-info .glyphicon {
  margin-right: 5px;
  vertical-align: baseline;
  font-size: 14px;
  color: #3b4354;
}
.panel-profile .people-info .info-group {
  padding: 15px;
  background-color: #f9fafb;
  margin-left: 1px;
}
.panel-profile .people-info .info-group label {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .5px;
  color: #3b4354;
}
.panel-profile .people-info .info-group .social-account-list {
  padding-top: 2px;
}
.panel-profile .people-info .info-group .social-account-list > i {
  font-size: 28px;
  margin: 4px 2px 0;
  line-height: 17px;
}
.panel-profile .people-info .info-group .social-account-list > i.fa-facebook-official {
  color: #3A5795;
}
.panel-profile .people-info .info-group .social-account-list > i.fa-twitter {
  color: #55ACEE;
}
.panel-profile .people-info .info-group .social-account-list > i.fa-dribbble {
  color: #EA4C89;
}
.panel-profile .people-info .info-group .social-account-list > i.fa-github {
  color: #4078C0;
}
.panel-profile .people-info .info-group .social-account-list > i.fa-linkedin {
  color: #0073B2;
}
.panel-profile .people-info .info-group .social-account-list > i.fa-skype {
  color: #4BB4FF;
}
.panel-profile.list-view .media {
  margin-top: 0;
}
.panel-profile.list-view .media .media-left {
  padding-right: 15px;
}
.panel-profile.list-view .media .media-object {
  width: 48px;
  padding: 2px;
  border: 2px solid #eaecf0;
}
.panel-profile.list-view .media .media-heading {
  margin-top: 5px;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #3b4354;
}
.panel-profile.grid-view .panel-heading {
  position: relative;
}
.panel-profile.grid-view .panel-heading .people-actions {
  position: absolute;
  top: 15px;
  right: 15px;
}
.panel-profile.grid-view .panel-profile-photo {
  display: inline-block;
}
.panel-profile.grid-view .panel-profile-photo img {
  padding: 2px;
  border: 2px solid #dbdfe6;
}
.panel-profile.grid-view .panel-profile-name {
  margin: 20px 0 5px;
  font-size: 16px;
}
.panel-profile.grid-view .info-group {
  margin-left: 0;
  padding: 10px 0;
  background-color: transparent;
  border-top: 1px solid #dbdfe6;
}
.panel-profile.grid-view .info-group.last {
  padding-bottom: 0;
}
.panel-profile.grid-view h4 {
  margin: 5px 0 0;
}
.panel-profile.grid-view .row {
  margin: 0;
}
.panel-profile.grid-view .col-xs-6 {
  padding: 0;
  border-left: 1px solid #dbdfe6;
}
.panel-profile.grid-view .col-xs-6 > .info-group {
  padding-left: 20px;
}
.panel-profile.grid-view .col-xs-6:first-child {
  border-left: 0;
}
.panel-profile.grid-view .col-xs-6:first-child > .info-group {
  padding-left: 0;
}
/***** PROFILE USER *****/
.profile-left-heading {
  padding: 20px;
  background-color: #3b4354;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.profile-left-heading .panel-options > li > a {
  font-size: 14px;
}
.profile-left-heading .profile-photo {
  width: 128px;
  display: block;
  margin: auto;
}
.profile-left-heading .profile-photo img {
  padding: 5px;
  background-color: #262b36;
  border: 2px solid #505b72;
}
.profile-left-heading .profile-name {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
}
.profile-left-heading .profile-designation {
  color: #9fa8bc;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0;
  text-align: center;
}
.profile-left-heading .list-group {
  margin: 20px 0;
}
.profile-left-heading .list-group .list-group-item {
  background-color: transparent;
  border-width: 0 0 1px;
  border-color: #464f63;
  padding-left: 0;
  padding-right: 0;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
}
.profile-left-heading .list-group .list-group-item a {
  float: right;
  color: #5bc0de;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.profile-left-heading .list-group .list-group-item a:hover,
.profile-left-heading .list-group .list-group-item a:focus {
  color: #46b8da;
}
.profile-left-heading .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-width: 1px;
}
.profile-left-heading .list-group .list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.profile-left-body {
  padding: 20px;
  background-color: #464f63;
  color: #9fa8bc;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.profile-left-body .panel-title {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}
.profile-left-body .profile-social > li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 28px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.profile-left-body .profile-social > li a:hover,
.profile-left-body .profile-social > li a:focus {
  color: #fff;
}
.profile-btn-follow {
  margin-top: 20px;
}
/***** POST ITEM *****/
.panel-post-item .panel-heading {
  padding: 15px 20px;
}
.panel-post-item .panel-heading .media-left {
  padding-right: 15px;
}
.panel-post-item .panel-heading .media-object {
  width: 42px;
  padding: 2px;
  border: 2px solid #dbdfe6;
}
.panel-post-item .panel-heading .media-heading {
  font-size: 14px;
  margin: 5px 0 0;
}
.panel-post-item .panel-heading .media-heading span {
  font-weight: normal;
  font-size: 12px;
  color: #696c74;
}
.panel-post-item .panel-heading .media-usermeta {
  margin: 2px 0 0;
  font-size: 11px;
}
.panel-post-item .panel-heading .media-usermeta i {
  vertical-align: top;
  margin-top: 2px;
  color: #aeb6c6;
}
.panel-post-item .panel-body .media-heading {
  font-size: 14px;
  font-weight: 500;
}
.panel-post-item .panel-body .media-heading a {
  color: #259DAB;
}
.panel-post-item .panel-body p + p {
  margin-top: 10px;
}
.panel-post-item .panel-body .photos {
  margin: 0;
}
.panel-post-item .panel-body .photos > div {
  padding: 0;
}
.panel-post-item .panel-body .photos > div img {
  padding: 1px;
}
.panel-post-item .panel-footer {
  padding: 15px 20px;
  border-top: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.panel-post-item .panel-footer .list-inline {
  margin: 0;
}
.panel-post-item .panel-footer .list-inline > li {
  padding: 0 8px;
}
.panel-post-item .panel-footer .list-inline > li:first-child {
  padding-left: 0;
}
.panel-post-item .panel-footer .list-inline > li:last-child {
  padding-right: 0;
}
.panel-post-item .panel-footer .list-inline > li a {
  color: #545b68;
  cursor: pointer;
}
.panel-post-item .panel-footer .list-inline > li a:hover,
.panel-post-item .panel-footer .list-inline > li a:focus {
  color: #3d424c;
}
.panel-post-item .panel-footer .list-inline > li i {
  vertical-align: baseline;
  margin-right: 2px;
}
.panel-post-item .collapse .media-list,
.panel-post-item .collapsing .media-list {
  background-color: #f0f1f4;
  margin: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.panel-post-item .collapse .media-list .media,
.panel-post-item .collapsing .media-list .media {
  border-top: 1px solid #fff;
  padding: 10px 20px 0;
}
.panel-post-item .collapse .media-list .media + .media,
.panel-post-item .collapsing .media-list .media + .media {
  margin-top: 10px;
}
.panel-post-item .collapse .media-list .media:last-child,
.panel-post-item .collapsing .media-list .media:last-child {
  padding-bottom: 10px;
}
.panel-post-item .collapse .media-list .media-left,
.panel-post-item .collapsing .media-list .media-left {
  padding-right: 10px;
}
.panel-post-item .collapse .media-list .media-object,
.panel-post-item .collapsing .media-list .media-object {
  padding: 0;
  border: 0;
  width: 24px;
}
.panel-post-item .collapse .media-list .media-heading,
.panel-post-item .collapsing .media-list .media-heading {
  font-weight: 500;
  font-size: 12px;
  margin: 2px 0 5px;
}
.panel-post-item .collapse .media-list .media-heading small,
.panel-post-item .collapsing .media-list .media-heading small {
  font-size: 11px;
  margin-left: 5px;
  float: right;
  color: #9fa8bc;
}
.panel-post-item .form-control {
  border-color: transparent;
  padding-left: 20px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
/***** NAVIGATION *****/
.nav-dark-quirk {
  background-color: #3b4354;
}
.nav-dark-quirk > li,
.nav-dark-quirk > li:last-child {
  border-color: #464f63;
}
.nav-dark-quirk > li > a {
  color: #818da7;
}
.nav-dark-quirk > li > a:hover,
.nav-dark-quirk > li > a:focus {
  background-color: #313745;
  color: #fff;
}
.nav-quirk-primary > li > a > i {
  color: #2574ab;
}
.nav-quirk-primary > li.active > a,
.nav-quirk-primary > li.active > a:hover,
.nav-quirk-primary > li.active > a:focus {
  color: #fff;
  background-color: #2574ab;
  background-image: none;
}
.nav-quirk-primary > li.active .children:before {
  border-top-color: #2574ab;
}
.nav-quirk-primary .children > li.active > a {
  color: #2574ab;
}
.nav-quirk-primary .children > li.active > a:before {
  background-color: #2574ab;
}
.nav-quirk-primary .children > li.active > a:after {
  border-color: #2574ab;
}
.nav-quirk-success > li > a > i {
  color: #259DAB;
}
.nav-quirk-success > li.active > a,
.nav-quirk-success > li.active > a:hover,
.nav-quirk-success > li.active > a:focus {
  color: #fff;
  background-color: #259DAB;
  background-image: none;
}
.nav-quirk-success > li.active .children:before {
  border-top-color: #259DAB;
}
.nav-quirk-success .children > li.active > a {
  color: #259DAB;
}
.nav-quirk-success .children > li.active > a:before {
  background-color: #259DAB;
}
.nav-quirk-success .children > li.active > a:after {
  border-color: #259DAB;
}
.nav-quirk-warning > li > a > i {
  color: #e6ad5c;
}
.nav-quirk-warning > li.active > a,
.nav-quirk-warning > li.active > a:hover,
.nav-quirk-warning > li.active > a:focus {
  color: #fff;
  background-color: #e6ad5c;
  background-image: none;
}
.nav-quirk-warning > li.active .children:before {
  border-top-color: #e6ad5c;
}
.nav-quirk-warning .children > li.active > a {
  color: #e6ad5c;
}
.nav-quirk-warning .children > li.active > a:before {
  background-color: #e6ad5c;
}
.nav-quirk-warning .children > li.active > a:after {
  border-color: #e6ad5c;
}
.nav-quirk-danger > li > a > i {
  color: #d9534f;
}
.nav-quirk-danger > li.active > a,
.nav-quirk-danger > li.active > a:hover,
.nav-quirk-danger > li.active > a:focus {
  color: #fff;
  background-color: #d9534f;
  background-image: none;
}
.nav-quirk-danger > li.active .children:before {
  border-top-color: #d9534f;
}
.nav-quirk-danger .children > li.active > a {
  color: #d9534f;
}
.nav-quirk-danger .children > li.active > a:before {
  background-color: #d9534f;
}
.nav-quirk-danger .children > li.active > a:after {
  border-color: #d9534f;
}
.nav-quirk-info > li > a > i {
  color: #5bc0de;
}
.nav-quirk-info > li.active > a,
.nav-quirk-info > li.active > a:hover,
.nav-quirk-info > li.active > a:focus {
  color: #fff;
  background-color: #5bc0de;
  background-image: none;
}
.nav-quirk-info > li.active .children:before {
  border-top-color: #5bc0de;
}
.nav-quirk-info .children > li.active > a {
  color: #5bc0de;
}
.nav-quirk-info .children > li.active > a:before {
  background-color: #5bc0de;
}
.nav-quirk-info .children > li.active > a:after {
  border-color: #5bc0de;
}
.nav-dark-primary {
  background-color: #3b4354;
}
.nav-dark-primary > li > a > i {
  color: #2574ab;
}
.nav-dark-primary > li,
.nav-dark-primary > li:last-child {
  border-color: #464f63;
}
.nav-dark-primary > li > a {
  color: #818da7;
}
.nav-dark-primary > li > a:hover,
.nav-dark-primary > li > a:focus {
  background-color: #313745;
  color: #fff;
}
.nav-dark-primary > li.active > a,
.nav-dark-primary > li.active > a:hover,
.nav-dark-primary > li.active > a:focus {
  color: #fff;
  background-color: #2574ab;
  background-image: none;
}
.nav-dark-primary > li.active .children:before {
  border-top-color: #2574ab;
}
.nav-dark-success {
  background-color: #3b4354;
}
.nav-dark-success > li > a > i {
  color: #259DAB;
}
.nav-dark-success > li,
.nav-dark-success > li:last-child {
  border-color: #464f63;
}
.nav-dark-success > li > a {
  color: #818da7;
}
.nav-dark-success > li > a:hover,
.nav-dark-success > li > a:focus {
  background-color: #313745;
  color: #fff;
}
.nav-dark-success > li.active > a,
.nav-dark-success > li.active > a:hover,
.nav-dark-success > li.active > a:focus {
  color: #fff;
  background-color: #259DAB;
  background-image: none;
}
.nav-dark-success > li.active .children:before {
  border-top-color: #259DAB;
}
.nav-dark-warning {
  background-color: #3b4354;
}
.nav-dark-warning > li > a > i {
  color: #e6ad5c;
}
.nav-dark-warning > li,
.nav-dark-warning > li:last-child {
  border-color: #464f63;
}
.nav-dark-warning > li > a {
  color: #818da7;
}
.nav-dark-warning > li > a:hover,
.nav-dark-warning > li > a:focus {
  background-color: #313745;
  color: #fff;
}
.nav-dark-warning > li.active > a,
.nav-dark-warning > li.active > a:hover,
.nav-dark-warning > li.active > a:focus {
  color: #fff;
  background-color: #e6ad5c;
  background-image: none;
}
.nav-dark-warning > li.active .children:before {
  border-top-color: #e6ad5c;
}
.nav-dark-danger {
  background-color: #3b4354;
}
.nav-dark-danger > li > a > i {
  color: #d9534f;
}
.nav-dark-danger > li,
.nav-dark-danger > li:last-child {
  border-color: #464f63;
}
.nav-dark-danger > li > a {
  color: #818da7;
}
.nav-dark-danger > li > a:hover,
.nav-dark-danger > li > a:focus {
  background-color: #313745;
  color: #fff;
}
.nav-dark-danger > li.active > a,
.nav-dark-danger > li.active > a:hover,
.nav-dark-danger > li.active > a:focus {
  color: #fff;
  background-color: #d9534f;
  background-image: none;
}
.nav-dark-danger > li.active .children:before {
  border-top-color: #d9534f;
}
.nav-dark-info {
  background-color: #3b4354;
}
.nav-dark-info > li > a > i {
  color: #5bc0de;
}
.nav-dark-info > li,
.nav-dark-info > li:last-child {
  border-color: #464f63;
}
.nav-dark-info > li > a {
  color: #818da7;
}
.nav-dark-info > li > a:hover,
.nav-dark-info > li > a:focus {
  background-color: #313745;
  color: #fff;
}
.nav-dark-info > li.active > a,
.nav-dark-info > li.active > a:hover,
.nav-dark-info > li.active > a:focus {
  color: #fff;
  background-color: #5bc0de;
  background-image: none;
}
.nav-dark-info > li.active .children:before {
  border-top-color: #5bc0de;
}
/***** PANEL WEATHER *****/
.panel-weather .today-day {
  font-weight: 200;
  font-size: 25px;
  color: #fff;
  margin-top: 0;
}
.panel-weather .today-date {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.6);
}
.panel-weather .today-cloud {
  font-size: 72px;
  text-align: center;
  display: block;
  margin-top: -10px;
}
/***** PANEL PRODUUCT *****/
.panel-product .media-heading {
  font-weight: 500;
}
.panel-product .media-heading > a {
  color: #657390;
}
/***** BLOG ENTRY *****/
.blog-entry .blog-category,
.blog-entry2 .blog-category {
  text-transform: uppercase;
  color: #d9534f;
  font-size: 12px;
  margin: 0 0 5 px;
}
.blog-entry .blog-title,
.blog-entry2 .blog-title {
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
.blog-entry .blog-title > a,
.blog-entry2 .blog-title > a {
  color: #3b4354;
}
.blog-entry .blog-title > a:hover,
.blog-entry2 .blog-title > a:hover,
.blog-entry .blog-title > a:focus,
.blog-entry2 .blog-title > a:focus {
  color: #505b72;
}
.blog-entry .blog-summary,
.blog-entry2 .blog-summary {
  line-height: 18px;
}
.blog-entry {
  margin: 0;
  display: table;
}
.blog-entry > div {
  display: table-cell;
  float: none;
}
.blog-entry > div:first-child {
  background-color: #fff;
  padding: 20px;
  vertical-align: top;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.blog-entry > div:last-child {
  padding: 0;
}
.blog-entry > div:last-child > img {
  width: 100%;
  vertical-align: top;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.blog-entry2 .blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-entry2 .img-responsive {
  width: 100%;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.blog-entry2 .blog-body {
  background-color: #fff;
  padding: 20px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
/***** ROW COLUMNS JOINING WITH EACH OTHER *****/
.row-col-join {
  margin: 0 0 20px;
  display: table;
  width: 100%;
}
.row-col-join > div {
  display: table-cell;
  float: none;
  padding: 0;
}
.row-col-join > div:first-child {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.row-col-join > div:last-child {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.row-col-join > div .panel {
  margin-bottom: 0;
  background-color: transparent;
}
@media (max-width: 559px) {
  .row-col-join > div {
    display: block;
  }
}
/***** DASHBOARD: PANEL ANNOUNCEMENTS *****/
.panel-announcement {
  background-color: #fff;
  margin-bottom: 20px;
}
.panel-announcement .panel-heading {
  padding-bottom: 5px;
}
.panel-announcement .panel-title {
  color: #d9534f;
}
.panel-announcement .panel-body h2 {
  margin: 0 0 10px;
  font-weight: 500;
  line-height: 24px;
  font-size: 18px;
  letter-spacing: normal;
}
.panel-announcement .panel-body h4 {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  color: rgba(38, 43, 54, 0.7);
  line-height: 20px;
}
.panel-announcement .panel-body h4 > a {
  color: #259DAB;
}
.panel-announcement .panel-body h4 > a:hover,
.panel-announcement .panel-body h4 > a:focus {
  color: #31c1d2;
}
.list-announcement .panel-body {
  padding: 0;
}
.list-announcement .panel-body ul {
  margin-bottom: 0;
}
.list-announcement .panel-body ul > li {
  padding: 10px 20px;
  border-bottom: 1px solid #eaecf0;
  letter-spacing: normal;
}
.list-announcement .panel-body ul > li a {
  color: #262b36;
  font-weight: 500;
}
.list-announcement .panel-body ul > li small {
  margin-top: 4px;
  display: block;
  color: rgba(38, 43, 54, 0.45);
}
.list-announcement .panel-body ul > li small a {
  font-weight: 400;
  color: #259DAB;
  float: right;
}
.list-announcement .panel-footer {
  padding: 14px 20px;
  background-color: #fff;
}
/***** DASHBOARD: EARNINGS *****/
.panel-earnings > div {
  color: #505b72;
}
.panel-earnings > div:first-child {
  background-color: #fff;
}
.panel-earnings > div:first-child .panel-title {
  color: #d9534f;
}
@media (max-width: 560px) {
  .panel-earnings > div:first-child {
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
}
.panel-earnings > div:last-child {
  background-color: #505b72;
}
.panel-earnings > div:last-child .panel-title {
  color: #fff;
}
@media (max-width: 560px) {
  .panel-earnings > div:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
  }
}
@media (max-width: 560px) {
  .panel-earnings > div {
    display: block;
    width: 100%;
  }
}
.panel-earnings .panel {
  background-color: transparent;
}
.panel-earnings .panel-heading {
  padding-bottom: 5px;
}
.panel-earnings .earning-amount {
  margin-top: 0;
  font-size: 32px;
}
.panel-earnings .earning-today {
  font-weight: 400;
  font-size: 12px;
  color: #259DAB;
  margin: 0;
}
.panel-earnings .list-group {
  margin-top: 30px;
  margin-bottom: 0;
}
.panel-earnings .list-group > .list-group-item {
  background-color: transparent;
  padding: 10px 0;
  border-left: 0;
  border-right: 0;
  border-color: rgba(38, 43, 54, 0.2);
}
.panel-earnings .list-group > .list-group-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.panel-earnings .list-group > .list-group-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.panel-earnings .list-group > .list-group-item .pull-right {
  font-weight: 700;
  letter-spacing: 1px;
  color: #3b4354;
}
.panel-earnings .body-chart {
  height: 210px;
}
/***** DASHBOARD: QUICK PAGE ACCESS *****/
.panel-quick-page {
  margin: 0 0 20px;
}
.panel-quick-page > div {
  padding: 0;
}
.panel-quick-page > div .panel {
  border-radius: 0;
  margin-left: 1px;
  margin-bottom: 1px;
}
.panel-quick-page > div .panel:hover,
.panel-quick-page > div .panel:focus {
  cursor: pointer;
  position: relative;
}
@media (max-width: 360px) {
  .panel-quick-page > div {
    width: 50%;
  }
}
@media (max-width: 560px) {
  .panel-quick-page > div .panel-heading {
    padding: 10px;
  }
}
@media (max-width: 560px) {
  .panel-quick-page > div .panel-title {
    font-size: 11px;
  }
}
.panel-quick-page > div:first-child .panel {
  margin-left: 0;
  border-top-left-radius: 2px;
}
@media (max-width: 360px) {
  .panel-quick-page > div:nth-child(2) .panel {
    border-top-right-radius: 2px;
  }
}
@media (max-width: 991px) {
  .panel-quick-page > div:nth-child(3) .panel {
    border-top-right-radius: 2px;
  }
}
@media (max-width: 360px) {
  .panel-quick-page > div:nth-child(3) .panel {
    border-top-right-radius: 0;
  }
}
.panel-quick-page > div:nth-child(4) .panel {
  border-top-right-radius: 2px;
}
@media (max-width: 991px) {
  .panel-quick-page > div:nth-child(4) .panel {
    margin-left: 0;
    border-top-right-radius: 0;
  }
}
.panel-quick-page > div:nth-child(5) .panel {
  margin-left: 0;
  border-bottom-left-radius: 2px;
}
@media (max-width: 991px) {
  .panel-quick-page > div:nth-child(5) .panel {
    margin-left: 1px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
@media (max-width: 991px) {
  .panel-quick-page > div:nth-child(7) .panel {
    margin-left: 0;
    border-bottom-left-radius: 2px;
  }
}
@media (max-width: 360px) {
  .panel-quick-page > div:nth-child(7) .panel {
    border-bottom-left-radius: 0;
  }
}
.panel-quick-page > div:last-child .panel {
  border-bottom-right-radius: 2px;
}
@media (max-width: 360px) {
  .panel-quick-page > div:nth-child(odd) > .panel {
    margin-left: 0;
  }
  .panel-quick-page > div:nth-child(even) > .panel {
    margin-left: 1px;
  }
  .panel-quick-page > div:last-child {
    width: 100%;
  }
  .panel-quick-page > div:last-child > .panel {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
  }
}
.panel-quick-page .hvr-shutter-out-vertical {
  display: block;
}
.panel-quick-page .page-user > .panel {
  background-color: #2ab0c0;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-user > .panel:hover,
.panel-quick-page .page-user > .panel:focus {
  background-color: #259DAB;
}
.panel-quick-page .page-products > .panel {
  background-color: #31b0d5;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-products > .panel:hover,
.panel-quick-page .page-products > .panel:focus {
  background-color: #28a1c5;
}
.panel-quick-page .page-events > .panel {
  background-color: #469bd7;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-events > .panel:hover,
.panel-quick-page .page-events > .panel:focus {
  background-color: #2a82c0;
}
.panel-quick-page .page-messages > .panel {
  background-color: #2a82c0;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-messages > .panel:hover,
.panel-quick-page .page-messages > .panel:focus {
  background-color: #2574ab;
}
.panel-quick-page .page-reports > .panel {
  background-color: #de6489;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-reports > .panel:hover,
.panel-quick-page .page-reports > .panel:focus {
  background-color: #d43a69;
}
.panel-quick-page .page-statistics > .panel {
  background-color: #e27c79;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-statistics > .panel:hover,
.panel-quick-page .page-statistics > .panel:focus {
  background-color: #d9534f;
}
.panel-quick-page .page-support > .panel {
  background-color: #9d70e2;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-support > .panel:hover,
.panel-quick-page .page-support > .panel:focus {
  background-color: #8046da;
}
.panel-quick-page .page-privacy > .panel {
  background-color: #727f9c;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-privacy > .panel:hover,
.panel-quick-page .page-privacy > .panel:focus {
  background-color: #5b6781;
}
.panel-quick-page .page-settings > .panel {
  background-color: #657390;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-quick-page .page-settings > .panel:hover,
.panel-quick-page .page-settings > .panel:focus {
  background-color: #505b72;
}
.panel-quick-page .panel-heading {
  padding: 15px 20px;
}
.panel-quick-page .panel-title {
  color: #fff;
}
.panel-quick-page .panel-body {
  padding-top: 0;
}
.panel-quick-page .page-icon {
  margin: 0;
  color: #fff;
  font-size: 70px;
  height: 70px;
  line-height: 0;
  text-align: center;
}
/***** PANEL TRAFFIC *****/
.panel-site-traffic .panel-body .panel-title {
  color: #818da7;
  font-size: 11px;
  margin: 3px 0 0;
}
@media (max-width: 480px) {
  .panel-site-traffic .panel-body .row > div {
    width: 100%;
    float: none;
  }
  .panel-site-traffic .panel-body .row > div:before,
  .panel-site-traffic .panel-body .row > div:after {
    content: " ";
    display: table;
  }
  .panel-site-traffic .panel-body .row > div:after {
    clear: both;
  }
  .panel-site-traffic .panel-body .row > div:before,
  .panel-site-traffic .panel-body .row > div:after {
    content: " ";
    display: table;
  }
  .panel-site-traffic .panel-body .row > div:after {
    clear: both;
  }
  .panel-site-traffic .panel-body .row > div + div {
    margin-top: 15px;
  }
}
.panel-site-traffic .panel-body h3 {
  margin: 0 0 3px;
  font-size: 32px;
}
.panel-site-traffic .panel-body .icon {
  font-size: 48px;
  color: #fff;
  margin-right: 20px;
  border-radius: 2px;
  width: 70px;
  line-height: 54px;
}
.panel-site-traffic .panel-body .ion-stats-bars {
  background-color: #2574ab;
  padding: 7px 18px;
}
.panel-site-traffic .panel-body .ion-eye {
  background-color: #5bc0de;
  padding: 7px 15px;
}
.panel-site-traffic .panel-body .ion-clock {
  background-color: #259DAB;
  padding: 7px 14px;
}
.panel-site-traffic .panel-body h5 {
  margin: 0;
  font-weight: 300;
}
/***** DASHBOARD: PANEL STATISTICS *****/
.panel-statistics {
  margin: 0 0 20px;
}
.panel-statistics .panel {
  margin: 0;
  border-radius: 0;
  min-height: 130px;
}
.panel-statistics > div {
  padding: 0;
}
.panel-statistics > div:first-child > .panel {
  border-top-left-radius: 2px;
}
.panel-statistics > div:nth-child(2) > .panel {
  border-top-right-radius: 2px;
}
.panel-statistics > div:nth-child(3) > .panel {
  border-bottom-left-radius: 2px;
}
.panel-statistics > div:last-child > .panel {
  border-bottom-right-radius: 2px;
}
.panel-statistics > div:nth-child(odd) > .panel {
  margin-left: 0;
}
.panel-statistics > div:nth-child(3) > .panel,
.panel-statistics > div:last-child > .panel {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .panel-statistics > div:nth-child(2) > .panel {
    margin-bottom: 1px;
    border-top-right-radius: 0;
  }
  .panel-statistics > div:nth-child(3) > .panel {
    border-bottom-left-radius: 0;
  }
  .panel-statistics > div:first-child > .panel {
    border-top-right-radius: 2px;
  }
  .panel-statistics > div:last-child > .panel {
    border-bottom-left-radius: 2px;
  }
}
.panel-updates h3 {
  margin: 5px 0 5px;
  font-size: 32px;
}
.panel-updates .progress {
  height: 5px;
  margin-bottom: 15px;
}
.panel-updates p,
.panel-updates p + p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0;
  color: #505b72;
}
.panel-updates.panel-success-full .panel-body .panel-title,
.panel-updates.panel-danger-full .panel-body .panel-title {
  font-weight: 700;
}
.panel-updates.panel-success-full .progress,
.panel-updates.panel-danger-full .progress {
  background-color: rgba(255, 255, 255, 0.3);
}
.panel-updates.panel-success-full .progress-bar,
.panel-updates.panel-danger-full .progress-bar {
  background-color: #fff;
}
.panel-updates.panel-success-full p,
.panel-updates.panel-danger-full p {
  color: #fff;
}
/***** MAIN PANEL *****/
.mainpanel {
  padding-top: 64px;
}
@media (min-width: 992px) {
  .mainpanel {
    margin-left: 220px;
  }
}
@media (max-width: 991px) {
  .mainpanel {
    position: relative;
  }
}
.breadcrumb-quirk {
  padding: 0;
  background-color: transparent;
  margin-bottom: 20px;
}
.breadcrumb-quirk > li {
  font-size: 12px;
}
.breadcrumb-quirk > li > a {
  color: #545b68;
}
.breadcrumb-quirk > li > a:hover,
.breadcrumb-quirk > li > a:focus {
  color: #3d424c;
}
.breadcrumb-quirk > li + li:before {
  content: '\f105';
  font-family: 'FontAwesome';
  color: #818da7;
  margin-right: 5px;
}
.breadcrumb-quirk > li i {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  margin-top: 1px;
}
.breadcrumb-quirk > li.active {
  color: #464f63;
  font-weight: 500;
}
.contentpanel {
  padding: 20px;
  position: relative;
}
@media (max-width: 320px) {
  .contentpanel {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.contentpanel:after {
  clear: both;
  display: block;
  content: '';
}
form .form-group:last-child {
  margin-bottom: 0;
}
/* Checkbox */
.ckbox,
.rdiobox {
  font-weight: normal;
  position: relative;
  display: block;
  line-height: 18px;
}
.ckbox span:before,
.ckbox span:after {
  line-height: 18px;
  position: absolute;
}
.ckbox span:before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #fff;
  color: #696c74;
  border: 2px solid #c5c6cb;
  border-radius: 0px;
  top: 2px;
  left: 0;
}
.ckbox span:after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 8px;
  color: #696c74;
  display: none;
  top: 0;
  left: 3px;
}
.ckbox input[type='checkbox'] {
  opacity: 0;
  margin: 0 5px 0 0;
}
.ckbox input[type='checkbox']:checked + span:before {
  border-color: #696c74;
}
.ckbox input[type='checkbox']:checked + span:after {
  display: block;
}
.ckbox input[type='checkbox'][disabled] + span,
.ckbox input[type='checkbox'][disabled] + span:before,
.ckbox input[type='checkbox'][disabled] + span:after {
  opacity: .75;
}
.ckbox-inline,
.rdiobox-inline {
  display: inline-block;
  margin-top: 10px;
}
/* Checkbox color variant */
.ckbox-primary input[type='checkbox']:checked + span:before {
  background-color: #2574ab;
  border-color: #2574ab;
}
.ckbox-primary input[type='checkbox']:checked + span:after {
  color: #fff;
}
.ckbox-success input[type='checkbox']:checked + span:before {
  background-color: #259DAB;
  border-color: #259DAB;
}
.ckbox-success input[type='checkbox']:checked + span:after {
  color: #fff;
}
.ckbox-warning input[type='checkbox']:checked + span:before {
  background-color: #e6ad5c;
  border-color: #e6ad5c;
}
.ckbox-warning input[type='checkbox']:checked + span:after {
  color: #fff;
}
.ckbox-danger input[type='checkbox']:checked + span:before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.ckbox-danger input[type='checkbox']:checked + span:after {
  color: #fff;
}
.ckbox-info input[type='checkbox']:checked + span:before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.ckbox-info input[type='checkbox']:checked + span:after {
  color: #fff;
}
/* Radio Box */
.rdiobox span:before,
.rdiobox span:after {
  line-height: 18px;
  position: absolute;
}
.rdiobox span:before {
  content: '';
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 2px solid #c5c6cb;
  border-radius: 50px;
  top: 2px;
  left: 0;
}
.rdiobox span:after {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #696c74;
  border-radius: 50px;
  top: 6px;
  left: 4px;
  display: none;
}
.rdiobox input[type='radio'] {
  opacity: 0;
  margin: 0 5px 0 0;
}
.rdiobox input[type='radio']:checked + span:before {
  border-color: #666;
}
.rdiobox input[type='radio']:checked + span:after {
  display: block;
}
.rdiobox input[type='radio'][disabled] + span,
.rdiobox input[type='radio'][disabled] + span:before,
.rdiobox input[type='radio'][disabled] + span:after {
  opacity: .75;
}
/* Radio box color variant */
.rdiobox-primary input[type='radio']:checked + span:before {
  border-color: #2574ab;
}
.rdiobox-primary input[type='radio']:checked + span:after {
  background-color: #2574ab;
}
.rdiobox-success input[type='radio']:checked + span:before {
  border-color: #259DAB;
}
.rdiobox-success input[type='radio']:checked + span:after {
  background-color: #259DAB;
}
.rdiobox-warning input[type='radio']:checked + span:before {
  border-color: #e6ad5c;
}
.rdiobox-warning input[type='radio']:checked + span:after {
  background-color: #e6ad5c;
}
.rdiobox-danger input[type='radio']:checked + span:before {
  border-color: #d9534f;
}
.rdiobox-danger input[type='radio']:checked + span:after {
  background-color: #d9534f;
}
.rdiobox-info input[type='radio']:checked + span:before {
  border-color: #5bc0de;
}
.rdiobox-info input[type='radio']:checked + span:after {
  background-color: #5bc0de;
}
/* Inside input group */
.input-group-addon .ckbox,
.input-group-addon .rdiobox,
.input-group-addon .ckbox input,
.input-group-addon .rdiobox input {
  margin: 0;
}
label.required-input:before {
  content: ' * ';
  color: #d9534f;
}
/* Time Picker */
.timepicker {
  width: 100px;
}
/* Form Validation */
label.error {
  color: #d9534f;
  margin: 5px 0 0;
  display: block;
}
div.error {
  margin-bottom: 20px;
}
.form-control.error {
  border-color: #d9534f;
}
.form-horizontal .control-label.nopaddingtop {
  padding-top: 0;
}
/***** TEMPLATE BUTTONS *****/
.btn-quirk {
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  letter-spacing: .5px;
}
.btn-stroke {
  background-color: transparent;
  border-width: 2px;
  /*padding: (@padding-base-vertical - 1px) (@padding-base-horizontal - 1px);*/
}
.btn-stroke:hover,
.btn-stroke:focus,
.btn-stroke.focus,
.btn-stroke:active,
.btn-stroke.active,
.open > .dropdown-toggle.btn-stroke {
  background-color: transparent;
}
.btn-stroke.btn-quirk {
  border-color: #262b36;
  color: #262b36;
}
.btn-stroke.btn-quirk:hover,
.btn-stroke.btn-quirk:focus,
.btn-stroke.btn-quirk.focus,
.btn-stroke.btn-quirk:active,
.btn-stroke.btn-quirk.active {
  color: #fff;
  border-color: #262b36;
  background-color: #262b36;
}
.open > .dropdown-toggle.btn-stroke.btn-quirk {
  color: #111318;
  border-color: #111318;
}
.btn-stroke.btn-primary {
  border-color: #2574ab;
  color: #2574ab;
}
.btn-stroke.btn-primary:hover,
.btn-stroke.btn-primary:focus,
.btn-stroke.btn-primary.focus,
.btn-stroke.btn-primary:active,
.btn-stroke.btn-primary.active {
  color: #fff;
  border-color: #2574ab;
  background-color: #2574ab;
}
.open > .dropdown-toggle.btn-stroke.btn-primary {
  color: #1c5881;
  border-color: #1c5881;
}
.btn-stroke.btn-success {
  border-color: #259DAB;
  color: #259DAB;
}
.btn-stroke.btn-success:hover,
.btn-stroke.btn-success:focus,
.btn-stroke.btn-success.focus,
.btn-stroke.btn-success:active,
.btn-stroke.btn-success.active {
  color: #fff;
  border-color: #259DAB;
  background-color: #259DAB;
}
.open > .dropdown-toggle.btn-stroke.btn-success {
  color: #1c7781;
  border-color: #1c7781;
}
.btn-stroke.btn-warning {
  border-color: #e6ad5c;
  color: #e6ad5c;
}
.btn-stroke.btn-warning:hover,
.btn-stroke.btn-warning:focus,
.btn-stroke.btn-warning.focus,
.btn-stroke.btn-warning:active,
.btn-stroke.btn-warning.active {
  color: #fff;
  border-color: #e6ad5c;
  background-color: #e6ad5c;
}
.open > .dropdown-toggle.btn-stroke.btn-warning {
  color: #df9730;
  border-color: #df9730;
}
.btn-stroke.btn-danger {
  border-color: #d9534f;
  color: #d9534f;
}
.btn-stroke.btn-danger:hover,
.btn-stroke.btn-danger:focus,
.btn-stroke.btn-danger.focus,
.btn-stroke.btn-danger:active,
.btn-stroke.btn-danger.active {
  color: #fff;
  border-color: #d9534f;
  background-color: #d9534f;
}
.open > .dropdown-toggle.btn-stroke.btn-danger {
  color: #c9302c;
  border-color: #c9302c;
}
.btn-stroke.btn-info {
  border-color: #5bc0de;
  color: #5bc0de;
}
.btn-stroke.btn-info:hover,
.btn-stroke.btn-info:focus,
.btn-stroke.btn-info.focus,
.btn-stroke.btn-info:active,
.btn-stroke.btn-info.active {
  color: #fff;
  border-color: #5bc0de;
  background-color: #5bc0de;
}
.open > .dropdown-toggle.btn-stroke.btn-info {
  color: #31b0d5;
  border-color: #31b0d5;
}
.btn-stroke.btn-inverse {
  border-color: #505b72;
  color: #505b72;
}
.btn-stroke.btn-inverse:hover,
.btn-stroke.btn-inverse:focus,
.btn-stroke.btn-inverse.focus,
.btn-stroke.btn-inverse:active,
.btn-stroke.btn-inverse.active {
  color: #fff;
  border-color: #505b72;
  background-color: #505b72;
}
.open > .dropdown-toggle.btn-stroke.btn-inverse {
  color: #3b4354;
  border-color: #3b4354;
}
.btn-stroke:active {
  background-color: transparent !important;
}
.btn-stroke-thin {
  border-width: 1px;
  font-weight: 600;
}
.btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 100px;
}
.btn-icon.btn-stroke {
  padding: 0;
}
.btn-wide {
  min-width: 100px;
}
.btn-compose {
  display: block;
  margin: 0 15px;
}
.btn-default-active {
  color: #fff;
  background-color: #bdc3d1;
  border-color: transparent;
}
.btn-default-active:focus,
.btn-default-active.focus {
  color: #fff;
  background-color: #a8b0c2;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-default-active:hover {
  color: #fff;
  background-color: #aeb6c6;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-active:active,
.btn-default-active.active,
.open > .dropdown-toggle.btn-default-active {
  color: #fff;
  background-color: #a8b0c2;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-default-active:active:hover,
.btn-default-active.active:hover,
.open > .dropdown-toggle.btn-default-active:hover,
.btn-default-active:active:focus,
.btn-default-active.active:focus,
.open > .dropdown-toggle.btn-default-active:focus,
.btn-default-active:active.focus,
.btn-default-active.active.focus,
.open > .dropdown-toggle.btn-default-active.focus {
  color: #fff;
  background-color: #a8b0c2;
  border-color: rgba(0, 0, 0, 0);
}
.btn-default-active:active,
.btn-default-active.active,
.open > .dropdown-toggle.btn-default-active {
  background-image: none;
}
.btn-default-active.disabled,
.btn-default-active[disabled],
fieldset[disabled] .btn-default-active,
.btn-default-active.disabled:hover,
.btn-default-active[disabled]:hover,
fieldset[disabled] .btn-default-active:hover,
.btn-default-active.disabled:focus,
.btn-default-active[disabled]:focus,
fieldset[disabled] .btn-default-active:focus,
.btn-default-active.disabled.focus,
.btn-default-active[disabled].focus,
fieldset[disabled] .btn-default-active.focus,
.btn-default-active.disabled:active,
.btn-default-active[disabled]:active,
fieldset[disabled] .btn-default-active:active,
.btn-default-active.disabled.active,
.btn-default-active[disabled].active,
fieldset[disabled] .btn-default-active.active {
  background-color: #bdc3d1;
  border-color: transparent;
}
.btn-default-active .badge {
  color: #bdc3d1;
  background-color: #fff;
}
.btn-fb {
  color: #fff;
  background-color: #3A5795;
  border-color: transparent;
}
.btn-fb:focus,
.btn-fb.focus {
  color: #fff;
  background-color: #30487b;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-fb:hover {
  color: #fff;
  background-color: #334c83;
  border-color: rgba(0, 0, 0, 0);
}
.btn-fb:active,
.btn-fb.active,
.open > .dropdown-toggle.btn-fb {
  color: #fff;
  background-color: #30487b;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: none;
}
.btn-fb:active:hover,
.btn-fb.active:hover,
.open > .dropdown-toggle.btn-fb:hover,
.btn-fb:active:focus,
.btn-fb.active:focus,
.open > .dropdown-toggle.btn-fb:focus,
.btn-fb:active.focus,
.btn-fb.active.focus,
.open > .dropdown-toggle.btn-fb.focus {
  color: #fff;
  background-color: #30487b;
  border-color: rgba(0, 0, 0, 0);
}
.btn-fb:active,
.btn-fb.active,
.open > .dropdown-toggle.btn-fb {
  background-image: none;
}
.btn-fb.disabled,
.btn-fb[disabled],
fieldset[disabled] .btn-fb,
.btn-fb.disabled:hover,
.btn-fb[disabled]:hover,
fieldset[disabled] .btn-fb:hover,
.btn-fb.disabled:focus,
.btn-fb[disabled]:focus,
fieldset[disabled] .btn-fb:focus,
.btn-fb.disabled.focus,
.btn-fb[disabled].focus,
fieldset[disabled] .btn-fb.focus,
.btn-fb.disabled:active,
.btn-fb[disabled]:active,
fieldset[disabled] .btn-fb:active,
.btn-fb.disabled.active,
.btn-fb[disabled].active,
fieldset[disabled] .btn-fb.active {
  background-color: #3A5795;
  border-color: transparent;
}
.btn-fb .badge {
  color: #3A5795;
  background-color: #fff;
}
/***** TABS & ACCORDIONS *****/
.tab-side-wrapper {
  background-color: #fff;
  position: relative;
  margin: 0 0 20px;
  min-height: 136px;
  border-radius: 2px;
}
.tab-side-wrapper .tab-left,
.tab-side-wrapper .tab-right {
  padding: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  background-color: #9fa8bc;
}
.tab-side-wrapper .tab-left {
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
.tab-side-wrapper .nav-stacked > li > a {
  border-radius: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 12px;
}
.tab-side-wrapper .nav-stacked > li > a:hover,
.tab-side-wrapper .nav-stacked > li > a:focus {
  color: #fff;
  background-color: #909bb1;
}
.tab-side-wrapper .nav-stacked > li:first-child > a {
  border-top-left-radius: 2px;
}
.tab-side-wrapper .nav-stacked > li:last-child > a {
  border-bottom-left-radius: 2px;
}
.tab-side-wrapper .nav-stacked > li.active > a,
.tab-side-wrapper .nav-stacked > li.active > a:hover,
.tab-side-wrapper .nav-stacked > li.active > a:focus {
  background-color: #fff;
  color: #657390;
}
.tab-side-wrapper .nav-stacked > li + li {
  margin: 0;
}
.tab-side-wrapper .tab-right {
  right: 0;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
.tab-side-wrapper .tab-right .nav-stacked > li:first-child > a {
  border-top-left-radius: 0;
  border-top-right-radius: 2px;
}
.tab-side-wrapper .tab-right .nav-stacked > li:last-child > a {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 2px;
}
.tab-side-wrapper .tab-main {
  padding: 0;
}
.tab-side-wrapper .tab-pane {
  background-color: transparent;
}
.nav-primary {
  background-color: #2574ab;
}
.nav-primary > li > a:hover,
.nav-primary > li > a:focus {
  background-color: #206696;
}
.nav-primary > li.active > a,
.nav-primary > li.active > a:hover,
.nav-primary > li.active > a:focus {
  color: #2574ab;
}
.nav-success {
  background-color: #259DAB;
}
.nav-success > li > a:hover,
.nav-success > li > a:focus {
  background-color: #208a96;
}
.nav-success > li.active > a,
.nav-success > li.active > a:hover,
.nav-success > li.active > a:focus {
  color: #259DAB;
}
.nav-warning {
  background-color: #e6ad5c;
}
.nav-warning > li > a:hover,
.nav-warning > li > a:focus {
  background-color: #e3a246;
}
.nav-warning > li.active > a,
.nav-warning > li.active > a:hover,
.nav-warning > li.active > a:focus {
  color: #e6ad5c;
}
.nav-danger {
  background-color: #d9534f;
}
.nav-danger > li > a:hover,
.nav-danger > li > a:focus {
  background-color: #d43f3a;
}
.nav-danger > li.active > a,
.nav-danger > li.active > a:hover,
.nav-danger > li.active > a:focus {
  color: #d9534f;
}
.nav-info {
  background-color: #5bc0de;
}
.nav-info > li > a:hover,
.nav-info > li > a:focus {
  background-color: #46b8da;
}
.nav-info > li.active > a,
.nav-info > li.active > a:hover,
.nav-info > li.active > a:focus {
  color: #5bc0de;
}
.nav-inverse {
  background-color: #3b4354;
}
.nav-inverse > li > a:hover,
.nav-inverse > li > a:focus {
  background-color: #313745;
}
.nav-inverse > li.active > a,
.nav-inverse > li.active > a:hover,
.nav-inverse > li.active > a:focus {
  color: #3b4354;
}
.nav-line {
  background-color: transparent;
  border-bottom: 1px solid #dbdfe6;
}
.nav-line > li > a {
  color: #657390;
  padding-top: 0;
  padding-bottom: 10px;
}
.nav-line > li > a:hover,
.nav-line > li > a:focus {
  background-color: transparent;
  color: #262b36;
}
@media (max-width: 480px) {
  .nav-line > li > a {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.nav-line > li.active > a,
.nav-line > li.active > a:hover,
.nav-line > li.active > a:focus {
  color: #259DAB;
  background-color: transparent;
  box-shadow: 0 1px 0 #259DAB;
}
.nav-line + .tab-content > .tab-pane {
  padding: 20px 0 0;
  background-color: transparent;
}
.nav-line.nav-justified {
  border-bottom: 1px solid #dbdfe6;
}
@media (max-width: 480px) {
  .nav-line.nav-justified {
    border-bottom: 0;
  }
}
/***** GRAPHS & CHARTS *****/
.tooltipflot {
  background-color: rgba(0, 0, 0, 0.75);
  font-size: 11px;
  color: #fff;
  padding: 3px 10px;
  border-radius: 2px;
}
.jqstooltip {
  min-height: 25px;
  border: 0;
  min-width: 30px;
  height: auto !important;
  width: auto !important;
}
.panel-morris .body-chart {
  height: 300px;
}
.panel-morris .body-chart > svg {
  width: 100% !important;
}
.tinystat {
  display: inline-block;
}
.tinystat .chart {
  margin-right: 5px;
}
.tinystat .chart,
.tinystat .datainfo {
  display: inline-block;
  vertical-align: middle;
}
.tinystat .text-muted {
  text-transform: uppercase;
  font-size: 10px;
}
.tinystat h4 {
  margin: 0;
  color: #262b36;
  font-weight: bold;
  line-height: normal;
  font-size: 16px;
}
/***** PANELS & WIDGETS *****/
.panel-options {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 0;
  margin: 0;
}
.panel-options > li {
  display: block;
  float: left;
  list-style: none;
}
.panel-options > li > a {
  color: #bdc3d1;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.panel-options > li > a > i {
  display: inline-block;
  vertical-align: middle;
}
.panel-options > li > a > i.fa-refresh {
  font-size: 11px;
}
.panel-options > li > a > i.fa-remove {
  font-size: 13px;
}
.panel-options > li > a:hover,
.panel-options > li > a:focus {
  cursor: pointer;
  color: #818da7;
}
.panel-options > li + li {
  margin-left: 5px;
}
.panel-inverse {
  border-color: transparent;
}
.panel-inverse > .panel-heading {
  color: #fff;
  background-color: #505b72;
  border-color: transparent;
}
.panel-inverse > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: transparent;
}
.panel-inverse > .panel-heading .badge {
  color: #505b72;
  background-color: #fff;
}
.panel-inverse > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: transparent;
}
.panel-default .panel-options > li > a,
.panel-primary .panel-options > li > a,
.panel-success .panel-options > li > a,
.panel-warning .panel-options > li > a,
.panel-danger .panel-options > li > a,
.panel-info .panel-options > li > a,
.panel-inverse .panel-options > li > a {
  color: rgba(255, 255, 255, 0.5);
}
.panel-default .panel-options > li > a:hover,
.panel-primary .panel-options > li > a:hover,
.panel-success .panel-options > li > a:hover,
.panel-warning .panel-options > li > a:hover,
.panel-danger .panel-options > li > a:hover,
.panel-info .panel-options > li > a:hover,
.panel-inverse .panel-options > li > a:hover,
.panel-default .panel-options > li > a:focus,
.panel-primary .panel-options > li > a:focus,
.panel-success .panel-options > li > a:focus,
.panel-warning .panel-options > li > a:focus,
.panel-danger .panel-options > li > a:focus,
.panel-info .panel-options > li > a:focus,
.panel-inverse .panel-options > li > a:focus {
  color: rgba(255, 255, 255, 0.8);
}
.panel-primary-full {
  background-color: #2574ab;
  color: rgba(255, 255, 255, 0.8);
}
.panel-primary-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-primary-full .panel-options > li > a:hover,
.panel-primary-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-primary-full .panel-heading {
  background-color: transparent;
}
.panel-primary-full .panel-heading .panel-title {
  color: #fff;
}
.panel-primary-full .form-control {
  border-color: transparent;
}
.panel-primary-full .panel-body .panel-title,
.panel-primary-full .panel-body h1,
.panel-primary-full .panel-body h2,
.panel-primary-full .panel-body h3,
.panel-primary-full .panel-body h4,
.panel-primary-full .panel-body h5,
.panel-primary-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-primary-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-primary-full .panel-body a:hover,
.panel-primary-full .panel-body a:focus {
  color: #fff;
}
.panel-primary-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-success-full {
  background-color: #259DAB;
  color: rgba(255, 255, 255, 0.8);
}
.panel-success-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-success-full .panel-options > li > a:hover,
.panel-success-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-success-full .panel-heading {
  background-color: transparent;
}
.panel-success-full .panel-heading .panel-title {
  color: #fff;
}
.panel-success-full .form-control {
  border-color: transparent;
}
.panel-success-full .panel-body .panel-title,
.panel-success-full .panel-body h1,
.panel-success-full .panel-body h2,
.panel-success-full .panel-body h3,
.panel-success-full .panel-body h4,
.panel-success-full .panel-body h5,
.panel-success-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-success-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-success-full .panel-body a:hover,
.panel-success-full .panel-body a:focus {
  color: #fff;
}
.panel-success-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-warning-full {
  background-color: #e6ad5c;
  color: rgba(255, 255, 255, 0.8);
}
.panel-warning-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-warning-full .panel-options > li > a:hover,
.panel-warning-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-warning-full .panel-heading {
  background-color: transparent;
}
.panel-warning-full .panel-heading .panel-title {
  color: #fff;
}
.panel-warning-full .form-control {
  border-color: transparent;
}
.panel-warning-full .panel-body .panel-title,
.panel-warning-full .panel-body h1,
.panel-warning-full .panel-body h2,
.panel-warning-full .panel-body h3,
.panel-warning-full .panel-body h4,
.panel-warning-full .panel-body h5,
.panel-warning-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-warning-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-warning-full .panel-body a:hover,
.panel-warning-full .panel-body a:focus {
  color: #fff;
}
.panel-warning-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-danger-full {
  background-color: #d9534f;
  color: rgba(255, 255, 255, 0.8);
}
.panel-danger-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-danger-full .panel-options > li > a:hover,
.panel-danger-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-danger-full .panel-heading {
  background-color: transparent;
}
.panel-danger-full .panel-heading .panel-title {
  color: #fff;
}
.panel-danger-full .form-control {
  border-color: transparent;
}
.panel-danger-full .panel-body .panel-title,
.panel-danger-full .panel-body h1,
.panel-danger-full .panel-body h2,
.panel-danger-full .panel-body h3,
.panel-danger-full .panel-body h4,
.panel-danger-full .panel-body h5,
.panel-danger-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-danger-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-danger-full .panel-body a:hover,
.panel-danger-full .panel-body a:focus {
  color: #fff;
}
.panel-danger-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-info-full {
  background-color: #5bc0de;
  color: rgba(255, 255, 255, 0.8);
}
.panel-info-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-info-full .panel-options > li > a:hover,
.panel-info-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-info-full .panel-heading {
  background-color: transparent;
}
.panel-info-full .panel-heading .panel-title {
  color: #fff;
}
.panel-info-full .form-control {
  border-color: transparent;
}
.panel-info-full .panel-body .panel-title,
.panel-info-full .panel-body h1,
.panel-info-full .panel-body h2,
.panel-info-full .panel-body h3,
.panel-info-full .panel-body h4,
.panel-info-full .panel-body h5,
.panel-info-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-info-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-info-full .panel-body a:hover,
.panel-info-full .panel-body a:focus {
  color: #fff;
}
.panel-info-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.panel-inverse-full {
  background-color: #262b36;
  color: rgba(255, 255, 255, 0.8);
}
.panel-inverse-full .panel-options > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-inverse-full .panel-options > li > a:hover,
.panel-inverse-full .panel-options > li > a:focus {
  color: #fff;
}
.panel-inverse-full .panel-heading {
  background-color: transparent;
}
.panel-inverse-full .panel-heading .panel-title {
  color: #fff;
}
.panel-inverse-full .form-control {
  border-color: transparent;
}
.panel-inverse-full .panel-body .panel-title,
.panel-inverse-full .panel-body h1,
.panel-inverse-full .panel-body h2,
.panel-inverse-full .panel-body h3,
.panel-inverse-full .panel-body h4,
.panel-inverse-full .panel-body h5,
.panel-inverse-full .panel-body h6 {
  color: #fff;
  font-weight: 500;
}
.panel-inverse-full .panel-body a {
  color: rgba(255, 255, 255, 0.7);
}
.panel-inverse-full .panel-body a:hover,
.panel-inverse-full .panel-body a:focus {
  color: #fff;
}
.panel-inverse-full .panel-footer {
  padding-top: 0;
  background-color: transparent;
}
.or {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  text-align: center;
  margin: 20px 0;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}
.or:after {
  content: '';
  position: absolute;
  width: 45%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  top: 8px;
  right: 0;
}
.or:before {
  content: '';
  position: absolute;
  width: 45%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  top: 8px;
  left: 0;
}
.bg-white {
  background-color: #fff;
}
.page-title {
  font-weight: 400;
  margin: 0 0 20px;
  line-height: normal;
  color: #262b36;
  padding: 15px 0 17px;
  border-top: 1px solid #c3c9d5;
  border-bottom: 1px solid #c3c9d5;
}
.well.primary,
.well.success,
.well.warning,
.well.danger,
.well.info,
.well.inverse {
  color: rgba(255, 255, 255, 0.8);
}
.well.primary h1,
.well.success h1,
.well.warning h1,
.well.danger h1,
.well.info h1,
.well.inverse h1,
.well.primary h2,
.well.success h2,
.well.warning h2,
.well.danger h2,
.well.info h2,
.well.inverse h2,
.well.primary h3,
.well.success h3,
.well.warning h3,
.well.danger h3,
.well.info h3,
.well.inverse h3,
.well.primary h4,
.well.success h4,
.well.warning h4,
.well.danger h4,
.well.info h4,
.well.inverse h4,
.well.primary h5,
.well.success h5,
.well.warning h5,
.well.danger h5,
.well.info h5,
.well.inverse h5,
.well.primary h6,
.well.success h6,
.well.warning h6,
.well.danger h6,
.well.info h6,
.well.inverse h6 {
  color: #fff;
  margin-top: 0;
  font-weight: 500;
}
.well.primary p:last-child,
.well.success p:last-child,
.well.warning p:last-child,
.well.danger p:last-child,
.well.info p:last-child,
.well.inverse p:last-child {
  margin-bottom: 0;
}
.well.primary {
  background-color: #2574ab;
}
.well.success {
  background-color: #259DAB;
}
.well.warning {
  background-color: #e6ad5c;
}
.well.danger {
  background-color: #d9534f;
}
.well.info {
  background-color: #5bc0de;
}
.well.inverse {
  background-color: #262b36;
}
.email-options {
  position: fixed;
  top: 64px;
  left: 0;
  width: 360px;
  padding: 12px 15px;
  background-color: #bac1ce;
}
@media (min-width: 992px) {
  .email-options {
    left: 220px;
  }
}
@media (max-width: 768px) {
  .email-options {
    width: 320px;
  }
}
@media (max-width: 640px) {
  .email-options {
    position: relative;
    width: auto;
    top: 0;
  }
}
.email-options .settings {
  position: absolute;
  top: 6px;
  right: 5px;
}
.email-options .settings > a {
  color: #5d616d;
  font-size: 14px;
  padding: 2px 6px 6px;
  display: block;
  float: left;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.email-options .settings > a:hover,
.email-options .settings > a:focus {
  background-color: #9da7b8;
  color: #505b72;
}
.email-options .settings > a > i {
  width: 16px;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
.email-options .settings:hover,
.email-options .settings:focus {
  color: #262b36;
}
.markstar {
  cursor: pointer;
  font-size: 16px;
  color: #9fa8bc;
}
.markstar.starred {
  color: #e6ad5c;
}
.emailcontent {
  position: fixed;
  top: 64px;
  left: 0;
  bottom: 0;
  width: 360px;
  margin-top: 42px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  .emailcontent {
    left: 220px;
  }
}
@media (max-width: 768px) {
  .emailcontent {
    width: 320px;
  }
}
@media (max-width: 640px) {
  .emailcontent {
    position: relative;
    width: auto;
    margin-top: 0;
    top: 0;
  }
}
.emailcontent .list-left {
  float: left;
}
.emailcontent .list-left .markstar {
  display: block;
  margin-top: 5px;
}
.emailcontent .list-left .attachment {
  display: block;
  font-size: 14px;
  color: #9fa8bc;
}
.emailcontent .ckbox {
  display: inline-block;
  margin-bottom: 0;
}
.emailcontent .ckbox span:before {
  border: 0;
}
.emailcontent .list-group .list-group-item {
  border-left: 0;
  border-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
  border-color: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.emailcontent .list-group .list-group-item:hover,
.emailcontent .list-group .list-group-item:focus {
  cursor: pointer;
  background-color: #e4e7ec;
}
.emailcontent .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.emailcontent .list-group .list-group-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.emailcontent .list-group .list-group-item .media {
  margin-top: 0;
  padding-left: 10px;
}
.emailcontent .list-group .list-group-item .media .media-left {
  padding-right: 10px;
}
.emailcontent .list-group .list-group-item .media .media-object {
  width: 32px;
}
.emailcontent .list-group .list-group-item .media .media-body h5:not(.media-heading) {
  margin: 0;
  color: #3b4354;
  font-size: 13px;
  font-weight: 500;
}
.emailcontent .list-group .list-group-item .media .media-body h5.media-heading {
  margin-bottom: 3px;
  font-weight: normal;
  font-size: 12px;
  color: #505b72;
}
.emailcontent .list-group .list-group-item .media .media-body span {
  font-size: 11px;
  color: #909bb1;
  margin-top: -2px;
}
.emailcontent .list-group .list-group-item .media p {
  margin: 8px 0 0;
  color: #505b72;
  font-size: 12px;
}
.emailcontent .list-group .list-group-item.unread {
  background-color: #fcfcfd;
}
.emailcontent .list-group .list-group-item.unread .ckbox span:before {
  border: 1px solid #d8dce3;
}
.emailcontent .list-group .list-group-item.unread + .unread {
  border-color: #eaecf0;
}
.emailcontent .list-group .list-group-item.active {
  background-color: #d8f3f7;
}
.emailcontent .list-group .list-group-item.active .media-body h5 {
  color: #fff;
}
.emailcontent .list-group .list-group-item.selected {
  background-color: #85dae4;
}
.emailcontent .list-group .list-group-item.selected.active .ckbox span:before {
  border: 0;
}
.nomail {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: 300;
  color: #bdc3d1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 992px) {
  .nomail {
    font-size: 18px;
  }
}
.contentpanel.emailpanel {
  background-color: #fff;
  position: fixed;
  top: 64px;
  left: 360px;
  bottom: 0;
  right: 0;
  overflow: auto;
}
@media (min-width: 992px) {
  .contentpanel.emailpanel {
    left: 580px;
  }
}
@media (max-width: 768px) {
  .contentpanel.emailpanel {
    left: 320px;
  }
}
@media (max-width: 640px) {
  .contentpanel.emailpanel {
    position: relative;
    display: none;
  }
}
.email-header .media {
  margin-top: 0;
}
.email-header .media .media-left {
  padding-right: 10px;
}
.email-header .media .media-object {
  width: 36px;
}
.email-header .media .media-heading {
  font-size: 14px;
}
@media (max-width: 992px) {
  .email-header .pull-right {
    width: 100%;
    float: none !important;
    border-bottom: 1px solid #dbdfe6;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .email-header .media {
    width: 100%;
  }
}
.email-subject {
  font-weight: normal;
  margin-bottom: 20px;
}
.email-subject .markstar {
  margin-left: 5px;
  font-size: 16px;
}
.email-subject .markstar > i {
  vertical-align: top;
  margin-top: 2px;
}
.list-attachments {
  margin-top: 10px;
}
.list-attachments > li i {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  margin-right: 5px;
}
.list-attachments > li + li {
  margin-top: 8px;
}
.email-editor .note-editor {
  border-color: transparent;
}
.email-editor .note-editor .note-toolbar {
  background-color: transparent;
  padding-bottom: 15px;
  border-bottom-color: transparent;
}
.email-editor .note-editor .note-toolbar > .btn-group:first-child {
  margin-left: 0;
}
.email-editor .note-editor .note-editable {
  border: 1px solid #bdc3d1;
}
.email-editor .note-editor .note-statusbar {
  background-color: transparent;
}
.email-editor .note-editor .note-statusbar .note-resizebar {
  border-top: 0;
}
.table > thead > tr > td,
.table > thead > tr > th {
  padding-top: 13px;
  padding-bottom: 13px;
}
.table > .success > tr > th,
.table > .success > tr > td {
  background-color: #505b72;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.table > .success > tr:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.table > .success > tr:first-child > th:first-child,
.table > .success > tr:first-child > td:first-child {
  border-top-left-radius: 0;
}
.table > .success > tr:first-child > th:last-child,
.table > .success > tr:first-child > td:last-child {
  border-top-right-radius: 0;
}
.table-options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.table-options > li {
  display: inline-block;
  margin-left: 5px;
}
.table-options > li:first-child {
  margin-left: 0;
}
.table-options > li > a:not(.btn) {
  color: #9fa8bc;
  font-size: 14px;
  line-height: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.table-options > li > a:not(.btn) > i {
  line-height: 0;
}
.table-options > li > a:not(.btn):hover,
.table-options > li > a:not(.btn):focus {
  color: #657390;
}
.table-striped-col > thead > tr th:nth-of-type(even),
.table-striped-col > tfoot > tr th:nth-of-type(even),
.table-striped-col > thead > tr td:nth-of-type(even),
.table-striped-col > tfoot > tr td:nth-of-type(even) {
  background-color: #e4e7ec;
}
.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) th:nth-of-type(even),
.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) td:nth-of-type(even) {
  background-color: #f6f7f8;
}
.table-primary {
  background-color: #e9f3fa;
}
.table-primary > thead > tr > th,
.table-primary > tfoot > tr > th {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #2574ab;
  color: #fff;
}
.table-primary > tbody > tr > th,
.table-primary > tbody > tr > td {
  color: rgba(19, 59, 87, 0.8);
}
.table-primary > tbody > tr.info > th,
.table-primary > tbody > tr.info > td {
  background-color: #d0e6f5;
}
.table-primary.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #d8eaf7;
}
.table-primary.table-hover > tbody > tr:hover {
  background-color: #d0e6f5;
}
.table-primary.table-hover > tbody > tr.info:hover > th,
.table-primary.table-hover > tbody > tr.info:hover > td {
  background-color: #c8e1f3;
}
.table-primary.table-striped-col > thead > tr th:nth-of-type(even),
.table-primary.table-striped-col > tfoot > tr th:nth-of-type(even),
.table-primary.table-striped-col > thead > tr td:nth-of-type(even),
.table-primary.table-striped-col > tfoot > tr td:nth-of-type(even) {
  background-color: #226b9e;
}
.table-primary.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) th:nth-of-type(even),
.table-primary.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) td:nth-of-type(even) {
  background-color: #d8eaf7;
}
.table-success {
  background-color: #e9f8fa;
}
.table-success > thead > tr > th,
.table-success > tfoot > tr > th {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #259DAB;
  color: #fff;
}
.table-success > tbody > tr > th,
.table-success > tbody > tr > td {
  color: rgba(19, 80, 87, 0.8);
}
.table-success > tbody > tr.info > th,
.table-success > tbody > tr.info > td {
  background-color: #d0f1f5;
}
.table-success.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #d8f3f7;
}
.table-success.table-hover > tbody > tr:hover {
  background-color: #d0f1f5;
}
.table-success.table-hover > tbody > tr.info:hover > th,
.table-success.table-hover > tbody > tr.info:hover > td {
  background-color: #c8eef3;
}
.table-success.table-striped-col > thead > tr th:nth-of-type(even),
.table-success.table-striped-col > tfoot > tr th:nth-of-type(even),
.table-success.table-striped-col > thead > tr td:nth-of-type(even),
.table-success.table-striped-col > tfoot > tr td:nth-of-type(even) {
  background-color: #22919e;
}
.table-success.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) th:nth-of-type(even),
.table-success.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) td:nth-of-type(even) {
  background-color: #d8f3f7;
}
.table-warning {
  background-color: #fdf9f2;
}
.table-warning > thead > tr > th,
.table-warning > tfoot > tr > th {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #bf7c1d;
  color: #fff;
}
.table-warning > tbody > tr > th,
.table-warning > tbody > tr > td {
  color: rgba(102, 67, 16, 0.8);
}
.table-warning > tbody > tr.info > th,
.table-warning > tbody > tr.info > td {
  background-color: #f9ebd8;
}
.table-warning.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #faf0e1;
}
.table-warning.table-hover > tbody > tr:hover {
  background-color: #f9ebd8;
}
.table-warning.table-hover > tbody > tr.info:hover > th,
.table-warning.table-hover > tbody > tr.info:hover > td {
  background-color: #f8e7cf;
}
.table-warning.table-striped-col > thead > tr th:nth-of-type(even),
.table-warning.table-striped-col > tfoot > tr th:nth-of-type(even),
.table-warning.table-striped-col > thead > tr td:nth-of-type(even),
.table-warning.table-striped-col > tfoot > tr td:nth-of-type(even) {
  background-color: #b1731b;
}
.table-warning.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) th:nth-of-type(even),
.table-warning.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) td:nth-of-type(even) {
  background-color: #faf0e1;
}
.table-danger {
  background-color: #fcf3f3;
}
.table-danger > thead > tr > th,
.table-danger > tfoot > tr > th {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #b52b27;
  color: #fff;
}
.table-danger > tbody > tr > th,
.table-danger > tbody > tr > td {
  color: rgba(97, 23, 21, 0.8);
}
.table-danger > tbody > tr.info > th,
.table-danger > tbody > tr.info > td {
  background-color: #f7dad9;
}
.table-danger.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9e2e2;
}
.table-danger.table-hover > tbody > tr:hover {
  background-color: #f7dad9;
}
.table-danger.table-hover > tbody > tr.info:hover > th,
.table-danger.table-hover > tbody > tr.info:hover > td {
  background-color: #f5d2d1;
}
.table-danger.table-striped-col > thead > tr th:nth-of-type(even),
.table-danger.table-striped-col > tfoot > tr th:nth-of-type(even),
.table-danger.table-striped-col > thead > tr td:nth-of-type(even),
.table-danger.table-striped-col > tfoot > tr td:nth-of-type(even) {
  background-color: #a82824;
}
.table-danger.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) th:nth-of-type(even),
.table-danger.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) td:nth-of-type(even) {
  background-color: #f9e2e2;
}
.table-inverse {
  background-color: #e7e9ee;
}
.table-inverse > thead > tr > th,
.table-inverse > tfoot > tr > th {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: #505b72;
  color: #fff;
}
.table-inverse > tbody > tr > th,
.table-inverse > tbody > tr > td {
  color: rgba(38, 43, 54, 0.8);
}
.table-inverse > tbody > tr.info > th,
.table-inverse > tbody > tr.info > td {
  background-color: #d5d9e2;
}
.table-inverse.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #dbdfe6;
}
.table-inverse.table-hover > tbody > tr:hover {
  background-color: #d5d9e2;
}
.table-inverse.table-hover > tbody > tr.info:hover > th,
.table-inverse.table-hover > tbody > tr.info:hover > td {
  background-color: #cfd4dd;
}
.table-inverse.table-striped-col > thead > tr th:nth-of-type(even),
.table-inverse.table-striped-col > tfoot > tr th:nth-of-type(even),
.table-inverse.table-striped-col > thead > tr td:nth-of-type(even),
.table-inverse.table-striped-col > tfoot > tr td:nth-of-type(even) {
  background-color: #4a5469;
}
.table-inverse.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) th:nth-of-type(even),
.table-inverse.table-striped-col > tbody > tr:not(.active):not(.success):not(.info):not(.warning):not(.danger) td:nth-of-type(even) {
  background-color: #dbdfe6;
}
.map-wrapper {
  background-color: #c9cfd8;
  border-radius: 2px;
  height: 300px;
}
.panel-map-location .map-wrapper {
  height: 250px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.panel-map-location strong {
  display: block;
  font-size: 16px;
  color: #3b4354;
}
.panel-map-location .media {
  margin-bottom: 20px;
}
.panel-map-location .media address {
  margin: 0;
}
.panel-map-location .media .media-heading {
  font-size: 14px;
  margin-bottom: 8px;
}
.panel-map-location .btn-group > .btn > i {
  line-height: normal;
}
.panel-map-sidebar .row {
  margin: 0;
}
.panel-map-sidebar .map-sidebar {
  padding-left: 0;
  padding-right: 0;
}
.panel-map-sidebar .main {
  padding: 10px 0 10px 10px;
}
.panel-map-sidebar form {
  margin-top: 15px;
}
.panel-map-sidebar form .control-label {
  display: block;
}
.panel-map-sidebar form .form-group {
  margin-bottom: 15px;
}
.panel-map-sidebar .btn-group > .btn {
  min-height: 38px;
}
.panel-map-sidebar .map-wrapper {
  height: 408px;
}
/********** PAGES **********/
/***** ASSET MANAGER *****/
.well-asset-options {
  background-color: #505b72;
}
@media (max-width: 360px) {
  .well-asset-options {
    display: none;
  }
}
.well-asset-options .btn-toolbar {
  margin: 0;
}
@media (max-width: 1024px) {
  .well-asset-options .btn-toolbar {
    float: none !important;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .well-asset-options .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.btn-toolbar-media-manager {
  margin-bottom: 20px;
}
.btn-toolbar-media-manager .btn {
  border-color: transparent;
}
.btn-toolbar-media-manager .btn:hover,
.btn-toolbar-media-manager .btn:focus {
  border-color: transparent;
}
.btn-toolbar-media-manager .btn > i {
  font-size: 14px;
  vertical-align: baseline;
  line-height: 0;
  margin-right: 5px;
}
.btn-toolbar-media-manager .btn + .btn {
  margin-left: 1px;
}
.filemanager .thmb {
  background-color: #fff;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 20px;
  position: relative;
}
.filemanager .thmb:after {
  clear: both;
  display: block;
  content: '';
}
.filemanager .ckbox {
  position: absolute;
  top: 15px;
  left: 15px;
  display: none;
}
.filemanager .ckbox span:before {
  border: 0;
}
.filemanager .fm-group {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
}
.filemanager .fm-toggle {
  padding: 1px 4px;
  line-height: normal;
  background-color: #fff;
  border-radius: 2px;
  border: 0;
}
.filemanager .fm-toggle:hover,
.filemanager .fm-toggle:focus,
.filemanager .fm-toggle:active {
  background-color: #fff !important;
}
.filemanager .fm-menu {
  border-color: #dbdfe6;
  min-width: 120px;
}
.filemanager .fm-menu a {
  color: #696c74;
}
.filemanager .fm-menu i {
  margin-right: 7px;
  width: 16px;
  font-size: 14px;
}
.filemanager .thmb-prev {
  background-color: #eee;
  overflow: hidden;
}
.filemanager .thmb-prev a {
  display: block;
}
.filemanager .fm-title {
  margin-bottom: 2px;
  font-weight: 500;
}
.filemanager .fm-title a {
  overflow-x: hidden;
  text-overflow: ellipsis;
  display: block;
}
.fm-sidebar {
  padding-left: 10px;
}
.fm-sidebar .panel-title a {
  color: #9fa8bc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.fm-sidebar .panel-title a:hover {
  text-decoration: none;
  color: #818da7;
}
.fm-sidebar .tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fm-sidebar .tag-list li {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}
.fm-sidebar .tag-list li a {
  display: block;
  padding: 2px 7px;
  font-size: 11px;
  background-color: #fcfcfc;
  border-radius: 2px;
  color: #666;
}
.fm-sidebar .tag-list li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #2574ab;
}
.folder-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.folder-list li {
  display: block;
  border-bottom: 1px solid #eaecf0;
}
.folder-list li a {
  display: block;
  padding: 9px 0 10px;
  color: #657390;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.folder-list li a:hover {
  color: #262b36;
  text-decoration: none;
}
.folder-list li i {
  margin-right: 10px;
  width: 16px;
  font-size: 14px;
}
.folder-list li:first-child > a {
  padding-top: 0;
}
.folder-list li:last-child {
  border-bottom: 0;
}
.folder-list li:last-child > a {
  padding-bottom: 0;
}
/****** PEOPLE DIRECTORY ******/
.people-list .people-options {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #464f63;
  border-radius: 2px;
}
@media (max-width: 480px) {
  .people-list .people-options .btn-toolbar {
    display: none;
  }
}
.people-list .people-options .btn-toolbar .btn {
  font-size: 11px;
}
.people-list .people-options .btn-toolbar .btn.btn-danger {
  color: rgba(255, 255, 255, 0.9);
}
.people-list .people-options .btn-toolbar .btn > i {
  font-size: 14px;
}
.people-list .people-options .btn-default {
  border-color: transparent;
}
.people-list .people-options .btn-default:hover,
.people-list .people-options .btn-default:focus {
  border-color: transparent;
}
.people-list .people-count {
  padding-top: 10px;
  font-weight: 400;
  color: #9fa8bc;
}
.people-list .people-count > strong {
  font-weight: 500;
  color: #dbdfe6;
  margin: 0 3px;
}
.people-list .people-pager {
  margin-left: 15px;
}
.people-list .people-pager > .btn {
  font-size: 14px;
  margin-left: 1px;
  line-height: 17px;
  border-color: transparent;
}
.people-list .people-pager > .btn:first-child {
  margin-left: 0;
}
.people-list .people-pager > .btn:hover,
.people-list .people-pager > .btn:focus {
  border-color: transparent;
}
/***** TIMELINE *****/
.timeline-wrapper {
  margin-left: 123px;
  position: relative;
  border-left: 2px solid #657390;
  padding-left: 40px;
}
@media (max-width: 640px) {
  .timeline-wrapper {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
  }
}
.timeline-wrapper .timeline-date {
  position: relative;
  background-color: #657390;
  width: 250px;
  padding: 10px 25px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  border-radius: 2px;
  margin-bottom: 40px;
  margin-left: -165px;
}
@media (max-width: 640px) {
  .timeline-wrapper .timeline-date {
    padding-left: 10px;
    padding-right: 10px;
    width: auto;
    margin-left: 0;
    margin-top: 20px;
  }
}
.timeline-wrapper .timeline-date > a {
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.timeline-wrapper .timeline-date > a:hover,
.timeline-wrapper .timeline-date > a:focus {
  color: #fff;
}
.timeline-wrapper .panel-post-item {
  position: relative;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item {
    margin-bottom: 0;
    margin-top: 70px;
  }
}
.timeline-wrapper .panel-post-item:before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 2px solid #657390;
  position: absolute;
  top: 15px;
  left: -62px;
  background-color: #d8dce3;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item:before {
    top: -55px;
    left: 0;
  }
}
.timeline-wrapper .panel-post-item .panel-heading:before {
  border-right: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: "";
  display: inline-block;
  left: -8px;
  position: absolute;
  top: 27px;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item .panel-heading:before {
    display: none;
  }
}
.timeline-wrapper .panel-post-item:after {
  font-family: 'FontAwesome';
  position: absolute;
  left: -48px;
  font-size: 14px;
  color: #657390;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item:after {
    left: 13px;
  }
}
.timeline-wrapper .panel-post-item.status:after {
  content: '\f040';
  top: 25px;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item.status:after {
    top: -45px;
  }
}
.timeline-wrapper .panel-post-item.commented:after {
  content: '\f075';
  top: 24px;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item.commented:after {
    top: -46px;
  }
}
.timeline-wrapper .panel-post-item.pictures:after {
  content: '\f03e';
  top: 25px;
  left: -50px;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item.pictures:after {
    left: 12px;
    top: -45px;
  }
}
.timeline-wrapper .panel-post-item.twitter:after {
  content: '\f099';
  top: 25px;
  left: -49px;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item.twitter:after {
    left: 13px;
    top: -45px;
  }
}
.timeline-wrapper .panel-post-item .media-time {
  position: absolute;
  top: 20px;
  left: -225px;
  font-size: 22px;
  letter-spacing: normal;
  text-align: right;
  font-weight: 400;
  color: #505b72;
  width: 150px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .timeline-wrapper .panel-post-item .media-time {
    left: 0;
    top: -50px;
  }
}
/***** PROFILE *****/
.profile-wrapper {
  margin: 0;
  display: table;
  width: 100%;
}
@media (max-width: 1024px) {
  .profile-wrapper {
    display: block;
    width: auto;
  }
}
.profile-wrapper .profile-left,
.profile-wrapper .profile-right,
.profile-wrapper .profile-sidebar {
  padding: 0;
  float: none;
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 991px) {
  .profile-wrapper .profile-left,
  .profile-wrapper .profile-right,
  .profile-wrapper .profile-sidebar {
    display: block;
  }
}
.profile-wrapper .profile-left {
  background-color: #464f63;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
}
@media (max-width: 1024px) {
  .profile-wrapper .profile-left {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .profile-wrapper .profile-left {
    display: table;
    width: 100%;
  }
  .profile-wrapper .profile-left .profile-left-heading,
  .profile-wrapper .profile-left .profile-left-body {
    display: table-cell;
    vertical-align: top;
  }
  .profile-wrapper .profile-left .profile-left-heading {
    width: 40%;
  }
  .profile-wrapper .profile-left .profile-left-body {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .profile-wrapper .profile-left .profile-left-heading,
  .profile-wrapper .profile-left .profile-left-body {
    display: block;
    width: auto;
  }
}
.profile-wrapper .profile-right {
  background-color: #fff;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
@media (max-width: 1024px) {
  .profile-wrapper .profile-right {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .profile-wrapper .profile-right {
    width: 100%;
    margin-top: 20px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
  }
}
.profile-wrapper .profile-right .profile-right-body {
  background-color: transparent;
  padding: 20px;
}
.profile-wrapper .profile-right .profile-right-body .panel {
  border-bottom: 1px solid #dbdfe6;
  padding-bottom: 40px;
  margin-bottom: 35px;
}
.profile-wrapper .profile-right .profile-right-body .panel-heading {
  padding: 0 0 15px;
}
.profile-wrapper .profile-right .profile-right-body .panel-body {
  padding: 0 0 15px;
  line-height: 18px;
}
.profile-wrapper .profile-right .profile-right-body .panel-footer {
  padding: 0;
  background-color: transparent;
}
.profile-wrapper .profile-right .profile-right-body .form-group {
  margin: 15px 0 0;
}
.profile-wrapper .profile-right .profile-right-body .form-control {
  border-color: #bdc3d1;
  padding-left: 12px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
.profile-wrapper .profile-sidebar {
  padding-left: 20px;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .profile-wrapper .profile-sidebar {
    width: 100%;
    display: block;
    float: left;
    margin-top: 20px;
    padding-left: 0;
  }
  .profile-wrapper .profile-sidebar .row > div {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .profile-wrapper .profile-sidebar {
    padding-left: 0;
    margin-top: 20px;
  }
}
/***** NOT FOUND PANEL *****/
.notfoundpanel {
  width: 720px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -55%);
  transform: translate(-50%, -55%);
}
@media (max-width: 640px) {
  .notfoundpanel {
    width: auto;
    position: static;
    -webkit-transform: none;
    transform: none;
    padding: 20px;
  }
}
.notfoundpanel h1 {
  font-size: 200px;
  font-weight: 700;
  line-height: 160px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  color: #3b4354;
  margin: 0 0 20px;
}
@media (max-width: 640px) {
  .notfoundpanel h1 {
    font-size: 100px;
    line-height: 100px;
  }
}
.notfoundpanel h3 {
  margin-top: 0;
  font-weight: 300;
  font-size: 30px;
  color: #505b72;
}
@media (max-width: 640px) {
  .notfoundpanel h3 {
    font-size: 24px;
  }
}
.notfoundpanel h4 {
  margin: 30px 0 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  color: #5b6781;
  letter-spacing: .3px;
}
.notfoundpanel form {
  width: 350px;
  margin: auto;
}
@media (max-width: 360px) {
  .notfoundpanel form {
    width: 280px;
  }
}
.notfoundpanel .list-inline {
  text-align: left;
}
@media (max-width: 560px) {
  .notfoundpanel .list-inline > li:last-child {
    display: block;
    float: none !important;
    text-align: left;
    margin-top: 10px;
  }
}
@media (max-width: 360px) {
  .notfoundpanel .list-inline > li {
    display: block;
    float: none;
  }
  .notfoundpanel .list-inline > li + li {
    margin-top: 5px;
  }
}
/***** SIGN IN/UP *****/
.signwrapper {
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
@media (max-width: 767px) {
  .signwrapper {
    background-image: none;
    background-color: #262b36;
  }
}
.signwrapper .input-group > .input-group-addon {
  background-color: #fff;
  border-color: transparent;
  padding-right: 0;
}
.signwrapper .input-group > .input-group-addon > i {
  color: #262b36;
}
.signwrapper .form-control {
  border-color: transparent;
  background-color: #fff;
}
.signwrapper .panel-heading {
  padding-top: 10px;
}
.signwrapper .panel-body {
  padding-bottom: 0;
}
.signwrapper .panel-title {
  text-align: center;
  color: #fff;
  margin-top: 20px;
  text-transform: none;
  font-weight: 200;
  font-size: 20px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: .7px;
}
.signwrapper .select2-dropdown {
  z-index: 400;
  border-color: transparent;
}
.signwrapper .select2-container--default .select2-selection--single {
  border-color: transparent;
}
.signwrapper .btn-sign {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.3);
}
.signwrapper .btn-sign:hover,
.signwrapper .btn-sign:focus {
  border-color: rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}
.sign-overlay {
  background-image: none;
  background-color: #262b36;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 1;
}
@media (max-width: 767px) {
  .sign-overlay {
    display: none;
  }
}
.signpanel {
  background-color: #262b36;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  opacity: 0.75;
}
@media (max-width: 767px) {
  .signpanel {
    background-image: none;
    background-color: #262b36;
    opacity: 1;
  }
}
/***** SIGN IN *****/
.signin {
  width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #262b36;
  padding: 20px;
  z-index: 300;
}
@media (max-width: 767px) {
  .signin {
    top: 20px;
    left: 0;
    -webkit-transform: none;
    transform: none;
    width: 400px;
    position: relative;
    margin: auto;
    padding-top: 0;
  }
}
@media (max-width: 360px) {
  .signin {
    width: 320px;
  }
}
.signin h1 {
  color: #259DAB;
  text-align: center;
  margin: 0;
  font-weight: 500;
}
.signin .forgot {
  margin: 10px 0 21px;
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.signin .forgot:hover,
.signin .forgot:focus {
  color: #fff;
}
.signin .btn-fb {
  color: rgba(255, 255, 255, 0.8);
}
.signin .btn-fb:hover,
.signin .btn-fb:focus {
  color: rgba(255, 255, 255, 0.5);
}
/***** SIGN UP *****/
.signup {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 300;
  width: 900px;
}
@media (max-width: 767px) {
  .signup {
    top: 20px;
    left: 0;
    -webkit-transform: none;
    transform: none;
    width: 400px;
    position: relative;
    margin: auto;
    padding-top: 0;
  }
}
@media (max-width: 360px) {
  .signup {
    width: 300px;
  }
}
.signup h1 {
  color: #259DAB;
  text-align: center;
  margin: 0;
  font-weight: 500;
}
.signup .panel {
  background-color: #262b36;
  padding: 20px 20px 40px 20px;
}
@media (max-width: 360px) {
  .signup .panel {
    padding: 0;
  }
}
.signup .row > div {
  padding-left: 7px;
  padding-right: 7px;
}
.signup .row > div:first-child {
  padding-left: 10px;
}
.signup .row > div:last-child {
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.signup .signtitle {
  color: #259DAB;
  font-weight: 200;
  letter-spacing: .5px;
  margin-top: 0;
}
.signup .sign-sidebar {
  padding: 7em 40px 0;
}
@media (max-width: 767px) {
  .signup .sign-sidebar {
    display: none;
  }
}
.signup .sign-sidebar p {
  line-height: 21px;
  font-weight: 200;
  letter-spacing: .5px;
  font-size: 14px;
}
.signup .sign-sidebar h4 {
  margin: 0 0 20px;
  color: #259DAB;
}
.signup .sign-sidebar .panel-title {
  text-align: left;
  color: #fff;
}
.signup .sign-sidebar .reason {
  font-weight: 700;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #fff;
}
/***** DASHBOARD *****/
.dash-left .table > thead > tr > th,
.dash-right .table > thead > tr > th,
.dash-left .table > tbody > tr > th,
.dash-right .table > tbody > tr > th,
.dash-left .table > tfoot > tr > th,
.dash-right .table > tfoot > tr > th,
.dash-left .table > thead > tr > td,
.dash-right .table > thead > tr > td,
.dash-left .table > tbody > tr > td,
.dash-right .table > tbody > tr > td,
.dash-left .table > tfoot > tr > td,
.dash-right .table > tfoot > tr > td {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) and (max-width: 1024px) {
  .dash-left,
  .dash-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .dash-right .col-sm-5 {
    width: 41.6667%;
  }
}
@media (max-width: 640px) {
  .dash-right .col-sm-5 {
    width: 50%;
    float: left;
  }
}
@media (max-width: 560px) {
  .dash-right .col-sm-5 {
    width: auto;
    float: none;
  }
}
/***** CUSTOM STYLES *****/
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mr30 {
  margin-right: 30px;
}
.mt0 {
  margin-top: 0;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.padding5 {
  padding: 5px;
}
.padding10 {
  padding: 10px;
}
.nomargin {
  margin: 0;
}
.noshadow {
  box-shadow: none;
}
.nopadding {
  padding: 0;
}
.nopaddingtop {
  padding-top: 0 !important;
}
.nopaddingbottom {
  padding-bottom: 0 !important;
}
.italic {
  font-style: italic;
}
.dark {
  color: #333;
}
.width100p {
  width: 100%;
}
.width20 {
  width: 20px;
}
.width30 {
  width: 30px;
}
.width50 {
  width: 50px;
}
.width60 {
  width: 60px;
}
.width70 {
  width: 70px;
}
.width80 {
  width: 80px;
}
.width100 {
  width: 100px;
}
.width120 {
  width: 120px;
}
.width200 {
  width: 200px;
}
.inblock {
  display: inline-block;
}
.dash-title {
  padding: 14px 18px;
  background-color: #505b72;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
.btn-demo .btn {
  float: left;
  margin: 10px 10px 0 0;
  min-width: 100px;
}
.btn-demo .btn.btn-icon {
  min-width: 0;
}
.btn-demo:before,
.btn-demo:after {
  content: " ";
  display: table;
}
.btn-demo:after {
  clear: both;
}
.btn-demo:before,
.btn-demo:after {
  content: " ";
  display: table;
}
.btn-demo:after {
  clear: both;
}
.fontawesome-icon-list .col-md-3 {
  margin-bottom: 8px;
}
.fontawesome-icon-list i {
  font-size: 14px;
  width: 16px;
  margin-right: 8px;
  text-align: center;
  color: #262b36;
}
.fonticon-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.fontawesome-list,
.weathericon-list {
  list-style: none;
  padding: 0;
}
.fonticon-list li,
.fontawesome-list li,
.weathericon-list li {
  display: block;
  margin-bottom: 5px;
}
.fonticon-list li span,
.fontawesome-list li span,
.weathericon-list li span {
  color: #333333;
  vertical-align: middle;
  margin-right: 8px;
  min-width: 20px;
  display: inline-block;
  width: 20px;
}
.weathericon-list li span {
  font-size: 16px;
}
.tooltip-example .btn,
.popover-example .btn {
  margin: 0 5px 5px 0;
}
.flot-chart {
  width: 100%;
  height: 300px;
}
.nav-wrapper {
  border-radius: 2px;
  padding: 1px 0;
  margin-bottom: 20px;
}
.nav-wrapper.white {
  background-color: #fff;
}
.nav-wrapper.quirk {
  background-color: #3b4354;
}
@media (max-width: 480px) {
  .demo-navwrapper > div {
    width: auto;
    float: none;
    display: block;
  }
}
.calendar-widget {
  margin-bottom: 20px;
}
.calendar-widget .ui-datepicker-inline {
  border-color: transparent;
}
.calendar-widget .ui-datepicker-inline {
  max-width: none;
}
.gritter-demo .gritter-item-wrapper > .gritter-item {
  z-index: 0;
}
.gritter-demo .gritter-item-wrapper > .gritter-item p {
  line-height: 22px;
  margin-bottom: 0;
}
.gritter-demo .gritter-item-wrapper > .gritter-item:before {
  top: 13px;
}
.signin-demo {
  position: static;
  -webkit-transform: none;
  transform: none;
  width: auto;
  background-color: #3b4354;
}
.signin-demo .panel-heading {
  padding-top: 10px;
}
.signin-demo .panel-title {
  color: #fff;
  text-align: center;
  margin: 20px 0 0;
  text-transform: none;
  font-weight: 200;
  font-size: 18px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: .5px;
}
.signin-demo .input-group-addon {
  border-color: transparent;
  background-color: #fff;
  padding-right: 0;
}
.signin-demo .form-control {
  border-color: transparent;
  background-color: #fff;
}
.demo-colorpicker > div {
  margin-bottom: 20px;
}
.demo-colorpicker > div:last-child {
  margin-bottom: 0;
}
.paddingtop10 {
  padding-top: 10px;
}
.paddingtop15 {
  padding-top: 15px;
}
.paddingtop20 {
  padding-top: 20px;
}
/*!
 * Font drone
 * Made with love by Icons8 [ https://icons8.com/ ] using FontCustom [ https://github.com/FontCustom/fontcustom ]
 *
 * Contacts:
 *    [ https://icons8.com/contact ]
 *
 * Follow Icon8 on
 *    Twitter [ https://twitter.com/icons_8 ]
 *    Facebook [ https://www.facebook.com/Icons8 ]
 *    Google+ [ https://plus.google.com/+Icons8 ]
 *    GitHub [ https://github.com/icons8 ]
 */
@font-face {
  font-family: "drone";
  src: url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.eot");
  src: url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.eot?#iefix") format("embedded-opentype"), url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.woff2") format("woff2"), url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.woff") format("woff"), url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.ttf") format("truetype"), url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.svg#drone") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "drone";
    src: url("../fonts/drone_8dbd5036641aa939e7f12204085ed2e4.svg#drone") format("svg");
  }
}
[data-icons8]:before,
.icons8-drone:before,
.icons8-drone-2:before,
.icons8-drone-3:before,
.icons8-drone-4:before,
.icons8-drone-5:before,
.icons8-drone-filled:before,
.icons8-quadcopter:before,
.icons8-quadcopter-2:before,
.icons8-quadcopter-3:before,
.icons8-quadcopter-filled:before {
  display: inline-block;
  font-family: "drone";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
[data-icons8]:before {
  content: attr(data-icons8);
}
.icons8-drone:before {
  content: "\f102";
}
.icons8-drone-2:before {
  content: "\f103";
}
.icons8-drone-3:before {
  content: "\f104";
}
.icons8-drone-4:before {
  content: "\f105";
}
.icons8-drone-5:before {
  content: "\f107";
}
.icons8-drone-filled:before {
  content: "\f100";
}
.icons8-quadcopter:before {
  content: "\f108";
}
.icons8-quadcopter-2:before {
  content: "\f10a";
}
.icons8-quadcopter-3:before {
  content: "\f10b";
}
.icons8-quadcopter-filled:before {
  content: "\f109";
}
h1.auth-logo {
  background-image: url('data:image/png;base64,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');
  background-size: contain;
  width: 200px;
  height: 125px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  text-indent: -99999px;
}
.modal-body {
  font-size: 16px;
}
.ui-sortable-handle {
  cursor: move;
  /* fallback: no `url()` support or images disabled */
  cursor: -webkit-grab;
  /* Chrome 1-21, Safari 4+ */
  /* Firefox 1.5-26 */
  cursor: grab;
  /* W3C standards syntax, should come least */
}
.dataTables_wrapper select {
  min-width: 60px !important;
}
@media (min-width: 768px) {
  .dataTables_wrapper .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.dataTables_empty {
  text-align: center;
}
.dataTables_wrapper .dataTables_processing {
  background: none !important;
  background-color: #259DAB !important;
  color: white !important;
  width: 25%;
  left: 50%;
  margin-left: -12.5%;
  opacity: 0.8;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.app a[disabled],
.app a[disabled] i,
.app a[disabled]:hover,
.app a[disabled] i:hover {
  opacity: 0.60;
  pointer-events: none;
}
.app .breadcrumb {
  padding: 0 20px;
}
.app .dropdown-header {
  display: block;
  padding: 3px 7px;
  font-size: 11px;
  line-height: 1.42857143;
  color: #777777;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.app .navbar {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #C5CAD1;
  border-top: 0;
}
.app .nav .open > a,
.app .nav .open > a:hover,
.app .nav .open > a:focus {
  background-color: #fff;
  border-color: none;
}
.app .navbar-nav > li.active > a {
  color: #00437B;
}
.app .navbar-brand {
  display: block;
  width: 196px;
  height: 23px;
  margin: 14px 0 0 14px;
  background-image: url('data:image/png;base64,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');
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -99999px;
  opacity: 0.80;
}
.app .navbar-brand:hover {
  opacity: 1.0;
}
.app .navbar-right .dropdown img {
  vertical-align: middle;
  margin-right: 5px;
  width: 20px;
  border-radius: 50px;
}
.app .pagination > .active > a,
.app .pagination > .active > span,
.app .pagination > .active > a:hover,
.app .pagination > .active > span:hover,
.app .pagination > .active > a:focus,
.app .pagination > .active > span:focus {
  background-color: #505b72;
}
.app .heading {
  margin-bottom: 1.2em;
}
.app .heading h2 {
  margin-top: 0;
  float: left;
}
.app .heading .btn {
  float: right;
}
.app .heading:before,
.app .heading:after {
  content: " ";
  display: table;
}
.app .heading:after {
  clear: both;
}
.app #rfid-search #response {
  margin-top: 30px;
  margin-bottom: 50px;
}
.app .form-control-static {
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  min-height: 27px;
}
.app .sweet-alert p .app-alert {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
.app .panel-menu .panel-body {
  padding: 0;
}
.app .panel-menu .list-group-item {
  padding-left: 20px;
  padding-right: 20px;
}
.app #response.row {
  opacity: 0;
}
.app .alert-success .btn-success {
  background-color: #47802F;
}
.app .alert-success .btn-success:hover {
  background-color: #396526;
}
.app .alert-success i {
  color: #529138;
}
.app .alert-danger i {
  color: #712d2d;
}
.app .alert-warning i {
  color: #9c8611;
}
.app .module-table tbody td {
  white-space: nowrap;
}
.app .module-table tbody td:first-child {
  width: 60%;
}
.app .module-table tbody td:last-child {
  width: 1%;
}
.app .module-table tbody select {
  width: 100%;
}
.app .accordion h4.panel-title {
  font-size: 18px !important;
}
.app .accordion h4.panel-title > a:after {
  top: 19px !important;
}
.app .wizard {
  border: #9fa8bc 2px solid;
}
.app .wizard .content h3 {
  margin-top: 0;
  color: #505b72;
}
.app .wizard.vertical .content {
  min-height: 350px;
  height: auto;
  overflow-y: auto;
}
.app .wizard > .steps > ul > li:first-child > a {
  border-top-left-radius: 0;
}
.app .cart {
  padding: 0 4px;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app .cart .tag {
  margin-top: 4px;
  margin-right: 4px;
  padding: 4px 10px 4px 8px;
  border-color: transparent;
  border-radius: 2px;
  background-color: #259DAB;
  color: #fff;
  cursor: default;
  float: left;
}
.app .cart .tag .remove {
  margin-right: 2px;
  opacity: .65;
  cursor: pointer;
}
.app .cart .tag .remove:hover {
  opacity: 1.0;
}
.app .shop {
  border: #9fa8bc 2px solid;
}
.app .shop .panel-heading {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.app .counter span {
  display: block;
  font-size: 30px;
}
.app .footer .container {
  background-color: #505B72;
  color: #fff;
}
.app .footer .container p {
  padding: 10px 0 0;
}
@media (min-width: 992px) {
  .app li.dropdown {
    max-height: 50px;
  }
  .app .navbar-right .dropdown-menu {
    border: 1px solid #C5CAD1;
    border-top: 0;
    margin-top: 0;
    margin-right: -8px;
    padding: 5px;
    background-color: #fff;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    box-shadow: none;
    min-width: 200px;
  }
}
@media (min-width: 768px) {
  .app .navbar-right .dropdown-menu {
    left: auto;
    right: 7px;
  }
  .app .breadcrumb {
    margin-left: 5px;
    margin-right: 5px;
    padding: 0;
  }
}
.app .contentpanel {
  padding: 0;
}
.admin .logopanel h2 a {
  display: inline-block;
  width: 190px;
  height: 22px;
  background-image: url('data:image/png;base64,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tT+sOdSayWzNeo3S/31tI7/zR9/8S2shrJv082soyznqR/zjMbu/lN7oepbXLK1RvybubM1pVua/iv2y3PsjX9Y88pz2wjO5zp5tJPdeOWcNl3s5JrB3sya82zrLmeuJdY/1Ztaa+rpShfc61r1MK21Xx/QZkFdeox6nxHol90mXve6lMp+j7pdsb6P+z1obtmY/vms09le83Mct6COs860JP1Yv7JdjXv+3IfchEHsZdcy1yrRVptnzGtm3/xNBnNH9kf9HZT5Hff4/xf8Zf/b+kHbinL0Zjvgz/8lYE35qvfqcl3sC+HpUp/RBt09ez/LKsNE+E/ezP3OdeY/KfK628H/fRymfUKY8LzHWMX4yltGe14afUi/CGDf4jwAb074Qc233fx9zco/ymP/5fyLzKPX73f+zMp+rY/7PuR079H6SdS318Sl9g7+Iyzy2Vfgxu2cYtuT9OudhxnDiYue0NXud+DP3KI+Vg39r8SFtJ23KntnI/6Myn/MuyH5b1il9R9/OumKP0VhF3Eyv59f92fvBmnDCluqVYdSDuaT7N+fy0TcYz/fnRnn1MNpA34tMGxM/856Vufe1S2hpvUA9vvS/UkoppZRSSimllFJKXU07EREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREREZE75B+Hl45qN6ZdJgAAAVNta0JU+s7K/gB/VYkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHic7dbhaYNgFIZRB3ERB3EQF3EQB3ERB7G8gQu3piH/ignngUObT/vrTWzOU5IkSZIkSZIkSZIkSZIkSZIkSR/RcRznvu9P5znLtXf3v7pP929d13Mcx3OapsfP7Bj9LPfUvXUWy7I8XscwDH++h3TvsmOVfbNhdq3N+z21f9U3v/6N7l+263tWOeuf5XqdffvG2b+6XtP9y3O+71//1+d5fto/1+z/fWXbeu7X79u2/frM9+e//b+v+h7X96v3QK7Vd/ucRdWfHddrkiRJkiRJkiRJ+vcGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA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bnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIj4KICAgICAgICAgPHhtcDpDcmVhdG9yVG9vbD5BZG9iZSBGaXJld29ya3MgQ1M2IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE2LTAzLTE0VDE5OjMwOjU2WjwveG1wOkNyZWF0ZURhdGU+CiAgICAgICAgIDx4bXA6TW9kaWZ5RGF0ZT4yMDE2LTAzLTE0VDE5OjMxOjIyWjwveG1wOk1vZGlmeURhdGU+CiAgICAgIDwvcmRmOkRlc2NyaXB0aW9uPgogICAgICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgICAgICAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PohBrwgAAAjISURBVHja7ZsJbBVFGMextLSFYqGohVqQlluRU0AF8YhKFI8ICgpEVBRRVCKHSgLeMV5BDjkkoBABEZRLgYCigAKKUKClSEFALBXlqFSl0ta+9f/F/+K47Ozbt2+3aRMm+eVBd998O7P/mffNN99UMwyjmuC14LsXgW6gC7kCtBo6e2Pm+Y/O7dBs5MLLQRcXdALNQRKoAWJc2K4O4kENBfl/nMe2xFjqOl2neU8oFDpHc4+fNv/XBrazhk/EkVhpi5tnZJtjlWdLAIkKdUEqqK8g/0/h9QR+15XNMLakzgYWW2mgtnJPAolnW2NMnZ/WezTC5wNOMP4r5eWh0JHPdhZMbzhs/vrM4QsMCDhSToFNYBRIdbAtHXM/yAEbFLLAu9I5HtpzI1gBNlnq3Cqdy3uaga8s1+X+D6WDPdpcC75V6tsO3jHbgM+BYA3YaLEbKV+CZWA+mATuA01EJA6D8gLQD8wE60EuKACnQMhwLnK9DBwDm8F7YICIVGMvCfTkfdLWPHAElBqRld/BQZDN9o7iBH2OX8KXmWg8jZWeKivf/vLS7TNShszJazpioRfRW/kF3KCxLSP6eU3Dt4FMD+2Rl1KoqbMJ72mvub7fo/AHUBzWIgMhg/eMpdCCKtNBPZt325vC87tI2+pb7DUCywNs4x/gVj9n/Mmg5ERxycreE9bMrDtkTlHzUb6I3uQvcKlG+M9pGrk1CuEfcyH8cpvrP0Qh/BKb+jYpwh8Dio1gyxJQU3muriA/QHvLLO9yshF8+ROk+yF8cTdeKSg8+XXr0R/PSh06z2g+6iM/RS+EwKqzwg9c+OJODFKe662A7R2QdYDSp4VGxZSnfRH+uJU5PVo/s2hd+rD5hmWmF189H+wF+x3YR34C5RrxF4HqZ4VvO4PJrPwTP62Yfz8EfgUnwohipvJcixzu+w18T5dyM10X8zOLZLNPTmrq+Blcr6xzwvnshzhY9hHx/3eDPcrfDrKdTmVp1MKX0uCxeRMzsIi1cW9ywe2gBWjrQBtxZUBXMI2ujbWuP0BCBML/zlyMRijCPuBoFRK++MTX0i3pZoP592vALQwGTHcY3J8p0ZTVmntEgA/SZYjXuL8SSUkGF4OnNPXIIOzD79yruaecC/LB4Gr2fRvQmotyWbA2BZfyb13YzvEOgzw7auFDjLFgomaW3gySI6wvExyzcXV+jdDV2QE6g/MsYS8n6oGh4HgVEv5Uj7/UzzpNGAwZbtTcM9KDvcOc+U2KOTvfyuvDNbbkV6WxxzZO00SDfvFL+BM0wpeQ5ABwF+gVhjtAX/AhKLGpa1KEwj/BEOEShifd8DEHTEkVEv67drOuC5tXOsyGjTkRbNHc09ND5K8XeIC/OMIgcA9oyJCpLjo3L4r9pds1k9hfQQt/Dcj2YXG7HjSIUPhBlHDC3+t2Q6gSCL8zBWAtuXQhzufsb1eureZj4Xt8TWNrRhT1duPsblcCFf4XYGuUot8lu7kOHVaZhC8zfqyHF9RfE6MPUvjtubg8Y/DKrjtdRJ3wr/ZZ+LLT+obG1tQo6u1AFysQ4ceAcRrRfg6yohT+ATAe1KkCwpeoQpKHFyQLu79t6vva9G8DEn6BxqduFkb43auI8NtoBrcvwo8T/1sj2tVgHSgFxQ6cJE4DYG4lEn5bjfAl1Jbi4QU9rLEnKQrpAQm/E0Oh1iLpHxnMs9H5+Nf4LHyJAL2usTUlino7Bznj12P0xk6sy0B3STkA17mgJ5isCWdKfL9dBMIvZKjvfbDAJbPANw6pAabwm2uEL1GKRh5e0AiNvRVKfpDfwr9c04YsLjjrOER1enhY3D7A9/GphRG854Vw+woe2thDE5r2ZXH7KijTCH+ch/oSJXRpU5dEeoZFIHxJ8mrHjL26LqnFeHG4cGZ9jWtSJMlkHl7QXI29hbLIDCicqeu3jQzrJjMhza4M9mBvsaau5WEGf5bZBx5svqkJGhx2FD6ElmHZZBI6c1NqLH34Yo3oxXUZCZqE2bwykQ0sSWF+Q1On/AqMjnAD60IPndXXxQZWTU1WYoh+vmyJd+emSmPOoCmMlDRi1OQScBNn7CJdRAOcG0b4qxm2k7pu1mBe68V9ilkOg3s5Z+jadLXsyo8MRSa76E+p5zaHdIQFSvapXSljG/tzsdqUrlgaB2gK3TLZyMpkv14FXnZ4jzla4XMXNc8mreBHcMRhljdZC+aAPWHSFdT6DzjUK4NhYCVJWYhxCJMZdJXyOQh2c8Eonb2T/85jBOhwmDXFi+a+gIPwi/ksh/lph3ntqMavP8OnZhuXOtx3jDH/7+gebuBi3Pz8htd2hOmr2Ypb4lQKuYbaw/7bxT7NYQh2t9Kv+Ro3ziyf2AofAksDB6OIxEjs/gPwu4+JapL3k14ZhM9DGR9VwGL6TuW5KiJJTervr9gMOltSBuFo2upo/Js2XBFl7BnC58mntVEIdBuYAQp8ztCcUVmyM5WIQZBllaHkq1eQ8GWBn6jYvMnBXfCjFChRq1p07YIuJXSVzhD+Ox6FeZSCX8yEspCPopdnSopQ+FlRCP+4C+GLK9DPIfMwmiKpFi0szzVGs9PqV5liricsyWYPBdRGcV36Wuw1dVhQ+1FKuYb7/0EUiOsJF7676nrskPg6eJuhy6OaPBsv+fd7Kfiu1qxMy1mAR5gtmKOwn7OXl8VtT/qouyx1ir/e0OZYnmQoPs48n138tSiL8IUU0V+eTfu1bZ5rMH3mXMtzRcoWDixJOZ7EvBmno4exXDQ+yTZmMw8qFEH7Qhw8sr5Zxroa2uU1Mbp2N23t5AaUl5Nn5ZzA9nOR/hJoaShnb1Xht3VxMLwd1wA1QTw4j9+5jNfdHiy3oyNoBVJYd6zLGLF5qFgl2oPf1vridXk4/E6c8d/B6FqM4KRRVK3Y6S35b4n0XMCwaLLy/HFh2hnvE+aBc9eHzW3amMjd3XTua7S0oYVMPtY2hkvk4xrKaks9YG7tU7Nf0xnhSeU7SFDaW92wHDb/B3WNgHCtAV7vAAAAAElFTkSuQmCC');
  background-size: contain;
  text-indent: -99999px;
}
.admin a[disabled],
.admin a[disabled] i,
.admin a[disabled]:hover,
.admin a[disabled] i:hover {
  opacity: 0.60;
  pointer-events: none;
}
.admin .heading {
  margin-bottom: 1.2em;
}
.admin .heading h2 {
  margin-top: 0;
  float: left;
}
.admin .heading .btn {
  float: right;
}
.admin .heading:before,
.admin .heading:after {
  content: " ";
  display: table;
}
.admin .heading:after {
  clear: both;
}
.admin .panel-footer {
  background-color: #fff;
}
.admin .panel-footer:before,
.admin .panel-footer:after {
  content: " ";
  display: table;
}
.admin .panel-footer:after {
  clear: both;
}
@media (min-width: 768px) {
  .admin .pagination {
    float: right;
  }
}

/*# sourceMappingURL=app.css.map */
