/* nvd3 version 1.8.6 (https://github.com/novus/nvd3) 2017-08-23 */
.nvd3 .nv-axis {
    pointer-events:none;
    opacity: 1;
}

.nvd3 .nv-axis path {
    fill: none;
    stroke: #000;
    stroke-opacity: .75;
    shape-rendering: crispEdges;
}

.nvd3 .nv-axis path.domain {
    stroke-opacity: .75;
}

.nvd3 .nv-axis.nv-x path.domain {
    stroke-opacity: 0;
}

.nvd3 .nv-axis line {
    fill: none;
    stroke: #e5e5e5;
    shape-rendering: crispEdges;
}

.nvd3 .nv-axis .zero line,
    /*this selector may not be necessary*/ .nvd3 .nv-axis line.zero {
    stroke-opacity: .75;
}

.nvd3 .nv-axis .nv-axisMaxMin text {
    font-weight: bold;
}

.nvd3 .x  .nv-axis .nv-axisMaxMin text,
.nvd3 .x2 .nv-axis .nv-axisMaxMin text,
.nvd3 .x3 .nv-axis .nv-axisMaxMin text {
    text-anchor: middle;
}

.nvd3 .nv-axis.nv-disabled {
    opacity: 0;
}

.nvd3 .nv-bars rect {
    fill-opacity: .75;

    transition: fill-opacity 250ms linear;
}

.nvd3 .nv-bars rect.hover {
    fill-opacity: 1;
}

.nvd3 .nv-bars .hover rect {
    fill: lightblue;
}

.nvd3 .nv-bars text {
    fill: rgba(0,0,0,0);
}

.nvd3 .nv-bars .hover text {
    fill: rgba(0,0,0,1);
}

.nvd3 .nv-multibar .nv-groups rect,
.nvd3 .nv-multibarHorizontal .nv-groups rect,
.nvd3 .nv-discretebar .nv-groups rect {
    stroke-opacity: 0;

    transition: fill-opacity 250ms linear;
}

.nvd3 .nv-multibar .nv-groups rect:hover,
.nvd3 .nv-multibarHorizontal .nv-groups rect:hover,
.nvd3 .nv-candlestickBar .nv-ticks rect:hover,
.nvd3 .nv-discretebar .nv-groups rect:hover {
    fill-opacity: 1;
}

.nvd3 .nv-discretebar .nv-groups text,
.nvd3 .nv-multibarHorizontal .nv-groups text {
    font-weight: bold;
    fill: rgba(0,0,0,1);
    stroke: rgba(0,0,0,0);
}

/* boxplot CSS */
.nvd3 .nv-boxplot circle {
  fill-opacity: 0.5;
}

.nvd3 .nv-boxplot circle:hover {
  fill-opacity: 1;
}

.nvd3 .nv-boxplot rect:hover {
  fill-opacity: 1;
}

.nvd3 line.nv-boxplot-median {
  stroke: black;
}

.nv-boxplot-tick:hover {
  stroke-width: 2.5px;
}
/* bullet */
.nvd3.nv-bullet { font: 10px sans-serif; }
.nvd3.nv-bullet .nv-measure { fill-opacity: .8; }
.nvd3.nv-bullet .nv-measure:hover { fill-opacity: 1; }
.nvd3.nv-bullet .nv-marker { stroke: #000; stroke-width: 2px; }
.nvd3.nv-bullet .nv-markerTriangle { stroke: #000; fill: #fff; stroke-width: 1.5px; }
.nvd3.nv-bullet .nv-markerLine { stroke: #000; stroke-width: 1.5px; }
.nvd3.nv-bullet .nv-tick line { stroke: #666; stroke-width: .5px; }
.nvd3.nv-bullet .nv-range.nv-s0 { fill: #eee; }
.nvd3.nv-bullet .nv-range.nv-s1 { fill: #ddd; }
.nvd3.nv-bullet .nv-range.nv-s2 { fill: #ccc; }
.nvd3.nv-bullet .nv-title { font-size: 14px; font-weight: bold; }
.nvd3.nv-bullet .nv-subtitle { fill: #999; }

.nvd3.nv-bullet .nv-range {
    fill: #bababa;
    fill-opacity: .4;
}

.nvd3.nv-bullet .nv-range:hover {
    fill-opacity: .7;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick {
    stroke-width: 1px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover {
    stroke-width: 2px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect {
    stroke: #2ca02c;
    fill: #2ca02c;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect {
    stroke: #d62728;
    fill: #d62728;
}

.with-transitions .nv-candlestickBar .nv-ticks .nv-tick {
    transition: stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-candlestickBar .nv-ticks line {
    stroke: #333;
}

.nv-force-node {
    stroke: #fff;
    stroke-width: 1.5px;
}

.nv-force-link {
    stroke: #999;
    stroke-opacity: .6;
}

.nv-force-node text {
    stroke-width: 0px;
}

.nvd3 .nv-legend .nv-disabled rect {
    /*fill-opacity: 0;*/
}

.nvd3 .nv-check-box .nv-box {
    fill-opacity:0;
    stroke-width:2;
}

.nvd3 .nv-check-box .nv-check {
    fill-opacity:0;
    stroke-width:4;
}

.nvd3 .nv-series.nv-disabled .nv-check-box .nv-check {
    fill-opacity:0;
    stroke-opacity:0;
}

.nvd3 .nv-controlsWrap .nv-legend .nv-check-box .nv-check {
    opacity: 0;
}

/* line plus bar */
.nvd3.nv-linePlusBar .nv-bar rect {
    fill-opacity: .75;
}

.nvd3.nv-linePlusBar .nv-bar rect:hover {
    fill-opacity: 1;
}
.nvd3 .nv-groups path.nv-line {
    fill: none;
}

.nvd3 .nv-groups path.nv-area {
    stroke: none;
}

.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3.nv-scatter.nv-single-point .nv-groups .nv-point {
    fill-opacity: .5 !important;
    stroke-opacity: .5 !important;
}


.with-transitions .nvd3 .nv-groups .nv-point {
    transition: stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-scatter .nv-groups .nv-point.hover,
.nvd3 .nv-groups .nv-point.hover {
    stroke-width: 7px;
    fill-opacity: .95 !important;
    stroke-opacity: .95 !important;
}


.nvd3 .nv-point-paths path {
    stroke: #aaa;
    stroke-opacity: 0;
    fill: #eee;
    fill-opacity: 0;
}


.nvd3 .nv-indexLine {
    cursor: ew-resize;
}

/********************
 * SVG CSS
 */

/********************
  Default CSS for an svg element nvd3 used
*/
svg.nvd3-svg {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: block;
    width:100%;
    height:100%;
}

/********************
  Box shadow and border radius styling
*/
.nvtooltip.with-3d-shadow, .with-3d-shadow .nvtooltip {
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    border-radius: 5px;
}


.nvd3 text {
    font: normal 12px Arial, sans-serif;
}

.nvd3 .title {
    font: bold 14px Arial, sans-serif;
}

.nvd3 .nv-background {
    fill: white;
    fill-opacity: 0;
}

.nvd3.nv-noData {
    font-size: 18px;
    font-weight: bold;
}


/**********
*  Brush
*/

.nv-brush .extent {
    fill-opacity: .125;
    shape-rendering: crispEdges;
}

.nv-brush .resize path {
    fill: #eee;
    stroke: #666;
}


/**********
*  Legend
*/

.nvd3 .nv-legend .nv-series {
    cursor: pointer;
}

.nvd3 .nv-legend .nv-disabled circle {
    fill-opacity: 0;
}

/* focus */
.nvd3 .nv-brush .extent {
    fill-opacity: 0 !important;
}

.nvd3 .nv-brushBackground rect {
    stroke: #000;
    stroke-width: .4;
    fill: #fff;
    fill-opacity: .7;
}

/**********
*  Print
*/

@media print {
    .nvd3 text {
        stroke-width: 0;
        fill-opacity: 1;
    }
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick {
    stroke-width: 1px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover {
    stroke-width: 2px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive {
    stroke: #2ca02c;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative {
    stroke: #d62728;
}


.nvd3 .background path {
    fill: none;
    stroke: #EEE;
    stroke-opacity: .4;
    shape-rendering: crispEdges;
}

.nvd3 .foreground path {
    fill: none;
    stroke-opacity: .7;
}

.nvd3 .nv-parallelCoordinates-brush .extent {
    fill: #fff;
    fill-opacity: .6;
    stroke: gray;
    shape-rendering: crispEdges;
}

.nvd3 .nv-parallelCoordinates .hover  {
    fill-opacity: 1;
	stroke-width: 3px;
}


.nvd3 .missingValuesline line {
  fill: none;
  stroke: black;
  stroke-width: 1;
  stroke-opacity: 1;
  stroke-dasharray: 5, 5;
}

.nvd3.nv-pie path {
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear, stroke-width 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-pie .nv-pie-title {
    font-size: 24px;
    fill: rgba(19, 196, 249, 0.59);
}

.nvd3.nv-pie .nv-slice text {
    stroke: #000;
    stroke-width: 0;
}

.nvd3.nv-pie path {
    stroke: #fff;
    stroke-width: 1px;
    stroke-opacity: 1;
}

.nvd3.nv-pie path {
    fill-opacity: .7;
}

.nvd3.nv-pie .hover path {
    fill-opacity: 1;
}

.nvd3.nv-pie .nv-label {
    pointer-events: none;
}

.nvd3.nv-pie .nv-label rect {
    fill-opacity: 0;
    stroke-opacity: 0;
}

/* scatter */
.nvd3 .nv-groups .nv-point.hover {
    stroke-width: 20px;
    stroke-opacity: .5;
}

.nvd3 .nv-scatter .nv-point.hover {
    fill-opacity: 1;
}

.nv-noninteractive {
    pointer-events: none;
}

.nv-distx, .nv-disty {
    pointer-events: none;
}

/* sparkline */
.nvd3.nv-sparkline path {
    fill: none;
}

.nvd3.nv-sparklineplus g.nv-hoverValue {
    pointer-events: none;
}

.nvd3.nv-sparklineplus .nv-hoverValue line {
    stroke: #333;
    stroke-width: 1.5px;
}

.nvd3.nv-sparklineplus,
.nvd3.nv-sparklineplus g {
    pointer-events: all;
}

.nvd3 .nv-hoverArea {
    fill-opacity: 0;
    stroke-opacity: 0;
}

.nvd3.nv-sparklineplus .nv-xValue,
.nvd3.nv-sparklineplus .nv-yValue {
    stroke-width: 0;
    font-size: .9em;
    font-weight: normal;
}

.nvd3.nv-sparklineplus .nv-yValue {
    stroke: #f66;
}

.nvd3.nv-sparklineplus .nv-maxValue {
    stroke: #2ca02c;
    fill: #2ca02c;
}

.nvd3.nv-sparklineplus .nv-minValue {
    stroke: #d62728;
    fill: #d62728;
}

.nvd3.nv-sparklineplus .nv-currentValue {
    font-weight: bold;
    font-size: 1.1em;
}
/* stacked area */
.nvd3.nv-stackedarea path.nv-area {
    fill-opacity: .7;
    stroke-opacity: 0;
    transition: fill-opacity 250ms linear, stroke-opacity 250ms linear;
}

.nvd3.nv-stackedarea path.nv-area.hover {
    fill-opacity: .9;
}


.nvd3.nv-stackedarea .nv-groups .nv-point {
    stroke-opacity: 0;
    fill-opacity: 0;
}

.nvtooltip {
    position: absolute;
    background-color: rgba(255,255,255,1.0);
    color: rgba(0,0,0,1.0);
    padding: 1px;
    border: 1px solid rgba(0,0,0,.2);
    z-index: 10000;
    display: block;

    font-family: Arial, sans-serif;
    font-size: 13px;
    text-align: left;
    pointer-events: none;

    white-space: nowrap;

    -webkit-user-select: none;

       -moz-user-select: none;

        -ms-user-select: none;

            user-select: none;
}

.nvtooltip {
    background: rgba(255,255,255, 0.8);
    border: 1px solid rgba(0,0,0,0.5);
    border-radius: 4px;
}

/*Give tooltips that old fade in transition by
    putting a "with-transitions" class on the container div.
*/
.nvtooltip.with-transitions, .with-transitions .nvtooltip {
    transition: opacity 50ms linear;

    transition-delay: 200ms;
}

.nvtooltip.x-nvtooltip,
.nvtooltip.y-nvtooltip {
    padding: 8px;
}

.nvtooltip h3 {
    margin: 0;
    padding: 4px 14px;
    line-height: 18px;
    font-weight: normal;
    background-color: rgba(247,247,247,0.75);
    color: rgba(0,0,0,1.0);
    text-align: center;

    border-bottom: 1px solid #ebebeb;

    border-radius: 5px 5px 0 0;
}

.nvtooltip p {
    margin: 0;
    padding: 5px 14px;
    text-align: center;
}

.nvtooltip span {
    display: inline-block;
    margin: 2px 0;
}

.nvtooltip table {
    margin: 6px;
    border-spacing:0;
}


.nvtooltip table td {
    padding: 2px 9px 2px 0;
    vertical-align: middle;
}

.nvtooltip table td.key {
    font-weight: normal;
}

.nvtooltip table td.key.total {
    font-weight: bold;
}

.nvtooltip table td.value {
    text-align: right;
    font-weight: bold;
}

.nvtooltip table td.percent {
    color: darkgray;
}

.nvtooltip table tr.highlight td {
    padding: 1px 9px 1px 0;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-top-width: 1px;
}

.nvtooltip table td.legend-color-guide div {
    width: 8px;
    height: 8px;
    vertical-align: middle;
}

.nvtooltip table td.legend-color-guide div {
    width: 12px;
    height: 12px;
    border: 1px solid #999;
}

.nvtooltip .footer {
    padding: 3px;
    text-align: center;
}

.nvtooltip-pending-removal {
    pointer-events: none;
    display: none;
}


/****
Interactive Layer
*/
.nvd3 .nv-interactiveGuideLine {
    pointer-events:none;
}

.nvd3 line.nv-guideline {
    stroke: #ccc;
}

.angular-ui-tree-dropzone,.angular-ui-tree-empty{border:1px dashed #bbb;min-height:100px;background-color:#e5e5e5;background-image:-webkit-linear-gradient(45deg,#fff 25%,transparent 0,transparent 75%,#fff 0,#fff),-webkit-linear-gradient(45deg,#fff 25%,transparent 0,transparent 75%,#fff 0,#fff);background-image:linear-gradient(45deg,#fff 25%,transparent 0,transparent 75%,#fff 0,#fff),linear-gradient(45deg,#fff 25%,transparent 0,transparent 75%,#fff 0,#fff);background-size:60px 60px;background-position:0 0,30px 30px}.angular-ui-tree-empty{pointer-events:none}.angular-ui-tree-nodes{position:relative;margin:0;padding:0;list-style:none}.angular-ui-tree-nodes .angular-ui-tree-nodes{padding-left:20px}.angular-ui-tree-node,.angular-ui-tree-placeholder{position:relative;margin:0;padding:0;min-height:20px;line-height:20px}.angular-ui-tree-hidden{display:none}.angular-ui-tree-placeholder{margin:10px;padding:0;min-height:30px}.angular-ui-tree-handle{cursor:move;text-decoration:none;font-weight:700;box-sizing:border-box;min-height:20px;line-height:20px}.angular-ui-tree-drag{position:absolute;pointer-events:none;z-index:999;opacity:.8}.angular-ui-tree-drag .tree-node-content{margin-top:0}
ul.ivh-treeview .ivh-treeview-twistie-collapsed,ul.ivh-treeview .ivh-treeview-twistie-leaf,ul.ivh-treeview li.ivh-treeview-node-collapsed ul.ivh-treeview{display:none}ul.ivh-treeview .ivh-treeview-node-collapsed .ivh-treeview-twistie-collapsed{display:inline}ul.ivh-treeview .ivh-treeview-node-collapsed .ivh-treeview-twistie-expanded{display:none}ul.ivh-treeview li.ivh-treeview-node-leaf .ivh-treeview-twistie-leaf{display:inline}ul.ivh-treeview li.ivh-treeview-node-leaf .ivh-treeview-twistie-collapsed,ul.ivh-treeview li.ivh-treeview-node-leaf .ivh-treeview-twistie-expanded{display:none}
ul.ivh-treeview {
  list-style-type: none;
  padding-left: 0;
}
ul.ivh-treeview ul.ivh-treeview {
  padding-left: 15px;
}
ul.ivh-treeview .ivh-treeview-toggle {
  cursor: pointer;
}
ul.ivh-treeview .ivh-treeview-node-leaf .ivh-treeview-toggle {
  cursor: auto;
}

/*! 
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */

/* Make clicks pass-through */
#loading-bar,
#loading-bar-spinner {
  pointer-events: none;
  -webkit-pointer-events: none;
  -webkit-transition: 350ms linear all;
  -moz-transition: 350ms linear all;
  -o-transition: 350ms linear all;
  transition: 350ms linear all;
}

#loading-bar.ng-enter,
#loading-bar.ng-leave.ng-leave-active,
#loading-bar-spinner.ng-enter,
#loading-bar-spinner.ng-leave.ng-leave-active {
  opacity: 0;
}

#loading-bar.ng-enter.ng-enter-active,
#loading-bar.ng-leave,
#loading-bar-spinner.ng-enter.ng-enter-active,
#loading-bar-spinner.ng-leave {
  opacity: 1;
}

#loading-bar .bar {
  -webkit-transition: width 350ms;
  -moz-transition: width 350ms;
  -o-transition: width 350ms;
  transition: width 350ms;

  background: #29d;
  position: fixed;
  z-index: 10002;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom-right-radius: 1px;
  border-top-right-radius: 1px;
}

/* Fancy blur effect */
#loading-bar .peg {
  position: absolute;
  width: 70px;
  right: 0;
  top: 0;
  height: 2px;
  opacity: .45;
  -moz-box-shadow: #29d 1px 0 6px 1px;
  -ms-box-shadow: #29d 1px 0 6px 1px;
  -webkit-box-shadow: #29d 1px 0 6px 1px;
  box-shadow: #29d 1px 0 6px 1px;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

#loading-bar-spinner {
  display: block;
  position: fixed;
  z-index: 10002;
  top: 10px;
  left: 10px;
}

#loading-bar-spinner .spinner-icon {
  width: 14px;
  height: 14px;

  border:  solid 2px transparent;
  border-top-color:  #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: loading-bar-spinner 400ms linear infinite;
  -moz-animation:    loading-bar-spinner 400ms linear infinite;
  -ms-animation:     loading-bar-spinner 400ms linear infinite;
  -o-animation:      loading-bar-spinner 400ms linear infinite;
  animation:         loading-bar-spinner 400ms linear infinite;
}

@-webkit-keyframes loading-bar-spinner {
  0%   { -webkit-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes loading-bar-spinner {
  0%   { -moz-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes loading-bar-spinner {
  0%   { -o-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes loading-bar-spinner {
  0%   { -ms-transform: rotate(0deg);   transform: rotate(0deg); }
  100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.advancedSearchBox{display:block;position:relative;margin:5px 0 10px 0;border:1px solid #ccc;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;min-height:40px;padding:0 9px;background-color:#fff;cursor:text;line-height:38px}.advancedSearchBox.active{border-color:#66afe9}.advancedSearchBox .search-icon{float:right;padding:10px 0 0 10px}.advancedSearchBox .remove-all-icon{float:right;padding:10px 0 0 10px;cursor:pointer}.advancedSearchBox .search-parameter{display:inline-block;height:24px;margin:0 7px 0 0;background-color:#5bc0de;padding:0 5px;border-radius:4px;-webkit-border-radius:4px;-moz-border-radius:4px;line-height:24px;cursor:default;transition:box-shadow .1s linear}.advancedSearchBox .search-parameter:hover{box-shadow:0 3px 3px rgba(0,0,0,.2)}.advancedSearchBox .search-parameter div{float:left;margin:0 2px}.advancedSearchBox .search-parameter .remove{color:#fff;margin-left:5px;cursor:pointer}.advancedSearchBox .search-parameter .key{color:#fff}.advancedSearchBox .search-parameter .value span{color:#fff}.advancedSearchBox .search-parameter .value input{height:24px}.advancedSearchBox .search-parameter-input{display:inline-block;width:auto;height:24px;border:0;margin:0;padding:0}.advancedSearchBox .search-parameter-input:focus{box-shadow:none;outline:0}.advancedSearchBox .search-parameter-suggestions{cursor:auto;display:block}.advancedSearchBox .search-parameter-suggestions .title{display:block;float:left;height:25px;margin:7px 7px 0 0;background-color:transparent;color:#888;font-weight:700;padding:0 5px;font-size:14px;line-height:25px}.advancedSearchBox .search-parameter-suggestions .search-parameter{cursor:pointer;background-color:#bdbdbd;color:#fff}
ngbs-test .css-test {
  display: none; }
ngbs-select {
  display: block;
  position: relative; }
  ngbs-select .dropdown-menu {
    display: inherit;
    will-change: top, bottom, transform; }
  ngbs-select .dropdown-menu-inner {
    max-height: 18rem;
    overflow-y: auto;
    overflow-x: hidden; }
  ngbs-select .selected {
    font-weight: bold; }
ngbs-tabs .tab-pane {
  display: none; }
  ngbs-tabs .tab-pane.active {
    display: block; }
ngbs-pagination {
  display: block; }
  ngbs-pagination > .pagination {
    user-select: none; }
    ngbs-pagination > .pagination > .page-item.active > span.page-link {
      background-color: #efefef;
      color: #636c72; }
ngbs-progress {
  display: block;
  height: 1rem; }
  ngbs-progress > .progress {
    height: 100%; }
    ngbs-progress > .progress > .progress-bar {
      position: relative; }
      ngbs-progress > .progress > .progress-bar.animated-progress {
        transition: width 500ms; }
      ngbs-progress > .progress > .progress-bar.indeterminate {
        width: 25%;
        animation-duration: 2.5s;
        animation-iteration-count: infinite;
        animation-name: progress-bar-indeterminate;
        animation-timing-function: linear; }

@keyframes progress-bar-indeterminate {
  0% {
    left: 0; }
  50% {
    left: 75%; }
  100% {
    left: 0; } }
      ngbs-progress > .progress > .progress-bar > span {
        white-space: nowrap; }
  ngbs-progress > .progress > .progress-bar {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center; }
ngbs-toggle {
  display: block;
  margin-bottom: 1rem; }

/*!
 * FullCalendar v3.10.2
 * Docs & License: https://fullcalendar.io/
 * (c) 2019 Adam Shaw
 */.fc button,.fc table,body .fc{font-size:1em}.fc .fc-axis,.fc button,.fc-day-grid-event .fc-content,.fc-list-item-marker,.fc-list-item-time,.fc-time-grid-event .fc-time,.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-event,.fc-event:hover,.fc-state-hover,.fc.fc-bootstrap3 a,.ui-widget .fc-event,a.fc-more{text-decoration:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view .fc-day-top .fc-week-number,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc-button-group{display:inline-block}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc-bg{bottom:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc .fc-row .fc-content-skeleton table,.fc .fc-row .fc-content-skeleton td,.fc .fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-day-grid-event .fc-content,.fc-icon,.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover{color:#fff}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-bootstrap3 .fc-popover .panel-body,.fc-bootstrap4 .fc-popover .card-body{padding:0}.fc-now-indicator{position:absolute;border:0 solid red}.fc-bootstrap3 .fc-today.alert,.fc-bootstrap4 .fc-today.alert{border-radius:0}.fc-unselectable{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff;border-width:1px;border-style:solid}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed td.fc-today{background:#fcf8e3}.fc-unthemed .fc-disabled-day{background:#d7d7d7;opacity:.3}.fc-icon{display:inline-block;height:1em;line-height:1em;font-size:1em;font-family:"Courier New",Courier,monospace;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\2039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\D7";font-size:200%;top:6%}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666;font-size:.9em;margin-top:2px}.fc-unthemed .fc-list-item:hover td{background-color:#f5f5f5}.ui-widget .fc-disabled-day{background-image:none}.fc-bootstrap3 .fc-time-grid .fc-slats table,.fc-bootstrap4 .fc-time-grid .fc-slats table,.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-bootstrap3 hr.fc-divider,.fc-bootstrap4 hr.fc-divider{border-color:inherit}.ui-widget .fc-event{color:#fff;font-weight:400}.ui-widget td.fc-axis{font-weight:400}.fc.fc-bootstrap3 a[data-goto]:hover{text-decoration:underline}.fc.fc-bootstrap4 a{text-decoration:none}.fc.fc-bootstrap4 a[data-goto]:hover{text-decoration:underline}.fc-bootstrap4 a.fc-event:not([href]):not([tabindex]){color:#fff}.fc-bootstrap4 .fc-popover.card{position:absolute}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\A0-\A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item-marker,.fc-list-item-time{width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee}
table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: 0;
}
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: auto;
  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: 0.85em;
  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;
  justify-content: flex-end;
}
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:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}
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 {
  right: 0.5em;
  content: "\2193";
}
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
  opacity: 1;
}
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0;
}

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:before,
div.dataTables_scrollBody table thead .sorting_asc:before,
div.dataTables_scrollBody table thead .sorting_desc:before,
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 > .dataTables_scrollFootInner {
  box-sizing: content-box;
}
div.dataTables_scrollFoot > .dataTables_scrollFootInner > 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;
  }
  div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    justify-content: center !important;
  }
}
table.dataTable.table-sm > thead > tr > th :not(.sorting_disabled) {
  padding-right: 20px;
}
table.dataTable.table-sm .sorting:before,
table.dataTable.table-sm .sorting_asc:before,
table.dataTable.table-sm .sorting_desc:before {
  top: 5px;
  right: 0.85em;
}
table.dataTable.table-sm .sorting:after,
table.dataTable.table-sm .sorting_asc:after,
table.dataTable.table-sm .sorting_desc:after {
  top: 5px;
}

table.table-bordered.dataTable {
  border-right-width: 0;
}
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: 1px;
}
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;
}

table.dt-rowReorder-float{position:absolute !important;opacity:0.8;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;z-index:2001}tr.dt-rowReorder-moving{outline:2px solid #888888;outline-offset:-2px}body.dt-rowReorder-noOverflow{overflow-x:hidden}table.dataTable td.reorder{text-align:center;cursor:move}

table.dataTable.dt-checkboxes-select tbody tr,
table.dataTable thead th.dt-checkboxes-select-all,
table.dataTable tbody td.dt-checkboxes-cell {
  cursor: pointer;
}

table.dataTable thead th.dt-checkboxes-select-all,
table.dataTable tbody td.dt-checkboxes-cell {
  text-align: center;
}

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

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[role="row"]>td.dtr-control,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th.dtr-control{position:relative;padding-left:30px;cursor:pointer}table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td.dtr-control:before,table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>th.dtr-control:before{top:50%;left:5px;height:14px;width:14px;margin-top:-9px;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;text-indent:0 !important;font-family:'Courier New', Courier, monospace;line-height:14px;content:'+';background-color:#337ab7}table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before{content:'-';background-color:#d33333}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control{padding-left:27px}table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td.dtr-control:before,table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th.dtr-control:before{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;text-indent:0 !important;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.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}}

/*!
 * angularjs-color-picker v3.4.8
 * https://github.com/ruhley/angular-color-picker/
 *
 * Copyright 2017 ruhley
 *
 * 2017-10-06 09:52:03
 *
 */.color-picker-wrapper{position:relative}.color-picker-wrapper .color-picker-input-wrapper{display:table;position:relative}.color-picker-wrapper .input-group{position:relative;border-collapse:separate}.color-picker-wrapper .input-group .color-picker-input,.color-picker-wrapper .input-group .input-group-addon{display:table-cell}.color-picker-wrapper .input-group .color-picker-input{position:relative;z-index:2;float:left;margin-bottom:0}.color-picker-wrapper .input-group .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc}.color-picker-wrapper .input-group .input-group-addon:first-child{border-right-width:0}.color-picker-wrapper .input-group .input-group-addon:last-child{border-left-width:0}.color-picker-wrapper .input-group .color-picker-input-swatch{padding-left:12px}.color-picker-wrapper .color-picker-input-swatch{padding-left:36px}.color-picker-wrapper .color-picker-swatch{cursor:pointer;z-index:3}.color-picker-wrapper .color-picker-swatch:not(.input-group-addon){position:absolute;top:3px;width:28px;height:70%;box-sizing:border-box;border-radius:3px;vertical-align:middle;background-position:-80px 0;border:solid 1px #ccc;padding:0;margin:0;display:inline-block}.color-picker-wrapper .color-picker-swatch:not(.input-group-addon).color-picker-swatch-left{left:3px}.color-picker-wrapper .color-picker-swatch:not(.input-group-addon).color-picker-swatch-right{right:3px}.color-picker-wrapper .color-picker-panel{position:absolute;background:#fff;border:solid 1px #ccc;box-shadow:0 0 20px rgba(0,0,0,.5);z-index:99999;width:150px;table-layout:fixed;border:1px solid #fff;padding-right:1px;box-sizing:content-box}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper{display:table;width:100%}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row{display:table-row}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-overlay{position:absolute;width:100%;height:150px;top:0;left:0;z-index:2}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation{background-image:linear-gradient(45deg,grey 25%,transparent 25%),linear-gradient(-45deg,grey 25%,transparent 25%),linear-gradient(45deg,transparent 75%,grey 75%),linear-gradient(-45deg,transparent 75%,grey 75%);background-size:10px 10px;background-position:0 0,0 5px,5px -5px,-5px 0}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity,.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation{display:table-cell;position:relative;left:1px;width:20px;background-color:#fff;cursor:row-resize}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-slider{position:absolute;top:0;left:0;width:18px;height:2px;background:#fff;border:solid 1px #000;box-sizing:content-box;margin-top:-1px;z-index:3}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid{display:table-cell;position:relative;width:150px;height:150px;cursor:crosshair}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-grid-inner{width:150px;height:150px;z-index:9}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-overlay{background-image:url(data:image/png;base64,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);pointer-events:none}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-picker{position:absolute;top:70px;left:70px;width:12px;height:12px;border:solid 1px #000;border-radius:10px;margin-top:-6px;margin-left:-6px;background:0 0;box-sizing:content-box;z-index:99}.color-picker-wrapper .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-picker>div{position:absolute;top:0;left:0;width:8px;height:8px;border-radius:8px;border:solid 2px #fff;box-sizing:content-box}.color-picker-wrapper .color-picker-panel .color-picker-actions .color-picker-action{width:calc(33.3333% - 6px);margin:3px}.color-picker-wrapper .color-picker-panel.color-picker-show-inline{position:relative}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation.color-picker-show-lightness.color-picker-show-alpha{width:230px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation.color-picker-show-lightness{width:210px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation.color-picker-show-alpha{width:210px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-lightness.color-picker-show-alpha{width:210px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-saturation{width:190px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-lightness{width:190px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue.color-picker-show-alpha{width:190px}.color-picker-wrapper .color-picker-panel.color-picker-show-saturation.color-picker-show-alpha{width:190px}.color-picker-wrapper .color-picker-panel.color-picker-show-saturation.color-picker-show-lightness{width:190px}.color-picker-wrapper .color-picker-panel.color-picker-show-saturation.color-picker-show-lightness.color-picker-show-alpha{width:210px}.color-picker-wrapper .color-picker-panel.color-picker-show-lightness.color-picker-show-alpha{width:190px}.color-picker-wrapper .color-picker-panel.color-picker-show-hue{width:170px}.color-picker-wrapper .color-picker-panel.color-picker-show-saturation{width:170px}.color-picker-wrapper .color-picker-panel.color-picker-show-lightness{width:170px}.color-picker-wrapper .color-picker-panel.color-picker-show-alpha{width:170px}.color-picker-wrapper .color-picker-panel.color-picker-panel-bottom{top:auto}.color-picker-wrapper .color-picker-panel.color-picker-panel-top{bottom:100%}.color-picker-wrapper .color-picker-panel.color-picker-panel-left{left:0}.color-picker-wrapper .color-picker-panel.color-picker-panel-right{right:0}.color-picker-wrapper .color-picker-panel.color-picker-panel-round .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-overlay{background-image:url(data:image/png;base64,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);border-radius:50%}.color-picker-wrapper .color-picker-panel.color-picker-panel-round .color-picker-grid-wrapper .color-picker-row .color-picker-grid .color-picker-grid-inner{background-color:#fff}.color-picker-wrapper .color-picker-hidden{display:none}.color-picker-wrapper.color-picker-disabled .color-picker-grid,.color-picker-wrapper.color-picker-disabled .color-picker-hue,.color-picker-wrapper.color-picker-disabled .color-picker-input,.color-picker-wrapper.color-picker-disabled .color-picker-opacity,.color-picker-wrapper.color-picker-disabled .color-picker-swatch{cursor:not-allowed!important}.color-picker-wrapper.color-picker-swatch-only .color-picker-input{padding-left:33px;padding-right:0;width:35px}.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon{width:35px;height:100%;border-right:1px solid #ccc}.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon:first-child{border-right-width:1px}.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon:last-child{border-left-width:1px}.color-picker-wrapper.color-picker-swatch-only .input-group .color-picker-input{padding:0;width:1px;opacity:0;cursor:pointer}.color-picker-wrapper.color-picker-swatch-only .input-group .color-picker-input:focus{outline:0}.color-picker-wrapper.color-picker-closed .color-picker-panel{display:none}.color-picker-wrapper.color-picker-horizontal .color-picker-panel{width:150px!important}.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row{display:block}.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-grid{display:block}.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation{cursor:col-resize;display:block;left:0;width:150px;height:20px}.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue .color-picker-overlay,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness .color-picker-overlay,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity .color-picker-overlay,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation .color-picker-overlay{height:20px}.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-hue .color-picker-slider,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-lightness .color-picker-slider,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-opacity .color-picker-slider,.color-picker-wrapper.color-picker-horizontal .color-picker-panel .color-picker-grid-wrapper .color-picker-row .color-picker-saturation .color-picker-slider{width:2px;height:18px;margin-top:0}
/*!
 * angularjs-color-picker v3.4.8
 * https://github.com/ruhley/angular-color-picker/
 *
 * Copyright 2017 ruhley
 *
 * 2017-10-06 09:52:03
 *
 */.color-picker-wrapper .color-picker-input-wrapper{width:100%}.color-picker-wrapper .color-picker-swatch:not(.input-group-addon){height:28px}.color-picker-wrapper.color-picker-swatch-only .input-group .input-group-addon{border-radius:4px}
/* 
 * treeGrid.css
 *
 * Styles for the tree-grid
 * for both Bootstrap 2 and Bootstrap 3
 *
 */
.tree-grid-animate-enter,
.tree-grid-row.ng-enter {
    -moz-transition: 200ms linear all;
    -o-transition: 200ms linear all;
    -webkit-transition: 200ms linear all;
    transition: 200ms linear all;
    position: relative;
    display: block;
    opacity: 0;
    max-height: 0;
}

.tree-grid-animate-enter.tree-grid-animate-enter-active,
.tree-grid-row.ng-enter-active {
	opacity    : 1;
	max-height : 30px;
}

.tree-grid-animate-leave,
.tree-grid-row.ng-leave {
    -moz-transition: 200ms linear all;
	-o-transition: 200ms linear all;
	-webkit-transition: 200ms linear all;
    transition: 200ms linear all;
    position: relative;
    display: block;
    height: 30px;
    max-height: 30px;
    opacity: 1;
}

.tree-grid-animate-leave.tree-grid-animate-leave-active,
.tree-grid-row.ng-leave-active {
	height     : 0;
	max-height : 0;
	opacity    : 0;
}

/*
 * Angular 1.2.0 Animation placeholders.
 */
.tree-grid-animate.ng-enter {
}

/*
 * Normal CSS styles.
 */
.tree-grid i.indented {
	padding : 2px;
}

.tree-grid .level-1 .indented {
	position : relative;
	left     : 0;
}

.tree-grid .level-2 .indented {
	position : relative;
	left     : 20px;
}

.tree-grid .level-3 .indented {
	position : relative;
	left     : 40px;
}

.tree-grid .level-4 .indented {
	position : relative;
	left     : 60px;
}

.tree-grid .level-5 .indented {
	position : relative;
	left     : 80px;
}

.tree-grid .level-6 .indented {
	position : relative;
	left     : 100px;
}

.tree-grid .level-7 .indented {
	position : relative;
	left     : 120px;
}

.tree-grid .level-8 .indented {
	position : relative;
	left     : 140px;
}

.tree-grid .level-9 .indented {
	position : relative;
	left     : 160px;
}

.tree-grid .tree-icon,
.tree-label {
	cursor : pointer;
}

table.tree-grid {
	max-height : 500px;
	overflow-y : scroll;
}
.gu-mirror{position:fixed!important;margin:0!important;z-index:9999!important;opacity:.8;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";filter:alpha(opacity=80)}.gu-hide{display:none!important}.gu-unselectable{-webkit-user-select:none!important;-moz-user-select:none!important;-ms-user-select:none!important;user-select:none!important}.gu-transit{opacity:.2;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";filter:alpha(opacity=20)}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

/*! angularjs-slider - v7.0.0 -  (c) Rafal Zajac <rzajac@gmail.com>, Valentin Hervieu <valentin@hervi.eu>, Jussi Saarivirta <jusasi@gmail.com>, Angelin Sirbu <angelin.sirbu@gmail.com> -  https://github.com/angular-slider/angularjs-slider -  2019-02-23 */
.rzslider{position:relative;display:inline-block;width:100%;height:4px;margin:35px 0 15px 0;vertical-align:middle;user-select:none}.rzslider.noanimate *{transition:none!important}.rzslider.with-legend{margin-bottom:40px}.rzslider[disabled]{cursor:not-allowed}.rzslider[disabled] .rz-pointer{cursor:not-allowed;background-color:#d8e0f3}.rzslider[disabled] .rz-draggable{cursor:not-allowed}.rzslider[disabled] .rz-selection{background:#8b91a2}.rzslider[disabled] .rz-tick{cursor:not-allowed}.rzslider[disabled] .rz-tick.rz-selected{background:#8b91a2}.rzslider span{position:absolute;display:inline-block;white-space:nowrap}.rzslider .rz-base{width:100%;height:100%;padding:0}.rzslider .rz-bar-wrapper{left:0;z-index:1;width:100%;height:32px;padding-top:16px;margin-top:-16px;box-sizing:border-box;transition:all linear .3s}.rzslider .rz-draggable{cursor:move}.rzslider .rz-bar{left:0;z-index:1;width:100%;height:4px;background:#d8e0f3;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.rzslider .rz-bar-wrapper.rz-transparent .rz-bar{background:transparent}.rzslider .rz-bar-wrapper.rz-left-out-selection .rz-bar{background:#df002d}.rzslider .rz-bar-wrapper.rz-right-out-selection .rz-bar{background:#03a688}.rzslider .rz-selection{z-index:2;background:#0db9f0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;transition:background-color linear .3s}.rzslider .rz-restricted{z-index:3;background:#f00;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.rzslider .rz-pointer{top:-14px;z-index:3;width:32px;height:32px;cursor:pointer;background-color:#0db9f0;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;transition:all linear .3s}.rzslider .rz-pointer:after{position:absolute;top:12px;left:12px;width:8px;height:8px;background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;content:''}.rzslider .rz-pointer:hover:after{background-color:#fff}.rzslider .rz-pointer.rz-active{z-index:4}.rzslider .rz-pointer.rz-active:after{background-color:#451aff}.rzslider .rz-bubble{bottom:16px;padding:1px 3px;color:#55637d;cursor:default;transition:all linear .3s}.rzslider .rz-bubble.rz-limit{color:#55637d;transition:none}.rzslider .rz-ticks{position:absolute;top:-3px;left:0;z-index:1;width:100%;height:0;margin:0;list-style:none;box-sizing:border-box}.rzslider .rz-ticks-values-under .rz-tick-value{top:auto;bottom:-32px}.rzslider .rz-tick{position:absolute;top:0;left:0;width:10px;height:10px;margin-left:11px;text-align:center;cursor:pointer;background:#d8e0f3;border-radius:50%;transition:background-color linear .3s}.rzslider .rz-tick.rz-selected{background:#0db9f0}.rzslider .rz-tick-value{position:absolute;top:-30px;transform:translate(-50%,0)}.rzslider .rz-tick-legend{position:absolute;top:24px;max-width:50px;white-space:normal;transform:translate(-50%,0)}.rzslider.rz-vertical{position:relative;width:4px;height:100%;padding:0;margin:0 20px;vertical-align:baseline}.rzslider.rz-vertical .rz-base{width:100%;height:100%;padding:0}.rzslider.rz-vertical .rz-bar-wrapper{top:auto;left:0;width:32px;height:100%;padding:0 0 0 16px;margin:0 0 0 -16px}.rzslider.rz-vertical .rz-bar{bottom:0;left:auto;width:4px;height:100%}.rzslider.rz-vertical .rz-pointer{top:auto;bottom:0;left:-14px!important}.rzslider.rz-vertical .rz-bubble{bottom:0;left:16px!important;margin-left:3px}.rzslider.rz-vertical .rz-ticks{top:0;left:-3px;z-index:1;width:0;height:100%}.rzslider.rz-vertical .rz-tick{margin-top:11px;margin-left:auto;vertical-align:middle}.rzslider.rz-vertical .rz-tick-value{top:auto;left:24px;transform:translate(0,-28%)}.rzslider.rz-vertical .rz-tick-legend{top:auto;right:24px;max-width:none;white-space:nowrap;transform:translate(0,-28%)}.rzslider.rz-vertical .rz-ticks-values-under .rz-tick-value{right:24px;bottom:auto;left:auto}
*:focus {
  outline: 0;
}
  .emoji-popover .close-button-holder,
  .popover .close-button-holder {
    position: absolute;
    right: 10px;
  }
    .emoji-popover .close-button-holder .close-button,
    .popover .close-button-holder .close-button {
      cursor: pointer;
      font-size: 20px;
      font-weight: bold;
      color: #b3b3b3;
    }
      .emoji-popover .close-button-holder .close-button:hover,
      .popover .close-button-holder .close-button:hover {
        color: #d7d7d7;
      }
.emoji-picker {
  text-indent: -9999px;
  display: inline-block;
  height: 22px;
  margin-right: .5em;
  width: 22px;
  cursor: pointer;
}
.emoji-container {
  margin: 0 -10px;
  min-width: 200px;
  height: 200px;
}
.emojis {
  width:100%;
  height: 171px;  
  overflow: hidden;
  overflow-y: scroll;
}
  .emojis::-webkit-scrollbar {
    width: 10px;
  }
  .emojis::-webkit-scrollbar-track-piece {
    background: #f5f5f5;
  }
  .emojis::-webkit-scrollbar-thumb {
    background: #ccc;
    border: 1px solid #b3b3b3;
  }
.emoji-popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
  .emoji-popover.top {
    margin-top: -10px;
  }
  .emoji-popover.right {
    margin-left: 10px;
  }
  .emoji-popover.bottom {
    margin-top: 10px;
  }
  .emoji-popover.left {
    margin-left: -10px;
  }
  .emoji-popover .emoji-popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
  }
  .emoji-popover .emoji-popover-content {
    padding: 9px 14px;
  }
  
  .emoji-picker { background: transparent url(../images/emojis.png) 0 0 no-repeat; }

/* @media all and (-webkit-min-device-pixel-ratio:1),all and (min--moz-device-pixel-ratio:1),all and (-o-min-device-pixel-ratio:1),all and (min-device-pixel-ratio:1),all and (min-resolution:96dpi) {
  .emoji-picker { background: transparent url(../images/emojis.png) 0 0 no-repeat; }
}
@media all and (-webkit-min-device-pixel-ratio:1.5),all and (-o-min-device-pixel-ratio:3/2),all and (min-device-pixel-ratio:1.5),all and (min-resolution:144dpi) {
  .emoji-picker {
    background: transparent url(../images/emojis@2x.png) 0 0 no-repeat;
    background-size: 27776px 22px;
  }
} */
@-moz-document url-prefix() {
  .emoji-picker { background: transparent url(../images/emojis.png) 0 0 no-repeat; }
}
.emoji-bowtie { background-position: -5px 0; }
.emoji-smile { background-position: -37px 0;}
.emoji-laughing { background-position: -69px 0;}
.emoji-blush { background-position: -101px 0;}
.emoji-smiley { background-position: -133px 0;}
.emoji-relaxed { background-position: -165px 0;}
.emoji-smirk { background-position: -197px 0;}
.emoji-heart-eyes { background-position: -229px 0;}
.emoji-kissing-heart { background-position: -261px 0;}
.emoji-kissing-closed-eyes { background-position: -293px 0;}
.emoji-flushed { background-position: -325px 0;}
.emoji-relieved { background-position: -357px 0;}
.emoji-satisfied { background-position: -389px 0;}
.emoji-grin { background-position: -421px 0;}
.emoji-wink { background-position: -453px 0;}
.emoji-stuck-out-tongue-winking-eye { background-position: -485px 0;}
.emoji-winky-face { background-position: -485px 0;}
.emoji-stuck-out-tongue-closed-eyes { background-position: -517px 0;}
.emoji-grinning { background-position: -549px 0;}
.emoji-kissing { background-position: -581px 0;}
.emoji-kissing-smiling-eyes { background-position: -613px 0;}
.emoji-stuck-out-tongue { background-position: -645px 0;}
.emoji-sleeping { background-position: -677px 0;}
.emoji-worried { background-position: -709px 0;}
.emoji-frowning { background-position: -741px 0;}
.emoji-anguished { background-position: -773px 0;}
.emoji-open-mouth { background-position: -805px 0;}
.emoji-wow { background-position: -805px 0;}
.emoji-grimacing { background-position: -837px 0;}
.emoji-confused { background-position: -869px 0;}
.emoji-hushed { background-position: -901px 0;}
.emoji-expressionless { background-position: -933px 0;}
.emoji-unamused { background-position: -965px 0;}
.emoji-sweat-smile { background-position: -997px 0;}
.emoji-sweat { background-position: -1029px 0;}
.emoji-disappointed-relieved { background-position: -1061px 0;}
.emoji-weary { background-position: -1093px 0;}
.emoji-pensive { background-position: -1125px 0;}
.emoji-disappointed { background-position: -1157px 0;}
.emoji-confounded { background-position: -1189px 0;}
.emoji-fearful { background-position: -1221px 0;}
.emoji-cold-sweat { background-position: -1253px 0;}
.emoji-persevere { background-position: -1285px 0;}
.emoji-cry { background-position: -1317px 0;}
.emoji-sob { background-position: -1349px 0;}
.emoji-joy { background-position: -1381px 0;}
.emoji-astonished { background-position: -1413px 0;}
.emoji-scream { background-position: -1445px 0;}
.emoji-neckbeard { background-position: -1477px 0;}
.emoji-tired-face { background-position: -1509px 0;}
.emoji-angry { background-position: -1541px 0;}
.emoji-rage { background-position: -1573px 0;}
.emoji-triumph { background-position: -1605px 0;}
.emoji-sleepy { background-position: -1637px 0;}
.emoji-yum { background-position: -1669px 0;}
.emoji-mask { background-position: -1701px 0;}
.emoji-sunglasses { background-position: -1733px 0;}
.emoji-dizzy-face { background-position: -1765px 0;}
.emoji-imp { background-position: -1797px 0;}
.emoji-smiling-imp { background-position: -1829px 0;}
.emoji-neutral-face { background-position: -1861px 0;}
.emoji-no-mouth { background-position: -1893px 0;}
.emoji-innocent { background-position: -1925px 0;}
.emoji-alien { background-position: -1957px 0;}
.emoji-yellow-heart { background-position: -1989px 0;}
.emoji-blue-heart { background-position: -2021px 0;}
.emoji-purple-heart { background-position: -2053px 0;}
.emoji-heart { background-position: -2085px 0;}
.emoji-green-heart { background-position: -2117px 0;}
.emoji-broken-heart { background-position: -2149px 0;}
.emoji-heartbeat { background-position: -2181px 0;}
.emoji-heartpulse { background-position: -2213px 0;}
.emoji-two-hearts { background-position: -2245px 0;}
.emoji-revolving-hearts { background-position: -2277px 0;}
.emoji-cupid { background-position: -2309px 0;}
.emoji-sparkling-heart { background-position: -2341px 0;}
.emoji-sparkles { background-position: -2373px 0;}
.emoji-star { background-position: -2405px 0;}
.emoji-star2 { background-position: -2437px 0;}
.emoji-dizzy { background-position: -2469px 0;}
.emoji-boom { background-position: -2501px 0;}
.emoji-collision { background-position: -2533px 0;}
.emoji-anger { background-position: -2565px 0;}
.emoji-exclamation { background-position: -2597px 0;}
.emoji-question { background-position: -2629px 0;}
.emoji-grey-exclamation { background-position: -2661px 0;}
.emoji-grey-question { background-position: -2693px 0;}
.emoji-zzz { background-position: -2725px 0;}
.emoji-dash { background-position: -2757px 0;}
.emoji-sweat-drops { background-position: -2789px 0;}
.emoji-notes { background-position: -2821px 0;}
.emoji-musical-note { background-position: -2853px 0;}
.emoji-fire { background-position: -2885px 0;}
.emoji-hankey { background-position: -2917px 0;}
.emoji-poop { background-position: -2949px 0;}
.emoji-shit { background-position: -2981px 0;}
.emoji-\+1 { background-position: -3013px 0;}
.emoji-thumbsup { background-position: -3045px 0;}
.emoji-\-1 { background-position: -3077px 0;}
.emoji-thumbsdown { background-position: -3109px 0;}
.emoji-ok-hand { background-position: -3141px 0;}
.emoji-punch { background-position: -3173px 0;}
.emoji-facepunch { background-position: -3205px 0;}
.emoji-fist { background-position: -3237px 0;}
.emoji-v { background-position: -3269px 0;}
.emoji-wave { background-position: -3301px 0;}
.emoji-hand { background-position: -3333px 0;}
.emoji-raised-hand { background-position: -3365px 0;}
.emoji-open-hands { background-position: -3397px 0;}
.emoji-point-up { background-position: -3429px 0;}
.emoji-point-down { background-position: -3461px 0;}
.emoji-point-left { background-position: -3493px 0;}
.emoji-point-right { background-position: -3525px 0;}
.emoji-raised-hands { background-position: -3557px 0;}
.emoji-pray { background-position: -3589px 0;}
.emoji-point-up-2 { background-position: -3621px 0;}
.emoji-clap { background-position: -3653px 0;}
.emoji-muscle { background-position: -3685px 0;}
.emoji-metal { background-position: -3717px 0;}
.emoji-fu { background-position: -3749px 0;}
.emoji-walking { background-position: -3781px 0;}
.emoji-runner { background-position: -3813px 0;}
.emoji-running { background-position: -3845px 0;}
.emoji-couple { background-position: -3877px 0;}
.emoji-family { background-position: -3909px 0;}
.emoji-two-men-holding-hands { background-position: -3941px 0;}
.emoji-two-women-holding-hands { background-position: -3973px 0;}
.emoji-dancer { background-position: -4005px 0;}
.emoji-dancers { background-position: -4037px 0;}
.emoji-ok-woman { background-position: -4069px 0;}
.emoji-no-good { background-position: -4101px 0;}
.emoji-information-desk-person { background-position: -4133px 0;}
.emoji-raising-hand { background-position: -4165px 0;}
.emoji-bride-with-veil { background-position: -4197px 0;}
.emoji-person-with-pouting-face { background-position: -4229px 0;}
.emoji-person-frowning { background-position: -4261px 0;}
.emoji-bow { background-position: -4293px 0;}
.emoji-couplekiss { background-position: -4325px 0;}
.emoji-couple-with-heart { background-position: -4357px 0;}
.emoji-massage { background-position: -4389px 0;}
.emoji-haircut { background-position: -4421px 0;}
.emoji-nail-care { background-position: -4453px 0;}
.emoji-boy { background-position: -4485px 0;}
.emoji-girl { background-position: -4517px 0;}
.emoji-woman { background-position: -4549px 0;}
.emoji-man { background-position: -4581px 0;}
.emoji-baby { background-position: -4613px 0;}
.emoji-older-woman { background-position: -4645px 0;}
.emoji-older-man { background-position: -4677px 0;}
.emoji-person-with-blond-hair { background-position: -4709px 0;}
.emoji-man-with-gua-pi-mao { background-position: -4741px 0;}
.emoji-man-with-turban { background-position: -4773px 0;}
.emoji-construction-worker { background-position: -4805px 0;}
.emoji-cop { background-position: -4837px 0;}
.emoji-angel { background-position: -4869px 0;}
.emoji-princess { background-position: -4901px 0;}
.emoji-smiley-cat { background-position: -4933px 0;}
.emoji-smile-cat { background-position: -4965px 0;}
.emoji-heart-eyes-cat { background-position: -4997px 0;}
.emoji-kissing-cat { background-position: -5029px 0;}
.emoji-smirk-cat { background-position: -5061px 0;}
.emoji-scream-cat { background-position: -5093px 0;}
.emoji-crying-cat-face { background-position: -5125px 0;}
.emoji-joy-cat { background-position: -5157px 0;}
.emoji-pouting-cat { background-position: -5189px 0;}
.emoji-japanese-ogre { background-position: -5221px 0;}
.emoji-japanese-goblin { background-position: -5253px 0;}
.emoji-see-no-evil { background-position: -5285px 0;}
.emoji-hear-no-evil { background-position: -5317px 0;}
.emoji-speak-no-evil { background-position: -5349px 0;}
.emoji-guardsman { background-position: -5381px 0;}
.emoji-skull { background-position: -5413px 0;}
.emoji-feet { background-position: -5445px 0;}
.emoji-lips { background-position: -5477px 0;}
.emoji-kiss { background-position: -5509px 0;}
.emoji-droplet { background-position: -5541px 0;}
.emoji-ear { background-position: -5573px 0;}
.emoji-eyes { background-position: -5605px 0;}
.emoji-nose { background-position: -5637px 0;}
.emoji-tongue { background-position: -5669px 0;}
.emoji-love-letter { background-position: -5701px 0;}
.emoji-bust-in-silhouette { background-position: -5733px 0;}
.emoji-busts-in-silhouette { background-position: -5765px 0;}
.emoji-speech-balloon { background-position: -5797px 0;}
.emoji-thought-balloon { background-position: -5829px 0;}
.emoji-feelsgood { background-position: -5861px 0;}
.emoji-finnadie { background-position: -5893px 0;}
.emoji-goberserk { background-position: -5925px 0;}
.emoji-godmode { background-position: -5957px 0;}
.emoji-hurtrealbad { background-position: -5989px 0;}
.emoji-rage1 { background-position: -6021px 0;}
.emoji-rage2 { background-position: -6053px 0;}
.emoji-rage3 { background-position: -6085px 0;}
.emoji-rage4 { background-position: -6117px 0;}
.emoji-suspect { background-position: -6149px 0;}
.emoji-trollface { background-position: -6181px 0;}
.emoji-sunny { background-position: -6213px 0;}
.emoji-umbrella { background-position: -6245px 0;}
.emoji-cloud { background-position: -6277px 0;}
.emoji-snowflake { background-position: -6309px 0;}
.emoji-snowman { background-position: -6341px 0;}
.emoji-zap { background-position: -6373px 0;}
.emoji-cyclone { background-position: -6405px 0;}
.emoji-foggy { background-position: -6437px 0;}
.emoji-ocean { background-position: -6469px 0;}
.emoji-cat { background-position: -6501px 0;}
.emoji-dog { background-position: -6533px 0;}
.emoji-mouse { background-position: -6565px 0;}
.emoji-hamster { background-position: -6597px 0;}
.emoji-rabbit { background-position: -6629px 0;}
.emoji-wolf { background-position: -6661px 0;}
.emoji-frog { background-position: -6693px 0;}
.emoji-tiger { background-position: -6725px 0;}
.emoji-koala { background-position: -6757px 0;}
.emoji-bear { background-position: -6789px 0;}
.emoji-pig { background-position: -6821px 0;}
.emoji-pig-nose { background-position: -6853px 0;}
.emoji-cow { background-position: -6885px 0;}
.emoji-boar { background-position: -6917px 0;}
.emoji-monkey-face { background-position: -6949px 0;}
.emoji-monkey { background-position: -6981px 0;}
.emoji-horse { background-position: -7013px 0;}
.emoji-racehorse { background-position: -7045px 0;}
.emoji-camel { background-position: -7077px 0;}
.emoji-sheep { background-position: -7109px 0;}
.emoji-elephant { background-position: -7141px 0;}
.emoji-panda-face { background-position: -7173px 0;}
.emoji-snake { background-position: -7205px 0;}
.emoji-bird { background-position: -7237px 0;}
.emoji-baby-chick { background-position: -7269px 0;}
.emoji-hatched-chick { background-position: -7301px 0;}
.emoji-hatching-chick { background-position: -7333px 0;}
.emoji-chicken { background-position: -7365px 0;}
.emoji-penguin { background-position: -7397px 0;}
.emoji-turtle { background-position: -7429px 0;}
.emoji-bug { background-position: -7461px 0;}
.emoji-honeybee { background-position: -7493px 0;}
.emoji-ant { background-position: -7525px 0;}
.emoji-beetle { background-position: -7557px 0;}
.emoji-snail { background-position: -7589px 0;}
.emoji-octopus { background-position: -7621px 0;}
.emoji-tropical-fish { background-position: -7653px 0;}
.emoji-fish { background-position: -7685px 0;}
.emoji-whale { background-position: -7717px 0;}
.emoji-whale2 { background-position: -7749px 0;}
.emoji-dolphin { background-position: -7781px 0;}
.emoji-cow2 { background-position: -7813px 0;}
.emoji-ram { background-position: -7845px 0;}
.emoji-rat { background-position: -7877px 0;}
.emoji-water-buffalo { background-position: -7909px 0;}
.emoji-tiger2 { background-position: -7941px 0;}
.emoji-rabbit2 { background-position: -7973px 0;}
.emoji-dragon { background-position: -8005px 0;}
.emoji-goat { background-position: -8037px 0;}
.emoji-rooster { background-position: -8069px 0;}
.emoji-dog2 { background-position: -8101px 0;}
.emoji-pig2 { background-position: -8133px 0;}
.emoji-mouse2 { background-position: -8165px 0;}
.emoji-ox { background-position: -8197px 0;}
.emoji-dragon-face { background-position: -8229px 0;}
.emoji-blowfish { background-position: -8261px 0;}
.emoji-crocodile { background-position: -8293px 0;}
.emoji-dromedary-camel { background-position: -8325px 0;}
.emoji-leopard { background-position: -8357px 0;}
.emoji-cat2 { background-position: -8389px 0;}
.emoji-poodle { background-position: -8421px 0;}
.emoji-paw-prints { background-position: -8453px 0;}
.emoji-bouquet { background-position: -8485px 0;}
.emoji-cherry-blossom { background-position: -8517px 0;}
.emoji-tulip { background-position: -8549px 0;}
.emoji-four-leaf-clover { background-position: -8581px 0;}
.emoji-rose { background-position: -8613px 0;}
.emoji-sunflower { background-position: -8645px 0;}
.emoji-hibiscus { background-position: -8677px 0;}
.emoji-maple-leaf { background-position: -8709px 0;}
.emoji-leaves { background-position: -8741px 0;}
.emoji-fallen-leaf { background-position: -8773px 0;}
.emoji-herb { background-position: -8805px 0;}
.emoji-mushroom { background-position: -8837px 0;}
.emoji-cactus { background-position: -8869px 0;}
.emoji-palm-tree { background-position: -8901px 0;}
.emoji-evergreen-tree { background-position: -8933px 0;}
.emoji-deciduous-tree { background-position: -8965px 0;}
.emoji-chestnut { background-position: -8997px 0;}
.emoji-seedling { background-position: -9029px 0;}
.emoji-blossom { background-position: -9061px 0;}
.emoji-ear-of-rice { background-position: -9093px 0;}
.emoji-shell { background-position: -9125px 0;}
.emoji-globe-with-meridians { background-position: -9157px 0;}
.emoji-sun-with-face { background-position: -9189px 0;}
.emoji-full-moon-with-face { background-position: -9221px 0;}
.emoji-new-moon-with-face { background-position: -9253px 0;}
.emoji-new-moon { background-position: -9285px 0;}
.emoji-waxing-crescent-moon { background-position: -9317px 0;}
.emoji-first-quarter-moon { background-position: -9349px 0;}
.emoji-waxing-gibbous-moon { background-position: -9381px 0;}
.emoji-full-moon { background-position: -9413px 0;}
.emoji-waning-gibbous-moon { background-position: -9445px 0;}
.emoji-last-quarter-moon { background-position: -9477px 0;}
.emoji-waning-crescent-moon { background-position: -9509px 0;}
.emoji-last-quarter-moon-with-face { background-position: -9541px 0;}
.emoji-first-quarter-moon-with-face { background-position: -9573px 0;}
.emoji-moon { background-position: -9605px 0;}
.emoji-earth-africa { background-position: -9637px 0;}
.emoji-earth-americas { background-position: -9669px 0;}
.emoji-earth-asia { background-position: -9701px 0;}
.emoji-volcano { background-position: -9733px 0;}
.emoji-milky-way { background-position: -9765px 0;}
.emoji-partly-sunny { background-position: -9797px 0;}
.emoji-octocat { background-position: -9829px 0;}
.emoji-squirrel { background-position: -9861px 0;}
.emoji-bamboo { background-position: -9893px 0;}
.emoji-gift-heart { background-position: -9925px 0;}
.emoji-dolls { background-position: -9957px 0;}
.emoji-school-satchel { background-position: -9989px 0;}
.emoji-mortar-board { background-position: -10021px 0;}
.emoji-flags { background-position: -10053px 0;}
.emoji-fireworks { background-position: -10085px 0;}
.emoji-sparkler { background-position: -10117px 0;}
.emoji-wind-chime { background-position: -10149px 0;}
.emoji-rice-scene { background-position: -10181px 0;}
.emoji-jack-o-lantern { background-position: -10213px 0;}
.emoji-ghost { background-position: -10245px 0;}
.emoji-santa { background-position: -10277px 0;}
.emoji-christmas-tree { background-position: -10309px 0;}
.emoji-gift { background-position: -10341px 0;}
.emoji-bell { background-position: -10373px 0;}
.emoji-no-bell { background-position: -10405px 0;}
.emoji-tanabata-tree { background-position: -10437px 0;}
.emoji-tada { background-position: -10469px 0;}
.emoji-confetti-ball { background-position: -10501px 0;}
.emoji-balloon { background-position: -10533px 0;}
.emoji-crystal-ball { background-position: -10565px 0;}
.emoji-cd { background-position: -10597px 0;}
.emoji-dvd { background-position: -10629px 0;}
.emoji-floppy-disk { background-position: -10661px 0;}
.emoji-camera { background-position: -10693px 0;}
.emoji-video-camera { background-position: -10725px 0;}
.emoji-movie-camera { background-position: -10757px 0;}
.emoji-computer { background-position: -10789px 0;}
.emoji-tv { background-position: -10821px 0;}
.emoji-iphone { background-position: -10853px 0;}
.emoji-phone { background-position: -10885px 0;}
.emoji-telephone { background-position: -10917px 0;}
.emoji-telephone-receiver { background-position: -10949px 0;}
.emoji-pager { background-position: -10981px 0;}
.emoji-fax { background-position: -11013px 0;}
.emoji-minidisc { background-position: -11045px 0;}
.emoji-vhs { background-position: -11077px 0;}
.emoji-sound { background-position: -11109px 0;}
.emoji-speaker { background-position: -11141px 0;}
.emoji-mute { background-position: -11173px 0;}
.emoji-loudspeaker { background-position: -11205px 0;}
.emoji-mega { background-position: -11237px 0;}
.emoji-hourglass { background-position: -11269px 0;}
.emoji-hourglass-flowing-sand { background-position: -11301px 0;}
.emoji-alarm-clock { background-position: -11333px 0;}
.emoji-watch { background-position: -11365px 0;}
.emoji-radio { background-position: -11397px 0;}
.emoji-satellite { background-position: -11429px 0;}
.emoji-loop { background-position: -11461px 0;}
.emoji-mag { background-position: -11493px 0;}
.emoji-mag-right { background-position: -11525px 0;}
.emoji-unlock { background-position: -11557px 0;}
.emoji-lock { background-position: -11589px 0;}
.emoji-lock-with-ink-pen { background-position: -11621px 0;}
.emoji-closed-lock-with-key { background-position: -11653px 0;}
.emoji-key { background-position: -11685px 0;}
.emoji-bulb { background-position: -11717px 0;}
.emoji-flashlight { background-position: -11749px 0;}
.emoji-high-brightness { background-position: -11781px 0;}
.emoji-low-brightness { background-position: -11813px 0;}
.emoji-electric-plug { background-position: -11845px 0;}
.emoji-battery { background-position: -11877px 0;}
.emoji-calling { background-position: -11909px 0;}
.emoji-email { background-position: -11941px 0;}
.emoji-mailbox { background-position: -11973px 0;}
.emoji-postbox { background-position: -12005px 0;}
.emoji-bath { background-position: -12037px 0;}
.emoji-bathtub { background-position: -12069px 0;}
.emoji-shower { background-position: -12101px 0;}
.emoji-toilet { background-position: -12133px 0;}
.emoji-wrench { background-position: -12165px 0;}
.emoji-nut-and-bolt { background-position: -12197px 0;}
.emoji-hammer { background-position: -12229px 0;}
.emoji-seat { background-position: -12261px 0;}
.emoji-moneybag { background-position: -12293px 0;}
.emoji-yen { background-position: -12325px 0;}
.emoji-dollar { background-position: -12357px 0;}
.emoji-pound { background-position: -12389px 0;}
.emoji-euro { background-position: -12421px 0;}
.emoji-credit-card { background-position: -12453px 0;}
.emoji-money-with-wings { background-position: -12485px 0;}
.emoji-e\-mail { background-position: -12517px 0;}
.emoji-inbox-tray { background-position: -12549px 0;}
.emoji-outbox-tray { background-position: -12581px 0;}
.emoji-envelope { background-position: -12613px 0;}
.emoji-incoming-envelope { background-position: -12645px 0;}
.emoji-postal-horn { background-position: -12677px 0;}
.emoji-mailbox-closed { background-position: -12709px 0;}
.emoji-mailbox-with-mail { background-position: -12741px 0;}
.emoji-mailbox-with-no-mail { background-position: -12773px 0;}
.emoji-door { background-position: -12805px 0;}
.emoji-smoking { background-position: -12837px 0;}
.emoji-bomb { background-position: -12869px 0;}
.emoji-gun { background-position: -12901px 0;}
.emoji-hocho { background-position: -12933px 0;}
.emoji-pill { background-position: -12965px 0;}
.emoji-syringe { background-position: -12997px 0;}
.emoji-page-facing-up { background-position: -13029px 0;}
.emoji-page-with-curl { background-position: -13061px 0;}
.emoji-bookmark-tabs { background-position: -13093px 0;}
.emoji-bar-chart { background-position: -13125px 0;}
.emoji-chart-with-upwards-trend { background-position: -13157px 0;}
.emoji-chart-with-downwards-trend { background-position: -13189px 0;}
.emoji-scroll { background-position: -13221px 0;}
.emoji-clipboard { background-position: -13253px 0;}
.emoji-calendar { background-position: -13285px 0;}
.emoji-date { background-position: -13317px 0;}
.emoji-card-index { background-position: -13349px 0;}
.emoji-file-folder { background-position: -13381px 0;}
.emoji-open-file-folder { background-position: -13413px 0;}
.emoji-scissors { background-position: -13445px 0;}
.emoji-pushpin { background-position: -13477px 0;}
.emoji-paperclip { background-position: -13509px 0;}
.emoji-black-nib { background-position: -13541px 0;}
.emoji-pencil2 { background-position: -13573px 0;}
.emoji-straight-ruler { background-position: -13605px 0;}
.emoji-triangular-ruler { background-position: -13637px 0;}
.emoji-closed-book { background-position: -13669px 0;}
.emoji-green-book { background-position: -13701px 0;}
.emoji-blue-book { background-position: -13733px 0;}
.emoji-orange-book { background-position: -13765px 0;}
.emoji-notebook { background-position: -13797px 0;}
.emoji-notebook-with-decorative-cover { background-position: -13829px 0;}
.emoji-ledger { background-position: -13861px 0;}
.emoji-books { background-position: -13893px 0;}
.emoji-bookmark { background-position: -13925px 0;}
.emoji-name-badge { background-position: -13957px 0;}
.emoji-microscope { background-position: -13989px 0;}
.emoji-telescope { background-position: -14021px 0;}
.emoji-newspaper { background-position: -14053px 0;}
.emoji-football { background-position: -14085px 0;}
.emoji-basketball { background-position: -14117px 0;}
.emoji-soccer { background-position: -14149px 0;}
.emoji-baseball { background-position: -14181px 0;}
.emoji-tennis { background-position: -14213px 0;}
.emoji-8ball { background-position: -14245px 0;}
.emoji-rugby-football { background-position: -14277px 0;}
.emoji-bowling { background-position: -14309px 0;}
.emoji-golf { background-position: -14341px 0;}
.emoji-mountain-bicyclist { background-position: -14373px 0;}
.emoji-bicyclist { background-position: -14405px 0;}
.emoji-horse-racing { background-position: -14437px 0;}
.emoji-snowboarder { background-position: -14469px 0;}
.emoji-swimmer { background-position: -14501px 0;}
.emoji-surfer { background-position: -14533px 0;}
.emoji-ski { background-position: -14565px 0;}
.emoji-spades { background-position: -14597px 0;}
.emoji-hearts { background-position: -14629px 0;}
.emoji-clubs { background-position: -14661px 0;}
.emoji-diamonds { background-position: -14693px 0;}
.emoji-gem { background-position: -14725px 0;}
.emoji-ring { background-position: -14757px 0;}
.emoji-trophy { background-position: -14789px 0;}
.emoji-musical-score { background-position: -14821px 0;}
.emoji-musical-keyboard { background-position: -14853px 0;}
.emoji-violin { background-position: -14885px 0;}
.emoji-space-invader { background-position: -14917px 0;}
.emoji-video-game { background-position: -14949px 0;}
.emoji-black-joker { background-position: -14981px 0;}
.emoji-flower-playing-cards { background-position: -15013px 0;}
.emoji-game-die { background-position: -15045px 0;}
.emoji-dart { background-position: -15077px 0;}
.emoji-mahjong { background-position: -15109px 0;}
.emoji-clapper { background-position: -15141px 0;}
.emoji-memo { background-position: -15173px 0;}
.emoji-pencil { background-position: -15205px 0;}
.emoji-book { background-position: -15237px 0;}
.emoji-art { background-position: -15269px 0;}
.emoji-microphone { background-position: -15301px 0;}
.emoji-headphones { background-position: -15333px 0;}
.emoji-trumpet { background-position: -15365px 0;}
.emoji-saxophone { background-position: -15397px 0;}
.emoji-guitar { background-position: -15429px 0;}
.emoji-shoe { background-position: -15461px 0;}
.emoji-sandal { background-position: -15493px 0;}
.emoji-high-heel { background-position: -15525px 0;}
.emoji-lipstick { background-position: -15557px 0;}
.emoji-boot { background-position: -15589px 0;}
.emoji-shirt { background-position: -15621px 0;}
.emoji-tshirt { background-position: -15653px 0;}
.emoji-necktie { background-position: -15685px 0;}
.emoji-womans-clothes { background-position: -15717px 0;}
.emoji-dress { background-position: -15749px 0;}
.emoji-running-shirt-with-sash { background-position: -15781px 0;}
.emoji-jeans { background-position: -15813px 0;}
.emoji-kimono { background-position: -15845px 0;}
.emoji-bikini { background-position: -15877px 0;}
.emoji-ribbon { background-position: -15909px 0;}
.emoji-tophat { background-position: -15941px 0;}
.emoji-crown { background-position: -15973px 0;}
.emoji-womans-hat { background-position: -16005px 0;}
.emoji-mans-shoe { background-position: -16037px 0;}
.emoji-closed-umbrella { background-position: -16069px 0;}
.emoji-briefcase { background-position: -16101px 0;}
.emoji-handbag { background-position: -16133px 0;}
.emoji-pouch { background-position: -16165px 0;}
.emoji-purse { background-position: -16197px 0;}
.emoji-eyeglasses { background-position: -16229px 0;}
.emoji-fishing-pole-and-fish { background-position: -16261px 0;}
.emoji-coffee { background-position: -16293px 0;}
.emoji-tea { background-position: -16325px 0;}
.emoji-sake { background-position: -16357px 0;}
.emoji-baby-bottle { background-position: -16389px 0;}
.emoji-beer { background-position: -16421px 0;}
.emoji-beers { background-position: -16453px 0;}
.emoji-cocktail { background-position: -16485px 0;}
.emoji-tropical-drink { background-position: -16517px 0;}
.emoji-wine-glass { background-position: -16549px 0;}
.emoji-fork-and-knife { background-position: -16581px 0;}
.emoji-pizza { background-position: -16613px 0;}
.emoji-hamburger { background-position: -16645px 0;}
.emoji-fries { background-position: -16677px 0;}
.emoji-poultry-leg { background-position: -16709px 0;}
.emoji-meat-on-bone { background-position: -16741px 0;}
.emoji-spaghetti { background-position: -16773px 0;}
.emoji-curry { background-position: -16805px 0;}
.emoji-fried-shrimp { background-position: -16837px 0;}
.emoji-bento { background-position: -16869px 0;}
.emoji-sushi { background-position: -16901px 0;}
.emoji-fish-cake { background-position: -16933px 0;}
.emoji-rice-ball { background-position: -16965px 0;}
.emoji-rice-cracker { background-position: -16997px 0;}
.emoji-rice { background-position: -17029px 0;}
.emoji-ramen { background-position: -17061px 0;}
.emoji-stew { background-position: -17093px 0;}
.emoji-oden { background-position: -17125px 0;}
.emoji-dango { background-position: -17157px 0;}
.emoji-egg { background-position: -17189px 0;}
.emoji-bread { background-position: -17221px 0;}
.emoji-doughnut { background-position: -17253px 0;}
.emoji-custard { background-position: -17285px 0;}
.emoji-icecream { background-position: -17317px 0;}
.emoji-ice-cream { background-position: -17349px 0;}
.emoji-shaved-ice { background-position: -17381px 0;}
.emoji-birthday { background-position: -17413px 0;}
.emoji-cake { background-position: -17445px 0;}
.emoji-cookie { background-position: -17477px 0;}
.emoji-chocolate-bar { background-position: -17509px 0;}
.emoji-candy { background-position: -17541px 0;}
.emoji-lollipop { background-position: -17573px 0;}
.emoji-honey-pot { background-position: -17605px 0;}
.emoji-apple { background-position: -17637px 0;}
.emoji-green-apple { background-position: -17669px 0;}
.emoji-tangerine { background-position: -17701px 0;}
.emoji-lemon { background-position: -17733px 0;}
.emoji-cherries { background-position: -17765px 0;}
.emoji-grapes { background-position: -17797px 0;}
.emoji-watermelon { background-position: -17829px 0;}
.emoji-strawberry { background-position: -17861px 0;}
.emoji-peach { background-position: -17893px 0;}
.emoji-melon { background-position: -17925px 0;}
.emoji-banana { background-position: -17957px 0;}
.emoji-pear { background-position: -17989px 0;}
.emoji-pineapple { background-position: -18021px 0;}
.emoji-sweet-potato { background-position: -18053px 0;}
.emoji-eggplant { background-position: -18085px 0;}
.emoji-tomato { background-position: -18117px 0;}
.emoji-corn { background-position: -18149px 0;}
.emoji-house { background-position: -18181px 0;}
.emoji-house-with-garden { background-position: -18213px 0;}
.emoji-school { background-position: -18245px 0;}
.emoji-office { background-position: -18277px 0;}
.emoji-post-office { background-position: -18309px 0;}
.emoji-hospital { background-position: -18341px 0;}
.emoji-bank { background-position: -18373px 0;}
.emoji-convenience-store { background-position: -18405px 0;}
.emoji-love-hotel { background-position: -18437px 0;}
.emoji-hotel { background-position: -18469px 0;}
.emoji-wedding { background-position: -18501px 0;}
.emoji-church { background-position: -18533px 0;}
.emoji-department-store { background-position: -18565px 0;}
.emoji-european-post-office { background-position: -18597px 0;}
.emoji-city-sunrise { background-position: -18629px 0;}
.emoji-city-sunset { background-position: -18661px 0;}
.emoji-japanese-castle { background-position: -18693px 0;}
.emoji-european-castle { background-position: -18725px 0;}
.emoji-tent { background-position: -18757px 0;}
.emoji-factory { background-position: -18789px 0;}
.emoji-tokyo-tower { background-position: -18821px 0;}
.emoji-japan { background-position: -18853px 0;}
.emoji-mount-fuji { background-position: -18885px 0;}
.emoji-sunrise-over-mountains { background-position: -18917px 0;}
.emoji-sunrise { background-position: -18949px 0;}
.emoji-stars { background-position: -18981px 0;}
.emoji-themoreyouknow { background-position: -18981px 0;}
.emoji-tmyk { background-position: -18981px 0;}
.emoji-statue-of-liberty { background-position: -19013px 0;}
.emoji-bridge-at-night { background-position: -19045px 0;}
.emoji-carousel-horse { background-position: -19077px 0;}
.emoji-rainbow { background-position: -19109px 0;}
.emoji-ferris-wheel { background-position: -19141px 0;}
.emoji-fountain { background-position: -19173px 0;}
.emoji-roller-coaster { background-position: -19205px 0;}
.emoji-ship { background-position: -19237px 0;}
.emoji-speedboat { background-position: -19269px 0;}
.emoji-boat { background-position: -19301px 0;}
.emoji-sailboat { background-position: -19333px 0;}
.emoji-rowboat { background-position: -19365px 0;}
.emoji-anchor { background-position: -19397px 0;}
.emoji-rocket { background-position: -19429px 0;}
.emoji-airplane { background-position: -19461px 0;}
.emoji-helicopter { background-position: -19493px 0;}
.emoji-steam-locomotive { background-position: -19525px 0;}
.emoji-tram { background-position: -19557px 0;}
.emoji-mountain-railway { background-position: -19589px 0;}
.emoji-bike { background-position: -19621px 0;}
.emoji-aerial-tramway { background-position: -19653px 0;}
.emoji-suspension-railway { background-position: -19685px 0;}
.emoji-mountain-cableway { background-position: -19717px 0;}
.emoji-tractor { background-position: -19749px 0;}
.emoji-blue-car { background-position: -19781px 0;}
.emoji-oncoming-automobile { background-position: -19813px 0;}
.emoji-car { background-position: -19845px 0;}
.emoji-red-car { background-position: -19877px 0;}
.emoji-taxi { background-position: -19909px 0;}
.emoji-oncoming-taxi { background-position: -19941px 0;}
.emoji-articulated-lorry { background-position: -19973px 0;}
.emoji-bus { background-position: -20005px 0;}
.emoji-oncoming-bus { background-position: -20037px 0;}
.emoji-rotating-light { background-position: -20069px 0;}
.emoji-police-car { background-position: -20101px 0;}
.emoji-oncoming-police-car { background-position: -20133px 0;}
.emoji-fire-engine { background-position: -20165px 0;}
.emoji-ambulance { background-position: -20197px 0;}
.emoji-minibus { background-position: -20229px 0;}
.emoji-truck { background-position: -20261px 0;}
.emoji-train { background-position: -20293px 0;}
.emoji-station { background-position: -20325px 0;}
.emoji-train2 { background-position: -20357px 0;}
.emoji-bullettrain-front { background-position: -20389px 0;}
.emoji-bullettrain-side { background-position: -20421px 0;}
.emoji-light-rail { background-position: -20453px 0;}
.emoji-monorail { background-position: -20485px 0;}
.emoji-railway-car { background-position: -20517px 0;}
.emoji-trolleybus { background-position: -20549px 0;}
.emoji-ticket { background-position: -20581px 0;}
.emoji-fuelpump { background-position: -20613px 0;}
.emoji-vertical-traffic-light { background-position: -20645px 0;}
.emoji-traffic-light { background-position: -20677px 0;}
.emoji-warning { background-position: -20709px 0;}
.emoji-construction { background-position: -20741px 0;}
.emoji-beginner { background-position: -20773px 0;}
.emoji-atm { background-position: -20805px 0;}
.emoji-slot-machine { background-position: -20837px 0;}
.emoji-busstop { background-position: -20869px 0;}
.emoji-barber { background-position: -20901px 0;}
.emoji-hotsprings { background-position: -20933px 0;}
.emoji-checkered-flag { background-position: -20965px 0;}
.emoji-crossed-flags { background-position: -20997px 0;}
.emoji-izakaya-lantern { background-position: -21029px 0;}
.emoji-moyai { background-position: -21061px 0;}
.emoji-circus-tent { background-position: -21093px 0;}
.emoji-performing-arts { background-position: -21125px 0;}
.emoji-round-pushpin { background-position: -21157px 0;}
.emoji-triangular-flag-on-post { background-position: -21189px 0;}
.emoji-jp { background-position: -21221px 0;}
.emoji-kr { background-position: -21253px 0;}
.emoji-cn { background-position: -21285px 0;}
.emoji-us { background-position: -21317px 0;}
.emoji-fr { background-position: -21349px 0;}
.emoji-es { background-position: -21381px 0;}
.emoji-it { background-position: -21413px 0;}
.emoji-ru { background-position: -21445px 0;}
.emoji-gb { background-position: -21477px 0;}
.emoji-uk { background-position: -21509px 0;}
.emoji-de { background-position: -21541px 0;}
.emoji-one { background-position: -21573px 0;}
.emoji-two { background-position: -21605px 0;}
.emoji-three { background-position: -21637px 0;}
.emoji-four { background-position: -21669px 0;}
.emoji-five { background-position: -21701px 0;}
.emoji-six { background-position: -21733px 0;}
.emoji-seven { background-position: -21765px 0;}
.emoji-eight { background-position: -21797px 0;}
.emoji-nine { background-position: -21829px 0;}
.emoji-keycap-ten { background-position: -21861px 0;}
.emoji-1234 { background-position: -21893px 0;}
.emoji-zero { background-position: -21925px 0;}
.emoji-hash { background-position: -21957px 0;}
.emoji-symbols { background-position: -21989px 0;}
.emoji-arrow-backward { background-position: -22021px 0;}
.emoji-arrow-down { background-position: -22053px 0;}
.emoji-arrow-forward { background-position: -22085px 0;}
.emoji-arrow-left { background-position: -22117px 0;}
.emoji-capital-abcd { background-position: -22149px 0;}
.emoji-abcd { background-position: -22181px 0;}
.emoji-abc { background-position: -22213px 0;}
.emoji-arrow-lower-left { background-position: -22245px 0;}
.emoji-arrow-lower-right { background-position: -22277px 0;}
.emoji-arrow-right { background-position: -22309px 0;}
.emoji-arrow-up { background-position: -22341px 0;}
.emoji-arrow-upper-left { background-position: -22373px 0;}
.emoji-arrow-upper-right { background-position: -22405px 0;}
.emoji-arrow-double-down { background-position: -22437px 0;}
.emoji-arrow-double-up { background-position: -22469px 0;}
.emoji-arrow-down-small { background-position: -22501px 0;}
.emoji-arrow-heading-down { background-position: -22533px 0;}
.emoji-arrow-heading-up { background-position: -22565px 0;}
.emoji-leftwards-arrow-with-hook { background-position: -22597px 0;}
.emoji-arrow-right-hook { background-position: -22629px 0;}
.emoji-left-right-arrow { background-position: -22661px 0;}
.emoji-arrow-up-down { background-position: -22693px 0;}
.emoji-arrow-up-small { background-position: -22725px 0;}
.emoji-arrows-clockwise { background-position: -22757px 0;}
.emoji-arrows-counterclockwise { background-position: -22789px 0;}
.emoji-rewind { background-position: -22821px 0;}
.emoji-fast-forward { background-position: -22853px 0;}
.emoji-information-source { background-position: -22885px 0;}
.emoji-ok { background-position: -22917px 0;}
.emoji-twisted-rightwards-arrows { background-position: -22949px 0;}
.emoji-repeat { background-position: -22981px 0;}
.emoji-repeat-one { background-position: -23013px 0;}
.emoji-new { background-position: -23045px 0;}
.emoji-top { background-position: -23077px 0;}
.emoji-up { background-position: -23109px 0;}
.emoji-cool { background-position: -23141px 0;}
.emoji-free { background-position: -23173px 0;}
.emoji-ng { background-position: -23205px 0;}
.emoji-cinema { background-position: -23237px 0;}
.emoji-koko { background-position: -23269px 0;}
.emoji-signal-strength { background-position: -23301px 0;}
.emoji-u5272 { background-position: -23333px 0;}
.emoji-u5408 { background-position: -23365px 0;}
.emoji-u55b6 { background-position: -23397px 0;}
.emoji-u6307 { background-position: -23429px 0;}
.emoji-u6708 { background-position: -23461px 0;}
.emoji-u6709 { background-position: -23493px 0;}
.emoji-u6e80 { background-position: -23525px 0;}
.emoji-u7121 { background-position: -23557px 0;}
.emoji-u7533 { background-position: -23589px 0;}
.emoji-u7a7a { background-position: -23621px 0;}
.emoji-u7981 { background-position: -23653px 0;}
.emoji-sa { background-position: -23685px 0;}
.emoji-restroom { background-position: -23717px 0;}
.emoji-mens { background-position: -23749px 0;}
.emoji-womens { background-position: -23781px 0;}
.emoji-baby-symbol { background-position: -23813px 0;}
.emoji-no-smoking { background-position: -23845px 0;}
.emoji-parking { background-position: -23877px 0;}
.emoji-wheelchair { background-position: -23909px 0;}
.emoji-metro { background-position: -23941px 0;}
.emoji-baggage-claim { background-position: -23973px 0;}
.emoji-accept { background-position: -24005px 0;}
.emoji-wc { background-position: -24037px 0;}
.emoji-potable-water { background-position: -24069px 0;}
.emoji-put-litter-in-its-place { background-position: -24101px 0;}
.emoji-secret { background-position: -24133px 0;}
.emoji-congratulations { background-position: -24165px 0;}
.emoji-m { background-position: -24197px 0;}
.emoji-passport-control { background-position: -24229px 0;}
.emoji-left-luggage { background-position: -24261px 0;}
.emoji-customs { background-position: -24293px 0;}
.emoji-ideograph-advantage { background-position: -24325px 0;}
.emoji-cl { background-position: -24357px 0;}
.emoji-sos { background-position: -24389px 0;}
.emoji-id { background-position: -24421px 0;}
.emoji-no-entry-sign { background-position: -24453px 0;}
.emoji-underage { background-position: -24485px 0;}
.emoji-no-mobile-phones { background-position: -24517px 0;}
.emoji-do-not-litter { background-position: -24549px 0;}
.emoji-non\-potable-water { background-position: -24581px 0;}
.emoji-no-bicycles { background-position: -24613px 0;}
.emoji-no-pedestrians { background-position: -24645px 0;}
.emoji-children-crossing { background-position: -24677px 0;}
.emoji-no-entry { background-position: -24709px 0;}
.emoji-eight-spoked-asterisk { background-position: -24741px 0;}
.emoji-eight-pointed-black-star { background-position: -24773px 0;}
.emoji-heart-decoration { background-position: -24805px 0;}
.emoji-vs { background-position: -24837px 0;}
.emoji-vibration-mode { background-position: -24869px 0;}
.emoji-mobile-phone-off { background-position: -24901px 0;}
.emoji-chart { background-position: -24933px 0;}
.emoji-currency-exchange { background-position: -24965px 0;}
.emoji-aries { background-position: -24997px 0;}
.emoji-taurus { background-position: -25029px 0;}
.emoji-gemini { background-position: -25061px 0;}
.emoji-cancer { background-position: -25093px 0;}
.emoji-leo { background-position: -25125px 0;}
.emoji-virgo { background-position: -25157px 0;}
.emoji-libra { background-position: -25189px 0;}
.emoji-scorpius { background-position: -25221px 0;}
.emoji-sagittarius { background-position: -25253px 0;}
.emoji-capricorn { background-position: -25285px 0;}
.emoji-aquarius { background-position: -25317px 0;}
.emoji-pisces { background-position: -25349px 0;}
.emoji-ophiuchus { background-position: -25381px 0;}
.emoji-six-pointed-star { background-position: -25413px 0;}
.emoji-negative-squared-cross-mark { background-position: -25445px 0;}
.emoji-a { background-position: -25477px 0;}
.emoji-b { background-position: -25509px 0;}
.emoji-ab { background-position: -25541px 0;}
.emoji-o2 { background-position: -25573px 0;}
.emoji-diamond-shape-with-a-dot-inside { background-position: -25605px 0;}
.emoji-recycle { background-position: -25637px 0;}
.emoji-end { background-position: -25669px 0;}
.emoji-on { background-position: -25701px 0;}
.emoji-soon { background-position: -25733px 0;}
.emoji-clock1 { background-position: -25765px 0;}
.emoji-clock130 { background-position: -25797px 0;}
.emoji-clock10 { background-position: -25829px 0;}
.emoji-clock1030 { background-position: -25861px 0;}
.emoji-clock11 { background-position: -25893px 0;}
.emoji-clock1130 { background-position: -25925px 0;}
.emoji-clock12 { background-position: -25957px 0;}
.emoji-clock1230 { background-position: -25989px 0;}
.emoji-clock2 { background-position: -26021px 0;}
.emoji-clock230 { background-position: -26053px 0;}
.emoji-clock3 { background-position: -26085px 0;}
.emoji-clock330 { background-position: -26117px 0;}
.emoji-clock4 { background-position: -26149px 0;}
.emoji-clock430 { background-position: -26181px 0;}
.emoji-clock5 { background-position: -26213px 0;}
.emoji-clock530 { background-position: -26245px 0;}
.emoji-clock6 { background-position: -26277px 0;}
.emoji-clock630 { background-position: -26309px 0;}
.emoji-clock7 { background-position: -26341px 0;}
.emoji-clock730 { background-position: -26373px 0;}
.emoji-clock8 { background-position: -26405px 0;}
.emoji-clock830 { background-position: -26437px 0;}
.emoji-clock9 { background-position: -26469px 0;}
.emoji-clock930 { background-position: -26501px 0;}
.emoji-heavy-dollar-sign { background-position: -26533px 0;}
.emoji-copyright { background-position: -26565px 0;}
.emoji-registered { background-position: -26597px 0;}
.emoji-tm { background-position: -26629px 0;}
.emoji-x { background-position: -26661px 0;}
.emoji-heavy-exclamation-mark { background-position: -26693px 0;}
.emoji-bangbang { background-position: -26725px 0;}
.emoji-interrobang { background-position: -26757px 0;}
.emoji-o { background-position: -26789px 0;}
.emoji-heavy-multiplication-x { background-position: -26821px 0;}
.emoji-heavy-plus-sign { background-position: -26853px 0;}
.emoji-heavy-minus-sign { background-position: -26885px 0;}
.emoji-heavy-division-sign { background-position: -26917px 0;}
.emoji-white-flower { background-position: -26949px 0;}
.emoji-100 { background-position: -26981px 0;}
.emoji-heavy-check-mark { background-position: -27013px 0;}
.emoji-ballot-box-with-check { background-position: -27045px 0;}
.emoji-radio-button { background-position: -27077px 0;}
.emoji-link { background-position: -27109px 0;}
.emoji-curly-loop { background-position: -27141px 0;}
.emoji-wavy-dash { background-position: -27173px 0;}
.emoji-part-alternation-mark { background-position: -27205px 0;}
.emoji-trident { background-position: -27237px 0;}
.emoji-black-square { background-position: -27269px 0;}
.emoji-white-square { background-position: -27301px 0;}
.emoji-white-check-mark { background-position: -27333px 0;}
.emoji-black-square-button { background-position: -27365px 0;}
.emoji-white-square-button { background-position: -27397px 0;}
.emoji-black-circle { background-position: -27429px 0;}
.emoji-white-circle { background-position: -27461px 0;}
.emoji-red-circle { background-position: -27493px 0;}
.emoji-large-blue-circle { background-position: -27525px 0;}
.emoji-large-blue-diamond { background-position: -27557px 0;}
.emoji-large-orange-diamond { background-position: -27589px 0;}
.emoji-small-blue-diamond { background-position: -27621px 0;}
.emoji-small-orange-diamond { background-position: -27653px 0;}
.emoji-small-red-triangle { background-position: -27685px 0;}
.emoji-small-red-triangle-down { background-position: -27717px 0;}
.emoji-shipit { background-position: -27749px 0;}

.emoji-groups .emoji-group {
  display: inline-block;
  width: 24px;
  height: 29px;
  background: url('../images/emoji-groups.png') no-repeat;
  background-size: 42px 350px;
  cursor: pointer;
}
.emoji-groups .btn-backspace {
  color: #a8a8a8;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 30px;
  margin-right: 10px;
  width: 30px;
}
  .emoji-groups .btn-backspace:hover {
    color: #d7d7d7;
  }
.is-1x .emoji-groups .emoji-group {
  background-image: url('../images/emoji-groups-1x.png');
}

.emoji-groups .icon-recent { background-position: -9px -306px; }
.emoji-groups .icon-recent-selected { background-position: -9px -277px; }
.emoji-groups .icon-smile { background-position: -9px -34px; }
.emoji-groups .icon-smile-selected { background-position: -9px -5px; }
.emoji-groups .icon-flower { background-position: -9px -145px; }
.emoji-groups .icon-flower-selected { background-position: -9px -118px; }
.emoji-groups .icon-bell { background-position: -9px -89px; }
.emoji-groups .icon-bell-selected { background-position: -9px -61px; }
.emoji-groups .icon-car { background-position: -9px -196px; }
.emoji-groups .icon-car-selected { background-position: -9px -170px; }
.emoji-groups .icon-grid { background-position: -9px -248px; }
.emoji-groups .icon-grid-selected { background-position: -9px -222px; }

.emoji-groups .icon-smile,
.emoji-groups .icon-flower,
.emoji-groups .icon-bell,
.emoji-groups .icon-car,
.emoji-groups .icon-grid {
  opacity: 0.7;
}
.emoji-groups .icon-smile:hover,
.emoji-groups .icon-flower:hover,
.emoji-groups .icon-bell:hover,
.emoji-groups .icon-car:hover,
.emoji-groups .icon-grid:hover {
  opacity: 1;
}
