body {
  background-color: #f5f5f5 !important;
  color: #323E4F;
  overflow-y: hidden;
}

.fixedHeader-floating,
.fixedHeader-locked {
  background-color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

.fixedHeader-floating {
  position: fixed;
}

.fixedHeader-floating+.fixedHeader-floating,
.fixedHeader-locked+.fixedHeader-floating {
  border-top: 0 !important;
}

@media (max-width: 768px) {
  .fixedHeader-floating {
    display: none;
  }
}

.fixedHeader-locked {
  position: absolute;
}

@media (max-width: 768px) {
  .fixedHeader-locked {
    display: none;
  }
}

@media print {
  table.fixedHeader-floating {
    display: none;
  }
}

/* ------------------------------------------------------------------------------
*
*  # Autofill extension
*
*  Spreadsheets such as Excel and Google Docs have a very handy data duplication
*  option of an auto fill tool
*
*  Version: 1.1
*  Latest update: Mar 10, 2016
*
* ---------------------------------------------------------------------------- */
.dt-autofill-handle {
  position: absolute;
  height: 8px;
  width: 8px;
  z-index: 102;
  border: 1px solid #2196F3;
  background: #2196F3;
}

.dt-autofill-select {
  position: absolute;
  z-index: 1001;
  background-color: #2196F3;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.75) 5px, rgba(255, 255, 255, 0.75) 10px);
}

.dt-autofill-select.top,
.dt-autofill-select.bottom {
  height: 1px;
}

.dt-autofill-select.left,
.dt-autofill-select.right {
  width: 1px;
}

.dt-autofill-list {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  margin-left: -250px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid transparent;
  z-index: 1050;
  padding: 7px 0;
}

.dt-autofill-list ul {
  display: table;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.dt-autofill-list ul li {
  display: table-row;
}

.dt-autofill-list ul li:hover {
  background-color: #f5f5f5;
}

.dt-autofill-list .dt-autofill-question {
  display: table-cell;
  padding: 7px 15px;
}

.dt-autofill-list .dt-autofill-question input[type=number] {
  padding: 6px;
  width: 30px;
  margin: -2px 0;
}

.dt-autofill-list .dt-autofill-button {
  display: table-cell;
  padding: 7px 15px;
  text-align: right;
}

.dt-autofill-list .dt-autofill-button .btn {
  padding: 3px;
  background-color: #2196F3;
  color: #fff;
  font-size: 0;
}

.dt-autofill-list .dt-autofill-button .btn:after {
  content: '\e9c3';
  font-family: 'Icomoon';
  display: block;
  font-size: 16px;
  width: 16px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dt-autofill-list .dt-autofill-button .btn:hover {
  opacity: 0.85;
  filter: alpha(opacity=85);
}

.dt-autofill-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1040;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* ------------------------------------------------------------------------------
*
*  # Select extension
*
*  Spreadsheets such as Excel and Google Docs have a very handy data duplication
*  option of an auto fill tool
*
*  Version: 1.1
*  Latest update: Dec 9, 2015
*
* ---------------------------------------------------------------------------- */
.dataTable tbody>tr.selected,
.dataTable tbody>tr>.selected {
  background-color: #E8F5E9;
}

.dataTables_wrapper .select-info,
.dataTables_wrapper .select-item {
  margin-left: 10px;
}

@media (max-width: 768px) {

  .dataTables_wrapper .select-info,
  .dataTables_wrapper .select-item {
    margin-left: 0;
    display: block;
  }
}

.dataTable tbody .select-checkbox {
  position: relative;
}

.dataTable tbody .select-checkbox:before,
.dataTable tbody .select-checkbox:after {
  display: inline-block;
  color: #455A64;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
}

.dataTable tbody .select-checkbox:before {
  content: '';
  background-color: #fff;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border: 2px solid #607D8B;
  border-radius: 2px;
}

.dataTable tbody .selected .select-checkbox:after {
  content: "\e600";
  font-family: 'icomoon';
  font-size: 16px;
  line-height: 1;
  margin-top: -8px;
  margin-left: -8px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------------------------------------------
*
*  # Buttons extension
*
*  The Buttons extension for DataTables provides a common set of options, API
*  methods and styling to display buttons that will interact with a DataTable
*
*  Version: 1.2
*  Latest update: Jul 5, 2016
*
* ---------------------------------------------------------------------------- */
.dt-buttons-full .dt-buttons {
  text-align: center;
  float: none;
  display: block;
  margin: 0;
  border-bottom: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 10px;
  background-color: #fcfcfc;
}

.dt-buttons-full .dt-buttons>.btn {
  margin-bottom: 10px;
  float: none;
}

.dt-buttons {
  float: right;
  display: inline-block;
  margin: 0 0 20px 20px;
}

.dt-buttons-left .dt-buttons {
  float: left;
}

.dt-buttons>.dt-button {
  display: inline-block;
}

.dt-buttons>.btn {
  border-radius: 0;
}

.dt-buttons>.btn:first-child {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.dt-buttons>.btn:last-child {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.dt-buttons>.btn+.btn {
  margin-left: -1px;
}

@media screen and (max-width: 767px) {
  .dt-buttons {
    float: none;
    text-align: center;
    display: block;
  }

  .dt-buttons .btn {
    float: none;
  }
}

.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-align: center;
  z-index: 1050;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dt-button-info h2 {
  margin-top: 0;
  line-height: 1.5384616;
  font-size: 17px;
}

.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #333;
  z-index: 999;
  opacity: 0.25;
  filter: alpha(opacity=25);
}

.dt-button-collection {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  display: block;
  z-index: 1000;
  padding: 7px 0;
  overflow: hidden;
  min-width: 180px;
  border-radius: 3px;
  -webkit-column-gap: 2px;
  -moz-column-gap: 2px;
  -ms-column-gap: 2px;
  -o-column-gap: 2px;
  column-gap: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.dt-button-collection>.dt-button {
  padding: 8px 15px;
  color: #333333;
  display: block;
  outline: 0;
}

.dt-button-collection>.dt-button+.dt-button {
  margin-top: 1px;
}

.dt-button-collection>.dt-button:hover,
.dt-button-collection>.dt-button:focus {
  color: #333333;
  background-color: #f5f5f5;
}

.dt-button-collection>.dt-button.active {
  color: #fff;
  background-color: #2196F3;
}

.dt-button-collection.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  padding-left: 5px;
  padding-right: 5px;
}

.dt-button-collection.fixed.two-column {
  margin-left: -150px;
}

.dt-button-collection.fixed.three-column {
  margin-left: -225px;
}

.dt-button-collection.fixed.four-column {
  margin-left: -300px;
}

.dt-button-collection>* {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

.dt-button-collection.two-column {
  width: 300px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
}

.dt-button-collection.three-column {
  width: 450px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3;
}

.dt-button-collection.four-column {
  width: 600px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4;
}

/* ------------------------------------------------------------------------------
*
*  # Key Table extension
*
*  KeyTable provides Excel like cell navigation on any table. Events (focus, blur,
*  action etc) can be assigned to individual cells, columns, rows or all cells.
*
*  Version: 1.0
*  Latest update: Nov 10, 2015
*
* ---------------------------------------------------------------------------- */
.dataTable th.focus,
.dataTable td.focus {
  outline: 2px solid #2196F3;
  outline-offset: -1px;
}

.dataTable th.focus-success,
.dataTable td.focus-success {
  background-color: #E8F5E9;
  outline-color: #54924e;
}

.dataTable th.focus-info,
.dataTable td.focus-info {
  background-color: #E3F2FD;
  outline-color: #2196F3;
}

.dataTable th.focus-warning,
.dataTable td.focus-warning {
  background-color: #FBE9E7;
  outline-color: #FF5722;
}

.dataTable th.focus-danger,
.dataTable td.focus-danger {
  background-color: #FFEBEE;
  outline-color: #F44336;
}

/* ------------------------------------------------------------------------------
*
*  # Datatables Scroller
*
*  Drawing the rows required for the current display only, for fast operation
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.DTS tbody th,
.DTS tbody td {
  white-space: nowrap;
}

.DTS .DTS_Loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 20px;
  margin-top: -20px;
  margin-left: -100px;
  z-index: 1;
  border: 1px solid #999;
  padding: 20px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}

.DTS .dataTables_scrollHead,
.DTS .dataTables_scrollFoot {
  background-color: #fff;
}

.DTS .dataTables_scrollBody {
  z-index: 2;
}

/* ------------------------------------------------------------------------------
*
*  # Responsive extension
*
*  Optimise the table's layout for different screen sizes through the dynamic 
*  insertion and removal of columns from the table
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.dtr-inline.collapsed tbody tr td:before,
.dtr-inline.collapsed tbody tr th:before {
  margin-right: 10px;
}

.dtr-inline.collapsed tbody tr td:first-child,
.dtr-inline.collapsed tbody tr th:first-child {
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}

.dtr-inline.collapsed tbody tr td:first-child.dataTables_empty:before,
.dtr-inline.collapsed tbody tr th:first-child.dataTables_empty:before {
  display: none;
}

.dtr-column tbody td.control,
.dtr-column tbody th.control {
  position: relative;
  cursor: pointer;
}

.dtr-inline.collapsed tbody tr td:first-child:before,
.dtr-inline.collapsed tbody tr th:first-child:before,
.dtr-column tbody tr td.control:before,
.dtr-column tbody tr th.control:before {
  content: '\e9e4';
  font-family: 'icomoon';
  display: inline-block;
  font-size: 16px;
  width: 16px;
  line-height: 1;
  position: relative;
  top: -1px;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dataTable.dtr-inline.collapsed tbody tr.parent td:first-child:before,
.dataTable.dtr-inline.collapsed tbody tr.parent th:first-child:before,
.dataTable.dtr-column tbody tr.parent td.control:before,
.dataTable.dtr-column tbody tr.parent th.control:before {
  content: '\e9e7';
}

.dtr-inline.collapsed tbody tr.child td:before {
  display: none;
}

.dataTable tr.child:hover {
  background-color: transparent;
}

.dataTable tr.child .dtr-title {
  display: table-cell;
  font-weight: 500;
  padding-right: 40px;
}

.dataTable tr.child .dtr-data {
  display: table-cell;
  padding: 8px 0;
}

.dataTable tr td.child {
  white-space: normal;
  position: relative;
}

.dataTable tr td.child>ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dataTable tr td.child>ul>li {
  display: table-row;
}

@media (max-width: 480px) {

  .dataTable tr td.child>ul>li .dropdown,
  .dataTable tr td.child>ul>li .dropup,
  .dataTable tr td.child>ul>li .btn-group {
    position: static;
  }

  .dataTable tr td.child>ul>li .dropdown-menu {
    left: 0;
    right: 0;
    border-radius: 0;
    border-width: 1px 0;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Google maps base
 *
 *  Styles related to Google Maps: containers, sizing etc.
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.map-wrapper {
  width: 100%;
  height: 400px;
}

.sidebar .map-wrapper {
  height: 200px;
  border: 1px solid #ddd;
}

/* ------------------------------------------------------------------------------
 *
 *  # Google Maps overrides
 *
 *  Override Google Maps default styles
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.map-container {
  height: 500px;
}

.gm-style {
  font-size: 13px;
}

.gm-style .gm-style-iw {
  font-size: 13px;
  font-weight: 400;
}

/* ------------------------------------------------------------------------------
 *
 *  # Vector maps
 *
 *  Vector map container, tooltip and zooming
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.vector-map-container {
  height: 500px;
}

.jvectormap-label {
  position: absolute;
  display: none;
  border-radius: 2px;
  background-color: #333;
  color: #fff;
  padding: 7px 12px;
}

.jvectormap-zoomin,
.jvectormap-zoomout {
  position: absolute;
  left: 10px;
  border-radius: 2px;
  padding: 8px;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  line-height: 10px;
  background-color: #37474F;
  text-align: center;
}

.jvectormap-zoomin:hover,
.jvectormap-zoomout:hover {
  background-color: #455A64;
}

.jvectormap-zoomin {
  top: 10px;
}

.jvectormap-zoomout {
  top: 40px;
}

/* ------------------------------------------------------------------------------
*
*  # Chart styling
*
*  Charts base - container and sizing setup
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.chart-container {
  position: relative;
  width: 100%;
}

.chart-container.has-scroll {
  overflow-x: scroll;
  overflow-y: visible;
  max-width: 100%;
}

@media (max-width: 768px) {
  .chart-container {
    overflow-x: scroll;
    overflow-y: visible;
    max-width: 100%;
  }
}

.chart {
  position: relative;
  display: block;
  width: 100%;
  direction: ltr;
}

.chart.has-minimum-width {
  min-width: 600px;
}

.has-fixed-height {
  height: 400px;
}

.chart-pie {
  width: 100%;
  height: 400px;
  min-width: 500px;
}

/* ------------------------------------------------------------------------------
*
*  # C3 charts
*
*  Styles for C3.js visualization library
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.c3 svg {
  font-size: 12px;
}

.c3 path,
.c3 line {
  fill: none;
  stroke: #999999;
}

.c3 path.domain {
  shape-rendering: crispEdges;
}

.c3 text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
  shape-rendering: crispEdges;
}

.c3-chart-arc path {
  stroke: #fff;
}

.c3-chart-arc text {
  fill: #fff;
  font-size: 13px;
}

.c3-grid line {
  stroke: #aaa;
}

.c3-grid text {
  fill: #aaa;
}

.c3-xgrid,
.c3-ygrid {
  stroke-dasharray: 3 3;
}

.c3-text {
  font-weight: 500;
}

.c3-text.c3-empty {
  fill: #808080;
  font-size: 2em;
}

.c3-line {
  stroke-width: 2px;
}

.c3-area {
  stroke-width: 0;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.c3-circle._expanded_ {
  stroke-width: 1.5px;
  stroke: #fff;
}

.c3-selected-circle {
  fill: #fff;
  stroke-width: 2px;
}

.c3-bar {
  stroke-width: 0;
}

.c3-bar._expanded_ {
  fill-opacity: 0.75;
}

.c3-chart-arcs-title {
  font-size: 1.3em;
}

.c3-chart-arcs .c3-chart-arcs-background {
  fill: #e0e0e0;
  stroke: none;
}

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
  fill: #333333;
  font-size: 15px;
}

.c3-chart-arcs .c3-chart-arcs-gauge-max,
.c3-chart-arcs .c3-chart-arcs-gauge-min {
  fill: #999999;
}

.c3-chart-arc .c3-gauge-value {
  fill: #333333;
  font-size: 28px;
}

.c3-target.c3-focused {
  opacity: 1;
  filter: alpha(opacity=100);
}

.c3-target.c3-focused path.c3-line,
.c3-target.c3-focused path.c3-step {
  stroke-width: 2px;
}

.c3-target.c3-defocused {
  opacity: 0.3 !important;
  filter: alpha(opacity=30) !important;
}

.c3-region {
  fill: #546E7A;
  fill-opacity: .1;
}

.c3-brush .extent {
  fill-opacity: .1;
}

.c3-legend-item {
  font-size: 12px;
}

.c3-legend-background {
  fill: #fff;
  stroke: lightgray;
  stroke-width: 1;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.c3-tooltip {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  empty-cells: show;
  opacity: 0.95;
  filter: alpha(opacity=95);
}

.c3-tooltip th {
  background-color: #333;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
  border: 1px solid #333;
  font-weight: 500;
}

.c3-tooltip td {
  font-size: 12px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.c3-tooltip td>span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}

.c3-tooltip td.value {
  text-align: right;
}

/* ------------------------------------------------------------------------------
*
*  # D3.js library
*
*  Basic styles for D3.js visualization library
*
*  Version: 1.1
*  Latest update: Apr 25, 2017
*
* ---------------------------------------------------------------------------- */
.d3-axis path {
  fill: none;
  stroke: #999999;
  shape-rendering: crispEdges;
}

.d3-axis line {
  stroke: #eeeeee;
  shape-rendering: crispEdges;
}

.d3-axis .tick,
.d3-axis .tick text {
  font-size: 12px;
  fill: #333333;
}

.d3-axis-solid path,
.d3-axis-solid line {
  stroke: #ccc;
}

.d3-axis-solid .tick {
  fill: #999999;
}

.d3-axis-solid .tick text {
  fill: #999999;
}

.d3-axis-strong path,
.d3-axis-strong line {
  stroke: #ccc;
}

.d3-axis-strong .tick {
  fill: #333333;
}

.d3-axis-strong .tick text {
  fill: #333333;
}

.d3-axis-transparent path {
  stroke: none;
}

.d3-axis-transparent line {
  stroke: #e5e5e5;
}

.d3-axis-transparent .tick {
  fill: #999999;
}

.d3-axis-transparent .tick text {
  fill: #999999;
}

.d3-tip {
  position: absolute;
  padding: 8px 15px;
  border-radius: 3px;
  background-color: #333;
  color: #fff;
  margin-bottom: -3px;
  font-size: 12px;
  z-index: 1070;
}

.d3-tip .d3-tip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.d3-tip.n .d3-tip-arrow {
  bottom: -4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #333;
}

.d3-tip.e .d3-tip-arrow {
  top: 50%;
  left: -4px;
  margin-top: -4px;
  border-width: 4px 4px 4px 0;
  border-right-color: #333;
}

.d3-tip.w .d3-tip-arrow {
  top: 50%;
  right: -4px;
  margin-top: -4px;
  border-width: 4px 0 4px 4px;
  border-left-color: #333;
}

.d3-tip.s .d3-tip-arrow {
  top: 0;
  left: 50%;
  margin-left: -4px;
  border-width: 0 4px 4px;
  border-bottom-color: #333;
}

.venntooltip {
  position: absolute;
  text-align: center;
  min-width: 60px;
  white-space: nowrap;
  background-color: #333;
  color: #fff;
  padding: 7px 12px;
  border-radius: 3px;
  display: none;
}

.d3-line {
  fill: none;
}

.d3-line-thin {
  stroke-width: 1px;
}

.d3-line-medium {
  stroke-width: 1.5px;
}

.d3-line-strong {
  stroke-width: 2px;
}

.d3-line-circle {
  fill: none;
  cursor: pointer;
}

.d3-line-circle-thin {
  stroke-width: 1px;
}

.d3-line-circle-medium {
  stroke-width: 1.5px;
}

.d3-line-circle-strong {
  stroke-width: 2px;
}

.d3-grid .tick line {
  stroke-width: 1px;
  stroke: #e5e5e5;
  shape-rendering: crispEdges;
}

.d3-grid .tick text {
  fill: #333333;
  stroke: none;
}

.d3-grid-dashed .tick {
  stroke-dasharray: 4, 2;
  stroke-width: 1px;
  stroke: #e5e5e5;
  shape-rendering: crispEdges;
}

.d3-grid-dashed path {
  stroke-width: 0;
}

.d3-crosshair-overlay {
  fill: none;
  pointer-events: all;
}

.bullet-tick line {
  stroke: #999999;
  stroke-width: 1px;
  shape-rendering: crispEdges;
}

.bullet-tick text {
  fill: #999999;
  font-size: 12px;
}

.bullet-marker {
  stroke-width: 2px;
  shape-rendering: crispEdges;
}

.bullet-title {
  font-size: 13px;
  font-weight: 500;
}

.bullet-subtitle {
  fill: #999999;
}

.bullet-1 .bullet-range-1 {
  fill: rgba(96, 125, 139, 0.8);
}

.bullet-1 .bullet-range-2 {
  fill: rgba(96, 125, 139, 0.4);
}

.bullet-1 .bullet-range-3 {
  fill: #607D8B;
}

.bullet-1 .bullet-measure-1 {
  fill: rgba(84, 110, 122, 0.9);
}

.bullet-1 .bullet-measure-2 {
  fill: #fff;
}

.bullet-1 .bullet-marker {
  stroke: #37474F;
}

.bullet-2 .bullet-range-1 {
  fill: rgba(255, 112, 67, 0.6);
}

.bullet-2 .bullet-range-2 {
  fill: rgba(255, 112, 67, 0.3);
}

.bullet-2 .bullet-range-3 {
  fill: #FF7043;
}

.bullet-2 .bullet-measure-1 {
  fill: rgba(244, 81, 30, 0.9);
}

.bullet-2 .bullet-measure-2 {
  fill: #fff;
}

.bullet-2 .bullet-marker {
  stroke: #D84315;
}

.bullet-3 .bullet-range-1 {
  fill: rgba(102, 187, 106, 0.7);
}

.bullet-3 .bullet-range-2 {
  fill: rgba(102, 187, 106, 0.35);
}

.bullet-3 .bullet-range-3 {
  fill: #66BB6A;
}

.bullet-3 .bullet-measure-1 {
  fill: rgba(67, 160, 71, 0.9);
}

.bullet-3 .bullet-measure-2 {
  fill: #fff;
}

.bullet-3 .bullet-marker {
  stroke: #2E7D32;
}

.counter-icon {
  font-size: 32px;
  position: absolute;
  left: 50%;
  margin-left: -16px;
}

.chart-widget-legend {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 12px;
  text-align: center;
}

.chart-widget-legend li {
  margin: 5px 10px 0;
  padding: 7px 8px 5px;
  display: inline-block;
}

/* ------------------------------------------------------------------------------
 *
 *  # Sparklines library
 *
 *  Generate sparklines (small inline charts) directly in the browser
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.jqsfield {
  font-size: 12px !important;
  font-family: 'Roboto', sans-serif !important;
}

.jqstooltip {
  font-size: 12px !important;
  font-family: 'Roboto', sans-serif !important;
  padding: 7px !important;
  line-height: 1.6666667 !important;
  border: 0 !important;
  border-radius: 3px !important;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* ------------------------------------------------------------------------------
 *
 *  # Ecommerce stuff
 *
 *  Specific styles for Ecommerce set of pages
 *
 *  Version: 1.0
 *  Latest update: Mar 19, 2017
 *
 * ---------------------------------------------------------------------------- */
.row-labels {
  margin-bottom: 10px;
}

.row-labels .label {
  display: block;
  padding-top: 4px;
  padding-bottom: 3px;
  margin-bottom: 10px;
}

.row-colors {
  margin-bottom: 10px;
}

.row-colors>div {
  text-align: center;
  margin-bottom: 10px;
}

.row-colors>div>a {
  position: relative;
  padding: 15px;
  display: block;
  border-radius: 3px;
  color: #fff;
}

.row-colors>div>a>i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}

.row-colors>div>span {
  display: block;
  margin-top: 5px;
  color: #999999;
  font-size: 11px;
}

.pricing-table .pricing-table-price {
  font-size: 42px;
}

.pricing-table .pricing-table-price>span {
  font-size: 30px;
  margin-right: 5px;
}

.pricing-table ul>li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-table div[class*=bg-] ul>li {
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-table-panel .pricing-table-body {
  padding: 20px;
  text-align: center;
  -webkit-box-shadow: 1px 0 0 #ddd, 0 1px 0 #ddd;
  box-shadow: 1px 0 0 #ddd, 0 1px 0 #ddd;
}

.ribbon-container {
  width: 104px;
  height: 106px;
  overflow: hidden;
  position: absolute;
  top: -1px;
  right: -1px;
}

.ribbon {
  text-align: center;
  font-size: 12px;
  line-height: 1.6666667;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  left: -11px;
  top: 25px;
  width: 150px;
  background-color: #54924e;
  color: #fff;
  letter-spacing: 0.25px;
  z-index: 999;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------------------
 *
 *  # Blog layouts
 *
 *  Blog layouts with various blog layouts
 *
 *  Version: 1.0
 *  Latest update: Aug 1, 2016
 *
 * ---------------------------------------------------------------------------- */
.blog-horizontal>.panel-body {
  padding-bottom: 0;
}

.blog-horizontal .blog-title>a {
  color: #333333;
}

.blog-horizontal .blog-title>.list-inline {
  margin-top: 3px;
}

.blog-horizontal .thumb {
  width: 100%;
}

@media (min-width: 769px) {
  .blog-horizontal .thumb {
    width: 45%;
    float: left;
    margin-right: 20px;
    max-width: 400px;
    z-index: 10;
  }
}

.blog-horizontal-1 .thumb {
  margin-bottom: 20px;
}

.blog-horizontal-1 .blog-preview {
  margin-bottom: 10px;
}

.blog-horizontal-1 .panel-footer-transparent {
  margin-top: 2px;
  margin-bottom: 2px;
}

@media (min-width: 769px) {
  .blog-horizontal-1 .thumb {
    margin-bottom: 10px;
  }
}

.blog-horizontal-2 .thumb {
  margin-bottom: 20px;
}

.blog-horizontal-2 .blog-title {
  margin-top: 5px;
  margin-bottom: 15px;
}

.blog-horizontal-2 .blog-preview {
  margin-bottom: 20px;
}

.blog-horizontal-3 .thumb,
.blog-horizontal-3 .blog-preview {
  margin-bottom: 20px;
}

.blog-horizontal-3 .blog-title {
  margin-top: 2px;
  margin-bottom: 0;
}

.blog-horizontal-3 .blog-preview .list-inline,
.blog-horizontal-3 .blog-preview .list-inline>li>a {
  color: #999999;
}

@media (min-width: 769px) {
  .blog-horizontal-xs .thumb {
    width: 35%;
    max-width: 200px;
  }
}

@media (min-width: 769px) {
  .blog-horizontal-sm .thumb {
    width: 40%;
    max-width: 300px;
  }
}

@media (min-width: 769px) {
  .blog-horizontal-lg .thumb {
    width: 50%;
    max-width: 500px;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Task manager
 *
 *  Styles related to task manager - detailed task, list and grid
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.timer-weekdays {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.timer-weekdays>li {
  display: inline-block;
  margin: 2px 0;
}

.timer-weekdays>li>a {
  display: block;
  margin: 0 1px;
}

.timer-weekdays .label-default {
  background-color: #ccc;
  border-color: #ccc;
}

.timer-weekdays .label-default:hover,
.timer-weekdays .label-default:focus {
  border-color: #999999;
}

.timer {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.timer>li {
  font-size: 46px;
  text-align: center;
  display: inline-block;
  color: #555;
  font-weight: 300;
}

.timer>li.dots {
  font-size: 25px;
  vertical-align: top;
  padding: 16.66666667px 0;
}

.timer>li>span {
  display: block;
  font-size: 13px;
}

.task-details {
  float: right;
  margin: 0;
}

@media (max-width: 1024px) {
  .task-details {
    float: none;
    margin-top: 15px;
    list-style: none;
    padding: 0;
  }

  .task-details>li {
    float: left;
    position: relative;
    padding-right: 20px;
    margin-top: 0;
  }

  .task-details>li:before {
    content: '\2022';
    position: absolute;
    right: 8px;
    color: #999;
  }

  .task-details>li:last-child:before {
    content: none;
  }
}

@media (max-width: 768px) {
  .task-details>li {
    float: none;
  }

  .task-details>li:before {
    content: none;
  }

  .task-details>li+li {
    margin-top: 10px;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Invoice template
 *
 *  General styles for invoice, mainly responsive setup
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
@media (min-width: 769px) {

  .invoice-details,
  .invoice-payment-details>li span {
    float: right;
    text-align: right;
  }
}

.invoice-grid ul,
.invoice-grid ol {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .invoice-grid .text-right {
    text-align: inherit;
  }

  .invoice-grid [class*=col-]+[class*=col-] {
    margin-top: 20px;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # User list
 *
 *  Styles for user lists - layouts, contact details etc.
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.contact-details {
  padding: 15px;
  padding-left: 30px;
  background-color: #fcfcfc;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.media-list-bordered .contact-details {
  border-bottom: 0;
}

.panel-body>.media-list .contact-details {
  padding-left: 15px;
  background-color: transparent;
  margin-top: 15px;
}

.panel-body>.media-list-bordered .contact-details {
  padding-bottom: 0;
}

.contact-details>ul,
.contact-details>ul>li:first-child {
  margin: 0;
}

/* ------------------------------------------------------------------------------
 *
 *  # User profile
 *
 *  Styles for all user profile layouts
 *
 *  Version: 1.1
 *  Latest update: Mar 6, 2016
 *
 * ---------------------------------------------------------------------------- */
.profile-cover {
  position: relative;
}

.profile-cover+.navbar {
  margin-bottom: 40px;
}

.profile-cover .media {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.profile-cover .media .btn-default {
  border-color: #fcfcfc;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.profile-cover .media-body,
.profile-cover small {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .profile-cover .media {
    text-align: center;
    margin-top: 0;
    bottom: auto;
    top: 40px;
  }

  .profile-cover .media-left,
  .profile-cover .media-right {
    padding: 0;
    display: block;
    overflow-x: auto;
  }

  .profile-cover .media-body {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }

  .profile-cover .media-body>h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

.profile-cover-img {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

@media (max-width: 768px) {
  .profile-cover-img {
    height: 320px;
  }
}

.media .profile-thumb img {
  width: 100px;
  height: 100px;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------------------------------------------
 *
 *  # Login and related forms
 *
 *  Styles related to user login - logins, registration, password revovery, unlock etc.
 *
 *  Version: 1.2
 *  Latest update: Mar 10, 2016
 *
 * ---------------------------------------------------------------------------- */
.login-cover {
  background: url('../images/login_cover.jpg') no-repeat;
  background-size: cover;
}

.login-container .page-container {
  padding-top: 40px;
  position: static;
}

.login-container .page-container .login-form {
  width: 320px;
}

.login-container .page-container .login-form .thumb {
  margin: 0 auto 20px auto;
}

.login-container .page-container .login-form,
.login-container .page-container .registration-form {
  margin: 0 auto 20px auto;
}

@media (max-width: 480px) {

  .login-container .page-container .login-form,
  .login-container .page-container .registration-form {
    width: 100%;
  }
}

.login-container .page-container .nav-tabs.nav-justified {
  margin-bottom: 0;
}

.login-container .page-container .nav-tabs.nav-justified>li>a {
  border-top: 0 !important;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #f5f5f5;
}

.login-container .page-container .nav-tabs.nav-justified>li:first-child>a {
  border-left: 0;
  border-radius: 3px 0 0 0;
}

.login-container .page-container .nav-tabs.nav-justified>li:last-child>a {
  border-right: 0;
  border-radius: 0 3px 0 0;
}

.login-container .page-container .nav-tabs.nav-justified>li.active>a {
  background-color: transparent;
}

@media (max-width: 768px) {
  .login-container .page-container .nav-tabs.nav-justified {
    padding: 0;
    border-width: 0 0 1px 0;
    border-radius: 0;
  }

  .login-container .page-container .nav-tabs.nav-justified:before {
    content: none;
  }

  .login-container .page-container .nav-tabs.nav-justified>li>a {
    border-width: 0 !important;
  }
}

.login-container .footer {
  left: 0;
  right: 0;
}

@media (max-width: 768px) {

  .login-options,
  .login-options .text-right {
    text-align: center;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Timeline
 *
 *  Styles for timeline in 3 layouts: left, right and centered
 *
 *  Version: 1.1
 *  Latest update: Dec 11, 2015
 *
 * ---------------------------------------------------------------------------- */
.timeline {
  position: relative;
  height: 100%;
}

.timeline:before,
.timeline:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background-color: #ccc;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  z-index: 1;
}

.timeline:after {
  top: auto;
  bottom: 0;
}

.timeline-container {
  position: relative;
  padding-top: 10px;
  margin-top: -10px;
  padding-bottom: 1px;
}

.timeline-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  background-color: #ccc;
  height: 100%;
  width: 2px;
  z-index: -1;
}

.timeline-row {
  position: relative;
}

.timeline-content {
  margin-bottom: 20px;
}

.timeline-date {
  text-align: center;
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.timeline-date:before,
.timeline-date:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background-color: #ccc;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-date:after {
  top: auto;
  bottom: 0;
}

.panel .timeline-date {
  background-color: #fff;
}

.timeline-time {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f5f5f5;
  position: relative;
  margin-bottom: 20px;
}

.timeline-time:before,
.timeline-time:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background-color: #ccc;
  height: 4px;
  width: 4px;
  border-radius: 50%;
}

.timeline-time:after {
  top: auto;
  bottom: 0;
}

.panel .timeline-time {
  background-color: #fff;
}

.timeline-time span {
  display: block;
  color: #999999;
  font-size: 12px;
}

.timeline-time span:before {
  content: '\2022';
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top: 1px;
}

@media (min-width: 1025px) {

  .timeline-time:before,
  .timeline-time:after {
    content: none;
  }
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  background-color: #fff;
  border: 4px solid #f5f5f5;
}

.panel .timeline-icon {
  border-color: #fff;
}

.timeline-icon div {
  border-radius: 50%;
  height: 100%;
  -webkit-box-shadow: 0 0 0 2px #ccc inset;
  box-shadow: 0 0 0 2px #ccc inset;
}

.timeline-icon div[class*=bg-] {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.timeline-icon div>i {
  display: block;
  line-height: 40px;
  top: 0;
}

.timeline-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (min-width: 1025px) {
  .timeline-center .timeline-row {
    margin-right: 50%;
    padding-right: 44px;
  }

  .timeline-center .post-even {
    margin-right: 0;
    padding-right: 0;
    margin-left: 50%;
    padding-left: 44px;
  }

  .timeline-center .post-full {
    margin: 0;
    padding: 0;
  }

  .timeline-center .post-full .timeline-content {
    position: relative;
  }

  .timeline-center .post-full .timeline-content:before,
  .timeline-center .post-full .timeline-content:after {
    content: '';
    border-style: solid;
    border-color: #f5f5f5;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
  }

  .timeline-center .post-full .timeline-content:before {
    border-width: 4px 0 0 0;
    top: -5px;
  }

  .timeline-center .post-full .timeline-content:after {
    border-width: 0 0 4px 0;
    bottom: -5px;
  }

  .timeline-left .timeline-container:after,
  .timeline-left:before,
  .timeline-left:after,
  .timeline-left .timeline-date:before,
  .timeline-left .timeline-date:after {
    left: 24px;
  }

  .timeline-left .timeline-row,
  .timeline-left .timeline-date {
    padding-left: 68px;
  }

  .timeline-right .timeline-container:after,
  .timeline-right:before,
  .timeline-right:after,
  .timeline-right .timeline-date:before,
  .timeline-right .timeline-date:after {
    left: auto;
    right: 24px;
    margin-left: 0;
    margin-right: -2px;
  }

  .timeline-right .timeline-container:after {
    margin-right: -1px;
  }

  .timeline-right .timeline-row,
  .timeline-right .timeline-date {
    padding-right: 68px;
  }

  .timeline-left .timeline-date,
  .timeline-right .timeline-date {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .timeline-icon {
    position: absolute;
    top: 10px;
  }

  .timeline-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    height: 2px;
    width: 16px;
    background-color: #ccc;
    z-index: 1;
  }

  .timeline-left .timeline-icon {
    left: 0;
  }

  .timeline-left .timeline-icon:after {
    left: 100%;
    margin-left: 4px;
  }

  .timeline-right .timeline-icon {
    right: 0;
  }

  .timeline-right .timeline-icon:after {
    right: 100%;
    margin-right: 4px;
  }

  .timeline-center .timeline-row:not(.post-full) .timeline-icon {
    left: 100%;
    margin-left: -24px;
  }

  .timeline-center .timeline-row.post-even .timeline-icon {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: -24px;
  }

  .timeline-center .timeline-icon:after {
    right: 100%;
    margin-right: 4px;
  }

  .timeline-center .post-even .timeline-icon:after {
    left: 100%;
    margin-left: 4px;
  }

  .timeline-center .post-full .timeline-icon {
    position: static;
  }

  .timeline-center .post-full .timeline-icon:after {
    content: none;
  }

  .timeline-time {
    padding: 0;
    text-align: inherit;
    background-color: transparent;
  }

  .timeline-time:before {
    content: none;
  }

  .timeline-left .timeline-time,
  .timeline-right .timeline-time {
    padding-top: 10px;
    margin-bottom: 20px;
    padding-left: 10px;
  }

  .timeline-right .timeline-time {
    text-align: right;
    padding-left: 0;
    padding-right: 10px;
  }

  .timeline-center .timeline-time,
  .timeline-center .post-full .timeline-time {
    position: absolute;
    left: 100%;
    top: 15px;
    width: 100%;
    padding-left: 44px;
  }

  .timeline-center .post-even .timeline-time,
  .timeline-center .post-full .timeline-time {
    left: auto;
    right: 100%;
    padding-left: 0;
    padding-right: 44px;
    text-align: right;
  }

  .timeline-center .post-full .timeline-time {
    right: 50%;
    top: 5px;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Chat layouts
 *
 *  Conversation chat styles - layouts, chat elements, colors, options
 *
 *  Version: 1.1
 *  Latest update: Oct 20, 2015
 *
 * ---------------------------------------------------------------------------- */
.chat-list,
.chat-stacked {
  max-height: 520px;
  overflow: auto;
}

.chat-list .media-left {
  padding-right: 20px;
}

.chat-list .media-right {
  padding-left: 20px;
}

.chat-list .media-content {
  position: relative;
  padding: 10px 12px;
  width: auto;
  border-radius: 3px;
  display: inline-block;
}

.chat-list .media-content:not([class*=bg-]) {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.chat-list .media-content>i {
  top: 0;
  margin: 2px;
}

.chat-list .reversed .media-content {
  text-align: left;
  color: #fff;
}

.chat-list .reversed .media-content:not([class*=bg-]) {
  background-color: #42A5F5;
  border-color: #42A5F5;
}

.chat-list .reversed .media-content>a {
  color: #fff;
}

.chat-list .reversed .media-body {
  text-align: right;
}

.chat-list .date-step.media {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  color: #999;
}

.chat-list .chat-thumbs img {
  margin-top: 5px;
  margin-bottom: 5px;
  max-height: 100px;
  height: auto;
  max-width: 100%;
  display: inline-block;
  border-radius: 3px;
}

.chat-list .media-content:before,
.chat-list .reversed .media-content:before {
  content: '';
  left: -5px;
  top: 15px;
  position: absolute;
  margin-left: 0;
}

.chat-list .media-content:before {
  border-top: 5px solid transparent;
  border-right: 5px solid;
  border-right-color: inherit;
  border-bottom: 5px solid transparent;
}

.chat-list .reversed .media-content:before {
  left: auto;
  right: -5px;
  border-right: 0;
  border-top: 5px solid transparent;
  border-left: 5px solid;
  border-left-color: inherit;
  border-bottom: 5px solid transparent;
}

@media (min-width: 769px) {
  .chat-list .media {
    margin-right: 20%;
  }

  .chat-list .media.reversed {
    margin-right: 0;
    margin-left: 20%;
  }
}

.chat-list-inverse .media-content:not([class*=bg-]) {
  color: #fff;
  background-color: #42A5F5;
  border-color: #42A5F5;
}

.chat-list-inverse .media-content:before {
  border-right: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid #42A5F5;
  border-bottom: 5px solid transparent;
}

.chat-list-inverse .media-content>a {
  color: #fff;
}

.chat-list-inverse .reversed .media-content:not([class*=bg-]) {
  background-color: #f5f5f5;
  color: inherit;
}

.chat-list-inverse .reversed .media-content:before {
  border-top: 5px solid transparent;
  border-left: 5px solid #f5f5f5;
  border-bottom: 5px solid transparent;
}

/* ------------------------------------------------------------------------------
 *
 *  # Search
 *
 *  Styles for search results and input
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.panel .main-search input[type=text] {
  background-color: #FAFAFA;
}

.search-results-list .list-inline {
  margin-bottom: 5px;
}

.related-searches {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.website-search-results {
  padding: 20px;
  padding-bottom: 0;
  border-bottom: 1px solid #eeeeee;
}

.media-preview {
  width: auto;
  height: auto;
  max-width: none;
  max-height: 90px;
}

@media (max-width: 768px) {
  .search-option-buttons {
    text-align: center;
  }

  .search-option-buttons>.text-right {
    text-align: inherit;
  }
}

/* ------------------------------------------------------------------------------
 *
 *  # Error pages
 *
 *  Styles for error and offline pages
 *
 *  Version: 1.0
 *  Latest update: May 25, 2015
 *
 * ---------------------------------------------------------------------------- */
.error-title {
  color: #fff;
  font-size: 200px;
  line-height: 1;
  margin-top: 20px;
  margin-bottom: 40px;
  font-weight: 300;
  text-stroke: 1px transparent;
  display: block;
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .error-title {
    font-size: 130px;
  }
}

.offline-title {
  font-size: 160px;
}

@media (max-width: 768px) {
  .offline-title {
    font-size: 90px;
  }
}

/* ------------------------------------------------------------------------------
*
*  # Heading elmeents
*
*  Display default and custom components in page header and panel heading
*
*  Version: 1.3
*  Latest update: Aug 10, 2016
*
* ---------------------------------------------------------------------------- */

@media (min-width: 769px) {
  .heading-form .form-group {
    float: left;
  }

  .heading-form .form-group+.form-group {
    margin-left: 15px;
  }
}

@media (max-width: 768px) {

  .heading-elements:not(.not-collapsible),
  .breadcrumb-elements:not(.not-collapsible) {
    display: none;
  }

  .heading-elements.visible-elements,
  .breadcrumb-elements.visible-elements {
    display: block;
  }

  .panel .has-visible-elements {
    padding-bottom: 0;
  }

  .panel-flat .panel-heading.has-visible-elements {
    padding-bottom: 20px;
  }

  .panel .visible-elements {
    border-top: 1px solid #ddd;
    padding: 20px;
    padding-top: 0;
  }

  .panel-heading .visible-elements {
    margin: 15px -20px 0 -20px;
    background-color: #fcfcfc;
  }

  .panel-flat .panel-heading .visible-elements {
    margin-top: 20px;
    border-bottom: 1px solid #ddd;
  }

  .panel-footer .visible-elements {
    margin-top: 7px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
  }

  .panel-footer-condensed .visible-elements {
    margin-top: 2px;
  }

  .panel-footer-transparent .visible-elements {
    margin-top: 12px;
    background-color: #fff;
  }

  .panel[class*=bg-] .visible-elements,
  .panel-heading[class*=bg-] .visible-elements,
  .panel-primary .visible-elements,
  .panel-danger .visible-elements,
  .panel-success .visible-elements,
  .panel-warning .visible-elements,
  .panel-info .visible-elements {
    border-color: rgba(255, 255, 255, 0.2);
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .visible-elements.breadcrumb-elements.not-collapsible {
    display: none;
  }

  .page-header-content>.visible-elements {
    background-color: #f5f5f5;
    left: 0;
    right: 0;
    border-top: 1px solid #dcdcdc;
    z-index: 1002;
    padding-bottom: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-header-default .page-header-content>.visible-elements {
    background-color: #fcfcfc;
    border-color: #ddd;
  }

  .page-header-inverse .page-header-content>.visible-elements {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* ------------------------------------------------------------------------------
*
*  # Helper classes
*
*  Custom helper classes
*
*  Version: 1.2
*  Latest update: Mar 20, 2017
*
* ---------------------------------------------------------------------------- */
.no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.opacity-75 {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.opacity-50 {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.opacity-25 {
  opacity: 0.25;
  filter: alpha(opacity=25);
}

.opacity-0 {
  opacity: 0;
  filter: alpha(opacity=0);
}

.no-edge-top {
  top: 0;
}

.no-edge-bottom {
  bottom: 0;
}

.no-edge-left {
  left: 0;
}

.no-edge-right {
  right: 0;
}

@media (min-width: 1200px) {
  .text-right-lg {
    text-align: right;
  }
}

@media (min-width: 1025px) {
  .text-right-md {
    text-align: right;
  }
}

@media (min-width: 769px) {
  .text-right-sm {
    text-align: right;
  }
}

@media (min-width: 480px) {
  .text-right-xs {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .pull-right-lg {
    float: right;
  }
}

@media (min-width: 1025px) {
  .pull-right-md {
    float: right;
  }
}

@media (min-width: 769px) {
  .pull-right-sm {
    float: right;
  }
}

@media (min-width: 480px) {
  .pull-right-xs {
    float: right;
  }
}

.valign-top {
  vertical-align: top;
}

.valign-middle {
  vertical-align: middle;
}

.valign-bottom {
  vertical-align: bottom;
}

.valign-baseline {
  vertical-align: baseline;
}

.valign-text-top {
  vertical-align: top;
}

.valign-text-bottom {
  vertical-align: text-bottom;
}

.position-relative {
  position: relative;
}

.position-static {
  position: static;
}

.display-block,
label.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-move {
  cursor: move;
}

.cursor-default {
  cursor: default;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-auto {
  overflow: auto;
}

.content-group-xs {
  margin-bottom: 10px !important;
}

.content-group-sm {
  margin-bottom: 15px !important;
}

.content-group {
  margin-bottom: 20px !important;
}

.content-group-lg {
  margin-bottom: 30px !important;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.m-5 {
  margin: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.no-border {
  border: 0 !important;
}

.no-border-top {
  border-top: 0 !important;
}

.no-border-bottom {
  border-bottom: 0 !important;
}

.no-border-left {
  border-left: 0 !important;
}

.no-border-right {
  border-right: 0 !important;
}

.no-border-radius {
  border-radius: 0;
}

.no-border-radius-top {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.no-border-radius-bottom {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.no-border-radius-left {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.no-border-radius-right {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.border-radius {
  border-radius: 3px;
}

.border-radius-top {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.border-radius-bottom {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.border-radius-left {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}

.border-radius-right {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.border-top {
  border-top: 1px solid;
}

.border-bottom {
  border-bottom: 1px solid;
}

.border-left {
  border-left: 1px solid;
}

.border-right {
  border-right: 1px solid;
}

.border-lg {
  border-width: 2px;
}

.border-top-lg {
  border-top: 2px solid;
}

.border-bottom-lg {
  border-bottom: 2px solid;
}

.border-left-lg {
  border-left: 2px solid;
}

.border-right-lg {
  border-right: 2px solid;
}

.border-xlg {
  border-width: 3px;
}

.border-top-xlg {
  border-top: 3px solid;
}

.border-bottom-xlg {
  border-bottom: 3px solid;
}

.border-left-xlg {
  border-left: 3px solid;
}

.border-right-xlg {
  border-right: 3px solid;
}

.full-width {
  width: 100%;
}

@media (min-width: 769px) {
  .width-200 {
    min-width: 200px;
  }

  .width-250 {
    min-width: 250px;
  }

  .width-300 {
    min-width: 300px;
  }

  .width-350 {
    min-width: 350px;
  }

  .width-400 {
    min-width: 400px;
  }

  .width-450 {
    min-width: 450px;
  }

  .width-500 {
    min-width: 500px;
  }

  .width-550 {
    min-width: 550px;
  }

  .width-600 {
    min-width: 600px;
  }

  .width-650 {
    min-width: 650px;
  }
}

.img-lg {
  width: 44px !important;
  height: 44px !important;
}

.img-md {
  width: 40px !important;
  height: 40px !important;
}

.img-sm {
  width: 36px !important;
  height: 36px !important;
}

.img-xs {
  width: 32px !important;
  height: 32px !important;
}

/* ------------------------------------------------------------------------------
*
*  # Snippets
*
*  Custom snippets set
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.progress-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-list>li+li {
  margin-top: 20px;
}

.progress-list>li>label {
  display: block;
}

.progress-list>li span {
  float: right;
  display: block;
}

/* ------------------------------------------------------------------------------
*
*  # Mail list
*
*  Inbox page - list, read and write
*
*  Version: 1.0
*  Latest update: Dev 5, 2016
*
* ---------------------------------------------------------------------------- */
.table-inbox {
  table-layout: fixed;
}

.table-inbox tr td {
  cursor: pointer;
  background-color: #fafafa;
}

.table-inbox tr td:not(:first-child) {
  padding-left: 0;
}

.table-inbox tr.unread {
  font-weight: 700;
}

.table-inbox tr.unread td {
  background-color: #fff;
}

.table-inbox .table-inbox-checkbox {
  width: 58px;
}

.table-inbox .table-inbox-star,
.table-inbox .table-inbox-attachment {
  width: 36px;
}

.table-inbox .table-inbox-image {
  width: 52px;
}

.table-inbox .table-inbox-name {
  width: 180px;
}

.table-inbox .table-inbox-message,
.table-inbox .table-inbox-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.table-inbox .table-inbox-preview {
  font-weight: normal;
  color: #999999;
}

.table-inbox .table-inbox-time {
  text-align: right;
  width: 80px;
}

@media (max-width: 768px) {
  .table-inbox {
    min-width: 480px;
  }

  .table-inbox .table-inbox-message,
  .table-inbox .table-inbox-name {
    white-space: normal;
  }

  .table-inbox .table-inbox-subject {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .table-inbox .table-inbox-star,
  .table-inbox .table-inbox-attachment,
  .table-inbox .table-inbox-image {
    display: none;
  }
}

.mail-details-read {
  margin: 0;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.mail-details-write {
  margin: 0;
  border-top: 1px solid #ddd;
}

.mail-details-write .control-label {
  padding: 10px 20px;
}

.mail-details-write .form-control {
  border-width: 0;
  padding: 10px 20px;
  border-radius: 0;
  height: auto;
}

.mail-container-read {
  max-width: 100%;
  overflow: auto;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.mail-container-write {
  border-top: 1px solid #ddd;
}

.mail-container-write .note-editor {
  border-width: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.mail-attachments-container {
  padding: 20px;
  padding-top: 10px;
  border-top: 1px solid #ddd;
}

.mail-attachments-heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mail-attachments {
  margin: 0;
  padding: 0;
  font-size: 0;
  list-style: none;
}

.mail-attachments>li {
  display: inline-block;
  font-size: 13px;
  padding: 15px 20px;
  background-color: #fcfcfc;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-top: 10px;
  margin-right: 10px;
}

.mail-attachments .mail-attachments-preview {
  display: inline-block;
  float: left;
}

.mail-attachments .mail-attachments-preview>i {
  top: 0;
  margin-top: 4px;
}

.mail-attachments .mail-attachments-content {
  margin-left: 47px;
}

/* ------------------------------------------------------------------------------
*
*  # Toolbars
*
*  Custom toolbars, mainly based on navbar component
*
*  Version: 1.0
*  Latest update: Dec 5, 2016
*
* ---------------------------------------------------------------------------- */
.panel-toolbar-inbox {
  background-color: #fcfcfc;
}

.panel>.panel-toolbar-inbox:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}

.panel-toolbar-inbox>.navbar {
  background-color: transparent;
  border-width: 0;
}

.panel-toolbar-inbox>.navbar-default .btn-default {
  background-color: #fff;
}

@media (min-width: 769px) {
  .panel-toolbar-inbox {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}




.navbar-brand {
  float: left;
  padding: 13px 20px;
  font-size: 20px !important;
  line-height: 20px;
  height: 57px;
}

.page-container {
  position: relative;
}

@media (min-width: 769px) {
  .page-container {
    width: 100%;
    display: table;
    table-layout: fixed;
  }

  @-moz-document url-prefix() {
    .page-container {
      height: 1px;
    }
  }
}

@media (min-width: 769px) {
  .page-content {
    display: table-row;
  }
}

.content-wrapper {
  width: 100%;
}

@media (min-width: 769px) {
  .content-wrapper {
    display: table-cell;
    vertical-align: top;
  }
}

.content {
  padding: 0 20px 20px 20px;
}

.content:after {
  content: '';
  display: table;
  clear: both;
}

.content:first-child {
  padding-top: 20px;
}

body[class*=navbar-bottom] .content {
  padding-bottom: 20px;
}

/* ------------------------------------------------------------------------------
*
*  # Boxed layout
*
*  Styles for main structure of content area in boxed layout
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.layout-boxed {
  background: url(../images/backgrounds/boxed_bg.png) repeat;
}

.layout-boxed>.navbar {
  margin-left: auto;
  margin-right: auto;
}

.layout-boxed .page-container {
  background-color: #f5f5f5;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
}

@media (min-width: 769px) {

  .layout-boxed .page-container,
  .layout-boxed>.navbar {
    width: 769px;
  }
}

@media (min-width: 1025px) {

  .layout-boxed .page-container,
  .layout-boxed>.navbar {
    width: 1025px;
  }
}

@media (min-width: 1200px) {

  .layout-boxed .page-container,
  .layout-boxed>.navbar {
    width: 1200px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .layout-boxed {
    background: url(../images/backgrounds/boxed_bg_retina.png) repeat;
  }
}

/* ------------------------------------------------------------------------------
*
*  # Footer
*
*  Main footer styles, currently 1 version only
*
*  Version: 1.2
*  Latest update: Jan 5, 2017
*
* ---------------------------------------------------------------------------- */
.footer {
  position: absolute;
  bottom: 30px;
}

.footer.navbar {
  left: 0;
  right: 0;
  bottom: 0;
}

.footer.navbar-fixed-bottom {
  z-index: auto;
}

body[class*=navbar-bottom] .footer:not(.navbar) {
  display: none;
}

.footer-boxed {
  left: 0;
  right: 0;
  padding-left: 20px;
  padding-right: 20px;
}


.sidebar {
  /* background-color: #2d353c !important; */
  color: #fff;
  position: relative;
  width: 100%;
}

@media (min-width: 769px) {
  .sidebar {
    display: table-cell;
    vertical-align: top;
    width: 245px;
    /* it is temporary it was 220 - TODO Tarun sir */
  }
}

.sidebar-main {
  z-index: 99;
}

.sidebar-secondary {
  z-index: 98;
}

.sidebar-opposite {
  display: none;
  z-index: 97;
}

@media (min-width: 769px) {
  .sidebar-opposite-visible .sidebar-opposite {
    display: table-cell;
  }
}

.sidebar:not(.sidebar-default)+.sidebar:not(.sidebar-default) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .has-scroll {
  max-height: 192px;
  overflow-y: auto;
}

.sidebar-default {
  background-color: #fff;
  color: #333333;
  border-bottom: 1px solid #ddd;
}

@media (min-width: 769px) {
  .sidebar-default {
    border-bottom: 0;
    border-right: 1px solid #ddd;
  }

  .content-wrapper+.sidebar-default {
    border-left: 1px solid #ddd;
  }
}

.sidebar-content {
  position: relative;
  padding-bottom: 8px;
  min-height: 665px;
}

.sidebar-all-hidden .sidebar-main,
.sidebar-all-hidden .sidebar-secondary,
.sidebar-main-hidden .sidebar-main,
.sidebar-detached-hidden .sidebar-detached>.sidebar,
.sidebar-secondary-hidden .sidebar-secondary {
  display: none;
}

@media (max-width: 768px) {

  .sidebar-mobile-main .sidebar-main,
  .sidebar-mobile-secondary .sidebar-secondary,
  .sidebar-mobile-opposite .sidebar-opposite,
  .sidebar-mobile-detached .sidebar-detached>.sidebar {
    display: block;
  }
}

.category-title {
  position: relative;
  margin: 0;
  padding: 12px 20px;
  padding-right: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title>span {
  display: block;
  margin-top: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.82;
}

.category-title>i {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

.category-title .icons-list {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -8px;
}

.sidebar-default .category-title {
  border-bottom-color: #ddd;
}

.category-content {
  position: relative;
  padding: 20px;
}

.navigation {
  margin: 0;
  padding: 0px 0;
  list-style: none;
  position: relative;
}

.sidebar-user+.sidebar-category .navigation {
  padding-top: 0;
}

.navigation .hidden-ul {
  display: none;
}

.navigation li {
  position: relative;
  /* border-bottom: solid #ccc 1px; */
}

.navigation li+li {
  margin-top: 1px;
  color: #333;
}

.navigation li+.navigation-header {
  margin-top: 10px;
}

.navigation li a {
  color: #fff;
  display: block;
  -webkit-transition: background 0.15s linear, color 0.15s linear;
  -o-transition: background 0.15s linear, color 0.15s linear;
  transition: background 0.15s linear, color 0.15s linear;
}

.navigation li a:hover,
.navigation li a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.navigation li a>i {
  float: left;
  top: 0;
  margin-top: 2px;
  margin-right: 15px;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.navigation li a>i.pull-right {
  margin-right: 0;
  margin-left: 15px;
}

.navigation li.disabled>a,
.navigation li.disabled>a:hover,
.navigation li.disabled>a:focus {
  color: inherit;
  background-color: transparent;
  cursor: not-allowed;
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.navigation li>.has-ul {
  position: relative;
  padding-right: 36px;
}

.navigation li>.has-ul:after {
  content: "\f105";
  font-family: "Font Awesome 5 Brands";
  font-size: 16px;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 20px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
}

.navigation li.active>.has-ul:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navigation li.navigation-divider {
  margin: 10px 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-default .navigation li.navigation-divider {
  background-color: #eeeeee;
}

.navigation>li>a {
  padding: 12px 20px;
  min-height: 44px;
  font-weight: 500;
  border-bottom: solid 1px #ccc;
}

.navigation>li>a .label,
.navigation>li>a .badge {
  -webkit-transition: background-color ease-in-out 0.15s, border-color ease-in-out 0.15s;
  -o-transition: background-color ease-in-out 0.15s, border-color ease-in-out 0.15s;
  transition: background-color ease-in-out 0.15s, border-color ease-in-out 0.15s;
}

.navigation>li.active>a,
.navigation>li.active>a:hover,
.navigation>li.active>a:focus {
  background-color: #54944e;
  color: #fff;
}

.sub-nav>li.active>a,
.sub-nav>li.active>a:hover,
.sub-nav>li.active>a:focus {
  background-color: #54944e !important;
  color: #fff !important;
}

.navigation>li.active>a>[class*=text-] {
  color: #fff;
}

.navigation>li.active>a .label,
.navigation>li.active>a .badge {
  background-color: rgba(0, 0, 0, 0.35);
  border-color: transparent;
}

.navigation>li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navigation>li ul li a {
  padding: 10px 20px;
  padding-left: 51px;
  min-height: 40px;
}

.navigation>li ul .navigation-header {
  padding-left: 51px;
}

.navigation>li>ul>li>ul>li>a,
.navigation>li>ul>li>ul>.navigation-header {
  padding-left: 71px;
}

.navigation>li>ul>li>ul>li>ul>li>a,
.navigation>li>ul>li>ul>li>ul .navigation-header {
  padding-left: 91px;
}

.navigation>li>ul li:first-child {
  padding-top: 10px;
}

.navigation>li>ul li:last-child {
  padding-bottom: 10px;
}

.navigation>li>ul li.active>a,
.navigation>li>ul li.active>a:hover,
.navigation>li>ul li.active>a:focus {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.navigation .navigation-header {
  min-height: 30px;
  padding: 10px 20px;
  border-bottom: 0;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.82;
}

.navigation .navigation-header>span {
  display: block;
  margin-top: 2px;
}

.navigation .navigation-header>i {
  display: none;
}

.navigation .navigation-header>i.pull-right {
  margin-top: 2px;
}

.navigation .navigation-header,
.navigation .navigation-header a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.navigation .navigation-header a:hover,
.navigation .navigation-header a:focus {
  color: #fff;
}

.navigation .navigation-header a i {
  float: none;
  margin: 0;
}

.sidebar-default .navigation .navigation-header,
.sidebar-default .navigation .navigation-header a {
  color: #999999;
}

.sidebar-default .navigation .navigation-header a:hover,
.sidebar-default .navigation .navigation-header a:focus {
  color: #333333;
}

.navigation.nav>.active>.hidden-ul {
  display: block;
}

@media (max-width: 768px) {
  .navigation.nav>li>.hidden-ul {
    display: block;
  }
}

.navigation .label,
.navigation .badge {
  float: right;
}

.sidebar-default .navigation li>a {
  color: #333333;
}

.sidebar-default .navigation li>a:hover,
.sidebar-default .navigation li>a:focus {
  background-color: #f8f8f8;
}

.sidebar-default .navigation li.active>a,
.sidebar-default .navigation li.active>a:hover,
.sidebar-default .navigation li.active>a:focus {
  background-color: #f5f5f5;
  color: #333333;
}

.sidebar-default .navigation li.active>a>[class*=text-] {
  color: #333333;
}

.sidebar-default .navigation li.disabled>a,
.sidebar-default .navigation li.disabled>a:hover,
.sidebar-default .navigation li.disabled>a:focus {
  background-color: transparent;
}

.sidebar-default .navigation li .label-transparent {
  color: #333333;
}

.sidebar-default .navigation>li ul {
  background-color: transparent;
}

.sidebar-default .navigation>li.active>a,
.sidebar-default .navigation>li.active>a:hover,
.sidebar-default .navigation>li.active>a:focus {
  background-color: #f5f5f5;
  color: #333333;
}

.sidebar-default .navigation>li.active>a .label-transparent {
  color: #333333;
}

.navigation-icons-right>li>a,
.navigation-icons-right>li>a.has-ul {
  padding-right: 20px;
}

.navigation-icons-right>li>a>i {
  float: right;
  margin-right: 0;
  margin-left: 15px;
}

.navigation-icons-right>li>a.has-ul:after,
.navigation-icons-right>li.active>.has-ul:after {
  content: none;
}

.navigation-bordered>li {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.navigation-bordered>li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navigation-bordered>li.navigation-header {
  background-color: rgba(0, 0, 0, 0.1);
}

.navigation-bordered>li+li {
  margin-top: 0;
}

.navigation-bordered>li ul {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.navigation-bordered li+.navigation-header {
  margin-top: 0;
}

.sidebar-default .navigation-bordered>li {
  border-top: 1px solid #eeeeee;
}

.sidebar-default .navigation-bordered>li.navigation-header {
  background-color: #fafafa;
}

.navigation-lg>li>a,
.navigation-lg>li>a>span {
  padding-top: 14px;
  padding-bottom: 14px;
  min-height: 48px;
}

.navigation-lg>li ul li a {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 40px;
}

.navigation-sm>li>a,
.navigation-sm>li>a>span {
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 40px;
}

.navigation-sm>li ul li a {
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 32px;
}

.navigation-xs>li>a,
.navigation-xs>li>a>span {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 36px;
}

.navigation-xs>li ul li a {
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 32px;
}

@media (min-width: 769px) {
  .sidebar-fixed .sidebar-content {
    position: fixed;
    width: 260px;
    max-height: 100%;
    overflow: auto;
    top: 48px;
    bottom: 48px;
    margin-bottom: -48px;
  }

  .sidebar-xs .sidebar-fixed.sidebar-main .sidebar-content {
    width: 56px;
  }

  .sidebar-fixed.sidebar-default .sidebar-content {
    width: 259px;
  }

  .sidebar-fixed-expanded .sidebar-fixed.sidebar-main {
    position: fixed;
    display: block;
    height: 100%;
    z-index: 1001;
  }

  .sidebar-fixed-expanded .sidebar-fixed.sidebar-main .sidebar-content {
    position: fixed;
  }

  .sidebar-xs .sidebar-fixed-expanded .sidebar-fixed.sidebar-main {
    width: 260px;
  }

  .sidebar-fixed-expanded .content-wrapper {
    padding-left: 56px;
  }
}

.sidebar-xs-indicator .sidebar-fixed .sidebar-content {
  top: 0 !important;
}

@media (min-width: 769px) {
  .has-detached-left .container-detached {
    float: right;
    margin-left: -260px;
    width: 100%;
  }

  .has-detached-left .content-detached {
    margin-left: 280px;
  }

  .has-detached-left .sidebar-detached {
    float: left;
  }

  .has-detached-right .container-detached {
    float: left;
    margin-right: -260px;
    width: 100%;
  }

  .has-detached-right .content-detached {
    margin-right: 280px;
  }

  .has-detached-right .sidebar-detached {
    float: right;
  }

  .has-detached-right .sidebar-detached.affix {
    right: 20px;
  }

  .sidebar-detached-hidden .container-detached {
    float: none;
    margin: 0;
  }

  .sidebar-detached-hidden .content-detached {
    margin: 0;
  }

  .sidebar-detached-hidden .sidebar-detached {
    float: none;
  }
}

.sidebar-detached .navigation.nav>.active>.hidden-ul {
  display: block;
}

@media (max-width: 768px) {
  .sidebar-detached .navigation.nav>li>.hidden-ul {
    display: block;
  }
}

.sidebar-detached.affix {
  position: static;
}

@media (min-width: 769px) {
  .sidebar-detached {
    display: block;
    position: relative;
    margin-bottom: 20px;
  }

  .sidebar-detached>.sidebar-default {
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  }

  .sidebar-detached>.sidebar {
    margin-bottom: 0;
    display: block;
    border-radius: 3px;
  }

  .sidebar-detached.affix {
    position: fixed;
    top: 20px;
    bottom: 20px;
    -webkit-transition: bottom ease-in-out 0.15s;
    -o-transition: bottom ease-in-out 0.15s;
    transition: bottom ease-in-out 0.15s;
  }

  .sidebar-detached.affix>.sidebar {
    max-height: 100%;
    overflow-y: auto;
  }

  .sidebar-detached.fixed-sidebar-space {
    bottom: 80px;
  }

  .navbar-bottom .sidebar-detached.fixed-sidebar-space {
    bottom: 86px;
  }

  .navbar-bottom-lg .sidebar-detached.fixed-sidebar-space {
    bottom: 90px;
  }

  .navbar-bottom-sm .sidebar-detached.fixed-sidebar-space {
    bottom: 84px;
  }

  .navbar-bottom-xs .sidebar-detached.fixed-sidebar-space {
    bottom: 82px;
  }

  .navbar-fixed .sidebar-detached {
    top: 86px;
  }

  .navbar-fixed-lg .sidebar-detached {
    top: 90px;
  }

  .navbar-fixed-sm .sidebar-detached {
    top: 84px;
  }

  .navbar-fixed-xs .sidebar-detached {
    top: 82px;
  }
}

.sidebar-separate .sidebar-content {
  padding-bottom: 0;
}

.sidebar-separate .sidebar-content .panel:last-child,
.sidebar-separate .sidebar-content .sidebar-category:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .sidebar-separate {
    background-color: transparent;
  }

  .sidebar-separate .sidebar-category {
    background-color: #263238;
    border-radius: 3px;
    margin-bottom: 20px;
  }

  .sidebar-separate.sidebar-default {
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .sidebar-separate.sidebar-default .sidebar-category {
    background-color: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  }
}

@media (min-width: 769px) {
  .sidebar-xs .sidebar-main {
    width: 0px;
  }

  .sidebar-xs .sidebar-main .sidebar-category {
    display: none;
  }

  .sidebar-xs .sidebar-main .sidebar-category-visible {
    display: block;
  }

  .sidebar-xs .sidebar-main .category-title {
    padding: 0;
  }

  .sidebar-xs .sidebar-main .category-title>i {
    padding: 13px 0;
    float: none;
    display: block;
    top: 0;
  }

  .sidebar-xs .sidebar-main .category-title>span {
    display: none;
  }

  .sidebar-xs .sidebar-main .category-title .icons-list {
    position: static;
    text-align: center;
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .sidebar-xs .sidebar-main .category-title .icons-list>li {
    display: block;
    margin-left: 0;
  }

  .sidebar-xs .sidebar-main .category-title .icons-list>li+li {
    margin-top: 10px;
  }

  .sidebar-xs .sidebar-main .category-title.h6 .icons-list {
    padding-top: 23.538462px;
    padding-bottom: 23.538462px;
  }

  .sidebar-xs .sidebar-main .category-title.h5 .icons-list {
    padding-top: 25.0769236px;
    padding-bottom: 25.0769236px;
  }

  .sidebar-xs .sidebar-main .navigation>li>a {
    display: block;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar-xs .sidebar-main .navigation>li>a>span {
    display: none;
    position: absolute;
    top: 0;
    right: -260px;
    background-color: #26A69A;
    border: 1px solid #26A69A;
    padding: 11px 20px;
    width: 260px;
    text-align: left;
    color: #fff;
    cursor: pointer;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
  }

  .sidebar-xs .sidebar-main .navigation>li>a>span .label,
  .sidebar-xs .sidebar-main .navigation>li>a>span .badge {
    background-color: rgba(0, 0, 0, 0.35);
    border-color: transparent;
  }

  .sidebar-xs .sidebar-main .navigation>li>a>i {
    margin: 2px 0;
    display: block;
    float: none;
  }

  .sidebar-xs .sidebar-main .navigation>li>.has-ul:after,
  .sidebar-xs .sidebar-main .navigation>li.active>.has-ul:after {
    content: none;
  }

  .sidebar-xs .sidebar-main .navigation>li .has-ul>span {
    border-radius: 0 3px 0 0;
    cursor: default;
  }

  .sidebar-xs .sidebar-main .navigation>li.active>ul {
    display: none !important;
  }

  .sidebar-xs .sidebar-main .navigation>li.disabled:hover>ul,
  .sidebar-xs .sidebar-main .navigation>li.disabled:hover>a>span {
    display: none !important;
  }

  .sidebar-xs .sidebar-main .navigation>li:hover>ul {
    display: block !important;
  }

  .sidebar-xs .sidebar-main .navigation>li:hover>a>span {
    display: block;
  }

  .sidebar-xs .sidebar-main .navigation>li:hover:not(.active)>a {
    background-color: rgba(0, 0, 0, 0.1);
    color: #fff;
  }

  .sidebar-xs .sidebar-main .navigation>li>ul {
    position: absolute;
    right: -260px;
    top: 44px;
    width: 260px;
    display: none;
    background-color: #263238;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 3px 0;
  }

  .sidebar-xs .sidebar-main .navigation>li>ul>li>a {
    padding-left: 20px;
  }

  .sidebar-xs .sidebar-main .navigation>li>ul>li>a:not(.has-ul) {
    padding-right: 20px;
  }

  .sidebar-xs .sidebar-main .navigation>li>ul>li>ul>li>a {
    padding-left: 30px;
  }

  .sidebar-xs .sidebar-main .navigation>li>ul>li>ul>li>ul>li>a {
    padding-left: 60px;
  }

  .sidebar-xs .sidebar-main .navigation>.navigation-header {
    padding: 0;
    text-align: center;
  }

  .sidebar-xs .sidebar-main .navigation>.navigation-header>i {
    display: block;
    top: 0;
    padding: 13px 0;
  }

  .sidebar-xs .sidebar-main .navigation>.navigation-header>span {
    display: none;
  }

  .sidebar-xs .sidebar-main .sidebar-user .category-content {
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar-xs .sidebar-main .sidebar-user .media-left,
  .sidebar-xs .sidebar-main .sidebar-user .media-right {
    padding: 0;
    text-align: center;
    display: block;
  }

  .sidebar-xs .sidebar-main .sidebar-user .media-left>img,
  .sidebar-xs .sidebar-main .sidebar-user .media-right>img {
    max-width: 100%;
    height: auto !important;
  }

  .sidebar-xs .sidebar-main .sidebar-user .media-left>.img-sm,
  .sidebar-xs .sidebar-main .sidebar-user .media-right>.img-sm {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .sidebar-xs .sidebar-main .sidebar-user .media-left>.img-xs,
  .sidebar-xs .sidebar-main .sidebar-user .media-right>.img-xs {
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .sidebar-xs .sidebar-main .sidebar-user .media-body,
  .sidebar-xs .sidebar-main .sidebar-user .media-right {
    display: none;
  }

  .sidebar-xs .sidebar-main .navigation-lg>li>ul {
    top: 48px;
  }

  .sidebar-xs .sidebar-main .navigation-sm>li>ul {
    top: 40px;
  }

  .sidebar-xs .sidebar-main .navigation-xs>li>ul {
    top: 36px;
  }

  .sidebar-xs .sidebar-main.sidebar-default .navigation>li>a>span {
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #333333;
  }

  .sidebar-xs .sidebar-main.sidebar-default .navigation>li>a>span .label,
  .sidebar-xs .sidebar-main.sidebar-default .navigation>li>a>span .badge {
    color: #333333;
  }

  .sidebar-xs .sidebar-main.sidebar-default .navigation>li>ul {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: 0;
  }

  .sidebar-xs .sidebar-main.sidebar-default .navigation>li:hover:not(.active)>a {
    background-color: #f5f5f5;
    color: #333333;
  }
}

.sidebar .row {
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar .row [class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

@media (max-width: 768px) {
  .sidebar .sp-container {
    display: block;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sidebar .sp-flat .sp-picker-container {
  display: block;
  width: 218px;
}

.sidebar .panel-group .panel {
  border-radius: 0;
  border-width: 0 0 1px 0;
}

.sidebar .panel-group .panel:first-child {
  border-top-width: 1px;
}

.sidebar .panel-group .panel+.panel {
  margin-top: 0;
}

.sidebar .media-list-bordered>li {
  border-top: 0;
  border-bottom: 1px solid #eeeeee;
}

.sidebar:not(.sidebar-default) .media .text-muted,
.sidebar:not(.sidebar-default) .media .media-annotation {
  color: rgba(255, 255, 255, 0.8);
}

.sidebar:not(.sidebar-default) .media .media-left>a,
.sidebar:not(.sidebar-default) .media .media-body>a,
.sidebar:not(.sidebar-default) .media .media-right>a {
  color: #fff;
}

.sidebar:not(.sidebar-default) .media .media-link:hover,
.sidebar:not(.sidebar-default) .media .media-link:focus {
  background-color: rgba(0, 0, 0, 0.1);
}

.sidebar:not(.sidebar-default) .media .media-badge {
  border-color: #263238;
}

.sidebar:not(.sidebar-default) .media-list-bordered>li {
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar .thumbnail {
  margin-bottom: 10px;
}

.sidebar .thumbnail:last-child {
  margin-bottom: 0;
}

.sidebar .thumbnail .zoom-image i {
  font-size: 16px;
  margin-top: -8px;
  margin-left: -8px;
}

.sidebar .sidebar-category .checkbox,
.sidebar .sidebar-category .radio {
  margin-top: 0;
}

.sidebar .sidebar-category .checkbox:last-child,
.sidebar .sidebar-category .radio:last-child {
  margin-bottom: 0;
}

.sidebar .form-group:last-child {
  margin-bottom: 0;
}

.sidebar .nav-tabs {
  border-width: 0 0 1px 0;
}

@media (min-width: 769px) {
  .sidebar .nav-tabs {
    border-width: 1px;
  }

  .sidebar .nav-tabs>li>a {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.6);
    border-top: 0;
    border-radius: 0;
  }

  .sidebar .nav-tabs>li>a:hover,
  .sidebar .nav-tabs>li>a:focus {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .sidebar .nav-tabs>.active>a,
  .sidebar .nav-tabs>.active>a:hover,
  .sidebar .nav-tabs>.active>a:focus {
    border-top: 0;
    border-bottom: 0;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .sidebar .nav-tabs>.active:first-child>a {
    border-left-color: transparent !important;
  }

  .sidebar .nav-tabs>.active:last-child>a {
    border-right-color: transparent !important;
  }

  .sidebar .nav-tabs>.open>a {
    color: #fff;
  }

  .sidebar .nav-tabs>.open:not(.active)>a {
    background-color: rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 769px) {
  .sidebar-default .nav-tabs>li>a {
    background-color: #fafafa;
    border-bottom-color: #ddd;
    color: #999999;
  }

  .sidebar-default .nav-tabs>li>a:hover,
  .sidebar-default .nav-tabs>li>a:focus {
    color: #333333;
    border-bottom-color: #ddd;
  }

  .sidebar-default .nav-tabs>.active>a,
  .sidebar-default .nav-tabs>.active>a:hover,
  .sidebar-default .nav-tabs>.active>a:focus {
    border-color: #ddd;
    color: #333333;
  }

  .sidebar-default .nav-tabs>.open>a {
    border-bottom-color: #ddd;
    color: #333333;
  }

  .sidebar-default .nav-tabs>.open:not(.active)>a {
    background-color: #fafafa;
  }
}

@media (min-width: 769px) {
  .sidebar-default .nav-justified>li:first-child .dropdown-menu:not(.dropdown-menu-right) {
    left: -1px;
  }

  .sidebar-default .nav-justified>li:last-child .dropdown-menu-right {
    right: -1px;
  }
}

.p-0 {
  padding: 0 !important;
}

.items-heading h3 {
  color: #999;
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.items-heading h2 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  margin: 0px 0 4px 0;
  word-wrap: break-word;
  max-width: 100%;

}

.items-heading p {
  color: #323E4F;
  word-wrap: break-word;
  font-size: 14px;
  margin-top: 9px;
  line-height: 24px;
  margin-bottom: 9px;
}

.item-lists {
  border-bottom: 1px solid #3155a4;
  margin-top: 25px;
  padding-bottom: 20px;
}

.btn-txt {
  font-size: 14px;
  color: #fff;
}

.item-actions a {
  font-weight: 400;
  font-size: 15px;
  color: #3155a4;
  float: left;
}

.mt0 {
  margin-top: 0 !important;
}




/* ::-webkit-scrollbar {
    width: 10px; border-radius:5px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;  border-radius:5px;
}

::-webkit-scrollbar-thumb {
    background: #cacaca;  border-radius:5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;  border-radius:5px;
} */
.mt-0 {
  margin-top: 0 !important
}




.card {
  border: none;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card.shadow {
  padding: 15px !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1) !important;
}

/* Login */

.sign-in-or {
  position: relative;
}

.sign-in-or span {
  font-size: 24px;
  font-weight: lighter;
  position: absolute;
  left: 20px;
  top: 54px;
}

/* Pricing Table */

.navbar {
  position: relative;
  min-height: 57px !important;
  /* margin-bottom: 20px; */
  border: 0px solid transparent;
}

.navbar-brand {
  float: left;
  padding: 0px 0px !important;
  font-size: 20px !important;
  line-height: 20px;

}

.navbar-brand>img {
  margin-top: -6px !important;
  width: 100px !important;
}

.modal-header {
  padding: 10px 20px;

}

.width80 {
  width: 80px !important;
}

.navbar {
  margin-bottom: 0px !important;
}

.page-header {
  padding-bottom: 9px;
  margin: 0px 0 0px !important;
  border-bottom: 1px solid #ddd;
  height: 48px;
}

.tab-content {
  border-right: solid #eee 1px;
  border-left: solid #eee 1px;
}

.profile-section .form-group {
  margin-bottom: 10px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.navbar-inverse {
  background-color: #fff !important;
  border-color: #37474F;
  border-bottom: solid #dddfdc 2px;
}

.btn-warning {
  color: #fff;
  background-color: #e5673f !important;
  border-color: #e5673f !important;
}

.sidebar-main-toggle {
  color: #333 !important;
  font-size: 18px;
  cursor: pointer;
}

.btn-edit {
  padding: 0px 8px !important;
}







/* Style the buttons inside the tab */
.nav-tabs a {
  display: block;
  background-color: inherit;
  color: #323E4F;
  padding: 10px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

/* Change background color of buttons on hover */
.nav-tabs a:hover {
  background-color: #ddd;
}

/* Create an active/current "tab button" class */
.nav-tabs li.active>a {
  background-color: #54944e;
  color: #fff;
}

.nav.nav-tabs.mobotabs li.active>a {
  background-color: #54944e !important;
  color: #fff !important;
}

/* Style the tab content */
.tabs {
  float: left;
  border-right: solid #eee 1px;
  width: 26%;
  padding-right: 20px;
  min-height: 500px;
}

.tabcontent {
  float: left;
  padding: 25px;
  border-left: none;
  border: 1px solid #efefef;
  margin-bottom: 50px;
  border-top: 0;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  height: 36px !important;
  padding: 7px 12px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5384616;
  color: #333333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0px !important;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.0) !important;
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075) !important;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .0s !important;
  -o-transition: border-color ease-in-out .0s, box-shadow ease-in-out .0s !important;
  transition: border-color ease-in-out .0s, box-shadow ease-in-out .0s !important;
}

.form-textarea {
  display: block;
  width: 100%;
  padding: 7px 12px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5384616;
  color: #333333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ddd;
  border-radius: 0px !important;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.0) !important;
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075) !important;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .0s !important;
  -o-transition: border-color ease-in-out .0s, box-shadow ease-in-out .0s !important;
  transition: border-color ease-in-out .0s, box-shadow ease-in-out .0s !important;
}

.form-group {
  margin-bottom: 14px !important;
}

/*#Contact{ font-size:18px; font-weight:300; line-height:36px;}*/
.add-edit {
  border: solid #eee 1px;
  padding: 15px;
}

.font13 {
  font-size: 13px;
}



.managing-hd {
  padding: 10px 25px 15px 5px;
  font-size: 20px;
  font-weight: 500;
}

.subheadline {
  margin-top: 10px;
}

.text-danger {
  color: #e5673f !important;
}

.uploadimg {
  padding-top: 5px;
  color: #003399;
  cursor: pointer;
}

.bolder {
  font-weight: bold !important;
}

.text-success {
  color: #54924e !important;
}

.text-warning {
  color: #EF6C00 !important;
}

.relative {
  position: relative;
}

.member-search {
  width: 180px;
  position: absolute;
  right: -190px;
}

.mt-25 {
  margin-top: 25px;
}

.primary {
  font-weight: 500;
  color: #006633;
  font-size: 16px;
  float: left;
  padding: 3px 8px;
}

.next-step {
  padding: 1px 5px 0 5px !important;
}

.modal-header {
  background-color: #54924e;
  color: #fff !important;
}

.close {
  opacity: 1 !important;
  color: #fff !important;
}

.pointer {
  cursor: pointer;
}

.mt-50 {
  margin-top: 50px;
}









/*Login CSS*/
.contact-right {
  background-color: #fff;
  min-height: 400px;
  color: #fff;
  padding: 60px 30px;
}

.contact-right p {
  color: #333;
  margin-top: 50px;
}

.contact-input {
  background-color: #fff;
  border-radius: 10px;
  min-height: 360px;
}

.contact-input label {
  color: #333;
}

.contact-input h2 {
  color: #fff;
}

.mt-6 {
  margin-top: 6px;
}

.btn-small {
  padding: 1px 7px !important;
  font-weight: 500;
  font-size: 12px !important;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.grayside {
  background-color: #f1f1f1 !important
}

.btn-info {
  color: #fff;
  background-color: #3155a4 !important;
  border-color: #3155a4 !important;
}

.ngx-datepicker-calendar-container {
  z-index: 9999 !important;
}

.copyright {
  padding: 10px 30px 25px;
  ;
  /* border-top: 1px solid; */
  font-size: 14px;
  border-top-color: rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #3155a4;
}



.credits {
  border-bottom: solid 1px #eee;
  padding-bottom: 10px;
  margin: 0 0 30px;
}

#pagewrap {
  margin: 0 auto;
  width: 600px;
  padding-left: 150px;
  position: relative;
}

/* Back to top button */
#back-top {
  position: fixed;
  bottom: 30px;
  z-index: 99;
  right: 50px;
}

#back-top a {
  width: 52px;
  display: block;
  text-align: center;
  font: 11px/100% Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #bbb;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}

#back-top a:hover {
  color: #000;
}

#back-top span {
  width: 52px;
  height: 52px;
  display: block;
  margin-bottom: 7px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  background-color: #54924e;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.05);
}

#back-top a:hover span {
  background-color: #54924e;
}

.arrowtop {
  font-weight: 100;
  font-size: 20px;
  padding-top: 15px;
  color: #fff;
}

@media (min-width: 1200px) {
  .login-bt {
    margin-bottom: 100px;
  }
}

.logout {
  color: #333 !important;
  padding: 18px 18px !important;
  cursor: pointer;
  background-color: transparent;
}

.logout:hover {
  padding: 18px 18px !important;
  cursor: pointer;
  background-color: transparent !important;
}

.logoutmenu .open>a,
.logoutmenu .open>a:hover,
.logoutmenu .open>a:focus {
  background-color: transparent !important;
  border-color: #3155a4;
}

.m-0 {
  margin: 2px !important;
}

.pagination>li>a,
.pagination>li>span {
  border: 0 !important;
}

.pagination .page-link {
  border-radius: 46px;
  margin-right: 4px;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
  z-index: 3;
  color: #fff;
  background-color: #3155a4 !important;
  border-color: #3155a4 !important;
  cursor: pointer;
  min-width: 34px;
  text-align: center;
}

.pagination>li {
  cursor: pointer;
}

.cursor-auto {
  cursor: auto;
}

.cursor-hand {
  cursor: pointer;
}

.btn-gray {
  background-color: #f5f5f5 !important;
}

.form-control option {
  font-size: 15px !important;
}

.spinnerimg {
  position: absolute;
  z-index: 9999;
  top: 20%;
  left: 47%;
  width: 85px;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.main-nav {
  margin-top: 7px;
  max-height: 40px;
}

.main-nav li {
  list-style: none;
  float: left;
  border: 0;
}

.main-nav li a {
  padding: 10px 15px;
  color: #333;
  min-height: 40px;
  border-radius: 2px;
}

.main-nav li a:hover {
  padding: 10px 15px;
  color: #333;
  min-height: 40px;
  border-radius: 2px;
}

.main-nav li.active {
  color: #fff !important;
}

#ContentSection {
  background-color: #fff;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  z-index: 2;
  color: #333333;
  background-color: transparent !important;
  border-color: #ddd;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
  background-color: transparent !important;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
  background-color: transparent !important;
}

.agent-search {
  background-color: #fff;
}

.white-bg {
  background-color: #fff;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.breadcrumb {
  border-bottom: solid #eee 1px;
  margin-bottom: 15px !important;
  border-radius: 0;
}

.item-list-section {
  margin-top: 10px;
  padding-bottom: 20px;
}

.edit-actions {
  font-weight: 400;
  font-size: 15px;
  color: #3155a4;
}

.width22 {
  width: 22px;
}

.uploadimg[type=file] {
  color: transparent;
  width: 90px;
  cursor: pointer;
}

.no-pointer {
  pointer-events: none;
}

.logotop img {
  width: 250px;
}

.cursor-auto {
  cursor: auto !important;
}

.icon-circle {
  background-color: #fff;
  border-radius: 50px;
  width: 24px;
  height: 24px;
  text-align: center;
  padding-top: 2px;
}

.icon-circle i {
  color: #54924e !important
}

.icon-pos-right {
  float: right;
  padding: 0px 0px 7px 8px;
  min-width: 84px;
  max-height: 40px;
}

.icon-pos-right-ag {
  border: solid #ccc 1px;
  float: right;
  padding: 8px 8px 6px 6px;
  border-radius: 4px;

}

.verti-divider {
  border-right: solid #999 1px;
  font-size: 18px;
  padding-right: 10px;
}

.mr-12 {
  margin-right: 12px !important;
}

.mt-15 {
  margin-top: 15px;
}

.mt-0 {
  margin-top: 0 !important;
}

.assisteclose {
  font-size: 30px;
}

.btn-export {
  color: #fff;
  border-color: #e5673f;
  background-color: #e5673f !important;
}

.btn-export:hover {
  color: #fff;
  border-color: #e5673f;
  background-color: #e5673f !important;
}

.grecaptcha-badge {
  display: none;
}

@media print {

  #Header,
  #Footer {
    display: none ! important;
  }
}

.table_header thead td {
  background-color: #0091d8;
  color: #fff;
}

.col-sm-12.p-2.mb-15.singnature-section .ngx-datepicker-calendar-container {
  z-index: 9999 !important;
  top: -360px !important;
}

.alert-msg {
  width: 100%;
  padding: 5px 10px;
}

.header_container {
  display: flex;
  /* establish flex container */
  flex-direction: row;
  /* default value; can be omitted */
  flex-wrap: nowrap;
  /* default value; can be omitted */
  justify-content: space-between;
  /* switched from default (flex-start, see below) */
  background-color: lightyellow;
}

.listsection {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .listsection {
    min-height: 354px;
    margin-bottom: 15px;
  }

  .col-auto-section {
    display: flex;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
  }
}

.col-auto-section {
  display: flex;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  width: 100%;
}

.ml-15 {
  margin-left: 15px;
}

.ml-0 {
  margin-left: 0 !important;
}


/*SideNav*/




.col {
  flex: 1 0 0%;
}

.row-cols-auto>* {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1>* {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2>* {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3>* {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4>* {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5>* {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6>* {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto>* {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1>* {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2>* {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4>* {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5>* {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table,
.datatable-table {
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: transparent;
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

.table> :not(caption)>*>*,
.datatable-table> :not(caption)>*>* {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody,
.datatable-table>tbody {
  vertical-align: inherit;
}

.table>thead,
.datatable-table>thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: 2px solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm> :not(caption)>*>* {
  padding: 0.25rem 0.25rem;
}

.table-bordered> :not(caption)>*,
.datatable-table> :not(caption)>* {
  border-width: 1px 0;
}

.table-bordered> :not(caption)>*>*,
.datatable-table> :not(caption)>*>* {
  border-width: 0 1px;
}

.table-borderless> :not(caption)>*>* {
  border-bottom-width: 0;
}

.table-borderless> :not(:first-child) {
  border-top-width: 0;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-striped-columns> :not(caption)>tr> :nth-child(even) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover>tbody>tr:hover>*,
.datatable-table>tbody>tr:hover>* {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #bacbe6;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #cbccce;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #bcd0c7;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #badce3;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #e6dbb9;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #dfc2c4;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #dfe0e1;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #373b3e;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive,
.datatable-wrapper .datatable-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}



.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0.375rem;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #1e2125;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }

  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }

  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }

  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }

  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }

  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }

  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }

  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }

  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }

  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }

  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn:hover,
.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn:hover,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: 0.375rem;
}

.btn-group> :not(.btn-check:first-child)+.btn,
.btn-group>.btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group>.btn.dropdown-toggle-split:first-child,
.btn-group>.btn-group:not(:last-child)>.btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group>.btn:nth-child(n+3),
.btn-group> :not(.btn-check)+.btn,
.btn-group>.btn-group:not(:first-child)>.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm+.dropdown-toggle-split,
.btn-group-sm>.btn+.dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg+.dropdown-toggle-split,
.btn-group-lg>.btn+.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
  width: 100%;
}

.btn-group-vertical>.btn:not(:first-child),
.btn-group-vertical>.btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical>.btn-group:not(:last-child)>.btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn~.btn,
.btn-group-vertical>.btn-group:not(:first-child)>.btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:hover,
.nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}

.nav-link.disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fff;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  background: none;
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  background-color: transparent;
  border-color: transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-fill>.nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified>.nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.375rem;
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-sm,
.navbar>.container-md,
.navbar>.container-lg,
.navbar>.container-xl,
.navbar>.container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .show>.nav-link,
.navbar-nav .nav-link.active {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }

  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }

  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}




#layoutAuthentication {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#layoutAuthentication #layoutAuthentication_content {
  min-width: 0;
  flex-grow: 1;
}

#layoutAuthentication #layoutAuthentication_footer {
  min-width: 0;
}

#layoutSidenav {
  display: flex;
}

#layoutSidenav #layoutSidenav_nav {
  flex-basis: 245px;
  flex-shrink: 0;
  transition: transform 0.15s ease-in-out;
  z-index: 1038;
  transform: translateX(-245px);
}

#layoutSidenav #layoutSidenav_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  min-height: calc(100vh - 56px);
  margin-left: -245px;
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  transform: translateX(0);
}

.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1029;
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out;
}

@media (min-width: 992px) {
  #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0);
  }

  #layoutSidenav #layoutSidenav_content {
    margin-left: 0;
    transition: margin 0.15s ease-in-out;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
    transform: translateX(-245px);
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
    margin-left: -245px;
  }

  .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
    display: none;
  }
}

.sb-nav-fixed .sb-topnav {
  z-index: 1039 !important;
}

.sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
  width: 245px;
  height: 100vh;
  z-index: 1038;
}

.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  padding-top: 75px;
}

@media (max-width:1024px) {
  .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.sb-nav-fixed #layoutSidenav #layoutSidenav_content {
  padding-left: 245px;
  top: 75px;
}

.fixed-top,
.sb-nav-fixed #layoutSidenav #layoutSidenav_nav,
.sb-nav-fixed .sb-topnav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }

  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}

#layoutError {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#layoutError #layoutError_content {
  min-width: 0;
  flex-grow: 1;
}

#layoutError #layoutError_footer {
  min-width: 0;
}

.img-error {
  max-width: 20rem;
}

.nav .nav-link .sb-nav-link-icon,
.sb-sidenav-menu .nav-link .sb-nav-link-icon {
  margin-right: 0.5rem;
}

.sb-topnav {
  padding-left: 0;
  z-index: 1039;
}

.sb-topnav .navbar-brand {
  width: 180px;
  margin: 0px 0 0 0;
}

.sb-topnav.navbar-dark #sidebarToggle {
  color: rgba(255, 255, 255, 0.5);
}

.sb-topnav.navbar-light #sidebarToggle {
  color: #212529;
}

.sb-sidenav {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-wrap: nowrap;
}

.sb-sidenav .sb-sidenav-menu {
  flex-grow: 1;
}

.sb-sidenav .sb-sidenav-menu .nav {
  flex-direction: column;
  flex-wrap: nowrap;
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
  padding: 1.75rem 1rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link {
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
  font-size: 0.9rem;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
  display: inline-block;
  margin-left: auto;
  transition: transform 0.15s ease;
}

.sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
  transform: rotate(-90deg);
}

.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
  margin-left: 1.5rem;
  flex-direction: column;
}

.sb-sidenav .sb-sidenav-footer {
  padding: 0.75rem;
  flex-shrink: 0;
}

.sb-sidenav-dark {
  /* background-color: #323E4F; */
  color: rgba(255, 255, 255, 0.10);
background: linear-gradient(to bottom,  #2e3c4f 0%,#354b7b 27%,#2e56a4 45%,#2e56a4 61%,#335295 75%,#2e3c4f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  color: rgba(255, 255, 255, 0.25);
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
  color: #fff;
}

.sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  color: #fff;
}

/* .sb-sidenav-dark .sb-sidenav-footer {
  background-color: #343a40;
} */

.sb-sidenav-light {
  background-color: #f8f9fa;
  color: #212529;
}

.sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link {
  color: #212529;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  color: #adb5bd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
  color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active {
  color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  color: #0d6efd;
}

.sb-sidenav-light .sb-sidenav-footer {
  background-color: #e9ecef;
}


.btn-datatable {
  height: 20px !important;
  width: 20px !important;
  font-size: 0.75rem;
  border-radius: 0.375rem !important;
}

.humburger {
  margin-top: 18px;
}


/*Mobile Section start*/
@media (max-width: 767px) {
  .form-control-mobo {
    max-width: 200px;
  }

  .mt-xs-20 {
    margin-top: 20px;
  }

  .mb-xs-10 {
    margin-bottom: 10px;
  }

  .text-right-mobo {
    text-align: right !important;
  }

  .leftbox-radius {
    min-height: 200px;
  }

  .mt-xs-10 {
    margin-top: 10px;
  }

  .grid-header td {
    padding: 6px 8px !important;
  }

  .mobo_avtar {
    width: 60px !important;
  }

  .mobotable thead td {
    padding: 5px !important;
  }

  .mobotable tbody td {
    padding: 5px !important;
  }

  .sb-nav-fixed #layoutSidenav #layoutSidenav_content {
    top: 60px !important;
  }

  .d-xs-flex {
    display: flex;
  }

  .humburger {
    margin-top: 11px;
  }

  .ist_search {
    width: 80%;
  }

  .item-list-section {
    border-bottom: solid #ccc 1px;
  }

  .m-xs-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .content:first-child {
    padding-top: 0px !important;
  }

  .logout {
    color: #333 !important;
    padding: 5px 5px !important;
    cursor: pointer;
    background-color: transparent;
  }

  .mobotabs li a {
    border: solid #ccc 1px;
    font-size: 13px;
    min-width: 152px;
    padding: 10px 9px;
  }

  .p-xs-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .tabcontent {
    float: left;
    padding: 0px 0px;
    border-left: none;
    border: 1px solid #efefef;
    margin-bottom: 50px;
    border-top: 0;
    width: 100%;
    margin-top: -2px;
  }

  .nav-tabs.mobotabs>li {
    width: 50%;
    margin-right: 3px;
    margin-bottom: 4px;
  }

  .submit_reset {
    margin-bottom: 15px;
  }

  h3,
  .h3 {
    font-size: 20px !important;
  }

  /* .contcthd {
    margin: 0px !important;
  } */

  .content {
    padding: 0 8px 15px 8px !important;
  }

  .panel-body {
    padding: 10px !important;
  }

  .modal-body {
    padding: 10px !important;
  }

  .table th {
    padding: 12px 10px !important;
  }

  .form-group {
    margin-bottom: 6px !important
  }

  .image-new {
    margin-top: -16px !important;
  }

  .mr2 {
    margin-right: 1px;
  }

}

.news_search {
  width: 100%;
}

@media (max-width: 429px) {
  .mini-section {
    max-width: 250px !important;
  }

  .humburger {
    margin-left: 15px !important;
  }

  .items-heading h2 {
    font-size: 16px !important;
  }

  .sb-topnav .navbar-brand {
    width: 124px !important;
  }

  .logo-mobo-mini {
    max-width: 180px;
  }

  .navbar-brand {
    height: 38px !important;
  }

  #navbar-mobile {
    padding-right: 0 !important;
    padding-left: 5px !important;
  }

  .file-typesection {
    width: 90%;
  }
}

@media (min-width:430px) and (max-width: 440px) {
  .humburger {
    margin-left: 20px !important;
  }

  .file-typesection {
    width: 90%;
  }

  .sb-topnav .navbar-brand {
    width: 124px !important;
  }

  .logo-mobo-mini {
    max-width: 180px;
    margin-right: 35px;
  }

  .navbar-brand {
    height: 38px !important;
  }

}


@media (max-width: 600px) {
  .nav-tabs.mobotabs>li {
    width: 49%;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .nav-tabs.mobotabs>li {
    width: 33.3%;
  }
}

/*Mobile Section End*/

/*Ipad Section start*/
@media (min-width: 768px) {
  .mr-lg-10 {
    margin-right: 10px;
  }

  .leftbox-radius {
    min-height: 420px;
  }

  .ipad-margin {
    margin-top: 31px !important;
  }

  .logout {
    color: #333 !important;
    padding: 18px 18px !important;
    cursor: pointer;
    background-color: transparent;
  }

  .submit_reset {
    margin-top: 0px;
  }

  .navbar-brand>img {
    margin-left: 15px !important;
  }
}

#sidebarToggle i.fas {
  color: #54924e;
}

#sidebarToggle i.fas:hover {
  color: #2e56a9;
}

.mr-0 {
  margin-right: 0 !important;
}

/* Responsive table */

@media (max-width: 768px) {

  .responsive-table {
    width: 100%;
    border-collapse: collapse;
  }

  .responsive-table thead {
    display: none;
  }

  /* Hide table headers */
  .responsive-table tr {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.35);
    margin-bottom: 3px;
  }

  .responsive-table tr td {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    border-bottom: solid #ccc 1px !important;
    padding-left: 10px !important;
  }

  .responsive-table tr td:last-child {
    border-bottom: none;
  }

  .responsive-table tr .toggle-row {
    font-weight: bold;
    cursor: pointer;
    background-color: #3155a4;
    padding: 6px;
    color: #fff !important;
  }
}


@media screen and (max-width: 320px),
print and (max-width: 768) {

  table.responsive-table,
  table.responsive-table tr,
  table.responsive-table tr td {
    display: block;
  }

  table.responsive-table th,
  table.responsive-table tr:first-of-type {
    display: none;
  }

  table.responsive-table tr td::before {
    display: inline;
    font-weight: bold;
  }

  table.responsive-table tr td {
    display: grid;
    grid-template-columns: 4em auto;
    grid-gap: 1em 0.5em;
  }

  caption {
    font-style: normal;
    background-color: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-weight: bold;
  }


}

.d-flex {
  display: flex;
}

.table.responsive-table td::before {
  font-weight: bold;
  display: inline-block;
  min-width: 160px;
}

.td-open {
  display: block !important;
}

.table.responsive-table tr span.arrow:before {
  width: 10px;
  float: right;
  margin-right: 5px;
  margin-left: 5px;
  display: inline;
  font-size: 14px;
  height: auto;
  content: "\f107";
  text-shadow: none;
}

.table.responsive-table tr.toggle-open span.arrow:before {
  content: "\f106";
}

.arrow {
  font-family: "Font Awesome 5 Free";
}

@media screen and (max-width: 767px) {
  .containera {
    display: flex;
    flex-flow: column;
    width: 100%;
  }

  .two {
    order: 1;
  }

  .one {
    order: 2
  }

  .accor_mobo:not(.in) {
    display: none;
  }
}

@media (min-width: 768px) {
  .d-none-lg {
    display: none !important;
  }

  #Basic_Detailsd {
    display: block;
    height: auto !important;
  }

  #Basic_Detailsc {
    display: block;
    height: auto !important;
  }
}

@media (max-width:767px) {
  .d-xs-none {
    display: none !important;
  }
}

.mt-0 {
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .pagination-mobo .pagination-list {
    display: none !important;

  }

  .pagination-mobo {
    display: none;
  }

}

@media (max-width:767px) {

  .pagination-mobo .add-and-export {
    display: none !important;
  }

  .pagination-desktop .pagination-list {
    display: none !important;
  }

  .pagination-desktop .page-header.page-header-default1 {
    display: none !important;
  }

}

/* @media (min-width:768px){
  .enableexport{
    display: none;
  }
} */

.login-logo img{ max-width: 200px;}

::ng-deep .swal2-popup .swal2-styled.swal2-confirm{
  background-color: #3155a4 !important;
}


::ng-deep  .swal2-icon.swal2-warning {
  border-color: #e5673f;
  color: #e5673f !important;
} */


body {
  overflow-y: hidden;
}

#contentSearchAreas {
  overflow-y: auto;
}

@media (min-width: 300px) and (max-width: 500px){
  .navbar-brand>img {
  margin-top: -5px !important;
  width: 80px !important;
}
}
@media (min-width: 501px) {
  .navbar-brand>img {
  margin-top: -6px !important;
  width: 100px !important;
}
}